diff --git a/parse/train/5kTlVBkzSRx/5kTlVBkzSRx.md b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx.md new file mode 100644 index 0000000000000000000000000000000000000000..8aaa39da3e923dbf61d5bddfb071dc690feca10e --- /dev/null +++ b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx.md @@ -0,0 +1,202 @@ +# Twins: Revisiting the Design of Spatial Attention in Vision Transformers + +Xiangxiang $\mathbf { C h u ^ { 1 } }$ , Zhi Tian1,2, Yuqing Wang1, Bo Zhang1 Haibing Ren1, Xiaolin Wei1, Huaxia Xia1, Chunhua Shen2∗ + +1 Meituan Inc. 2 The University of Adelaide, Australia 1 {chuxiangxiang,wangyuqing06,zhangbo97,renhaibing,weixiaolin02,xiahuaxia}@meituan.com 2 zhi.tian@outlook.com, chunhua@me.com + +# Abstract + +Very recently, a variety of vision transformer architectures for dense prediction tasks have been proposed and they show that the design of spatial attention is critical to their success in these tasks. In this work, we revisit the design of the spatial attention and demonstrate that a carefully devised yet simple spatial attention mechanism performs favorably against the state-of-the-art schemes. As a result, we propose two vision transformer architectures, namely, Twins-PCPVT and TwinsSVT. Our proposed architectures are highly efficient and easy to implement, only involving matrix multiplications that are highly optimized in modern deep learning frameworks. More importantly, the proposed architectures achieve excellent performance on a wide range of visual tasks including image-level classification as well as dense detection and segmentation. The simplicity and strong performance suggest that our proposed architectures may serve as stronger backbones for many vision tasks. Our code is available at: https://git.io/Twins. + +# 1 Introduction + +Recently, Vision Transformers [1–3] have received increasing research interest. Compared to the widely-used convolutional neural networks (CNNs) in visual perception, Vision Transformers enjoy great flexibility in modeling long-range dependencies in vision tasks, introduce less inductive bias, and can naturally process multi-modality input data including images, videos, texts, speech signals, and point clouds. Thus, they have been considered to be a strong alternative to CNNs. It is expected that vision transformers are likely to replace CNNs and serve as the most basic component in the next-generation visual perception systems. + +One of the prominent problems when applying transformers to vision tasks is the heavy computational complexity incurred by the spatial self-attention operation in transformers, which grows quadratically in the number of pixels of the input image. A workaround is the locally-grouped self-attention (or self-attention in non-overlapped windows as in the recent Swin Transformer [4]), where the input is spatially grouped into non-overlapped windows and the standard self-attention is computed only within each sub-window. Although it can significantly reduce the complexity, it lacks the connections between different windows and thus results in a limited receptive field. As pointed out by many previous works [5–7], a sufficiently large receptive field is crucial to the performance, particularly for dense prediction tasks such as image segmentation and object detection. Swin [4] proposes a shifted window operation to tackle the issue, where the boundaries of these local windows are gradually moved as the network proceeds. Despite being effective, the shifted windows may have uneven sizes. The uneven windows result in difficulties when the models are deployed with ONNX or TensorRT, which prefers the windows of equal sizes. Another solution is proposed in PVT [8]. Unlike the standard self-attention operation, where each query computes the attention weights with all the input tokens, in PVT, each query only computes the attention with a sub-sampled version of the input tokens. Although its computational complexity in theory is still quadratic, it is already manageable in practice. + +From a unified perspective, the core in the aforementioned vision transformers is how the spatial attention is designed. Thus, in this work, we revisit the design of the spatial attention in vision transformers. Our first finding is that the global sub-sampled attention in PVT is highly effective, and with the applicable positional encodings [9], its performance can be on par or even better than state-of-the-art vision transformers (e.g., Swin). This results in our first proposed architecture, termed Twins-PCPVT. On top of that, we further propose a carefully-designed yet simple spatial attention mechanism, making our architectures more efficient than PVT. Our attention mechanism is inspired by the widely-used separable depthwise convolutions and thus we name it spatially separable self-attention (SSSA). Our proposed SSSA is composed of two types of attention operations—(i) locally-grouped self-attention (LSA), and (ii) global sub-sampled attention (GSA), where LSA captures the fine-grained and short-distance information and GSA deals with the long-distance and global information. This leads to the second proposed vision transformer architecture, termed Twins-SVT. It is worth noting that both attention operations in the architecture are efficient and easy-to-implement with matrix multiplications in a few lines of code. Thus, all of our architectures here have great applicability and can be easily deployed. + +We benchmark our proposed architectures on a number of visual tasks, ranging from image-level classification to pixel-level semantic/instance segmentation and object detection. Extensive experiments show that both of our proposed architectures perform favorably against other state-of-the-art vision transformers with similar or even reduced computational complexity. + +# 2 Related Work + +Convolutional neural networks. Characterized by local connectivity, weight sharing, shiftinvariance and pooling, CNNs have been the de facto standard model for computer vision tasks. The top-performing models [10–13] in image classification also serve as the strong backbones for downstream detection and segmentation tasks. + +Vision Transformers. Transformer was firstly proposed by [14] for machine translation tasks, and since then they have become the state-of-the-art models for NLP tasks, overtaking the sequence-tosequence approach built on LSTM. Its core component is multi-head self-attention which models the relationship between input tokens and shows great flexibility. + +In 2020, Transformer was introduced to computer vision for image and video processing [1–3, 9, 15– 17, 17–32]. In the image classification task, ViT [1] and DeiT [2] divide the images into patch embedding sequences and feed them into the standard transformers. Although vision transformers have been proved compelling in image classification compared with CNNs, a challenge remains when it is applied to dense prediction tasks such as object detection and segmentation. These tasks often require feature pyramids for better processing objects of different scales, and take as inputs the highresolution images, which significantly increase the computational complexity of the self-attention operations. + +Recently, Pyramid Vision Transformer (PVT) [8] is proposed and can output the feature pyramid [33] as in CNNs. PVT has demonstrated good performance in a number of dense prediction tasks. The recent Swin Transformer [4] introduces non-overlapping window partitions and restricts self-attention within each local window, resulting in linear computational complexity in the number of input tokens. To interchange information among different local areas, its window partitions are particularly designed to shift between two adjacent self-attention layers. The semantic segmentation framework OCNet [34] shares some similarities with us and they also interleave the local and global attention. Here, we demonstrate this is a general design paradigm in vision transformer backbones rather than merely an incremental module in semantic segmentation. + +Grouped and Separable Convolutions. Grouped convolutions are originally proposed in AlexNet [35] for distributed computing. They were proved both efficient and effective in speeding up the networks. As an extreme case, depthwise convolutions [12, 36] use the number of groups that is equal to the input or output channels, which is followed by point-wise convolutions to aggregate the information across different channels. Here, the proposed spatially separable self-attention shares some similarities with them. + +Positional Encodings. Most vision transformers use absolute/relative positional encodings, depending on downstream tasks, which are based on sinusoidal functions [14] or learnable [1, 2]. In CPVT [9], the authors propose the conditional positional encodings, which are dynamically conditioned on the inputs and show better performance than the absolute and relative ones. + +# 3 Our Method: Twins + +We present two simple yet powerful spatial designs for vision transformers. The first method is built upon PVT [8] and CPVT [9], which only uses the global attention. The architecture is thus termed Twins-PCPVT. The second one, termed Twins-SVT, is based on the proposed SSSA which interleaves local and global attention. + +# 3.1 Twins-PCPVT + +PVT [8] introduces the pyramid multi-stage design to better tackle dense prediction tasks such as object detection and semantic segmentation. It inherits the absolute positional encoding designed in ViT [1] and DeiT [2]. All layers utilize the global attention mechanism and rely on spatial reduction to cut down the computation cost of processing the whole sequence. It is surprising to see that the recently-proposed Swin transformer [4], which is based on shifted local windows, can perform considerably better than PVT, even on dense prediction tasks where a sufficiently large receptive field is even more crucial to good performance. + +In this work, we surprisingly found that the less favored performance of PVT is mainly due to the absolute positional encodings employed in PVT [8]. As shown in CPVT [9], the absolute positional encoding encounter difficulties in processing the inputs with varying sizes (which are common in dense prediction tasks). Moreover, this positional encoding also breaks the translation invariance. On the contrary, Swin transformer makes use of the relative positional encodings, which bypasses the above issues. Here, we demonstrate that this is the main cause why Swin outperforms PVT, and we show that if the appropriate positional encodings are used, PVT can actually achieve on par or even better performance than the Swin transformer. + +Here, we use the conditional position encoding (CPE) proposed in CPVT [9] to replace the absolute PE in PVT. CPE is conditioned on the inputs and can naturally avoid the above issues of the absolute encodings. The position encoding generator (PEG) [9], which generates the CPE, is placed after the first encoder block of each stage. We use the simplest form of PEG, i.e., a 2D depth-wise convolution without batch normalization. For image-level classification, following CPVT, we remove the class token and use global average pooling (GAP) at the end of the stage [9]. For other vision tasks, we follow the design of PVT. Twins-PCPVT inherits the advantages of both PVT and CPVT, which makes it easy to be implemented efficiently. Our extensive experimental results show that this simple design can match the performance of the recent state-of-the-art Swin transformer. We have also attempted to replace the relative PE with CPE in Swin, which however does not result in noticeable performance gains, as shown in our experiments. We conjecture that this maybe due to the use of shifted windows in Swin, which might not work well with CPE. + +Architecture settings We report the detailed settings of Twins-PCPVT in Table 2 (in supplementary), which are similar to PVT [8]. Therefore, Twins-PCPVT has similar FLOPs and number of parameters to [8]. + +# 3.2 Twins-SVT + +Vision transformers suffer severely from the heavy computational complexity in dense prediction tasks due to high-resolution inputs. Given an input of $H \times W$ resolution, the complexity of selfattention with dimension $d$ is $\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )$ . Here, we propose the spatially separable self-attention (SSSA) to alleviate this challenge. SSSA is composed of locally-grouped self-attention (LSA) and global sub-sampled attention (GSA). + +![](images/fec150010c9fe25574fcd045b5d0727df84edd7d8819dfbc9908baa560445e02.jpg) +Figure 1 – Architecture of Twins-SVT-S. “PEG" is the positional encoding generator from CPVT [9]. + +Locally-grouped self-attention (LSA). Motivated by the group design in depthwise convolutions for efficient inference, we first equally divide the 2D feature maps into sub-windows, making self-attention communications only happen within each sub-window. This design also resonates with the multi-head design in selfattention, where the communications only occur within the channels of the same head. To be specific, the feature maps are divided into $m \times n$ sub-windows. Without loss of generality, we assume $H \% m = 0$ and $W \% n = 0$ . Each group contains $\textstyle { \frac { H W } { m n _ { * } } }$ elements, and thus the computation cost of the self-attention in this window is $\begin{array} { r } { \mathcal { O } \big ( \frac { H ^ { 2 } W ^ { 2 } } { m ^ { 2 } n ^ { 2 } } d \big ) } \end{array}$ , and the total cost is $\begin{array} { r } { \mathcal { O } ( \frac { H ^ { 2 } W ^ { 2 } } { m n } d ) } \end{array}$ . If we let $\begin{array} { r } { \dot { k } _ { 1 } = \frac { H } { m } } \end{array}$ and $\textstyle k _ { 2 } \ = \ { \frac { W } { n } }$ , the cost can be + +![](images/12ea80c3e81cb7eced3ec463d4e28c76d5d0784a7607a8261852efa72d93e84d.jpg) +Figure 2 – (a) Twins-SVT interleaves locally-grouped attention (LSA) and global sub-sampled attention (GSA). (b) Schematic view of the locally-grouped attention (LSA) and global sub-sampled attention (GSA). + +computed as $\mathcal { O } ( k _ { 1 } k _ { 2 } H W d )$ , which is significantly more efficient when $k _ { 1 } \ll H$ and $k _ { 2 } \ll W$ and grows linearly with $H W$ if $k _ { 1 }$ and $k _ { 2 }$ are fixed. + +Although the locally-grouped self-attention mechanism is computation friendly, the image is divided into non-overlapping sub-windows. Thus, we need a mechanism to communicate between different sub-windows, as in Swin. Otherwise, the information would be limited to be processed locally, which makes the receptive field small and significantly degrades the performance as shown in our experiments. This resembles the fact that we cannot replace all standard convolutions by depth-wise convolutions in CNNs. + +Global sub-sampled attention (GSA). A simple solution is to add extra standard global selfattention layers after each local attention block, which can enable cross-group information exchange. However, this approach would come with the computation complexity of $\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )$ . + +Here, we use a single representative to summarize the important information for each of $m \times n$ sub-windows and the representative is used to communicate with other sub-windows (serving as the key in self-attention), which can dramatically reduce the cost to $\begin{array} { r } { \mathcal { O } ( m n H W d ) = \mathcal { O } ( \frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } ) } \end{array}$ . This is essentially equivalent to using the sub-sampled feature maps as the key in attention operations, and thus we term it global sub-sampled attention (GSA). If we alternatively use the aforementioned LSA and GSA like separable convolutions (depth-wise $^ +$ point-wise). The total computation cost√ is $\begin{array} { r } { \mathcal { O } ( \frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } \bar { H } W d ) } \end{array}$ . We have $\begin{array} { r } { \frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } H W d \geq 2 H W d \sqrt { H W } } \end{array}$ . The minimum is obtained when $\boldsymbol { k } _ { 1 } \cdot \boldsymbol { k } _ { 2 } = \sqrt { H W }$ . We note that $H = W = 2 2 4$ is popular in classification. Without loss of generality, we use square sub-windows, i.e., $k _ { 1 } = k _ { 2 }$ . Therefore, $k _ { 1 } = k _ { 2 } = 1 5$ is close to the global minimum for $H = W = 2 2 4$ . However, our network is designed to include several stages with variable resolutions. Stage 1 has feature maps of $5 6 \times 5 6$ , the minimum is obtained when $k _ { 1 } \stackrel { \cdot } { = } k _ { 2 } = \sqrt { 5 6 } \approx 7 .$ Theoretically, we can calibrate optimal $k _ { 1 }$ and $k _ { 2 }$ for each of the stages. For simplicity, we use $k _ { 1 } = k _ { 2 } = 7$ everywhere. As for stages with lower resolutions, we control the summarizing window-size of GSA to avoid too small amount of generated keys. Specifically, we use the size of 4, 2 and 1 for the last three stages respectively. + +As for the sub-sampling function, we investigate several options including average pooling, depthwise strided convolutions, and regular strided convolutions. Empirical results show that regular strided convolutions perform best here. Formally, our spatially separable self-attention (SSSA) can be written as + +$$ +\begin{array} { r l } & { \hat { \mathbf { z } } _ { i j } ^ { l } = \mathrm { L S A } \left( \mathrm { L a y e r N o r m } \left( \mathbf { z } _ { i j } ^ { l - 1 } \right) \right) + \mathbf { z } _ { i j } ^ { l - 1 } , } \\ & { \mathbf { z } _ { i j } ^ { l } = \mathrm { F F N } \left( \mathrm { L a y e r N o r m } \left( \hat { \mathbf { z } } _ { i j } ^ { l } \right) \right) + \hat { \mathbf { z } } _ { i j } ^ { l } , } \\ & { \hat { \mathbf { z } } ^ { l + 1 } = \mathrm { G S A } \left( \mathrm { L a y e r N o r m } \left( \mathbf { z } ^ { l } \right) \right) + \mathbf { z } ^ { l } , } \\ & { \mathbf { z } ^ { l + 1 } = \mathrm { F F N } \left( \mathrm { L a y e r N o r m } \left( \hat { \mathbf { z } } ^ { l + 1 } \right) \right) + \hat { \mathbf { z } } ^ { l + 1 } , } \\ & { i \in \{ 1 , 2 , . . . . , m \} , j \in \{ 1 , 2 , . . . . , n \} } \end{array} +$$ + +where LSA means locally-grouped self-attention within a sub-window; GSA is the global sub-sampled attention by interacting with the representative keys (generated by the sub-sampling functions) from each sub-window $\hat { \mathbf { z } } _ { i j } \mathbf { \bar { \Psi } } \in \mathcal { R } ^ { k _ { 1 } \times k _ { 2 } \times \mathbf { \bar { C } } }$ . Both LSA and GSA have multiple heads as in the standard self-attention.The PyTorch code of LSA is given in Algorithm 1 (in supplementary). + +Again, we use the PEG of CPVT [9] to encode position information and process variable-length inputs on the fly. It is inserted after the first block in each stage. + +Model variants. The detailed configure of Twins-SVT is shown in Table 3 (in supplementary). We try our best to use the similar settings as in Swin [4] to make sure that the good performance is due to the new design paradigm. + +Comparison with PVT. PVT entirely utilizes global attentions as DeiT does while our method makes use of spatial separable-like design with LSA and GSA, which is more efficient. + +Comparison with Swin. Swin utilizes the alternation of local window based attention where the window partitions in successive layers are shifted. This is used to introduce communication among different patches and to increase the receptive field. However, this procedure is relatively complicated and may not be optimized for speed on devices such as mobile devices. Swin Transformer depends on torch.roll() to perform cyclic shift and its reverse on features. This operation is memory unfriendly and rarely supported by popular inference frameworks such as NVIDIA TensorRT, Google TensorflowLite, and Snapdragon Neural Processing Engine SDK (SNPE), etc. This hinders the deployment of Swin either on the server-side or on end devices in a production environment. In contrast, Twins models don’t require such an operation and only involve matrix multiplications that are already optimized well in modern deep learning frameworks. Therefore, it can further benefit from the optimization in a production environment. For example, we converted Twins-SVT-S from PyTorch to TensorRT , and its throughput is boosted by $1 . 7 \times$ . Moreover, our local-global design can better exploit the global context, which is known to play an important role in many vision tasks. + +Finally, one may note that the network configures (e.g., such as depths, hidden dimensions, number of heads, and the expansion ratio of MLP) of our two variants are sightly different. This is intended because we want to make fair comparisons to the two recent well-known transformers PVT and Swin. PVT prefers a slimmer and deeper design while Swin is wider and shallower. This difference makes PVT have slower training than Swin. Twins-PCPVT is designed to compare with PVT and shows that a proper positional encoding design can greatly boost the performance and make it on par with recent state-of-the-art models like Swin. On the other hand, Twins-SVT demonstrates the potential of a new paradigm as to spatially separable self-attention is highly competitive to recent transformers. + +# 4 Experiments + +# 4.1 Classification on ImageNet-1K + +We first present the ImageNet classification results with our proposed models. We carefully control the experiment settings to make fair comparisons against recent works [2, 8, 9]. All our models are trained for 300 epochs with a batch size of 1024 using the AdamW optimizer [37]. The learning rate is initialized to be 0.001 and decayed to zero within 300 epochs following the cosine strategy. We use a linear warm-up in the first five epochs and the same regularization setting as in [2]. Note that we do not utilize extra tricks in [26, 28] to make fair comparisons although it may further improve the performance of our method. We use increasing stochastic depth [38] augmentation of 0.2, 0.3, 0.5 for small, base and large model respectively. Following Swin [4], we use gradient clipping with a max norm of 5.0 to stabilize the training process, which is especially important for the training of large models. + +We report the classification results on ImageNet-1K [39] in Table 1. Twins-PCPVT-S outperforms PVT-small by $1 . 4 \%$ and obtains similar result as Swin-T with $18 \%$ fewer FLOPs. Twins-SVT-S is better than Swin-T with about $3 5 \%$ fewer FLOPs. Other models demonstrate similar advantages. + +It is interesting to see that, without bells and whistles, Twins-PCPVT performs on par with the recent state-of-the-art Swin, which is based on much more sophisticated designs as mentioned above. Moreover, Twins-SVT also achieves similar or better results, compared to Swin, indicating that the spatial separable-like design is an effective and promising paradigm. + +One may challenge our improvements are due to the use of the better positional encoding PEG. Thus, we also replace the relative PE in Swin-T with PEG [9], but the Swin-T’s performance cannot be improved (being $8 1 . 2 \%$ ). + +# 4.2 Semantic Segmentation on ADE20K + +We further evaluate the performance on segmentation tasks. We test on the ADE20K dataset [42], a challenging scene parsing task for semantic segmentation, which is popularly evaluated by recent Transformer-based methods. This dataset contains 20K images for training and 2K images for validation. Following the common practices, we use the training set to train our models and report the mIoU on the validation set. All models are pretrained on the ImageNet-1k dataset. + +Twins-PCPVT vs. PVT. We compare our Twins-PCPVT with PVT [8] because they have similar design and computational complexity. To make fair comparisons, we use the Semantic FPN framework [43] and exactly the same training settings as in PVT. Specifically, we train 80K steps with a batch size of 16 using AdamW [37]. The learning rate is initialized as $1 \times 1 0 ^ { - 4 }$ and scheduled by the ‘poly’ strategy with the power coefficient of 0.9. We apply the drop-path regularization of 0.2 for the backbone and weight decay 0.0005 for the whole network. Note that we use a stronger drop-path regularization of 0.4 for the large model to avoid over-fitting. For Swin, we use their official code and trained models. We report the results in Table 2. With comparable FLOPs, Twins-PCPVT-S outperforms PVT-Small with a large margin $( + 4 . 5 \%$ mIoU), which also surpasses ResNet-50 by $7 . 6 \%$ mIoU. It also outperforms Swin-T with a clear margin. Besides, Twins-PCPVT-B also achieves $3 . 3 \%$ higher mIoU than PVT-Medium, and Twins-PCPVT-L surpasses PVT-Large with $4 . 3 \%$ higher mIoU. + +Twins-SVT vs. Swin. We also compare our Twins-SVT with the recent state-of-the-art model Swin [4]. With the Semantic FPN framework and the above settings, Twins-SVT-S achieves better performance $( + 1 . 7 \% )$ than Swin-T. Twins-SVT-B obtains comparable performance with Swin-S and Twins-SVT-L outperforms Swin-B by $0 . 7 \%$ mIoU (left columns in Table 2). In addition, Swin evaluates its performance using the UperNet framework [44]. We transfer our method to this framework and use exactly the same training settings as [4]. To be specific, we use the AdamW optimizer to train all models for $1 6 0 \mathrm { k }$ iterations with a global batch size of 16. The initial learning rate is $6 \times 1 0 ^ { - 5 }$ and linearly decayed to zero. We also utilize warm-up during the first 1500 iterations. Moreover, we apply the drop-path regularization of 0.2 for the backbone and weight decay 0.01 for the whole network. We report the mIoU of both single scale and multi-scale testing (we use scales from 0.5 to 1.75 with step 0.25) in the right columns of Table 2. Both with multi-scale testing, Twins-SVT-S outperforms Swin-T by $1 . 3 \%$ mIoU. Moreover, Twins-SVT-L achieves new state of the art result $5 0 . 2 \%$ mIoU under comparable FLOPs and outperforms Swin-B by $0 . 5 \%$ mIoU. Twins-PCPVT also achieves comparable performance to Swin [4]. + +# 4.3 Object Detection and Segmentation on COCO + +We evaluate the performance of our method using two representative frameworks: RetinaNet [46] and Mask RCNN [47]. Specifically, we use our transformer models to build the backbones of these detectors. All the models are trained under the same setting as in [8]. Since PVT and Swin report their results using different frameworks, we try to make fair comparison and build consistent settings for future methods. Specifically, we report standard $1 \times$ -schedule (12 epochs) detection results on the COCO 2017 dataset [48] in Tables 3 and 4. As for the evaluation based on RetinaNet, we train all the models using AdamW [37] optimizer for 12 epochs with a batch size of 16. The initial learning rate is $1 \times 1 \bar { 0 } ^ { - 4 }$ , started with 500-iteration warmup and decayed by $1 0 \times$ at the 8th and 11th epoch, respectively. We use stochastic drop path regularization of 0.2 and weight decay 0.0001. The implementation is based on MMDetection [49]. For the Mask R-CNN framework, we use the initial learning rate of $2 \times 1 0 ^ { - 4 }$ as in [8]. All other hyper-parameters follow the default settings in MMDetection. As for $3 \times$ experiments, we follow the common multi-scale training in [3, 4], i.e., randomly resizing the input image so that its shorter side is between 480 and 800 while keeping longer one less than 1333. Moreover, for $3 \times$ training of Mask R-CNN, we use an initial learning rate of 0.0001 and weight decay of 0.05 for the whole network as [4]. + +Table 1 – Comparisons with state-of-the-art methods for ImageNet-1K classification. Throughput is tested on the batch size of 192 on a single V100 GPU. All models are trained and evaluated on $2 2 4 \times 2 2 4$ resolution on ImageNet-1K dataset. †: w/ CPVT’s position encodings [9]. + +
MethodParam (M)FLOPs (G)Throughput (Images/s)Top-1 (%)
ConvNet
RegNetY-4G [40]214.0115780.0
RegNetY-8G [40]398.059281.7
RegNetY-16G [40]8416.033582.9
Transformer
DeiT-Small/16 [2]22.14.643779.9
CrossViT-S [30]26.75.6-81.0
T2T-ViT-14 [27]225.281.5
TNT-S [15]23.85.2=81.3
CoaTMini [17]106.880.8
CoaT-Lite Small [17]204.0-81.9
PVT-Small [8]24.53.882079.8
CPVT-Small-GAP [9]234.681781.5
Twins-PCPVT-S (ours)24.13.881581.2 (+1.3)
Swin-T[4]294.576681.3
Swin-T + CPVT†284.476681.2
Twins-SVT-S (ours)242.9105981.7 (+1.8)
T2T-ViT-19 [27]39.28.9181.9
PVT-Medium [8]44.26.752681.2
Twins-PCPVT-B(ours)43.86.752582.7 (+0.8)
Swin-S [4]508.744483.0
Twins-SVT-B (ours)568.646983.2 (+1.3)
ViT-Base/16 [1]86.617.68677.9
DeiT-Base/16 [2]86.617.629281.8
T2T-ViT-24[27]64.114.1182.3
Cross ViT-B [30]104.721.2182.2
TNT-B [15]6614.1=82.8
CPVT-B [9]8817.629282.3
PVT-Large [8]61.49.836781.7
Twins-PCPVT-L(ours)60.99.836783.1 (+5.2)
Swin-B [4]8815.427583.3
Twins-SVT-L (ours)99.215.128883.7( (+5.8)
Hybrid
BoTNet-S1-59 [29]33.57.381.7
BossNet-T1 [41]17.981.9
CvT-13 [31]204.581.6
BoTNet-S1-110 [29]54.710.982.8
CvT-21 [31]327.1=82.5
+ +For $1 \times$ schedule object detection with RetinaNet, Twins-PCPVT-S surpasses PVT-Small with $2 . 6 \%$ mAP and Twins-PCPVT-B exceeds PVT-Medium by $2 . 4 \%$ mAP on the COCO val2017 split. Twins-SVT-S outperforms Swin-T with $1 . 5 \%$ mAP while using $12 \%$ fewer FLOPs. Our method outperform the others with similar advantage in $3 \times$ experiments. + +Table 2 – Performance comparisons with different backbones on ADE20K validation dataset. FLOPs are tested on $5 1 2 \times 5 1 2$ resolution. All backbones are pretrained on ImageNet-1k except SETR [45], which is pretrained on ImageNet-21k dataset. + +
BackboneSemantic FPN 80k (PVT [8] setting)Upernet 160k (Swin [4] setting)
FLOPs (G)Param (M)mIoU (%)FLOPs (G)Param (M)mIoU/MS mIoU (%)
ResNet50 [10]4528.536.71
PVT-Small [8]4028.239.81-=
Twins-PCPVT-S (ours)4028.444.3 (+7.6)23454.646.2/47.5
Swin-T[4]4631.941.523759.944.5/45.8
Twins-SVT-S (ours)3728.343.2( (+6.5)22854.446.2/47.1
ResNet101 [10]6647.538.825886-/44.9
PVT-Medium [8]5548.041.6=1
Twins-PCPVT-B (ours)5548.144.9 (+6.1)25074.347.1/48.4
Swin-S [4]7053.245.226181.347.6/49.5
Twins-SVT-B (ours)6760.445.3 (+6.5)26188.547.7/48.9
ResNetXt101-64×4d [13]186.440.211=
PVT-Large [8]7165.142.1---
Twins-PCPVT-L (ours)7165.346.4 (+6.2)26991.548.6/49.8
Swin-B [4]10791.246.029912148.1/49.7
Twins-SVT-L (ours)102103.746.7 (+6.5)29713348.8/50.2
BackbonePUP (SETR [45] setting)MLA (SETR [45] setting)
T-Large (SETR) [45]-31050.1130848.6/50.3
+ +For $1 \times$ object segmentation with the Mask R-CNN framework, Twins-PCPVT-S brings similar improvements $( + 2 . 5 \%$ mAP) over PVT-Small. Compared with PVT-Medium, Twins-PCPVT-B obtains $2 . 6 \%$ higher mAP, which is also on par with that of Swin. Both Twins-SVT-S and Twins-SVTB achieve better or slightly better performance compared to the counterparts of Swin. As for large models, our results are shown in Table 1 (in supplementary) and we also achieve better performance with comparable FLOPs. + +Table 3 – Object detection performance on the COCO val2017 split using the RetinaNet framework. $1 \times$ is 12 epochs and $3 \times$ is 36 epochs. “MS”: Multi-scale training. FLOPs are evaluated on $8 0 0 \times 6 0 0$ resolution. + +
BackboneFLOPsParaml (G)(M)RetinaNet1×RetinaNet 3× +MS
|APAP50 AP75 APs APm APL|AP AP50 AP75APs APm APL
ResNet50 [10]11137.7 36.355.3 38.6 19.3 40.0 48.8|39.058.4 41.8 22.4 42.8 51.6
PVT-Small [8]11834.261.3 43.0 25.0 42.9 55.762.7 45.0 26.2 45.2 57.2
Twins-PCPVT-S (ours)11834.443.0(+6.7) 64.1 46.0 27.5 46.3 57.345.2(+6.2) 66.5 48.6 30.0 48.8 58.9
Swin-T[4]11838.562.1 44.2 25.1 44.9 55.543.9 64.8 47.1 28.4 47.2 57.8
Twins-SVT-S (ours)10434.343.0(+6.7) 64.2 46.3 28.0 46.4 57.545.6(+6.6) 67.1 48.6 29.8 49.3 60.0
ResNet101[10]14956.757.8 41.2 21.4 42.6 51.160.1 44.0 23.7 45.0 53.8
ResNeXt101-32×4d[13]15156.459.642.7 22.344.2 52.561.0 44.3 23.9 45.5 53.7
PVT-Medium [8]15153.963.1 44.3 25.0 44.9 57.6463.8 46.1 27.3 46.3 58.9
Twins-PCPVT-B (ours)15154.141.9 44.3(+5.8) ) 65.6 47.3 27.9 47.9 59.6443.2 46.4(+5.5) 67.7 49.8 31.3 50.2 61.4 46.3
Swin-S [4]16259.844.5 65.7 47.5 27.4 48.0 59.967.4 49.8 31.1 50.3 60.9
Twins-SVT-B (ours)16367.045.3(+6.8) 66.7 48.1 28.5 48.9 60.646.9(+6.0)68.0 50.2 31.7 50.3 61.8
+ +# 4.4 Ablation Studies + +Configurations of LSA and GSA blocks. We evaluate different combinations of LSA and GSA based on our small model and present the ablation results in Table 5. The models with only locally-grouped attention fail to obtain good performance $( 7 6 . 9 \% )$ + +Table 5 – Classification performance for different combinations of LSA (L) and GSA (G) blocks based on the small model. + +
Function TypeParams (M)FLOPs (G)Top-1 (%)
(L,L,L)8.82.276.9
(L, LLG, LLG, G)23.52.881.5
(L, LG, LG, G)24.12.881.7
(L,L,L, G)22.22.980.5
PVT-small(G, G, G, G) [8]24.53.879.8
+ +Table 4 – Object detection and instance segmentation performance on the COCO val2017 dataset using the Mask R-CNN framework. FLOPs are evaluated on a $8 0 0 \times 6 0 0$ image. + +
BackboneFLOPsParaml (G)(M)Mask R-CNN 1×Mask R-CNN3× +MS
|APbAP0APAPmAPAP|APbAP0APP APm APAPP
ResNet50 [10]17444.238.058.6 41.4 34.455.1 36.741.061.7 44.9 37.1 58.4 40.1
PVT-Small [8]17844.140.462.9 43.8 37.860.1 40.343.065.3 46.9 39.9 62.5 42.8
Twins-PCPVT-S (ours)17844.342.9(+4.9)65.8 47.1 40.0(+5.6)62.742.946.8(+5.8)69.3 51.8 42.6 66.3 46.0
Swin-T[4]17747.842.264.6 46.2 39.161.6 42.0 46.068.2 50.2 41.6 65.1 44.8
Twins-SVT-S (ours)16444.043.4(+5.4)66.0 47.3 40.3(+5.9)63.243.446.8(+5.8)69.2 51.2 42.6 66.3 45.8
ResNet101[10]21063.240.461.1 44.2 36.457.7 38.842.863.2 47.1 38.5 60.1 41.3
ResNeXt101-32×4d[13]21262.841.962.5 45.9 37.559.4 40.2 44.064.4 48.0 39.2 61.4 41.9
PVT-Medium [8]21163.942.064.4 45.6 39.061.6 42.144.266.0 48.2 40.5 63.1 43.5
Twins-PCPVT-B (ours)21164.044.6(+4.2)66.7 48.9 40.9(+4.5)63.844.247.9(+5.1) 70.152.5 43.2 67.2 46.3
Swin-S [4]22269.144.866.6 48.9 40.963.4 44.2 47.669.4 52.5 42.8 66.5 46.4
Twins-SVT-B (ours)22476.345.2(+4.8)67.6 49.3 41.5(+5.1) 64.5 44.848.0(+5.2)69.5 52.7 43.0 66.8 46.6
+ +because this setting has a limited and small receptive field. An extra global attention layer in the last stage can improve the classification performance by $3 . 6 \%$ . Local-Local-Global (abbr. LLG) also achieves good performance $( 8 1 . 5 \% )$ , but we do not use this design in this work. + +Sub-sampling functions. We further study how the different sub-sampling functions affect the performance. Specifically, we compare the regular strided convolutions, separable convolutions and average pooling based on the ‘small’ model and present the results in Table 6. The first option performs best and therefore we choose it as our default implementation. + +Table 6 – ImageNet classification performance of different forms of sub-sampled functions for the global sub-sampled attention (GSA). + +
Function TypeTop-1(%)
2D Conv.81.7
2D Separable Conv.81.2
Average Pooling81.2
+ +sitional Encodings. We replace the relative positional encoding with CPVT for Swin-T and report the detection performance on COCO with RetinaNet and Mask R-CNN in Table 7. The CPVT-based Swin cannot achieve improved performance with both frameworks, which indicates that our performance improvements should be owing to the paradigm of Twins-SVT instead of the positional encodings. + +Table 7 – Object detection performance on the COCO using different positional encoding strategies. + +
BackboneRetinaNetMask RCNN
FLOPs(G)Param(M) APAP50AP75FLOPs(G)Param(M)APAP50AP75
Swin-T[4]]24538.541.562.144.226447.842.264.646.2
Swin-T+CPVT24538.541.362.444.126347.842.064.545.9
+ +# 5 Conclusion + +In this paper, we have presented two powerful vision transformer backbones for both image-level classification and a few downstream dense prediction tasks. We dub them as twin transformers: Twins-PCPVT and Twins-SVT. The former variant explores the applicability of conditional positional encodings [9] in pyramid vision transformer [8], confirming its potential for improving backbones in many vision tasks. In the latter variant we revisit current attention design to proffer a more efficient attention paradigm. We find that interleaving local and global attention can produce impressive results, yet it comes with higher throughputs. Both transformer models set a new state of the art in image classification, objection detection and semantic/instance segmentation. + +# References + +[1] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at scale. In Proc. Int. Conf. Learn. Representations, 2021. +[2] 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. [3] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to-end object detection with transformers. In Proc. Eur. Conf. Comp. Vis., pages 213–229. Springer, 2020. +[4] 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. In Proc. IEEE Int. Conf. Comp. Vis., pages 10012–10022, 2021. [5] Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. IEEE Trans. Pattern Anal. Mach. Intell., 40(4):834–848, 2017. [6] Chao Peng, Xiangyu Zhang, Gang Yu, Guiming Luo, and Jian Sun. Large kernel matters– improve semantic segmentation by global convolutional network. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 4353–4361, 2017. +[7] Wei Liu, Andrew Rabinovich, and Alexander C Berg. Parsenet: Looking wider to see better. arXiv preprint arXiv:1506.04579, 2015. [8] 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. [9] Xiangxiang Chu, Zhi Tian, Bo Zhang, Xinlong Wang, Xiaolin Wei, Huaxia Xia, and Chunhua Shen. Conditional positional encodings for vision transformers. arXiv preprint arXiv:2102.10882, 2021. +[10] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 770–778, 2016. +[11] Mingxing Tan and Quoc Le. Efficientnet: Rethinking model scaling for convolutional neural networks. In Proc. Int. Conf. Mach. Learn., pages 6105–6114. PMLR, 2019. +[12] François Chollet. Xception: Deep learning with depthwise separable convolutions. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 1251–1258, 2017. +[13] Saining Xie, Ross Girshick, Piotr Dollár, Zhuowen Tu, and Kaiming He. Aggregated residual transformations for deep neural networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 1492–1500, 2017. +[14] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Proc. Advances in Neural Inf. Process. Syst., pages 6000–6010, 2017. +[15] Kai Han, An Xiao, Enhua Wu, Jianyuan Guo, Chunjing Xu, and Yunhe Wang. Transformer in transformer. arXiv preprint arXiv:2103.00112, 2021. +[16] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jon Shlens. Stand-alone self-attention in vision models. In Proc. Advances in Neural Inf. Process. Syst., volume 32, pages 68–80, 2019. +[17] Weijian Xu, Yifan Xu, Tyler Chang, and Zhuowen Tu. Co-scale conv-attentional image transformers, 2021. +[18] Yuqing Wang, Zhaoliang Xu, Xinlong Wang, Chunhua Shen, Baoshan Cheng, Hao Shen, and Huaxia Xia. End-to-end video instance segmentation with transformers. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., 2021. +[19] Hanting Chen, Yunhe Wang, Tianyu Guo, Chang Xu, Yiping Deng, Zhenhua Liu, Siwei Ma, Chunjing Xu, Chao Xu, and Wen Gao. Pre-trained image processing transformer. arXiv preprint arXiv:2012.00364, 2020. +[20] Fuzhi Yang, Huan Yang, Jianlong Fu, Hongtao Lu, and Baining Guo. Learning texture transformer network for image super-resolution. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 5791–5800, 2020. +[21] Yanhong Zeng, Jianlong Fu, and Hongyang Chao. Learning joint spatial-temporal transformations for video inpainting. In Proc. Eur. Conf. Comp. Vis., pages 528–543. Springer, 2020. +[22] Zhigang Dai, Bolun Cai, Yugeng Lin, and Junying Chen. UP-DETR: Unsupervised pre-training for object detection with transformers. arXiv preprint arXiv:2011.09094, 2020. +[23] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish Vaswani. Bottleneck transformers for visual recognition. arXiv: Comp. Res. Repository, 2021. +[24] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei Fu, Jianfeng Feng, Tao Xiang, Philip HS Torr, et al. Rethinking semantic segmentation from a sequence-to-sequence perspective with transformers. arXiv preprint arXiv:2012.15840, 2020. +[25] Niki Parmar, Ashish Vaswani, Jakob Uszkoreit, Lukasz Kaiser, Noam Shazeer, Alexander Ku, and Dustin Tran. Image transformer. In Proc. Int. Conf. Mach. Learn., volume 80, pages 4055–4064, 2018. +[26] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou. Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021. +[27] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis Tay, Jiashi Feng, and Shuicheng Yan. Tokens-to-token ViT: Training vision transformers from scratch on imagenet. arXiv preprint arXiv:2101.11986, 2021. +[28] Zihang Jiang, Qibin Hou, Li Yuan, Daquan Zhou, Xiaojie Jin, Anran Wang, and Jiashi Feng. Token labeling: Training an $8 5 . 4 \%$ top-1 accuracy vision transformer with 56M parameters on ImageNet. arXiv: Comp. Res. Repository, 2021. +[29] 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. +[30] Chun-Fu Chen, Quanfu Fan, and Rameswar Panda. CrossViT: Cross-attention multi-scale vision transformer for image classification. arXiv preprint arXiv:2103.14899, 2021. +[31] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang. CvT: Introducing convolutions to vision transformers. arXiv: Comp. Res. Repository, 2021. +[32] Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. Deformable detr: Deformable transformers for end-to-end object detection. In Proc. Int. Conf. Learn. Representations, 2021. +[33] Tsung-Yi Lin, Piotr Dollár, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. Feature pyramid networks for object detection. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 2117–2125, 2017. +[34] Yuhui Yuan, Lang Huang, Jianyuan Guo, Chao Zhang, Xilin Chen, and Jingdong Wang. OCNet: Object context network for scene parsing. arXiv: Comp. Res. Repository, 2021. +[35] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. ImageNet classification with deep convolutional neural networks. In Proc. Advances in Neural Inf. Process. Syst., volume 25, pages 1097–1105, 2012. +[36] Laurent Sifre and Stéphane Mallat. Rigid-motion scattering for texture classification. arXiv preprint arXiv:1403.1687, 2014. +[37] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. In Proc. Int. Conf. Learn. Representations, 2019. +[38] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Weinberger. Deep networks with stochastic depth. In Proc. Eur. Conf. Comp. Vis., pages 646–661. Springer, 2016. +[39] Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge. International journal of computer vision, 115(3):211–252, 2015. +[40] Ilija Radosavovic, Raj Prateek Kosaraju, Ross Girshick, Kaiming He, and Piotr Dollár. Designing network design spaces. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10428–10436, 2020. +[41] Changlin Li, Tao Tang, Guangrun Wang, Jiefeng Peng, Bing Wang, Xiaodan Liang, and Xiaojun Chang. Bossnas: Exploring hybrid cnn-transformers with block-wisely self-supervised neural architecture search. arXiv preprint arXiv:2103.12424, 2021. +[42] Bolei Zhou, Hang Zhao, Xavier Puig, Sanja Fidler, Adela Barriuso, and Antonio Torralba. Scene parsing through ADE20k dataset. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 633–641, 2017. +[43] Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollár. Panoptic feature pyramid networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 6399–6408, 2019. +[44] Tete Xiao, Yingcheng Liu, Bolei Zhou, Yuning Jiang, and Jian Sun. Unified perceptual parsing for scene understanding. In Proceedings of the European Conference on Computer Vision (ECCV), pages 418–434, 2018. +[45] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei Fu, Jianfeng Feng, Tao Xiang, Philip H.S. Torr, and Li Zhang. Rethinking semantic segmentation from a sequence-to-sequence perspective with transformers. In CVPR, 2021. +[46] Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense object detection. In Proc. IEEE Int. Conf. Comp. Vis., pages 2980–2988, 2017. +[47] Kaiming He, Georgia Gkioxari, Piotr Dollár, and Ross Girshick. Mask R-CNN. In Proc. IEEE Int. Conf. Comp. Vis., pages 2961–2969, 2017. +[48] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Proc. Eur. Conf. Comp. Vis., pages 740–755, 2014. +[49] Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun, Wansen Feng, Ziwei Liu, Jiarui Xu, Zheng Zhang, Dazhi Cheng, Chenchen Zhu, Tianheng Cheng, Qijie Zhao, Buyu Li, Xin Lu, Rui Zhu, Yue Wu, Jifeng Dai, Jingdong Wang, Jianping Shi, Wanli Ouyang, Chen Change Loy, and Dahua Lin. MMDetection: Open MMLab detection toolbox and benchmark. arXiv preprint arXiv:1906.07155, 2019. \ No newline at end of file diff --git a/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_content_list.json b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..23cb764dd9acfa47fd698657ea0606da1f643f84 --- /dev/null +++ b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_content_list.json @@ -0,0 +1,930 @@ +[ + { + "type": "text", + "text": "Twins: Revisiting the Design of Spatial Attention in Vision Transformers ", + "text_level": 1, + "bbox": [ + 189, + 122, + 810, + 171 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Xiangxiang $\\mathbf { C h u ^ { 1 } }$ , Zhi Tian1,2, Yuqing Wang1, Bo Zhang1 Haibing Ren1, Xiaolin Wei1, Huaxia Xia1, Chunhua Shen2∗ ", + "bbox": [ + 290, + 219, + 740, + 255 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Meituan Inc. 2 The University of Adelaide, Australia 1 {chuxiangxiang,wangyuqing06,zhangbo97,renhaibing,weixiaolin02,xiahuaxia}@meituan.com 2 zhi.tian@outlook.com, chunhua@me.com ", + "bbox": [ + 184, + 262, + 843, + 309 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 344, + 535, + 362 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Very recently, a variety of vision transformer architectures for dense prediction tasks have been proposed and they show that the design of spatial attention is critical to their success in these tasks. In this work, we revisit the design of the spatial attention and demonstrate that a carefully devised yet simple spatial attention mechanism performs favorably against the state-of-the-art schemes. As a result, we propose two vision transformer architectures, namely, Twins-PCPVT and TwinsSVT. Our proposed architectures are highly efficient and easy to implement, only involving matrix multiplications that are highly optimized in modern deep learning frameworks. More importantly, the proposed architectures achieve excellent performance on a wide range of visual tasks including image-level classification as well as dense detection and segmentation. The simplicity and strong performance suggest that our proposed architectures may serve as stronger backbones for many vision tasks. Our code is available at: https://git.io/Twins. ", + "bbox": [ + 233, + 376, + 766, + 555 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 Introduction ", + "text_level": 1, + "bbox": [ + 174, + 579, + 310, + 597 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recently, Vision Transformers [1–3] have received increasing research interest. Compared to the widely-used convolutional neural networks (CNNs) in visual perception, Vision Transformers enjoy great flexibility in modeling long-range dependencies in vision tasks, introduce less inductive bias, and can naturally process multi-modality input data including images, videos, texts, speech signals, and point clouds. Thus, they have been considered to be a strong alternative to CNNs. It is expected that vision transformers are likely to replace CNNs and serve as the most basic component in the next-generation visual perception systems. ", + "bbox": [ + 174, + 611, + 825, + 708 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "One of the prominent problems when applying transformers to vision tasks is the heavy computational complexity incurred by the spatial self-attention operation in transformers, which grows quadratically in the number of pixels of the input image. A workaround is the locally-grouped self-attention (or self-attention in non-overlapped windows as in the recent Swin Transformer [4]), where the input is spatially grouped into non-overlapped windows and the standard self-attention is computed only within each sub-window. Although it can significantly reduce the complexity, it lacks the connections between different windows and thus results in a limited receptive field. As pointed out by many previous works [5–7], a sufficiently large receptive field is crucial to the performance, particularly for dense prediction tasks such as image segmentation and object detection. Swin [4] proposes a shifted window operation to tackle the issue, where the boundaries of these local windows are gradually moved as the network proceeds. Despite being effective, the shifted windows may have uneven sizes. The uneven windows result in difficulties when the models are deployed with ONNX or TensorRT, which prefers the windows of equal sizes. Another solution is proposed in PVT [8]. Unlike the standard self-attention operation, where each query computes the attention weights with all the input tokens, in PVT, each query only computes the attention with a sub-sampled version of the input tokens. Although its computational complexity in theory is still quadratic, it is already manageable in practice. ", + "bbox": [ + 174, + 714, + 825, + 878 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 92, + 825, + 160 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "From a unified perspective, the core in the aforementioned vision transformers is how the spatial attention is designed. Thus, in this work, we revisit the design of the spatial attention in vision transformers. Our first finding is that the global sub-sampled attention in PVT is highly effective, and with the applicable positional encodings [9], its performance can be on par or even better than state-of-the-art vision transformers (e.g., Swin). This results in our first proposed architecture, termed Twins-PCPVT. On top of that, we further propose a carefully-designed yet simple spatial attention mechanism, making our architectures more efficient than PVT. Our attention mechanism is inspired by the widely-used separable depthwise convolutions and thus we name it spatially separable self-attention (SSSA). Our proposed SSSA is composed of two types of attention operations—(i) locally-grouped self-attention (LSA), and (ii) global sub-sampled attention (GSA), where LSA captures the fine-grained and short-distance information and GSA deals with the long-distance and global information. This leads to the second proposed vision transformer architecture, termed Twins-SVT. It is worth noting that both attention operations in the architecture are efficient and easy-to-implement with matrix multiplications in a few lines of code. Thus, all of our architectures here have great applicability and can be easily deployed. ", + "bbox": [ + 174, + 166, + 825, + 375 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We benchmark our proposed architectures on a number of visual tasks, ranging from image-level classification to pixel-level semantic/instance segmentation and object detection. Extensive experiments show that both of our proposed architectures perform favorably against other state-of-the-art vision transformers with similar or even reduced computational complexity. ", + "bbox": [ + 174, + 381, + 825, + 436 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 Related Work ", + "text_level": 1, + "bbox": [ + 174, + 462, + 321, + 478 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Convolutional neural networks. Characterized by local connectivity, weight sharing, shiftinvariance and pooling, CNNs have been the de facto standard model for computer vision tasks. The top-performing models [10–13] in image classification also serve as the strong backbones for downstream detection and segmentation tasks. ", + "bbox": [ + 174, + 497, + 825, + 553 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Vision Transformers. Transformer was firstly proposed by [14] for machine translation tasks, and since then they have become the state-of-the-art models for NLP tasks, overtaking the sequence-tosequence approach built on LSTM. Its core component is multi-head self-attention which models the relationship between input tokens and shows great flexibility. ", + "bbox": [ + 174, + 559, + 825, + 614 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In 2020, Transformer was introduced to computer vision for image and video processing [1–3, 9, 15– 17, 17–32]. In the image classification task, ViT [1] and DeiT [2] divide the images into patch embedding sequences and feed them into the standard transformers. Although vision transformers have been proved compelling in image classification compared with CNNs, a challenge remains when it is applied to dense prediction tasks such as object detection and segmentation. These tasks often require feature pyramids for better processing objects of different scales, and take as inputs the highresolution images, which significantly increase the computational complexity of the self-attention operations. ", + "bbox": [ + 173, + 621, + 825, + 732 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Recently, Pyramid Vision Transformer (PVT) [8] is proposed and can output the feature pyramid [33] as in CNNs. PVT has demonstrated good performance in a number of dense prediction tasks. The recent Swin Transformer [4] introduces non-overlapping window partitions and restricts self-attention within each local window, resulting in linear computational complexity in the number of input tokens. To interchange information among different local areas, its window partitions are particularly designed to shift between two adjacent self-attention layers. The semantic segmentation framework OCNet [34] shares some similarities with us and they also interleave the local and global attention. Here, we demonstrate this is a general design paradigm in vision transformer backbones rather than merely an incremental module in semantic segmentation. ", + "bbox": [ + 174, + 738, + 825, + 863 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Grouped and Separable Convolutions. Grouped convolutions are originally proposed in AlexNet [35] for distributed computing. They were proved both efficient and effective in speeding up the networks. As an extreme case, depthwise convolutions [12, 36] use the number of groups that is equal to the input or output channels, which is followed by point-wise convolutions to aggregate the information across different channels. Here, the proposed spatially separable self-attention shares some similarities with them. ", + "bbox": [ + 176, + 869, + 825, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Positional Encodings. Most vision transformers use absolute/relative positional encodings, depending on downstream tasks, which are based on sinusoidal functions [14] or learnable [1, 2]. In CPVT [9], the authors propose the conditional positional encodings, which are dynamically conditioned on the inputs and show better performance than the absolute and relative ones. ", + "bbox": [ + 174, + 140, + 825, + 195 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 Our Method: Twins ", + "text_level": 1, + "bbox": [ + 176, + 214, + 372, + 231 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We present two simple yet powerful spatial designs for vision transformers. The first method is built upon PVT [8] and CPVT [9], which only uses the global attention. The architecture is thus termed Twins-PCPVT. The second one, termed Twins-SVT, is based on the proposed SSSA which interleaves local and global attention. ", + "bbox": [ + 174, + 246, + 825, + 303 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 Twins-PCPVT ", + "text_level": 1, + "bbox": [ + 174, + 318, + 313, + 333 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "PVT [8] introduces the pyramid multi-stage design to better tackle dense prediction tasks such as object detection and semantic segmentation. It inherits the absolute positional encoding designed in ViT [1] and DeiT [2]. All layers utilize the global attention mechanism and rely on spatial reduction to cut down the computation cost of processing the whole sequence. It is surprising to see that the recently-proposed Swin transformer [4], which is based on shifted local windows, can perform considerably better than PVT, even on dense prediction tasks where a sufficiently large receptive field is even more crucial to good performance. ", + "bbox": [ + 174, + 344, + 825, + 441 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this work, we surprisingly found that the less favored performance of PVT is mainly due to the absolute positional encodings employed in PVT [8]. As shown in CPVT [9], the absolute positional encoding encounter difficulties in processing the inputs with varying sizes (which are common in dense prediction tasks). Moreover, this positional encoding also breaks the translation invariance. On the contrary, Swin transformer makes use of the relative positional encodings, which bypasses the above issues. Here, we demonstrate that this is the main cause why Swin outperforms PVT, and we show that if the appropriate positional encodings are used, PVT can actually achieve on par or even better performance than the Swin transformer. ", + "bbox": [ + 174, + 446, + 825, + 558 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Here, we use the conditional position encoding (CPE) proposed in CPVT [9] to replace the absolute PE in PVT. CPE is conditioned on the inputs and can naturally avoid the above issues of the absolute encodings. The position encoding generator (PEG) [9], which generates the CPE, is placed after the first encoder block of each stage. We use the simplest form of PEG, i.e., a 2D depth-wise convolution without batch normalization. For image-level classification, following CPVT, we remove the class token and use global average pooling (GAP) at the end of the stage [9]. For other vision tasks, we follow the design of PVT. Twins-PCPVT inherits the advantages of both PVT and CPVT, which makes it easy to be implemented efficiently. Our extensive experimental results show that this simple design can match the performance of the recent state-of-the-art Swin transformer. We have also attempted to replace the relative PE with CPE in Swin, which however does not result in noticeable performance gains, as shown in our experiments. We conjecture that this maybe due to the use of shifted windows in Swin, which might not work well with CPE. ", + "bbox": [ + 174, + 564, + 825, + 731 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Architecture settings We report the detailed settings of Twins-PCPVT in Table 2 (in supplementary), which are similar to PVT [8]. Therefore, Twins-PCPVT has similar FLOPs and number of parameters to [8]. ", + "bbox": [ + 176, + 746, + 825, + 787 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 Twins-SVT ", + "text_level": 1, + "bbox": [ + 174, + 804, + 290, + 819 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Vision transformers suffer severely from the heavy computational complexity in dense prediction tasks due to high-resolution inputs. Given an input of $H \\times W$ resolution, the complexity of selfattention with dimension $d$ is $\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )$ . Here, we propose the spatially separable self-attention (SSSA) to alleviate this challenge. SSSA is composed of locally-grouped self-attention (LSA) and global sub-sampled attention (GSA). ", + "bbox": [ + 174, + 829, + 825, + 900 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/fec150010c9fe25574fcd045b5d0727df84edd7d8819dfbc9908baa560445e02.jpg", + "image_caption": [ + "Figure 1 – Architecture of Twins-SVT-S. “PEG\" is the positional encoding generator from CPVT [9]. " + ], + "image_footnote": [], + "bbox": [ + 174, + 92, + 820, + 202 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Locally-grouped self-attention (LSA). Motivated by the group design in depthwise convolutions for efficient inference, we first equally divide the 2D feature maps into sub-windows, making self-attention communications only happen within each sub-window. This design also resonates with the multi-head design in selfattention, where the communications only occur within the channels of the same head. To be specific, the feature maps are divided into $m \\times n$ sub-windows. Without loss of generality, we assume $H \\% m = 0$ and $W \\% n = 0$ . Each group contains $\\textstyle { \\frac { H W } { m n _ { * } } }$ elements, and thus the computation cost of the self-attention in this window is $\\begin{array} { r } { \\mathcal { O } \\big ( \\frac { H ^ { 2 } W ^ { 2 } } { m ^ { 2 } n ^ { 2 } } d \\big ) } \\end{array}$ , and the total cost is $\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } } { m n } d ) } \\end{array}$ . If we let $\\begin{array} { r } { \\dot { k } _ { 1 } = \\frac { H } { m } } \\end{array}$ and $\\textstyle k _ { 2 } \\ = \\ { \\frac { W } { n } }$ , the cost can be ", + "bbox": [ + 174, + 271, + 485, + 496 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/12ea80c3e81cb7eced3ec463d4e28c76d5d0784a7607a8261852efa72d93e84d.jpg", + "image_caption": [ + "Figure 2 – (a) Twins-SVT interleaves locally-grouped attention (LSA) and global sub-sampled attention (GSA). (b) Schematic view of the locally-grouped attention (LSA) and global sub-sampled attention (GSA). " + ], + "image_footnote": [], + "bbox": [ + 522, + 272, + 799, + 428 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "computed as $\\mathcal { O } ( k _ { 1 } k _ { 2 } H W d )$ , which is significantly more efficient when $k _ { 1 } \\ll H$ and $k _ { 2 } \\ll W$ and grows linearly with $H W$ if $k _ { 1 }$ and $k _ { 2 }$ are fixed. ", + "bbox": [ + 176, + 494, + 825, + 522 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Although the locally-grouped self-attention mechanism is computation friendly, the image is divided into non-overlapping sub-windows. Thus, we need a mechanism to communicate between different sub-windows, as in Swin. Otherwise, the information would be limited to be processed locally, which makes the receptive field small and significantly degrades the performance as shown in our experiments. This resembles the fact that we cannot replace all standard convolutions by depth-wise convolutions in CNNs. ", + "bbox": [ + 174, + 529, + 825, + 611 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Global sub-sampled attention (GSA). A simple solution is to add extra standard global selfattention layers after each local attention block, which can enable cross-group information exchange. However, this approach would come with the computation complexity of $\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )$ . ", + "bbox": [ + 174, + 641, + 825, + 684 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Here, we use a single representative to summarize the important information for each of $m \\times n$ sub-windows and the representative is used to communicate with other sub-windows (serving as the key in self-attention), which can dramatically reduce the cost to $\\begin{array} { r } { \\mathcal { O } ( m n H W d ) = \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } ) } \\end{array}$ . This is essentially equivalent to using the sub-sampled feature maps as the key in attention operations, and thus we term it global sub-sampled attention (GSA). If we alternatively use the aforementioned LSA and GSA like separable convolutions (depth-wise $^ +$ point-wise). The total computation cost√ is $\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } \\bar { H } W d ) } \\end{array}$ . We have $\\begin{array} { r } { \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } H W d \\geq 2 H W d \\sqrt { H W } } \\end{array}$ . The minimum is obtained when $\\boldsymbol { k } _ { 1 } \\cdot \\boldsymbol { k } _ { 2 } = \\sqrt { H W }$ . We note that $H = W = 2 2 4$ is popular in classification. Without loss of generality, we use square sub-windows, i.e., $k _ { 1 } = k _ { 2 }$ . Therefore, $k _ { 1 } = k _ { 2 } = 1 5$ is close to the global minimum for $H = W = 2 2 4$ . However, our network is designed to include several stages with variable resolutions. Stage 1 has feature maps of $5 6 \\times 5 6$ , the minimum is obtained when $k _ { 1 } \\stackrel { \\cdot } { = } k _ { 2 } = \\sqrt { 5 6 } \\approx 7 .$ Theoretically, we can calibrate optimal $k _ { 1 }$ and $k _ { 2 }$ for each of the stages. For simplicity, we use $k _ { 1 } = k _ { 2 } = 7$ everywhere. As for stages with lower resolutions, we control the summarizing window-size of GSA to avoid too small amount of generated keys. Specifically, we use the size of 4, 2 and 1 for the last three stages respectively. ", + "bbox": [ + 173, + 690, + 826, + 911 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "As for the sub-sampling function, we investigate several options including average pooling, depthwise strided convolutions, and regular strided convolutions. Empirical results show that regular strided convolutions perform best here. Formally, our spatially separable self-attention (SSSA) can be written as ", + "bbox": [ + 178, + 90, + 823, + 147 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/bddfa318edf97b22ee268dd2b1545378d8b37ce65697eafa1680774021feac8e.jpg", + "text": "$$\n\\begin{array} { r l } & { \\hat { \\mathbf { z } } _ { i j } ^ { l } = \\mathrm { L S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } _ { i j } ^ { l - 1 } \\right) \\right) + \\mathbf { z } _ { i j } ^ { l - 1 } , } \\\\ & { \\mathbf { z } _ { i j } ^ { l } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } _ { i j } ^ { l } \\right) \\right) + \\hat { \\mathbf { z } } _ { i j } ^ { l } , } \\\\ & { \\hat { \\mathbf { z } } ^ { l + 1 } = \\mathrm { G S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } ^ { l } \\right) \\right) + \\mathbf { z } ^ { l } , } \\\\ & { \\mathbf { z } ^ { l + 1 } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } ^ { l + 1 } \\right) \\right) + \\hat { \\mathbf { z } } ^ { l + 1 } , } \\\\ & { i \\in \\{ 1 , 2 , . . . . , m \\} , j \\in \\{ 1 , 2 , . . . . , n \\} } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 356, + 148, + 640, + 253 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where LSA means locally-grouped self-attention within a sub-window; GSA is the global sub-sampled attention by interacting with the representative keys (generated by the sub-sampling functions) from each sub-window $\\hat { \\mathbf { z } } _ { i j } \\mathbf { \\bar { \\Psi } } \\in \\mathcal { R } ^ { k _ { 1 } \\times k _ { 2 } \\times \\mathbf { \\bar { C } } }$ . Both LSA and GSA have multiple heads as in the standard self-attention.The PyTorch code of LSA is given in Algorithm 1 (in supplementary). ", + "bbox": [ + 174, + 276, + 825, + 333 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Again, we use the PEG of CPVT [9] to encode position information and process variable-length inputs on the fly. It is inserted after the first block in each stage. ", + "bbox": [ + 171, + 338, + 823, + 366 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Model variants. The detailed configure of Twins-SVT is shown in Table 3 (in supplementary). We try our best to use the similar settings as in Swin [4] to make sure that the good performance is due to the new design paradigm. ", + "bbox": [ + 174, + 372, + 825, + 415 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Comparison with PVT. PVT entirely utilizes global attentions as DeiT does while our method makes use of spatial separable-like design with LSA and GSA, which is more efficient. ", + "bbox": [ + 176, + 420, + 821, + 449 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Comparison with Swin. Swin utilizes the alternation of local window based attention where the window partitions in successive layers are shifted. This is used to introduce communication among different patches and to increase the receptive field. However, this procedure is relatively complicated and may not be optimized for speed on devices such as mobile devices. Swin Transformer depends on torch.roll() to perform cyclic shift and its reverse on features. This operation is memory unfriendly and rarely supported by popular inference frameworks such as NVIDIA TensorRT, Google TensorflowLite, and Snapdragon Neural Processing Engine SDK (SNPE), etc. This hinders the deployment of Swin either on the server-side or on end devices in a production environment. In contrast, Twins models don’t require such an operation and only involve matrix multiplications that are already optimized well in modern deep learning frameworks. Therefore, it can further benefit from the optimization in a production environment. For example, we converted Twins-SVT-S from PyTorch to TensorRT , and its throughput is boosted by $1 . 7 \\times$ . Moreover, our local-global design can better exploit the global context, which is known to play an important role in many vision tasks. ", + "bbox": [ + 174, + 455, + 825, + 636 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Finally, one may note that the network configures (e.g., such as depths, hidden dimensions, number of heads, and the expansion ratio of MLP) of our two variants are sightly different. This is intended because we want to make fair comparisons to the two recent well-known transformers PVT and Swin. PVT prefers a slimmer and deeper design while Swin is wider and shallower. This difference makes PVT have slower training than Swin. Twins-PCPVT is designed to compare with PVT and shows that a proper positional encoding design can greatly boost the performance and make it on par with recent state-of-the-art models like Swin. On the other hand, Twins-SVT demonstrates the potential of a new paradigm as to spatially separable self-attention is highly competitive to recent transformers. ", + "bbox": [ + 174, + 641, + 825, + 752 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 Experiments ", + "text_level": 1, + "bbox": [ + 174, + 771, + 312, + 789 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.1 Classification on ImageNet-1K ", + "text_level": 1, + "bbox": [ + 176, + 803, + 424, + 818 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We first present the ImageNet classification results with our proposed models. We carefully control the experiment settings to make fair comparisons against recent works [2, 8, 9]. All our models are trained for 300 epochs with a batch size of 1024 using the AdamW optimizer [37]. The learning rate is initialized to be 0.001 and decayed to zero within 300 epochs following the cosine strategy. We use a linear warm-up in the first five epochs and the same regularization setting as in [2]. Note that we do not utilize extra tricks in [26, 28] to make fair comparisons although it may further improve the performance of our method. We use increasing stochastic depth [38] augmentation of 0.2, 0.3, 0.5 for small, base and large model respectively. Following Swin [4], we use gradient clipping with a max norm of 5.0 to stabilize the training process, which is especially important for the training of large models. ", + "bbox": [ + 174, + 827, + 823, + 911 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 90, + 825, + 147 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We report the classification results on ImageNet-1K [39] in Table 1. Twins-PCPVT-S outperforms PVT-small by $1 . 4 \\%$ and obtains similar result as Swin-T with $18 \\%$ fewer FLOPs. Twins-SVT-S is better than Swin-T with about $3 5 \\%$ fewer FLOPs. Other models demonstrate similar advantages. ", + "bbox": [ + 174, + 154, + 823, + 195 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "It is interesting to see that, without bells and whistles, Twins-PCPVT performs on par with the recent state-of-the-art Swin, which is based on much more sophisticated designs as mentioned above. Moreover, Twins-SVT also achieves similar or better results, compared to Swin, indicating that the spatial separable-like design is an effective and promising paradigm. ", + "bbox": [ + 174, + 200, + 825, + 257 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "One may challenge our improvements are due to the use of the better positional encoding PEG. Thus, we also replace the relative PE in Swin-T with PEG [9], but the Swin-T’s performance cannot be improved (being $8 1 . 2 \\%$ ). ", + "bbox": [ + 176, + 263, + 823, + 305 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 Semantic Segmentation on ADE20K ", + "text_level": 1, + "bbox": [ + 178, + 325, + 464, + 340 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We further evaluate the performance on segmentation tasks. We test on the ADE20K dataset [42], a challenging scene parsing task for semantic segmentation, which is popularly evaluated by recent Transformer-based methods. This dataset contains 20K images for training and 2K images for validation. Following the common practices, we use the training set to train our models and report the mIoU on the validation set. All models are pretrained on the ImageNet-1k dataset. ", + "bbox": [ + 173, + 353, + 825, + 421 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Twins-PCPVT vs. PVT. We compare our Twins-PCPVT with PVT [8] because they have similar design and computational complexity. To make fair comparisons, we use the Semantic FPN framework [43] and exactly the same training settings as in PVT. Specifically, we train 80K steps with a batch size of 16 using AdamW [37]. The learning rate is initialized as $1 \\times 1 0 ^ { - 4 }$ and scheduled by the ‘poly’ strategy with the power coefficient of 0.9. We apply the drop-path regularization of 0.2 for the backbone and weight decay 0.0005 for the whole network. Note that we use a stronger drop-path regularization of 0.4 for the large model to avoid over-fitting. For Swin, we use their official code and trained models. We report the results in Table 2. With comparable FLOPs, Twins-PCPVT-S outperforms PVT-Small with a large margin $( + 4 . 5 \\%$ mIoU), which also surpasses ResNet-50 by $7 . 6 \\%$ mIoU. It also outperforms Swin-T with a clear margin. Besides, Twins-PCPVT-B also achieves $3 . 3 \\%$ higher mIoU than PVT-Medium, and Twins-PCPVT-L surpasses PVT-Large with $4 . 3 \\%$ higher mIoU. ", + "bbox": [ + 173, + 429, + 825, + 580 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Twins-SVT vs. Swin. We also compare our Twins-SVT with the recent state-of-the-art model Swin [4]. With the Semantic FPN framework and the above settings, Twins-SVT-S achieves better performance $( + 1 . 7 \\% )$ than Swin-T. Twins-SVT-B obtains comparable performance with Swin-S and Twins-SVT-L outperforms Swin-B by $0 . 7 \\%$ mIoU (left columns in Table 2). In addition, Swin evaluates its performance using the UperNet framework [44]. We transfer our method to this framework and use exactly the same training settings as [4]. To be specific, we use the AdamW optimizer to train all models for $1 6 0 \\mathrm { k }$ iterations with a global batch size of 16. The initial learning rate is $6 \\times 1 0 ^ { - 5 }$ and linearly decayed to zero. We also utilize warm-up during the first 1500 iterations. Moreover, we apply the drop-path regularization of 0.2 for the backbone and weight decay 0.01 for the whole network. We report the mIoU of both single scale and multi-scale testing (we use scales from 0.5 to 1.75 with step 0.25) in the right columns of Table 2. Both with multi-scale testing, Twins-SVT-S outperforms Swin-T by $1 . 3 \\%$ mIoU. Moreover, Twins-SVT-L achieves new state of the art result $5 0 . 2 \\%$ mIoU under comparable FLOPs and outperforms Swin-B by $0 . 5 \\%$ mIoU. Twins-PCPVT also achieves comparable performance to Swin [4]. ", + "bbox": [ + 174, + 587, + 825, + 780 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.3 Object Detection and Segmentation on COCO ", + "text_level": 1, + "bbox": [ + 174, + 800, + 534, + 815 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We evaluate the performance of our method using two representative frameworks: RetinaNet [46] and Mask RCNN [47]. Specifically, we use our transformer models to build the backbones of these detectors. All the models are trained under the same setting as in [8]. Since PVT and Swin report their results using different frameworks, we try to make fair comparison and build consistent settings for future methods. Specifically, we report standard $1 \\times$ -schedule (12 epochs) detection results on the COCO 2017 dataset [48] in Tables 3 and 4. As for the evaluation based on RetinaNet, we train all the models using AdamW [37] optimizer for 12 epochs with a batch size of 16. The initial learning rate is $1 \\times 1 \\bar { 0 } ^ { - 4 }$ , started with 500-iteration warmup and decayed by $1 0 \\times$ at the 8th and 11th epoch, respectively. We use stochastic drop path regularization of 0.2 and weight decay 0.0001. The implementation is based on MMDetection [49]. For the Mask R-CNN framework, we use the initial learning rate of $2 \\times 1 0 ^ { - 4 }$ as in [8]. All other hyper-parameters follow the default settings in MMDetection. As for $3 \\times$ experiments, we follow the common multi-scale training in [3, 4], i.e., randomly resizing the input image so that its shorter side is between 480 and 800 while keeping longer one less than 1333. Moreover, for $3 \\times$ training of Mask R-CNN, we use an initial learning rate of 0.0001 and weight decay of 0.05 for the whole network as [4]. ", + "bbox": [ + 174, + 828, + 823, + 911 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/d92a15b541421f68899831ff43016e6fd755bbea91818794de3f6a74170c3103.jpg", + "table_caption": [ + "Table 1 – Comparisons with state-of-the-art methods for ImageNet-1K classification. Throughput is tested on the batch size of 192 on a single V100 GPU. All models are trained and evaluated on $2 2 4 \\times 2 2 4$ resolution on ImageNet-1K dataset. †: w/ CPVT’s position encodings [9]. " + ], + "table_footnote": [], + "table_body": "
MethodParam (M)FLOPs (G)Throughput (Images/s)Top-1 (%)
ConvNet
RegNetY-4G [40]214.0115780.0
RegNetY-8G [40]398.059281.7
RegNetY-16G [40]8416.033582.9
Transformer
DeiT-Small/16 [2]22.14.643779.9
CrossViT-S [30]26.75.6-81.0
T2T-ViT-14 [27]225.281.5
TNT-S [15]23.85.2=81.3
CoaTMini [17]106.880.8
CoaT-Lite Small [17]204.0-81.9
PVT-Small [8]24.53.882079.8
CPVT-Small-GAP [9]234.681781.5
Twins-PCPVT-S (ours)24.13.881581.2 (+1.3)
Swin-T[4]294.576681.3
Swin-T + CPVT†284.476681.2
Twins-SVT-S (ours)242.9105981.7 (+1.8)
T2T-ViT-19 [27]39.28.9181.9
PVT-Medium [8]44.26.752681.2
Twins-PCPVT-B(ours)43.86.752582.7 (+0.8)
Swin-S [4]508.744483.0
Twins-SVT-B (ours)568.646983.2 (+1.3)
ViT-Base/16 [1]86.617.68677.9
DeiT-Base/16 [2]86.617.629281.8
T2T-ViT-24[27]64.114.1182.3
Cross ViT-B [30]104.721.2182.2
TNT-B [15]6614.1=82.8
CPVT-B [9]8817.629282.3
PVT-Large [8]61.49.836781.7
Twins-PCPVT-L(ours)60.99.836783.1 (+5.2)
Swin-B [4]8815.427583.3
Twins-SVT-L (ours)99.215.128883.7( (+5.8)
Hybrid
BoTNet-S1-59 [29]33.57.381.7
BossNet-T1 [41]17.981.9
CvT-13 [31]204.581.6
BoTNet-S1-110 [29]54.710.982.8
CvT-21 [31]327.1=82.5
", + "bbox": [ + 210, + 131, + 787, + 696 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 723, + 825, + 849 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For $1 \\times$ schedule object detection with RetinaNet, Twins-PCPVT-S surpasses PVT-Small with $2 . 6 \\%$ mAP and Twins-PCPVT-B exceeds PVT-Medium by $2 . 4 \\%$ mAP on the COCO val2017 split. Twins-SVT-S outperforms Swin-T with $1 . 5 \\%$ mAP while using $12 \\%$ fewer FLOPs. Our method outperform the others with similar advantage in $3 \\times$ experiments. ", + "bbox": [ + 174, + 856, + 825, + 911 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/2090e3b08689b3dbb0e79e4396b2b0d0a3196a1511e7397d8691b778b1a46777.jpg", + "table_caption": [ + "Table 2 – Performance comparisons with different backbones on ADE20K validation dataset. FLOPs are tested on $5 1 2 \\times 5 1 2$ resolution. All backbones are pretrained on ImageNet-1k except SETR [45], which is pretrained on ImageNet-21k dataset. " + ], + "table_footnote": [], + "table_body": "
BackboneSemantic FPN 80k (PVT [8] setting)Upernet 160k (Swin [4] setting)
FLOPs (G)Param (M)mIoU (%)FLOPs (G)Param (M)mIoU/MS mIoU (%)
ResNet50 [10]4528.536.71
PVT-Small [8]4028.239.81-=
Twins-PCPVT-S (ours)4028.444.3 (+7.6)23454.646.2/47.5
Swin-T[4]4631.941.523759.944.5/45.8
Twins-SVT-S (ours)3728.343.2( (+6.5)22854.446.2/47.1
ResNet101 [10]6647.538.825886-/44.9
PVT-Medium [8]5548.041.6=1
Twins-PCPVT-B (ours)5548.144.9 (+6.1)25074.347.1/48.4
Swin-S [4]7053.245.226181.347.6/49.5
Twins-SVT-B (ours)6760.445.3 (+6.5)26188.547.7/48.9
ResNetXt101-64×4d [13]186.440.211=
PVT-Large [8]7165.142.1---
Twins-PCPVT-L (ours)7165.346.4 (+6.2)26991.548.6/49.8
Swin-B [4]10791.246.029912148.1/49.7
Twins-SVT-L (ours)102103.746.7 (+6.5)29713348.8/50.2
BackbonePUP (SETR [45] setting)MLA (SETR [45] setting)
T-Large (SETR) [45]-31050.1130848.6/50.3
", + "bbox": [ + 183, + 113, + 816, + 409 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "For $1 \\times$ object segmentation with the Mask R-CNN framework, Twins-PCPVT-S brings similar improvements $( + 2 . 5 \\%$ mAP) over PVT-Small. Compared with PVT-Medium, Twins-PCPVT-B obtains $2 . 6 \\%$ higher mAP, which is also on par with that of Swin. Both Twins-SVT-S and Twins-SVTB achieve better or slightly better performance compared to the counterparts of Swin. As for large models, our results are shown in Table 1 (in supplementary) and we also achieve better performance with comparable FLOPs. ", + "bbox": [ + 174, + 434, + 825, + 518 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/1693844a418953357be1c2a663ddc5b919a3ef3b16aaa01c0dff462d187c3424.jpg", + "table_caption": [ + "Table 3 – Object detection performance on the COCO val2017 split using the RetinaNet framework. $1 \\times$ is 12 epochs and $3 \\times$ is 36 epochs. “MS”: Multi-scale training. FLOPs are evaluated on $8 0 0 \\times 6 0 0$ resolution. " + ], + "table_footnote": [], + "table_body": "
BackboneFLOPsParaml (G)(M)RetinaNet1×RetinaNet 3× +MS
|APAP50 AP75 APs APm APL|AP AP50 AP75APs APm APL
ResNet50 [10]11137.7 36.355.3 38.6 19.3 40.0 48.8|39.058.4 41.8 22.4 42.8 51.6
PVT-Small [8]11834.261.3 43.0 25.0 42.9 55.762.7 45.0 26.2 45.2 57.2
Twins-PCPVT-S (ours)11834.443.0(+6.7) 64.1 46.0 27.5 46.3 57.345.2(+6.2) 66.5 48.6 30.0 48.8 58.9
Swin-T[4]11838.562.1 44.2 25.1 44.9 55.543.9 64.8 47.1 28.4 47.2 57.8
Twins-SVT-S (ours)10434.343.0(+6.7) 64.2 46.3 28.0 46.4 57.545.6(+6.6) 67.1 48.6 29.8 49.3 60.0
ResNet101[10]14956.757.8 41.2 21.4 42.6 51.160.1 44.0 23.7 45.0 53.8
ResNeXt101-32×4d[13]15156.459.642.7 22.344.2 52.561.0 44.3 23.9 45.5 53.7
PVT-Medium [8]15153.963.1 44.3 25.0 44.9 57.6463.8 46.1 27.3 46.3 58.9
Twins-PCPVT-B (ours)15154.141.9 44.3(+5.8) ) 65.6 47.3 27.9 47.9 59.6443.2 46.4(+5.5) 67.7 49.8 31.3 50.2 61.4 46.3
Swin-S [4]16259.844.5 65.7 47.5 27.4 48.0 59.967.4 49.8 31.1 50.3 60.9
Twins-SVT-B (ours)16367.045.3(+6.8) 66.7 48.1 28.5 48.9 60.646.9(+6.0)68.0 50.2 31.7 50.3 61.8
", + "bbox": [ + 173, + 568, + 841, + 761 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.4 Ablation Studies ", + "text_level": 1, + "bbox": [ + 174, + 787, + 328, + 803 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Configurations of LSA and GSA blocks. We evaluate different combinations of LSA and GSA based on our small model and present the ablation results in Table 5. The models with only locally-grouped attention fail to obtain good performance $( 7 6 . 9 \\% )$ ", + "bbox": [ + 173, + 814, + 390, + 911 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/c4e824e4289539c1e56a37c1b1ca1423bcc62c4601b2f76cb8ae6ec3b41e8364.jpg", + "table_caption": [ + "Table 5 – Classification performance for different combinations of LSA (L) and GSA (G) blocks based on the small model. " + ], + "table_footnote": [], + "table_body": "
Function TypeParams (M)FLOPs (G)Top-1 (%)
(L,L,L)8.82.276.9
(L, LLG, LLG, G)23.52.881.5
(L, LG, LG, G)24.12.881.7
(L,L,L, G)22.22.980.5
PVT-small(G, G, G, G) [8]24.53.879.8
", + "bbox": [ + 433, + 815, + 795, + 928 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/57c11d3f2cf446a597480002b652bb8f5133ba64f601529b7b505cd14be40327.jpg", + "table_caption": [ + "Table 4 – Object detection and instance segmentation performance on the COCO val2017 dataset using the Mask R-CNN framework. FLOPs are evaluated on a $8 0 0 \\times 6 0 0$ image. " + ], + "table_footnote": [], + "table_body": "
BackboneFLOPsParaml (G)(M)Mask R-CNN 1×Mask R-CNN3× +MS
|APbAP0APAPmAPAP|APbAP0APP APm APAPP
ResNet50 [10]17444.238.058.6 41.4 34.455.1 36.741.061.7 44.9 37.1 58.4 40.1
PVT-Small [8]17844.140.462.9 43.8 37.860.1 40.343.065.3 46.9 39.9 62.5 42.8
Twins-PCPVT-S (ours)17844.342.9(+4.9)65.8 47.1 40.0(+5.6)62.742.946.8(+5.8)69.3 51.8 42.6 66.3 46.0
Swin-T[4]17747.842.264.6 46.2 39.161.6 42.0 46.068.2 50.2 41.6 65.1 44.8
Twins-SVT-S (ours)16444.043.4(+5.4)66.0 47.3 40.3(+5.9)63.243.446.8(+5.8)69.2 51.2 42.6 66.3 45.8
ResNet101[10]21063.240.461.1 44.2 36.457.7 38.842.863.2 47.1 38.5 60.1 41.3
ResNeXt101-32×4d[13]21262.841.962.5 45.9 37.559.4 40.2 44.064.4 48.0 39.2 61.4 41.9
PVT-Medium [8]21163.942.064.4 45.6 39.061.6 42.144.266.0 48.2 40.5 63.1 43.5
Twins-PCPVT-B (ours)21164.044.6(+4.2)66.7 48.9 40.9(+4.5)63.844.247.9(+5.1) 70.152.5 43.2 67.2 46.3
Swin-S [4]22269.144.866.6 48.9 40.963.4 44.2 47.669.4 52.5 42.8 66.5 46.4
Twins-SVT-B (ours)22476.345.2(+4.8)67.6 49.3 41.5(+5.1) 64.5 44.848.0(+5.2)69.5 52.7 43.0 66.8 46.6
", + "bbox": [ + 173, + 123, + 846, + 318 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 349, + 393, + 363 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "because this setting has a limited and small receptive field. An extra global attention layer in the last stage can improve the classification performance by $3 . 6 \\%$ . Local-Local-Global (abbr. LLG) also achieves good performance $( 8 1 . 5 \\% )$ , but we do not use this design in this work. ", + "bbox": [ + 176, + 363, + 826, + 405 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sub-sampling functions. We further study how the different sub-sampling functions affect the performance. Specifically, we compare the regular strided convolutions, separable convolutions and average pooling based on the ‘small’ model and present the results in Table 6. The first option performs best and therefore we choose it as our default implementation. ", + "bbox": [ + 174, + 425, + 553, + 522 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/6baf89f8d8a23480dbb0e937131d892766bb5d0aa680dc97cf0bcf8d389b9fbc.jpg", + "table_caption": [ + "Table 6 – ImageNet classification performance of different forms of sub-sampled functions for the global sub-sampled attention (GSA). " + ], + "table_footnote": [], + "table_body": "
Function TypeTop-1(%)
2D Conv.81.7
2D Separable Conv.81.2
Average Pooling81.2
", + "bbox": [ + 584, + 469, + 803, + 537 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "sitional Encodings. We replace the relative positional encoding with CPVT for Swin-T and report the detection performance on COCO with RetinaNet and Mask R-CNN in Table 7. The CPVT-based Swin cannot achieve improved performance with both frameworks, which indicates that our performance improvements should be owing to the paradigm of Twins-SVT instead of the positional encodings. ", + "bbox": [ + 196, + 542, + 549, + 558 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 176, + 559, + 825, + 613 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/6f7f8635eea638011e731cacbb93cf34dd334d44c038c5b076b783c3488f4d08.jpg", + "table_caption": [ + "Table 7 – Object detection performance on the COCO using different positional encoding strategies. " + ], + "table_footnote": [], + "table_body": "
BackboneRetinaNetMask RCNN
FLOPs(G)Param(M) APAP50AP75FLOPs(G)Param(M)APAP50AP75
Swin-T[4]]24538.541.562.144.226447.842.264.646.2
Swin-T+CPVT24538.541.362.444.126347.842.064.545.9
", + "bbox": [ + 205, + 652, + 794, + 720 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 Conclusion ", + "text_level": 1, + "bbox": [ + 173, + 765, + 299, + 782 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, we have presented two powerful vision transformer backbones for both image-level classification and a few downstream dense prediction tasks. We dub them as twin transformers: Twins-PCPVT and Twins-SVT. The former variant explores the applicability of conditional positional encodings [9] in pyramid vision transformer [8], confirming its potential for improving backbones in many vision tasks. In the latter variant we revisit current attention design to proffer a more efficient attention paradigm. We find that interleaving local and global attention can produce impressive results, yet it comes with higher throughputs. Both transformer models set a new state of the art in image classification, objection detection and semantic/instance segmentation. ", + "bbox": [ + 173, + 800, + 825, + 911 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 174, + 89, + 266, + 106 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "[1] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai, Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly, Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image recognition at scale. In Proc. Int. Conf. Learn. Representations, 2021. \n[2] 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. [3] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and Sergey Zagoruyko. End-to-end object detection with transformers. In Proc. Eur. Conf. Comp. Vis., pages 213–229. Springer, 2020. \n[4] 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. In Proc. IEEE Int. Conf. Comp. Vis., pages 10012–10022, 2021. [5] Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille. Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and fully connected crfs. IEEE Trans. Pattern Anal. Mach. Intell., 40(4):834–848, 2017. [6] Chao Peng, Xiangyu Zhang, Gang Yu, Guiming Luo, and Jian Sun. Large kernel matters– improve semantic segmentation by global convolutional network. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 4353–4361, 2017. \n[7] Wei Liu, Andrew Rabinovich, and Alexander C Berg. Parsenet: Looking wider to see better. arXiv preprint arXiv:1506.04579, 2015. [8] 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. [9] Xiangxiang Chu, Zhi Tian, Bo Zhang, Xinlong Wang, Xiaolin Wei, Huaxia Xia, and Chunhua Shen. Conditional positional encodings for vision transformers. arXiv preprint arXiv:2102.10882, 2021. \n[10] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 770–778, 2016. \n[11] Mingxing Tan and Quoc Le. Efficientnet: Rethinking model scaling for convolutional neural networks. In Proc. Int. Conf. Mach. Learn., pages 6105–6114. PMLR, 2019. \n[12] François Chollet. Xception: Deep learning with depthwise separable convolutions. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 1251–1258, 2017. \n[13] Saining Xie, Ross Girshick, Piotr Dollár, Zhuowen Tu, and Kaiming He. Aggregated residual transformations for deep neural networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 1492–1500, 2017. \n[14] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Proc. Advances in Neural Inf. Process. Syst., pages 6000–6010, 2017. \n[15] Kai Han, An Xiao, Enhua Wu, Jianyuan Guo, Chunjing Xu, and Yunhe Wang. Transformer in transformer. arXiv preprint arXiv:2103.00112, 2021. \n[16] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jon Shlens. Stand-alone self-attention in vision models. In Proc. Advances in Neural Inf. Process. Syst., volume 32, pages 68–80, 2019. \n[17] Weijian Xu, Yifan Xu, Tyler Chang, and Zhuowen Tu. Co-scale conv-attentional image transformers, 2021. \n[18] Yuqing Wang, Zhaoliang Xu, Xinlong Wang, Chunhua Shen, Baoshan Cheng, Hao Shen, and Huaxia Xia. End-to-end video instance segmentation with transformers. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., 2021. \n[19] Hanting Chen, Yunhe Wang, Tianyu Guo, Chang Xu, Yiping Deng, Zhenhua Liu, Siwei Ma, Chunjing Xu, Chao Xu, and Wen Gao. Pre-trained image processing transformer. arXiv preprint arXiv:2012.00364, 2020. \n[20] Fuzhi Yang, Huan Yang, Jianlong Fu, Hongtao Lu, and Baining Guo. Learning texture transformer network for image super-resolution. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 5791–5800, 2020. \n[21] Yanhong Zeng, Jianlong Fu, and Hongyang Chao. Learning joint spatial-temporal transformations for video inpainting. In Proc. Eur. Conf. Comp. Vis., pages 528–543. Springer, 2020. \n[22] Zhigang Dai, Bolun Cai, Yugeng Lin, and Junying Chen. UP-DETR: Unsupervised pre-training for object detection with transformers. arXiv preprint arXiv:2011.09094, 2020. \n[23] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish Vaswani. Bottleneck transformers for visual recognition. arXiv: Comp. Res. Repository, 2021. \n[24] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei Fu, Jianfeng Feng, Tao Xiang, Philip HS Torr, et al. Rethinking semantic segmentation from a sequence-to-sequence perspective with transformers. arXiv preprint arXiv:2012.15840, 2020. \n[25] Niki Parmar, Ashish Vaswani, Jakob Uszkoreit, Lukasz Kaiser, Noam Shazeer, Alexander Ku, and Dustin Tran. Image transformer. In Proc. Int. Conf. Mach. Learn., volume 80, pages 4055–4064, 2018. \n[26] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou. Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021. \n[27] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis Tay, Jiashi Feng, and Shuicheng Yan. Tokens-to-token ViT: Training vision transformers from scratch on imagenet. arXiv preprint arXiv:2101.11986, 2021. \n[28] Zihang Jiang, Qibin Hou, Li Yuan, Daquan Zhou, Xiaojie Jin, Anran Wang, and Jiashi Feng. Token labeling: Training an $8 5 . 4 \\%$ top-1 accuracy vision transformer with 56M parameters on ImageNet. arXiv: Comp. Res. Repository, 2021. \n[29] 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[30] Chun-Fu Chen, Quanfu Fan, and Rameswar Panda. CrossViT: Cross-attention multi-scale vision transformer for image classification. arXiv preprint arXiv:2103.14899, 2021. \n[31] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang. CvT: Introducing convolutions to vision transformers. arXiv: Comp. Res. Repository, 2021. \n[32] Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. Deformable detr: Deformable transformers for end-to-end object detection. In Proc. Int. Conf. Learn. Representations, 2021. \n[33] Tsung-Yi Lin, Piotr Dollár, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie. Feature pyramid networks for object detection. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 2117–2125, 2017. \n[34] Yuhui Yuan, Lang Huang, Jianyuan Guo, Chao Zhang, Xilin Chen, and Jingdong Wang. OCNet: Object context network for scene parsing. arXiv: Comp. Res. Repository, 2021. \n[35] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. ImageNet classification with deep convolutional neural networks. In Proc. Advances in Neural Inf. Process. Syst., volume 25, pages 1097–1105, 2012. \n[36] Laurent Sifre and Stéphane Mallat. Rigid-motion scattering for texture classification. arXiv preprint arXiv:1403.1687, 2014. \n[37] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. In Proc. Int. Conf. Learn. Representations, 2019. \n[38] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Weinberger. Deep networks with stochastic depth. In Proc. Eur. Conf. Comp. Vis., pages 646–661. Springer, 2016. \n[39] Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual recognition challenge. International journal of computer vision, 115(3):211–252, 2015. \n[40] Ilija Radosavovic, Raj Prateek Kosaraju, Ross Girshick, Kaiming He, and Piotr Dollár. Designing network design spaces. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 10428–10436, 2020. \n[41] Changlin Li, Tao Tang, Guangrun Wang, Jiefeng Peng, Bing Wang, Xiaodan Liang, and Xiaojun Chang. Bossnas: Exploring hybrid cnn-transformers with block-wisely self-supervised neural architecture search. arXiv preprint arXiv:2103.12424, 2021. \n[42] Bolei Zhou, Hang Zhao, Xavier Puig, Sanja Fidler, Adela Barriuso, and Antonio Torralba. Scene parsing through ADE20k dataset. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 633–641, 2017. \n[43] Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollár. Panoptic feature pyramid networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 6399–6408, 2019. \n[44] Tete Xiao, Yingcheng Liu, Bolei Zhou, Yuning Jiang, and Jian Sun. Unified perceptual parsing for scene understanding. In Proceedings of the European Conference on Computer Vision (ECCV), pages 418–434, 2018. \n[45] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei Fu, Jianfeng Feng, Tao Xiang, Philip H.S. Torr, and Li Zhang. Rethinking semantic segmentation from a sequence-to-sequence perspective with transformers. In CVPR, 2021. \n[46] Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense object detection. In Proc. IEEE Int. Conf. Comp. Vis., pages 2980–2988, 2017. \n[47] Kaiming He, Georgia Gkioxari, Piotr Dollár, and Ross Girshick. Mask R-CNN. In Proc. IEEE Int. Conf. Comp. Vis., pages 2961–2969, 2017. \n[48] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan, Piotr Dollár, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Proc. Eur. Conf. Comp. Vis., pages 740–755, 2014. \n[49] Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun, Wansen Feng, Ziwei Liu, Jiarui Xu, Zheng Zhang, Dazhi Cheng, Chenchen Zhu, Tianheng Cheng, Qijie Zhao, Buyu Li, Xin Lu, Rui Zhu, Yue Wu, Jifeng Dai, Jingdong Wang, Jianping Shi, Wanli Ouyang, Chen Change Loy, and Dahua Lin. MMDetection: Open MMLab detection toolbox and benchmark. arXiv preprint arXiv:1906.07155, 2019. ", + "bbox": [ + 173, + 136, + 828, + 909 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 97, + 828, + 888 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 90, + 826, + 376 + ], + "page_idx": 11 + } +] \ No newline at end of file diff --git a/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_middle.json b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..6bcf10a0ea4434bf3b73a50330223fe8b84cb233 --- /dev/null +++ b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_middle.json @@ -0,0 +1,29510 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 116, + 97, + 496, + 136 + ], + "lines": [ + { + "bbox": [ + 115, + 97, + 495, + 119 + ], + "spans": [ + { + "bbox": [ + 115, + 97, + 495, + 119 + ], + "score": 1.0, + "content": "Twins: Revisiting the Design of Spatial Attention in", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 228, + 116, + 383, + 138 + ], + "spans": [ + { + "bbox": [ + 228, + 116, + 383, + 138 + ], + "score": 1.0, + "content": "Vision Transformers", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 178, + 174, + 453, + 202 + ], + "lines": [ + { + "bbox": [ + 179, + 174, + 451, + 189 + ], + "spans": [ + { + "bbox": [ + 179, + 174, + 231, + 189 + ], + "score": 1.0, + "content": "Xiangxiang", + "type": "text" + }, + { + "bbox": [ + 232, + 175, + 255, + 187 + ], + "score": 0.34, + "content": "\\mathbf { C h u ^ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 174, + 451, + 189 + ], + "score": 1.0, + "content": ", Zhi Tian1,2, Yuqing Wang1, Bo Zhang1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 177, + 189, + 457, + 202 + ], + "spans": [ + { + "bbox": [ + 177, + 189, + 457, + 202 + ], + "score": 1.0, + "content": "Haibing Ren1, Xiaolin Wei1, Huaxia Xia1, Chunhua Shen2∗", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 113, + 208, + 516, + 245 + ], + "lines": [ + { + "bbox": [ + 192, + 207, + 437, + 222 + ], + "spans": [ + { + "bbox": [ + 192, + 207, + 254, + 221 + ], + "score": 1.0, + "content": "1 Meituan Inc.", + "type": "text" + }, + { + "bbox": [ + 275, + 207, + 437, + 222 + ], + "score": 1.0, + "content": "2 The University of Adelaide, Australia", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 221, + 518, + 237 + ], + "spans": [ + { + "bbox": [ + 111, + 221, + 518, + 237 + ], + "score": 1.0, + "content": "1 {chuxiangxiang,wangyuqing06,zhangbo97,renhaibing,weixiaolin02,xiahuaxia}@meituan.com", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 223, + 231, + 406, + 249 + ], + "spans": [ + { + "bbox": [ + 223, + 231, + 406, + 249 + ], + "score": 1.0, + "content": "2 zhi.tian@outlook.com, chunhua@me.com", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 283, + 273, + 328, + 287 + ], + "lines": [ + { + "bbox": [ + 282, + 273, + 330, + 288 + ], + "spans": [ + { + "bbox": [ + 282, + 273, + 330, + 288 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 298, + 469, + 440 + ], + "lines": [ + { + "bbox": [ + 142, + 298, + 469, + 311 + ], + "spans": [ + { + "bbox": [ + 142, + 298, + 469, + 311 + ], + "score": 1.0, + "content": "Very recently, a variety of vision transformer architectures for dense prediction", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 310, + 469, + 321 + ], + "spans": [ + { + "bbox": [ + 142, + 310, + 469, + 321 + ], + "score": 1.0, + "content": "tasks have been proposed and they show that the design of spatial attention is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 319, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 319, + 470, + 333 + ], + "score": 1.0, + "content": "critical to their success in these tasks. In this work, we revisit the design of the spa-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "tial attention and demonstrate that a carefully devised yet simple spatial attention", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "score": 1.0, + "content": "mechanism performs favorably against the state-of-the-art schemes. As a result, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 353, + 470, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 470, + 364 + ], + "score": 1.0, + "content": "propose two vision transformer architectures, namely, Twins-PCPVT and Twins-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "score": 1.0, + "content": "SVT. Our proposed architectures are highly efficient and easy to implement, only", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 374, + 470, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 374, + 470, + 388 + ], + "score": 1.0, + "content": "involving matrix multiplications that are highly optimized in modern deep learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 386, + 470, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 386, + 470, + 398 + ], + "score": 1.0, + "content": "frameworks. More importantly, the proposed architectures achieve excellent per-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 397, + 470, + 409 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 470, + 409 + ], + "score": 1.0, + "content": "formance on a wide range of visual tasks including image-level classification as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 408, + 469, + 420 + ], + "spans": [ + { + "bbox": [ + 141, + 408, + 469, + 420 + ], + "score": 1.0, + "content": "well as dense detection and segmentation. The simplicity and strong performance", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "score": 1.0, + "content": "suggest that our proposed architectures may serve as stronger backbones for many", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 429, + 403, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 429, + 403, + 442 + ], + "score": 1.0, + "content": "vision tasks. Our code is available at: https://git.io/Twins.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 459, + 190, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 192, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 192, + 475 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Recently, Vision Transformers [1–3] have received increasing research interest. Compared to the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 494, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 509 + ], + "score": 1.0, + "content": "widely-used convolutional neural networks (CNNs) in visual perception, Vision Transformers enjoy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "great flexibility in modeling long-range dependencies in vision tasks, introduce less inductive bias,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 518, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 506, + 530 + ], + "score": 1.0, + "content": "and can naturally process multi-modality input data including images, videos, texts, speech signals,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "and point clouds. Thus, they have been considered to be a strong alternative to CNNs. It is expected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "that vision transformers are likely to replace CNNs and serve as the most basic component in the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 551, + 278, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 278, + 562 + ], + "score": 1.0, + "content": "next-generation visual perception systems.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "One of the prominent problems when applying transformers to vision tasks is the heavy computational", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "complexity incurred by the spatial self-attention operation in transformers, which grows quadratically", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "in the number of pixels of the input image. A workaround is the locally-grouped self-attention (or", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "score": 1.0, + "content": "self-attention in non-overlapped windows as in the recent Swin Transformer [4]), where the input", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "is spatially grouped into non-overlapped windows and the standard self-attention is computed only", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "within each sub-window. Although it can significantly reduce the complexity, it lacks the connections", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "between different windows and thus results in a limited receptive field. As pointed out by many", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "previous works [5–7], a sufficiently large receptive field is crucial to the performance, particularly for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "dense prediction tasks such as image segmentation and object detection. Swin [4] proposes a shifted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "score": 1.0, + "content": "window operation to tackle the issue, where the boundaries of these local windows are gradually", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 675, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 506, + 687 + ], + "score": 1.0, + "content": "moved as the network proceeds. Despite being effective, the shifted windows may have uneven sizes.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 685, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 506, + 698 + ], + "score": 1.0, + "content": "The uneven windows result in difficulties when the models are deployed with ONNX or TensorRT,", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 704, + 204, + 714 + ], + "lines": [ + { + "bbox": [ + 118, + 702, + 205, + 717 + ], + "spans": [ + { + "bbox": [ + 118, + 702, + 205, + 717 + ], + "score": 1.0, + "content": "∗Corresponding author.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 731, + 385, + 742 + ], + "lines": [ + { + "bbox": [ + 106, + 730, + 386, + 743 + ], + "spans": [ + { + "bbox": [ + 106, + 730, + 386, + 743 + ], + "score": 1.0, + "content": "35th Conference on Neural Information Processing Systems (NeurIPS 2021).", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 116, + 97, + 496, + 136 + ], + "lines": [ + { + "bbox": [ + 115, + 97, + 495, + 119 + ], + "spans": [ + { + "bbox": [ + 115, + 97, + 495, + 119 + ], + "score": 1.0, + "content": "Twins: Revisiting the Design of Spatial Attention in", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 228, + 116, + 383, + 138 + ], + "spans": [ + { + "bbox": [ + 228, + 116, + 383, + 138 + ], + "score": 1.0, + "content": "Vision Transformers", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 178, + 174, + 453, + 202 + ], + "lines": [ + { + "bbox": [ + 179, + 174, + 451, + 189 + ], + "spans": [ + { + "bbox": [ + 179, + 174, + 231, + 189 + ], + "score": 1.0, + "content": "Xiangxiang", + "type": "text" + }, + { + "bbox": [ + 232, + 175, + 255, + 187 + ], + "score": 0.34, + "content": "\\mathbf { C h u ^ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 174, + 451, + 189 + ], + "score": 1.0, + "content": ", Zhi Tian1,2, Yuqing Wang1, Bo Zhang1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 177, + 189, + 457, + 202 + ], + "spans": [ + { + "bbox": [ + 177, + 189, + 457, + 202 + ], + "score": 1.0, + "content": "Haibing Ren1, Xiaolin Wei1, Huaxia Xia1, Chunhua Shen2∗", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 177, + 174, + 457, + 202 + ] + }, + { + "type": "text", + "bbox": [ + 113, + 208, + 516, + 245 + ], + "lines": [ + { + "bbox": [ + 192, + 207, + 437, + 222 + ], + "spans": [ + { + "bbox": [ + 192, + 207, + 254, + 221 + ], + "score": 1.0, + "content": "1 Meituan Inc.", + "type": "text" + }, + { + "bbox": [ + 275, + 207, + 437, + 222 + ], + "score": 1.0, + "content": "2 The University of Adelaide, Australia", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 221, + 518, + 237 + ], + "spans": [ + { + "bbox": [ + 111, + 221, + 518, + 237 + ], + "score": 1.0, + "content": "1 {chuxiangxiang,wangyuqing06,zhangbo97,renhaibing,weixiaolin02,xiahuaxia}@meituan.com", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 223, + 231, + 406, + 249 + ], + "spans": [ + { + "bbox": [ + 223, + 231, + 406, + 249 + ], + "score": 1.0, + "content": "2 zhi.tian@outlook.com, chunhua@me.com", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 111, + 207, + 518, + 249 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 273, + 328, + 287 + ], + "lines": [ + { + "bbox": [ + 282, + 273, + 330, + 288 + ], + "spans": [ + { + "bbox": [ + 282, + 273, + 330, + 288 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 298, + 469, + 440 + ], + "lines": [ + { + "bbox": [ + 142, + 298, + 469, + 311 + ], + "spans": [ + { + "bbox": [ + 142, + 298, + 469, + 311 + ], + "score": 1.0, + "content": "Very recently, a variety of vision transformer architectures for dense prediction", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 310, + 469, + 321 + ], + "spans": [ + { + "bbox": [ + 142, + 310, + 469, + 321 + ], + "score": 1.0, + "content": "tasks have been proposed and they show that the design of spatial attention is", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 319, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 319, + 470, + 333 + ], + "score": 1.0, + "content": "critical to their success in these tasks. In this work, we revisit the design of the spa-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 343 + ], + "score": 1.0, + "content": "tial attention and demonstrate that a carefully devised yet simple spatial attention", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 470, + 354 + ], + "score": 1.0, + "content": "mechanism performs favorably against the state-of-the-art schemes. As a result, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 353, + 470, + 364 + ], + "spans": [ + { + "bbox": [ + 141, + 353, + 470, + 364 + ], + "score": 1.0, + "content": "propose two vision transformer architectures, namely, Twins-PCPVT and Twins-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 363, + 470, + 376 + ], + "score": 1.0, + "content": "SVT. Our proposed architectures are highly efficient and easy to implement, only", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 374, + 470, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 374, + 470, + 388 + ], + "score": 1.0, + "content": "involving matrix multiplications that are highly optimized in modern deep learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 386, + 470, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 386, + 470, + 398 + ], + "score": 1.0, + "content": "frameworks. More importantly, the proposed architectures achieve excellent per-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 397, + 470, + 409 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 470, + 409 + ], + "score": 1.0, + "content": "formance on a wide range of visual tasks including image-level classification as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 408, + 469, + 420 + ], + "spans": [ + { + "bbox": [ + 141, + 408, + 469, + 420 + ], + "score": 1.0, + "content": "well as dense detection and segmentation. The simplicity and strong performance", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "spans": [ + { + "bbox": [ + 141, + 419, + 469, + 432 + ], + "score": 1.0, + "content": "suggest that our proposed architectures may serve as stronger backbones for many", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 429, + 403, + 442 + ], + "spans": [ + { + "bbox": [ + 141, + 429, + 403, + 442 + ], + "score": 1.0, + "content": "vision tasks. Our code is available at: https://git.io/Twins.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14, + "bbox_fs": [ + 141, + 298, + 470, + 442 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 459, + 190, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 192, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 192, + 475 + ], + "score": 1.0, + "content": "1 Introduction", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 484, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Recently, Vision Transformers [1–3] have received increasing research interest. Compared to the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 494, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 506, + 509 + ], + "score": 1.0, + "content": "widely-used convolutional neural networks (CNNs) in visual perception, Vision Transformers enjoy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "great flexibility in modeling long-range dependencies in vision tasks, introduce less inductive bias,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 518, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 506, + 530 + ], + "score": 1.0, + "content": "and can naturally process multi-modality input data including images, videos, texts, speech signals,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "and point clouds. Thus, they have been considered to be a strong alternative to CNNs. It is expected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "that vision transformers are likely to replace CNNs and serve as the most basic component in the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 551, + 278, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 551, + 278, + 562 + ], + "score": 1.0, + "content": "next-generation visual perception systems.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 484, + 506, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "One of the prominent problems when applying transformers to vision tasks is the heavy computational", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "complexity incurred by the spatial self-attention operation in transformers, which grows quadratically", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "in the number of pixels of the input image. A workaround is the locally-grouped self-attention (or", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 506, + 611 + ], + "score": 1.0, + "content": "self-attention in non-overlapped windows as in the recent Swin Transformer [4]), where the input", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "score": 1.0, + "content": "is spatially grouped into non-overlapped windows and the standard self-attention is computed only", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 633 + ], + "score": 1.0, + "content": "within each sub-window. Although it can significantly reduce the complexity, it lacks the connections", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "between different windows and thus results in a limited receptive field. As pointed out by many", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "previous works [5–7], a sufficiently large receptive field is crucial to the performance, particularly for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "dense prediction tasks such as image segmentation and object detection. Swin [4] proposes a shifted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 677 + ], + "score": 1.0, + "content": "window operation to tackle the issue, where the boundaries of these local windows are gradually", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 675, + 506, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 506, + 687 + ], + "score": 1.0, + "content": "moved as the network proceeds. Despite being effective, the shifted windows may have uneven sizes.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 685, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 685, + 506, + 698 + ], + "score": 1.0, + "content": "The uneven windows result in difficulties when the models are deployed with ONNX or TensorRT,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "which prefers the windows of equal sizes. Another solution is proposed in PVT [8]. Unlike the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 505, + 96 + ], + "score": 1.0, + "content": "standard self-attention operation, where each query computes the attention weights with all the input", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "score": 1.0, + "content": "tokens, in PVT, each query only computes the attention with a sub-sampled version of the input", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "tokens. Although its computational complexity in theory is still quadratic, it is already manageable in", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 117, + 143, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 117, + 143, + 128 + ], + "score": 1.0, + "content": "practice.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 565, + 506, + 698 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "which prefers the windows of equal sizes. Another solution is proposed in PVT [8]. Unlike the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 505, + 96 + ], + "score": 1.0, + "content": "standard self-attention operation, where each query computes the attention weights with all the input", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 108 + ], + "score": 1.0, + "content": "tokens, in PVT, each query only computes the attention with a sub-sampled version of the input", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "tokens. Although its computational complexity in theory is still quadratic, it is already manageable in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 117, + 143, + 128 + ], + "spans": [ + { + "bbox": [ + 104, + 117, + 143, + 128 + ], + "score": 1.0, + "content": "practice.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "score": 1.0, + "content": "From a unified perspective, the core in the aforementioned vision transformers is how the spatial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "attention is designed. Thus, in this work, we revisit the design of the spatial attention in vision", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 153, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 507, + 168 + ], + "score": 1.0, + "content": "transformers. Our first finding is that the global sub-sampled attention in PVT is highly effective,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "and with the applicable positional encodings [9], its performance can be on par or even better", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 175, + 507, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 507, + 190 + ], + "score": 1.0, + "content": "than state-of-the-art vision transformers (e.g., Swin). This results in our first proposed architecture,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "termed Twins-PCPVT. On top of that, we further propose a carefully-designed yet simple spatial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "attention mechanism, making our architectures more efficient than PVT. Our attention mechanism is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "score": 1.0, + "content": "inspired by the widely-used separable depthwise convolutions and thus we name it spatially separable", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "self-attention (SSSA). Our proposed SSSA is composed of two types of attention operations—(i)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "locally-grouped self-attention (LSA), and (ii) global sub-sampled attention (GSA), where LSA", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "captures the fine-grained and short-distance information and GSA deals with the long-distance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "and global information. This leads to the second proposed vision transformer architecture, termed", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "Twins-SVT. It is worth noting that both attention operations in the architecture are efficient and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "easy-to-implement with matrix multiplications in a few lines of code. Thus, all of our architectures", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 286, + 333, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 333, + 298 + ], + "score": 1.0, + "content": "here have great applicability and can be easily deployed.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 346 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "We benchmark our proposed architectures on a number of visual tasks, ranging from image-level", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 312, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 506, + 324 + ], + "score": 1.0, + "content": "classification to pixel-level semantic/instance segmentation and object detection. Extensive experi-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "ments show that both of our proposed architectures perform favorably against other state-of-the-art", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 334, + 411, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 411, + 348 + ], + "score": 1.0, + "content": "vision transformers with similar or even reduced computational complexity.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 107, + 366, + 197, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 198, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 198, + 381 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "Convolutional neural networks. Characterized by local connectivity, weight sharing, shift-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "invariance and pooling, CNNs have been the de facto standard model for computer vision tasks.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "The top-performing models [10–13] in image classification also serve as the strong backbones for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 427, + 294, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 294, + 439 + ], + "score": 1.0, + "content": "downstream detection and segmentation tasks.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "Vision Transformers. Transformer was firstly proposed by [14] for machine translation tasks, and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "since then they have become the state-of-the-art models for NLP tasks, overtaking the sequence-to-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "sequence approach built on LSTM. Its core component is multi-head self-attention which models the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 475, + 353, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 353, + 489 + ], + "score": 1.0, + "content": "relationship between input tokens and shows great flexibility.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "In 2020, Transformer was introduced to computer vision for image and video processing [1–3, 9, 15–", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "17, 17–32]. In the image classification task, ViT [1] and DeiT [2] divide the images into patch", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "embedding sequences and feed them into the standard transformers. Although vision transformers", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "have been proved compelling in image classification compared with CNNs, a challenge remains when", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "it is applied to dense prediction tasks such as object detection and segmentation. These tasks often", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "require feature pyramids for better processing objects of different scales, and take as inputs the high-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "resolution images, which significantly increase the computational complexity of the self-attention", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 569, + 153, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 153, + 581 + ], + "score": 1.0, + "content": "operations.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 598 + ], + "score": 1.0, + "content": "Recently, Pyramid Vision Transformer (PVT) [8] is proposed and can output the feature pyramid [33]", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "as in CNNs. PVT has demonstrated good performance in a number of dense prediction tasks. The", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "recent Swin Transformer [4] introduces non-overlapping window partitions and restricts self-attention", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "within each local window, resulting in linear computational complexity in the number of input", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "tokens. To interchange information among different local areas, its window partitions are particularly", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "designed to shift between two adjacent self-attention layers. The semantic segmentation framework", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "OCNet [34] shares some similarities with us and they also interleave the local and global attention.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "Here, we demonstrate this is a general design paradigm in vision transformer backbones rather than", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 673, + 335, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 335, + 685 + ], + "score": 1.0, + "content": "merely an incremental module in semantic segmentation.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "Grouped and Separable Convolutions. Grouped convolutions are originally proposed in AlexNet", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "[35] for distributed computing. They were proved both efficient and effective in speeding up the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "networks. As an extreme case, depthwise convolutions [12, 36] use the number of groups that is", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 51 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 753 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 73, + 505, + 127 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 104, + 73, + 506, + 128 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 144 + ], + "score": 1.0, + "content": "From a unified perspective, the core in the aforementioned vision transformers is how the spatial", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 505, + 156 + ], + "score": 1.0, + "content": "attention is designed. Thus, in this work, we revisit the design of the spatial attention in vision", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 153, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 507, + 168 + ], + "score": 1.0, + "content": "transformers. Our first finding is that the global sub-sampled attention in PVT is highly effective,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "and with the applicable positional encodings [9], its performance can be on par or even better", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 175, + 507, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 507, + 190 + ], + "score": 1.0, + "content": "than state-of-the-art vision transformers (e.g., Swin). This results in our first proposed architecture,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 506, + 200 + ], + "score": 1.0, + "content": "termed Twins-PCPVT. On top of that, we further propose a carefully-designed yet simple spatial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "attention mechanism, making our architectures more efficient than PVT. Our attention mechanism is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "score": 1.0, + "content": "inspired by the widely-used separable depthwise convolutions and thus we name it spatially separable", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "score": 1.0, + "content": "self-attention (SSSA). Our proposed SSSA is composed of two types of attention operations—(i)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "locally-grouped self-attention (LSA), and (ii) global sub-sampled attention (GSA), where LSA", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "captures the fine-grained and short-distance information and GSA deals with the long-distance", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 265 + ], + "score": 1.0, + "content": "and global information. This leads to the second proposed vision transformer architecture, termed", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "Twins-SVT. It is worth noting that both attention operations in the architecture are efficient and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "easy-to-implement with matrix multiplications in a few lines of code. Thus, all of our architectures", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 286, + 333, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 333, + 298 + ], + "score": 1.0, + "content": "here have great applicability and can be easily deployed.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 133, + 507, + 298 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 346 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 505, + 313 + ], + "score": 1.0, + "content": "We benchmark our proposed architectures on a number of visual tasks, ranging from image-level", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 312, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 506, + 324 + ], + "score": 1.0, + "content": "classification to pixel-level semantic/instance segmentation and object detection. Extensive experi-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "ments show that both of our proposed architectures perform favorably against other state-of-the-art", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 334, + 411, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 411, + 348 + ], + "score": 1.0, + "content": "vision transformers with similar or even reduced computational complexity.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 302, + 506, + 348 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 366, + 197, + 379 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 198, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 198, + 381 + ], + "score": 1.0, + "content": "2 Related Work", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 506, + 406 + ], + "score": 1.0, + "content": "Convolutional neural networks. Characterized by local connectivity, weight sharing, shift-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 506, + 417 + ], + "score": 1.0, + "content": "invariance and pooling, CNNs have been the de facto standard model for computer vision tasks.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "The top-performing models [10–13] in image classification also serve as the strong backbones for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 427, + 294, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 294, + 439 + ], + "score": 1.0, + "content": "downstream detection and segmentation tasks.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 394, + 506, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 506, + 456 + ], + "score": 1.0, + "content": "Vision Transformers. Transformer was firstly proposed by [14] for machine translation tasks, and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "since then they have become the state-of-the-art models for NLP tasks, overtaking the sequence-to-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "sequence approach built on LSTM. Its core component is multi-head self-attention which models the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 475, + 353, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 353, + 489 + ], + "score": 1.0, + "content": "relationship between input tokens and shows great flexibility.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 443, + 506, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 505, + 580 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "In 2020, Transformer was introduced to computer vision for image and video processing [1–3, 9, 15–", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "17, 17–32]. In the image classification task, ViT [1] and DeiT [2] divide the images into patch", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "embedding sequences and feed them into the standard transformers. Although vision transformers", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "have been proved compelling in image classification compared with CNNs, a challenge remains when", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "it is applied to dense prediction tasks such as object detection and segmentation. These tasks often", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 559 + ], + "score": 1.0, + "content": "require feature pyramids for better processing objects of different scales, and take as inputs the high-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "resolution images, which significantly increase the computational complexity of the self-attention", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 569, + 153, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 153, + 581 + ], + "score": 1.0, + "content": "operations.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 492, + 506, + 581 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 585, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 505, + 598 + ], + "score": 1.0, + "content": "Recently, Pyramid Vision Transformer (PVT) [8] is proposed and can output the feature pyramid [33]", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 609 + ], + "score": 1.0, + "content": "as in CNNs. PVT has demonstrated good performance in a number of dense prediction tasks. The", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "recent Swin Transformer [4] introduces non-overlapping window partitions and restricts self-attention", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "within each local window, resulting in linear computational complexity in the number of input", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 505, + 642 + ], + "score": 1.0, + "content": "tokens. To interchange information among different local areas, its window partitions are particularly", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "designed to shift between two adjacent self-attention layers. The semantic segmentation framework", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 650, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 506, + 663 + ], + "score": 1.0, + "content": "OCNet [34] shares some similarities with us and they also interleave the local and global attention.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "Here, we demonstrate this is a general design paradigm in vision transformer backbones rather than", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 673, + 335, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 335, + 685 + ], + "score": 1.0, + "content": "merely an incremental module in semantic segmentation.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 584, + 506, + 685 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "Grouped and Separable Convolutions. Grouped convolutions are originally proposed in AlexNet", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 713 + ], + "score": 1.0, + "content": "[35] for distributed computing. They were proved both efficient and effective in speeding up the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "networks. As an extreme case, depthwise convolutions [12, 36] use the number of groups that is", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "equal to the input or output channels, which is followed by point-wise convolutions to aggregate the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "information across different channels. Here, the proposed spatially separable self-attention shares", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 222, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 222, + 106 + ], + "score": 1.0, + "content": "some similarities with them.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 688, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "equal to the input or output channels, which is followed by point-wise convolutions to aggregate the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 506, + 97 + ], + "score": 1.0, + "content": "information across different channels. Here, the proposed spatially separable self-attention shares", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 95, + 222, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 222, + 106 + ], + "score": 1.0, + "content": "some similarities with them.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 505, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "score": 1.0, + "content": "Positional Encodings. Most vision transformers use absolute/relative positional encodings, de-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "pending on downstream tasks, which are based on sinusoidal functions [14] or learnable [1, 2].", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 132, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 146 + ], + "score": 1.0, + "content": "In CPVT [9], the authors propose the conditional positional encodings, which are dynamically", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 144, + 470, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 470, + 156 + ], + "score": 1.0, + "content": "conditioned on the inputs and show better performance than the absolute and relative ones.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 108, + 170, + 228, + 183 + ], + "lines": [ + { + "bbox": [ + 104, + 169, + 230, + 186 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 230, + 186 + ], + "score": 1.0, + "content": "3 Our Method: Twins", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "We present two simple yet powerful spatial designs for vision transformers. The first method is built", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 218 + ], + "score": 1.0, + "content": "upon PVT [8] and CPVT [9], which only uses the global attention. The architecture is thus termed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "Twins-PCPVT. The second one, termed Twins-SVT, is based on the proposed SSSA which interleaves", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 212, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 212, + 240 + ], + "score": 1.0, + "content": "local and global attention.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 252, + 192, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 194, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 194, + 267 + ], + "score": 1.0, + "content": "3.1 Twins-PCPVT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "PVT [8] introduces the pyramid multi-stage design to better tackle dense prediction tasks such as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "object detection and semantic segmentation. It inherits the absolute positional encoding designed in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "ViT [1] and DeiT [2]. All layers utilize the global attention mechanism and rely on spatial reduction", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "to cut down the computation cost of processing the whole sequence. It is surprising to see that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "the recently-proposed Swin transformer [4], which is based on shifted local windows, can perform", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 327, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 341 + ], + "score": 1.0, + "content": "considerably better than PVT, even on dense prediction tasks where a sufficiently large receptive field", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 277, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 277, + 352 + ], + "score": 1.0, + "content": "is even more crucial to good performance.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "In this work, we surprisingly found that the less favored performance of PVT is mainly due to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "absolute positional encodings employed in PVT [8]. As shown in CPVT [9], the absolute positional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "encoding encounter difficulties in processing the inputs with varying sizes (which are common in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 388, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 506, + 400 + ], + "score": 1.0, + "content": "dense prediction tasks). Moreover, this positional encoding also breaks the translation invariance.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "On the contrary, Swin transformer makes use of the relative positional encodings, which bypasses the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "above issues. Here, we demonstrate that this is the main cause why Swin outperforms PVT, and we", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "show that if the appropriate positional encodings are used, PVT can actually achieve on par or even", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 431, + 293, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 293, + 443 + ], + "score": 1.0, + "content": "better performance than the Swin transformer.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "Here, we use the conditional position encoding (CPE) proposed in CPVT [9] to replace the absolute", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "PE in PVT. CPE is conditioned on the inputs and can naturally avoid the above issues of the absolute", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "encodings. The position encoding generator (PEG) [9], which generates the CPE, is placed after the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "score": 1.0, + "content": "first encoder block of each stage. We use the simplest form of PEG, i.e., a 2D depth-wise convolution", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "without batch normalization. For image-level classification, following CPVT, we remove the class", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "token and use global average pooling (GAP) at the end of the stage [9]. For other vision tasks, we", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 513, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 525 + ], + "score": 1.0, + "content": "follow the design of PVT. Twins-PCPVT inherits the advantages of both PVT and CPVT, which", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "makes it easy to be implemented efficiently. Our extensive experimental results show that this simple", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "design can match the performance of the recent state-of-the-art Swin transformer. We have also", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "score": 1.0, + "content": "attempted to replace the relative PE with CPE in Swin, which however does not result in noticeable", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "score": 1.0, + "content": "performance gains, as shown in our experiments. We conjecture that this maybe due to the use of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 568, + 363, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 363, + 579 + ], + "score": 1.0, + "content": "shifted windows in Swin, which might not work well with CPE.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 591, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 507, + 604 + ], + "score": 1.0, + "content": "Architecture settings We report the detailed settings of Twins-PCPVT in Table 2 (in supplemen-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 602, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 614 + ], + "score": 1.0, + "content": "tary), which are similar to PVT [8]. Therefore, Twins-PCPVT has similar FLOPs and number of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 613, + 180, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 180, + 626 + ], + "score": 1.0, + "content": "parameters to [8].", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 178, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 180, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 180, + 651 + ], + "score": 1.0, + "content": "3.2 Twins-SVT", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "Vision transformers suffer severely from the heavy computational complexity in dense prediction", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 330, + 681 + ], + "score": 1.0, + "content": "tasks due to high-resolution inputs. Given an input of", + "type": "text" + }, + { + "bbox": [ + 330, + 671, + 363, + 680 + ], + "score": 0.93, + "content": "H \\times W", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "resolution, the complexity of self-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 210, + 694 + ], + "score": 1.0, + "content": "attention with dimension", + "type": "text" + }, + { + "bbox": [ + 210, + 680, + 217, + 690 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 677, + 227, + 694 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 228, + 680, + 277, + 692 + ], + "score": 0.92, + "content": "\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 677, + 506, + 694 + ], + "score": 1.0, + "content": ". Here, we propose the spatially separable self-attention", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 690, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 704 + ], + "score": 1.0, + "content": "(SSSA) to alleviate this challenge. SSSA is composed of locally-grouped self-attention (LSA) and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 701, + 255, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 255, + 714 + ], + "score": 1.0, + "content": "global sub-sampled attention (GSA).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 740, + 309, + 752 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 72, + 504, + 105 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 72, + 506, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 505, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 507, + 124 + ], + "score": 1.0, + "content": "Positional Encodings. Most vision transformers use absolute/relative positional encodings, de-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "pending on downstream tasks, which are based on sinusoidal functions [14] or learnable [1, 2].", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 132, + 506, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 146 + ], + "score": 1.0, + "content": "In CPVT [9], the authors propose the conditional positional encodings, which are dynamically", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 144, + 470, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 470, + 156 + ], + "score": 1.0, + "content": "conditioned on the inputs and show better performance than the absolute and relative ones.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 110, + 507, + 156 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 170, + 228, + 183 + ], + "lines": [ + { + "bbox": [ + 104, + 169, + 230, + 186 + ], + "spans": [ + { + "bbox": [ + 104, + 169, + 230, + 186 + ], + "score": 1.0, + "content": "3 Our Method: Twins", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 195, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "We present two simple yet powerful spatial designs for vision transformers. The first method is built", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 206, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 218 + ], + "score": 1.0, + "content": "upon PVT [8] and CPVT [9], which only uses the global attention. The architecture is thus termed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "Twins-PCPVT. The second one, termed Twins-SVT, is based on the proposed SSSA which interleaves", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 228, + 212, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 212, + 240 + ], + "score": 1.0, + "content": "local and global attention.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 195, + 506, + 240 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 252, + 192, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 194, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 194, + 267 + ], + "score": 1.0, + "content": "3.1 Twins-PCPVT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "PVT [8] introduces the pyramid multi-stage design to better tackle dense prediction tasks such as", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 283, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 505, + 297 + ], + "score": 1.0, + "content": "object detection and semantic segmentation. It inherits the absolute positional encoding designed in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "ViT [1] and DeiT [2]. All layers utilize the global attention mechanism and rely on spatial reduction", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "to cut down the computation cost of processing the whole sequence. It is surprising to see that", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "the recently-proposed Swin transformer [4], which is based on shifted local windows, can perform", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 327, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 506, + 341 + ], + "score": 1.0, + "content": "considerably better than PVT, even on dense prediction tasks where a sufficiently large receptive field", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 338, + 277, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 277, + 352 + ], + "score": 1.0, + "content": "is even more crucial to good performance.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 273, + 506, + 352 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 505, + 367 + ], + "score": 1.0, + "content": "In this work, we surprisingly found that the less favored performance of PVT is mainly due to the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "absolute positional encodings employed in PVT [8]. As shown in CPVT [9], the absolute positional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "encoding encounter difficulties in processing the inputs with varying sizes (which are common in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 388, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 506, + 400 + ], + "score": 1.0, + "content": "dense prediction tasks). Moreover, this positional encoding also breaks the translation invariance.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "On the contrary, Swin transformer makes use of the relative positional encodings, which bypasses the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "above issues. Here, we demonstrate that this is the main cause why Swin outperforms PVT, and we", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "show that if the appropriate positional encodings are used, PVT can actually achieve on par or even", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 431, + 293, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 293, + 443 + ], + "score": 1.0, + "content": "better performance than the Swin transformer.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 355, + 506, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 447, + 505, + 579 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 460 + ], + "score": 1.0, + "content": "Here, we use the conditional position encoding (CPE) proposed in CPVT [9] to replace the absolute", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 505, + 471 + ], + "score": 1.0, + "content": "PE in PVT. CPE is conditioned on the inputs and can naturally avoid the above issues of the absolute", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 483 + ], + "score": 1.0, + "content": "encodings. The position encoding generator (PEG) [9], which generates the CPE, is placed after the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 493 + ], + "score": 1.0, + "content": "first encoder block of each stage. We use the simplest form of PEG, i.e., a 2D depth-wise convolution", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 504 + ], + "score": 1.0, + "content": "without batch normalization. For image-level classification, following CPVT, we remove the class", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "token and use global average pooling (GAP) at the end of the stage [9]. For other vision tasks, we", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 513, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 506, + 525 + ], + "score": 1.0, + "content": "follow the design of PVT. Twins-PCPVT inherits the advantages of both PVT and CPVT, which", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 537 + ], + "score": 1.0, + "content": "makes it easy to be implemented efficiently. Our extensive experimental results show that this simple", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 535, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 547 + ], + "score": 1.0, + "content": "design can match the performance of the recent state-of-the-art Swin transformer. We have also", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 558 + ], + "score": 1.0, + "content": "attempted to replace the relative PE with CPE in Swin, which however does not result in noticeable", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 506, + 569 + ], + "score": 1.0, + "content": "performance gains, as shown in our experiments. We conjecture that this maybe due to the use of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 568, + 363, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 363, + 579 + ], + "score": 1.0, + "content": "shifted windows in Swin, which might not work well with CPE.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 448, + 506, + 579 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 591, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 507, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 507, + 604 + ], + "score": 1.0, + "content": "Architecture settings We report the detailed settings of Twins-PCPVT in Table 2 (in supplemen-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 602, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 506, + 614 + ], + "score": 1.0, + "content": "tary), which are similar to PVT [8]. Therefore, Twins-PCPVT has similar FLOPs and number of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 613, + 180, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 180, + 626 + ], + "score": 1.0, + "content": "parameters to [8].", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 590, + 507, + 626 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 637, + 178, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 636, + 180, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 180, + 651 + ], + "score": 1.0, + "content": "3.2 Twins-SVT", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "Vision transformers suffer severely from the heavy computational complexity in dense prediction", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 330, + 681 + ], + "score": 1.0, + "content": "tasks due to high-resolution inputs. Given an input of", + "type": "text" + }, + { + "bbox": [ + 330, + 671, + 363, + 680 + ], + "score": 0.93, + "content": "H \\times W", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "resolution, the complexity of self-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 210, + 694 + ], + "score": 1.0, + "content": "attention with dimension", + "type": "text" + }, + { + "bbox": [ + 210, + 680, + 217, + 690 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 677, + 227, + 694 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 228, + 680, + 277, + 692 + ], + "score": 0.92, + "content": "\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 677, + 506, + 694 + ], + "score": 1.0, + "content": ". Here, we propose the spatially separable self-attention", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 690, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 704 + ], + "score": 1.0, + "content": "(SSSA) to alleviate this challenge. SSSA is composed of locally-grouped self-attention (LSA) and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 701, + 255, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 255, + 714 + ], + "score": 1.0, + "content": "global sub-sampled attention (GSA).", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46, + "bbox_fs": [ + 104, + 657, + 506, + 714 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 73, + 502, + 160 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 73, + 502, + 160 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 73, + 502, + 160 + ], + "spans": [ + { + "bbox": [ + 107, + 73, + 502, + 160 + ], + "score": 0.958, + "type": "image", + "image_path": "fec150010c9fe25574fcd045b5d0727df84edd7d8819dfbc9908baa560445e02.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 73, + 502, + 102.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 102.0, + 502, + 131.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 131.0, + 502, + 160.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 120, + 171, + 489, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 170, + 490, + 185 + ], + "spans": [ + { + "bbox": [ + 120, + 170, + 490, + 185 + ], + "score": 1.0, + "content": "Figure 1 – Architecture of Twins-SVT-S. “PEG\" is the positional encoding generator from CPVT [9].", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 297, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 298, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 298, + 226 + ], + "score": 1.0, + "content": "Locally-grouped self-attention (LSA). Mo-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 225, + 298, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 298, + 238 + ], + "score": 1.0, + "content": "tivated by the group design in depthwise convo-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 236, + 297, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 297, + 249 + ], + "score": 1.0, + "content": "lutions for efficient inference, we first equally", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 246, + 299, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 299, + 259 + ], + "score": 1.0, + "content": "divide the 2D feature maps into sub-windows,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 258, + 298, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 298, + 271 + ], + "score": 1.0, + "content": "making self-attention communications only hap-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 269, + 298, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 298, + 281 + ], + "score": 1.0, + "content": "pen within each sub-window. This design also", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 280, + 298, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 298, + 291 + ], + "score": 1.0, + "content": "resonates with the multi-head design in self-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 291, + 298, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 298, + 303 + ], + "score": 1.0, + "content": "attention, where the communications only occur", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 301, + 298, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 298, + 315 + ], + "score": 1.0, + "content": "within the channels of the same head. To be spe-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 313, + 296, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 267, + 325 + ], + "score": 1.0, + "content": "cific, the feature maps are divided into", + "type": "text" + }, + { + "bbox": [ + 267, + 314, + 296, + 324 + ], + "score": 0.9, + "content": "m \\times n", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 323, + 297, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 297, + 336 + ], + "score": 1.0, + "content": "sub-windows. Without loss of generality, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 333, + 298, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 137, + 348 + ], + "score": 1.0, + "content": "assume", + "type": "text" + }, + { + "bbox": [ + 138, + 335, + 183, + 345 + ], + "score": 0.9, + "content": "H \\% m = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 333, + 201, + 348 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 201, + 335, + 245, + 345 + ], + "score": 0.92, + "content": "W \\% n = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 333, + 298, + 348 + ], + "score": 1.0, + "content": ". Each group", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 343, + 299, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 144, + 360 + ], + "score": 1.0, + "content": "contains", + "type": "text" + }, + { + "bbox": [ + 144, + 345, + 162, + 360 + ], + "score": 0.9, + "content": "\\textstyle { \\frac { H W } { m n _ { * } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 343, + 299, + 360 + ], + "score": 1.0, + "content": "elements, and thus the computa-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 356, + 298, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 298, + 368 + ], + "score": 1.0, + "content": "tion cost of the self-attention in this window is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 364, + 299, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 366, + 153, + 380 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathcal { O } \\big ( \\frac { H ^ { 2 } W ^ { 2 } } { m ^ { 2 } n ^ { 2 } } d \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 364, + 237, + 381 + ], + "score": 1.0, + "content": ", and the total cost is", + "type": "text" + }, + { + "bbox": [ + 237, + 366, + 283, + 380 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } } { m n } d ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 364, + 299, + 381 + ], + "score": 1.0, + "content": ". If", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 376, + 298, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 134, + 392 + ], + "score": 1.0, + "content": "we let", + "type": "text" + }, + { + "bbox": [ + 135, + 379, + 171, + 392 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\dot { k } _ { 1 } = \\frac { H } { m } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 379, + 190, + 393 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 190, + 379, + 228, + 393 + ], + "score": 0.9, + "content": "\\textstyle k _ { 2 } \\ = \\ { \\frac { W } { n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 376, + 298, + 395 + ], + "score": 1.0, + "content": ", the cost can be", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 11.5 + }, + { + "type": "image", + "bbox": [ + 320, + 216, + 489, + 339 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 320, + 216, + 489, + 339 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 320, + 216, + 489, + 339 + ], + "spans": [ + { + "bbox": [ + 320, + 216, + 489, + 339 + ], + "score": 0.966, + "type": "image", + "image_path": "12ea80c3e81cb7eced3ec463d4e28c76d5d0784a7607a8261852efa72d93e84d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 320, + 216, + 489, + 229.66666666666666 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 320, + 229.66666666666666, + 489, + 243.33333333333331 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 320, + 243.33333333333331, + 489, + 257.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 320, + 257.0, + 489, + 270.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 320, + 270.6666666666667, + 489, + 284.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 320, + 284.33333333333337, + 489, + 298.00000000000006 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 320, + 298.00000000000006, + 489, + 311.66666666666674 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 320, + 311.66666666666674, + 489, + 325.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 320, + 325.3333333333334, + 489, + 339.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 348, + 505, + 388 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 303, + 347, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 303, + 347, + 505, + 359 + ], + "score": 1.0, + "content": "Figure 2 – (a) Twins-SVT interleaves locally-grouped", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 304, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 304, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "attention (LSA) and global sub-sampled attention (GSA).", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 303, + 368, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 303, + 368, + 505, + 379 + ], + "score": 1.0, + "content": "(b) Schematic view of the locally-grouped attention", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 304, + 378, + 479, + 389 + ], + "spans": [ + { + "bbox": [ + 304, + 378, + 479, + 389 + ], + "score": 1.0, + "content": "(LSA) and global sub-sampled attention (GSA).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + } + ], + "index": 27.25 + }, + { + "type": "text", + "bbox": [ + 108, + 392, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 160, + 404 + ], + "score": 1.0, + "content": "computed as", + "type": "text" + }, + { + "bbox": [ + 160, + 391, + 219, + 403 + ], + "score": 0.88, + "content": "\\mathcal { O } ( k _ { 1 } k _ { 2 } H W d )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 390, + 395, + 404 + ], + "score": 1.0, + "content": ", which is significantly more efficient when", + "type": "text" + }, + { + "bbox": [ + 396, + 391, + 431, + 403 + ], + "score": 0.91, + "content": "k _ { 1 } \\ll H", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 390, + 449, + 404 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 391, + 487, + 403 + ], + "score": 0.91, + "content": "k _ { 2 } \\ll W", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 402, + 298, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 186, + 415 + ], + "score": 1.0, + "content": "grows linearly with", + "type": "text" + }, + { + "bbox": [ + 186, + 403, + 207, + 413 + ], + "score": 0.66, + "content": "H W", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 402, + 217, + 415 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 217, + 403, + 228, + 414 + ], + "score": 0.87, + "content": "k _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 402, + 246, + 415 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 246, + 403, + 257, + 414 + ], + "score": 0.88, + "content": "k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 402, + 298, + 415 + ], + "score": 1.0, + "content": "are fixed.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.0 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "Although the locally-grouped self-attention mechanism is computation friendly, the image is divided", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "into non-overlapping sub-windows. Thus, we need a mechanism to communicate between different", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "sub-windows, as in Swin. Otherwise, the information would be limited to be processed locally,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 452, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 506, + 463 + ], + "score": 1.0, + "content": "which makes the receptive field small and significantly degrades the performance as shown in our", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "experiments. This resembles the fact that we cannot replace all standard convolutions by depth-wise", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 474, + 200, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 200, + 485 + ], + "score": 1.0, + "content": "convolutions in CNNs.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 507, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 507, + 522 + ], + "score": 1.0, + "content": "Global sub-sampled attention (GSA). A simple solution is to add extra standard global self-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 519, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 507, + 532 + ], + "score": 1.0, + "content": "attention layers after each local attention block, which can enable cross-group information exchange.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 530, + 453, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 399, + 543 + ], + "score": 1.0, + "content": "However, this approach would come with the computation complexity of", + "type": "text" + }, + { + "bbox": [ + 400, + 530, + 449, + 542 + ], + "score": 0.92, + "content": "\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 530, + 453, + 543 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 474, + 560 + ], + "score": 1.0, + "content": "Here, we use a single representative to summarize the important information for each of", + "type": "text" + }, + { + "bbox": [ + 475, + 548, + 504, + 558 + ], + "score": 0.88, + "content": "m \\times n", + "type": "inline_equation" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "sub-windows and the representative is used to communicate with other sub-windows (serving as the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 568, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 366, + 583 + ], + "score": 1.0, + "content": "key in self-attention), which can dramatically reduce the cost to", + "type": "text" + }, + { + "bbox": [ + 367, + 569, + 480, + 585 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( m n H W d ) = \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 568, + 481, + 583 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 483, + 571, + 505, + 582 + ], + "score": 1.0, + "content": "This", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 582, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 506, + 597 + ], + "score": 1.0, + "content": "is essentially equivalent to using the sub-sampled feature maps as the key in attention operations,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "and thus we term it global sub-sampled attention (GSA). If we alternatively use the aforementioned", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 332, + 619 + ], + "score": 1.0, + "content": "LSA and GSA like separable convolutions (depth-wise", + "type": "text" + }, + { + "bbox": [ + 332, + 606, + 340, + 615 + ], + "score": 0.75, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "point-wise). The total computation cost√", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 614, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 117, + 635 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 616, + 219, + 632 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } \\bar { H } W d ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 614, + 265, + 635 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + }, + { + "bbox": [ + 265, + 617, + 428, + 632 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } H W d \\geq 2 H W d \\sqrt { H W } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 614, + 506, + 635 + ], + "score": 1.0, + "content": ". The minimum is", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 168, + 645 + ], + "score": 1.0, + "content": "obtained when", + "type": "text" + }, + { + "bbox": [ + 168, + 631, + 237, + 644 + ], + "score": 0.92, + "content": "\\boldsymbol { k } _ { 1 } \\cdot \\boldsymbol { k } _ { 2 } = \\sqrt { H W }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 632, + 295, + 645 + ], + "score": 1.0, + "content": ". We note that", + "type": "text" + }, + { + "bbox": [ + 295, + 633, + 358, + 643 + ], + "score": 0.88, + "content": "H = W = 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "is popular in classification. Without", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 321, + 658 + ], + "score": 1.0, + "content": "loss of generality, we use square sub-windows, i.e.,", + "type": "text" + }, + { + "bbox": [ + 321, + 644, + 357, + 655 + ], + "score": 0.91, + "content": "k _ { 1 } = k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 644, + 409, + 658 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 409, + 644, + 470, + 655 + ], + "score": 0.91, + "content": "k _ { 1 } = k _ { 2 } = 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "is close", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 218, + 666 + ], + "score": 1.0, + "content": "to the global minimum for", + "type": "text" + }, + { + "bbox": [ + 218, + 655, + 282, + 665 + ], + "score": 0.9, + "content": "H = W = 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 655, + 505, + 666 + ], + "score": 1.0, + "content": ". However, our network is designed to include several", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 344, + 677 + ], + "score": 1.0, + "content": "stages with variable resolutions. Stage 1 has feature maps of", + "type": "text" + }, + { + "bbox": [ + 345, + 666, + 378, + 676 + ], + "score": 0.9, + "content": "5 6 \\times 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 666, + 505, + 677 + ], + "score": 1.0, + "content": ", the minimum is obtained when", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 192, + 689 + ], + "score": 0.93, + "content": "k _ { 1 } \\stackrel { \\cdot } { = } k _ { 2 } = \\sqrt { 5 6 } \\approx 7 .", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 678, + 355, + 690 + ], + "score": 1.0, + "content": "Theoretically, we can calibrate optimal", + "type": "text" + }, + { + "bbox": [ + 355, + 678, + 366, + 689 + ], + "score": 0.88, + "content": "k _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 678, + 384, + 690 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 385, + 678, + 396, + 689 + ], + "score": 0.88, + "content": "k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "for each of the stages. For", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 182, + 701 + ], + "score": 1.0, + "content": "simplicity, we use", + "type": "text" + }, + { + "bbox": [ + 183, + 689, + 237, + 700 + ], + "score": 0.92, + "content": "k _ { 1 } = k _ { 2 } = 7", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "everywhere. As for stages with lower resolutions, we control the", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "summarizing window-size of GSA to avoid too small amount of generated keys. Specifically, we use", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 710, + 338, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 338, + 724 + ], + "score": 1.0, + "content": "the size of 4, 2 and 1 for the last three stages respectively.", + "type": "text" + } + ], + "index": 58 + } + ], + "index": 51 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 301, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 431, + 74, + 484, + 81 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 73, + 502, + 160 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 73, + 502, + 160 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 73, + 502, + 160 + ], + "spans": [ + { + "bbox": [ + 107, + 73, + 502, + 160 + ], + "score": 0.958, + "type": "image", + "image_path": "fec150010c9fe25574fcd045b5d0727df84edd7d8819dfbc9908baa560445e02.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 73, + 502, + 102.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 102.0, + 502, + 131.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 131.0, + 502, + 160.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 120, + 171, + 489, + 183 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 120, + 170, + 490, + 185 + ], + "spans": [ + { + "bbox": [ + 120, + 170, + 490, + 185 + ], + "score": 1.0, + "content": "Figure 1 – Architecture of Twins-SVT-S. “PEG\" is the positional encoding generator from CPVT [9].", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 297, + 393 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 298, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 298, + 226 + ], + "score": 1.0, + "content": "Locally-grouped self-attention (LSA). Mo-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 225, + 298, + 238 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 298, + 238 + ], + "score": 1.0, + "content": "tivated by the group design in depthwise convo-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 236, + 297, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 297, + 249 + ], + "score": 1.0, + "content": "lutions for efficient inference, we first equally", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 246, + 299, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 299, + 259 + ], + "score": 1.0, + "content": "divide the 2D feature maps into sub-windows,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 258, + 298, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 298, + 271 + ], + "score": 1.0, + "content": "making self-attention communications only hap-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 269, + 298, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 298, + 281 + ], + "score": 1.0, + "content": "pen within each sub-window. This design also", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 280, + 298, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 298, + 291 + ], + "score": 1.0, + "content": "resonates with the multi-head design in self-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 291, + 298, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 298, + 303 + ], + "score": 1.0, + "content": "attention, where the communications only occur", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 301, + 298, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 298, + 315 + ], + "score": 1.0, + "content": "within the channels of the same head. To be spe-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 313, + 296, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 267, + 325 + ], + "score": 1.0, + "content": "cific, the feature maps are divided into", + "type": "text" + }, + { + "bbox": [ + 267, + 314, + 296, + 324 + ], + "score": 0.9, + "content": "m \\times n", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 323, + 297, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 323, + 297, + 336 + ], + "score": 1.0, + "content": "sub-windows. Without loss of generality, we", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 333, + 298, + 348 + ], + "spans": [ + { + "bbox": [ + 104, + 333, + 137, + 348 + ], + "score": 1.0, + "content": "assume", + "type": "text" + }, + { + "bbox": [ + 138, + 335, + 183, + 345 + ], + "score": 0.9, + "content": "H \\% m = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 333, + 201, + 348 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 201, + 335, + 245, + 345 + ], + "score": 0.92, + "content": "W \\% n = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 333, + 298, + 348 + ], + "score": 1.0, + "content": ". Each group", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 343, + 299, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 144, + 360 + ], + "score": 1.0, + "content": "contains", + "type": "text" + }, + { + "bbox": [ + 144, + 345, + 162, + 360 + ], + "score": 0.9, + "content": "\\textstyle { \\frac { H W } { m n _ { * } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 343, + 299, + 360 + ], + "score": 1.0, + "content": "elements, and thus the computa-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 356, + 298, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 298, + 368 + ], + "score": 1.0, + "content": "tion cost of the self-attention in this window is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 364, + 299, + 381 + ], + "spans": [ + { + "bbox": [ + 107, + 366, + 153, + 380 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathcal { O } \\big ( \\frac { H ^ { 2 } W ^ { 2 } } { m ^ { 2 } n ^ { 2 } } d \\big ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 364, + 237, + 381 + ], + "score": 1.0, + "content": ", and the total cost is", + "type": "text" + }, + { + "bbox": [ + 237, + 366, + 283, + 380 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } } { m n } d ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 364, + 299, + 381 + ], + "score": 1.0, + "content": ". If", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 376, + 298, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 134, + 392 + ], + "score": 1.0, + "content": "we let", + "type": "text" + }, + { + "bbox": [ + 135, + 379, + 171, + 392 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\dot { k } _ { 1 } = \\frac { H } { m } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 379, + 190, + 393 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 190, + 379, + 228, + 393 + ], + "score": 0.9, + "content": "\\textstyle k _ { 2 } \\ = \\ { \\frac { W } { n } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 376, + 298, + 395 + ], + "score": 1.0, + "content": ", the cost can be", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 214, + 299, + 395 + ] + }, + { + "type": "image", + "bbox": [ + 320, + 216, + 489, + 339 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 320, + 216, + 489, + 339 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 320, + 216, + 489, + 339 + ], + "spans": [ + { + "bbox": [ + 320, + 216, + 489, + 339 + ], + "score": 0.966, + "type": "image", + "image_path": "12ea80c3e81cb7eced3ec463d4e28c76d5d0784a7607a8261852efa72d93e84d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 320, + 216, + 489, + 229.66666666666666 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 320, + 229.66666666666666, + 489, + 243.33333333333331 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 320, + 243.33333333333331, + 489, + 257.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 320, + 257.0, + 489, + 270.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 320, + 270.6666666666667, + 489, + 284.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 320, + 284.33333333333337, + 489, + 298.00000000000006 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 320, + 298.00000000000006, + 489, + 311.66666666666674 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 320, + 311.66666666666674, + 489, + 325.3333333333334 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 320, + 325.3333333333334, + 489, + 339.0000000000001 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 348, + 505, + 388 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 303, + 347, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 303, + 347, + 505, + 359 + ], + "score": 1.0, + "content": "Figure 2 – (a) Twins-SVT interleaves locally-grouped", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 304, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 304, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "attention (LSA) and global sub-sampled attention (GSA).", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 303, + 368, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 303, + 368, + 505, + 379 + ], + "score": 1.0, + "content": "(b) Schematic view of the locally-grouped attention", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 304, + 378, + 479, + 389 + ], + "spans": [ + { + "bbox": [ + 304, + 378, + 479, + 389 + ], + "score": 1.0, + "content": "(LSA) and global sub-sampled attention (GSA).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30.5 + } + ], + "index": 27.25 + }, + { + "type": "text", + "bbox": [ + 108, + 392, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 160, + 404 + ], + "score": 1.0, + "content": "computed as", + "type": "text" + }, + { + "bbox": [ + 160, + 391, + 219, + 403 + ], + "score": 0.88, + "content": "\\mathcal { O } ( k _ { 1 } k _ { 2 } H W d )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 390, + 395, + 404 + ], + "score": 1.0, + "content": ", which is significantly more efficient when", + "type": "text" + }, + { + "bbox": [ + 396, + 391, + 431, + 403 + ], + "score": 0.91, + "content": "k _ { 1 } \\ll H", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 390, + 449, + 404 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 391, + 487, + 403 + ], + "score": 0.91, + "content": "k _ { 2 } \\ll W", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 390, + 505, + 404 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 402, + 298, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 186, + 415 + ], + "score": 1.0, + "content": "grows linearly with", + "type": "text" + }, + { + "bbox": [ + 186, + 403, + 207, + 413 + ], + "score": 0.66, + "content": "H W", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 402, + 217, + 415 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 217, + 403, + 228, + 414 + ], + "score": 0.87, + "content": "k _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 402, + 246, + 415 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 246, + 403, + 257, + 414 + ], + "score": 0.88, + "content": "k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 402, + 298, + 415 + ], + "score": 1.0, + "content": "are fixed.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.0, + "bbox_fs": [ + 106, + 390, + 505, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 505, + 484 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "Although the locally-grouped self-attention mechanism is computation friendly, the image is divided", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 430, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 442 + ], + "score": 1.0, + "content": "into non-overlapping sub-windows. Thus, we need a mechanism to communicate between different", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "sub-windows, as in Swin. Otherwise, the information would be limited to be processed locally,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 452, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 506, + 463 + ], + "score": 1.0, + "content": "which makes the receptive field small and significantly degrades the performance as shown in our", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "experiments. This resembles the fact that we cannot replace all standard convolutions by depth-wise", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 474, + 200, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 200, + 485 + ], + "score": 1.0, + "content": "convolutions in CNNs.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 419, + 506, + 485 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 505, + 542 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 507, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 507, + 522 + ], + "score": 1.0, + "content": "Global sub-sampled attention (GSA). A simple solution is to add extra standard global self-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 519, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 507, + 532 + ], + "score": 1.0, + "content": "attention layers after each local attention block, which can enable cross-group information exchange.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 530, + 453, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 399, + 543 + ], + "score": 1.0, + "content": "However, this approach would come with the computation complexity of", + "type": "text" + }, + { + "bbox": [ + 400, + 530, + 449, + 542 + ], + "score": 0.92, + "content": "\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 530, + 453, + 543 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 508, + 507, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 547, + 506, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 504, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 474, + 560 + ], + "score": 1.0, + "content": "Here, we use a single representative to summarize the important information for each of", + "type": "text" + }, + { + "bbox": [ + 475, + 548, + 504, + 558 + ], + "score": 0.88, + "content": "m \\times n", + "type": "inline_equation" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 506, + 570 + ], + "score": 1.0, + "content": "sub-windows and the representative is used to communicate with other sub-windows (serving as the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 568, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 366, + 583 + ], + "score": 1.0, + "content": "key in self-attention), which can dramatically reduce the cost to", + "type": "text" + }, + { + "bbox": [ + 367, + 569, + 480, + 585 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { O } ( m n H W d ) = \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 568, + 481, + 583 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 483, + 571, + 505, + 582 + ], + "score": 1.0, + "content": "This", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 582, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 104, + 582, + 506, + 597 + ], + "score": 1.0, + "content": "is essentially equivalent to using the sub-sampled feature maps as the key in attention operations,", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "and thus we term it global sub-sampled attention (GSA). If we alternatively use the aforementioned", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 332, + 619 + ], + "score": 1.0, + "content": "LSA and GSA like separable convolutions (depth-wise", + "type": "text" + }, + { + "bbox": [ + 332, + 606, + 340, + 615 + ], + "score": 0.75, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "point-wise). The total computation cost√", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 614, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 117, + 635 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 616, + 219, + 632 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } \\bar { H } W d ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 614, + 265, + 635 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + }, + { + "bbox": [ + 265, + 617, + 428, + 632 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } H W d \\geq 2 H W d \\sqrt { H W } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 614, + 506, + 635 + ], + "score": 1.0, + "content": ". The minimum is", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 168, + 645 + ], + "score": 1.0, + "content": "obtained when", + "type": "text" + }, + { + "bbox": [ + 168, + 631, + 237, + 644 + ], + "score": 0.92, + "content": "\\boldsymbol { k } _ { 1 } \\cdot \\boldsymbol { k } _ { 2 } = \\sqrt { H W }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 632, + 295, + 645 + ], + "score": 1.0, + "content": ". We note that", + "type": "text" + }, + { + "bbox": [ + 295, + 633, + 358, + 643 + ], + "score": 0.88, + "content": "H = W = 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "is popular in classification. Without", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 321, + 658 + ], + "score": 1.0, + "content": "loss of generality, we use square sub-windows, i.e.,", + "type": "text" + }, + { + "bbox": [ + 321, + 644, + 357, + 655 + ], + "score": 0.91, + "content": "k _ { 1 } = k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 644, + 409, + 658 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 409, + 644, + 470, + 655 + ], + "score": 0.91, + "content": "k _ { 1 } = k _ { 2 } = 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "is close", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 218, + 666 + ], + "score": 1.0, + "content": "to the global minimum for", + "type": "text" + }, + { + "bbox": [ + 218, + 655, + 282, + 665 + ], + "score": 0.9, + "content": "H = W = 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 655, + 505, + 666 + ], + "score": 1.0, + "content": ". However, our network is designed to include several", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 344, + 677 + ], + "score": 1.0, + "content": "stages with variable resolutions. Stage 1 has feature maps of", + "type": "text" + }, + { + "bbox": [ + 345, + 666, + 378, + 676 + ], + "score": 0.9, + "content": "5 6 \\times 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 666, + 505, + 677 + ], + "score": 1.0, + "content": ", the minimum is obtained when", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 192, + 689 + ], + "score": 0.93, + "content": "k _ { 1 } \\stackrel { \\cdot } { = } k _ { 2 } = \\sqrt { 5 6 } \\approx 7 .", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 678, + 355, + 690 + ], + "score": 1.0, + "content": "Theoretically, we can calibrate optimal", + "type": "text" + }, + { + "bbox": [ + 355, + 678, + 366, + 689 + ], + "score": 0.88, + "content": "k _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 678, + 384, + 690 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 385, + 678, + 396, + 689 + ], + "score": 0.88, + "content": "k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "for each of the stages. For", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 182, + 701 + ], + "score": 1.0, + "content": "simplicity, we use", + "type": "text" + }, + { + "bbox": [ + 183, + 689, + 237, + 700 + ], + "score": 0.92, + "content": "k _ { 1 } = k _ { 2 } = 7", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "everywhere. As for stages with lower resolutions, we control the", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 713 + ], + "score": 1.0, + "content": "summarizing window-size of GSA to avoid too small amount of generated keys. Specifically, we use", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 710, + 338, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 338, + 724 + ], + "score": 1.0, + "content": "the size of 4, 2 and 1 for the last three stages respectively.", + "type": "text" + } + ], + "index": 58 + } + ], + "index": 51, + "bbox_fs": [ + 104, + 546, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 72, + 504, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "As for the sub-sampling function, we investigate several options including average pooling, depth-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "wise strided convolutions, and regular strided convolutions. Empirical results show that regular", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "strided convolutions perform best here. Formally, our spatially separable self-attention (SSSA) can", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 105, + 160, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 160, + 117 + ], + "score": 1.0, + "content": "be written as", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 118, + 392, + 201 + ], + "lines": [ + { + "bbox": [ + 218, + 118, + 392, + 201 + ], + "spans": [ + { + "bbox": [ + 218, + 118, + 392, + 201 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\hat { \\mathbf { z } } _ { i j } ^ { l } = \\mathrm { L S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } _ { i j } ^ { l - 1 } \\right) \\right) + \\mathbf { z } _ { i j } ^ { l - 1 } , } \\\\ & { \\mathbf { z } _ { i j } ^ { l } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } _ { i j } ^ { l } \\right) \\right) + \\hat { \\mathbf { z } } _ { i j } ^ { l } , } \\\\ & { \\hat { \\mathbf { z } } ^ { l + 1 } = \\mathrm { G S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } ^ { l } \\right) \\right) + \\mathbf { z } ^ { l } , } \\\\ & { \\mathbf { z } ^ { l + 1 } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } ^ { l + 1 } \\right) \\right) + \\hat { \\mathbf { z } } ^ { l + 1 } , } \\\\ & { i \\in \\{ 1 , 2 , . . . . , m \\} , j \\in \\{ 1 , 2 , . . . . , n \\} } \\end{array}", + "type": "interline_equation", + "image_path": "bddfa318edf97b22ee268dd2b1545378d8b37ce65697eafa1680774021feac8e.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 118, + 392, + 131.83333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 218, + 131.83333333333334, + 392, + 145.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 218, + 145.66666666666669, + 392, + 159.50000000000003 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 218, + 159.50000000000003, + 392, + 173.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 218, + 173.33333333333337, + 392, + 187.1666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 218, + 187.1666666666667, + 392, + 201.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "score": 1.0, + "content": "where LSA means locally-grouped self-attention within a sub-window; GSA is the global sub-sampled", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "attention by interacting with the representative keys (generated by the sub-sampling functions) from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 181, + 254 + ], + "score": 1.0, + "content": "each sub-window", + "type": "text" + }, + { + "bbox": [ + 181, + 240, + 252, + 253 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { z } } _ { i j } \\mathbf { \\bar { \\Psi } } \\in \\mathcal { R } ^ { k _ { 1 } \\times k _ { 2 } \\times \\mathbf { \\bar { C } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 239, + 506, + 254 + ], + "score": 1.0, + "content": ". Both LSA and GSA have multiple heads as in the standard", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 445, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 445, + 265 + ], + "score": 1.0, + "content": "self-attention.The PyTorch code of LSA is given in Algorithm 1 (in supplementary).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 105, + 268, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 504, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 504, + 281 + ], + "score": 1.0, + "content": "Again, we use the PEG of CPVT [9] to encode position information and process variable-length", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 362, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 362, + 293 + ], + "score": 1.0, + "content": "inputs on the fly. It is inserted after the first block in each stage.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "Model variants. The detailed configure of Twins-SVT is shown in Table 3 (in supplementary). We", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "try our best to use the similar settings as in Swin [4] to make sure that the good performance is due to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 210, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 210, + 330 + ], + "score": 1.0, + "content": "the new design paradigm.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 108, + 333, + 503, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "Comparison with PVT. PVT entirely utilizes global attentions as DeiT does while our method", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 456, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 456, + 357 + ], + "score": 1.0, + "content": "makes use of spatial separable-like design with LSA and GSA, which is more efficient.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "Comparison with Swin. Swin utilizes the alternation of local window based attention where the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 370, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 387 + ], + "score": 1.0, + "content": "window partitions in successive layers are shifted. This is used to introduce communication among", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 384, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 395 + ], + "score": 1.0, + "content": "different patches and to increase the receptive field. However, this procedure is relatively complicated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "and may not be optimized for speed on devices such as mobile devices. Swin Transformer depends on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "torch.roll() to perform cyclic shift and its reverse on features. This operation is memory unfriendly and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "rarely supported by popular inference frameworks such as NVIDIA TensorRT, Google Tensorflow-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "Lite, and Snapdragon Neural Processing Engine SDK (SNPE), etc. This hinders the deployment of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "Swin either on the server-side or on end devices in a production environment. In contrast, Twins", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 449, + 504, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 504, + 460 + ], + "score": 1.0, + "content": "models don’t require such an operation and only involve matrix multiplications that are already", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "score": 1.0, + "content": "optimized well in modern deep learning frameworks. Therefore, it can further benefit from the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "optimization in a production environment. For example, we converted Twins-SVT-S from PyTorch", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 480, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 297, + 494 + ], + "score": 1.0, + "content": "to TensorRT , and its throughput is boosted by", + "type": "text" + }, + { + "bbox": [ + 297, + 481, + 318, + 492 + ], + "score": 0.86, + "content": "1 . 7 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 480, + 506, + 494 + ], + "score": 1.0, + "content": ". Moreover, our local-global design can better", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 492, + 465, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 465, + 505 + ], + "score": 1.0, + "content": "exploit the global context, which is known to play an important role in many vision tasks.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "Finally, one may note that the network configures (e.g., such as depths, hidden dimensions, number", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "of heads, and the expansion ratio of MLP) of our two variants are sightly different. This is intended", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "because we want to make fair comparisons to the two recent well-known transformers PVT and Swin.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "PVT prefers a slimmer and deeper design while Swin is wider and shallower. This difference makes", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "PVT have slower training than Swin. Twins-PCPVT is designed to compare with PVT and shows", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "that a proper positional encoding design can greatly boost the performance and make it on par with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "recent state-of-the-art models like Swin. On the other hand, Twins-SVT demonstrates the potential of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "a new paradigm as to spatially separable self-attention is highly competitive to recent transformers.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 107, + 611, + 191, + 625 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 193, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 193, + 628 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 260, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 262, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 262, + 649 + ], + "score": 1.0, + "content": "4.1 Classification on ImageNet-1K", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "We first present the ImageNet classification results with our proposed models. We carefully control", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "the experiment settings to make fair comparisons against recent works [2, 8, 9]. All our models are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "trained for 300 epochs with a batch size of 1024 using the AdamW optimizer [37]. The learning rate", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "is initialized to be 0.001 and decayed to zero within 300 epochs following the cosine strategy. We use", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "a linear warm-up in the first five epochs and the same regularization setting as in [2]. Note that we", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "do not utilize extra tricks in [26, 28] to make fair comparisons although it may further improve the", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 308, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 740, + 309, + 753 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 72, + 504, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "spans": [ + { + "bbox": [ + 106, + 72, + 505, + 86 + ], + "score": 1.0, + "content": "As for the sub-sampling function, we investigate several options including average pooling, depth-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "wise strided convolutions, and regular strided convolutions. Empirical results show that regular", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "strided convolutions perform best here. Formally, our spatially separable self-attention (SSSA) can", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 105, + 160, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 160, + 117 + ], + "score": 1.0, + "content": "be written as", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 72, + 505, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 118, + 392, + 201 + ], + "lines": [ + { + "bbox": [ + 218, + 118, + 392, + 201 + ], + "spans": [ + { + "bbox": [ + 218, + 118, + 392, + 201 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\hat { \\mathbf { z } } _ { i j } ^ { l } = \\mathrm { L S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } _ { i j } ^ { l - 1 } \\right) \\right) + \\mathbf { z } _ { i j } ^ { l - 1 } , } \\\\ & { \\mathbf { z } _ { i j } ^ { l } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } _ { i j } ^ { l } \\right) \\right) + \\hat { \\mathbf { z } } _ { i j } ^ { l } , } \\\\ & { \\hat { \\mathbf { z } } ^ { l + 1 } = \\mathrm { G S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } ^ { l } \\right) \\right) + \\mathbf { z } ^ { l } , } \\\\ & { \\mathbf { z } ^ { l + 1 } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } ^ { l + 1 } \\right) \\right) + \\hat { \\mathbf { z } } ^ { l + 1 } , } \\\\ & { i \\in \\{ 1 , 2 , . . . . , m \\} , j \\in \\{ 1 , 2 , . . . . , n \\} } \\end{array}", + "type": "interline_equation", + "image_path": "bddfa318edf97b22ee268dd2b1545378d8b37ce65697eafa1680774021feac8e.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 118, + 392, + 131.83333333333334 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 218, + 131.83333333333334, + 392, + 145.66666666666669 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 218, + 145.66666666666669, + 392, + 159.50000000000003 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 218, + 159.50000000000003, + 392, + 173.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 218, + 173.33333333333337, + 392, + 187.1666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 218, + 187.1666666666667, + 392, + 201.00000000000006 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 219, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 231 + ], + "score": 1.0, + "content": "where LSA means locally-grouped self-attention within a sub-window; GSA is the global sub-sampled", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "attention by interacting with the representative keys (generated by the sub-sampling functions) from", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 239, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 181, + 254 + ], + "score": 1.0, + "content": "each sub-window", + "type": "text" + }, + { + "bbox": [ + 181, + 240, + 252, + 253 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { z } } _ { i j } \\mathbf { \\bar { \\Psi } } \\in \\mathcal { R } ^ { k _ { 1 } \\times k _ { 2 } \\times \\mathbf { \\bar { C } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 239, + 506, + 254 + ], + "score": 1.0, + "content": ". Both LSA and GSA have multiple heads as in the standard", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 445, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 445, + 265 + ], + "score": 1.0, + "content": "self-attention.The PyTorch code of LSA is given in Algorithm 1 (in supplementary).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 219, + 506, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 268, + 504, + 290 + ], + "lines": [ + { + "bbox": [ + 106, + 268, + 504, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 504, + 281 + ], + "score": 1.0, + "content": "Again, we use the PEG of CPVT [9] to encode position information and process variable-length", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 362, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 362, + 293 + ], + "score": 1.0, + "content": "inputs on the fly. It is inserted after the first block in each stage.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 268, + 504, + 293 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 295, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "Model variants. The detailed configure of Twins-SVT is shown in Table 3 (in supplementary). We", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 318 + ], + "score": 1.0, + "content": "try our best to use the similar settings as in Swin [4] to make sure that the good performance is due to", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 210, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 210, + 330 + ], + "score": 1.0, + "content": "the new design paradigm.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 294, + 505, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 333, + 503, + 356 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "Comparison with PVT. PVT entirely utilizes global attentions as DeiT does while our method", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 345, + 456, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 456, + 357 + ], + "score": 1.0, + "content": "makes use of spatial separable-like design with LSA and GSA, which is more efficient.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 334, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 505, + 373 + ], + "score": 1.0, + "content": "Comparison with Swin. Swin utilizes the alternation of local window based attention where the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 370, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 387 + ], + "score": 1.0, + "content": "window partitions in successive layers are shifted. This is used to introduce communication among", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 384, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 505, + 395 + ], + "score": 1.0, + "content": "different patches and to increase the receptive field. However, this procedure is relatively complicated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "and may not be optimized for speed on devices such as mobile devices. Swin Transformer depends on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 106, + 404, + 505, + 417 + ], + "score": 1.0, + "content": "torch.roll() to perform cyclic shift and its reverse on features. This operation is memory unfriendly and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 506, + 428 + ], + "score": 1.0, + "content": "rarely supported by popular inference frameworks such as NVIDIA TensorRT, Google Tensorflow-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 426, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 439 + ], + "score": 1.0, + "content": "Lite, and Snapdragon Neural Processing Engine SDK (SNPE), etc. This hinders the deployment of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 505, + 450 + ], + "score": 1.0, + "content": "Swin either on the server-side or on end devices in a production environment. In contrast, Twins", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 449, + 504, + 460 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 504, + 460 + ], + "score": 1.0, + "content": "models don’t require such an operation and only involve matrix multiplications that are already", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 471 + ], + "score": 1.0, + "content": "optimized well in modern deep learning frameworks. Therefore, it can further benefit from the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "optimization in a production environment. For example, we converted Twins-SVT-S from PyTorch", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 480, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 297, + 494 + ], + "score": 1.0, + "content": "to TensorRT , and its throughput is boosted by", + "type": "text" + }, + { + "bbox": [ + 297, + 481, + 318, + 492 + ], + "score": 0.86, + "content": "1 . 7 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 480, + 506, + 494 + ], + "score": 1.0, + "content": ". Moreover, our local-global design can better", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 492, + 465, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 465, + 505 + ], + "score": 1.0, + "content": "exploit the global context, which is known to play an important role in many vision tasks.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 361, + 506, + 505 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 508, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 506, + 521 + ], + "score": 1.0, + "content": "Finally, one may note that the network configures (e.g., such as depths, hidden dimensions, number", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 531 + ], + "score": 1.0, + "content": "of heads, and the expansion ratio of MLP) of our two variants are sightly different. This is intended", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 530, + 506, + 542 + ], + "score": 1.0, + "content": "because we want to make fair comparisons to the two recent well-known transformers PVT and Swin.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "PVT prefers a slimmer and deeper design while Swin is wider and shallower. This difference makes", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 505, + 564 + ], + "score": 1.0, + "content": "PVT have slower training than Swin. Twins-PCPVT is designed to compare with PVT and shows", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 576 + ], + "score": 1.0, + "content": "that a proper positional encoding design can greatly boost the performance and make it on par with", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 506, + 586 + ], + "score": 1.0, + "content": "recent state-of-the-art models like Swin. On the other hand, Twins-SVT demonstrates the potential of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 585, + 504, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 504, + 597 + ], + "score": 1.0, + "content": "a new paradigm as to spatially separable self-attention is highly competitive to recent transformers.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 508, + 506, + 597 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 611, + 191, + 625 + ], + "lines": [ + { + "bbox": [ + 104, + 609, + 193, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 193, + 628 + ], + "score": 1.0, + "content": "4 Experiments", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "title", + "bbox": [ + 108, + 636, + 260, + 648 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 262, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 262, + 649 + ], + "score": 1.0, + "content": "4.1 Classification on ImageNet-1K", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "We first present the ImageNet classification results with our proposed models. We carefully control", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "the experiment settings to make fair comparisons against recent works [2, 8, 9]. All our models are", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "trained for 300 epochs with a batch size of 1024 using the AdamW optimizer [37]. The learning rate", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "is initialized to be 0.001 and decayed to zero within 300 epochs following the cosine strategy. We use", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "a linear warm-up in the first five epochs and the same regularization setting as in [2]. Note that we", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "do not utilize extra tricks in [26, 28] to make fair comparisons although it may further improve the", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 506, + 85 + ], + "score": 1.0, + "content": "performance of our method. We use increasing stochastic depth [38] augmentation of 0.2, 0.3, 0.5 for", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 506, + 96 + ], + "score": 1.0, + "content": "small, base and large model respectively. Following Swin [4], we use gradient clipping with a max", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 95, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 505, + 108 + ], + "score": 1.0, + "content": "norm of 5.0 to stabilize the training process, which is especially important for the training of large", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 140, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 140, + 116 + ], + "score": 1.0, + "content": "models.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 655, + 506, + 723 + ] + } + ] + }, + { + "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": "performance of our method. We use increasing stochastic depth [38] augmentation of 0.2, 0.3, 0.5 for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 84, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 506, + 96 + ], + "score": 1.0, + "content": "small, base and large model respectively. Following Swin [4], we use gradient clipping with a max", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 95, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 505, + 108 + ], + "score": 1.0, + "content": "norm of 5.0 to stabilize the training process, which is especially important for the training of large", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 106, + 140, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 140, + 116 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "We report the classification results on ImageNet-1K [39] in Table 1. Twins-PCPVT-S outperforms", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 165, + 145 + ], + "score": 1.0, + "content": "PVT-small by", + "type": "text" + }, + { + "bbox": [ + 165, + 132, + 188, + 143 + ], + "score": 0.89, + "content": "1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 131, + 358, + 145 + ], + "score": 1.0, + "content": "and obtains similar result as Swin-T with", + "type": "text" + }, + { + "bbox": [ + 358, + 133, + 378, + 143 + ], + "score": 0.86, + "content": "18 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "fewer FLOPs. Twins-SVT-S is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 495, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 228, + 156 + ], + "score": 1.0, + "content": "better than Swin-T with about", + "type": "text" + }, + { + "bbox": [ + 228, + 144, + 248, + 154 + ], + "score": 0.87, + "content": "3 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 143, + 495, + 156 + ], + "score": 1.0, + "content": "fewer FLOPs. Other models demonstrate similar advantages.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 204 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "It is interesting to see that, without bells and whistles, Twins-PCPVT performs on par with the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 507, + 184 + ], + "score": 1.0, + "content": "recent state-of-the-art Swin, which is based on much more sophisticated designs as mentioned above.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "Moreover, Twins-SVT also achieves similar or better results, compared to Swin, indicating that the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 192, + 382, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 382, + 207 + ], + "score": 1.0, + "content": "spatial separable-like design is an effective and promising paradigm.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 108, + 209, + 504, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "One may challenge our improvements are due to the use of the better positional encoding PEG. Thus,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "we also replace the relative PE in Swin-T with PEG [9], but the Swin-T’s performance cannot be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 230, + 209, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 174, + 243 + ], + "score": 1.0, + "content": "improved (being", + "type": "text" + }, + { + "bbox": [ + 175, + 231, + 203, + 242 + ], + "score": 0.77, + "content": "8 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 230, + 209, + 243 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 109, + 258, + 284, + 270 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 286, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 286, + 272 + ], + "score": 1.0, + "content": "4.2 Semantic Segmentation on ADE20K", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "We further evaluate the performance on segmentation tasks. We test on the ADE20K dataset [42], a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "challenging scene parsing task for semantic segmentation, which is popularly evaluated by recent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "Transformer-based methods. This dataset contains 20K images for training and 2K images for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "validation. Following the common practices, we use the training set to train our models and report", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 322, + 452, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 452, + 337 + ], + "score": 1.0, + "content": "the mIoU on the validation set. All models are pretrained on the ImageNet-1k dataset.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 352 + ], + "score": 1.0, + "content": "Twins-PCPVT vs. PVT. We compare our Twins-PCPVT with PVT [8] because they have similar", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 362 + ], + "score": 1.0, + "content": "design and computational complexity. To make fair comparisons, we use the Semantic FPN framework", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "[43] and exactly the same training settings as in PVT. Specifically, we train 80K steps with a batch", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 378, + 386 + ], + "score": 1.0, + "content": "size of 16 using AdamW [37]. The learning rate is initialized as", + "type": "text" + }, + { + "bbox": [ + 378, + 372, + 413, + 383 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "and scheduled by the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "‘poly’ strategy with the power coefficient of 0.9. We apply the drop-path regularization of 0.2 for the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "backbone and weight decay 0.0005 for the whole network. Note that we use a stronger drop-path", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "regularization of 0.4 for the large model to avoid over-fitting. For Swin, we use their official code", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "and trained models. We report the results in Table 2. With comparable FLOPs, Twins-PCPVT-S", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 282, + 439 + ], + "score": 1.0, + "content": "outperforms PVT-Small with a large margin", + "type": "text" + }, + { + "bbox": [ + 282, + 427, + 311, + 438 + ], + "score": 0.84, + "content": "( + 4 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 427, + 483, + 439 + ], + "score": 1.0, + "content": "mIoU), which also surpasses ResNet-50 by", + "type": "text" + }, + { + "bbox": [ + 483, + 427, + 505, + 438 + ], + "score": 0.86, + "content": "7 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 483, + 451 + ], + "score": 1.0, + "content": "mIoU. It also outperforms Swin-T with a clear margin. Besides, Twins-PCPVT-B also achieves", + "type": "text" + }, + { + "bbox": [ + 483, + 438, + 505, + 449 + ], + "score": 0.85, + "content": "3 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 449, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 428, + 461 + ], + "score": 1.0, + "content": "higher mIoU than PVT-Medium, and Twins-PCPVT-L surpasses PVT-Large with", + "type": "text" + }, + { + "bbox": [ + 429, + 449, + 451, + 460 + ], + "score": 0.85, + "content": "4 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 449, + 506, + 461 + ], + "score": 1.0, + "content": "higher mIoU.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "Twins-SVT vs. Swin. We also compare our Twins-SVT with the recent state-of-the-art model", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "Swin [4]. With the Semantic FPN framework and the above settings, Twins-SVT-S achieves better", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 161, + 500 + ], + "score": 1.0, + "content": "performance", + "type": "text" + }, + { + "bbox": [ + 162, + 487, + 196, + 498 + ], + "score": 0.9, + "content": "( + 1 . 7 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "than Swin-T. Twins-SVT-B obtains comparable performance with Swin-S", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 278, + 510 + ], + "score": 1.0, + "content": "and Twins-SVT-L outperforms Swin-B by", + "type": "text" + }, + { + "bbox": [ + 279, + 498, + 301, + 509 + ], + "score": 0.85, + "content": "0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "mIoU (left columns in Table 2). In addition, Swin", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "evaluates its performance using the UperNet framework [44]. We transfer our method to this", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "framework and use exactly the same training settings as [4]. To be specific, we use the AdamW", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 529, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 238, + 545 + ], + "score": 1.0, + "content": "optimizer to train all models for", + "type": "text" + }, + { + "bbox": [ + 238, + 531, + 259, + 541 + ], + "score": 0.41, + "content": "1 6 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 529, + 506, + 545 + ], + "score": 1.0, + "content": "iterations with a global batch size of 16. The initial learning", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 132, + 554 + ], + "score": 1.0, + "content": "rate is", + "type": "text" + }, + { + "bbox": [ + 132, + 541, + 167, + 552 + ], + "score": 0.92, + "content": "6 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "and linearly decayed to zero. We also utilize warm-up during the first 1500 iterations.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "score": 1.0, + "content": "Moreover, we apply the drop-path regularization of 0.2 for the backbone and weight decay 0.01", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "for the whole network. We report the mIoU of both single scale and multi-scale testing (we use", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "scales from 0.5 to 1.75 with step 0.25) in the right columns of Table 2. Both with multi-scale", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 294, + 598 + ], + "score": 1.0, + "content": "testing, Twins-SVT-S outperforms Swin-T by", + "type": "text" + }, + { + "bbox": [ + 294, + 586, + 317, + 596 + ], + "score": 0.86, + "content": "1 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "mIoU. Moreover, Twins-SVT-L achieves new", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 596, + 507, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 189, + 609 + ], + "score": 1.0, + "content": "state of the art result", + "type": "text" + }, + { + "bbox": [ + 189, + 596, + 216, + 607 + ], + "score": 0.86, + "content": "5 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 596, + 456, + 609 + ], + "score": 1.0, + "content": "mIoU under comparable FLOPs and outperforms Swin-B by", + "type": "text" + }, + { + "bbox": [ + 456, + 596, + 478, + 607 + ], + "score": 0.84, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 596, + 507, + 609 + ], + "score": 1.0, + "content": "mIoU.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 606, + 374, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 374, + 620 + ], + "score": 1.0, + "content": "Twins-PCPVT also achieves comparable performance to Swin [4].", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 107, + 634, + 327, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 328, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 328, + 649 + ], + "score": 1.0, + "content": "4.3 Object Detection and Segmentation on COCO", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 656, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "We evaluate the performance of our method using two representative frameworks: RetinaNet [46]", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "and Mask RCNN [47]. Specifically, we use our transformer models to build the backbones of these", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "detectors. All the models are trained under the same setting as in [8]. Since PVT and Swin report", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "their results using different frameworks, we try to make fair comparison and build consistent settings", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 319, + 712 + ], + "score": 1.0, + "content": "for future methods. Specifically, we report standard", + "type": "text" + }, + { + "bbox": [ + 319, + 700, + 333, + 711 + ], + "score": 0.86, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "-schedule (12 epochs) detection results on", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "the COCO 2017 dataset [48] in Tables 3 and 4. As for the evaluation based on RetinaNet, we train", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 48.5 + } + ], + "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, + 117 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 72, + 506, + 116 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 122, + 504, + 155 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 505, + 134 + ], + "score": 1.0, + "content": "We report the classification results on ImageNet-1K [39] in Table 1. Twins-PCPVT-S outperforms", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 165, + 145 + ], + "score": 1.0, + "content": "PVT-small by", + "type": "text" + }, + { + "bbox": [ + 165, + 132, + 188, + 143 + ], + "score": 0.89, + "content": "1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 131, + 358, + 145 + ], + "score": 1.0, + "content": "and obtains similar result as Swin-T with", + "type": "text" + }, + { + "bbox": [ + 358, + 133, + 378, + 143 + ], + "score": 0.86, + "content": "18 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 131, + 506, + 145 + ], + "score": 1.0, + "content": "fewer FLOPs. Twins-SVT-S is", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 143, + 495, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 228, + 156 + ], + "score": 1.0, + "content": "better than Swin-T with about", + "type": "text" + }, + { + "bbox": [ + 228, + 144, + 248, + 154 + ], + "score": 0.87, + "content": "3 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 143, + 495, + 156 + ], + "score": 1.0, + "content": "fewer FLOPs. Other models demonstrate similar advantages.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 122, + 506, + 156 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 204 + ], + "lines": [ + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "It is interesting to see that, without bells and whistles, Twins-PCPVT performs on par with the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 507, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 507, + 184 + ], + "score": 1.0, + "content": "recent state-of-the-art Swin, which is based on much more sophisticated designs as mentioned above.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 505, + 194 + ], + "score": 1.0, + "content": "Moreover, Twins-SVT also achieves similar or better results, compared to Swin, indicating that the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 192, + 382, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 382, + 207 + ], + "score": 1.0, + "content": "spatial separable-like design is an effective and promising paradigm.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 160, + 507, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 209, + 504, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "One may challenge our improvements are due to the use of the better positional encoding PEG. Thus,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "we also replace the relative PE in Swin-T with PEG [9], but the Swin-T’s performance cannot be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 230, + 209, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 174, + 243 + ], + "score": 1.0, + "content": "improved (being", + "type": "text" + }, + { + "bbox": [ + 175, + 231, + 203, + 242 + ], + "score": 0.77, + "content": "8 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 230, + 209, + 243 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 106, + 208, + 506, + 243 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 258, + 284, + 270 + ], + "lines": [ + { + "bbox": [ + 106, + 257, + 286, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 286, + 272 + ], + "score": 1.0, + "content": "4.2 Semantic Segmentation on ADE20K", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 280, + 505, + 334 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "We further evaluate the performance on segmentation tasks. We test on the ADE20K dataset [42], a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "challenging scene parsing task for semantic segmentation, which is popularly evaluated by recent", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 505, + 315 + ], + "score": 1.0, + "content": "Transformer-based methods. This dataset contains 20K images for training and 2K images for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "validation. Following the common practices, we use the training set to train our models and report", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 322, + 452, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 452, + 337 + ], + "score": 1.0, + "content": "the mIoU on the validation set. All models are pretrained on the ImageNet-1k dataset.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 280, + 506, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 460 + ], + "lines": [ + { + "bbox": [ + 105, + 339, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 352 + ], + "score": 1.0, + "content": "Twins-PCPVT vs. PVT. We compare our Twins-PCPVT with PVT [8] because they have similar", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 362 + ], + "score": 1.0, + "content": "design and computational complexity. To make fair comparisons, we use the Semantic FPN framework", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 374 + ], + "score": 1.0, + "content": "[43] and exactly the same training settings as in PVT. Specifically, we train 80K steps with a batch", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 378, + 386 + ], + "score": 1.0, + "content": "size of 16 using AdamW [37]. The learning rate is initialized as", + "type": "text" + }, + { + "bbox": [ + 378, + 372, + 413, + 383 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "and scheduled by the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 383, + 506, + 396 + ], + "spans": [ + { + "bbox": [ + 104, + 383, + 506, + 396 + ], + "score": 1.0, + "content": "‘poly’ strategy with the power coefficient of 0.9. We apply the drop-path regularization of 0.2 for the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 505, + 407 + ], + "score": 1.0, + "content": "backbone and weight decay 0.0005 for the whole network. Note that we use a stronger drop-path", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "regularization of 0.4 for the large model to avoid over-fitting. For Swin, we use their official code", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "and trained models. We report the results in Table 2. With comparable FLOPs, Twins-PCPVT-S", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 282, + 439 + ], + "score": 1.0, + "content": "outperforms PVT-Small with a large margin", + "type": "text" + }, + { + "bbox": [ + 282, + 427, + 311, + 438 + ], + "score": 0.84, + "content": "( + 4 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 427, + 483, + 439 + ], + "score": 1.0, + "content": "mIoU), which also surpasses ResNet-50 by", + "type": "text" + }, + { + "bbox": [ + 483, + 427, + 505, + 438 + ], + "score": 0.86, + "content": "7 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 483, + 451 + ], + "score": 1.0, + "content": "mIoU. It also outperforms Swin-T with a clear margin. Besides, Twins-PCPVT-B also achieves", + "type": "text" + }, + { + "bbox": [ + 483, + 438, + 505, + 449 + ], + "score": 0.85, + "content": "3 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 449, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 449, + 428, + 461 + ], + "score": 1.0, + "content": "higher mIoU than PVT-Medium, and Twins-PCPVT-L surpasses PVT-Large with", + "type": "text" + }, + { + "bbox": [ + 429, + 449, + 451, + 460 + ], + "score": 0.85, + "content": "4 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 449, + 506, + 461 + ], + "score": 1.0, + "content": "higher mIoU.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 339, + 506, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 465, + 505, + 618 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "Twins-SVT vs. Swin. We also compare our Twins-SVT with the recent state-of-the-art model", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "Swin [4]. With the Semantic FPN framework and the above settings, Twins-SVT-S achieves better", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 161, + 500 + ], + "score": 1.0, + "content": "performance", + "type": "text" + }, + { + "bbox": [ + 162, + 487, + 196, + 498 + ], + "score": 0.9, + "content": "( + 1 . 7 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "than Swin-T. Twins-SVT-B obtains comparable performance with Swin-S", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 278, + 510 + ], + "score": 1.0, + "content": "and Twins-SVT-L outperforms Swin-B by", + "type": "text" + }, + { + "bbox": [ + 279, + 498, + 301, + 509 + ], + "score": 0.85, + "content": "0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "mIoU (left columns in Table 2). In addition, Swin", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "evaluates its performance using the UperNet framework [44]. We transfer our method to this", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 532 + ], + "score": 1.0, + "content": "framework and use exactly the same training settings as [4]. To be specific, we use the AdamW", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 529, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 238, + 545 + ], + "score": 1.0, + "content": "optimizer to train all models for", + "type": "text" + }, + { + "bbox": [ + 238, + 531, + 259, + 541 + ], + "score": 0.41, + "content": "1 6 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 529, + 506, + 545 + ], + "score": 1.0, + "content": "iterations with a global batch size of 16. The initial learning", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 132, + 554 + ], + "score": 1.0, + "content": "rate is", + "type": "text" + }, + { + "bbox": [ + 132, + 541, + 167, + 552 + ], + "score": 0.92, + "content": "6 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "and linearly decayed to zero. We also utilize warm-up during the first 1500 iterations.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 506, + 566 + ], + "score": 1.0, + "content": "Moreover, we apply the drop-path regularization of 0.2 for the backbone and weight decay 0.01", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 576 + ], + "score": 1.0, + "content": "for the whole network. We report the mIoU of both single scale and multi-scale testing (we use", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "scales from 0.5 to 1.75 with step 0.25) in the right columns of Table 2. Both with multi-scale", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 294, + 598 + ], + "score": 1.0, + "content": "testing, Twins-SVT-S outperforms Swin-T by", + "type": "text" + }, + { + "bbox": [ + 294, + 586, + 317, + 596 + ], + "score": 0.86, + "content": "1 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "mIoU. Moreover, Twins-SVT-L achieves new", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 596, + 507, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 189, + 609 + ], + "score": 1.0, + "content": "state of the art result", + "type": "text" + }, + { + "bbox": [ + 189, + 596, + 216, + 607 + ], + "score": 0.86, + "content": "5 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 596, + 456, + 609 + ], + "score": 1.0, + "content": "mIoU under comparable FLOPs and outperforms Swin-B by", + "type": "text" + }, + { + "bbox": [ + 456, + 596, + 478, + 607 + ], + "score": 0.84, + "content": "0 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 596, + 507, + 609 + ], + "score": 1.0, + "content": "mIoU.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 606, + 374, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 374, + 620 + ], + "score": 1.0, + "content": "Twins-PCPVT also achieves comparable performance to Swin [4].", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 465, + 507, + 620 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 634, + 327, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 328, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 328, + 649 + ], + "score": 1.0, + "content": "4.3 Object Detection and Segmentation on COCO", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 656, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "We evaluate the performance of our method using two representative frameworks: RetinaNet [46]", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "and Mask RCNN [47]. Specifically, we use our transformer models to build the backbones of these", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "detectors. All the models are trained under the same setting as in [8]. Since PVT and Swin report", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 702 + ], + "score": 1.0, + "content": "their results using different frameworks, we try to make fair comparison and build consistent settings", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 319, + 712 + ], + "score": 1.0, + "content": "for future methods. Specifically, we report standard", + "type": "text" + }, + { + "bbox": [ + 319, + 700, + 333, + 711 + ], + "score": 0.86, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "-schedule (12 epochs) detection results on", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "the COCO 2017 dataset [48] in Tables 3 and 4. As for the evaluation based on RetinaNet, we train", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "all the models using AdamW [37] optimizer for 12 epochs with a batch size of 16. The initial", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 168, + 598 + ], + "score": 1.0, + "content": "learning rate is", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 168, + 585, + 202, + 596 + ], + "score": 0.91, + "content": "1 \\times 1 \\bar { 0 } ^ { - 4 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 203, + 583, + 408, + 598 + ], + "score": 1.0, + "content": ", started with 500-iteration warmup and decayed by", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 408, + 586, + 428, + 596 + ], + "score": 0.9, + "content": "1 0 \\times", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 428, + 583, + 506, + 598 + ], + "score": 1.0, + "content": "at the 8th and 11th", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "score": 1.0, + "content": "epoch, respectively. We use stochastic drop path regularization of 0.2 and weight decay 0.0001.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "The implementation is based on MMDetection [49]. For the Mask R-CNN framework, we use the", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 197, + 631 + ], + "score": 1.0, + "content": "initial learning rate of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 198, + 617, + 232, + 628 + ], + "score": 0.92, + "content": "2 \\times 1 0 ^ { - 4 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 233, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "as in [8]. All other hyper-parameters follow the default settings in", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 199, + 642 + ], + "score": 1.0, + "content": "MMDetection. As for", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 200, + 630, + 214, + 640 + ], + "score": 0.87, + "content": "3 \\times", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 214, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "experiments, we follow the common multi-scale training in [3, 4], i.e.,", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "score": 1.0, + "content": "randomly resizing the input image so that its shorter side is between 480 and 800 while keeping", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 268, + 664 + ], + "score": 1.0, + "content": "longer one less than 1333. Moreover, for", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 268, + 651, + 283, + 661 + ], + "score": 0.87, + "content": "3 \\times", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 283, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "training of Mask R-CNN, we use an initial learning rate", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 662, + 368, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 368, + 674 + ], + "score": 1.0, + "content": "of 0.0001 and weight decay of 0.05 for the whole network as [4].", + "type": "text", + "cross_page": true + } + ], + "index": 14 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 655, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 129, + 104, + 482, + 552 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 111, + 70, + 501, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "spans": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "score": 1.0, + "content": "Table 1 – Comparisons with state-of-the-art methods for ImageNet-1K classification. Throughput is tested on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 110, + 80, + 501, + 92 + ], + "spans": [ + { + "bbox": [ + 110, + 80, + 415, + 92 + ], + "score": 1.0, + "content": "the batch size of 192 on a single V100 GPU. All models are trained and evaluated on", + "type": "text" + }, + { + "bbox": [ + 415, + 81, + 451, + 90 + ], + "score": 0.9, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 80, + 501, + 92 + ], + "score": 1.0, + "content": "resolution on", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 109, + 89, + 329, + 103 + ], + "spans": [ + { + "bbox": [ + 109, + 89, + 329, + 103 + ], + "score": 1.0, + "content": "ImageNet-1K dataset. †: w/ CPVT’s position encodings [9].", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 129, + 104, + 482, + 552 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 104, + 482, + 552 + ], + "spans": [ + { + "bbox": [ + 129, + 104, + 482, + 552 + ], + "score": 0.984, + "html": "
MethodParam (M)FLOPs (G)Throughput (Images/s)Top-1 (%)
ConvNet
RegNetY-4G [40]214.0115780.0
RegNetY-8G [40]398.059281.7
RegNetY-16G [40]8416.033582.9
Transformer
DeiT-Small/16 [2]22.14.643779.9
CrossViT-S [30]26.75.6-81.0
T2T-ViT-14 [27]225.281.5
TNT-S [15]23.85.2=81.3
CoaTMini [17]106.880.8
CoaT-Lite Small [17]204.0-81.9
PVT-Small [8]24.53.882079.8
CPVT-Small-GAP [9]234.681781.5
Twins-PCPVT-S (ours)24.13.881581.2 (+1.3)
Swin-T[4]294.576681.3
Swin-T + CPVT†284.476681.2
Twins-SVT-S (ours)242.9105981.7 (+1.8)
T2T-ViT-19 [27]39.28.9181.9
PVT-Medium [8]44.26.752681.2
Twins-PCPVT-B(ours)43.86.752582.7 (+0.8)
Swin-S [4]508.744483.0
Twins-SVT-B (ours)568.646983.2 (+1.3)
ViT-Base/16 [1]86.617.68677.9
DeiT-Base/16 [2]86.617.629281.8
T2T-ViT-24[27]64.114.1182.3
Cross ViT-B [30]104.721.2182.2
TNT-B [15]6614.1=82.8
CPVT-B [9]8817.629282.3
PVT-Large [8]61.49.836781.7
Twins-PCPVT-L(ours)60.99.836783.1 (+5.2)
Swin-B [4]8815.427583.3
Twins-SVT-L (ours)99.215.128883.7( (+5.8)
Hybrid
BoTNet-S1-59 [29]33.57.381.7
BossNet-T1 [41]17.981.9
CvT-13 [31]204.581.6
BoTNet-S1-110 [29]54.710.982.8
CvT-21 [31]327.1=82.5
", + "type": "table", + "image_path": "d92a15b541421f68899831ff43016e6fd755bbea91818794de3f6a74170c3103.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 129, + 104, + 482, + 253.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 129, + 253.33333333333334, + 482, + 402.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 129, + 402.6666666666667, + 482, + 552.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "all the models using AdamW [37] optimizer for 12 epochs with a batch size of 16. The initial", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 168, + 598 + ], + "score": 1.0, + "content": "learning rate is", + "type": "text" + }, + { + "bbox": [ + 168, + 585, + 202, + 596 + ], + "score": 0.91, + "content": "1 \\times 1 \\bar { 0 } ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 583, + 408, + 598 + ], + "score": 1.0, + "content": ", started with 500-iteration warmup and decayed by", + "type": "text" + }, + { + "bbox": [ + 408, + 586, + 428, + 596 + ], + "score": 0.9, + "content": "1 0 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 583, + 506, + 598 + ], + "score": 1.0, + "content": "at the 8th and 11th", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 608 + ], + "score": 1.0, + "content": "epoch, respectively. We use stochastic drop path regularization of 0.2 and weight decay 0.0001.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 506, + 619 + ], + "score": 1.0, + "content": "The implementation is based on MMDetection [49]. For the Mask R-CNN framework, we use the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 197, + 631 + ], + "score": 1.0, + "content": "initial learning rate of", + "type": "text" + }, + { + "bbox": [ + 198, + 617, + 232, + 628 + ], + "score": 0.92, + "content": "2 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "as in [8]. All other hyper-parameters follow the default settings in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 628, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 199, + 642 + ], + "score": 1.0, + "content": "MMDetection. As for", + "type": "text" + }, + { + "bbox": [ + 200, + 630, + 214, + 640 + ], + "score": 0.87, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 628, + 506, + 642 + ], + "score": 1.0, + "content": "experiments, we follow the common multi-scale training in [3, 4], i.e.,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 638, + 506, + 654 + ], + "score": 1.0, + "content": "randomly resizing the input image so that its shorter side is between 480 and 800 while keeping", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 268, + 664 + ], + "score": 1.0, + "content": "longer one less than 1333. Moreover, for", + "type": "text" + }, + { + "bbox": [ + 268, + 651, + 283, + 661 + ], + "score": 0.87, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "training of Mask R-CNN, we use an initial learning rate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 662, + 368, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 368, + 674 + ], + "score": 1.0, + "content": "of 0.0001 and weight decay of 0.05 for the whole network as [4].", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 122, + 689 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 678, + 137, + 689 + ], + "score": 0.86, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 678, + 482, + 689 + ], + "score": 1.0, + "content": "schedule object detection with RetinaNet, Twins-PCPVT-S surpasses PVT-Small with", + "type": "text" + }, + { + "bbox": [ + 482, + 678, + 505, + 689 + ], + "score": 0.81, + "content": "2 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 331, + 701 + ], + "score": 1.0, + "content": "mAP and Twins-PCPVT-B exceeds PVT-Medium by", + "type": "text" + }, + { + "bbox": [ + 331, + 689, + 354, + 699 + ], + "score": 0.84, + "content": "2 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "mAP on the COCO val2017 split.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 271, + 712 + ], + "score": 1.0, + "content": "Twins-SVT-S outperforms Swin-T with", + "type": "text" + }, + { + "bbox": [ + 271, + 700, + 293, + 711 + ], + "score": 0.86, + "content": "1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 699, + 369, + 712 + ], + "score": 1.0, + "content": "mAP while using", + "type": "text" + }, + { + "bbox": [ + 370, + 700, + 389, + 711 + ], + "score": 0.85, + "content": "12 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "fewer FLOPs. Our method", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 711, + 367, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 298, + 723 + ], + "score": 1.0, + "content": "outperform the others with similar advantage in", + "type": "text" + }, + { + "bbox": [ + 298, + 711, + 313, + 721 + ], + "score": 0.86, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 711, + 367, + 723 + ], + "score": 1.0, + "content": "experiments.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 741, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 309, + 753 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 309, + 753 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 129, + 104, + 482, + 552 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 111, + 70, + 501, + 101 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "spans": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "score": 1.0, + "content": "Table 1 – Comparisons with state-of-the-art methods for ImageNet-1K classification. Throughput is tested on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 110, + 80, + 501, + 92 + ], + "spans": [ + { + "bbox": [ + 110, + 80, + 415, + 92 + ], + "score": 1.0, + "content": "the batch size of 192 on a single V100 GPU. All models are trained and evaluated on", + "type": "text" + }, + { + "bbox": [ + 415, + 81, + 451, + 90 + ], + "score": 0.9, + "content": "2 2 4 \\times 2 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 80, + 501, + 92 + ], + "score": 1.0, + "content": "resolution on", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 109, + 89, + 329, + 103 + ], + "spans": [ + { + "bbox": [ + 109, + 89, + 329, + 103 + ], + "score": 1.0, + "content": "ImageNet-1K dataset. †: w/ CPVT’s position encodings [9].", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 129, + 104, + 482, + 552 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 129, + 104, + 482, + 552 + ], + "spans": [ + { + "bbox": [ + 129, + 104, + 482, + 552 + ], + "score": 0.984, + "html": "
MethodParam (M)FLOPs (G)Throughput (Images/s)Top-1 (%)
ConvNet
RegNetY-4G [40]214.0115780.0
RegNetY-8G [40]398.059281.7
RegNetY-16G [40]8416.033582.9
Transformer
DeiT-Small/16 [2]22.14.643779.9
CrossViT-S [30]26.75.6-81.0
T2T-ViT-14 [27]225.281.5
TNT-S [15]23.85.2=81.3
CoaTMini [17]106.880.8
CoaT-Lite Small [17]204.0-81.9
PVT-Small [8]24.53.882079.8
CPVT-Small-GAP [9]234.681781.5
Twins-PCPVT-S (ours)24.13.881581.2 (+1.3)
Swin-T[4]294.576681.3
Swin-T + CPVT†284.476681.2
Twins-SVT-S (ours)242.9105981.7 (+1.8)
T2T-ViT-19 [27]39.28.9181.9
PVT-Medium [8]44.26.752681.2
Twins-PCPVT-B(ours)43.86.752582.7 (+0.8)
Swin-S [4]508.744483.0
Twins-SVT-B (ours)568.646983.2 (+1.3)
ViT-Base/16 [1]86.617.68677.9
DeiT-Base/16 [2]86.617.629281.8
T2T-ViT-24[27]64.114.1182.3
Cross ViT-B [30]104.721.2182.2
TNT-B [15]6614.1=82.8
CPVT-B [9]8817.629282.3
PVT-Large [8]61.49.836781.7
Twins-PCPVT-L(ours)60.99.836783.1 (+5.2)
Swin-B [4]8815.427583.3
Twins-SVT-L (ours)99.215.128883.7( (+5.8)
Hybrid
BoTNet-S1-59 [29]33.57.381.7
BossNet-T1 [41]17.981.9
CvT-13 [31]204.581.6
BoTNet-S1-110 [29]54.710.982.8
CvT-21 [31]327.1=82.5
", + "type": "table", + "image_path": "d92a15b541421f68899831ff43016e6fd755bbea91818794de3f6a74170c3103.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 129, + 104, + 482, + 253.33333333333334 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 129, + 253.33333333333334, + 482, + 402.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 129, + 402.6666666666667, + 482, + 552.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 673 + ], + "lines": [], + "index": 10, + "bbox_fs": [ + 104, + 574, + 506, + 674 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 122, + 689 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 123, + 678, + 137, + 689 + ], + "score": 0.86, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 678, + 482, + 689 + ], + "score": 1.0, + "content": "schedule object detection with RetinaNet, Twins-PCPVT-S surpasses PVT-Small with", + "type": "text" + }, + { + "bbox": [ + 482, + 678, + 505, + 689 + ], + "score": 0.81, + "content": "2 . 6 \\%", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 689, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 331, + 701 + ], + "score": 1.0, + "content": "mAP and Twins-PCPVT-B exceeds PVT-Medium by", + "type": "text" + }, + { + "bbox": [ + 331, + 689, + 354, + 699 + ], + "score": 0.84, + "content": "2 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 689, + 506, + 701 + ], + "score": 1.0, + "content": "mAP on the COCO val2017 split.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 271, + 712 + ], + "score": 1.0, + "content": "Twins-SVT-S outperforms Swin-T with", + "type": "text" + }, + { + "bbox": [ + 271, + 700, + 293, + 711 + ], + "score": 0.86, + "content": "1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 699, + 369, + 712 + ], + "score": 1.0, + "content": "mAP while using", + "type": "text" + }, + { + "bbox": [ + 370, + 700, + 389, + 711 + ], + "score": 0.85, + "content": "12 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "fewer FLOPs. Our method", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 711, + 367, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 298, + 723 + ], + "score": 1.0, + "content": "outperform the others with similar advantage in", + "type": "text" + }, + { + "bbox": [ + 298, + 711, + 313, + 721 + ], + "score": 0.86, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 711, + 367, + 723 + ], + "score": 1.0, + "content": "experiments.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 678, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 112, + 90, + 500, + 324 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 109, + 52, + 501, + 83 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 51, + 501, + 64 + ], + "spans": [ + { + "bbox": [ + 109, + 51, + 501, + 64 + ], + "score": 1.0, + "content": "Table 2 – Performance comparisons with different backbones on ADE20K validation dataset. FLOPs are", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 110, + 63, + 501, + 73 + ], + "spans": [ + { + "bbox": [ + 110, + 63, + 145, + 73 + ], + "score": 1.0, + "content": "tested on", + "type": "text" + }, + { + "bbox": [ + 146, + 63, + 182, + 72 + ], + "score": 0.88, + "content": "5 1 2 \\times 5 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 63, + 501, + 73 + ], + "score": 1.0, + "content": "resolution. All backbones are pretrained on ImageNet-1k except SETR [45], which is", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 109, + 73, + 244, + 84 + ], + "spans": [ + { + "bbox": [ + 109, + 73, + 244, + 84 + ], + "score": 1.0, + "content": "pretrained on ImageNet-21k dataset.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 112, + 90, + 500, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 90, + 500, + 324 + ], + "spans": [ + { + "bbox": [ + 112, + 90, + 500, + 324 + ], + "score": 0.986, + "html": "
BackboneSemantic FPN 80k (PVT [8] setting)Upernet 160k (Swin [4] setting)
FLOPs (G)Param (M)mIoU (%)FLOPs (G)Param (M)mIoU/MS mIoU (%)
ResNet50 [10]4528.536.71
PVT-Small [8]4028.239.81-=
Twins-PCPVT-S (ours)4028.444.3 (+7.6)23454.646.2/47.5
Swin-T[4]4631.941.523759.944.5/45.8
Twins-SVT-S (ours)3728.343.2( (+6.5)22854.446.2/47.1
ResNet101 [10]6647.538.825886-/44.9
PVT-Medium [8]5548.041.6=1
Twins-PCPVT-B (ours)5548.144.9 (+6.1)25074.347.1/48.4
Swin-S [4]7053.245.226181.347.6/49.5
Twins-SVT-B (ours)6760.445.3 (+6.5)26188.547.7/48.9
ResNetXt101-64×4d [13]186.440.211=
PVT-Large [8]7165.142.1---
Twins-PCPVT-L (ours)7165.346.4 (+6.2)26991.548.6/49.8
Swin-B [4]10791.246.029912148.1/49.7
Twins-SVT-L (ours)102103.746.7 (+6.5)29713348.8/50.2
BackbonePUP (SETR [45] setting)MLA (SETR [45] setting)
T-Large (SETR) [45]-31050.1130848.6/50.3
", + "type": "table", + "image_path": "2090e3b08689b3dbb0e79e4396b2b0d0a3196a1511e7397d8691b778b1a46777.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 112, + 90, + 500, + 168.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 112, + 168.0, + 500, + 246.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 112, + 246.0, + 500, + 324.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 505, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 124, + 357 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 124, + 345, + 138, + 356 + ], + "score": 0.85, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "object segmentation with the Mask R-CNN framework, Twins-PCPVT-S brings similar", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 355, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 169, + 369 + ], + "score": 1.0, + "content": "improvements", + "type": "text" + }, + { + "bbox": [ + 170, + 356, + 200, + 367 + ], + "score": 0.69, + "content": "( + 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 355, + 506, + 369 + ], + "score": 1.0, + "content": "mAP) over PVT-Small. Compared with PVT-Medium, Twins-PCPVT-B", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 137, + 379 + ], + "score": 1.0, + "content": "obtains", + "type": "text" + }, + { + "bbox": [ + 137, + 367, + 159, + 378 + ], + "score": 0.88, + "content": "2 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "higher mAP, which is also on par with that of Swin. Both Twins-SVT-S and Twins-SVT-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "score": 1.0, + "content": "B achieve better or slightly better performance compared to the counterparts of Swin. As for large", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "models, our results are shown in Table 1 (in supplementary) and we also achieve better performance", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 399, + 209, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 209, + 412 + ], + "score": 1.0, + "content": "with comparable FLOPs.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "table", + "bbox": [ + 106, + 450, + 515, + 603 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 422, + 500, + 443 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 422, + 502, + 434 + ], + "spans": [ + { + "bbox": [ + 109, + 422, + 478, + 434 + ], + "score": 1.0, + "content": "Table 3 – Object detection performance on the COCO val2017 split using the RetinaNet framework.", + "type": "text" + }, + { + "bbox": [ + 479, + 423, + 492, + 432 + ], + "score": 0.83, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 422, + 502, + 434 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 109, + 432, + 493, + 445 + ], + "spans": [ + { + "bbox": [ + 109, + 432, + 163, + 445 + ], + "score": 1.0, + "content": "12 epochs and", + "type": "text" + }, + { + "bbox": [ + 163, + 433, + 176, + 442 + ], + "score": 0.86, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 432, + 416, + 445 + ], + "score": 1.0, + "content": "is 36 epochs. “MS”: Multi-scale training. FLOPs are evaluated on", + "type": "text" + }, + { + "bbox": [ + 416, + 433, + 452, + 442 + ], + "score": 0.89, + "content": "8 0 0 \\times 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 432, + 493, + 445 + ], + "score": 1.0, + "content": "resolution.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 450, + 515, + 603 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 450, + 515, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 515, + 603 + ], + "score": 0.984, + "html": "
BackboneFLOPsParaml (G)(M)RetinaNet1×RetinaNet 3× +MS
|APAP50 AP75 APs APm APL|AP AP50 AP75APs APm APL
ResNet50 [10]11137.7 36.355.3 38.6 19.3 40.0 48.8|39.058.4 41.8 22.4 42.8 51.6
PVT-Small [8]11834.261.3 43.0 25.0 42.9 55.762.7 45.0 26.2 45.2 57.2
Twins-PCPVT-S (ours)11834.443.0(+6.7) 64.1 46.0 27.5 46.3 57.345.2(+6.2) 66.5 48.6 30.0 48.8 58.9
Swin-T[4]11838.562.1 44.2 25.1 44.9 55.543.9 64.8 47.1 28.4 47.2 57.8
Twins-SVT-S (ours)10434.343.0(+6.7) 64.2 46.3 28.0 46.4 57.545.6(+6.6) 67.1 48.6 29.8 49.3 60.0
ResNet101[10]14956.757.8 41.2 21.4 42.6 51.160.1 44.0 23.7 45.0 53.8
ResNeXt101-32×4d[13]15156.459.642.7 22.344.2 52.561.0 44.3 23.9 45.5 53.7
PVT-Medium [8]15153.963.1 44.3 25.0 44.9 57.6463.8 46.1 27.3 46.3 58.9
Twins-PCPVT-B (ours)15154.141.9 44.3(+5.8) ) 65.6 47.3 27.9 47.9 59.6443.2 46.4(+5.5) 67.7 49.8 31.3 50.2 61.4 46.3
Swin-S [4]16259.844.5 65.7 47.5 27.4 48.0 59.967.4 49.8 31.1 50.3 60.9
Twins-SVT-B (ours)16367.045.3(+6.8) 66.7 48.1 28.5 48.9 60.646.9(+6.0)68.0 50.2 31.7 50.3 61.8
", + "type": "table", + "image_path": "1693844a418953357be1c2a663ddc5b919a3ef3b16aaa01c0dff462d187c3424.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 106, + 450, + 515, + 501.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 501.0, + 515, + 552.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 552.0, + 515, + 603.0 + ], + "spans": [], + "index": 16 + } + ] + } + ], + "index": 13.75 + }, + { + "type": "title", + "bbox": [ + 107, + 624, + 201, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 203, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 203, + 637 + ], + "score": 1.0, + "content": "4.4 Ablation Studies", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 239, + 722 + ], + "lines": [ + { + "bbox": [ + 107, + 645, + 240, + 656 + ], + "spans": [ + { + "bbox": [ + 107, + 645, + 240, + 656 + ], + "score": 1.0, + "content": "Configurations of LSA and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 655, + 241, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 241, + 667 + ], + "score": 1.0, + "content": "GSA blocks. We evaluate dif-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 667, + 240, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 240, + 678 + ], + "score": 1.0, + "content": "ferent combinations of LSA and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 678, + 240, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 240, + 689 + ], + "score": 1.0, + "content": "GSA based on our small model", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 689, + 240, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 240, + 699 + ], + "score": 1.0, + "content": "and present the ablation results in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 699, + 240, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 240, + 712 + ], + "score": 1.0, + "content": "Table 5. The models with only", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 711, + 240, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 240, + 722 + ], + "score": 1.0, + "content": "locally-grouped attention fail to", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "table", + "bbox": [ + 265, + 646, + 487, + 735 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 246, + 622, + 504, + 643 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 247, + 622, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 247, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "Table 5 – Classification performance for different combinations of LSA", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 246, + 632, + 433, + 643 + ], + "spans": [ + { + "bbox": [ + 246, + 632, + 433, + 643 + ], + "score": 1.0, + "content": "(L) and GSA (G) blocks based on the small model.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "table_body", + "bbox": [ + 265, + 646, + 487, + 735 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 265, + 646, + 487, + 735 + ], + "spans": [ + { + "bbox": [ + 265, + 646, + 487, + 735 + ], + "score": 0.977, + "html": "
Function TypeParams (M)FLOPs (G)Top-1 (%)
(L,L,L)8.82.276.9
(L, LLG, LLG, G)23.52.881.5
(L, LG, LG, G)24.12.881.7
(L,L,L, G)22.22.980.5
PVT-small(G, G, G, G) [8]24.53.879.8
", + "type": "table", + "image_path": "c4e824e4289539c1e56a37c1b1ca1423bcc62c4601b2f76cb8ae6ec3b41e8364.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 265, + 646, + 487, + 658.7142857142857 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 265, + 658.7142857142857, + 487, + 671.4285714285713 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 265, + 671.4285714285713, + 487, + 684.142857142857 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 265, + 684.142857142857, + 487, + 696.8571428571427 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 265, + 696.8571428571427, + 487, + 709.5714285714283 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 265, + 709.5714285714283, + 487, + 722.285714285714 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 265, + 722.285714285714, + 487, + 734.9999999999997 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 24.25 + } + ], + "page_idx": 7, + "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": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 112, + 90, + 500, + 324 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 109, + 52, + 501, + 83 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 51, + 501, + 64 + ], + "spans": [ + { + "bbox": [ + 109, + 51, + 501, + 64 + ], + "score": 1.0, + "content": "Table 2 – Performance comparisons with different backbones on ADE20K validation dataset. FLOPs are", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 110, + 63, + 501, + 73 + ], + "spans": [ + { + "bbox": [ + 110, + 63, + 145, + 73 + ], + "score": 1.0, + "content": "tested on", + "type": "text" + }, + { + "bbox": [ + 146, + 63, + 182, + 72 + ], + "score": 0.88, + "content": "5 1 2 \\times 5 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 63, + 501, + 73 + ], + "score": 1.0, + "content": "resolution. All backbones are pretrained on ImageNet-1k except SETR [45], which is", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 109, + 73, + 244, + 84 + ], + "spans": [ + { + "bbox": [ + 109, + 73, + 244, + 84 + ], + "score": 1.0, + "content": "pretrained on ImageNet-21k dataset.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 112, + 90, + 500, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 90, + 500, + 324 + ], + "spans": [ + { + "bbox": [ + 112, + 90, + 500, + 324 + ], + "score": 0.986, + "html": "
BackboneSemantic FPN 80k (PVT [8] setting)Upernet 160k (Swin [4] setting)
FLOPs (G)Param (M)mIoU (%)FLOPs (G)Param (M)mIoU/MS mIoU (%)
ResNet50 [10]4528.536.71
PVT-Small [8]4028.239.81-=
Twins-PCPVT-S (ours)4028.444.3 (+7.6)23454.646.2/47.5
Swin-T[4]4631.941.523759.944.5/45.8
Twins-SVT-S (ours)3728.343.2( (+6.5)22854.446.2/47.1
ResNet101 [10]6647.538.825886-/44.9
PVT-Medium [8]5548.041.6=1
Twins-PCPVT-B (ours)5548.144.9 (+6.1)25074.347.1/48.4
Swin-S [4]7053.245.226181.347.6/49.5
Twins-SVT-B (ours)6760.445.3 (+6.5)26188.547.7/48.9
ResNetXt101-64×4d [13]186.440.211=
PVT-Large [8]7165.142.1---
Twins-PCPVT-L (ours)7165.346.4 (+6.2)26991.548.6/49.8
Swin-B [4]10791.246.029912148.1/49.7
Twins-SVT-L (ours)102103.746.7 (+6.5)29713348.8/50.2
BackbonePUP (SETR [45] setting)MLA (SETR [45] setting)
T-Large (SETR) [45]-31050.1130848.6/50.3
", + "type": "table", + "image_path": "2090e3b08689b3dbb0e79e4396b2b0d0a3196a1511e7397d8691b778b1a46777.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 112, + 90, + 500, + 168.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 112, + 168.0, + 500, + 246.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 112, + 246.0, + 500, + 324.0 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 344, + 505, + 411 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 124, + 357 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 124, + 345, + 138, + 356 + ], + "score": 0.85, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "object segmentation with the Mask R-CNN framework, Twins-PCPVT-S brings similar", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 355, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 169, + 369 + ], + "score": 1.0, + "content": "improvements", + "type": "text" + }, + { + "bbox": [ + 170, + 356, + 200, + 367 + ], + "score": 0.69, + "content": "( + 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 355, + 506, + 369 + ], + "score": 1.0, + "content": "mAP) over PVT-Small. Compared with PVT-Medium, Twins-PCPVT-B", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 367, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 137, + 379 + ], + "score": 1.0, + "content": "obtains", + "type": "text" + }, + { + "bbox": [ + 137, + 367, + 159, + 378 + ], + "score": 0.88, + "content": "2 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 367, + 506, + 379 + ], + "score": 1.0, + "content": "higher mAP, which is also on par with that of Swin. Both Twins-SVT-S and Twins-SVT-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 391 + ], + "score": 1.0, + "content": "B achieve better or slightly better performance compared to the counterparts of Swin. As for large", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 401 + ], + "score": 1.0, + "content": "models, our results are shown in Table 1 (in supplementary) and we also achieve better performance", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 399, + 209, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 209, + 412 + ], + "score": 1.0, + "content": "with comparable FLOPs.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 345, + 506, + 412 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 450, + 515, + 603 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 422, + 500, + 443 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 422, + 502, + 434 + ], + "spans": [ + { + "bbox": [ + 109, + 422, + 478, + 434 + ], + "score": 1.0, + "content": "Table 3 – Object detection performance on the COCO val2017 split using the RetinaNet framework.", + "type": "text" + }, + { + "bbox": [ + 479, + 423, + 492, + 432 + ], + "score": 0.83, + "content": "1 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 422, + 502, + 434 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 109, + 432, + 493, + 445 + ], + "spans": [ + { + "bbox": [ + 109, + 432, + 163, + 445 + ], + "score": 1.0, + "content": "12 epochs and", + "type": "text" + }, + { + "bbox": [ + 163, + 433, + 176, + 442 + ], + "score": 0.86, + "content": "3 \\times", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 432, + 416, + 445 + ], + "score": 1.0, + "content": "is 36 epochs. “MS”: Multi-scale training. FLOPs are evaluated on", + "type": "text" + }, + { + "bbox": [ + 416, + 433, + 452, + 442 + ], + "score": 0.89, + "content": "8 0 0 \\times 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 432, + 493, + 445 + ], + "score": 1.0, + "content": "resolution.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 450, + 515, + 603 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 450, + 515, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 515, + 603 + ], + "score": 0.984, + "html": "
BackboneFLOPsParaml (G)(M)RetinaNet1×RetinaNet 3× +MS
|APAP50 AP75 APs APm APL|AP AP50 AP75APs APm APL
ResNet50 [10]11137.7 36.355.3 38.6 19.3 40.0 48.8|39.058.4 41.8 22.4 42.8 51.6
PVT-Small [8]11834.261.3 43.0 25.0 42.9 55.762.7 45.0 26.2 45.2 57.2
Twins-PCPVT-S (ours)11834.443.0(+6.7) 64.1 46.0 27.5 46.3 57.345.2(+6.2) 66.5 48.6 30.0 48.8 58.9
Swin-T[4]11838.562.1 44.2 25.1 44.9 55.543.9 64.8 47.1 28.4 47.2 57.8
Twins-SVT-S (ours)10434.343.0(+6.7) 64.2 46.3 28.0 46.4 57.545.6(+6.6) 67.1 48.6 29.8 49.3 60.0
ResNet101[10]14956.757.8 41.2 21.4 42.6 51.160.1 44.0 23.7 45.0 53.8
ResNeXt101-32×4d[13]15156.459.642.7 22.344.2 52.561.0 44.3 23.9 45.5 53.7
PVT-Medium [8]15153.963.1 44.3 25.0 44.9 57.6463.8 46.1 27.3 46.3 58.9
Twins-PCPVT-B (ours)15154.141.9 44.3(+5.8) ) 65.6 47.3 27.9 47.9 59.6443.2 46.4(+5.5) 67.7 49.8 31.3 50.2 61.4 46.3
Swin-S [4]16259.844.5 65.7 47.5 27.4 48.0 59.967.4 49.8 31.1 50.3 60.9
Twins-SVT-B (ours)16367.045.3(+6.8) 66.7 48.1 28.5 48.9 60.646.9(+6.0)68.0 50.2 31.7 50.3 61.8
", + "type": "table", + "image_path": "1693844a418953357be1c2a663ddc5b919a3ef3b16aaa01c0dff462d187c3424.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 106, + 450, + 515, + 501.0 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 106, + 501.0, + 515, + 552.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 106, + 552.0, + 515, + 603.0 + ], + "spans": [], + "index": 16 + } + ] + } + ], + "index": 13.75 + }, + { + "type": "title", + "bbox": [ + 107, + 624, + 201, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 203, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 203, + 637 + ], + "score": 1.0, + "content": "4.4 Ablation Studies", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 239, + 722 + ], + "lines": [ + { + "bbox": [ + 107, + 645, + 240, + 656 + ], + "spans": [ + { + "bbox": [ + 107, + 645, + 240, + 656 + ], + "score": 1.0, + "content": "Configurations of LSA and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 655, + 241, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 241, + 667 + ], + "score": 1.0, + "content": "GSA blocks. We evaluate dif-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 667, + 240, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 240, + 678 + ], + "score": 1.0, + "content": "ferent combinations of LSA and", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 678, + 240, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 240, + 689 + ], + "score": 1.0, + "content": "GSA based on our small model", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 689, + 240, + 699 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 240, + 699 + ], + "score": 1.0, + "content": "and present the ablation results in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 699, + 240, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 240, + 712 + ], + "score": 1.0, + "content": "Table 5. The models with only", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 711, + 240, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 240, + 722 + ], + "score": 1.0, + "content": "locally-grouped attention fail to", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 276, + 239, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 207, + 290 + ], + "score": 1.0, + "content": "obtain good performance", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 207, + 277, + 239, + 288 + ], + "score": 0.89, + "content": "( 7 6 . 9 \\% )", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 645, + 241, + 722 + ] + }, + { + "type": "table", + "bbox": [ + 265, + 646, + 487, + 735 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 246, + 622, + 504, + 643 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 247, + 622, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 247, + 622, + 505, + 633 + ], + "score": 1.0, + "content": "Table 5 – Classification performance for different combinations of LSA", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 246, + 632, + 433, + 643 + ], + "spans": [ + { + "bbox": [ + 246, + 632, + 433, + 643 + ], + "score": 1.0, + "content": "(L) and GSA (G) blocks based on the small model.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "table_body", + "bbox": [ + 265, + 646, + 487, + 735 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 265, + 646, + 487, + 735 + ], + "spans": [ + { + "bbox": [ + 265, + 646, + 487, + 735 + ], + "score": 0.977, + "html": "
Function TypeParams (M)FLOPs (G)Top-1 (%)
(L,L,L)8.82.276.9
(L, LLG, LLG, G)23.52.881.5
(L, LG, LG, G)24.12.881.7
(L,L,L, G)22.22.980.5
PVT-small(G, G, G, G) [8]24.53.879.8
", + "type": "table", + "image_path": "c4e824e4289539c1e56a37c1b1ca1423bcc62c4601b2f76cb8ae6ec3b41e8364.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 265, + 646, + 487, + 658.7142857142857 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 265, + 658.7142857142857, + 487, + 671.4285714285713 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 265, + 671.4285714285713, + 487, + 684.142857142857 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 265, + 684.142857142857, + 487, + 696.8571428571427 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 265, + 696.8571428571427, + 487, + 709.5714285714283 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 265, + 709.5714285714283, + 487, + 722.285714285714 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 265, + 722.285714285714, + 487, + 734.9999999999997 + ], + "spans": [], + "index": 33 + } + ] + } + ], + "index": 24.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 106, + 98, + 518, + 252 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 70, + 501, + 91 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "spans": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "score": 1.0, + "content": "Table 4 – Object detection and instance segmentation performance on the COCO val2017 dataset using the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 109, + 79, + 364, + 92 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 301, + 92 + ], + "score": 1.0, + "content": "Mask R-CNN framework. FLOPs are evaluated on a", + "type": "text" + }, + { + "bbox": [ + 301, + 81, + 337, + 90 + ], + "score": 0.88, + "content": "8 0 0 \\times 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 79, + 364, + 92 + ], + "score": 1.0, + "content": "image.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 98, + 518, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 98, + 518, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 518, + 252 + ], + "score": 0.984, + "html": "
BackboneFLOPsParaml (G)(M)Mask R-CNN 1×Mask R-CNN3× +MS
|APbAP0APAPmAPAP|APbAP0APP APm APAPP
ResNet50 [10]17444.238.058.6 41.4 34.455.1 36.741.061.7 44.9 37.1 58.4 40.1
PVT-Small [8]17844.140.462.9 43.8 37.860.1 40.343.065.3 46.9 39.9 62.5 42.8
Twins-PCPVT-S (ours)17844.342.9(+4.9)65.8 47.1 40.0(+5.6)62.742.946.8(+5.8)69.3 51.8 42.6 66.3 46.0
Swin-T[4]17747.842.264.6 46.2 39.161.6 42.0 46.068.2 50.2 41.6 65.1 44.8
Twins-SVT-S (ours)16444.043.4(+5.4)66.0 47.3 40.3(+5.9)63.243.446.8(+5.8)69.2 51.2 42.6 66.3 45.8
ResNet101[10]21063.240.461.1 44.2 36.457.7 38.842.863.2 47.1 38.5 60.1 41.3
ResNeXt101-32×4d[13]21262.841.962.5 45.9 37.559.4 40.2 44.064.4 48.0 39.2 61.4 41.9
PVT-Medium [8]21163.942.064.4 45.6 39.061.6 42.144.266.0 48.2 40.5 63.1 43.5
Twins-PCPVT-B (ours)21164.044.6(+4.2)66.7 48.9 40.9(+4.5)63.844.247.9(+5.1) 70.152.5 43.2 67.2 46.3
Swin-S [4]22269.144.866.6 48.9 40.963.4 44.2 47.669.4 52.5 42.8 66.5 46.4
Twins-SVT-B (ours)22476.345.2(+4.8)67.6 49.3 41.5(+5.1) 64.5 44.848.0(+5.2)69.5 52.7 43.0 66.8 46.6
", + "type": "table", + "image_path": "57c11d3f2cf446a597480002b652bb8f5133ba64f601529b7b505cd14be40327.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 106, + 98, + 518, + 149.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 149.33333333333334, + 518, + 200.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 200.66666666666669, + 518, + 252.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 241, + 288 + ], + "lines": [ + { + "bbox": [ + 106, + 276, + 239, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 207, + 290 + ], + "score": 1.0, + "content": "obtain good performance", + "type": "text" + }, + { + "bbox": [ + 207, + 277, + 239, + 288 + ], + "score": 0.89, + "content": "( 7 6 . 9 \\% )", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 108, + 288, + 506, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "because this setting has a limited and small receptive field. An extra global attention layer in the last", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 321, + 311 + ], + "score": 1.0, + "content": "stage can improve the classification performance by", + "type": "text" + }, + { + "bbox": [ + 321, + 299, + 343, + 309 + ], + "score": 0.86, + "content": "3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 298, + 505, + 311 + ], + "score": 1.0, + "content": ". Local-Local-Global (abbr. LLG) also", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 309, + 426, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 218, + 322 + ], + "score": 1.0, + "content": "achieves good performance", + "type": "text" + }, + { + "bbox": [ + 219, + 310, + 251, + 321 + ], + "score": 0.84, + "content": "( 8 1 . 5 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 309, + 426, + 322 + ], + "score": 1.0, + "content": ", but we do not use this design in this work.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 339, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 340, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 340, + 349 + ], + "score": 1.0, + "content": "Sub-sampling functions. We further study how the dif-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 347, + 341, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 341, + 361 + ], + "score": 1.0, + "content": "ferent sub-sampling functions affect the performance.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 359, + 340, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 340, + 371 + ], + "score": 1.0, + "content": "Specifically, we compare the regular strided convolutions,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 370, + 339, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 339, + 382 + ], + "score": 1.0, + "content": "separable convolutions and average pooling based on the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 381, + 340, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 340, + 393 + ], + "score": 1.0, + "content": "‘small’ model and present the results in Table 6. The first", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 392, + 340, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 340, + 403 + ], + "score": 1.0, + "content": "option performs best and therefore we choose it as our", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 402, + 204, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 204, + 414 + ], + "score": 1.0, + "content": "default implementation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "table", + "bbox": [ + 358, + 372, + 492, + 426 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 346, + 329, + 505, + 369 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 346, + 328, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 346, + 328, + 506, + 339 + ], + "score": 1.0, + "content": "Table 6 – ImageNet classification perfor-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 346, + 339, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 346, + 339, + 505, + 349 + ], + "score": 1.0, + "content": "mance of different forms of sub-sampled", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 345, + 348, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 345, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "functions for the global sub-sampled atten-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 346, + 358, + 392, + 370 + ], + "spans": [ + { + "bbox": [ + 346, + 358, + 392, + 370 + ], + "score": 1.0, + "content": "tion (GSA).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "table_body", + "bbox": [ + 358, + 372, + 492, + 426 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 358, + 372, + 492, + 426 + ], + "spans": [ + { + "bbox": [ + 358, + 372, + 492, + 426 + ], + "score": 0.973, + "html": "
Function TypeTop-1(%)
2D Conv.81.7
2D Separable Conv.81.2
Average Pooling81.2
", + "type": "table", + "image_path": "6baf89f8d8a23480dbb0e937131d892766bb5d0aa680dc97cf0bcf8d389b9fbc.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 358, + 372, + 492, + 399.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 358, + 399.0, + 492, + 426.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 19.0 + }, + { + "type": "text", + "bbox": [ + 120, + 430, + 336, + 442 + ], + "lines": [ + { + "bbox": [ + 118, + 429, + 338, + 443 + ], + "spans": [ + { + "bbox": [ + 118, + 429, + 338, + 443 + ], + "score": 1.0, + "content": "sitional Encodings. We replace the relative positional", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 443, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 455 + ], + "score": 1.0, + "content": "encoding with CPVT for Swin-T and report the detection performance on COCO with RetinaNet and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "Mask R-CNN in Table 7. The CPVT-based Swin cannot achieve improved performance with both", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "frameworks, which indicates that our performance improvements should be owing to the paradigm of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 298, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 298, + 488 + ], + "score": 1.0, + "content": "Twins-SVT instead of the positional encodings.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "table", + "bbox": [ + 126, + 517, + 486, + 571 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 125, + 500, + 485, + 511 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 123, + 497, + 488, + 514 + ], + "spans": [ + { + "bbox": [ + 123, + 497, + 488, + 514 + ], + "score": 1.0, + "content": "Table 7 – Object detection performance on the COCO using different positional encoding strategies.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 126, + 517, + 486, + 571 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 126, + 517, + 486, + 571 + ], + "spans": [ + { + "bbox": [ + 126, + 517, + 486, + 571 + ], + "score": 0.863, + "html": "
BackboneRetinaNetMask RCNN
FLOPs(G)Param(M) APAP50AP75FLOPs(G)Param(M)APAP50AP75
Swin-T[4]]24538.541.562.144.226447.842.264.646.2
Swin-T+CPVT24538.541.362.444.126347.842.064.545.9
", + "type": "table", + "image_path": "6f7f8635eea638011e731cacbb93cf34dd334d44c038c5b076b783c3488f4d08.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 126, + 517, + 486, + 535.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 126, + 535.0, + 486, + 553.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 126, + 553.0, + 486, + 571.0 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 28.0 + }, + { + "type": "title", + "bbox": [ + 106, + 606, + 183, + 620 + ], + "lines": [ + { + "bbox": [ + 104, + 605, + 185, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 185, + 622 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 646 + ], + "score": 1.0, + "content": "In this paper, we have presented two powerful vision transformer backbones for both image-level", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "classification and a few downstream dense prediction tasks. We dub them as twin transformers:", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "Twins-PCPVT and Twins-SVT. The former variant explores the applicability of conditional positional", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "encodings [9] in pyramid vision transformer [8], confirming its potential for improving backbones in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "many vision tasks. In the latter variant we revisit current attention design to proffer a more efficient", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "attention paradigm. We find that interleaving local and global attention can produce impressive", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "results, yet it comes with higher throughputs. Both transformer models set a new state of the art in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 711, + 418, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 418, + 723 + ], + "score": 1.0, + "content": "image classification, objection detection and semantic/instance segmentation.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + } + ], + "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, + 98, + 518, + 252 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 110, + 70, + 501, + 91 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "spans": [ + { + "bbox": [ + 109, + 69, + 501, + 82 + ], + "score": 1.0, + "content": "Table 4 – Object detection and instance segmentation performance on the COCO val2017 dataset using the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 109, + 79, + 364, + 92 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 301, + 92 + ], + "score": 1.0, + "content": "Mask R-CNN framework. FLOPs are evaluated on a", + "type": "text" + }, + { + "bbox": [ + 301, + 81, + 337, + 90 + ], + "score": 0.88, + "content": "8 0 0 \\times 6 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 79, + 364, + 92 + ], + "score": 1.0, + "content": "image.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 106, + 98, + 518, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 98, + 518, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 518, + 252 + ], + "score": 0.984, + "html": "
BackboneFLOPsParaml (G)(M)Mask R-CNN 1×Mask R-CNN3× +MS
|APbAP0APAPmAPAP|APbAP0APP APm APAPP
ResNet50 [10]17444.238.058.6 41.4 34.455.1 36.741.061.7 44.9 37.1 58.4 40.1
PVT-Small [8]17844.140.462.9 43.8 37.860.1 40.343.065.3 46.9 39.9 62.5 42.8
Twins-PCPVT-S (ours)17844.342.9(+4.9)65.8 47.1 40.0(+5.6)62.742.946.8(+5.8)69.3 51.8 42.6 66.3 46.0
Swin-T[4]17747.842.264.6 46.2 39.161.6 42.0 46.068.2 50.2 41.6 65.1 44.8
Twins-SVT-S (ours)16444.043.4(+5.4)66.0 47.3 40.3(+5.9)63.243.446.8(+5.8)69.2 51.2 42.6 66.3 45.8
ResNet101[10]21063.240.461.1 44.2 36.457.7 38.842.863.2 47.1 38.5 60.1 41.3
ResNeXt101-32×4d[13]21262.841.962.5 45.9 37.559.4 40.2 44.064.4 48.0 39.2 61.4 41.9
PVT-Medium [8]21163.942.064.4 45.6 39.061.6 42.144.266.0 48.2 40.5 63.1 43.5
Twins-PCPVT-B (ours)21164.044.6(+4.2)66.7 48.9 40.9(+4.5)63.844.247.9(+5.1) 70.152.5 43.2 67.2 46.3
Swin-S [4]22269.144.866.6 48.9 40.963.4 44.2 47.669.4 52.5 42.8 66.5 46.4
Twins-SVT-B (ours)22476.345.2(+4.8)67.6 49.3 41.5(+5.1) 64.5 44.848.0(+5.2)69.5 52.7 43.0 66.8 46.6
", + "type": "table", + "image_path": "57c11d3f2cf446a597480002b652bb8f5133ba64f601529b7b505cd14be40327.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 106, + 98, + 518, + 149.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 149.33333333333334, + 518, + 200.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 200.66666666666669, + 518, + 252.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 107, + 277, + 241, + 288 + ], + "lines": [], + "index": 5, + "bbox_fs": [ + 106, + 276, + 239, + 290 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 108, + 288, + 506, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "because this setting has a limited and small receptive field. An extra global attention layer in the last", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 321, + 311 + ], + "score": 1.0, + "content": "stage can improve the classification performance by", + "type": "text" + }, + { + "bbox": [ + 321, + 299, + 343, + 309 + ], + "score": 0.86, + "content": "3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 298, + 505, + 311 + ], + "score": 1.0, + "content": ". Local-Local-Global (abbr. LLG) also", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 309, + 426, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 218, + 322 + ], + "score": 1.0, + "content": "achieves good performance", + "type": "text" + }, + { + "bbox": [ + 219, + 310, + 251, + 321 + ], + "score": 0.84, + "content": "( 8 1 . 5 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 309, + 426, + 322 + ], + "score": 1.0, + "content": ", but we do not use this design in this work.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 288, + 505, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 339, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 337, + 340, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 340, + 349 + ], + "score": 1.0, + "content": "Sub-sampling functions. We further study how the dif-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 347, + 341, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 341, + 361 + ], + "score": 1.0, + "content": "ferent sub-sampling functions affect the performance.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 359, + 340, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 340, + 371 + ], + "score": 1.0, + "content": "Specifically, we compare the regular strided convolutions,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 370, + 339, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 339, + 382 + ], + "score": 1.0, + "content": "separable convolutions and average pooling based on the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 381, + 340, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 340, + 393 + ], + "score": 1.0, + "content": "‘small’ model and present the results in Table 6. The first", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 392, + 340, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 340, + 403 + ], + "score": 1.0, + "content": "option performs best and therefore we choose it as our", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 402, + 204, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 204, + 414 + ], + "score": 1.0, + "content": "default implementation.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 337, + 341, + 414 + ] + }, + { + "type": "table", + "bbox": [ + 358, + 372, + 492, + 426 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 346, + 329, + 505, + 369 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 346, + 328, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 346, + 328, + 506, + 339 + ], + "score": 1.0, + "content": "Table 6 – ImageNet classification perfor-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 346, + 339, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 346, + 339, + 505, + 349 + ], + "score": 1.0, + "content": "mance of different forms of sub-sampled", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 345, + 348, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 345, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "functions for the global sub-sampled atten-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 346, + 358, + 392, + 370 + ], + "spans": [ + { + "bbox": [ + 346, + 358, + 392, + 370 + ], + "score": 1.0, + "content": "tion (GSA).", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "table_body", + "bbox": [ + 358, + 372, + 492, + 426 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 358, + 372, + 492, + 426 + ], + "spans": [ + { + "bbox": [ + 358, + 372, + 492, + 426 + ], + "score": 0.973, + "html": "
Function TypeTop-1(%)
2D Conv.81.7
2D Separable Conv.81.2
Average Pooling81.2
", + "type": "table", + "image_path": "6baf89f8d8a23480dbb0e937131d892766bb5d0aa680dc97cf0bcf8d389b9fbc.jpg" + } + ] + } + ], + "index": 20.5, + "virtual_lines": [ + { + "bbox": [ + 358, + 372, + 492, + 399.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 358, + 399.0, + 492, + 426.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 19.0 + }, + { + "type": "text", + "bbox": [ + 120, + 430, + 336, + 442 + ], + "lines": [ + { + "bbox": [ + 118, + 429, + 338, + 443 + ], + "spans": [ + { + "bbox": [ + 118, + 429, + 338, + 443 + ], + "score": 1.0, + "content": "sitional Encodings. We replace the relative positional", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 441, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 455 + ], + "score": 1.0, + "content": "encoding with CPVT for Swin-T and report the detection performance on COCO with RetinaNet and", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "Mask R-CNN in Table 7. The CPVT-based Swin cannot achieve improved performance with both", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 462, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 477 + ], + "score": 1.0, + "content": "frameworks, which indicates that our performance improvements should be owing to the paradigm of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 298, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 298, + 488 + ], + "score": 1.0, + "content": "Twins-SVT instead of the positional encodings.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 118, + 429, + 338, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 443, + 505, + 486 + ], + "lines": [], + "index": 24.5, + "bbox_fs": [ + 105, + 441, + 506, + 488 + ], + "lines_deleted": true + }, + { + "type": "table", + "bbox": [ + 126, + 517, + 486, + 571 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 125, + 500, + 485, + 511 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 123, + 497, + 488, + 514 + ], + "spans": [ + { + "bbox": [ + 123, + 497, + 488, + 514 + ], + "score": 1.0, + "content": "Table 7 – Object detection performance on the COCO using different positional encoding strategies.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "table_body", + "bbox": [ + 126, + 517, + 486, + 571 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 126, + 517, + 486, + 571 + ], + "spans": [ + { + "bbox": [ + 126, + 517, + 486, + 571 + ], + "score": 0.863, + "html": "
BackboneRetinaNetMask RCNN
FLOPs(G)Param(M) APAP50AP75FLOPs(G)Param(M)APAP50AP75
Swin-T[4]]24538.541.562.144.226447.842.264.646.2
Swin-T+CPVT24538.541.362.444.126347.842.064.545.9
", + "type": "table", + "image_path": "6f7f8635eea638011e731cacbb93cf34dd334d44c038c5b076b783c3488f4d08.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 126, + 517, + 486, + 535.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 126, + 535.0, + 486, + 553.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 126, + 553.0, + 486, + 571.0 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 28.0 + }, + { + "type": "title", + "bbox": [ + 106, + 606, + 183, + 620 + ], + "lines": [ + { + "bbox": [ + 104, + 605, + 185, + 622 + ], + "spans": [ + { + "bbox": [ + 104, + 605, + 185, + 622 + ], + "score": 1.0, + "content": "5 Conclusion", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 634, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 505, + 646 + ], + "score": 1.0, + "content": "In this paper, we have presented two powerful vision transformer backbones for both image-level", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 657 + ], + "score": 1.0, + "content": "classification and a few downstream dense prediction tasks. We dub them as twin transformers:", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "Twins-PCPVT and Twins-SVT. The former variant explores the applicability of conditional positional", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 680 + ], + "score": 1.0, + "content": "encodings [9] in pyramid vision transformer [8], confirming its potential for improving backbones in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "many vision tasks. In the latter variant we revisit current attention design to proffer a more efficient", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "attention paradigm. We find that interleaving local and global attention can produce impressive", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 506, + 712 + ], + "score": 1.0, + "content": "results, yet it comes with higher throughputs. Both transformer models set a new state of the art in", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 711, + 418, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 418, + 723 + ], + "score": 1.0, + "content": "image classification, objection detection and semantic/instance segmentation.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 635, + 506, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 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, + 108, + 507, + 720 + ], + "lines": [ + { + "bbox": [ + 109, + 104, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 109, + 104, + 507, + 116 + ], + "score": 1.0, + "content": "[1] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 127, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 125, + 122, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 125, + 122, + 506, + 140 + ], + "score": 1.0, + "content": "Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 135, + 408, + 150 + ], + "spans": [ + { + "bbox": [ + 126, + 135, + 408, + 150 + ], + "score": 1.0, + "content": "recognition at scale. In Proc. Int. Conf. Learn. Representations, 2021.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 109, + 146, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 109, + 146, + 506, + 163 + ], + "score": 1.0, + "content": "[2] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 126, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 126, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 169, + 266, + 183 + ], + "spans": [ + { + "bbox": [ + 126, + 169, + 266, + 183 + ], + "score": 1.0, + "content": "preprint arXiv:2012.12877, 2020.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "[3] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 190, + 507, + 208 + ], + "spans": [ + { + "bbox": [ + 125, + 190, + 507, + 208 + ], + "score": 1.0, + "content": "Sergey Zagoruyko. End-to-end object detection with transformers. In Proc. Eur. Conf. Comp.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 202, + 277, + 217 + ], + "spans": [ + { + "bbox": [ + 127, + 202, + 277, + 217 + ], + "score": 1.0, + "content": "Vis., pages 213–229. Springer, 2020.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 109, + 212, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 109, + 212, + 506, + 230 + ], + "score": 1.0, + "content": "[4] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 127, + 225, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 505, + 240 + ], + "score": 1.0, + "content": "Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In Proc. IEEE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 236, + 327, + 251 + ], + "spans": [ + { + "bbox": [ + 126, + 236, + 327, + 251 + ], + "score": 1.0, + "content": "Int. Conf. Comp. Vis., pages 10012–10022, 2021.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 248, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 110, + 248, + 506, + 262 + ], + "score": 1.0, + "content": "[5] Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 128, + 260, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 128, + 260, + 506, + 272 + ], + "score": 1.0, + "content": "Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 270, + 465, + 285 + ], + "spans": [ + { + "bbox": [ + 126, + 270, + 465, + 285 + ], + "score": 1.0, + "content": "fully connected crfs. IEEE Trans. Pattern Anal. Mach. Intell., 40(4):834–848, 2017.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 111, + 281, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 111, + 281, + 506, + 296 + ], + "score": 1.0, + "content": "[6] Chao Peng, Xiangyu Zhang, Gang Yu, Guiming Luo, and Jian Sun. Large kernel matters–", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 125, + 291, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 125, + 291, + 506, + 309 + ], + "score": 1.0, + "content": "improve semantic segmentation by global convolutional network. In Proc. IEEE Conf. Comp.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 303, + 303, + 317 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 303, + 317 + ], + "score": 1.0, + "content": "Vis. Patt. Recogn., pages 4353–4361, 2017.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 109, + 315, + 508, + 330 + ], + "spans": [ + { + "bbox": [ + 109, + 315, + 508, + 330 + ], + "score": 1.0, + "content": "[7] Wei Liu, Andrew Rabinovich, and Alexander C Berg. Parsenet: Looking wider to see better.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 327, + 290, + 340 + ], + "spans": [ + { + "bbox": [ + 127, + 327, + 290, + 340 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1506.04579, 2015.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 110, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "[8] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 126, + 349, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 126, + 349, + 506, + 364 + ], + "score": 1.0, + "content": "Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 360, + 380, + 375 + ], + "spans": [ + { + "bbox": [ + 126, + 360, + 380, + 375 + ], + "score": 1.0, + "content": "without convolutions. arXiv preprint arXiv:2102.12122, 2021.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 110, + 371, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 110, + 371, + 506, + 386 + ], + "score": 1.0, + "content": "[9] Xiangxiang Chu, Zhi Tian, Bo Zhang, Xinlong Wang, Xiaolin Wei, Huaxia Xia, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 382, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 126, + 382, + 506, + 398 + ], + "score": 1.0, + "content": "Chunhua Shen. Conditional positional encodings for vision transformers. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 394, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 394, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:2102.10882, 2021.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 403, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 422 + ], + "score": 1.0, + "content": "[10] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 416, + 458, + 431 + ], + "spans": [ + { + "bbox": [ + 126, + 416, + 458, + 431 + ], + "score": 1.0, + "content": "recognition. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 770–778, 2016.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "[11] Mingxing Tan and Quoc Le. Efficientnet: Rethinking model scaling for convolutional neural", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 126, + 439, + 437, + 454 + ], + "spans": [ + { + "bbox": [ + 126, + 439, + 437, + 454 + ], + "score": 1.0, + "content": "networks. In Proc. Int. Conf. Mach. Learn., pages 6105–6114. PMLR, 2019.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 452, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 507, + 466 + ], + "score": 1.0, + "content": "[12] François Chollet. Xception: Deep learning with depthwise separable convolutions. In Proc.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 127, + 462, + 381, + 477 + ], + "spans": [ + { + "bbox": [ + 127, + 462, + 381, + 477 + ], + "score": 1.0, + "content": "IEEE Conf. Comp. Vis. Patt. Recogn., pages 1251–1258, 2017.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 473, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 488 + ], + "score": 1.0, + "content": "[13] Saining Xie, Ross Girshick, Piotr Dollár, Zhuowen Tu, and Kaiming He. Aggregated residual", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 126, + 484, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 126, + 484, + 506, + 501 + ], + "score": 1.0, + "content": "transformations for deep neural networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 128, + 496, + 203, + 509 + ], + "spans": [ + { + "bbox": [ + 128, + 496, + 203, + 509 + ], + "score": 1.0, + "content": "1492–1500, 2017.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 507, + 507, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 507, + 523 + ], + "score": 1.0, + "content": "[14] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 126, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 126, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Proc. Advances in Neural Inf.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 531, + 287, + 543 + ], + "spans": [ + { + "bbox": [ + 127, + 531, + 287, + 543 + ], + "score": 1.0, + "content": "Process. Syst., pages 6000–6010, 2017.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "score": 1.0, + "content": "[15] Kai Han, An Xiao, Enhua Wu, Jianyuan Guo, Chunjing Xu, and Yunhe Wang. Transformer in", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 126, + 552, + 343, + 567 + ], + "spans": [ + { + "bbox": [ + 126, + 552, + 343, + 567 + ], + "score": 1.0, + "content": "transformer. arXiv preprint arXiv:2103.00112, 2021.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "[16] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jon", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 127, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 127, + 576, + 506, + 588 + ], + "score": 1.0, + "content": "Shlens. Stand-alone self-attention in vision models. In Proc. Advances in Neural Inf. Process.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 587, + 279, + 600 + ], + "spans": [ + { + "bbox": [ + 127, + 587, + 279, + 600 + ], + "score": 1.0, + "content": "Syst., volume 32, pages 68–80, 2019.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 597, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 506, + 614 + ], + "score": 1.0, + "content": "[17] Weijian Xu, Yifan Xu, Tyler Chang, and Zhuowen Tu. Co-scale conv-attentional image", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 126, + 610, + 209, + 622 + ], + "spans": [ + { + "bbox": [ + 126, + 610, + 209, + 622 + ], + "score": 1.0, + "content": "transformers, 2021.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "score": 1.0, + "content": "[18] Yuqing Wang, Zhaoliang Xu, Xinlong Wang, Chunhua Shen, Baoshan Cheng, Hao Shen, and", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 126, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 126, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "Huaxia Xia. End-to-end video instance segmentation with transformers. In Proc. IEEE Conf.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 127, + 644, + 259, + 657 + ], + "spans": [ + { + "bbox": [ + 127, + 644, + 259, + 657 + ], + "score": 1.0, + "content": "Comp. Vis. Patt. Recogn., 2021.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "score": 1.0, + "content": "[19] Hanting Chen, Yunhe Wang, Tianyu Guo, Chang Xu, Yiping Deng, Zhenhua Liu, Siwei Ma,", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 126, + 665, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 126, + 665, + 506, + 681 + ], + "score": 1.0, + "content": "Chunjing Xu, Chao Xu, and Wen Gao. Pre-trained image processing transformer. arXiv preprint", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 127, + 677, + 231, + 690 + ], + "spans": [ + { + "bbox": [ + 127, + 677, + 231, + 690 + ], + "score": 1.0, + "content": "arXiv:2012.00364, 2020.", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 688, + 507, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 507, + 703 + ], + "score": 1.0, + "content": "[20] Fuzhi Yang, Huan Yang, Jianlong Fu, Hongtao Lu, and Baining Guo. Learning texture trans-", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 125, + 697, + 509, + 716 + ], + "spans": [ + { + "bbox": [ + 125, + 697, + 509, + 716 + ], + "score": 1.0, + "content": "former network for image super-resolution. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn.,", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 126, + 711, + 228, + 723 + ], + "spans": [ + { + "bbox": [ + 126, + 711, + 228, + 723 + ], + "score": 1.0, + "content": "pages 5791–5800, 2020.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 28 + } + ], + "page_idx": 9, + "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": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 71, + 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, + 108, + 507, + 720 + ], + "lines": [ + { + "bbox": [ + 109, + 104, + 507, + 116 + ], + "spans": [ + { + "bbox": [ + 109, + 104, + 507, + 116 + ], + "score": 1.0, + "content": "[1] Alexey Dosovitskiy, Lucas Beyer, Alexander Kolesnikov, Dirk Weissenborn, Xiaohua Zhai,", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 113, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 127, + 113, + 505, + 126 + ], + "score": 1.0, + "content": "Thomas Unterthiner, Mostafa Dehghani, Matthias Minderer, Georg Heigold, Sylvain Gelly,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 125, + 122, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 125, + 122, + 506, + 140 + ], + "score": 1.0, + "content": "Jakob Uszkoreit, and Neil Houlsby. An image is worth 16x16 words: Transformers for image", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 135, + 408, + 150 + ], + "spans": [ + { + "bbox": [ + 126, + 135, + 408, + 150 + ], + "score": 1.0, + "content": "recognition at scale. In Proc. Int. Conf. Learn. Representations, 2021.", + "type": "text" + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 146, + 506, + 163 + ], + "spans": [ + { + "bbox": [ + 109, + 146, + 506, + 163 + ], + "score": 1.0, + "content": "[2] Hugo Touvron, Matthieu Cord, Matthijs Douze, Francisco Massa, Alexandre Sablayrolles, and", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 126, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "Hervé Jégou. Training data-efficient image transformers & distillation through attention. arXiv", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 169, + 266, + 183 + ], + "spans": [ + { + "bbox": [ + 126, + 169, + 266, + 183 + ], + "score": 1.0, + "content": "preprint arXiv:2012.12877, 2020.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 110, + 181, + 506, + 196 + ], + "score": 1.0, + "content": "[3] Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kirillov, and", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 125, + 190, + 507, + 208 + ], + "spans": [ + { + "bbox": [ + 125, + 190, + 507, + 208 + ], + "score": 1.0, + "content": "Sergey Zagoruyko. End-to-end object detection with transformers. In Proc. Eur. Conf. Comp.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 127, + 202, + 277, + 217 + ], + "spans": [ + { + "bbox": [ + 127, + 202, + 277, + 217 + ], + "score": 1.0, + "content": "Vis., pages 213–229. Springer, 2020.", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 212, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 109, + 212, + 506, + 230 + ], + "score": 1.0, + "content": "[4] Ze Liu, Yutong Lin, Yue Cao, Han Hu, Yixuan Wei, Zheng Zhang, Stephen Lin, and Baining", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 225, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 127, + 225, + 505, + 240 + ], + "score": 1.0, + "content": "Guo. Swin transformer: Hierarchical vision transformer using shifted windows. In Proc. IEEE", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 236, + 327, + 251 + ], + "spans": [ + { + "bbox": [ + 126, + 236, + 327, + 251 + ], + "score": 1.0, + "content": "Int. Conf. Comp. Vis., pages 10012–10022, 2021.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 248, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 110, + 248, + 506, + 262 + ], + "score": 1.0, + "content": "[5] Liang-Chieh Chen, George Papandreou, Iasonas Kokkinos, Kevin Murphy, and Alan L Yuille.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 128, + 260, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 128, + 260, + 506, + 272 + ], + "score": 1.0, + "content": "Deeplab: Semantic image segmentation with deep convolutional nets, atrous convolution, and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 126, + 270, + 465, + 285 + ], + "spans": [ + { + "bbox": [ + 126, + 270, + 465, + 285 + ], + "score": 1.0, + "content": "fully connected crfs. IEEE Trans. Pattern Anal. Mach. Intell., 40(4):834–848, 2017.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 111, + 281, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 111, + 281, + 506, + 296 + ], + "score": 1.0, + "content": "[6] Chao Peng, Xiangyu Zhang, Gang Yu, Guiming Luo, and Jian Sun. Large kernel matters–", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 125, + 291, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 125, + 291, + 506, + 309 + ], + "score": 1.0, + "content": "improve semantic segmentation by global convolutional network. In Proc. IEEE Conf. Comp.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 303, + 303, + 317 + ], + "spans": [ + { + "bbox": [ + 126, + 303, + 303, + 317 + ], + "score": 1.0, + "content": "Vis. Patt. Recogn., pages 4353–4361, 2017.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 315, + 508, + 330 + ], + "spans": [ + { + "bbox": [ + 109, + 315, + 508, + 330 + ], + "score": 1.0, + "content": "[7] Wei Liu, Andrew Rabinovich, and Alexander C Berg. Parsenet: Looking wider to see better.", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 327, + 290, + 340 + ], + "spans": [ + { + "bbox": [ + 127, + 327, + 290, + 340 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1506.04579, 2015.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 338, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 110, + 338, + 505, + 352 + ], + "score": 1.0, + "content": "[8] Wenhai Wang, Enze Xie, Xiang Li, Deng-Ping Fan, Kaitao Song, Ding Liang, Tong Lu, Ping", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 126, + 349, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 126, + 349, + 506, + 364 + ], + "score": 1.0, + "content": "Luo, and Ling Shao. Pyramid vision transformer: A versatile backbone for dense prediction", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 360, + 380, + 375 + ], + "spans": [ + { + "bbox": [ + 126, + 360, + 380, + 375 + ], + "score": 1.0, + "content": "without convolutions. arXiv preprint arXiv:2102.12122, 2021.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 371, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 110, + 371, + 506, + 386 + ], + "score": 1.0, + "content": "[9] Xiangxiang Chu, Zhi Tian, Bo Zhang, Xinlong Wang, Xiaolin Wei, Huaxia Xia, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 126, + 382, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 126, + 382, + 506, + 398 + ], + "score": 1.0, + "content": "Chunhua Shen. Conditional positional encodings for vision transformers. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 127, + 394, + 231, + 407 + ], + "spans": [ + { + "bbox": [ + 127, + 394, + 231, + 407 + ], + "score": 1.0, + "content": "arXiv:2102.10882, 2021.", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 403, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 422 + ], + "score": 1.0, + "content": "[10] Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 416, + 458, + 431 + ], + "spans": [ + { + "bbox": [ + 126, + 416, + 458, + 431 + ], + "score": 1.0, + "content": "recognition. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 770–778, 2016.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "[11] Mingxing Tan and Quoc Le. Efficientnet: Rethinking model scaling for convolutional neural", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 439, + 437, + 454 + ], + "spans": [ + { + "bbox": [ + 126, + 439, + 437, + 454 + ], + "score": 1.0, + "content": "networks. In Proc. Int. Conf. Mach. Learn., pages 6105–6114. PMLR, 2019.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 452, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 507, + 466 + ], + "score": 1.0, + "content": "[12] François Chollet. Xception: Deep learning with depthwise separable convolutions. In Proc.", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 462, + 381, + 477 + ], + "spans": [ + { + "bbox": [ + 127, + 462, + 381, + 477 + ], + "score": 1.0, + "content": "IEEE Conf. Comp. Vis. Patt. Recogn., pages 1251–1258, 2017.", + "type": "text" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 473, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 505, + 488 + ], + "score": 1.0, + "content": "[13] Saining Xie, Ross Girshick, Piotr Dollár, Zhuowen Tu, and Kaiming He. Aggregated residual", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 484, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 126, + 484, + 506, + 501 + ], + "score": 1.0, + "content": "transformations for deep neural networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 128, + 496, + 203, + 509 + ], + "spans": [ + { + "bbox": [ + 128, + 496, + 203, + 509 + ], + "score": 1.0, + "content": "1492–1500, 2017.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 507, + 507, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 507, + 523 + ], + "score": 1.0, + "content": "[14] Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez,", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 518, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 126, + 518, + 506, + 533 + ], + "score": 1.0, + "content": "Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Proc. Advances in Neural Inf.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 127, + 531, + 287, + 543 + ], + "spans": [ + { + "bbox": [ + 127, + 531, + 287, + 543 + ], + "score": 1.0, + "content": "Process. Syst., pages 6000–6010, 2017.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 506, + 556 + ], + "score": 1.0, + "content": "[15] Kai Han, An Xiao, Enhua Wu, Jianyuan Guo, Chunjing Xu, and Yunhe Wang. Transformer in", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 552, + 343, + 567 + ], + "spans": [ + { + "bbox": [ + 126, + 552, + 343, + 567 + ], + "score": 1.0, + "content": "transformer. arXiv preprint arXiv:2103.00112, 2021.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 564, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 564, + 506, + 578 + ], + "score": 1.0, + "content": "[16] Prajit Ramachandran, Niki Parmar, Ashish Vaswani, Irwan Bello, Anselm Levskaya, and Jon", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 576, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 127, + 576, + 506, + 588 + ], + "score": 1.0, + "content": "Shlens. Stand-alone self-attention in vision models. In Proc. Advances in Neural Inf. Process.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 127, + 587, + 279, + 600 + ], + "spans": [ + { + "bbox": [ + 127, + 587, + 279, + 600 + ], + "score": 1.0, + "content": "Syst., volume 32, pages 68–80, 2019.", + "type": "text" + } + ], + "index": 44, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 597, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 506, + 614 + ], + "score": 1.0, + "content": "[17] Weijian Xu, Yifan Xu, Tyler Chang, and Zhuowen Tu. Co-scale conv-attentional image", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 610, + 209, + 622 + ], + "spans": [ + { + "bbox": [ + 126, + 610, + 209, + 622 + ], + "score": 1.0, + "content": "transformers, 2021.", + "type": "text" + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 636 + ], + "score": 1.0, + "content": "[18] Yuqing Wang, Zhaoliang Xu, Xinlong Wang, Chunhua Shen, Baoshan Cheng, Hao Shen, and", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 126, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "Huaxia Xia. End-to-end video instance segmentation with transformers. In Proc. IEEE Conf.", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 127, + 644, + 259, + 657 + ], + "spans": [ + { + "bbox": [ + 127, + 644, + 259, + 657 + ], + "score": 1.0, + "content": "Comp. Vis. Patt. Recogn., 2021.", + "type": "text" + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 670 + ], + "score": 1.0, + "content": "[19] Hanting Chen, Yunhe Wang, Tianyu Guo, Chang Xu, Yiping Deng, Zhenhua Liu, Siwei Ma,", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 665, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 126, + 665, + 506, + 681 + ], + "score": 1.0, + "content": "Chunjing Xu, Chao Xu, and Wen Gao. Pre-trained image processing transformer. arXiv preprint", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 127, + 677, + 231, + 690 + ], + "spans": [ + { + "bbox": [ + 127, + 677, + 231, + 690 + ], + "score": 1.0, + "content": "arXiv:2012.00364, 2020.", + "type": "text" + } + ], + "index": 52, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 688, + 507, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 507, + 703 + ], + "score": 1.0, + "content": "[20] Fuzhi Yang, Huan Yang, Jianlong Fu, Hongtao Lu, and Baining Guo. Learning texture trans-", + "type": "text" + } + ], + "index": 53, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 697, + 509, + 716 + ], + "spans": [ + { + "bbox": [ + 125, + 697, + 509, + 716 + ], + "score": 1.0, + "content": "former network for image super-resolution. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn.,", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 126, + 711, + 228, + 723 + ], + "spans": [ + { + "bbox": [ + 126, + 711, + 228, + 723 + ], + "score": 1.0, + "content": "pages 5791–5800, 2020.", + "type": "text" + } + ], + "index": 55, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 72, + 507, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 88 + ], + "score": 1.0, + "content": "[21] Yanhong Zeng, Jianlong Fu, and Hongyang Chao. Learning joint spatial-temporal transforma-", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 83, + 490, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 490, + 98 + ], + "score": 1.0, + "content": "tions for video inpainting. In Proc. Eur. Conf. Comp. Vis., pages 528–543. Springer, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 95, + 506, + 110 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 506, + 110 + ], + "score": 1.0, + "content": "[22] Zhigang Dai, Bolun Cai, Yugeng Lin, and Junying Chen. UP-DETR: Unsupervised pre-training", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 106, + 446, + 121 + ], + "spans": [ + { + "bbox": [ + 126, + 106, + 446, + 121 + ], + "score": 1.0, + "content": "for object detection with transformers. arXiv preprint arXiv:2011.09094, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 117, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 505, + 132 + ], + "score": 1.0, + "content": "[23] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 128, + 507, + 144 + ], + "spans": [ + { + "bbox": [ + 127, + 128, + 507, + 144 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv: Comp. Res. Repository, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "[24] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 151, + 507, + 166 + ], + "spans": [ + { + "bbox": [ + 126, + 151, + 507, + 166 + ], + "score": 1.0, + "content": "Fu, Jianfeng Feng, Tao Xiang, Philip HS Torr, et al. Rethinking semantic segmentation from a", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 162, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 505, + 177 + ], + "score": 1.0, + "content": "sequence-to-sequence perspective with transformers. arXiv preprint arXiv:2012.15840, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 174, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 506, + 188 + ], + "score": 1.0, + "content": "[25] Niki Parmar, Ashish Vaswani, Jakob Uszkoreit, Lukasz Kaiser, Noam Shazeer, Alexander Ku,", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 184, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 126, + 184, + 506, + 200 + ], + "score": 1.0, + "content": "and Dustin Tran. Image transformer. In Proc. Int. Conf. Mach. Learn., volume 80, pages", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 195, + 203, + 210 + ], + "spans": [ + { + "bbox": [ + 127, + 195, + 203, + 210 + ], + "score": 1.0, + "content": "4055–4064, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 207, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 507, + 223 + ], + "score": 1.0, + "content": "[26] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 219, + 449, + 234 + ], + "spans": [ + { + "bbox": [ + 126, + 219, + 449, + 234 + ], + "score": 1.0, + "content": "Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "score": 1.0, + "content": "[27] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis Tay, Jiashi Feng, and", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 241, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 126, + 241, + 507, + 257 + ], + "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": [ + 127, + 253, + 290, + 267 + ], + "spans": [ + { + "bbox": [ + 127, + 253, + 290, + 267 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2101.11986, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 264, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 506, + 280 + ], + "score": 1.0, + "content": "[28] Zihang Jiang, Qibin Hou, Li Yuan, Daquan Zhou, Xiaojie Jin, Anran Wang, and Jiashi Feng.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 276, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 276, + 240, + 291 + ], + "score": 1.0, + "content": "Token labeling: Training an", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 241, + 276, + 268, + 287 + ], + "score": 0.86, + "content": "8 5 . 4 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 268, + 276, + 506, + 291 + ], + "score": 1.0, + "content": "top-1 accuracy vision transformer with 56M parameters on", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 286, + 325, + 300 + ], + "spans": [ + { + "bbox": [ + 126, + 286, + 325, + 300 + ], + "score": 1.0, + "content": "ImageNet. arXiv: Comp. Res. Repository, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "[29] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 310, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 127, + 310, + 506, + 323 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605,", + "type": "text", + "cross_page": true + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 320, + 155, + 334 + ], + "spans": [ + { + "bbox": [ + 126, + 320, + 155, + 334 + ], + "score": 1.0, + "content": "2021.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "score": 1.0, + "content": "[30] Chun-Fu Chen, Quanfu Fan, and Rameswar Panda. CrossViT: Cross-attention multi-scale", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 343, + 464, + 358 + ], + "spans": [ + { + "bbox": [ + 126, + 343, + 464, + 358 + ], + "score": 1.0, + "content": "vision transformer for image classification. arXiv preprint arXiv:2103.14899, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 354, + 507, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 507, + 370 + ], + "score": 1.0, + "content": "[31] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang.", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 365, + 496, + 380 + ], + "spans": [ + { + "bbox": [ + 127, + 365, + 496, + 380 + ], + "score": 1.0, + "content": "CvT: Introducing convolutions to vision transformers. arXiv: Comp. Res. Repository, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 377, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 392 + ], + "score": 1.0, + "content": "[32] Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. Deformable", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 128, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 128, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "detr: Deformable transformers for end-to-end object detection. In Proc. Int. Conf. Learn.", + "type": "text", + "cross_page": true + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 401, + 221, + 412 + ], + "spans": [ + { + "bbox": [ + 126, + 401, + 221, + 412 + ], + "score": 1.0, + "content": "Representations, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 411, + 507, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 507, + 426 + ], + "score": 1.0, + "content": "[33] Tsung-Yi Lin, Piotr Dollár, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 420, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 125, + 420, + 507, + 439 + ], + "score": 1.0, + "content": "Feature pyramid networks for object detection. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn.,", + "type": "text", + "cross_page": true + } + ], + "index": 31 + }, + { + "bbox": [ + 127, + 434, + 229, + 447 + ], + "spans": [ + { + "bbox": [ + 127, + 434, + 229, + 447 + ], + "score": 1.0, + "content": "pages 2117–2125, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 446, + 507, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 507, + 459 + ], + "score": 1.0, + "content": "[34] Yuhui Yuan, Lang Huang, Jianyuan Guo, Chao Zhang, Xilin Chen, and Jingdong Wang. OCNet:", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 456, + 448, + 471 + ], + "spans": [ + { + "bbox": [ + 127, + 456, + 448, + 471 + ], + "score": 1.0, + "content": "Object context network for scene parsing. arXiv: Comp. Res. Repository, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 467, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 482 + ], + "score": 1.0, + "content": "[35] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. ImageNet classification with deep", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 478, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 125, + 478, + 506, + 494 + ], + "score": 1.0, + "content": "convolutional neural networks. In Proc. Advances in Neural Inf. Process. Syst., volume 25,", + "type": "text", + "cross_page": true + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 490, + 228, + 504 + ], + "spans": [ + { + "bbox": [ + 126, + 490, + 228, + 504 + ], + "score": 1.0, + "content": "pages 1097–1105, 2012.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 501, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 516 + ], + "score": 1.0, + "content": "[36] Laurent Sifre and Stéphane Mallat. Rigid-motion scattering for texture classification. arXiv", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 513, + 262, + 527 + ], + "spans": [ + { + "bbox": [ + 126, + 513, + 262, + 527 + ], + "score": 1.0, + "content": "preprint arXiv:1403.1687, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 522, + 507, + 541 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 507, + 541 + ], + "score": 1.0, + "content": "[37] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. In Proc. Int. Conf.", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 536, + 251, + 549 + ], + "spans": [ + { + "bbox": [ + 127, + 536, + 251, + 549 + ], + "score": 1.0, + "content": "Learn. Representations, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 547, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 562 + ], + "score": 1.0, + "content": "[38] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Weinberger. Deep networks with", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 558, + 453, + 573 + ], + "spans": [ + { + "bbox": [ + 126, + 558, + 453, + 573 + ], + "score": 1.0, + "content": "stochastic depth. In Proc. Eur. Conf. Comp. Vis., pages 646–661. Springer, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 569, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 506, + 585 + ], + "score": 1.0, + "content": "[39] Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng", + "type": "text", + "cross_page": true + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 581, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 127, + 581, + 506, + 596 + ], + "score": 1.0, + "content": "Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual", + "type": "text", + "cross_page": true + } + ], + "index": 45 + }, + { + "bbox": [ + 126, + 591, + 481, + 606 + ], + "spans": [ + { + "bbox": [ + 126, + 591, + 481, + 606 + ], + "score": 1.0, + "content": "recognition challenge. International journal of computer vision, 115(3):211–252, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 46, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 602, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 602, + 506, + 619 + ], + "score": 1.0, + "content": "[40] Ilija Radosavovic, Raj Prateek Kosaraju, Ross Girshick, Kaiming He, and Piotr Dollár. Design-", + "type": "text", + "cross_page": true + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 126, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "ing network design spaces. In Proceedings of the IEEE/CVF Conference on Computer Vision", + "type": "text", + "cross_page": true + } + ], + "index": 48 + }, + { + "bbox": [ + 126, + 626, + 342, + 641 + ], + "spans": [ + { + "bbox": [ + 126, + 626, + 342, + 641 + ], + "score": 1.0, + "content": "and Pattern Recognition, pages 10428–10436, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 49, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 637, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 653 + ], + "score": 1.0, + "content": "[41] Changlin Li, Tao Tang, Guangrun Wang, Jiefeng Peng, Bing Wang, Xiaodan Liang, and Xiaojun", + "type": "text", + "cross_page": true + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 126, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "Chang. Bossnas: Exploring hybrid cnn-transformers with block-wisely self-supervised neural", + "type": "text", + "cross_page": true + } + ], + "index": 51 + }, + { + "bbox": [ + 127, + 660, + 371, + 673 + ], + "spans": [ + { + "bbox": [ + 127, + 660, + 371, + 673 + ], + "score": 1.0, + "content": "architecture search. arXiv preprint arXiv:2103.12424, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 52, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 671, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 507, + 686 + ], + "score": 1.0, + "content": "[42] Bolei Zhou, Hang Zhao, Xavier Puig, Sanja Fidler, Adela Barriuso, and Antonio Torralba.", + "type": "text", + "cross_page": true + } + ], + "index": 53, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 681, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 126, + 681, + 506, + 698 + ], + "score": 1.0, + "content": "Scene parsing through ADE20k dataset. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages", + "type": "text", + "cross_page": true + } + ], + "index": 54 + }, + { + "bbox": [ + 127, + 691, + 194, + 707 + ], + "spans": [ + { + "bbox": [ + 127, + 691, + 194, + 707 + ], + "score": 1.0, + "content": "633–641, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 55, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "[43] Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollár. Panoptic feature pyramid", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 83, + 457, + 97 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 457, + 97 + ], + "score": 1.0, + "content": "networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 6399–6408, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 94, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 109 + ], + "score": 1.0, + "content": "[44] Tete Xiao, Yingcheng Liu, Bolei Zhou, Yuning Jiang, and Jian Sun. Unified perceptual parsing", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 107, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 127, + 107, + 505, + 119 + ], + "score": 1.0, + "content": "for scene understanding. In Proceedings of the European Conference on Computer Vision", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 117, + 254, + 130 + ], + "spans": [ + { + "bbox": [ + 127, + 117, + 254, + 130 + ], + "score": 1.0, + "content": "(ECCV), pages 418–434, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 129, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 107, + 129, + 506, + 143 + ], + "score": 1.0, + "content": "[45] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 127, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "Fu, Jianfeng Feng, Tao Xiang, Philip H.S. Torr, and Li Zhang. Rethinking semantic segmentation", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 150, + 437, + 165 + ], + "spans": [ + { + "bbox": [ + 127, + 150, + 437, + 165 + ], + "score": 1.0, + "content": "from a sequence-to-sequence perspective with transformers. In CVPR, 2021.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 107, + 164, + 126, + 175 + ], + "score": 1.0, + "content": "[46]", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 126, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 173, + 445, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 173, + 445, + 187 + ], + "score": 1.0, + "content": "object detection. In Proc. IEEE Int. Conf. Comp. Vis., pages 2980–2988, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "[47] Kaiming He, Georgia Gkioxari, Piotr Dollár, and Ross Girshick. Mask R-CNN. In Proc. IEEE", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 196, + 317, + 210 + ], + "spans": [ + { + "bbox": [ + 127, + 196, + 317, + 210 + ], + "score": 1.0, + "content": "Int. Conf. Comp. Vis., pages 2961–2969, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 208, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 507, + 222 + ], + "score": 1.0, + "content": "[48] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan,", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 218, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 127, + 218, + 506, + 232 + ], + "score": 1.0, + "content": "Piotr Dollár, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Proc.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 230, + 310, + 244 + ], + "spans": [ + { + "bbox": [ + 127, + 230, + 310, + 244 + ], + "score": 1.0, + "content": "Eur. Conf. Comp. Vis., pages 740–755, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 242, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 107, + 242, + 506, + 256 + ], + "score": 1.0, + "content": "[49] Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun,", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 127, + 252, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 127, + 252, + 506, + 267 + ], + "score": 1.0, + "content": "Wansen Feng, Ziwei Liu, Jiarui Xu, Zheng Zhang, Dazhi Cheng, Chenchen Zhu, Tianheng", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 263, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 127, + 263, + 506, + 278 + ], + "score": 1.0, + "content": "Cheng, Qijie Zhao, Buyu Li, Xin Lu, Rui Zhu, Yue Wu, Jifeng Dai, Jingdong Wang, Jianping", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 274, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 127, + 274, + 506, + 289 + ], + "score": 1.0, + "content": "Shi, Wanli Ouyang, Chen Change Loy, and Dahua Lin. MMDetection: Open MMLab detection", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 285, + 390, + 298 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 390, + 298 + ], + "score": 1.0, + "content": "toolbox and benchmark. arXiv preprint arXiv:1906.07155, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_end_line": true + } + ], + "index": 28, + "bbox_fs": [ + 104, + 104, + 509, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 77, + 507, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 72, + 507, + 88 + ], + "spans": [ + { + "bbox": [ + 105, + 72, + 507, + 88 + ], + "score": 1.0, + "content": "[21] Yanhong Zeng, Jianlong Fu, and Hongyang Chao. Learning joint spatial-temporal transforma-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 83, + 490, + 98 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 490, + 98 + ], + "score": 1.0, + "content": "tions for video inpainting. In Proc. Eur. Conf. Comp. Vis., pages 528–543. Springer, 2020.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 95, + 506, + 110 + ], + "spans": [ + { + "bbox": [ + 105, + 95, + 506, + 110 + ], + "score": 1.0, + "content": "[22] Zhigang Dai, Bolun Cai, Yugeng Lin, and Junying Chen. UP-DETR: Unsupervised pre-training", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 126, + 106, + 446, + 121 + ], + "spans": [ + { + "bbox": [ + 126, + 106, + 446, + 121 + ], + "score": 1.0, + "content": "for object detection with transformers. arXiv preprint arXiv:2011.09094, 2020.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 117, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 505, + 132 + ], + "score": 1.0, + "content": "[23] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 127, + 128, + 507, + 144 + ], + "spans": [ + { + "bbox": [ + 127, + 128, + 507, + 144 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv: Comp. Res. Repository, 2021.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 141, + 505, + 155 + ], + "score": 1.0, + "content": "[24] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 126, + 151, + 507, + 166 + ], + "spans": [ + { + "bbox": [ + 126, + 151, + 507, + 166 + ], + "score": 1.0, + "content": "Fu, Jianfeng Feng, Tao Xiang, Philip HS Torr, et al. Rethinking semantic segmentation from a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 126, + 162, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 126, + 162, + 505, + 177 + ], + "score": 1.0, + "content": "sequence-to-sequence perspective with transformers. arXiv preprint arXiv:2012.15840, 2020.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 174, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 506, + 188 + ], + "score": 1.0, + "content": "[25] Niki Parmar, Ashish Vaswani, Jakob Uszkoreit, Lukasz Kaiser, Noam Shazeer, Alexander Ku,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 126, + 184, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 126, + 184, + 506, + 200 + ], + "score": 1.0, + "content": "and Dustin Tran. Image transformer. In Proc. Int. Conf. Mach. Learn., volume 80, pages", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 195, + 203, + 210 + ], + "spans": [ + { + "bbox": [ + 127, + 195, + 203, + 210 + ], + "score": 1.0, + "content": "4055–4064, 2018.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 207, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 507, + 223 + ], + "score": 1.0, + "content": "[26] Hugo Touvron, Matthieu Cord, Alexandre Sablayrolles, Gabriel Synnaeve, and Hervé Jégou.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 219, + 449, + 234 + ], + "spans": [ + { + "bbox": [ + 126, + 219, + 449, + 234 + ], + "score": 1.0, + "content": "Going deeper with image transformers. arXiv preprint arXiv:2103.17239, 2021.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 506, + 246 + ], + "score": 1.0, + "content": "[27] Li Yuan, Yunpeng Chen, Tao Wang, Weihao Yu, Yujun Shi, Francis Tay, Jiashi Feng, and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 241, + 507, + 257 + ], + "spans": [ + { + "bbox": [ + 126, + 241, + 507, + 257 + ], + "score": 1.0, + "content": "Shuicheng Yan. Tokens-to-token ViT: Training vision transformers from scratch on imagenet.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 253, + 290, + 267 + ], + "spans": [ + { + "bbox": [ + 127, + 253, + 290, + 267 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2101.11986, 2021.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 264, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 506, + 280 + ], + "score": 1.0, + "content": "[28] Zihang Jiang, Qibin Hou, Li Yuan, Daquan Zhou, Xiaojie Jin, Anran Wang, and Jiashi Feng.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 126, + 276, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 126, + 276, + 240, + 291 + ], + "score": 1.0, + "content": "Token labeling: Training an", + "type": "text" + }, + { + "bbox": [ + 241, + 276, + 268, + 287 + ], + "score": 0.86, + "content": "8 5 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 276, + 506, + 291 + ], + "score": 1.0, + "content": "top-1 accuracy vision transformer with 56M parameters on", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 126, + 286, + 325, + 300 + ], + "spans": [ + { + "bbox": [ + 126, + 286, + 325, + 300 + ], + "score": 1.0, + "content": "ImageNet. arXiv: Comp. Res. Repository, 2021.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 299, + 505, + 312 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 505, + 312 + ], + "score": 1.0, + "content": "[29] Aravind Srinivas, Tsung-Yi Lin, Niki Parmar, Jonathon Shlens, Pieter Abbeel, and Ashish", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 127, + 310, + 506, + 323 + ], + "spans": [ + { + "bbox": [ + 127, + 310, + 506, + 323 + ], + "score": 1.0, + "content": "Vaswani. Bottleneck transformers for visual recognition. arXiv preprint arXiv:2101.11605,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 126, + 320, + 155, + 334 + ], + "spans": [ + { + "bbox": [ + 126, + 320, + 155, + 334 + ], + "score": 1.0, + "content": "2021.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 347 + ], + "score": 1.0, + "content": "[30] Chun-Fu Chen, Quanfu Fan, and Rameswar Panda. CrossViT: Cross-attention multi-scale", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 343, + 464, + 358 + ], + "spans": [ + { + "bbox": [ + 126, + 343, + 464, + 358 + ], + "score": 1.0, + "content": "vision transformer for image classification. arXiv preprint arXiv:2103.14899, 2021.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 354, + 507, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 507, + 370 + ], + "score": 1.0, + "content": "[31] Haiping Wu, Bin Xiao, Noel Codella, Mengchen Liu, Xiyang Dai, Lu Yuan, and Lei Zhang.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 127, + 365, + 496, + 380 + ], + "spans": [ + { + "bbox": [ + 127, + 365, + 496, + 380 + ], + "score": 1.0, + "content": "CvT: Introducing convolutions to vision transformers. arXiv: Comp. Res. Repository, 2021.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 377, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 392 + ], + "score": 1.0, + "content": "[32] Xizhou Zhu, Weijie Su, Lewei Lu, Bin Li, Xiaogang Wang, and Jifeng Dai. Deformable", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 128, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 128, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "detr: Deformable transformers for end-to-end object detection. In Proc. Int. Conf. Learn.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 126, + 401, + 221, + 412 + ], + "spans": [ + { + "bbox": [ + 126, + 401, + 221, + 412 + ], + "score": 1.0, + "content": "Representations, 2021.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 411, + 507, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 507, + 426 + ], + "score": 1.0, + "content": "[33] Tsung-Yi Lin, Piotr Dollár, Ross Girshick, Kaiming He, Bharath Hariharan, and Serge Belongie.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 125, + 420, + 507, + 439 + ], + "spans": [ + { + "bbox": [ + 125, + 420, + 507, + 439 + ], + "score": 1.0, + "content": "Feature pyramid networks for object detection. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 127, + 434, + 229, + 447 + ], + "spans": [ + { + "bbox": [ + 127, + 434, + 229, + 447 + ], + "score": 1.0, + "content": "pages 2117–2125, 2017.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 446, + 507, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 507, + 459 + ], + "score": 1.0, + "content": "[34] Yuhui Yuan, Lang Huang, Jianyuan Guo, Chao Zhang, Xilin Chen, and Jingdong Wang. OCNet:", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 127, + 456, + 448, + 471 + ], + "spans": [ + { + "bbox": [ + 127, + 456, + 448, + 471 + ], + "score": 1.0, + "content": "Object context network for scene parsing. arXiv: Comp. Res. Repository, 2021.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 467, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 482 + ], + "score": 1.0, + "content": "[35] Alex Krizhevsky, Ilya Sutskever, and Geoffrey E. Hinton. ImageNet classification with deep", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 125, + 478, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 125, + 478, + 506, + 494 + ], + "score": 1.0, + "content": "convolutional neural networks. In Proc. Advances in Neural Inf. Process. Syst., volume 25,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 126, + 490, + 228, + 504 + ], + "spans": [ + { + "bbox": [ + 126, + 490, + 228, + 504 + ], + "score": 1.0, + "content": "pages 1097–1105, 2012.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 501, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 516 + ], + "score": 1.0, + "content": "[36] Laurent Sifre and Stéphane Mallat. Rigid-motion scattering for texture classification. arXiv", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 126, + 513, + 262, + 527 + ], + "spans": [ + { + "bbox": [ + 126, + 513, + 262, + 527 + ], + "score": 1.0, + "content": "preprint arXiv:1403.1687, 2014.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 522, + 507, + 541 + ], + "spans": [ + { + "bbox": [ + 104, + 522, + 507, + 541 + ], + "score": 1.0, + "content": "[37] Ilya Loshchilov and Frank Hutter. Decoupled weight decay regularization. In Proc. Int. Conf.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 127, + 536, + 251, + 549 + ], + "spans": [ + { + "bbox": [ + 127, + 536, + 251, + 549 + ], + "score": 1.0, + "content": "Learn. Representations, 2019.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 547, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 562 + ], + "score": 1.0, + "content": "[38] Gao Huang, Yu Sun, Zhuang Liu, Daniel Sedra, and Kilian Weinberger. Deep networks with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 126, + 558, + 453, + 573 + ], + "spans": [ + { + "bbox": [ + 126, + 558, + 453, + 573 + ], + "score": 1.0, + "content": "stochastic depth. In Proc. Eur. Conf. Comp. Vis., pages 646–661. Springer, 2016.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 569, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 506, + 585 + ], + "score": 1.0, + "content": "[39] Olga Russakovsky, Jia Deng, Hao Su, Jonathan Krause, Sanjeev Satheesh, Sean Ma, Zhiheng", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 127, + 581, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 127, + 581, + 506, + 596 + ], + "score": 1.0, + "content": "Huang, Andrej Karpathy, Aditya Khosla, Michael Bernstein, et al. Imagenet large scale visual", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 126, + 591, + 481, + 606 + ], + "spans": [ + { + "bbox": [ + 126, + 591, + 481, + 606 + ], + "score": 1.0, + "content": "recognition challenge. International journal of computer vision, 115(3):211–252, 2015.", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 602, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 602, + 506, + 619 + ], + "score": 1.0, + "content": "[40] Ilija Radosavovic, Raj Prateek Kosaraju, Ross Girshick, Kaiming He, and Piotr Dollár. Design-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 126, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 126, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "ing network design spaces. In Proceedings of the IEEE/CVF Conference on Computer Vision", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 126, + 626, + 342, + 641 + ], + "spans": [ + { + "bbox": [ + 126, + 626, + 342, + 641 + ], + "score": 1.0, + "content": "and Pattern Recognition, pages 10428–10436, 2020.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 637, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 653 + ], + "score": 1.0, + "content": "[41] Changlin Li, Tao Tang, Guangrun Wang, Jiefeng Peng, Bing Wang, Xiaodan Liang, and Xiaojun", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 126, + 648, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 126, + 648, + 505, + 663 + ], + "score": 1.0, + "content": "Chang. Bossnas: Exploring hybrid cnn-transformers with block-wisely self-supervised neural", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 127, + 660, + 371, + 673 + ], + "spans": [ + { + "bbox": [ + 127, + 660, + 371, + 673 + ], + "score": 1.0, + "content": "architecture search. arXiv preprint arXiv:2103.12424, 2021.", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 671, + 507, + 686 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 507, + 686 + ], + "score": 1.0, + "content": "[42] Bolei Zhou, Hang Zhao, Xavier Puig, Sanja Fidler, Adela Barriuso, and Antonio Torralba.", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 126, + 681, + 506, + 698 + ], + "spans": [ + { + "bbox": [ + 126, + 681, + 506, + 698 + ], + "score": 1.0, + "content": "Scene parsing through ADE20k dataset. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 127, + 691, + 194, + 707 + ], + "spans": [ + { + "bbox": [ + 127, + 691, + 194, + 707 + ], + "score": 1.0, + "content": "633–641, 2017.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 27.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": "list", + "bbox": [ + 105, + 77, + 507, + 704 + ], + "lines": [], + "index": 27.5, + "bbox_fs": [ + 104, + 72, + 507, + 707 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 72, + 506, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "spans": [ + { + "bbox": [ + 106, + 73, + 505, + 85 + ], + "score": 1.0, + "content": "[43] Alexander Kirillov, Ross Girshick, Kaiming He, and Piotr Dollár. Panoptic feature pyramid", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 126, + 83, + 457, + 97 + ], + "spans": [ + { + "bbox": [ + 126, + 83, + 457, + 97 + ], + "score": 1.0, + "content": "networks. In Proc. IEEE Conf. Comp. Vis. Patt. Recogn., pages 6399–6408, 2019.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 94, + 505, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 109 + ], + "score": 1.0, + "content": "[44] Tete Xiao, Yingcheng Liu, Bolei Zhou, Yuning Jiang, and Jian Sun. Unified perceptual parsing", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 127, + 107, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 127, + 107, + 505, + 119 + ], + "score": 1.0, + "content": "for scene understanding. In Proceedings of the European Conference on Computer Vision", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 127, + 117, + 254, + 130 + ], + "spans": [ + { + "bbox": [ + 127, + 117, + 254, + 130 + ], + "score": 1.0, + "content": "(ECCV), pages 418–434, 2018.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 129, + 506, + 143 + ], + "spans": [ + { + "bbox": [ + 107, + 129, + 506, + 143 + ], + "score": 1.0, + "content": "[45] Sixiao Zheng, Jiachen Lu, Hengshuang Zhao, Xiatian Zhu, Zekun Luo, Yabiao Wang, Yanwei", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 127, + 140, + 505, + 153 + ], + "spans": [ + { + "bbox": [ + 127, + 140, + 505, + 153 + ], + "score": 1.0, + "content": "Fu, Jianfeng Feng, Tao Xiang, Philip H.S. Torr, and Li Zhang. Rethinking semantic segmentation", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 127, + 150, + 437, + 165 + ], + "spans": [ + { + "bbox": [ + 127, + 150, + 437, + 165 + ], + "score": 1.0, + "content": "from a sequence-to-sequence perspective with transformers. In CVPR, 2021.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 162, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 107, + 164, + 126, + 175 + ], + "score": 1.0, + "content": "[46]", + "type": "text" + }, + { + "bbox": [ + 126, + 162, + 506, + 176 + ], + "score": 1.0, + "content": "Tsung-Yi Lin, Priya Goyal, Ross Girshick, Kaiming He, and Piotr Dollár. Focal loss for dense", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 127, + 173, + 445, + 187 + ], + "spans": [ + { + "bbox": [ + 127, + 173, + 445, + 187 + ], + "score": 1.0, + "content": "object detection. In Proc. IEEE Int. Conf. Comp. Vis., pages 2980–2988, 2017.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "[47] Kaiming He, Georgia Gkioxari, Piotr Dollár, and Ross Girshick. Mask R-CNN. In Proc. IEEE", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 127, + 196, + 317, + 210 + ], + "spans": [ + { + "bbox": [ + 127, + 196, + 317, + 210 + ], + "score": 1.0, + "content": "Int. Conf. Comp. Vis., pages 2961–2969, 2017.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 208, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 507, + 222 + ], + "score": 1.0, + "content": "[48] Tsung-Yi Lin, Michael Maire, Serge Belongie, James Hays, Pietro Perona, Deva Ramanan,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 127, + 218, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 127, + 218, + 506, + 232 + ], + "score": 1.0, + "content": "Piotr Dollár, and C Lawrence Zitnick. Microsoft coco: Common objects in context. In Proc.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 127, + 230, + 310, + 244 + ], + "spans": [ + { + "bbox": [ + 127, + 230, + 310, + 244 + ], + "score": 1.0, + "content": "Eur. Conf. Comp. Vis., pages 740–755, 2014.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 242, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 107, + 242, + 506, + 256 + ], + "score": 1.0, + "content": "[49] Kai Chen, Jiaqi Wang, Jiangmiao Pang, Yuhang Cao, Yu Xiong, Xiaoxiao Li, Shuyang Sun,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 127, + 252, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 127, + 252, + 506, + 267 + ], + "score": 1.0, + "content": "Wansen Feng, Ziwei Liu, Jiarui Xu, Zheng Zhang, Dazhi Cheng, Chenchen Zhu, Tianheng", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 127, + 263, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 127, + 263, + 506, + 278 + ], + "score": 1.0, + "content": "Cheng, Qijie Zhao, Buyu Li, Xin Lu, Rui Zhu, Yue Wu, Jifeng Dai, Jingdong Wang, Jianping", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 127, + 274, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 127, + 274, + 506, + 289 + ], + "score": 1.0, + "content": "Shi, Wanli Ouyang, Chen Change Loy, and Dahua Lin. MMDetection: Open MMLab detection", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 127, + 285, + 390, + 298 + ], + "spans": [ + { + "bbox": [ + 127, + 285, + 390, + 298 + ], + "score": 1.0, + "content": "toolbox and benchmark. arXiv preprint arXiv:1906.07155, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 9.5 + } + ], + "page_idx": 11, + "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": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "list", + "bbox": [ + 105, + 72, + 506, + 298 + ], + "lines": [], + "index": 9.5, + "bbox_fs": [ + 106, + 73, + 507, + 298 + ], + "lines_deleted": true + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_model.json b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_model.json new file mode 100644 index 0000000000000000000000000000000000000000..63e5436678ae0a44b54ab60bd954d5d8d2b42961 --- /dev/null +++ b/parse/train/5kTlVBkzSRx/5kTlVBkzSRx_model.json @@ -0,0 +1,12398 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 829, + 1304, + 829, + 1304, + 1224, + 398, + 1224 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1573, + 1404, + 1573, + 1404, + 1936, + 298, + 1936 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1346, + 1405, + 1346, + 1405, + 1559, + 298, + 1559 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 316, + 578, + 1435, + 578, + 1435, + 683, + 316, + 683 + ], + "score": 0.96 + }, + { + "category_id": 0, + "poly": [ + 323, + 270, + 1380, + 270, + 1380, + 380, + 323, + 380 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 496, + 486, + 1261, + 486, + 1261, + 563, + 496, + 563 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 1276, + 530, + 1276, + 530, + 1315, + 299, + 1315 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 333, + 1958, + 567, + 1958, + 567, + 1985, + 333, + 1985 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 297, + 2033, + 1070, + 2033, + 1070, + 2062, + 297, + 2062 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 788, + 761, + 912, + 761, + 912, + 798, + 788, + 798 + ], + "score": 0.887 + }, + { + "category_id": 13, + "poly": [ + 645, + 488, + 710, + 488, + 710, + 521, + 645, + 521 + ], + "score": 0.34, + "latex": "\\mathbf { C h u ^ { 1 } }" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 270.0, + 1377.0, + 270.0, + 1377.0, + 332.0, + 321.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 323.0, + 1064.0, + 323.0, + 1064.0, + 384.0, + 634.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1273.0, + 536.0, + 1273.0, + 536.0, + 1321.0, + 292.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1950.0, + 572.0, + 1950.0, + 572.0, + 1993.0, + 330.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2028.0, + 1074.0, + 2028.0, + 1074.0, + 2066.0, + 295.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 761.0, + 917.0, + 761.0, + 917.0, + 800.0, + 784.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 830.0, + 1305.0, + 830.0, + 1305.0, + 865.0, + 396.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 862.0, + 1304.0, + 862.0, + 1304.0, + 893.0, + 395.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 887.0, + 1308.0, + 887.0, + 1308.0, + 927.0, + 393.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 920.0, + 1305.0, + 920.0, + 1305.0, + 953.0, + 394.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 951.0, + 1306.0, + 951.0, + 1306.0, + 986.0, + 394.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 983.0, + 1308.0, + 983.0, + 1308.0, + 1013.0, + 393.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1009.0, + 1307.0, + 1009.0, + 1307.0, + 1047.0, + 392.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1041.0, + 1306.0, + 1041.0, + 1306.0, + 1079.0, + 393.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1073.0, + 1307.0, + 1073.0, + 1307.0, + 1107.0, + 393.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1103.0, + 1306.0, + 1103.0, + 1306.0, + 1137.0, + 393.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1134.0, + 1305.0, + 1134.0, + 1305.0, + 1169.0, + 393.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1165.0, + 1305.0, + 1165.0, + 1305.0, + 1200.0, + 394.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1192.0, + 1122.0, + 1192.0, + 1122.0, + 1228.0, + 394.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1572.0, + 1406.0, + 1572.0, + 1406.0, + 1610.0, + 294.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1605.0, + 1404.0, + 1605.0, + 1404.0, + 1639.0, + 294.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1634.0, + 1406.0, + 1634.0, + 1406.0, + 1669.0, + 292.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1665.0, + 1406.0, + 1665.0, + 1406.0, + 1699.0, + 294.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1695.0, + 1405.0, + 1695.0, + 1405.0, + 1729.0, + 294.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1724.0, + 1405.0, + 1724.0, + 1405.0, + 1761.0, + 293.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1753.0, + 1404.0, + 1753.0, + 1404.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1785.0, + 1406.0, + 1785.0, + 1406.0, + 1821.0, + 293.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1815.0, + 1407.0, + 1815.0, + 1407.0, + 1851.0, + 292.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1847.0, + 1406.0, + 1847.0, + 1406.0, + 1881.0, + 294.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1876.0, + 1408.0, + 1876.0, + 1408.0, + 1910.0, + 294.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1905.0, + 1406.0, + 1905.0, + 1406.0, + 1940.0, + 295.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1346.0, + 1405.0, + 1346.0, + 1405.0, + 1380.0, + 295.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1374.0, + 1406.0, + 1374.0, + 1406.0, + 1415.0, + 292.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1406.0, + 1408.0, + 1406.0, + 1408.0, + 1443.0, + 292.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1439.0, + 1407.0, + 1439.0, + 1407.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1497.0, + 1403.0, + 1497.0, + 1403.0, + 1531.0, + 295.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1532.0, + 774.0, + 1532.0, + 774.0, + 1563.0, + 296.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 576.0, + 706.0, + 576.0, + 706.0, + 615.0, + 536.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 575.0, + 1215.0, + 575.0, + 1215.0, + 618.0, + 764.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 615.0, + 1441.0, + 615.0, + 1441.0, + 660.0, + 311.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 644.0, + 1128.0, + 644.0, + 1128.0, + 693.0, + 621.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 484.0, + 644.0, + 484.0, + 644.0, + 525.0, + 499.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 484.0, + 1253.0, + 484.0, + 1253.0, + 525.0, + 711.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 527.0, + 1271.0, + 527.0, + 1271.0, + 562.0, + 492.0, + 562.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 369, + 1405, + 369, + 1405, + 826, + 298, + 826 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1625, + 1404, + 1625, + 1404, + 1901, + 298, + 1901 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1369, + 1405, + 1369, + 1405, + 1613, + 297, + 1613 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 840, + 1404, + 840, + 1404, + 962, + 299, + 962 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1232, + 1404, + 1232, + 1404, + 1354, + 299, + 1354 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1096, + 1405, + 1096, + 1405, + 1218, + 298, + 1218 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 203, + 1403, + 203, + 1403, + 355, + 299, + 355 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 300, + 1915, + 1403, + 1915, + 1403, + 2007, + 300, + 2007 + ], + "score": 0.965 + }, + { + "category_id": 0, + "poly": [ + 299, + 1017, + 548, + 1017, + 548, + 1055, + 299, + 1055 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.707 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 859, + 2062, + 859, + 2084, + 841, + 2084 + ], + "score": 0.182 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1014.0, + 552.0, + 1014.0, + 552.0, + 1060.0, + 292.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 371.0, + 1403.0, + 371.0, + 1403.0, + 402.0, + 296.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 401.0, + 1405.0, + 401.0, + 1405.0, + 435.0, + 293.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 427.0, + 1410.0, + 427.0, + 1410.0, + 468.0, + 293.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 461.0, + 1406.0, + 461.0, + 1406.0, + 497.0, + 293.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 488.0, + 1409.0, + 488.0, + 1409.0, + 529.0, + 292.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 520.0, + 1406.0, + 520.0, + 1406.0, + 558.0, + 293.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 551.0, + 1405.0, + 551.0, + 1405.0, + 586.0, + 295.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 585.0, + 1403.0, + 585.0, + 1403.0, + 616.0, + 296.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 611.0, + 1406.0, + 611.0, + 1406.0, + 648.0, + 293.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 644.0, + 1405.0, + 644.0, + 1405.0, + 678.0, + 295.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 672.0, + 1403.0, + 672.0, + 1403.0, + 707.0, + 295.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 738.0, + 295.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 731.0, + 1407.0, + 731.0, + 1407.0, + 770.0, + 292.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 798.0, + 293.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 795.0, + 927.0, + 795.0, + 927.0, + 830.0, + 295.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 1405.0, + 1623.0, + 1405.0, + 1663.0, + 293.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1656.0, + 1406.0, + 1656.0, + 1406.0, + 1693.0, + 294.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1723.0, + 293.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1715.0, + 1406.0, + 1715.0, + 1406.0, + 1754.0, + 293.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1749.0, + 1405.0, + 1749.0, + 1405.0, + 1785.0, + 294.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1776.0, + 1406.0, + 1776.0, + 1406.0, + 1814.0, + 293.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1807.0, + 1408.0, + 1807.0, + 1408.0, + 1843.0, + 295.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1839.0, + 1405.0, + 1839.0, + 1405.0, + 1875.0, + 294.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1871.0, + 933.0, + 1871.0, + 933.0, + 1904.0, + 296.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1368.0, + 1406.0, + 1368.0, + 1406.0, + 1405.0, + 292.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1400.0, + 1405.0, + 1400.0, + 1405.0, + 1434.0, + 295.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1430.0, + 1405.0, + 1430.0, + 1405.0, + 1464.0, + 295.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1461.0, + 1405.0, + 1461.0, + 1405.0, + 1495.0, + 294.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1491.0, + 1405.0, + 1491.0, + 1405.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1521.0, + 1408.0, + 1521.0, + 1408.0, + 1555.0, + 292.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1587.0, + 294.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1583.0, + 426.0, + 1583.0, + 426.0, + 1615.0, + 293.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 872.0, + 295.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 869.0, + 1406.0, + 869.0, + 1406.0, + 901.0, + 295.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 902.0, + 1405.0, + 902.0, + 1405.0, + 935.0, + 295.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 928.0, + 1142.0, + 928.0, + 1142.0, + 968.0, + 293.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1232.0, + 1406.0, + 1232.0, + 1406.0, + 1268.0, + 294.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1263.0, + 1408.0, + 1263.0, + 1408.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1294.0, + 1405.0, + 1294.0, + 1405.0, + 1328.0, + 293.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1322.0, + 981.0, + 1322.0, + 981.0, + 1360.0, + 293.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1097.0, + 1407.0, + 1097.0, + 1407.0, + 1129.0, + 297.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1127.0, + 1407.0, + 1127.0, + 1407.0, + 1159.0, + 295.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1156.0, + 1406.0, + 1156.0, + 1406.0, + 1194.0, + 293.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1187.0, + 818.0, + 1187.0, + 818.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 204.0, + 1404.0, + 204.0, + 1404.0, + 237.0, + 297.0, + 237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 234.0, + 1404.0, + 234.0, + 1404.0, + 267.0, + 297.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1407.0, + 261.0, + 1407.0, + 300.0, + 294.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1407.0, + 292.0, + 1407.0, + 330.0, + 293.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 325.0, + 399.0, + 325.0, + 399.0, + 357.0, + 291.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1951.0, + 294.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1403.0, + 1943.0, + 1403.0, + 1981.0, + 295.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1977.0, + 1405.0, + 1977.0, + 1405.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1244, + 1404, + 1244, + 1404, + 1609, + 298, + 1609 + ], + "score": 0.986 + }, + { + "category_id": 1, + "poly": [ + 298, + 986, + 1404, + 986, + 1404, + 1230, + 298, + 1230 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 760, + 1404, + 760, + 1404, + 973, + 298, + 973 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 309, + 1405, + 309, + 1405, + 432, + 298, + 432 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 544, + 1404, + 544, + 1404, + 667, + 298, + 667 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1827, + 1403, + 1827, + 1403, + 1981, + 299, + 1981 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1643, + 1405, + 1643, + 1405, + 1736, + 300, + 1736 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 202, + 1402, + 202, + 1402, + 294, + 299, + 294 + ], + "score": 0.964 + }, + { + "category_id": 0, + "poly": [ + 300, + 473, + 635, + 473, + 635, + 511, + 300, + 511 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 702, + 534, + 702, + 534, + 735, + 298, + 735 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 298, + 1770, + 496, + 1770, + 496, + 1804, + 298, + 1804 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.645 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.315 + }, + { + "category_id": 13, + "poly": [ + 918, + 1864, + 1010, + 1864, + 1010, + 1889, + 918, + 1889 + ], + "score": 0.93, + "latex": "H \\times W" + }, + { + "category_id": 13, + "poly": [ + 634, + 1889, + 771, + 1889, + 771, + 1923, + 634, + 1923 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )" + }, + { + "category_id": 13, + "poly": [ + 586, + 1891, + 604, + 1891, + 604, + 1917, + 586, + 1917 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 470.0, + 639.0, + 470.0, + 639.0, + 518.0, + 291.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 700.0, + 540.0, + 700.0, + 540.0, + 742.0, + 292.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1768.0, + 500.0, + 1768.0, + 500.0, + 1809.0, + 292.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2091.0, + 838.0, + 2091.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": [ + 294.0, + 1246.0, + 1405.0, + 1246.0, + 1405.0, + 1280.0, + 294.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1274.0, + 1405.0, + 1274.0, + 1405.0, + 1310.0, + 293.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1304.0, + 1404.0, + 1304.0, + 1404.0, + 1342.0, + 293.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1404.0, + 1337.0, + 1404.0, + 1371.0, + 294.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1367.0, + 1405.0, + 1367.0, + 1405.0, + 1401.0, + 294.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1396.0, + 1408.0, + 1396.0, + 1408.0, + 1434.0, + 293.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1426.0, + 1406.0, + 1426.0, + 1406.0, + 1460.0, + 294.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 1405.0, + 1458.0, + 1405.0, + 1492.0, + 294.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1488.0, + 1405.0, + 1488.0, + 1405.0, + 1522.0, + 294.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1517.0, + 1406.0, + 1517.0, + 1406.0, + 1550.0, + 293.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1549.0, + 1406.0, + 1549.0, + 1406.0, + 1583.0, + 294.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1580.0, + 1011.0, + 1580.0, + 1011.0, + 1611.0, + 296.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 987.0, + 1404.0, + 987.0, + 1404.0, + 1021.0, + 294.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1018.0, + 1404.0, + 1018.0, + 1404.0, + 1052.0, + 294.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 1404.0, + 1049.0, + 1404.0, + 1083.0, + 294.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1078.0, + 1408.0, + 1078.0, + 1408.0, + 1113.0, + 295.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1107.0, + 1404.0, + 1107.0, + 1404.0, + 1143.0, + 295.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1138.0, + 1405.0, + 1138.0, + 1405.0, + 1175.0, + 293.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1169.0, + 1405.0, + 1169.0, + 1405.0, + 1205.0, + 293.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1199.0, + 815.0, + 1199.0, + 815.0, + 1233.0, + 293.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 759.0, + 1404.0, + 759.0, + 1404.0, + 797.0, + 293.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 788.0, + 1405.0, + 788.0, + 1405.0, + 827.0, + 292.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 819.0, + 1405.0, + 819.0, + 1405.0, + 856.0, + 293.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 851.0, + 1405.0, + 851.0, + 1405.0, + 887.0, + 293.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 880.0, + 1404.0, + 880.0, + 1404.0, + 917.0, + 293.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 911.0, + 1406.0, + 911.0, + 1406.0, + 948.0, + 293.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 771.0, + 941.0, + 771.0, + 978.0, + 292.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 307.0, + 1409.0, + 307.0, + 1409.0, + 345.0, + 292.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 338.0, + 1407.0, + 338.0, + 1407.0, + 374.0, + 293.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 368.0, + 1406.0, + 368.0, + 1406.0, + 407.0, + 292.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 402.0, + 1308.0, + 402.0, + 1308.0, + 434.0, + 296.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 543.0, + 1407.0, + 543.0, + 1407.0, + 579.0, + 292.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 574.0, + 1406.0, + 574.0, + 1406.0, + 608.0, + 293.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 639.0, + 293.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 636.0, + 590.0, + 636.0, + 590.0, + 668.0, + 294.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1826.0, + 1405.0, + 1826.0, + 1405.0, + 1864.0, + 294.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1860.0, + 917.0, + 1860.0, + 917.0, + 1893.0, + 295.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1860.0, + 1405.0, + 1860.0, + 1405.0, + 1893.0, + 1011.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1883.0, + 585.0, + 1883.0, + 585.0, + 1929.0, + 290.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1883.0, + 633.0, + 1883.0, + 633.0, + 1929.0, + 605.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1929.0, + 772.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1919.0, + 1405.0, + 1919.0, + 1405.0, + 1956.0, + 294.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1949.0, + 711.0, + 1949.0, + 711.0, + 1986.0, + 295.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1640.0, + 1409.0, + 1640.0, + 1409.0, + 1679.0, + 295.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1674.0, + 1406.0, + 1674.0, + 1406.0, + 1708.0, + 295.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1705.0, + 500.0, + 1705.0, + 500.0, + 1739.0, + 294.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 202.0, + 1406.0, + 202.0, + 1406.0, + 238.0, + 293.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 231.0, + 1407.0, + 231.0, + 1407.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 264.0, + 617.0, + 264.0, + 617.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1520, + 1406, + 1520, + 1406, + 2008, + 296, + 2008 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 598, + 826, + 598, + 826, + 1092, + 298, + 1092 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1164, + 1405, + 1164, + 1405, + 1347, + 298, + 1347 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 891, + 602, + 1359, + 602, + 1359, + 942, + 891, + 942 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 845, + 968, + 1404, + 968, + 1404, + 1080, + 845, + 1080 + ], + "score": 0.961 + }, + { + "category_id": 3, + "poly": [ + 298, + 205, + 1397, + 205, + 1397, + 447, + 298, + 447 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 298, + 1413, + 1404, + 1413, + 1404, + 1506, + 298, + 1506 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 300, + 1089, + 1403, + 1089, + 1403, + 1151, + 300, + 1151 + ], + "score": 0.939 + }, + { + "category_id": 4, + "poly": [ + 335, + 477, + 1360, + 477, + 1360, + 509, + 335, + 509 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 841, + 2062, + 858, + 2062, + 858, + 2084, + 841, + 2084 + ], + "score": 0.768 + }, + { + "category_id": 2, + "poly": [ + 1199, + 207, + 1345, + 207, + 1345, + 225, + 1199, + 225 + ], + "score": 0.296 + }, + { + "category_id": 13, + "poly": [ + 299, + 1018, + 426, + 1018, + 426, + 1058, + 299, + 1058 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathcal { O } \\big ( \\frac { H ^ { 2 } W ^ { 2 } } { m ^ { 2 } n ^ { 2 } } d \\big ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 327, + 1712, + 611, + 1712, + 611, + 1758, + 327, + 1758 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } \\bar { H } W d ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1880, + 534, + 1880, + 534, + 1915, + 297, + 1915 + ], + "score": 0.93, + "latex": "k _ { 1 } \\stackrel { \\cdot } { = } k _ { 2 } = \\sqrt { 5 6 } \\approx 7 ." + }, + { + "category_id": 13, + "poly": [ + 1020, + 1581, + 1334, + 1581, + 1334, + 1627, + 1020, + 1627 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { O } ( m n H W d ) = \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 469, + 1755, + 660, + 1755, + 660, + 1791, + 469, + 1791 + ], + "score": 0.92, + "latex": "\\boldsymbol { k } _ { 1 } \\cdot \\boldsymbol { k } _ { 2 } = \\sqrt { H W }" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1473, + 1249, + 1473, + 1249, + 1508, + 1112, + 1508 + ], + "score": 0.92, + "latex": "\\mathcal { O } ( H ^ { 2 } W ^ { 2 } d )" + }, + { + "category_id": 13, + "poly": [ + 660, + 1018, + 787, + 1018, + 787, + 1058, + 660, + 1058 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { O } ( \\frac { H ^ { 2 } W ^ { 2 } } { m n } d ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 560, + 931, + 683, + 931, + 683, + 961, + 560, + 961 + ], + "score": 0.92, + "latex": "W \\% n = 0" + }, + { + "category_id": 13, + "poly": [ + 509, + 1915, + 659, + 1915, + 659, + 1946, + 509, + 1946 + ], + "score": 0.92, + "latex": "k _ { 1 } = k _ { 2 } = 7" + }, + { + "category_id": 13, + "poly": [ + 375, + 1055, + 475, + 1055, + 475, + 1091, + 375, + 1091 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\dot { k } _ { 1 } = \\frac { H } { m } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1138, + 1790, + 1307, + 1790, + 1307, + 1821, + 1138, + 1821 + ], + "score": 0.91, + "latex": "k _ { 1 } = k _ { 2 } = 1 5" + }, + { + "category_id": 13, + "poly": [ + 1100, + 1088, + 1199, + 1088, + 1199, + 1120, + 1100, + 1120 + ], + "score": 0.91, + "latex": "k _ { 1 } \\ll H" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1088, + 1353, + 1088, + 1353, + 1120, + 1250, + 1120 + ], + "score": 0.91, + "latex": "k _ { 2 } \\ll W" + }, + { + "category_id": 13, + "poly": [ + 738, + 1714, + 1189, + 1714, + 1189, + 1756, + 738, + 1756 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\frac { H ^ { 2 } W ^ { 2 } d } { k _ { 1 } k _ { 2 } } + k _ { 1 } k _ { 2 } H W d \\geq 2 H W d \\sqrt { H W } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 893, + 1791, + 992, + 1791, + 992, + 1821, + 893, + 1821 + ], + "score": 0.91, + "latex": "k _ { 1 } = k _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 530, + 1054, + 634, + 1054, + 634, + 1093, + 530, + 1093 + ], + "score": 0.9, + "latex": "\\textstyle k _ { 2 } \\ = \\ { \\frac { W } { n } }" + }, + { + "category_id": 13, + "poly": [ + 384, + 931, + 511, + 931, + 511, + 959, + 384, + 959 + ], + "score": 0.9, + "latex": "H \\% m = 0" + }, + { + "category_id": 13, + "poly": [ + 959, + 1851, + 1052, + 1851, + 1052, + 1880, + 959, + 1880 + ], + "score": 0.9, + "latex": "5 6 \\times 5 6" + }, + { + "category_id": 13, + "poly": [ + 607, + 1821, + 786, + 1821, + 786, + 1849, + 607, + 1849 + ], + "score": 0.9, + "latex": "H = W = 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 401, + 959, + 452, + 959, + 452, + 1000, + 401, + 1000 + ], + "score": 0.9, + "latex": "\\textstyle { \\frac { H W } { m n _ { * } } }" + }, + { + "category_id": 13, + "poly": [ + 743, + 874, + 823, + 874, + 823, + 900, + 743, + 900 + ], + "score": 0.9, + "latex": "m \\times n" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1523, + 1401, + 1523, + 1401, + 1550, + 1320, + 1550 + ], + "score": 0.88, + "latex": "m \\times n" + }, + { + "category_id": 13, + "poly": [ + 821, + 1760, + 995, + 1760, + 995, + 1788, + 821, + 1788 + ], + "score": 0.88, + "latex": "H = W = 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 988, + 1886, + 1018, + 1886, + 1018, + 1915, + 988, + 1915 + ], + "score": 0.88, + "latex": "k _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 685, + 1120, + 715, + 1120, + 715, + 1150, + 685, + 1150 + ], + "score": 0.88, + "latex": "k _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 447, + 1088, + 611, + 1088, + 611, + 1121, + 447, + 1121 + ], + "score": 0.88, + "latex": "\\mathcal { O } ( k _ { 1 } k _ { 2 } H W d )" + }, + { + "category_id": 13, + "poly": [ + 1070, + 1885, + 1100, + 1885, + 1100, + 1915, + 1070, + 1915 + ], + "score": 0.88, + "latex": "k _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1121, + 635, + 1121, + 635, + 1150, + 605, + 1150 + ], + "score": 0.87, + "latex": "k _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 924, + 1686, + 947, + 1686, + 947, + 1710, + 924, + 1710 + ], + "score": 0.75, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 519, + 1122, + 577, + 1122, + 577, + 1148, + 519, + 1148 + ], + "score": 0.66, + "latex": "H W" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 577.0, + 1130.0, + 577.0, + 1130.0, + 935.0, + 843.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 619.0, + 1319.0, + 619.0, + 1319.0, + 630.0, + 1305.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 632.0, + 1183.0, + 632.0, + 1183.0, + 644.0, + 1171.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 737.0, + 1237.0, + 737.0, + 1237.0, + 754.0, + 1223.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 737.0, + 1273.0, + 737.0, + 1273.0, + 756.0, + 1259.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 744.0, + 1270.0, + 744.0, + 1270.0, + 778.0, + 1226.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 822.0, + 1163.0, + 822.0, + 1163.0, + 843.0, + 1128.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 922.0, + 1010.0, + 922.0, + 1010.0, + 945.0, + 984.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 922.0, + 1273.0, + 922.0, + 1273.0, + 946.0, + 1245.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 604.5, + 1348.0, + 604.5, + 1348.0, + 724.5, + 1156.0, + 724.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 783.5, + 1358.0, + 783.5, + 1358.0, + 908.5, + 1139.0, + 908.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 965.0, + 1405.0, + 965.0, + 1405.0, + 999.0, + 844.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 994.0, + 1406.0, + 994.0, + 1406.0, + 1027.0, + 845.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1023.0, + 1404.0, + 1023.0, + 1404.0, + 1054.0, + 844.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1050.0, + 1332.0, + 1050.0, + 1332.0, + 1083.0, + 845.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 203.0, + 447.0, + 203.0, + 447.0, + 235.0, + 383.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 205.0, + 603.0, + 205.0, + 603.0, + 233.0, + 539.0, + 233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 205.0, + 805.0, + 205.0, + 805.0, + 233.0, + 740.0, + 233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 205.0, + 1049.0, + 205.0, + 1049.0, + 233.0, + 984.0, + 233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 205.0, + 1347.0, + 205.0, + 1347.0, + 227.0, + 1198.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 230.0, + 440.0, + 230.0, + 440.0, + 274.0, + 354.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 231.0, + 595.0, + 231.0, + 595.0, + 276.0, + 499.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 230.0, + 779.0, + 230.0, + 779.0, + 274.0, + 675.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 229.0, + 1021.0, + 229.0, + 1021.0, + 270.0, + 917.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 243.0, + 1218.0, + 243.0, + 1218.0, + 273.0, + 1188.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 242.0, + 1340.0, + 242.0, + 1340.0, + 275.0, + 1308.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 288.0, + 332.0, + 288.0, + 332.0, + 419.0, + 304.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 300.0, + 408.0, + 300.0, + 408.0, + 402.0, + 345.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 328.0, + 448.0, + 328.0, + 448.0, + 376.0, + 423.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 278.0, + 523.0, + 278.0, + 523.0, + 432.0, + 460.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 307.0, + 579.0, + 307.0, + 579.0, + 401.0, + 535.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 330.0, + 620.0, + 330.0, + 620.0, + 376.0, + 595.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 284.0, + 703.0, + 284.0, + 703.0, + 431.0, + 626.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 307.0, + 755.0, + 307.0, + 755.0, + 401.0, + 711.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 330.0, + 800.0, + 330.0, + 800.0, + 376.0, + 775.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 344.0, + 825.0, + 344.0, + 825.0, + 358.0, + 809.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 308.0, + 880.0, + 308.0, + 880.0, + 406.0, + 837.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 284.0, + 939.0, + 284.0, + 939.0, + 423.0, + 885.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 307.0, + 992.0, + 307.0, + 992.0, + 401.0, + 950.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 331.0, + 1035.0, + 331.0, + 1035.0, + 376.0, + 1010.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 306.0, + 1117.0, + 306.0, + 1117.0, + 400.0, + 1075.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 291.0, + 1145.0, + 291.0, + 1145.0, + 426.0, + 1121.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 273.0, + 1247.0, + 273.0, + 1247.0, + 391.0, + 1157.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 277.0, + 1368.0, + 277.0, + 1368.0, + 390.0, + 1273.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 392.0, + 358.0, + 392.0, + 358.0, + 404.0, + 348.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 401.0, + 879.0, + 401.0, + 879.0, + 425.0, + 851.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 415.0, + 900.0, + 415.0, + 900.0, + 426.0, + 890.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 407.0, + 1109.0, + 407.0, + 1109.0, + 426.0, + 1082.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 399.0, + 1248.0, + 399.0, + 1248.0, + 423.0, + 1157.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 397.0, + 1370.0, + 397.0, + 1370.0, + 425.0, + 1276.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 474.0, + 1362.0, + 474.0, + 1362.0, + 514.0, + 335.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2059.0, + 862.0, + 2059.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 206.0, + 1347.0, + 206.0, + 1347.0, + 226.0, + 1199.0, + 226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1519.0, + 1319.0, + 1519.0, + 1319.0, + 1557.0, + 294.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1519.0, + 1408.0, + 1519.0, + 1408.0, + 1557.0, + 1402.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 1406.0, + 1551.0, + 1406.0, + 1585.0, + 294.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1579.0, + 1019.0, + 1579.0, + 1019.0, + 1622.0, + 293.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1579.0, + 1338.0, + 1579.0, + 1338.0, + 1622.0, + 1335.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1618.0, + 1344.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1619.0, + 1408.0, + 1619.0, + 1408.0, + 1659.0, + 290.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1679.0, + 923.0, + 1679.0, + 923.0, + 1720.0, + 290.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1679.0, + 1407.0, + 1679.0, + 1407.0, + 1720.0, + 948.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1706.0, + 326.0, + 1706.0, + 326.0, + 1765.0, + 291.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1706.0, + 737.0, + 1706.0, + 737.0, + 1765.0, + 612.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1706.0, + 1407.0, + 1706.0, + 1407.0, + 1765.0, + 1190.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 468.0, + 1758.0, + 468.0, + 1792.0, + 294.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1758.0, + 820.0, + 1758.0, + 820.0, + 1792.0, + 661.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1758.0, + 1404.0, + 1758.0, + 1404.0, + 1792.0, + 996.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 892.0, + 1790.0, + 892.0, + 1828.0, + 293.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1790.0, + 1137.0, + 1790.0, + 1137.0, + 1828.0, + 993.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1790.0, + 1407.0, + 1790.0, + 1407.0, + 1828.0, + 1308.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 606.0, + 1822.0, + 606.0, + 1852.0, + 294.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1822.0, + 1404.0, + 1822.0, + 1404.0, + 1852.0, + 787.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1852.0, + 958.0, + 1852.0, + 958.0, + 1883.0, + 295.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1852.0, + 1404.0, + 1852.0, + 1404.0, + 1883.0, + 1053.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1884.0, + 987.0, + 1884.0, + 987.0, + 1918.0, + 535.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1884.0, + 1069.0, + 1884.0, + 1069.0, + 1918.0, + 1019.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1884.0, + 1404.0, + 1884.0, + 1404.0, + 1918.0, + 1101.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 508.0, + 1915.0, + 508.0, + 1949.0, + 295.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1915.0, + 1404.0, + 1915.0, + 1404.0, + 1949.0, + 660.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1945.0, + 1404.0, + 1945.0, + 1404.0, + 1981.0, + 293.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 939.0, + 1973.0, + 939.0, + 2012.0, + 294.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 597.0, + 829.0, + 597.0, + 829.0, + 630.0, + 294.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 627.0, + 830.0, + 627.0, + 830.0, + 662.0, + 295.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 656.0, + 827.0, + 656.0, + 827.0, + 693.0, + 294.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 686.0, + 831.0, + 686.0, + 831.0, + 722.0, + 294.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 830.0, + 718.0, + 830.0, + 754.0, + 294.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 748.0, + 829.0, + 748.0, + 829.0, + 783.0, + 292.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 780.0, + 830.0, + 780.0, + 830.0, + 811.0, + 293.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 829.0, + 809.0, + 829.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 838.0, + 830.0, + 838.0, + 830.0, + 875.0, + 294.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 870.0, + 742.0, + 870.0, + 742.0, + 903.0, + 296.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 870.0, + 828.0, + 870.0, + 828.0, + 903.0, + 824.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 899.0, + 827.0, + 899.0, + 827.0, + 934.0, + 295.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 926.0, + 383.0, + 926.0, + 383.0, + 969.0, + 291.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 926.0, + 559.0, + 926.0, + 559.0, + 969.0, + 512.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 926.0, + 829.0, + 926.0, + 829.0, + 969.0, + 684.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 954.0, + 400.0, + 954.0, + 400.0, + 1000.0, + 295.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 954.0, + 832.0, + 954.0, + 832.0, + 1000.0, + 453.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 989.0, + 829.0, + 989.0, + 829.0, + 1024.0, + 293.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1012.0, + 659.0, + 1012.0, + 659.0, + 1061.0, + 427.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1012.0, + 832.0, + 1012.0, + 832.0, + 1061.0, + 788.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 374.0, + 1057.0, + 374.0, + 1091.0, + 294.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1054.0, + 529.0, + 1054.0, + 529.0, + 1094.0, + 476.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1047.0, + 830.0, + 1047.0, + 830.0, + 1098.0, + 635.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1078.0, + 474.0, + 1078.0, + 474.0, + 1096.0, + 448.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1165.0, + 1405.0, + 1165.0, + 1405.0, + 1196.0, + 296.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1196.0, + 1405.0, + 1196.0, + 1405.0, + 1228.0, + 293.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1224.0, + 1408.0, + 1224.0, + 1408.0, + 1261.0, + 293.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1257.0, + 1406.0, + 1257.0, + 1406.0, + 1288.0, + 296.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1286.0, + 1405.0, + 1286.0, + 1405.0, + 1320.0, + 293.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 556.0, + 1317.0, + 556.0, + 1348.0, + 293.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 1409.0, + 1412.0, + 1409.0, + 1450.0, + 294.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 1409.0, + 1443.0, + 1409.0, + 1480.0, + 293.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1473.0, + 1111.0, + 1473.0, + 1111.0, + 1510.0, + 293.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1473.0, + 1261.0, + 1473.0, + 1261.0, + 1510.0, + 1250.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1085.0, + 446.0, + 1085.0, + 446.0, + 1124.0, + 295.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1085.0, + 1099.0, + 1085.0, + 1099.0, + 1124.0, + 612.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 1085.0, + 1249.0, + 1085.0, + 1249.0, + 1124.0, + 1200.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1124.0, + 1354.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1119.0, + 518.0, + 1119.0, + 518.0, + 1153.0, + 295.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1119.0, + 604.0, + 1119.0, + 604.0, + 1153.0, + 578.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1119.0, + 684.0, + 1119.0, + 684.0, + 1153.0, + 636.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1119.0, + 828.0, + 1119.0, + 828.0, + 1153.0, + 716.0, + 1153.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1003, + 1405, + 1003, + 1405, + 1400, + 298, + 1400 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1413, + 1405, + 1413, + 1405, + 1658, + 298, + 1658 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1822, + 1402, + 1822, + 1402, + 2008, + 299, + 2008 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 609, + 1404, + 609, + 1404, + 734, + 298, + 734 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 303, + 201, + 1400, + 201, + 1400, + 325, + 303, + 325 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 821, + 1404, + 821, + 1404, + 915, + 299, + 915 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 301, + 927, + 1399, + 927, + 1399, + 990, + 301, + 990 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 608, + 334, + 1085, + 334, + 1085, + 560, + 608, + 560 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 292, + 745, + 1400, + 745, + 1400, + 808, + 292, + 808 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 300, + 1767, + 724, + 1767, + 724, + 1801, + 300, + 1801 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 298, + 1699, + 532, + 1699, + 532, + 1737, + 298, + 1737 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1365, + 451, + 1401, + 451, + 1401, + 481, + 1365, + 481 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.715 + }, + { + "category_id": 14, + "poly": [ + 608, + 330, + 1089, + 330, + 1089, + 561, + 608, + 561 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\hat { \\mathbf { z } } _ { i j } ^ { l } = \\mathrm { L S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } _ { i j } ^ { l - 1 } \\right) \\right) + \\mathbf { z } _ { i j } ^ { l - 1 } , } \\\\ & { \\mathbf { z } _ { i j } ^ { l } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } _ { i j } ^ { l } \\right) \\right) + \\hat { \\mathbf { z } } _ { i j } ^ { l } , } \\\\ & { \\hat { \\mathbf { z } } ^ { l + 1 } = \\mathrm { G S A } \\left( \\mathrm { L a y e r N o r m } \\left( \\mathbf { z } ^ { l } \\right) \\right) + \\mathbf { z } ^ { l } , } \\\\ & { \\mathbf { z } ^ { l + 1 } = \\mathrm { F F N } \\left( \\mathrm { L a y e r N o r m } \\left( \\hat { \\mathbf { z } } ^ { l + 1 } \\right) \\right) + \\hat { \\mathbf { z } } ^ { l + 1 } , } \\\\ & { i \\in \\{ 1 , 2 , . . . . , m \\} , j \\in \\{ 1 , 2 , . . . . , n \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 505, + 669, + 700, + 669, + 700, + 704, + 505, + 704 + ], + "score": 0.92, + "latex": "\\hat { \\mathbf { z } } _ { i j } \\mathbf { \\bar { \\Psi } } \\in \\mathcal { R } ^ { k _ { 1 } \\times k _ { 2 } \\times \\mathbf { \\bar { C } } }" + }, + { + "category_id": 13, + "poly": [ + 826, + 1338, + 885, + 1338, + 885, + 1368, + 826, + 1368 + ], + "score": 0.86, + "latex": "1 . 7 \\times" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1765.0, + 728.0, + 1765.0, + 728.0, + 1805.0, + 294.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1694.0, + 537.0, + 1694.0, + 537.0, + 1745.0, + 289.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2058.0, + 861.0, + 2058.0, + 861.0, + 2093.0, + 839.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1003.0, + 1405.0, + 1003.0, + 1405.0, + 1038.0, + 295.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1029.0, + 1406.0, + 1029.0, + 1406.0, + 1075.0, + 292.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1067.0, + 1405.0, + 1067.0, + 1405.0, + 1099.0, + 296.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1097.0, + 1403.0, + 1097.0, + 1403.0, + 1129.0, + 296.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1124.0, + 1403.0, + 1124.0, + 1403.0, + 1160.0, + 295.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1155.0, + 1408.0, + 1155.0, + 1408.0, + 1191.0, + 293.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1186.0, + 1407.0, + 1186.0, + 1407.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1216.0, + 1405.0, + 1216.0, + 1405.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1248.0, + 1402.0, + 1248.0, + 1402.0, + 1280.0, + 295.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1278.0, + 1405.0, + 1278.0, + 1405.0, + 1311.0, + 293.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1308.0, + 1405.0, + 1308.0, + 1405.0, + 1343.0, + 293.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1336.0, + 825.0, + 1336.0, + 825.0, + 1374.0, + 292.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 1336.0, + 1406.0, + 1336.0, + 1406.0, + 1374.0, + 886.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1368.0, + 1294.0, + 1368.0, + 1294.0, + 1405.0, + 296.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1412.0, + 1407.0, + 1412.0, + 1407.0, + 1449.0, + 293.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1443.0, + 1406.0, + 1443.0, + 1406.0, + 1477.0, + 293.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1474.0, + 1407.0, + 1474.0, + 1407.0, + 1508.0, + 295.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1504.0, + 1405.0, + 1504.0, + 1405.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1568.0, + 292.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1564.0, + 1406.0, + 1564.0, + 1406.0, + 1601.0, + 293.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1597.0, + 1406.0, + 1597.0, + 1406.0, + 1628.0, + 292.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1627.0, + 1401.0, + 1627.0, + 1401.0, + 1660.0, + 293.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1822.0, + 1404.0, + 1822.0, + 1404.0, + 1858.0, + 295.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1854.0, + 1406.0, + 1854.0, + 1406.0, + 1889.0, + 295.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1404.0, + 1914.0, + 1404.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1980.0, + 293.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2011.0, + 294.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 611.0, + 1405.0, + 611.0, + 1405.0, + 643.0, + 296.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 640.0, + 1405.0, + 640.0, + 1405.0, + 676.0, + 294.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 664.0, + 504.0, + 664.0, + 504.0, + 708.0, + 292.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 664.0, + 1408.0, + 664.0, + 1408.0, + 708.0, + 701.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 701.0, + 1237.0, + 701.0, + 1237.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 202.0, + 1405.0, + 202.0, + 1405.0, + 239.0, + 297.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 233.0, + 1404.0, + 233.0, + 1404.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 263.0, + 1405.0, + 263.0, + 1405.0, + 299.0, + 297.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 294.0, + 446.0, + 294.0, + 446.0, + 327.0, + 296.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 817.0, + 1405.0, + 817.0, + 1405.0, + 858.0, + 293.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 853.0, + 1405.0, + 853.0, + 1405.0, + 886.0, + 294.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 881.0, + 586.0, + 881.0, + 586.0, + 919.0, + 294.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 928.0, + 1404.0, + 928.0, + 1404.0, + 962.0, + 296.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 959.0, + 1267.0, + 959.0, + 1267.0, + 992.0, + 295.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 746.0, + 1402.0, + 746.0, + 1402.0, + 782.0, + 295.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 774.0, + 1007.0, + 774.0, + 1007.0, + 815.0, + 292.0, + 815.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1294, + 1405, + 1294, + 1405, + 1718, + 298, + 1718 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 945, + 1404, + 945, + 1404, + 1279, + 297, + 1279 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1823, + 1402, + 1823, + 1402, + 2007, + 299, + 2007 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 778, + 1404, + 778, + 1404, + 930, + 297, + 930 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 444, + 1405, + 444, + 1405, + 568, + 298, + 568 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 202, + 1403, + 202, + 1403, + 325, + 299, + 325 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 301, + 582, + 1401, + 582, + 1401, + 674, + 301, + 674 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 299, + 339, + 1402, + 339, + 1402, + 431, + 299, + 431 + ], + "score": 0.954 + }, + { + "category_id": 0, + "poly": [ + 299, + 1763, + 909, + 1763, + 909, + 1796, + 299, + 1796 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 303, + 719, + 790, + 719, + 790, + 751, + 303, + 751 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.779 + }, + { + "category_id": 13, + "poly": [ + 1051, + 1036, + 1148, + 1036, + 1148, + 1066, + 1051, + 1066 + ], + "score": 0.92, + "latex": "1 \\times 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 369, + 1505, + 465, + 1505, + 465, + 1536, + 369, + 1536 + ], + "score": 0.92, + "latex": "6 \\times 1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 450, + 1355, + 545, + 1355, + 545, + 1386, + 450, + 1386 + ], + "score": 0.9, + "latex": "( + 1 . 7 \\% )" + }, + { + "category_id": 13, + "poly": [ + 461, + 369, + 523, + 369, + 523, + 399, + 461, + 399 + ], + "score": 0.89, + "latex": "1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 636, + 400, + 691, + 400, + 691, + 430, + 636, + 430 + ], + "score": 0.87, + "latex": "3 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 997, + 370, + 1051, + 370, + 1051, + 399, + 997, + 399 + ], + "score": 0.86, + "latex": "18 \\%" + }, + { + "category_id": 13, + "poly": [ + 526, + 1658, + 600, + 1658, + 600, + 1687, + 526, + 1687 + ], + "score": 0.86, + "latex": "5 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 819, + 1628, + 881, + 1628, + 881, + 1657, + 819, + 1657 + ], + "score": 0.86, + "latex": "1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1343, + 1188, + 1403, + 1188, + 1403, + 1217, + 1343, + 1217 + ], + "score": 0.86, + "latex": "7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 888, + 1947, + 926, + 1947, + 926, + 1975, + 888, + 1975 + ], + "score": 0.86, + "latex": "1 \\times" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1249, + 1253, + 1249, + 1253, + 1278, + 1192, + 1278 + ], + "score": 0.85, + "latex": "4 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 775, + 1385, + 837, + 1385, + 837, + 1414, + 775, + 1414 + ], + "score": 0.85, + "latex": "0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1343, + 1219, + 1403, + 1219, + 1403, + 1248, + 1343, + 1248 + ], + "score": 0.85, + "latex": "3 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1268, + 1658, + 1329, + 1658, + 1329, + 1688, + 1268, + 1688 + ], + "score": 0.84, + "latex": "0 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 786, + 1188, + 866, + 1188, + 866, + 1218, + 786, + 1218 + ], + "score": 0.84, + "latex": "( + 4 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 487, + 643, + 564, + 643, + 564, + 673, + 487, + 673 + ], + "score": 0.77, + "latex": "8 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 663, + 1476, + 722, + 1476, + 722, + 1505, + 663, + 1505 + ], + "score": 0.41, + "latex": "1 6 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1761.0, + 912.0, + 1761.0, + 912.0, + 1803.0, + 293.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 714.0, + 796.0, + 714.0, + 796.0, + 757.0, + 296.0, + 757.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": [ + 296.0, + 1294.0, + 1403.0, + 1294.0, + 1403.0, + 1326.0, + 296.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1323.0, + 1407.0, + 1323.0, + 1407.0, + 1359.0, + 295.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1354.0, + 449.0, + 1354.0, + 449.0, + 1390.0, + 292.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1354.0, + 1406.0, + 1354.0, + 1406.0, + 1390.0, + 546.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1384.0, + 774.0, + 1384.0, + 774.0, + 1419.0, + 295.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1384.0, + 1405.0, + 1384.0, + 1405.0, + 1419.0, + 838.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1415.0, + 1405.0, + 1415.0, + 1405.0, + 1451.0, + 295.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1444.0, + 1405.0, + 1444.0, + 1405.0, + 1480.0, + 293.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1471.0, + 662.0, + 1471.0, + 662.0, + 1516.0, + 292.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1471.0, + 1406.0, + 1471.0, + 1406.0, + 1516.0, + 723.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1503.0, + 368.0, + 1503.0, + 368.0, + 1541.0, + 292.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1503.0, + 1408.0, + 1503.0, + 1408.0, + 1541.0, + 466.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1532.0, + 1406.0, + 1532.0, + 1406.0, + 1573.0, + 291.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1564.0, + 1405.0, + 1564.0, + 1405.0, + 1602.0, + 293.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1597.0, + 1405.0, + 1597.0, + 1405.0, + 1631.0, + 293.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1627.0, + 818.0, + 1627.0, + 818.0, + 1662.0, + 295.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1627.0, + 1406.0, + 1627.0, + 1406.0, + 1662.0, + 882.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1657.0, + 525.0, + 1657.0, + 525.0, + 1692.0, + 295.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1657.0, + 1267.0, + 1657.0, + 1267.0, + 1692.0, + 601.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1657.0, + 1410.0, + 1657.0, + 1410.0, + 1692.0, + 1330.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1685.0, + 1040.0, + 1685.0, + 1040.0, + 1724.0, + 293.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 943.0, + 1406.0, + 943.0, + 1406.0, + 979.0, + 292.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 975.0, + 1406.0, + 975.0, + 1406.0, + 1008.0, + 294.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1006.0, + 1405.0, + 1006.0, + 1405.0, + 1040.0, + 294.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1034.0, + 1050.0, + 1034.0, + 1050.0, + 1073.0, + 292.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1034.0, + 1406.0, + 1034.0, + 1406.0, + 1073.0, + 1149.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1065.0, + 1406.0, + 1065.0, + 1406.0, + 1102.0, + 291.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1096.0, + 1405.0, + 1096.0, + 1405.0, + 1133.0, + 294.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1128.0, + 1405.0, + 1128.0, + 1405.0, + 1163.0, + 295.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 1406.0, + 1158.0, + 1406.0, + 1192.0, + 294.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1187.0, + 785.0, + 1187.0, + 785.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1187.0, + 1342.0, + 1187.0, + 1342.0, + 1222.0, + 867.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1187.0, + 1407.0, + 1187.0, + 1407.0, + 1222.0, + 1404.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 1342.0, + 1218.0, + 1342.0, + 1253.0, + 294.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1218.0, + 1407.0, + 1218.0, + 1407.0, + 1253.0, + 1404.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1249.0, + 1191.0, + 1249.0, + 1191.0, + 1283.0, + 295.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1249.0, + 1407.0, + 1249.0, + 1407.0, + 1283.0, + 1254.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1403.0, + 1821.0, + 1403.0, + 1857.0, + 295.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1854.0, + 1406.0, + 1854.0, + 1406.0, + 1890.0, + 295.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1919.0, + 293.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1951.0, + 294.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1947.0, + 887.0, + 1947.0, + 887.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1947.0, + 1404.0, + 1947.0, + 1404.0, + 1978.0, + 927.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1975.0, + 1404.0, + 1975.0, + 1404.0, + 2009.0, + 295.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 779.0, + 1405.0, + 779.0, + 1405.0, + 812.0, + 296.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 808.0, + 1406.0, + 808.0, + 1406.0, + 845.0, + 295.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 837.0, + 1405.0, + 837.0, + 1405.0, + 875.0, + 295.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 905.0, + 294.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 897.0, + 1257.0, + 897.0, + 1257.0, + 937.0, + 294.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 445.0, + 1403.0, + 445.0, + 1403.0, + 478.0, + 293.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 474.0, + 1410.0, + 474.0, + 1410.0, + 512.0, + 292.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 506.0, + 1405.0, + 506.0, + 1405.0, + 541.0, + 293.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 535.0, + 1063.0, + 535.0, + 1063.0, + 575.0, + 293.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 202.0, + 1407.0, + 202.0, + 1407.0, + 238.0, + 294.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 234.0, + 1407.0, + 234.0, + 1407.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 264.0, + 1404.0, + 264.0, + 1404.0, + 300.0, + 293.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 295.0, + 391.0, + 295.0, + 391.0, + 324.0, + 293.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 580.0, + 1406.0, + 580.0, + 1406.0, + 618.0, + 295.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 611.0, + 1404.0, + 611.0, + 1404.0, + 647.0, + 295.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 641.0, + 486.0, + 641.0, + 486.0, + 677.0, + 295.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 641.0, + 582.0, + 641.0, + 582.0, + 677.0, + 565.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 339.0, + 1404.0, + 339.0, + 1404.0, + 373.0, + 295.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 366.0, + 460.0, + 366.0, + 460.0, + 404.0, + 293.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 366.0, + 996.0, + 366.0, + 996.0, + 404.0, + 524.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 366.0, + 1406.0, + 366.0, + 1406.0, + 404.0, + 1052.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 398.0, + 635.0, + 398.0, + 635.0, + 435.0, + 294.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 398.0, + 1376.0, + 398.0, + 1376.0, + 435.0, + 692.0, + 435.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 360, + 291, + 1339, + 291, + 1339, + 1534, + 360, + 1534 + ], + "score": 0.984, + "html": "
MethodParam (M)FLOPs (G)Throughput (Images/s)Top-1 (%)
ConvNet
RegNetY-4G [40]214.0115780.0
RegNetY-8G [40]398.059281.7
RegNetY-16G [40]8416.033582.9
Transformer
DeiT-Small/16 [2]22.14.643779.9
CrossViT-S [30]26.75.6-81.0
T2T-ViT-14 [27]225.281.5
TNT-S [15]23.85.2=81.3
CoaTMini [17]106.880.8
CoaT-Lite Small [17]204.0-81.9
PVT-Small [8]24.53.882079.8
CPVT-Small-GAP [9]234.681781.5
Twins-PCPVT-S (ours)24.13.881581.2 (+1.3)
Swin-T[4]294.576681.3
Swin-T + CPVT†284.476681.2
Twins-SVT-S (ours)242.9105981.7 (+1.8)
T2T-ViT-19 [27]39.28.9181.9
PVT-Medium [8]44.26.752681.2
Twins-PCPVT-B(ours)43.86.752582.7 (+0.8)
Swin-S [4]508.744483.0
Twins-SVT-B (ours)568.646983.2 (+1.3)
ViT-Base/16 [1]86.617.68677.9
DeiT-Base/16 [2]86.617.629281.8
T2T-ViT-24[27]64.114.1182.3
Cross ViT-B [30]104.721.2182.2
TNT-B [15]6614.1=82.8
CPVT-B [9]8817.629282.3
PVT-Large [8]61.49.836781.7
Twins-PCPVT-L(ours)60.99.836783.1 (+5.2)
Swin-B [4]8815.427583.3
Twins-SVT-L (ours)99.215.128883.7( (+5.8)
Hybrid
BoTNet-S1-59 [29]33.57.381.7
BossNet-T1 [41]17.981.9
CvT-13 [31]204.581.6
BoTNet-S1-110 [29]54.710.982.8
CvT-21 [31]327.1=82.5
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1594, + 1405, + 1594, + 1405, + 1872, + 297, + 1872 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1884, + 1404, + 1884, + 1404, + 2007, + 299, + 2007 + ], + "score": 0.975 + }, + { + "category_id": 6, + "poly": [ + 309, + 196, + 1393, + 196, + 1393, + 283, + 309, + 283 + ], + "score": 0.939 + }, + { + "category_id": 2, + "poly": [ + 842, + 2061, + 858, + 2061, + 858, + 2084, + 842, + 2084 + ], + "score": 0.699 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.145 + }, + { + "category_id": 13, + "poly": [ + 550, + 1716, + 647, + 1716, + 647, + 1747, + 550, + 1747 + ], + "score": 0.92, + "latex": "2 \\times 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 469, + 1626, + 563, + 1626, + 563, + 1656, + 469, + 1656 + ], + "score": 0.91, + "latex": "1 \\times 1 \\bar { 0 } ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 225, + 1254, + 225, + 1254, + 252, + 1155, + 252 + ], + "score": 0.9, + "latex": "2 2 4 \\times 2 2 4" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1628, + 1189, + 1628, + 1189, + 1657, + 1136, + 1657 + ], + "score": 0.9, + "latex": "1 0 \\times" + }, + { + "category_id": 13, + "poly": [ + 747, + 1810, + 787, + 1810, + 787, + 1838, + 747, + 1838 + ], + "score": 0.87, + "latex": "3 \\times" + }, + { + "category_id": 13, + "poly": [ + 556, + 1750, + 596, + 1750, + 596, + 1778, + 556, + 1778 + ], + "score": 0.87, + "latex": "3 \\times" + }, + { + "category_id": 13, + "poly": [ + 342, + 1886, + 382, + 1886, + 382, + 1914, + 342, + 1914 + ], + "score": 0.86, + "latex": "1 \\times" + }, + { + "category_id": 13, + "poly": [ + 830, + 1977, + 870, + 1977, + 870, + 2005, + 830, + 2005 + ], + "score": 0.86, + "latex": "3 \\times" + }, + { + "category_id": 13, + "poly": [ + 754, + 1946, + 816, + 1946, + 816, + 1975, + 754, + 1975 + ], + "score": 0.86, + "latex": "1 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1946, + 1083, + 1946, + 1083, + 1975, + 1028, + 1975 + ], + "score": 0.85, + "latex": "12 \\%" + }, + { + "category_id": 13, + "poly": [ + 921, + 1915, + 985, + 1915, + 985, + 1944, + 921, + 1944 + ], + "score": 0.84, + "latex": "2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1341, + 1884, + 1404, + 1884, + 1404, + 1915, + 1341, + 1915 + ], + "score": 0.81, + "latex": "2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1256, + 1288, + 1320, + 1288, + 1320, + 1317, + 1256, + 1317 + ], + "score": 0.25, + "latex": "( + 5 . 8 ) " + }, + { + "category_id": 15, + "poly": [ + 305.0, + 193.0, + 1394.0, + 193.0, + 1394.0, + 229.0, + 305.0, + 229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 223.0, + 1154.0, + 223.0, + 1154.0, + 256.0, + 306.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 223.0, + 1394.0, + 223.0, + 1394.0, + 256.0, + 1255.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 249.0, + 914.0, + 249.0, + 914.0, + 287.0, + 303.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2092.0, + 840.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2092.0, + 840.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1595.0, + 1406.0, + 1595.0, + 1406.0, + 1632.0, + 295.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1621.0, + 468.0, + 1621.0, + 468.0, + 1662.0, + 292.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1621.0, + 1135.0, + 1621.0, + 1135.0, + 1662.0, + 564.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1621.0, + 1407.0, + 1621.0, + 1407.0, + 1662.0, + 1190.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1658.0, + 1408.0, + 1658.0, + 1408.0, + 1691.0, + 292.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1722.0, + 294.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1715.0, + 549.0, + 1715.0, + 549.0, + 1754.0, + 292.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1715.0, + 1406.0, + 1715.0, + 1406.0, + 1754.0, + 648.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1746.0, + 555.0, + 1746.0, + 555.0, + 1784.0, + 292.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1746.0, + 1408.0, + 1746.0, + 1408.0, + 1784.0, + 597.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1774.0, + 1406.0, + 1774.0, + 1406.0, + 1818.0, + 291.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1805.0, + 746.0, + 1805.0, + 746.0, + 1846.0, + 292.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1805.0, + 1406.0, + 1805.0, + 1406.0, + 1846.0, + 788.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1841.0, + 1023.0, + 1841.0, + 1023.0, + 1873.0, + 296.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 341.0, + 1884.0, + 341.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1884.0, + 1340.0, + 1884.0, + 1340.0, + 1916.0, + 383.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 920.0, + 1915.0, + 920.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1915.0, + 1406.0, + 1915.0, + 1406.0, + 1948.0, + 986.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1944.0, + 753.0, + 1944.0, + 753.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1944.0, + 1027.0, + 1944.0, + 1027.0, + 1979.0, + 817.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1944.0, + 1406.0, + 1944.0, + 1406.0, + 1979.0, + 1084.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1976.0, + 829.0, + 1976.0, + 829.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1976.0, + 1022.0, + 1976.0, + 1022.0, + 2011.0, + 871.0, + 2011.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 312, + 251, + 1389, + 251, + 1389, + 901, + 312, + 901 + ], + "score": 0.986, + "html": "
BackboneSemantic FPN 80k (PVT [8] setting)Upernet 160k (Swin [4] setting)
FLOPs (G)Param (M)mIoU (%)FLOPs (G)Param (M)mIoU/MS mIoU (%)
ResNet50 [10]4528.536.71
PVT-Small [8]4028.239.81-=
Twins-PCPVT-S (ours)4028.444.3 (+7.6)23454.646.2/47.5
Swin-T[4]4631.941.523759.944.5/45.8
Twins-SVT-S (ours)3728.343.2( (+6.5)22854.446.2/47.1
ResNet101 [10]6647.538.825886-/44.9
PVT-Medium [8]5548.041.6=1
Twins-PCPVT-B (ours)5548.144.9 (+6.1)25074.347.1/48.4
Swin-S [4]7053.245.226181.347.6/49.5
Twins-SVT-B (ours)6760.445.3 (+6.5)26188.547.7/48.9
ResNetXt101-64×4d [13]186.440.211=
PVT-Large [8]7165.142.1---
Twins-PCPVT-L (ours)7165.346.4 (+6.2)26991.548.6/49.8
Swin-B [4]10791.246.029912148.1/49.7
Twins-SVT-L (ours)102103.746.7 (+6.5)29713348.8/50.2
BackbonePUP (SETR [45] setting)MLA (SETR [45] setting)
T-Large (SETR) [45]-31050.1130848.6/50.3
" + }, + { + "category_id": 5, + "poly": [ + 296, + 1250, + 1433, + 1250, + 1433, + 1676, + 296, + 1676 + ], + "score": 0.984, + "html": "
BackboneFLOPsParaml (G)(M)RetinaNet1×RetinaNet 3× +MS
|APAP50 AP75 APs APm APL|AP AP50 AP75APs APm APL
ResNet50 [10]11137.7 36.355.3 38.6 19.3 40.0 48.8|39.058.4 41.8 22.4 42.8 51.6
PVT-Small [8]11834.261.3 43.0 25.0 42.9 55.762.7 45.0 26.2 45.2 57.2
Twins-PCPVT-S (ours)11834.443.0(+6.7) 64.1 46.0 27.5 46.3 57.345.2(+6.2) 66.5 48.6 30.0 48.8 58.9
Swin-T[4]11838.562.1 44.2 25.1 44.9 55.543.9 64.8 47.1 28.4 47.2 57.8
Twins-SVT-S (ours)10434.343.0(+6.7) 64.2 46.3 28.0 46.4 57.545.6(+6.6) 67.1 48.6 29.8 49.3 60.0
ResNet101[10]14956.757.8 41.2 21.4 42.6 51.160.1 44.0 23.7 45.0 53.8
ResNeXt101-32×4d[13]15156.459.642.7 22.344.2 52.561.0 44.3 23.9 45.5 53.7
PVT-Medium [8]15153.963.1 44.3 25.0 44.9 57.6463.8 46.1 27.3 46.3 58.9
Twins-PCPVT-B (ours)15154.141.9 44.3(+5.8) ) 65.6 47.3 27.9 47.9 59.6443.2 46.4(+5.5) 67.7 49.8 31.3 50.2 61.4 46.3
Swin-S [4]16259.844.5 65.7 47.5 27.4 48.0 59.967.4 49.8 31.1 50.3 60.9
Twins-SVT-B (ours)16367.045.3(+6.8) 66.7 48.1 28.5 48.9 60.646.9(+6.0)68.0 50.2 31.7 50.3 61.8
" + }, + { + "category_id": 5, + "poly": [ + 737, + 1795, + 1353, + 1795, + 1353, + 2042, + 737, + 2042 + ], + "score": 0.977, + "html": "
Function TypeParams (M)FLOPs (G)Top-1 (%)
(L,L,L)8.82.276.9
(L, LLG, LLG, G)23.52.881.5
(L, LG, LG, G)24.12.881.7
(L,L,L, G)22.22.980.5
PVT-small(G, G, G, G) [8]24.53.879.8
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1793, + 666, + 1793, + 666, + 2006, + 297, + 2006 + ], + "score": 0.973 + }, + { + "category_id": 6, + "poly": [ + 304, + 145, + 1392, + 145, + 1392, + 232, + 304, + 232 + ], + "score": 0.95 + }, + { + "category_id": 6, + "poly": [ + 686, + 1730, + 1402, + 1730, + 1402, + 1787, + 686, + 1787 + ], + "score": 0.934 + }, + { + "category_id": 6, + "poly": [ + 298, + 1173, + 1390, + 1173, + 1390, + 1233, + 298, + 1233 + ], + "score": 0.926 + }, + { + "category_id": 0, + "poly": [ + 299, + 1735, + 560, + 1735, + 560, + 1768, + 299, + 1768 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 298, + 958, + 1405, + 958, + 1405, + 1142, + 298, + 1142 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 839, + 2061, + 859, + 2061, + 859, + 2086, + 839, + 2086 + ], + "score": 0.768 + }, + { + "category_id": 6, + "poly": [ + 298, + 958, + 1405, + 958, + 1405, + 1142, + 298, + 1142 + ], + "score": 0.111 + }, + { + "category_id": 13, + "poly": [ + 1158, + 1203, + 1258, + 1203, + 1258, + 1229, + 1158, + 1229 + ], + "score": 0.89, + "latex": "8 0 0 \\times 6 0 0" + }, + { + "category_id": 13, + "poly": [ + 382, + 1021, + 442, + 1021, + 442, + 1050, + 382, + 1050 + ], + "score": 0.88, + "latex": "2 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 406, + 175, + 507, + 175, + 507, + 202, + 406, + 202 + ], + "score": 0.88, + "latex": "5 1 2 \\times 5 1 2" + }, + { + "category_id": 13, + "poly": [ + 455, + 1204, + 491, + 1204, + 491, + 1230, + 455, + 1230 + ], + "score": 0.86, + "latex": "3 \\times" + }, + { + "category_id": 13, + "poly": [ + 346, + 960, + 386, + 960, + 386, + 990, + 346, + 990 + ], + "score": 0.85, + "latex": "1 \\times" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1176, + 1367, + 1176, + 1367, + 1202, + 1331, + 1202 + ], + "score": 0.83, + "latex": "1 \\times" + }, + { + "category_id": 13, + "poly": [ + 473, + 991, + 556, + 991, + 556, + 1021, + 473, + 1021 + ], + "score": 0.69, + "latex": "( + 2 . 5 \\%" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 143.0, + 1393.0, + 143.0, + 1393.0, + 179.0, + 304.0, + 179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 176.0, + 405.0, + 176.0, + 405.0, + 205.0, + 306.0, + 205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 176.0, + 1394.0, + 176.0, + 1394.0, + 205.0, + 508.0, + 205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 203.0, + 678.0, + 203.0, + 678.0, + 235.0, + 305.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 1730.0, + 1404.0, + 1730.0, + 1404.0, + 1760.0, + 687.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1757.0, + 1203.0, + 1757.0, + 1203.0, + 1788.0, + 685.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1173.0, + 1330.0, + 1173.0, + 1330.0, + 1208.0, + 305.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 1173.0, + 1395.0, + 1173.0, + 1395.0, + 1208.0, + 1368.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1202.0, + 454.0, + 1202.0, + 454.0, + 1237.0, + 305.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1202.0, + 1157.0, + 1202.0, + 1157.0, + 1237.0, + 492.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1202.0, + 1372.0, + 1202.0, + 1372.0, + 1237.0, + 1259.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1731.0, + 564.0, + 1731.0, + 564.0, + 1772.0, + 293.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2089.0, + 839.0, + 2089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 345.0, + 959.0, + 345.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 994.0, + 387.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 988.0, + 472.0, + 988.0, + 472.0, + 1025.0, + 292.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 988.0, + 1407.0, + 988.0, + 1407.0, + 1025.0, + 557.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1020.0, + 381.0, + 1020.0, + 381.0, + 1055.0, + 293.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1020.0, + 1408.0, + 1020.0, + 1408.0, + 1055.0, + 443.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1049.0, + 1403.0, + 1049.0, + 1403.0, + 1087.0, + 292.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1080.0, + 1403.0, + 1080.0, + 1403.0, + 1116.0, + 295.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1111.0, + 581.0, + 1111.0, + 581.0, + 1146.0, + 295.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1793.0, + 668.0, + 1793.0, + 668.0, + 1824.0, + 298.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 670.0, + 1821.0, + 670.0, + 1854.0, + 296.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1855.0, + 669.0, + 1855.0, + 669.0, + 1885.0, + 296.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1884.0, + 668.0, + 1884.0, + 668.0, + 1915.0, + 296.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1914.0, + 668.0, + 1914.0, + 668.0, + 1944.0, + 295.0, + 1944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 668.0, + 1943.0, + 668.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1976.0, + 669.0, + 1976.0, + 669.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 345.0, + 959.0, + 345.0, + 994.0, + 293.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 994.0, + 387.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 988.0, + 472.0, + 988.0, + 472.0, + 1025.0, + 292.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 988.0, + 1407.0, + 988.0, + 1407.0, + 1025.0, + 557.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1020.0, + 381.0, + 1020.0, + 381.0, + 1055.0, + 293.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1020.0, + 1408.0, + 1020.0, + 1408.0, + 1055.0, + 443.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1049.0, + 1403.0, + 1049.0, + 1403.0, + 1087.0, + 292.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1080.0, + 1403.0, + 1080.0, + 1403.0, + 1116.0, + 295.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1111.0, + 581.0, + 1111.0, + 581.0, + 1146.0, + 295.0, + 1146.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 295, + 273, + 1439, + 273, + 1439, + 702, + 295, + 702 + ], + "score": 0.984, + "html": "
BackboneFLOPsParaml (G)(M)Mask R-CNN 1×Mask R-CNN3× +MS
|APbAP0APAPmAPAP|APbAP0APP APm APAPP
ResNet50 [10]17444.238.058.6 41.4 34.455.1 36.741.061.7 44.9 37.1 58.4 40.1
PVT-Small [8]17844.140.462.9 43.8 37.860.1 40.343.065.3 46.9 39.9 62.5 42.8
Twins-PCPVT-S (ours)17844.342.9(+4.9)65.8 47.1 40.0(+5.6)62.742.946.8(+5.8)69.3 51.8 42.6 66.3 46.0
Swin-T[4]17747.842.264.6 46.2 39.161.6 42.0 46.068.2 50.2 41.6 65.1 44.8
Twins-SVT-S (ours)16444.043.4(+5.4)66.0 47.3 40.3(+5.9)63.243.446.8(+5.8)69.2 51.2 42.6 66.3 45.8
ResNet101[10]21063.240.461.1 44.2 36.457.7 38.842.863.2 47.1 38.5 60.1 41.3
ResNeXt101-32×4d[13]21262.841.962.5 45.9 37.559.4 40.2 44.064.4 48.0 39.2 61.4 41.9
PVT-Medium [8]21163.942.064.4 45.6 39.061.6 42.144.266.0 48.2 40.5 63.1 43.5
Twins-PCPVT-B (ours)21164.044.6(+4.2)66.7 48.9 40.9(+4.5)63.844.247.9(+5.1) 70.152.5 43.2 67.2 46.3
Swin-S [4]22269.144.866.6 48.9 40.963.4 44.2 47.669.4 52.5 42.8 66.5 46.4
Twins-SVT-B (ours)22476.345.2(+4.8)67.6 49.3 41.5(+5.1) 64.5 44.848.0(+5.2)69.5 52.7 43.0 66.8 46.6
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1762, + 1405, + 1762, + 1405, + 2007, + 297, + 2007 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 938, + 943, + 938, + 943, + 1150, + 298, + 1150 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 997, + 1035, + 1368, + 1035, + 1368, + 1185, + 997, + 1185 + ], + "score": 0.973, + "html": "
Function TypeTop-1(%)
2D Conv.81.7
2D Separable Conv.81.2
Average Pooling81.2
" + }, + { + "category_id": 6, + "poly": [ + 962, + 914, + 1405, + 914, + 1405, + 1026, + 962, + 1026 + ], + "score": 0.949 + }, + { + "category_id": 6, + "poly": [ + 306, + 196, + 1392, + 196, + 1392, + 254, + 306, + 254 + ], + "score": 0.94 + }, + { + "category_id": 6, + "poly": [ + 349, + 1389, + 1349, + 1389, + 1349, + 1421, + 349, + 1421 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 297, + 1686, + 510, + 1686, + 510, + 1723, + 297, + 1723 + ], + "score": 0.907 + }, + { + "category_id": 1, + "poly": [ + 300, + 1231, + 1404, + 1231, + 1404, + 1350, + 300, + 1350 + ], + "score": 0.836 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 302, + 802, + 1407, + 802, + 1407, + 893, + 302, + 893 + ], + "score": 0.632 + }, + { + "category_id": 1, + "poly": [ + 336, + 1196, + 935, + 1196, + 935, + 1228, + 336, + 1228 + ], + "score": 0.469 + }, + { + "category_id": 1, + "poly": [ + 299, + 771, + 670, + 771, + 670, + 801, + 299, + 801 + ], + "score": 0.273 + }, + { + "category_id": 13, + "poly": [ + 576, + 771, + 666, + 771, + 666, + 802, + 576, + 802 + ], + "score": 0.89, + "latex": "( 7 6 . 9 \\% )" + }, + { + "category_id": 13, + "poly": [ + 838, + 225, + 938, + 225, + 938, + 251, + 838, + 251 + ], + "score": 0.88, + "latex": "8 0 0 \\times 6 0 0" + }, + { + "category_id": 13, + "poly": [ + 894, + 831, + 955, + 831, + 955, + 860, + 894, + 860 + ], + "score": 0.86, + "latex": "3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 609, + 862, + 699, + 862, + 699, + 893, + 609, + 893 + ], + "score": 0.84, + "latex": "( 8 1 . 5 \\% )" + }, + { + "category_id": 5, + "poly": [ + 351, + 1438, + 1350, + 1438, + 1350, + 1588, + 351, + 1588 + ], + "score": 0.863, + "html": "
BackboneRetinaNetMask RCNN
FLOPs(G)Param(M) APAP50AP75FLOPs(G)Param(M)APAP50AP75
Swin-T[4]]24538.541.562.144.226447.842.264.646.2
Swin-T+CPVT24538.541.362.444.126347.842.064.545.9
" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 913.0, + 1407.0, + 913.0, + 1407.0, + 944.0, + 962.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 943.0, + 1404.0, + 943.0, + 1404.0, + 972.0, + 962.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 969.0, + 1407.0, + 969.0, + 1407.0, + 1001.0, + 961.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 996.0, + 1090.0, + 996.0, + 1090.0, + 1028.0, + 962.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 193.0, + 1393.0, + 193.0, + 1393.0, + 229.0, + 304.0, + 229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 220.0, + 837.0, + 220.0, + 837.0, + 258.0, + 304.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 220.0, + 1012.0, + 220.0, + 1012.0, + 258.0, + 939.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1383.0, + 1356.0, + 1383.0, + 1356.0, + 1429.0, + 342.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1682.0, + 514.0, + 1682.0, + 514.0, + 1730.0, + 291.0, + 1730.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, + 1764.0, + 1405.0, + 1764.0, + 1405.0, + 1797.0, + 295.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1792.0, + 1408.0, + 1792.0, + 1408.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1822.0, + 1405.0, + 1822.0, + 1405.0, + 1858.0, + 294.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1856.0, + 1405.0, + 1856.0, + 1405.0, + 1889.0, + 295.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1919.0, + 295.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1916.0, + 1405.0, + 1916.0, + 1405.0, + 1949.0, + 295.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1946.0, + 1406.0, + 1946.0, + 1406.0, + 1980.0, + 292.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1977.0, + 1162.0, + 1977.0, + 1162.0, + 2010.0, + 296.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 938.0, + 946.0, + 938.0, + 946.0, + 971.0, + 295.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 949.0, + 966.0, + 949.0, + 1003.0, + 295.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 999.0, + 947.0, + 999.0, + 947.0, + 1032.0, + 297.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1029.0, + 944.0, + 1029.0, + 944.0, + 1063.0, + 296.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 945.0, + 1059.0, + 945.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1090.0, + 945.0, + 1090.0, + 945.0, + 1122.0, + 295.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1119.0, + 567.0, + 1119.0, + 567.0, + 1152.0, + 296.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1226.0, + 1405.0, + 1226.0, + 1405.0, + 1264.0, + 295.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 1404.0, + 1256.0, + 1404.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1286.0, + 1406.0, + 1286.0, + 1406.0, + 1325.0, + 295.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1314.0, + 830.0, + 1314.0, + 830.0, + 1358.0, + 293.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 801.0, + 1404.0, + 801.0, + 1404.0, + 834.0, + 297.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 830.0, + 893.0, + 830.0, + 893.0, + 865.0, + 295.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 830.0, + 1404.0, + 830.0, + 1404.0, + 865.0, + 956.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 861.0, + 608.0, + 861.0, + 608.0, + 896.0, + 295.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 861.0, + 1185.0, + 861.0, + 1185.0, + 896.0, + 700.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1192.0, + 940.0, + 1192.0, + 940.0, + 1233.0, + 330.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 769.0, + 575.0, + 769.0, + 575.0, + 807.0, + 297.0, + 807.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 300, + 1409, + 300, + 1409, + 2001, + 296, + 2001 + ], + "score": 0.967 + }, + { + "category_id": 0, + "poly": [ + 299, + 199, + 455, + 199, + 455, + 235, + 299, + 235 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.596 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2086, + 836, + 2086 + ], + "score": 0.538 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 195.0, + 460.0, + 195.0, + 460.0, + 241.0, + 295.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2058.0, + 870.0, + 2058.0, + 870.0, + 2096.0, + 832.0, + 2096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 289.0, + 1410.0, + 289.0, + 1410.0, + 323.0, + 305.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 316.0, + 1404.0, + 316.0, + 1404.0, + 351.0, + 354.0, + 351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 340.0, + 1408.0, + 340.0, + 1408.0, + 391.0, + 348.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 376.0, + 1135.0, + 376.0, + 1135.0, + 417.0, + 350.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 406.0, + 1408.0, + 406.0, + 1408.0, + 453.0, + 305.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 439.0, + 1406.0, + 439.0, + 1406.0, + 481.0, + 352.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 470.0, + 741.0, + 470.0, + 741.0, + 509.0, + 350.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 503.0, + 1406.0, + 503.0, + 1406.0, + 545.0, + 307.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 529.0, + 1410.0, + 529.0, + 1410.0, + 578.0, + 348.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 563.0, + 771.0, + 563.0, + 771.0, + 605.0, + 354.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 591.0, + 1408.0, + 591.0, + 1408.0, + 640.0, + 303.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 627.0, + 1404.0, + 627.0, + 1404.0, + 668.0, + 354.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 657.0, + 909.0, + 657.0, + 909.0, + 698.0, + 352.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 689.0, + 1408.0, + 689.0, + 1408.0, + 730.0, + 307.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 723.0, + 1406.0, + 723.0, + 1406.0, + 758.0, + 356.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 751.0, + 1294.0, + 751.0, + 1294.0, + 792.0, + 352.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 783.0, + 1408.0, + 783.0, + 1408.0, + 824.0, + 309.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 809.0, + 1408.0, + 809.0, + 1408.0, + 860.0, + 348.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 843.0, + 843.0, + 843.0, + 843.0, + 882.0, + 352.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 875.0, + 1412.0, + 875.0, + 1412.0, + 918.0, + 303.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 910.0, + 807.0, + 910.0, + 807.0, + 946.0, + 354.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 939.0, + 1404.0, + 939.0, + 1404.0, + 980.0, + 307.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 970.0, + 1406.0, + 970.0, + 1406.0, + 1012.0, + 352.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1000.0, + 1057.0, + 1000.0, + 1057.0, + 1042.0, + 352.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1032.0, + 1406.0, + 1032.0, + 1406.0, + 1074.0, + 307.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1062.0, + 1406.0, + 1062.0, + 1406.0, + 1107.0, + 350.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1096.0, + 644.0, + 1096.0, + 644.0, + 1132.0, + 354.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1122.0, + 1406.0, + 1122.0, + 1406.0, + 1173.0, + 297.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1158.0, + 1273.0, + 1158.0, + 1273.0, + 1199.0, + 352.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1192.0, + 1406.0, + 1192.0, + 1406.0, + 1233.0, + 295.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1222.0, + 1215.0, + 1222.0, + 1215.0, + 1263.0, + 352.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1256.0, + 1410.0, + 1256.0, + 1410.0, + 1297.0, + 291.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1286.0, + 1059.0, + 1286.0, + 1059.0, + 1327.0, + 354.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1316.0, + 1404.0, + 1316.0, + 1404.0, + 1357.0, + 293.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1347.0, + 1408.0, + 1347.0, + 1408.0, + 1393.0, + 350.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1379.0, + 566.0, + 1379.0, + 566.0, + 1415.0, + 356.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1409.0, + 1410.0, + 1409.0, + 1410.0, + 1453.0, + 292.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1439.0, + 1408.0, + 1439.0, + 1408.0, + 1483.0, + 350.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1475.0, + 799.0, + 1475.0, + 799.0, + 1511.0, + 354.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1505.0, + 1406.0, + 1505.0, + 1406.0, + 1546.0, + 293.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1535.0, + 953.0, + 1535.0, + 953.0, + 1576.0, + 352.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1569.0, + 1406.0, + 1569.0, + 1406.0, + 1608.0, + 291.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1601.0, + 1406.0, + 1601.0, + 1406.0, + 1636.0, + 354.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1633.0, + 777.0, + 1633.0, + 777.0, + 1668.0, + 354.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1659.0, + 1408.0, + 1659.0, + 1408.0, + 1708.0, + 290.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1695.0, + 583.0, + 1695.0, + 583.0, + 1728.0, + 352.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 1406.0, + 1726.0, + 1406.0, + 1768.0, + 293.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1756.0, + 1408.0, + 1756.0, + 1408.0, + 1798.0, + 352.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1790.0, + 720.0, + 1790.0, + 720.0, + 1826.0, + 354.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1820.0, + 1408.0, + 1820.0, + 1408.0, + 1862.0, + 293.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1892.0, + 352.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1882.0, + 644.0, + 1882.0, + 644.0, + 1918.0, + 354.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1410.0, + 1912.0, + 1410.0, + 1953.0, + 293.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1938.0, + 1414.0, + 1938.0, + 1414.0, + 1989.0, + 348.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1976.0, + 634.0, + 1976.0, + 634.0, + 2010.0, + 352.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 216, + 1410, + 216, + 1410, + 1958, + 294, + 1958 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 835, + 2061, + 863, + 2061, + 863, + 2086, + 835, + 2086 + ], + "score": 0.759 + }, + { + "category_id": 2, + "poly": [ + 835, + 2061, + 863, + 2061, + 863, + 2086, + 835, + 2086 + ], + "score": 0.28 + }, + { + "category_id": 13, + "poly": [ + 670, + 769, + 745, + 769, + 745, + 798, + 670, + 798 + ], + "score": 0.86, + "latex": "8 5 . 4 \\%" + }, + { + "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": [ + 292.0, + 202.0, + 1411.0, + 202.0, + 1411.0, + 245.0, + 292.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 231.0, + 1363.0, + 231.0, + 1363.0, + 273.0, + 352.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 264.0, + 1407.0, + 264.0, + 1407.0, + 306.0, + 293.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 295.0, + 1241.0, + 295.0, + 1241.0, + 337.0, + 352.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 327.0, + 1403.0, + 327.0, + 1403.0, + 369.0, + 295.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 358.0, + 1409.0, + 358.0, + 1409.0, + 400.0, + 354.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 394.0, + 1405.0, + 394.0, + 1405.0, + 431.0, + 295.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 421.0, + 1409.0, + 421.0, + 1409.0, + 463.0, + 352.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 452.0, + 1405.0, + 452.0, + 1405.0, + 492.0, + 350.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 486.0, + 1407.0, + 486.0, + 1407.0, + 523.0, + 295.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 513.0, + 1407.0, + 513.0, + 1407.0, + 557.0, + 350.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 544.0, + 565.0, + 544.0, + 565.0, + 586.0, + 353.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 577.0, + 1409.0, + 577.0, + 1409.0, + 621.0, + 292.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 609.0, + 1249.0, + 609.0, + 1249.0, + 651.0, + 352.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 642.0, + 1407.0, + 642.0, + 1407.0, + 684.0, + 293.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 671.0, + 1411.0, + 671.0, + 1411.0, + 715.0, + 350.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 705.0, + 808.0, + 705.0, + 808.0, + 742.0, + 354.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 736.0, + 1407.0, + 736.0, + 1407.0, + 778.0, + 295.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 767.0, + 669.0, + 767.0, + 669.0, + 809.0, + 352.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 767.0, + 1407.0, + 767.0, + 1407.0, + 809.0, + 746.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 795.0, + 903.0, + 795.0, + 903.0, + 836.0, + 350.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 832.0, + 1405.0, + 832.0, + 1405.0, + 868.0, + 297.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 863.0, + 1407.0, + 863.0, + 1407.0, + 899.0, + 354.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 889.0, + 432.0, + 889.0, + 432.0, + 930.0, + 350.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 922.0, + 1407.0, + 922.0, + 1407.0, + 964.0, + 293.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 953.0, + 1291.0, + 953.0, + 1291.0, + 995.0, + 352.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 985.0, + 1409.0, + 985.0, + 1409.0, + 1029.0, + 292.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1016.0, + 1380.0, + 1016.0, + 1380.0, + 1058.0, + 354.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1049.0, + 1407.0, + 1049.0, + 1407.0, + 1091.0, + 293.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1083.0, + 1407.0, + 1083.0, + 1407.0, + 1120.0, + 356.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1114.0, + 616.0, + 1114.0, + 616.0, + 1146.0, + 352.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1143.0, + 1409.0, + 1143.0, + 1409.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1167.0, + 1411.0, + 1167.0, + 1411.0, + 1221.0, + 349.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1206.0, + 637.0, + 1206.0, + 637.0, + 1242.0, + 354.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1240.0, + 1409.0, + 1240.0, + 1409.0, + 1277.0, + 295.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1267.0, + 1245.0, + 1267.0, + 1245.0, + 1310.0, + 354.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1298.0, + 1405.0, + 1298.0, + 1405.0, + 1340.0, + 293.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1329.0, + 1407.0, + 1329.0, + 1407.0, + 1373.0, + 349.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1362.0, + 635.0, + 1362.0, + 635.0, + 1400.0, + 350.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1394.0, + 1407.0, + 1394.0, + 1407.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1425.0, + 728.0, + 1425.0, + 728.0, + 1465.0, + 350.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1452.0, + 1409.0, + 1452.0, + 1409.0, + 1503.0, + 290.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1490.0, + 698.0, + 1490.0, + 698.0, + 1526.0, + 354.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1521.0, + 1407.0, + 1521.0, + 1407.0, + 1563.0, + 293.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1551.0, + 1260.0, + 1551.0, + 1260.0, + 1594.0, + 352.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1582.0, + 1407.0, + 1582.0, + 1407.0, + 1626.0, + 295.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1615.0, + 1407.0, + 1615.0, + 1407.0, + 1657.0, + 354.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1643.0, + 1338.0, + 1643.0, + 1338.0, + 1684.0, + 350.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1674.0, + 1407.0, + 1674.0, + 1407.0, + 1720.0, + 290.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1709.0, + 1405.0, + 1709.0, + 1405.0, + 1751.0, + 352.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1739.0, + 951.0, + 1739.0, + 951.0, + 1782.0, + 352.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 1407.0, + 1772.0, + 1407.0, + 1814.0, + 293.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1801.0, + 1405.0, + 1801.0, + 1405.0, + 1843.0, + 352.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1835.0, + 1032.0, + 1835.0, + 1032.0, + 1872.0, + 354.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1866.0, + 1409.0, + 1866.0, + 1409.0, + 1908.0, + 297.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1893.0, + 1407.0, + 1893.0, + 1407.0, + 1939.0, + 350.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1921.0, + 539.0, + 1921.0, + 539.0, + 1964.0, + 353.0, + 1964.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 201, + 1408, + 201, + 1408, + 829, + 294, + 829 + ], + "score": 0.956 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.819 + }, + { + "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": [ + 297.0, + 203.0, + 1404.0, + 203.0, + 1404.0, + 238.0, + 297.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 233.0, + 1272.0, + 233.0, + 1272.0, + 270.0, + 351.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 263.0, + 1405.0, + 263.0, + 1405.0, + 305.0, + 295.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 298.0, + 1405.0, + 298.0, + 1405.0, + 333.0, + 354.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 327.0, + 708.0, + 327.0, + 708.0, + 362.0, + 354.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 360.0, + 1406.0, + 360.0, + 1406.0, + 399.0, + 298.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 391.0, + 1405.0, + 391.0, + 1405.0, + 427.0, + 355.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 418.0, + 1216.0, + 418.0, + 1216.0, + 461.0, + 353.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 456.0, + 350.0, + 456.0, + 350.0, + 487.0, + 298.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 452.0, + 1406.0, + 452.0, + 1406.0, + 491.0, + 351.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 482.0, + 1238.0, + 482.0, + 1238.0, + 521.0, + 353.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 518.0, + 1406.0, + 518.0, + 1406.0, + 553.0, + 296.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 545.0, + 881.0, + 545.0, + 881.0, + 585.0, + 353.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 578.0, + 1410.0, + 578.0, + 1410.0, + 619.0, + 297.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 608.0, + 1406.0, + 608.0, + 1406.0, + 646.0, + 353.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 640.0, + 862.0, + 640.0, + 862.0, + 679.0, + 353.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 673.0, + 1407.0, + 673.0, + 1407.0, + 712.0, + 298.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 702.0, + 1406.0, + 702.0, + 1406.0, + 744.0, + 353.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 731.0, + 1406.0, + 731.0, + 1406.0, + 774.0, + 353.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 763.0, + 1406.0, + 763.0, + 1406.0, + 803.0, + 353.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 794.0, + 1085.0, + 794.0, + 1085.0, + 830.0, + 354.0, + 830.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/7aogOj_VYO0/7aogOj_VYO0.md b/parse/train/7aogOj_VYO0/7aogOj_VYO0.md new file mode 100644 index 0000000000000000000000000000000000000000..cc0c12b7c29a3586c580553bfb7123b4db1b8187 --- /dev/null +++ b/parse/train/7aogOj_VYO0/7aogOj_VYO0.md @@ -0,0 +1,475 @@ +# DO NOT LET PRIVACY OVERBILL UTILITY: GRADIENT EMBEDDING PERTURBATION FOR PRIVATE LEARNING + +Da $\mathbf { V } \mathbf { u } ^ { 1 , 2 , * }$ , Huishuai Zhang2,∗, Wei Chen2, Tie-Yan Liu2 +1School of Computer Science and Engineering, Sun Yat-sen University +2Microsoft Research Asia +1yuda3@mail2.sysu.edu.cn +2{huzhang,wche,tyliu}@microsoft.com + +# ABSTRACT + +The privacy leakage of the model about the training data can be bounded in the differential privacy mechanism. However, for meaningful privacy parameters, a differentially private model degrades the utility drastically when the model comprises a large number of trainable parameters. In this paper, we propose an algorithm Gradient Embedding Perturbation (GEP) towards training differentially private deep models with decent accuracy. Specifically, in each gradient descent step, GEP first projects individual private gradient into a non-sensitive anchor subspace, producing a low-dimensional gradient embedding and a small-norm residual gradient. Then, GEP perturbs the low-dimensional embedding and the residual gradient separately according to the privacy budget. Such a decomposition permits a small perturbation variance, which greatly helps to break the dimensional barrier of private learning. With GEP, we achieve decent accuracy with reasonable computational cost and modest privacy guarantee for deep models. Especially, with privacy bound $\epsilon = 8$ , we achieve $7 4 . 9 \%$ test accuracy on CIFAR10 and $9 5 . 1 \%$ test accuracy on SVHN, significantly improving over existing results. + +# 1 INTRODUCTION + +Recent works have shown that the trained model may leak/memorize the information of its training set (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017; Hitaj et al., 2017), which raises privacy issue when the models are trained with sensitive data. Differential privacy (DP) mechanism provides a way to quantitatively measure and upper bound such information leakage. It theoretically ensures that the influence of any individual sample is negligible with the DP parameter $\epsilon$ or $( \epsilon , \delta )$ . Moreover, it has been observed that differentially private models can also resist model inversion attack (Carlini et al., 2019), membership inference attack (Rahman et al., 2018; Bernau et al., 2019; Sablayrolles et al., 2019; Yu et al., 2021), gradient matching attack (Zhu et al., 2019), and data poisoning attack (Ma et al., 2019). + +One popular way to achieve differentially private machine learning is to perturb the training process with noise (Song et al., 2013; Bassily et al., 2014; Shokri & Shmatikov, 2015; Wu et al., 2017; Fukuchi et al., 2017; Iyengar et al., 2019; Phan et al., 2020). Specifically, gradient perturbation perturbs the gradient at each iteration of (stochastic) gradient descent algorithm and guarantees the privacy of the final model via composition property of DP. It is worthy to note that gradient perturbation does not assume (strongly) convex objective and hence is applicable to various settings (Abadi et al., 2016; Wang et al., 2017; Lee & Kifer, 2018; Jayaraman et al., 2018; Wang & Gu, 2019; Yu et al., 2020). Specifically, for given gradient sensitivity $S$ , a general form of gradient perturbation is to add an isotropic Gaussian noise $_ z$ to the gradient $\pmb { g } \in \mathbb { R } ^ { p }$ independently for each step, + +$$ +\tilde { \pmb g } = \pmb g + \pmb z , \mathrm { w h e r e } \ z \sim \mathcal N ( 0 , \sigma ^ { 2 } S ^ { 2 } \pmb { I } _ { p \times p } ) . +$$ + +One can set proper variance $\sigma ^ { 2 }$ to make each update differentially private with parameter $( \epsilon , \delta )$ . It is easy to see that the intensity of the added noise $\mathbb { E } [ \| z \| ^ { 2 } ]$ scales linearly with the model dimension $p$ + +![](images/2328dd1acaacf1d6d310601a05b8693111b94ade2562eb88887a4f66dd786d46.jpg) +Figure 1: Noise norm vs gradient norm of ResNet20 at initialization. The noise variance is chosen such that SGD satisfies $( 5 , 1 0 ^ { - 5 } )$ -DP after 90 epochs in Abadi et al. (2016). + +![](images/f29d64dfab5e9fa6de07c1a19f11f4a844d9260e860a0226687d143addd4c6e9.jpg) +Figure 2: Stable rank $\| \cdot \| _ { F } ^ { 2 } / \| \cdot \| ^ { 2 }$ (Tropp et al., 2015) of batch gradient matrix of given groups (with $p$ parameters). The setting is ResNet20 on CIFAR-10. The stable rank is small throughout training. + +This indicates that as the model becomes larger, the useful signal, i.e., gradient, would be submerged in the added noise (see Figure 1). This dimensional barrier restricts the utility of deep learning models trained with gradient perturbation. + +The dimensional barrier is attributed to the fact that the added noise is isotropic while the gradients live on a very low dimensional manifold, which has been observed in (Gur-Ari et al., 2018; Vogels et al., 2019; Gooneratne et al., 2020; Li et al., 2020) and is also verified in Figure 2 for the gradients of a 20-layer ResNet (He et al., 2016). Hence to limit the noise energy, it is natural to think + +“Can we reduce the dimension of gradients first and then add the isotropic noise onto a low-dimensional gradient embedding?" + +The answer is affirmative. We propose a new algorithm Gradient Embedding Perturbation (GEP), illustrated in Figure 3. Specifically, we first compute anchor gradients on some non-sensitive auxiliary data, and identify an anchor subspace that is spanned by several top principal components of the anchor gradient matrix. Then we project the private gradients into the anchor subspace and obtain low-dimensional gradient embeddings and small-norm residual gradients. Finally, we perturb the gradient embedding and residual gradient separately according to the sensitivities and privacy budget. + +We intuitively argue why GEP could reduce the perturbation variance and achieve good utility for large models. First, because the gradient embedding has a very low dimension, the added isotropic noise on embedding has small energy that scales linearly only with the subspace dimension. Second, if the anchor subspace can cover most of the gradient information, the residual gradient, though high dimensional, should have small magnitude, which permits smaller added noise to guarantee the same level privacy because of the reduced sensitivity. Overall, we can use a much lower perturbation compared with the original gradient perturbation to guarantee the same level of privacy. + +We emphasize several properties of GEP. First, the non-sensitive auxiliary data assumption is weak. In fact, GEP only requires a small number of non-sensitive unlabeled data following a similar feature distribution as the private data, which often exist even for learning on sensitive data. In our experiments, we use a few unlabeled samples from ImageNet to serve as auxiliary data for MNIST, SVHN, and CIFAR-10. This assumption is much weaker than the public data assumption in previous works (Papernot et al., 2017; 2018; Alon et al., 2019; Wang & Zhou, 2020), where the public data should follow exactly the same distribution as the private data. Second, GEP produces an unbiased estimator of the target gradient because of releasing both the perturbed gradient embedding and the perturbed residual gradient, which turns out to be critical for good utility. Third, we use power method to estimate the principal components of anchor gradients, achievable with a few matrix multiplications. The fact that GEP is not sensitive to the choices of subspace dimension further allows a very efficient implementation. + +Compared with existing works of differentially private machine learning, our contribution can be summarized as follows: (1) we propose a novel algorithm GEP that achieves good utility for large models with modest differential privacy guarantee; (2) we show that GEP returns an unbiased estimator of target private gradient with much lower perturbation variance than original gradient perturbation; (3) we demonstrate that GEP achieves state-of-the-art utility in differentially private learning with three benchmark datasets. Specifically, for $\epsilon = 8$ , GEP achieves $7 4 . 9 \%$ test accuracy on CIFAR-10 with a ResNet20 model. To the best of our knowledge, GEP is the first algorithm that can achieve such utility with training deep models from scratch for a “single-digit" privacy budget1. + +![](images/3bef0fb092363e24757fc5e7749b7b0d21880e7f800df950d684090df99c907d.jpg) +Figure 3: Overview of the proposed GEP approach. 1) We estimate an anchor subspace on some non-sensitive data; 2) We project the private gradients into the anchor subspace, producing lowdimensional embeddings and residual gradients; 3) We perturb the gradient embedding and residual gradient separately to guarantee differential privacy. The auxiliary data are only required to share similar features as the private data. In our experiments, we use 2000 images from ImageNet as auxiliary data for MNIST, SVHN, and CIFAR-10 datasets. + +# 1.1 RELATED WORK + +Existing works studying differentially private machine learning in high-dimensional setting can be roughly categorized into two sets. One is treating the optimization of the machine learning objective as a whole mechanism and adding noise into this process. The other one is based on the knowledge transfer of machine learning models, which trains a differentially private publishable student model with private signals from teacher models. We review them one by one. + +Differentially private convex optimization in high-dimensional setting has been studied extensively over the years (Kifer et al., 2012; Thakurta & Smith, 2013; Talwar et al., 2015; Wang & Xu, 2019; Wang & Gu, 2019). Although these methods demonstrate good utility on some convex settings, their analyses can not be directly applied to non-convex setting. Right before the submission, we note two independent and concurrent works (Zhou et al., 2020; Kairouz et al., 2020) that also leverage the gradient redundancy to reduce the added noise. Specifically, Kairouz et al. (2020) track historical gradients to do dimension reduction for private AdaGrad. Zhou et al. (2020) requires gradients on some public data and then project the noisy gradients into a public subspace at each update. One core difference between these two works and GEP is that we introduce residual gradient perturbation and GEP produces an unbiased estimator of the private gradients, which is essential for achieving the superior utility. Moreover, we weaken the auxiliary data assumption and introduce several designs that significantly boost the efficiency and applicability of GEP. + +One recent progress towards training arbitrary models with differential privacy is Private Aggregation of Teacher Ensembles (PATE) (Papernot et al., 2017; 2018; Jordon et al., 2019). PATE first trains independent teacher models on disjoint shards of private data. Then it trains a student model with privacy guarantee by distilling noisy predictions of teacher models on some public samples. In comparison, GEP only requires some non-sensitive data that have similar natural features as the private data while PATE requires the public data follow exactly the same distribution as the private data and in practice it uses a portion of the test data to serve as public data. Moreover, GEP demonstrates better performance than PATE especially for complex datasets, e.g., CIFAR-10, because GEP can train the model with the whole private data rather than a small shard of data. + +# 2 PRELIMINARIES + +We introduce some notations and definitions. We use bold lowercase letters, e.g., $\textbf { { v } }$ , and bold capital letters, e.g., $M$ , to denote vectors and matrices, respectively. The $L ^ { 2 }$ norm of a vector $\textbf { { v } }$ is denoted by $\| \pmb { v } \|$ . The spectral norm and the Frobenius norm of a matrix $M$ are denoted by $\lVert M \rVert$ and $\| M \| _ { F }$ respectively. A sample $d = ( \pmb { x } , y )$ consists of feature $_ { \textbf { \em x } }$ and label $y$ . A dataset $\mathbb { D }$ is a collection of individual samples. A dataset $\mathbb { D } ^ { \prime }$ is said to be a neighboring dataset of $\mathbb { D }$ if they differ in a single sample, denoted as $\mathbb { D } \sim \mathbb { D } ^ { \prime }$ . Differential privacy ensures that the outputs of an algorithm on neighboring datasets have approximately indistinguishable distributions. + +Definition 1 $( \epsilon , \delta )$ -DP (Dwork et al., 2006a;b)). A randomized mechanism $\mathcal { M }$ guarantees $( \epsilon , \delta )$ - differential privacy if for any two neighboring input datasets $\mathbb { D } \sim \mathbb { D } ^ { \prime }$ and for any subset of outputs $S$ it holds that $P r [ \mathcal { M } ( \mathbb { D } ) \in S ] \leq e ^ { \epsilon } P r [ \mathcal { M } ( \mathbb { D } ^ { ' } ) \in S ] + \delta$ . + +By its definition, $( \epsilon , \delta )$ -DP controls the maximum influence that any individual sample can produce. One can adjust the privacy parameters to trade off between privacy and utility. Differential privacy is immune to post-processing (Dwork et al., 2014), i.e., any function applied on the output of a differentially private algorithm would not increase the privacy loss as long as it does not have new interaction with the private dataset. Differential privacy also allows composition, i.e., the composition of a series of differentially private mechanisms is also differentially private but with different parameters. Several variants of $( \epsilon , \delta )$ -DP have been proposed (Bun & Steinke, 2016; Dong et al., 2019) to address certain weakness of $( \epsilon , \delta )$ -DP, e.g., they achieve better composition property. In this work, we use Rényi differential privacy (Mironov, 2017) to track the privacy loss and then convert it to $( \epsilon , \delta )$ -DP. + +Suppose that there is a private dataset $\mathbb { D } = \{ ( \boldsymbol { x } _ { i } , y _ { i } ) \} _ { i = 1 } ^ { n }$ with $n$ samples. We want to train a model $f$ to learn the mapping in $\mathbb { D }$ . Specifically, $f$ takes $_ { \textbf { \em x } }$ as input and outputs a label $y$ , and $f$ has parameter $\theta \in \mathbb { R } ^ { p }$ . The training objective is to minimize an empirical risk $\begin{array} { r } { \dot { \frac { 1 } { n } } \sum _ { i = 1 } ^ { n } \ell ( \dot { f } ( \pmb { x } _ { i } ) , \dot { y } _ { i } ) , } \end{array}$ , where $\ell ( \cdot , \cdot )$ is a loss function. We further assume that there is an auxiliary dataset $\mathbb { D } ^ { ( a ) } = \{ ( \tilde { \pmb { x } } _ { j } , \tilde { \pmb { y } } _ { j } ) \} _ { j = 1 } ^ { m }$ that $\tilde { \pmb x }$ shares similar features as $_ { \textbf { \em x } }$ in $\mathbb { D }$ while $\tilde { y }$ could be random. + +# 3 GRADIENT EMBEDDING PERTURBATION + +An overview of GEP is given in Figure 3. GEP has three major ingredients: 1) first, estimate an anchor subspace that contains the principal components of some non-sensitive anchor gradients via power method; 2) then, project private gradients into the anchor subspace and produce low-dimensional embeddings of private gradients and residual gradients; 3) finally, perturb gradient embedding and residual gradient separately to establish differential privacy guarantee. In Section 3.1, we present the GEP algorithm in detail. In Section 3.2, we given an analysis on the residual gradients. In Section 3.3, we give a differentially private learning algorithm that updates the model with the output of GEP. + +# 3.1 THE GEP ALGORITHM AND ITS PRIVACY ANALYSIS + +The pseudocode of GEP is presented in Algorithm 1. For convenience, we write a set of gradients and a set of basis vectors as matrices with each row being one gradient/basis vector. + +The anchor subspace is constructed as follows. We first compute the gradients of the model on an auxiliary dataset $\mathbb { D } ^ { ( a ) }$ with $m$ samples, which is referred to as the anchor gradients $G ^ { ( a ) } \in \mathbb { R } ^ { m \times p }$ We then use the power method to estimate the principal components of $G ^ { ( a ) }$ to construct a subspace basis $\boldsymbol { B } \in \mathbb { R } ^ { k \times \hat { p } }$ , which is referred to as the anchor subspace. All these matrices are publishable because $\mathbb { D } ^ { ( a ) }$ is non-sensitive. We expect that the anchor subspace $\textbf { { B } }$ can cover most energy of private gradients when the auxiliary data are not far from private data and $m , k$ are reasonably large. + +Suppose that the private gradients are $G \in \mathbb { R } ^ { n \times p }$ . Then, we project the private gradients into the anchor subspace $\textbf { { B } }$ . The projection produces low-dimensional embeddings $\mathbf { \check { \boldsymbol { W } } } = \check { G } \mathbf { \boldsymbol { B } } ^ { T }$ and residual gradients $\bar { \pmb { R } } = \pmb { G } - \pmb { G } \bar { \pmb { B } } ^ { T } \bar { \pmb { B } }$ . The magnitude of residual gradients is usually much smaller than original gradient even when $k$ is small because of the gradient redundancy. + +Then, we aggregate the gradient embeddings and the residual gradients, respectively. We perturb the aggregated embedding and the aggregated residual gradient respectively to guarantee certain differential privacy. Finally, we release the perturbed embedding and the perturbed residual gradient and construct an unbiased estimator of the private gradient: $\widetilde { \pmb { v } } : = ( \widetilde { \pmb { w } } ^ { T } \pmb { B } ^ { \top } + \widetilde { \pmb { r } } ) / n$ . This construction process does not resulting in additional privacy loss because of DP’s post-processing property. The privacy analysis of the whole process of GEP is given in Theorem 3.1. + +Theorem 3.1. Let $S _ { 1 }$ and $S _ { 2 }$ be the sensitivity of $\pmb { w }$ and $\pmb { r }$ , respectively, the output of Algorithm $^ { l }$ satisfies $( \epsilon , \delta )$ -DP for any $\delta \in ( 0 , 1 )$ and $\epsilon \leq 2 \log ( 1 / \delta )$ if we choose $\sigma _ { 1 } \geq 2 S _ { 1 } \sqrt { 2 \log ( 1 / \delta ) } / \epsilon$ and $\sigma _ { 2 } \geq 2 S _ { 2 } \sqrt { 2 \log ( 1 / \delta ) } / \epsilon$ . + +1: Input: anchor gradients $G ^ { ( a ) } \in \mathbb { R } ^ { m \times p }$ ; number of basis vectors $k$ ; private gradients $G \in \mathbb { R } ^ { n \times p }$ +clipping thresholds $S _ { 1 } , S _ { 2 }$ ; standard deviations $\sigma _ { 1 } , \sigma _ { 2 }$ ; number of power iterations $t$ . +2: //First stage: Compute an orthonormal basis for the anchor subspace. +3: Initialize $\mathbf { \bar { \boldsymbol { B } } } \in \mathbb { R } ^ { k \times p }$ randomly. +4: for $i = 1$ to $t$ do +5: Compute $\pmb { A } = \pmb { G } ^ { ( a ) } \pmb { B } ^ { T }$ and $B = A ^ { T } G ^ { ( a ) }$ . +6: Orthogonalize $\textbf { { B } }$ and normalize row vectors. +7: end for +8: Delete $G ^ { ( a ) }$ to free memory. +9: //Second stage: project the private gradients $G$ into anchor subspace $\textbf { { B } }$ +10: Compute gradient embeddings $\pmb { W } = \pmb { G } \pmb { B } ^ { T }$ and clip its rows with $S _ { 1 }$ to obtain $\hat { W }$ . +11: Compute residual gradients $R = G - W B$ and clip its rows with $S _ { 2 }$ to obtain $\hat { R }$ . +12: //Third stage: perturb gradient embedding and residual gradient separately +13: Perturb embedding with noise $\boldsymbol { z } ^ { ( 1 ) } \sim \mathcal { N } ( 0 , \sigma _ { 1 } ^ { 2 } \boldsymbol { I } _ { k \times k } )$ : $\begin{array} { r } { \pmb { w } : = \sum _ { i } \hat { W } _ { i , : } , \tilde { \pmb { w } } : = \pmb { w } + \pmb { z } ^ { ( 1 ) } . } \end{array}$ +14: Perturb residual gradient with noise $\boldsymbol { z } ^ { ( 2 ) } \sim \mathcal { N } ( 0 , \sigma _ { 2 } ^ { 2 } \boldsymbol { I } _ { p \times p } )$ : $\begin{array} { r } { \pmb { r } : = \sum _ { i } \hat { \pmb { R } } _ { i , : } , \ \tilde { \pmb { r } } : = \pmb { r } + \boldsymbol { z } ^ { ( 2 ) } . } \end{array}$ +15: Return $\tilde { v } : = ( \tilde { w } ^ { T } B + \tilde { r } ) / n$ . + +A common practice to control sensitivity is to clip the output with a pre-defined threshold. In our experiments, we use different thresholds $S _ { 1 }$ and $S _ { 2 }$ to clip the gradient embeddings and residual gradients, respectively. The privacy loss of GEP consists of two parts: the privacy loss incurred by releasing the perturbed embedding and the privacy loss incurred by releasing the perturbed residual gradient. We compose these two parts via the Rényi differential privacy and convert it to $( \epsilon , \delta )$ -DP. + +We highlight several implementation techniques that make GEP widely applicable and implementable with reasonable computational cost. Firstly, auxiliary non-sensitive data do not have to be the same source as the private data and the auxiliary data can be randomly labeled. This non-sensitive data assumption is very weak and easy to satisfy in practical scenarios. To understand why random label works, a quick example is that for the least squares regression problem the individual gradient is aligned with the feature vector while the label only scales the length but does not change the direction. This auxiliary data assumption avoids conducting principal component analysis (PCA) on private gradients, which requires releasing private high-dimensional basis vectors and hence introduces large privacy loss. Secondly, we use power method (Panju, 2011; Vogels et al., 2019) to approximately estimate the principal components. The new operation we introduce is standard matrix multiplication that enjoys efficient implementation on GPU. The computational complexity of each power iteration is $2 m k p$ , where $p$ is the number of model parameters, $m$ is the number of anchor gradients and $k$ is the number of subspace basis vectors. Thirdly, we divide the parameters into different groups and compute one orthonormal basis for each group. This further reduces the computational cost. For example, suppose the parameters are divided into two groups with size $p _ { 1 } , p _ { 2 }$ and the numbers of basis vectors are $k _ { 1 } , k _ { 2 }$ , the computational complexity of each power iteration is $2 m ( k _ { 1 } p _ { 1 } + k _ { 2 } p _ { 2 } )$ , which is smaller than $2 m ( k _ { 1 } + k _ { 2 } ) ( p _ { 1 } + p _ { 2 } )$ . In Appendix B, we analyze the additional computational and memory costs of GEP compared to standard gradient perturbation. + +Curious readers may wonder if we can use random projection to reduce the dimensionality as Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees that one can preserve the pairwise distance between any two points after projecting into a random subspace of much lower dimension. However, preserving the pairwise distance is not sufficient for high quality gradient reconstruction, which is verified by the empirical observation in Appendix C. + +# 3.2 AN ANALYSIS ON THE RESIDUAL GRADIENTS OF GEP + +Let $\begin{array} { r } { \pmb { g } : = \frac { 1 } { n } \sum _ { i } \pmb { G } _ { i } , } \end{array}$ : be the target private gradient. For a given anchor subspace $\textbf { { B } }$ , the residual gradients are defined as $\pmb { R } : = \pmb { G } - \pmb { G } \pmb { B } ^ { T } \pmb { B }$ . We then analyze how large the residual gradients could be. The following argument holds for all time steps and we ignore the time step index for simplicity. + +For the ease of discussion, we introduce $\pmb { \xi } _ { i } : = ( G _ { i , : } ) ^ { T }$ for $i \in [ n ]$ to denote the the private gradients and the $\hat { \pmb { \xi } } _ { j } : = ( { \pmb { G } } _ { j , : } ^ { ( a ) } ) ^ { T }$ for $j \in [ m ]$ to denote the anchor gradients. We use $\lambda _ { k } ( \cdot )$ to denote the $k _ { t h }$ largest eigenvalue of a given matrix. We assume that the private gradients $\xi _ { 1 } , . . . , \xi _ { n }$ and the anchor gradients $\hat { \xi } _ { 1 } , . . . , \hat { \xi } _ { m }$ are sampled independently from a distribution $\mathcal { P }$ . We assume $\Sigma : = \mathbb { E } _ { \pmb { \xi } \sim \mathcal { P } } \pmb { \xi } \pmb { \xi } ^ { \bar { T } } \in \mathbb { R } ^ { p \times p }$ to be the population gradient (uncentered) covariance matrix. We also consider the (uncentered) empirical gradient covariance matrix $\begin{array} { r } { \hat { \pmb { S } } : = \frac { 1 } { m } \sum _ { i = 1 } ^ { m } \hat { \pmb { \xi } } _ { i } \hat { \pmb { \xi } } _ { i } ^ { T } } \end{array}$ . + +One case is that the population gradient covariance matrix $\pmb { \Sigma }$ is low-rank $k$ . In this case we can argue that the residual gradients are 0 once the number of anchor gradients $m > k$ . + +Lemma 3.1. Assume that the population covariance matrix $\pmb { \Sigma }$ is with rank $k$ and the distribution $\mathcal { P }$ satisfies $\mathbb { P } ( \pmb { \xi } \in \mathbb { F } _ { s } ) = 0$ for all $s$ -flats $\mathbb { F } _ { s }$ in $\mathbb { R } ^ { p }$ with $0 \leq s < k$ . Let $\pmb { \Sigma } = \pmb { V _ { k } } \pmb { \Lambda } \pmb { V } _ { k } ^ { T }$ and $\hat { \pmb { S } } = \hat { V } _ { k ^ { \prime } } \hat { \pmb { \Lambda } } \hat { V } _ { k ^ { \prime } } ^ { T }$ be the eigendecompositions of $\pmb { \Sigma }$ and the empirical covariance matrix $\hat { S }$ , respectively, such that $\lambda _ { k ^ { \prime } } ( \hat { S } ) > 0$ and $\bar { \lambda _ { k ^ { \prime } + 1 } } ( \hat { S } ) = \bar { 0 }$ . Then if $m \geq k$ , we have with probability $^ { l }$ , + +$$ +k ^ { \prime } = k \quad a n d \quad \| V _ { k } V _ { k } ^ { T } - \hat { V } _ { k } \hat { V } _ { k } ^ { T } \| _ { 2 } = 0 . +$$ + +Proof. The proof is based on the non-singularity of covariance matrix. See Appendix D. + +We note that $s$ -flat is the translate $\mathbb { F } _ { s } = \pmb { x } + \mathbb { F } _ { s ( 0 ) }$ of an $s$ -dimensional linear subspace $\mathbb { F } _ { s ( 0 ) }$ in $\mathbb { R } ^ { p }$ and the normal distribution satisfies such condition (Eaton & Perlman, 1973; Muirhead, 2009). Therefore, we have seen that for low-rank case of population covariance matrix, the residual gradients are 0 once $m > k$ . In the general case, we measure the expected norm of the residual gradients. + +Lemma 3.2. Assume that $\xi \sim \mathcal { P }$ and $\| \pmb { \xi } \| ^ { 2 } < T$ almost surely. Let $\pmb { \Sigma } = \pmb { V } \pmb { \Lambda } \pmb { V } ^ { T }$ be the eigendecomposition of the population covariance matrix $\pmb { \Sigma }$ . Let $\hat { \pmb { S } } = \hat { V } _ { k } \hat { \Lambda } \hat { V } _ { k } ^ { T }$ be the eigendecomposition of the empirical covariance matrix $\hat { S } .$ . Then we have with probability $1 - 2 \exp ( - \delta )$ , + +$$ +\mathbb { E } \| \pmb { \xi } - \Pi _ { \hat { V } _ { k } } ( \pmb { \xi } ) \| _ { 2 } ^ { 2 } \leq \sum _ { k ^ { \prime } > k } \lambda _ { k ^ { \prime } } ( \pmb { \Sigma } ) + \sqrt { k C / m } + T \sqrt { 2 \delta / m } , +$$ + +where $\begin{array} { r } { C = \big [ \mathbb { E } \| \pmb { \xi } \| ^ { 4 } - \sum _ { i } \lambda _ { i } ^ { 2 } ( \pmb { \Sigma } ) \big ] + \Big [ \frac { 1 } { m } \sum _ { j = 1 } ^ { m } \| \hat { \pmb { \xi } } _ { j } \| ^ { 4 } - \sum _ { i } \lambda _ { i } ^ { 2 } ( \pmb { \hat { S } } ) \Big ] } \end{array}$ , $\Pi _ { \hat { V } _ { k } }$ is a projection operator onto the subspace $\hat { V } _ { k }$ and the E is taken over the randomness of $\xi \sim \mathcal { P }$ . + +Proof. The proof is an adaptation of Theorem 3.1 in Blanchard et al. (2007). + +From Lemma 3.2, we can see the larger the number of anchor gradients and the dimension of the anchor subspace $k$ , the smaller the residual gradients. We can choose $m , k$ properly such that the upper bound on the expected residual gradient norm is small. This indicates that we may use a smaller clipping threshold and consequently apply smaller noises with achieving the same privacy guarantee. + +We next empirically examine the projection error $\begin{array} { r } { \pmb { r } = \sum _ { i } \pmb { R } _ { i } , } \end{array}$ ,: by training a 20-layer ResNet on CIFAR10 dataset. We try two different types of auxiliary data to compute the anchor gradients: 1) samples from the same source as private data with correct labels, i.e., 2000 random samples from the test data; 2) samples from different source with random labels, i.e., 2000 random samples from ImageNet. The relation between the dimension of anchor subspace $k$ and the projection error rate $( \left\| { \frac { 1 } { n } } { \overline { { r } } } \right\| / \left\| g \right\| )$ is presented in Figure 4. We can see that the project error is small and decreases with $k$ , and the benefit of increasing $k$ diminishes when $k$ is large, which is implied by Lemma 3.2. In practice one can only use small or moderate $k$ because of the memory constraint. GEP needs to store at least $k$ individual gradients and each individual gradient consumes the same amount of memory as the model itself. Moreover, we can see that the projection into anchor subspace of random labeled auxiliary data yields comparable projection error, corroborating our argument that unlabeled auxiliary data are sufficient for finding the anchor subspace. + +We also verify that the redundancy of residual gradients is small, by plotting the stable rank of residual gradient matrix in Figure 5. The stable rank of residual gradient matrix is an order of magnitude higher than the stable rank of original gradient matrix. This implies that it could be hard to further approximate $\pmb { R }$ with low-dimensional embeddings. + +We next compare the GEP with a scheme that simply discards the residual gradients and only outputs the perturbed gradient embedding, i.e., the output is $\tilde { \mathbf { u } } : = \tilde { \mathbf { w } } ^ { T } \mathbf { B } / n$ . + +![](images/7345a3e82a46645b6d902e73473fed756d4004f557e77e9cb79b0e1a089ad382.jpg) +Figure 4: Relative projection error $( \left\| { \frac { 1 } { n } } \pmb { r } \right\| / \left\| \pmb { g } \right\| )$ of the second stage in ResNet20. The number of anchor gradients is 2000. The dimension of anchor subspace is $k$ . The learning rate is decayed by 10 at epoch 30. The left plot uses random samples from ImageNet. The right plot uses random samples from test data. The benefit of increasing $k$ becomes smaller when $k$ is larger. + +![](images/fb17dd406c7e4b4486261ff36f80c3a8f963fa4a24c5825b9e573abb26d2881f.jpg) +Figure 5: Stable rank of the residual gradient matrix versus original gradient matrix. The gradients are computed on full batch data for the first stage in ResNet20. The dimension of anchor subspace is $k = 1 0 0 0$ . + +Remark 1. Let $\tilde { \mathbf { u } } : = \tilde { \mathbf { w } } ^ { T } \mathbf { B } / n$ be the reconstructed gradient from noisy gradient embedding and $\tilde { v }$ be the output of GEP. If ignoring the effect of gradient clipping, we have + +$$ +\mathbb { E } [ \tilde { \pmb { u } } ] = \pmb { g } - \pmb { r } / n , \quad \mathbb { E } [ \tilde { \pmb { v } } ] = \pmb { g } . +$$ + +where $\begin{array} { r } { { \pmb r } = \sum _ { i } { \pmb R } _ { i } , } \end{array}$ : is the aggregated residual gradients, $\tilde { \pmb { w } } , \pmb { B }$ are given in Algorithm 1 and the expectation is over the added random noises. + +This indicates that $\tilde { \mathbf { \pmb { u } } }$ contains a systematic error that makes $\tilde { \mathbf { \pmb { u } } }$ always deviate from $\textbf { { g } }$ by the residual gradient. This systematic error is the projection error, which is plotted in Figure 4. The systematic error cannot be mitigated by reducing the noise magnitude (e.g., increasing the privacy budget or collecting more private data). We refer to the algorithm releasing $\tilde { \mathbf { \pmb { u } } }$ directly as Biased-GEP or $B$ -GEP for short, which can be viewed as an efficient implementation of the algorithm in (Zhou et al., 2020). In our experiments, B-GEP can outperform standard gradient perturbation when $k$ is large but is inferior to GEP. We note that the above remark is made with ignoring the clipping effect (or set a large clipping threshold). In practice, we do apply clipping for the individual gradients at each time step, which makes the expectations in Remark 1 obscure (Chen et al., 2020b). We note that the claim that $\tilde { v }$ is an unbiased estimator of $\textbf { { g } }$ is not that precise when applying gradient clipping. + +# 3.3 PRIVATE LEARNING WITH GRADIENT EMBEDDING PERTURBATION + +GEP (Algorithm 1) describes how to release one-step gradient with privacy guarantee. In this section, we compose the privacy losses at each step to establish the privacy guarantee for the whole learning process. The differentially private learning process with GEP is given in Algorithm 2 and the privacy analysis is presented in Theorem 3.2. + +Algorithm 2: Differentially private gradient descent with GEP. + +
configuration of GEP C; loss function l;1: Input: private dataset D; auxiliary dataset D(@); number of updates T; learning rate n;
2: Output: Differentially private model 0T.
3: fort=OtoT-1do
4:Compute the private gradients Gt and anchor gradients G(@) of loss with respect to 0t.
5: and configuration C to get Ut.
6: 7: end forUpdate model 0t+1 = 0t - nUt.
+ +Theorem 3.2. For any $\epsilon < 2 \log ( 1 / \delta )$ and $\delta \in ( 0 , 1 )$ , the output of Algorithm 2 satisfies $( \epsilon , \delta )$ -DP if we set $\sigma \geq 2 \sqrt { 2 T \log ( 1 / \delta ) } / \epsilon$ . + +If the private gradients are randomly sampled from the full batch gradients, the privacy guarantee can be strengthened via the privacy amplification by subsampling theorem of DP (Balle et al., 2018; Wang et al., 2019; Zhu & Wang, 2019; Mironov et al., 2019). Theorem 3.3 gives the expected excess error of Algorithm 2. Expected excess error measures the distance between the algorithm’s output and the optimal solution in expectation. + +Theorem 3.3. Suppose the loss $\begin{array} { r } { L ( \pmb \theta ) = \frac { 1 } { n } \sum _ { ( \pmb x , y ) \in \mathbb { D } } \ell ( f _ { \pmb \theta } ( \pmb x ) , y ) } \end{array}$ is $I$ -Lipschitz, convex, and $\beta$ - smooth. If $\begin{array} { r l r } { \eta } & { { } = } & { \frac { 1 } { \beta } } \end{array}$ , $\begin{array} { l } { T \ = \ { \frac { n \beta \epsilon } { \sqrt { p } } } } \end{array}$ and $\begin{array} { r c l } { \overline { { \pmb { \theta } } } } & { = } & { \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \pmb { \theta } _ { t } } \end{array}$ , then we have $\begin{array} { r } { \mathbb { E } [ L ( \bar { \pmb \theta } ) ] ~ - ~ L ( \pmb \theta _ { * } ) ~ \leq } \end{array}$ $\begin{array} { r } { \mathcal { O } \left( \frac { \sqrt { k \log ( 1 / \delta ) } } { n \epsilon } + \frac { \bar { r } \sqrt { p \log ( 1 / \delta ) } } { n \epsilon } \right) } \end{array}$ , where $\begin{array} { r } { \bar { r } = \frac { 1 } { T } \sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } } \end{array}$ and $r _ { t } = \operatorname* { m a x } _ { i } \| ( \pmb { R } _ { t } ) _ { i , : } \|$ is the sensitivity of residual gradient at step $t$ . + +The $\bar { r }$ term represents the average projection error over the training process. The previous best expected excess error for gradient perturbation is $\mathcal { O } ( \sqrt { p \log ( 1 / \delta ) } / ( n \epsilon ) )$ (Wang et al., 2017). As shown in Lemma 3.1, if the gradients locate in a $k$ -dimensional subspace over the training process, $\bar { r } = 0$ and the excess error is $\mathcal { O } ( \sqrt { k \log ( 1 / \delta ) } / ( n \epsilon ) )$ , independent of the problem ambient dimension $p$ . When the gradients are in general position, i.e., gradient matrix is not exact low-rank, Lemma 3.2 and the empirical result give a hint on how small the residual gradients could be. However, it is hard to get a good bound on $\operatorname { m a x } _ { i } \| ( \pmb { R } _ { t } ) _ { i , : } \|$ and the bound in Theorem 3.3 does not explicitly improve over previous result. One possible solution is to use a clipping threshold based on the expected residual gradient norm. Then the output gradient becomes biased because of clipping and the utility/privacy guarantees in Theorem $3 . 3 / 3 . 2$ require new elaborate derivation. We leave this for future work. + +# 4 EXPERIMENTS + +We conduct experiments on MNIST, extended SVHN, and CIFAR-10 datasets. Our implementation is publicly available2. The model for MNIST has two convolutional layers with max-pooling and one fully connected layer. The model for SVHN and CIFAR-10 is ResNet20 in He et al. (2016). We replace all batch normalization (Ioffe & Szegedy, 2015) layers with group normalization (Wu & He, 2018) layers because batch normalization mixes the representations of different samples and makes the privacy loss cannot be analyzed accurately. The non-private accuracy for MNIST, SVHN, and CIFAR-10 is $9 9 . 1 \%$ , $9 5 . 9 \%$ , and $9 0 . 4 \%$ , respectively. + +We also provide experiments with pre-trained models in Appendix A. Tramèr & Boneh (2020) show that differentially private linear classifier can achieve high accuracy using the features produced by pre-trained models. We examine whether GEP can improve the performance of such private linear classifiers. Notably, using the features produced by a model pre-trained on unlabeled ImageNet, GEP achieves $9 4 . 8 \%$ validation accuracy on CIFAR10 with $\epsilon = 2$ . + +Evaluated algorithms We use the algorithm in Abadi et al. (2016) as benchmark gradient perturbation approach, referred to as “GP”. We also compare GEP with PATE (Papernot et al., 2017). We run the experiments for PATE using the official implementation. The privacy parameter $\epsilon$ of PATE is data-dependent and hence cannot be released directly (see Section 3.3 in Papernot et al. (2017)). Nonetheless, we report the results of PATE anyway. + +Implementation details At each step, GEP needs to release two vectors: the noisy gradient embedding and the noisy residual gradient. The gradient embeddings have a sensitivity of $S _ { 1 }$ and the residual gradients have a sensitivity of $S _ { 2 }$ because of the clipping. The output of GEP can be constructed as follows: (1) normalize the gradient embeddings and residual gradients by $1 / S _ { 1 }$ and $1 / S _ { 2 }$ , respectively, (2) concatenate the rescaled vectors, (3) release the concatenated vector via√ gaussian mechanism with sensitivity $\sqrt { 2 }$ , (4) rescale the two components by $S _ { 1 }$ and $S _ { 2 }$ . B-GEP only needs to release the normalized noisy gradient embedding. We use the numerical tool in Mironov et al. (2019) to compute the privacy loss. For given privacy budget and sampling probability, $\sigma$ is set to be the smallest value such that the privacy budget is allowable to run desired epochs. + +All experiments are run on a single Tesla V100 GPU with 16G memory. For ResNet20, the parameters are divided into five groups: input layer, output layer, and three intermediate stages. For a given quota of basis vectors, we allocate it to each group according to the square root of the number of parameters in each group. We compute an orthonormal subspace basis on each group separately. + +Table 1: Test accuracy (in $\%$ ) with varying choices of privacy bound $\epsilon$ . The numbers under symbol $\Delta$ denote the improvement over GP baseline. + +
Dataset Algorithme=2Ae=5Ae=8A
GPPATEMNISTB-GEPGEP94.7+0.096.8+0.097.2+0.0
PATE98.5+3.898.5+1.798.6+1.4
B-GEP93.1-1.694.5-2.395.9-1.3
96.3+1.697.9+1.198.4+1.2
SVHNGP87.1+0.091.3+0.091.6+0.0
PATE80.7-6.491.6+0.391.6+0.0
B-GEP88.5+1.491.8+0.592.3+0.7
GEP92.3+5.294.7+3.495.1+3.5
CIFAR-10GP43.6+0.052.2+0.056.4+0.0
PATE34.2-9.441.9-10.343.6-12.8
B-GEP50.3+6.759.5+7.363.0+6.6
GEP59.7+16.170.1+17.974.9+18.5
+ +![](images/fa6a5f6d7a35fa34dec7a6cf45765314549eb5a963274140f2a890e59cd1e7d0.jpg) +Figure 6: Test accuracy when varying the dimension of anchor subspace. GEP significantly outperforms B-GEP for all $k$ . Moreover, the performance of GEP is not that sensitive to $k$ . + +Then we concatenate the projections of all groups to construct gradient embeddings. The number of power iterations $t$ is set as 1 as empirical evaluations suggest more iterations do not improve the performance for GEP and B-GEP. + +For all datasets, the anchor gradients are computed on 2000 random samples from ImageNet. In Appendix C, we examine the influence of choosing different numbers of anchor gradients and different sources of auxiliary data. The selected images are downsampled into size of $3 2 \times 3 2$ ( $2 8 \times 2 8$ for MNIST) and we label them randomly at each update. For SVHN and CIFAR-10, $k$ is chosen from [500, 1000, 1500, 2000]. For MNIST, we halve the size of $k$ . We use SGD with momentum 0.9 as the optimizer. Initial learning rate and batchsize are 0.1 and 1000, respectively. The learning rate is divided by 10 at middle of training. Weight decay is set as $1 \times 1 0 ^ { - 4 }$ . The clipping threshold for is 10 for original gradients and 2 for residual gradients. The number of training epochs for CIFAR-10 and MNIST is 50, 100, 200 for privacy parameter $\epsilon = 2 , 5 , 8$ , respectively. The number of training epochs for SVHN is 5, 10, 20 for privacy parameter $\epsilon = 2 , 5 , 8$ , respectively. Privacy parameter $\delta$ is $1 ^ { \cdot } \times 1 0 ^ { - 6 }$ for SVHN and $\mathrm { i } \times \mathrm { 1 0 ^ { - 5 } }$ for CIFAR-10 and MNIST. + +Results The best accuracy with given $\epsilon$ is in Table 4. For all datasets, GEP achieves considerable improvement over GP in Abadi et al. (2016). Specifically, GEP achieves $7 4 . 9 \%$ test accuracy on CIFAR-10 with $( 8 , 1 0 ^ { - 5 } )$ -DP, outperforming GP by $1 8 . 5 \%$ . PATE achieves best accuracy on MNIST but its performance drops as the dataset becomes more complex. + +We also plot the relation between accuracy and $k$ in Figure 6. GEP is less sensitive to the choice of $k$ and outperforms B-GEP for all choices of $k$ . The improvement of increasing $k$ becomes smaller as $k$ becomes larger. We note that the memory cost of choosing large $k$ is high because we need to store at least $k$ individual gradients to compute anchor subspace. + +# 5 CONCLUSION + +In this paper, we propose Gradient Embedding Perturbation (GEP) for learning with differential privacy. GEP leverages the gradient redundancy to reduce the added noise and outputs an unbiased estimator of target gradient. The several key designs of GEP significantly boost the applicability of GEP. Extensive experiments on real world datasets demonstrate the superior utility of GEP. + +# REFERENCES + +Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer and Communications Security, 2016. + +Noga Alon, Raef Bassily, and Shay Moran. Limits of private learning with access to public data. In Advances in Neural Information Processing Systems, 2019. + +Borja Balle, Gilles Barthe, and Marco Gaboardi. Privacy amplification by subsampling: Tight analyses via couplings and divergences. In Advances in Neural Information Processing Systems, 2018. + +Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk minimization: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of Computer Science, 2014. + +Daniel Bernau, Philip-William Grassal, Jonas Robl, and Florian Kerschbaum. Assessing differentially private deep learning with membership inference. arXiv preprint arXiv:1912.11328, 2019. + +Gilles Blanchard, Olivier Bousquet, and Laurent Zwald. Statistical properties of kernel principal component analysis. Machine Learning, 66(2-3):259–294, 2007. + +Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and lower bounds. In Theory of Cryptography Conference, 2016. + +Nicholas Carlini, Chang Liu, Úlfar Erlingsson, Jernej Kos, and Dawn Song. The secret sharer: Evaluating and testing unintended memorization in neural networks. In USENIX Security Symposium, 2019. + +Ting Chen, Simon Kornblith, Kevin Swersky, Mohammad Norouzi, and Geoffrey Hinton. Big self-supervised models are strong semi-supervised learners. arXiv preprint arXiv:2006.10029, 2020a. + +Xiangyi Chen, Steven Z Wu, and Mingyi Hong. Understanding gradient clipping in private sgd: A geometric perspective. Advances in Neural Information Processing Systems, 33, 2020b. + +Sanjoy Dasgupta and Anupam Gupta. An elementary proof of a theorem of johnson and lindenstrauss. Random Structures & Algorithms, 2003. + +Jinshuo Dong, Aaron Roth, and Weijie J Su. Gaussian differential privacy. arXiv preprint arXiv:1905.02383, 2019. + +Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data, ourselves: Privacy via distributed noise generation. In Annual International Conference on the Theory and Applications of Cryptographic Techniques, 2006a. + +Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Theory of cryptography conference, 2006b. + +Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations and Trends® in Theoretical Computer Science, 2014. + +Morris L Eaton and Michael D Perlman. The non-singularity of generalized sample covariance matrices. The Annals of Statistics, pp. 710–717, 1973. + +Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confidence information and basic countermeasures. In ACM SIGSAC Conference on Computer and Communications Security, 2015. + +Kazuto Fukuchi, Quang Khai Tran, and Jun Sakuma. Differentially private empirical risk minimization with input perturbation. In International Conference on Discovery Science, 2017. + +Mary Gooneratne, Khe Chai Sim, Petr Zadrazil, Andreas Kabel, Françoise Beaufays, and Giovanni Motta. Low-rank gradient approximation for memory-efficient on-device training of deep neural network. In IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE, 2020. + +Guy Gur-Ari, Daniel A Roberts, and Ethan Dyer. Gradient descent happens in a tiny subspace. arXiv preprint arXiv:1812.04754, 2018. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 2016. + +Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross Girshick. Momentum contrast for unsupervised visual representation learning. In Conference on Computer Vision and Pattern Recognition, 2020. + +Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, 2017. + +Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In International Conference on Machine Learning, 2015. + +Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang. Towards practical differentially private convex optimization. In IEEE Symposium on Security and Privacy, 2019. + +Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information Processing Systems, 2018. + +James Jordon, Jinsung Yoon, and Mihaela van der Schaar. Pate-gan: Generating synthetic data with differential privacy guarantees. In International Conference on Learning Representations, 2019. + +Peter Kairouz, Mónica Ribero, Keith Rush, and Abhradeep Thakurta. Dimension independence in unconstrained private erm via adaptive preconditioning. arXiv preprint arXiv:2008.06570, 2020. + +Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization and high-dimensional regression. In Conference on Learning Theory, 2012. + +Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, 2018. + +Xinyan Li, Qilong Gu, Yingxue Zhou, Tiancong Chen, and Arindam Banerjee. Hessian based analysis of sgd for deep nets: Dynamics and generalization. In SIAM International Conference on Data Mining, 2020. + +Yuzhe Ma, Xiaojin Zhu, and Justin Hsu. Data poisoning against differentially-private learners: attacks and defenses. In Proceedings of the 28th International Joint Conference on Artificial Intelligence, pp. 4732–4738. AAAI Press, 2019. + +Ilya Mironov. Rényi differential privacy. In IEEE Computer Security Foundations Symposium, 2017. + +Ilya Mironov, Kunal Talwar, and Li Zhang. Rényi differential privacy of the sampled gaussian mechanism. arXiv, 2019. + +Robb J Muirhead. Aspects of multivariate statistical theory, volume 197. John Wiley & Sons, 2009. + +Maysum Panju. Iterative methods for computing eigenvalues and eigenvectors. arXiv preprint arXiv:1105.1185, 2011. + +Nicolas Papernot, Martín Abadi, Ulfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semisupervised knowledge transfer for deep learning from private training data. In International Conference on Learning Representations, 2017. + +Nicolas Papernot, Shuang Song, Ilya Mironov, Ananth Raghunathan, Kunal Talwar, and Úlfar Erlingsson. Scalable private learning with pate. In International Conference on Learning Representations, 2018. + +NhatHai Phan, My T Thai, Han Hu, Ruoming Jin, Tong Sun, and Dejing Dou. Scalable differential privacy with certified robustness in adversarial learning. International Conference on Machine Learning, 2020. + +Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang. Membership inference attack against differentially private deep learning model. Transactions on Data Privacy, 2018. + +Alexandre Sablayrolles, Matthijs Douze, Yann Ollivier, Cordelia Schmid, and Hervé Jégou. Whitebox vs black-box: Bayes optimal strategies for membership inference. International Conference on Machine Learning, 2019. + +Reza Shokri and Vitaly Shmatikov. Privacy-preserving deep learning. In ACM SIGSAC conference on computer and communications security, 2015. + +Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017. + +Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differentially private updates. In Global Conference on Signal and Information Processing (GlobalSIP), 2013. + +Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances in Neural Information Processing Systems, 2015. + +Abhradeep Guha Thakurta and Adam Smith. Differentially private feature selection via stability arguments, and the robustness of the lasso. In Conference on Learning Theory, 2013. + +Florian Tramèr and Dan Boneh. Differentially private learning needs better features (or much more data). arXiv preprint arXiv:2011.11660, 2020. + +Joel A Tropp et al. An introduction to matrix concentration inequalities. Foundations and Trends® in Machine Learning, 8(1-2):1–230, 2015. + +Thijs Vogels, Sai Praneeth Karimireddy, and Martin Jaggi. Powersgd: Practical low-rank gradient compression for distributed optimization. In Advances in Neural Information Processing Systems, 2019. + +Di Wang and Jinhui Xu. On sparse linear regression in the local differential privacy model. In International Conference on Machine Learning, 2019. + +Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited: Faster and more general. In Advances in Neural Information Processing Systems, 2017. + +Jun Wang and Zhi-Hua Zhou. Differentially private learning with small public data. In AAAI, 2020. + +Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for sparse learning. In International Joint Conference on Artificial Intelligence, 2019. + +Yu-Xiang Wang, Borja Balle, and Shiva Prasad Kasiviswanathan. Subsampled rényi differential privacy and analytical moments accountant. In International Conference on Artificial Intelligence and Statistics, 2019. + +Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing model-inversion attacks. In IEEE Computer Security Foundations Symposium, 2016. + +Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on differential privacy for scalable stochastic gradient descent-based analytics. In ACM International Conference on Management of Data, 2017. + +Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the European conference on computer vision (ECCV), 2018. + +Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. Gradient perturbation is underrated for differentially private convex optimization. In Proc. of 29th Int. Joint Conf. Artificial Intelligence, 2020. + +Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. How does data augmentation affect privacy in machine learning? In Proc. of the AAAI Conference on Artificial Intelligence, 2021. + +Yingxue Zhou, Zhiwei Steven Wu, and Arindam Banerjee. Bypassing the ambient dimension: Private sgd with gradient subspace identification. arXiv preprint arXiv:2007.03813, 2020. + +Ligeng Zhu, Zhijian Liu, and Song Han. Deep leakage from gradients. In Advances in Neural Information Processing Systems, 2019. + +Yuqing Zhu and Yu-Xiang Wang. Poission subsampled rényi differential privacy. In International Conference on Machine Learning, 2019. + +# A EXPERIMENTS WITH PRE-TRAINED MODELS + +Recent works have shown that pre-training the models on unlabeled data can be beneficial for subsequent learning tasks (Chen et al., 2020a; He et al., 2020). Tramèr & Boneh (2020) demonstrate that differentially private linear classifier can achieve high accuracy using the features produced by those per-trained models. We show that GEP can also benefit from such pre-trained models. + +Inspired by Tramèr & Boneh (2020), we use the output of the penultimate layer of a pre-trained ResNet152 model as feature to train a private linear classifier. The ResNet152 model is pre-trained on unlabeled ImageNet using SimCLR (Chen et al., 2020a). The feature dimension is 4096. + +Implementation Details We choose the privacy parameter $\epsilon$ from [0.1, 0.5, 1, 2]. The privacy parameter $\delta$ is $1 \times 1 0 ^ { - 5 }$ . We run all experiments for 5 times and report the average accuracy. The clipping threshold of residual gradients is still one-fifth of the clipping threshold of the original gradients. The√ dimension of anchor subspace is set as $2 0 0 \simeq { \sqrt { p } }$ where $p = 4 0 9 6 0$ is the model dimension. We randomly sample 500 samples from the test set as auxiliary data and evaluate performance on the rest test samples. The optimizer is Adam with default momentum coefficients. Other hyper-parameters are listed in Table 2. + +Table 2: Hyperparameter values used in Appendix A. + +
HyperparameterValues
Learning rate0.01,0.05,0.1
Running steps50,100,400
Clipping threshold0.01,0.1,1
+ +Results The experiment results are shown in Table 3. GEP outperforms GP on all values of $\epsilon$ . With privacy bound $\epsilon = 2$ , GEP achieves $9 4 . 8 \%$ validation accuracy on CIFAR10 dataset, improving over the GP baseline by $1 . 4 \%$ . For very strong privacy guarantee $\epsilon = 0 . 1$ ), B-GEP performs on par with GEP because strong privacy guarantee requires large noise and the useful signal in residual gradient is submerged in the added noise. B-GEP benefits less from larger $\epsilon$ compared to GP or GEP. For $\epsilon = 1$ and 2, the performance of B-GEP is worse than the performance of GP. This is because larger $\epsilon$ can not reduce the systematic error of B-GEP (see Remark 1 in Section 3.2). + +Table 3: Validation accuracy $( \mathrm { i n } \% )$ ) on CIFAR10 with varying choices of $\epsilon$ . We train a private linear model on top of the features from a ResNet152 model, which is pre-trained on unlabeled ImageNet. + +
e=0.1e=0.5e=1e=2
Non private96.396.396.396.3
GP88.2 (±0.16)91.1 (±0.17)93.2 (±0.19)93.4 (±0.12)
B-GEP91.0 (±0.07)92.9 (±0.03)93.1 (±0.10)93.2 (±0.08)
GEP90.9 (±0.19)93.5 (±0.06)94.3 (±0.09)94.8 (±0.06)
+ +# B COMPLEXITY ANALYSIS + +We provide an analysis of the computational and memory costs of the construction of anchor subspace. The computation of the anchor subspace is the dominant additional cost of GEP compared to conventional gradient perturbation. Notations: $k , m , n$ , and $p$ are the dimension of anchor subspace, number of anchor gradients, number of private gradients, and the model dimension, respectively. In order to reduce the computational and memory costs, we divide the parameters into $g$ groups and compute one orthonormal basis for each group. We refer to this approach as ‘parameter grouping’. In this section, we assume the parameters and the dimension of the anchor subspace are both divided evenly. Table 4 summarizes the additional costs of GEP with/without parameter grouping. Using parameter grouping can reduce the computational/memory cost significantly. + +Table 4: Computational and memory costs of a single power iteration in Algorithm 1. The computation cost is measured by the number of floating point operations. The memory cost is measured by the number of floating-point numbers we need to store. $\cdot _ { \mathrm { G E P + P G } } ,$ denotes GEP with parameter grouping and $g$ denotes the number of groups. Notations: $k$ , $m$ , $n$ , and $p$ are the dimension of anchor subspace, number of anchor gradients, number of private gradients, and the model dimension, respectively. + +
Computational CostMemory Cost
GEP2mkp+pk²max(0,(m-n+k)p+mk)
GEP+PG2mkp/g+pk²/g²max (0,(m-n+)p+mk)
+ +# C ABLATION STUDY + +The influence of choosing different auxiliary datasets. We conduct experiments with different choices of auxiliary datasets. For CIFAR10, we try 2000 random test samples from CIFAR10, 2000 random samples from CIFAR100, and 2000 random samples from ImageNet. When the auxiliary dataset is CIFAR10, we try both correct labels and random labels. For all choices of auxiliary datasets, the test accuracy is evaluated on 8000 test samples of CIFAR10 that are not used as auxiliary data. Other implementation details are the same as in Section 4. The results are shown in Table 5. Surprisingly, using samples from CIFAR10 with correct labels yields the worst accuracy. This may because the model ‘overfits’ the auxiliary data when it has access to correct labels, which makes the anchor subspace contains less information about the private gradients. The best accuracy is achieved using samples from CIFAR10 with random labels, this makes sense because in this case the features of auxiliary data and private data have the same distribution. Using samples from CIFAR100 or ImageNet as auxiliary data has a small influence on the test accuracy. + +Table 5: Test accuracy on CIFAR10 with different choices of auxiliary datasets. The privacy guarantee is $( 8 , 1 0 ^ { - 5 } )$ -DP. We report the average accuracy of five runs with standard deviations in brackets. + +
Auxiliary DataRandomLabel?Test Accuracy
CIFAR10No72.9 (±0.31)
CIFAR10Yes75.1 (±0.42)
CIFAR100Yes74.7 (±0.46)
ImageNetYes74.8 (±0.39)
+ +The influence of the number of anchor gradients. In the main text, the size of auxiliary dataset is $m = 2 0 0 0$ . We conduct more experiments with different sizes of auxiliary dataset to examine the influence of $m$ . The auxiliary data is randomly sampled from ImageNet. Table 6 reports the test accuracy on CIFAR10 with different choices of $m$ . For both B-GEP and GEP, increasing $m$ leads to slightly improved performance. + +Table 6: Test accuracy on CIFAR10 with different sizes of auxiliary dataset. The privacy guarantee is $( 8 , 1 0 ^ { - 5 } )$ -DP. We report the average accuracy of five runs with standard deviations in brackets. + +
Algorithmm = 1000m = 2000m = 4000
B-GEP62.2 (±0.26)62.6 (±0.24)63.3 (±0.27)
GEP74.6 (±0.41)74.8 (±0.39)75.2 (±0.34)
+ +The projection error of random basis vectors. It is tempting to construct the anchor subspace using random basis vectors because Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees that one can preserve the pairwise distance between any two points after projecting into a random subspace of much lower dimension. We empirically verify the projection error of Gaussian random basis vectors on CIFAR10 and SVHN. The experiment settings are the same as in Section 4. The projection errors over the training process are plotted in Figure 7. The projection error of random basis vectors is very high $( > 9 5 \%$ ) throughout training. This is because preserving the pairwise distance is not sufficient for high quality gradient reconstruction, which requires one to preserve the average ‘distance’ between any individual gradient and all other gradients. + +![](images/6bd629998cab363e48acafcc2df5409bfe0ffc571069597eaba467654c736237.jpg) +Figure 7: Projection error rate of random basis vectors. The dimension of subspace is denoted by $k$ . + +# D MISSING PROOFS + +Lemma 3.1. Assume that the population covariance matrix $\pmb { \Sigma }$ is with rank $k$ and the distribution $\mathcal { P }$ satisfies $\mathbb { P } ( \pmb { \xi } \in \mathbb { F } _ { s } ) = 0$ for all $s$ -flats $\mathbb { F } _ { s }$ in $\mathbb { R } ^ { p }$ with $0 \leq s < k$ . Let $\pmb { \Sigma } = \pmb { V _ { k } } \pmb { \Lambda } \pmb { V } _ { k } ^ { T }$ and $\hat { \pmb { S } } = \hat { V } _ { k ^ { \prime } } \hat { \pmb { \Lambda } } \hat { V } _ { k ^ { \prime } } ^ { T }$ be the eigendecompositions of $\pmb { \Sigma }$ and the empirical covariance matrix $\hat { S }$ , respectively, such that $\lambda _ { k ^ { \prime } } ( \hat { S } ) > 0$ and $\lambda _ { k ^ { \prime } + 1 } ( \hat { \pmb S } ) = 0$ . Then if $m \geq k$ , we have with probability $^ { l }$ , + +$$ +k ^ { \prime } = k \quad a n d \quad \| V _ { k } V _ { k } ^ { T } - \hat { V } _ { k } \hat { V } _ { k } ^ { T } \| _ { 2 } = 0 . +$$ + +Proof. We extend the Theorem 3.2 in Eaton & Perlman (1973) to the low-rank case. + +Theorem D.1 (Theorem 3.2 in Eaton & Perlman (1973)). Let $\pmb { X } = ( \pmb { x } _ { 1 } , . . . , \pmb { x } _ { n } )$ where the $\mathbf { \Delta } _ { \mathbf { \mathcal { X } } _ { i } }$ are i.i.d. random vectors in $\mathbb { R } ^ { p }$ , $n \geq p$ . If $\mathbb { P } \{ \pmb { x } _ { 1 } \in \mathbb { M } \} = 0$ for all proper manifolds $\mathbb { M } \subset \mathbb { R } ^ { p }$ , then $\mathbb { P } \{ X$ is non-singular $\scriptstyle \cdot \} = I$ . + +We note that the subspace spanned by $\hat { V } _ { k ^ { \prime } }$ is in the space spanned by $V _ { k }$ by definition. Hence $k ^ { \prime } \leq k$ + +Let $\hat { \pmb { x } } _ { i } : = V _ { k } ^ { T } \pmb { \hat { \xi } } _ { i } \in \mathbb { R } ^ { k }$ for $i \in [ m ]$ . Then $\hat { \pmb X } : = ( \hat { \pmb x } _ { 1 } , . . . , \hat { \pmb x } _ { m } )$ is non-singular because of the assumption and Theorem D.1. That is $r a n k ( { \hat { X } } ) = k$ . Therefore $r a n k ( ( \hat { \xi } _ { 1 } , . . . , \hat { \xi } _ { m } ) ) \geq k , r a n k ( \hat { S } ) \geq k$ and $k ^ { \prime } \geq k$ . Therefore $k ^ { \prime } = k$ and the subspace spanned by $\hat { V } _ { k ^ { \prime } }$ and the subspace spanned by $V _ { k }$ are identical. □ + +Theorem 3.1. Let $S _ { 1 }$ and $S _ { 2 }$ be the sensitivity of w and $\pmb { r }$ , respectively, the output of Algorithm $^ { l }$ satisfies $( \epsilon , \delta )$ -DP for any $\delta \in ( 0 , 1 )$ and $\epsilon \leq 2 \log ( 1 / \delta )$ if we choose $\sigma _ { 1 } \geq 2 S _ { 1 } \sqrt { 2 \log ( 1 / \delta ) } / \epsilon$ and $\sigma _ { 2 } \geq 2 S _ { 2 } \sqrt { 2 \log ( 1 / \delta ) } / \epsilon$ . + +Proof of Theorem 3.1. We first introduce some background knowledge of Rényi differential privacy (RDP) (Mironov, 2017). RDP measures the Rényi divergence between two output distributions. + +Definition 2 ( $( \lambda , \gamma )$ -RDP). A randomized mechanism $f$ is said to guarantee $( \lambda , \gamma )$ -RDP if for any neighboring datasets $\mathbb { D } , \mathbb { D } ^ { \prime }$ and $\lambda > 1$ it holds that + +$$ +D _ { \lambda } ( f ( \mathbb { D } ) | | f ( \mathbb { D } ^ { \prime } ) ) \leq \gamma , +$$ + +where $D _ { \lambda } ( \cdot | | \cdot )$ denotes the Rényi divergence of order $\lambda$ . + +We next introduce some useful properties of RDP. + +Lemma D.2 (Gaussian mechanism of RDP). Let $S = \operatorname* { m a x } _ { \mathbb { D } \sim \mathbb { D ^ { \prime } } } \| f ( \mathbb { D } ) - f ( \mathbb { D ^ { \prime } } ) \|$ be the $l _ { 2 }$ sensitivity, then Gaussian mechanism $\mathcal { M } = f ( \mathbb { D } ) + z$ satisfies $( \lambda , \frac { \lambda S ^ { 2 } } { 2 \sigma ^ { 2 } } )$ -RDP, where $z \sim \mathcal { N } ( 0 , \sigma ^ { 2 } I _ { p \times p } )$ . + +Lemma D.3 (Composition of RDP). If $M _ { 1 }$ , $M _ { 2 }$ satisfy $( \lambda , \gamma _ { 1 } )$ -RDP and $( \lambda , \gamma _ { 2 } )$ -RDP respectively, then their composition satisfies $( \lambda , \gamma _ { 1 } + \gamma _ { 2 } ) – R D P$ . + +Lemma D.4 (Conversion from RDP to $( \epsilon , \delta )$ -DP). If $\mathcal { M }$ obeys $( \lambda , \gamma )$ -RDP, then $\mathcal { M }$ obeys $( \gamma +$ $\log ( 1 / \delta ) / ( \lambda - 1 ) , \delta )$ -DP for all $0 < \delta < 1$ . + +Now we proof Theorem 3.1. Let $W$ , $W ^ { \prime }$ be the gradient embeddings of two neighboring datasets $\mathbb { D } \sim \mathbb { D } ^ { \prime }$ and $R , R ^ { \prime }$ be corresponding residual gradients. Without loss of generality, suppose $W \left( R \right)$ has one more row than $W ^ { \prime } \left( R ^ { \prime } \right)$ . For given sensitivity $S _ { 1 } , S _ { 2 }$ , + +$$ +\operatorname* { m a x } _ { \mathbb { D } \sim \mathbb { D } ^ { \prime } } \| \boldsymbol { w } - \boldsymbol { w } ^ { \prime } \| = \operatorname* { m a x } _ { \boldsymbol { W } \sim \boldsymbol { W } ^ { \prime } } \| \boldsymbol { W } _ { n , : } \| \le S _ { 1 } , \quad \operatorname* { m a x } _ { \mathbb { D } \sim \mathbb { D } ^ { \prime } } \| \boldsymbol { r } - \boldsymbol { r } ^ { \prime } \| = \operatorname* { m a x } _ { \boldsymbol { R } \sim \boldsymbol { R } ^ { \prime } } \| \boldsymbol { R } _ { n , : } \| \le S _ { 2 } . +$$ + +If we set $\sigma _ { 1 } = S _ { 1 } \sigma$ and $\sigma _ { 2 } = S _ { 2 } \sigma$ for some $\sigma$ , then Algorithm 1 satisfies $( \lambda , { \frac { \lambda } { \sigma ^ { 2 } } } )$ -RDP because of Lemma D.2 and D.3. In order to guarantee $( \epsilon , \delta )$ -DP, we need + +$$ +\frac { \lambda } { \sigma ^ { 2 } } + \frac { \log ( 1 / \delta ) } { \lambda - 1 } \leq \epsilon . +$$ + +Choose $\begin{array} { r } { \lambda = 1 + \frac { 2 \log ( 1 / \delta ) } { \epsilon } } \end{array}$ and rearrange Eq (5), we need + +$$ +\sigma ^ { 2 } \geq \frac { 2 \left( \epsilon + 2 \log ( 1 / \delta ) \right) } { \epsilon ^ { 2 } } . +$$ + +Then using the constraint on $\epsilon$ concludes the proof. + +Theorem 3.2. For any $\epsilon < 2 \log ( 1 / \delta )$ and $\delta \in ( 0 , 1 )$ , the output of Algorithm 2 satisfies $( \epsilon , \delta )$ -DP if we set $\sigma \geq 2 \sqrt { 2 T \log ( 1 / \delta ) } / \epsilon$ . + +Proof of Theorem 3.2. From the proof of Theorem 3.1, we have each call of GEP satisfies $( \lambda , { \frac { \lambda } { \sigma ^ { 2 } } } )$ - RDP. Then by the composition property of RDP (Lemma D.3), the output of Algorithm 2 satisfies $( \lambda , \frac { T \lambda } { \sigma ^ { 2 } } )$ -RDP. Plugging $\textstyle { \frac { T \lambda } { \sigma ^ { 2 } } }$ into Equation 5 and 6 concludes the proof. + +Theorem 3.3. Suppose the loss $\begin{array} { r } { L ( \pmb \theta ) = \frac { 1 } { n } \sum _ { ( \pmb x , y ) \in \mathbb { D } } \ell ( f _ { \pmb \theta } ( \pmb x ) , y ) } \end{array}$ is $I$ -Lipschitz, convex, and $\beta$ - smooth. If $\begin{array} { r l r } { \eta } & { { } = } & { \frac { 1 } { \beta } } \end{array}$ , $\begin{array} { l } { T \ = \ { \frac { n \beta \epsilon } { \sqrt { p } } } } \end{array}$ √p , and $\begin{array} { r c l } { \overline { { \pmb { \theta } } } } & { = } & { \frac { 1 } { T } \sum _ { t = 1 } ^ { T } \pmb { \theta } _ { t } } \end{array}$ , then we have $\begin{array} { r } { \mathbb { E } [ L ( \bar { \pmb \theta } ) ] ~ - ~ L ( \pmb \theta _ { * } ) ~ \leq } \end{array}$ $\begin{array} { r } { \mathcal { O } \left( \frac { \sqrt { k \log ( 1 / \delta ) } } { n \epsilon } + \frac { \bar { r } \sqrt { p \log ( 1 / \delta ) } } { n \epsilon } \right) } \end{array}$ , where r¯ = 1T PT −1t=0 r2t and rt = maxi k(Rt)i,:k is the sensitivity of residual gradient at step $t$ . + +Proof of Theorem 3.3. The $\beta$ -smooth condition gives + +$$ +L ( \pmb \theta _ { t + 1 } ) \leq L ( \pmb \theta _ { t } ) + \langle \nabla L ( \pmb \theta _ { t } ) , \pmb \theta _ { t + 1 } - \pmb \theta _ { t } \rangle + \frac { \beta } { 2 } \left. \pmb \theta _ { t + 1 } - \pmb \theta _ { t } \right. ^ { 2 } . +$$ + +Based on the update rule of GEP we have + +$$ +\pmb { \theta } _ { t + 1 } - \pmb { \theta } _ { t } = - \eta \tilde { \pmb { v } } = - \eta \nabla L ( \pmb { \theta } _ { t } ) - \frac { \eta } { n } ( z _ { t } ^ { ( 1 ) } \pmb { B } + z _ { t } ^ { ( 2 ) } ) , +$$ + +where $\boldsymbol { z } _ { t } ^ { ( 1 ) } \sim \mathcal { N } ( 0 , \sigma ^ { 2 } \boldsymbol { I } _ { k \times k } )$ , $\boldsymbol { z } _ { t } ^ { ( 2 ) } \sim \mathcal { N } ( \boldsymbol { 0 } , \sigma ^ { 2 } r _ { t } ^ { 2 } \boldsymbol { I } _ { p \times p } )$ are the perturbation noises and $r _ { t } = $ $\operatorname * { m a x } _ { i } \| ( \pmb { R } _ { t } ) _ { i , : } \|$ is the sensitivity of residual gradients at step $t$ . + +Take expectation on Eq (7) with respect to the perturbation noises. + +$$ +\mathbb { E } [ L ( \pmb { \theta } _ { t + 1 } ) ] \leq \mathbb { E } [ L ( \pmb { \theta } _ { t } ) ] - ( \eta - \beta \eta ^ { 2 } / 2 ) \mathbb { E } [ \| \nabla L ( \pmb { \theta } _ { t } ) \| ^ { 2 } ] + \frac { \beta \eta ^ { 2 } \sigma ^ { 2 } } { 2 n ^ { 2 } } \left( k + p r _ { t } ^ { 2 } \right) . +$$ + +Subtract $L ( \theta _ { * } )$ from both sides, we have + +$$ +\begin{array} { r l } & { \mathbb { I } [ L ( \theta _ { t + 1 } ) ] - L ( \theta _ { * } ) \le \mathbb { E } [ L ( \theta _ { t } ) ] - L ( \theta _ { * } ) - ( \eta - \beta \eta ^ { 2 } / 2 ) \mathbb { E } [ \left. \nabla L ( \theta _ { t } ) \right. ^ { 2 } ] + \displaystyle \frac { \beta \eta ^ { 2 } \sigma ^ { 2 } } { 2 n ^ { 2 } } \left( k + p r _ { t } ^ { 2 } \right) } \\ & { \qquad \le \mathbb { E } [ \langle \nabla L ( \theta _ { t } ) , \theta _ { t } - \theta _ { * } \rangle ] - ( \eta - \beta \eta ^ { 2 } / 2 ) \mathbb { E } [ \left. \nabla L ( \theta _ { t } ) \right. ^ { 2 } ] + \displaystyle \frac { \beta \eta ^ { 2 } \sigma ^ { 2 } } { 2 n ^ { 2 } } \left( k + p r _ { t } ^ { 2 } \right) . } \end{array} +$$ + +The second inequality holds because $L$ is convex. Then choose $\begin{array} { r } { \eta \mathrm { ~ = ~ } \frac { 1 } { \beta } } \end{array}$ and plug $\nabla L ( \pmb \theta _ { t } ) =$ $( \pmb { \theta } _ { t } - \pmb { \theta } _ { t + 1 } ) / \eta - ( z _ { 1 } ^ { t } \pmb { B } + z _ { 2 } ^ { t } ) / n$ into Eq (10). + +$$ +\begin{array} { r l } & { \displaystyle \mathbb { E } [ L ( \theta _ { t + 1 } ) ] - L ( \theta _ { * } ) \le \beta \mathbb { E } [ \langle \theta _ { t } - \theta _ { t + 1 } , \theta _ { t } - \theta _ { * } \rangle ] - \frac { \beta } { 2 } \mathbb { E } [ \| \theta _ { t } - \theta _ { t + 1 } \| ^ { 2 } ] + \frac { \sigma ^ { 2 } } { \beta n ^ { 2 } } \left( k + p r _ { t } ^ { 2 } \right) } \\ & { \quad \quad \quad \quad \quad = \displaystyle \frac { \beta } { 2 } \left( \mathbb { E } [ \| \theta _ { t } - \theta _ { * } \| ^ { 2 } ] - \mathbb { E } [ \| \theta _ { t + 1 } - \theta _ { * } \| ^ { 2 } ] \right) + \frac { \sigma ^ { 2 } } { \beta n ^ { 2 } } \left( k + p r _ { t } ^ { 2 } \right) . } \end{array} +$$ + +Sum over $t = 0 , \ldots , T - 1$ and use convexity, we have + +$$ +\mathbb { E } [ L ( \bar { \theta } ) ] - L ( \theta _ { * } ) \le \frac { \beta } { 2 T } \lVert \theta _ { 0 } - \theta _ { * } \rVert + \frac { \sigma ^ { 2 } } { \beta n ^ { 2 } } ( k + \frac { p } { T } \sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } ) . +$$ + +Then substituting $\begin{array} { r } { T = \frac { n \beta \epsilon } { \sqrt { p } } } \end{array}$ and $\sigma = \mathcal { O } ( \sqrt { T \log ( 1 / \delta ) } / \epsilon )$ yields the desired bound. \ No newline at end of file diff --git a/parse/train/7aogOj_VYO0/7aogOj_VYO0_content_list.json b/parse/train/7aogOj_VYO0/7aogOj_VYO0_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..faf18379a1fc1b108871c2be58b8b4965a0a771a --- /dev/null +++ b/parse/train/7aogOj_VYO0/7aogOj_VYO0_content_list.json @@ -0,0 +1,2377 @@ +[ + { + "type": "text", + "text": "DO NOT LET PRIVACY OVERBILL UTILITY: GRADIENT EMBEDDING PERTURBATION FOR PRIVATE LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 98, + 820, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Da $\\mathbf { V } \\mathbf { u } ^ { 1 , 2 , * }$ , Huishuai Zhang2,∗, Wei Chen2, Tie-Yan Liu2 \n1School of Computer Science and Engineering, Sun Yat-sen University \n2Microsoft Research Asia \n1yuda3@mail2.sysu.edu.cn \n2{huzhang,wche,tyliu}@microsoft.com ", + "bbox": [ + 184, + 167, + 650, + 242 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 279, + 544, + 294 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The privacy leakage of the model about the training data can be bounded in the differential privacy mechanism. However, for meaningful privacy parameters, a differentially private model degrades the utility drastically when the model comprises a large number of trainable parameters. In this paper, we propose an algorithm Gradient Embedding Perturbation (GEP) towards training differentially private deep models with decent accuracy. Specifically, in each gradient descent step, GEP first projects individual private gradient into a non-sensitive anchor subspace, producing a low-dimensional gradient embedding and a small-norm residual gradient. Then, GEP perturbs the low-dimensional embedding and the residual gradient separately according to the privacy budget. Such a decomposition permits a small perturbation variance, which greatly helps to break the dimensional barrier of private learning. With GEP, we achieve decent accuracy with reasonable computational cost and modest privacy guarantee for deep models. Especially, with privacy bound $\\epsilon = 8$ , we achieve $7 4 . 9 \\%$ test accuracy on CIFAR10 and $9 5 . 1 \\%$ test accuracy on SVHN, significantly improving over existing results. ", + "bbox": [ + 233, + 310, + 766, + 518 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 546, + 336, + 563 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent works have shown that the trained model may leak/memorize the information of its training set (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017; Hitaj et al., 2017), which raises privacy issue when the models are trained with sensitive data. Differential privacy (DP) mechanism provides a way to quantitatively measure and upper bound such information leakage. It theoretically ensures that the influence of any individual sample is negligible with the DP parameter $\\epsilon$ or $( \\epsilon , \\delta )$ . Moreover, it has been observed that differentially private models can also resist model inversion attack (Carlini et al., 2019), membership inference attack (Rahman et al., 2018; Bernau et al., 2019; Sablayrolles et al., 2019; Yu et al., 2021), gradient matching attack (Zhu et al., 2019), and data poisoning attack (Ma et al., 2019). ", + "bbox": [ + 174, + 579, + 825, + 705 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "One popular way to achieve differentially private machine learning is to perturb the training process with noise (Song et al., 2013; Bassily et al., 2014; Shokri & Shmatikov, 2015; Wu et al., 2017; Fukuchi et al., 2017; Iyengar et al., 2019; Phan et al., 2020). Specifically, gradient perturbation perturbs the gradient at each iteration of (stochastic) gradient descent algorithm and guarantees the privacy of the final model via composition property of DP. It is worthy to note that gradient perturbation does not assume (strongly) convex objective and hence is applicable to various settings (Abadi et al., 2016; Wang et al., 2017; Lee & Kifer, 2018; Jayaraman et al., 2018; Wang & Gu, 2019; Yu et al., 2020). Specifically, for given gradient sensitivity $S$ , a general form of gradient perturbation is to add an isotropic Gaussian noise $_ z$ to the gradient $\\pmb { g } \\in \\mathbb { R } ^ { p }$ independently for each step, ", + "bbox": [ + 174, + 710, + 825, + 837 + ], + "page_idx": 0 + }, + { + "type": "equation", + "img_path": "images/d554b0db410635760f4622599ed14bc6f791f2640b579fbb7f2460d93ae4ae98.jpg", + "text": "$$\n\\tilde { \\pmb g } = \\pmb g + \\pmb z , \\mathrm { w h e r e } \\ z \\sim \\mathcal N ( 0 , \\sigma ^ { 2 } S ^ { 2 } \\pmb { I } _ { p \\times p } ) .\n$$", + "text_format": "latex", + "bbox": [ + 354, + 843, + 643, + 862 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "One can set proper variance $\\sigma ^ { 2 }$ to make each update differentially private with parameter $( \\epsilon , \\delta )$ . It is easy to see that the intensity of the added noise $\\mathbb { E } [ \\| z \\| ^ { 2 } ]$ scales linearly with the model dimension $p$ ", + "bbox": [ + 176, + 871, + 825, + 900 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/2328dd1acaacf1d6d310601a05b8693111b94ade2562eb88887a4f66dd786d46.jpg", + "image_caption": [ + "Figure 1: Noise norm vs gradient norm of ResNet20 at initialization. The noise variance is chosen such that SGD satisfies $( 5 , 1 0 ^ { - 5 } )$ -DP after 90 epochs in Abadi et al. (2016). " + ], + "image_footnote": [], + "bbox": [ + 215, + 104, + 390, + 208 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/f29d64dfab5e9fa6de07c1a19f11f4a844d9260e860a0226687d143addd4c6e9.jpg", + "image_caption": [ + "Figure 2: Stable rank $\\| \\cdot \\| _ { F } ^ { 2 } / \\| \\cdot \\| ^ { 2 }$ (Tropp et al., 2015) of batch gradient matrix of given groups (with $p$ parameters). The setting is ResNet20 on CIFAR-10. The stable rank is small throughout training. " + ], + "image_footnote": [], + "bbox": [ + 611, + 104, + 774, + 208 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "This indicates that as the model becomes larger, the useful signal, i.e., gradient, would be submerged in the added noise (see Figure 1). This dimensional barrier restricts the utility of deep learning models trained with gradient perturbation. ", + "bbox": [ + 174, + 324, + 825, + 366 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The dimensional barrier is attributed to the fact that the added noise is isotropic while the gradients live on a very low dimensional manifold, which has been observed in (Gur-Ari et al., 2018; Vogels et al., 2019; Gooneratne et al., 2020; Li et al., 2020) and is also verified in Figure 2 for the gradients of a 20-layer ResNet (He et al., 2016). Hence to limit the noise energy, it is natural to think ", + "bbox": [ + 173, + 373, + 825, + 429 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "“Can we reduce the dimension of gradients first and then add the isotropic noise onto a low-dimensional gradient embedding?\" ", + "bbox": [ + 174, + 436, + 823, + 464 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The answer is affirmative. We propose a new algorithm Gradient Embedding Perturbation (GEP), illustrated in Figure 3. Specifically, we first compute anchor gradients on some non-sensitive auxiliary data, and identify an anchor subspace that is spanned by several top principal components of the anchor gradient matrix. Then we project the private gradients into the anchor subspace and obtain low-dimensional gradient embeddings and small-norm residual gradients. Finally, we perturb the gradient embedding and residual gradient separately according to the sensitivities and privacy budget. ", + "bbox": [ + 174, + 470, + 825, + 555 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We intuitively argue why GEP could reduce the perturbation variance and achieve good utility for large models. First, because the gradient embedding has a very low dimension, the added isotropic noise on embedding has small energy that scales linearly only with the subspace dimension. Second, if the anchor subspace can cover most of the gradient information, the residual gradient, though high dimensional, should have small magnitude, which permits smaller added noise to guarantee the same level privacy because of the reduced sensitivity. Overall, we can use a much lower perturbation compared with the original gradient perturbation to guarantee the same level of privacy. ", + "bbox": [ + 174, + 563, + 825, + 660 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We emphasize several properties of GEP. First, the non-sensitive auxiliary data assumption is weak. In fact, GEP only requires a small number of non-sensitive unlabeled data following a similar feature distribution as the private data, which often exist even for learning on sensitive data. In our experiments, we use a few unlabeled samples from ImageNet to serve as auxiliary data for MNIST, SVHN, and CIFAR-10. This assumption is much weaker than the public data assumption in previous works (Papernot et al., 2017; 2018; Alon et al., 2019; Wang & Zhou, 2020), where the public data should follow exactly the same distribution as the private data. Second, GEP produces an unbiased estimator of the target gradient because of releasing both the perturbed gradient embedding and the perturbed residual gradient, which turns out to be critical for good utility. Third, we use power method to estimate the principal components of anchor gradients, achievable with a few matrix multiplications. The fact that GEP is not sensitive to the choices of subspace dimension further allows a very efficient implementation. ", + "bbox": [ + 174, + 666, + 825, + 833 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Compared with existing works of differentially private machine learning, our contribution can be summarized as follows: (1) we propose a novel algorithm GEP that achieves good utility for large models with modest differential privacy guarantee; (2) we show that GEP returns an unbiased estimator of target private gradient with much lower perturbation variance than original gradient perturbation; (3) we demonstrate that GEP achieves state-of-the-art utility in differentially private learning with three benchmark datasets. Specifically, for $\\epsilon = 8$ , GEP achieves $7 4 . 9 \\%$ test accuracy on CIFAR-10 with a ResNet20 model. To the best of our knowledge, GEP is the first algorithm that can achieve such utility with training deep models from scratch for a “single-digit\" privacy budget1. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/3bef0fb092363e24757fc5e7749b7b0d21880e7f800df950d684090df99c907d.jpg", + "image_caption": [ + "Figure 3: Overview of the proposed GEP approach. 1) We estimate an anchor subspace on some non-sensitive data; 2) We project the private gradients into the anchor subspace, producing lowdimensional embeddings and residual gradients; 3) We perturb the gradient embedding and residual gradient separately to guarantee differential privacy. The auxiliary data are only required to share similar features as the private data. In our experiments, we use 2000 images from ImageNet as auxiliary data for MNIST, SVHN, and CIFAR-10 datasets. " + ], + "image_footnote": [], + "bbox": [ + 205, + 99, + 790, + 218 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 343, + 825, + 372 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "1.1 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 387, + 328, + 401 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Existing works studying differentially private machine learning in high-dimensional setting can be roughly categorized into two sets. One is treating the optimization of the machine learning objective as a whole mechanism and adding noise into this process. The other one is based on the knowledge transfer of machine learning models, which trains a differentially private publishable student model with private signals from teacher models. We review them one by one. ", + "bbox": [ + 174, + 406, + 825, + 477 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Differentially private convex optimization in high-dimensional setting has been studied extensively over the years (Kifer et al., 2012; Thakurta & Smith, 2013; Talwar et al., 2015; Wang & Xu, 2019; Wang & Gu, 2019). Although these methods demonstrate good utility on some convex settings, their analyses can not be directly applied to non-convex setting. Right before the submission, we note two independent and concurrent works (Zhou et al., 2020; Kairouz et al., 2020) that also leverage the gradient redundancy to reduce the added noise. Specifically, Kairouz et al. (2020) track historical gradients to do dimension reduction for private AdaGrad. Zhou et al. (2020) requires gradients on some public data and then project the noisy gradients into a public subspace at each update. One core difference between these two works and GEP is that we introduce residual gradient perturbation and GEP produces an unbiased estimator of the private gradients, which is essential for achieving the superior utility. Moreover, we weaken the auxiliary data assumption and introduce several designs that significantly boost the efficiency and applicability of GEP. ", + "bbox": [ + 174, + 483, + 825, + 650 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "One recent progress towards training arbitrary models with differential privacy is Private Aggregation of Teacher Ensembles (PATE) (Papernot et al., 2017; 2018; Jordon et al., 2019). PATE first trains independent teacher models on disjoint shards of private data. Then it trains a student model with privacy guarantee by distilling noisy predictions of teacher models on some public samples. In comparison, GEP only requires some non-sensitive data that have similar natural features as the private data while PATE requires the public data follow exactly the same distribution as the private data and in practice it uses a portion of the test data to serve as public data. Moreover, GEP demonstrates better performance than PATE especially for complex datasets, e.g., CIFAR-10, because GEP can train the model with the whole private data rather than a small shard of data. ", + "bbox": [ + 174, + 657, + 825, + 782 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 176, + 801, + 339, + 816 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We introduce some notations and definitions. We use bold lowercase letters, e.g., $\\textbf { { v } }$ , and bold capital letters, e.g., $M$ , to denote vectors and matrices, respectively. The $L ^ { 2 }$ norm of a vector $\\textbf { { v } }$ is denoted by $\\| \\pmb { v } \\|$ . The spectral norm and the Frobenius norm of a matrix $M$ are denoted by $\\lVert M \\rVert$ and $\\| M \\| _ { F }$ respectively. A sample $d = ( \\pmb { x } , y )$ consists of feature $_ { \\textbf { \\em x } }$ and label $y$ . A dataset $\\mathbb { D }$ is a collection of individual samples. A dataset $\\mathbb { D } ^ { \\prime }$ is said to be a neighboring dataset of $\\mathbb { D }$ if they differ in a single sample, denoted as $\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }$ . Differential privacy ensures that the outputs of an algorithm on neighboring datasets have approximately indistinguishable distributions. ", + "bbox": [ + 174, + 827, + 825, + 896 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 1 $( \\epsilon , \\delta )$ -DP (Dwork et al., 2006a;b)). A randomized mechanism $\\mathcal { M }$ guarantees $( \\epsilon , \\delta )$ - differential privacy if for any two neighboring input datasets $\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }$ and for any subset of outputs $S$ it holds that $P r [ \\mathcal { M } ( \\mathbb { D } ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( \\mathbb { D } ^ { ' } ) \\in S ] + \\delta$ . ", + "bbox": [ + 174, + 136, + 825, + 184 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "By its definition, $( \\epsilon , \\delta )$ -DP controls the maximum influence that any individual sample can produce. One can adjust the privacy parameters to trade off between privacy and utility. Differential privacy is immune to post-processing (Dwork et al., 2014), i.e., any function applied on the output of a differentially private algorithm would not increase the privacy loss as long as it does not have new interaction with the private dataset. Differential privacy also allows composition, i.e., the composition of a series of differentially private mechanisms is also differentially private but with different parameters. Several variants of $( \\epsilon , \\delta )$ -DP have been proposed (Bun & Steinke, 2016; Dong et al., 2019) to address certain weakness of $( \\epsilon , \\delta )$ -DP, e.g., they achieve better composition property. In this work, we use Rényi differential privacy (Mironov, 2017) to track the privacy loss and then convert it to $( \\epsilon , \\delta )$ -DP. ", + "bbox": [ + 174, + 195, + 825, + 335 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Suppose that there is a private dataset $\\mathbb { D } = \\{ ( \\boldsymbol { x } _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }$ with $n$ samples. We want to train a model $f$ to learn the mapping in $\\mathbb { D }$ . Specifically, $f$ takes $_ { \\textbf { \\em x } }$ as input and outputs a label $y$ , and $f$ has parameter $\\theta \\in \\mathbb { R } ^ { p }$ . The training objective is to minimize an empirical risk $\\begin{array} { r } { \\dot { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( \\dot { f } ( \\pmb { x } _ { i } ) , \\dot { y } _ { i } ) , } \\end{array}$ , where $\\ell ( \\cdot , \\cdot )$ is a loss function. We further assume that there is an auxiliary dataset $\\mathbb { D } ^ { ( a ) } = \\{ ( \\tilde { \\pmb { x } } _ { j } , \\tilde { \\pmb { y } } _ { j } ) \\} _ { j = 1 } ^ { m }$ that $\\tilde { \\pmb x }$ shares similar features as $_ { \\textbf { \\em x } }$ in $\\mathbb { D }$ while $\\tilde { y }$ could be random. ", + "bbox": [ + 174, + 340, + 825, + 415 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 GRADIENT EMBEDDING PERTURBATION ", + "text_level": 1, + "bbox": [ + 176, + 433, + 537, + 448 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "An overview of GEP is given in Figure 3. GEP has three major ingredients: 1) first, estimate an anchor subspace that contains the principal components of some non-sensitive anchor gradients via power method; 2) then, project private gradients into the anchor subspace and produce low-dimensional embeddings of private gradients and residual gradients; 3) finally, perturb gradient embedding and residual gradient separately to establish differential privacy guarantee. In Section 3.1, we present the GEP algorithm in detail. In Section 3.2, we given an analysis on the residual gradients. In Section 3.3, we give a differentially private learning algorithm that updates the model with the output of GEP. ", + "bbox": [ + 174, + 460, + 825, + 559 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 THE GEP ALGORITHM AND ITS PRIVACY ANALYSIS ", + "text_level": 1, + "bbox": [ + 174, + 573, + 570, + 587 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The pseudocode of GEP is presented in Algorithm 1. For convenience, we write a set of gradients and a set of basis vectors as matrices with each row being one gradient/basis vector. ", + "bbox": [ + 176, + 594, + 821, + 625 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The anchor subspace is constructed as follows. We first compute the gradients of the model on an auxiliary dataset $\\mathbb { D } ^ { ( a ) }$ with $m$ samples, which is referred to as the anchor gradients $G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }$ We then use the power method to estimate the principal components of $G ^ { ( a ) }$ to construct a subspace basis $\\boldsymbol { B } \\in \\mathbb { R } ^ { k \\times \\hat { p } }$ , which is referred to as the anchor subspace. All these matrices are publishable because $\\mathbb { D } ^ { ( a ) }$ is non-sensitive. We expect that the anchor subspace $\\textbf { { B } }$ can cover most energy of private gradients when the auxiliary data are not far from private data and $m , k$ are reasonably large. ", + "bbox": [ + 174, + 630, + 825, + 719 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Suppose that the private gradients are $G \\in \\mathbb { R } ^ { n \\times p }$ . Then, we project the private gradients into the anchor subspace $\\textbf { { B } }$ . The projection produces low-dimensional embeddings $\\mathbf { \\check { \\boldsymbol { W } } } = \\check { G } \\mathbf { \\boldsymbol { B } } ^ { T }$ and residual gradients $\\bar { \\pmb { R } } = \\pmb { G } - \\pmb { G } \\bar { \\pmb { B } } ^ { T } \\bar { \\pmb { B } }$ . The magnitude of residual gradients is usually much smaller than original gradient even when $k$ is small because of the gradient redundancy. ", + "bbox": [ + 174, + 724, + 825, + 781 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Then, we aggregate the gradient embeddings and the residual gradients, respectively. We perturb the aggregated embedding and the aggregated residual gradient respectively to guarantee certain differential privacy. Finally, we release the perturbed embedding and the perturbed residual gradient and construct an unbiased estimator of the private gradient: $\\widetilde { \\pmb { v } } : = ( \\widetilde { \\pmb { w } } ^ { T } \\pmb { B } ^ { \\top } + \\widetilde { \\pmb { r } } ) / n$ . This construction process does not resulting in additional privacy loss because of DP’s post-processing property. The privacy analysis of the whole process of GEP is given in Theorem 3.1. ", + "bbox": [ + 174, + 787, + 825, + 872 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 3.1. Let $S _ { 1 }$ and $S _ { 2 }$ be the sensitivity of $\\pmb { w }$ and $\\pmb { r }$ , respectively, the output of Algorithm $^ { l }$ satisfies $( \\epsilon , \\delta )$ -DP for any $\\delta \\in ( 0 , 1 )$ and $\\epsilon \\leq 2 \\log ( 1 / \\delta )$ if we choose $\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon$ and $\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon$ . ", + "bbox": [ + 174, + 877, + 825, + 925 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "1: Input: anchor gradients $G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }$ ; number of basis vectors $k$ ; private gradients $G \\in \\mathbb { R } ^ { n \\times p }$ \nclipping thresholds $S _ { 1 } , S _ { 2 }$ ; standard deviations $\\sigma _ { 1 } , \\sigma _ { 2 }$ ; number of power iterations $t$ . \n2: //First stage: Compute an orthonormal basis for the anchor subspace. \n3: Initialize $\\mathbf { \\bar { \\boldsymbol { B } } } \\in \\mathbb { R } ^ { k \\times p }$ randomly. \n4: for $i = 1$ to $t$ do \n5: Compute $\\pmb { A } = \\pmb { G } ^ { ( a ) } \\pmb { B } ^ { T }$ and $B = A ^ { T } G ^ { ( a ) }$ . \n6: Orthogonalize $\\textbf { { B } }$ and normalize row vectors. \n7: end for \n8: Delete $G ^ { ( a ) }$ to free memory. \n9: //Second stage: project the private gradients $G$ into anchor subspace $\\textbf { { B } }$ \n10: Compute gradient embeddings $\\pmb { W } = \\pmb { G } \\pmb { B } ^ { T }$ and clip its rows with $S _ { 1 }$ to obtain $\\hat { W }$ . \n11: Compute residual gradients $R = G - W B$ and clip its rows with $S _ { 2 }$ to obtain $\\hat { R }$ . \n12: //Third stage: perturb gradient embedding and residual gradient separately \n13: Perturb embedding with noise $\\boldsymbol { z } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } \\boldsymbol { I } _ { k \\times k } )$ : $\\begin{array} { r } { \\pmb { w } : = \\sum _ { i } \\hat { W } _ { i , : } , \\tilde { \\pmb { w } } : = \\pmb { w } + \\pmb { z } ^ { ( 1 ) } . } \\end{array}$ \n14: Perturb residual gradient with noise $\\boldsymbol { z } ^ { ( 2 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )$ : $\\begin{array} { r } { \\pmb { r } : = \\sum _ { i } \\hat { \\pmb { R } } _ { i , : } , \\ \\tilde { \\pmb { r } } : = \\pmb { r } + \\boldsymbol { z } ^ { ( 2 ) } . } \\end{array}$ \n15: Return $\\tilde { v } : = ( \\tilde { w } ^ { T } B + \\tilde { r } ) / n$ . ", + "bbox": [ + 178, + 125, + 821, + 387 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "A common practice to control sensitivity is to clip the output with a pre-defined threshold. In our experiments, we use different thresholds $S _ { 1 }$ and $S _ { 2 }$ to clip the gradient embeddings and residual gradients, respectively. The privacy loss of GEP consists of two parts: the privacy loss incurred by releasing the perturbed embedding and the privacy loss incurred by releasing the perturbed residual gradient. We compose these two parts via the Rényi differential privacy and convert it to $( \\epsilon , \\delta )$ -DP. ", + "bbox": [ + 173, + 426, + 825, + 497 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We highlight several implementation techniques that make GEP widely applicable and implementable with reasonable computational cost. Firstly, auxiliary non-sensitive data do not have to be the same source as the private data and the auxiliary data can be randomly labeled. This non-sensitive data assumption is very weak and easy to satisfy in practical scenarios. To understand why random label works, a quick example is that for the least squares regression problem the individual gradient is aligned with the feature vector while the label only scales the length but does not change the direction. This auxiliary data assumption avoids conducting principal component analysis (PCA) on private gradients, which requires releasing private high-dimensional basis vectors and hence introduces large privacy loss. Secondly, we use power method (Panju, 2011; Vogels et al., 2019) to approximately estimate the principal components. The new operation we introduce is standard matrix multiplication that enjoys efficient implementation on GPU. The computational complexity of each power iteration is $2 m k p$ , where $p$ is the number of model parameters, $m$ is the number of anchor gradients and $k$ is the number of subspace basis vectors. Thirdly, we divide the parameters into different groups and compute one orthonormal basis for each group. This further reduces the computational cost. For example, suppose the parameters are divided into two groups with size $p _ { 1 } , p _ { 2 }$ and the numbers of basis vectors are $k _ { 1 } , k _ { 2 }$ , the computational complexity of each power iteration is $2 m ( k _ { 1 } p _ { 1 } + k _ { 2 } p _ { 2 } )$ , which is smaller than $2 m ( k _ { 1 } + k _ { 2 } ) ( p _ { 1 } + p _ { 2 } )$ . In Appendix B, we analyze the additional computational and memory costs of GEP compared to standard gradient perturbation. ", + "bbox": [ + 174, + 505, + 825, + 753 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Curious readers may wonder if we can use random projection to reduce the dimensionality as Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees that one can preserve the pairwise distance between any two points after projecting into a random subspace of much lower dimension. However, preserving the pairwise distance is not sufficient for high quality gradient reconstruction, which is verified by the empirical observation in Appendix C. ", + "bbox": [ + 174, + 761, + 825, + 830 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 AN ANALYSIS ON THE RESIDUAL GRADIENTS OF GEP ", + "text_level": 1, + "bbox": [ + 178, + 854, + 584, + 867 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Let $\\begin{array} { r } { \\pmb { g } : = \\frac { 1 } { n } \\sum _ { i } \\pmb { G } _ { i } , } \\end{array}$ : be the target private gradient. For a given anchor subspace $\\textbf { { B } }$ , the residual gradients are defined as $\\pmb { R } : = \\pmb { G } - \\pmb { G } \\pmb { B } ^ { T } \\pmb { B }$ . We then analyze how large the residual gradients could be. The following argument holds for all time steps and we ignore the time step index for simplicity. ", + "bbox": [ + 174, + 878, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For the ease of discussion, we introduce $\\pmb { \\xi } _ { i } : = ( G _ { i , : } ) ^ { T }$ for $i \\in [ n ]$ to denote the the private gradients and the $\\hat { \\pmb { \\xi } } _ { j } : = ( { \\pmb { G } } _ { j , : } ^ { ( a ) } ) ^ { T }$ for $j \\in [ m ]$ to denote the anchor gradients. We use $\\lambda _ { k } ( \\cdot )$ to denote the $k _ { t h }$ largest eigenvalue of a given matrix. We assume that the private gradients $\\xi _ { 1 } , . . . , \\xi _ { n }$ and the anchor gradients $\\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m }$ are sampled independently from a distribution $\\mathcal { P }$ . We assume $\\Sigma : = \\mathbb { E } _ { \\pmb { \\xi } \\sim \\mathcal { P } } \\pmb { \\xi } \\pmb { \\xi } ^ { \\bar { T } } \\in \\mathbb { R } ^ { p \\times p }$ to be the population gradient (uncentered) covariance matrix. We also consider the (uncentered) empirical gradient covariance matrix $\\begin{array} { r } { \\hat { \\pmb { S } } : = \\frac { 1 } { m } \\sum _ { i = 1 } ^ { m } \\hat { \\pmb { \\xi } } _ { i } \\hat { \\pmb { \\xi } } _ { i } ^ { T } } \\end{array}$ . ", + "bbox": [ + 173, + 102, + 825, + 200 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "One case is that the population gradient covariance matrix $\\pmb { \\Sigma }$ is low-rank $k$ . In this case we can argue that the residual gradients are 0 once the number of anchor gradients $m > k$ . ", + "bbox": [ + 171, + 204, + 823, + 234 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Lemma 3.1. Assume that the population covariance matrix $\\pmb { \\Sigma }$ is with rank $k$ and the distribution $\\mathcal { P }$ satisfies $\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0$ for all $s$ -flats $\\mathbb { F } _ { s }$ in $\\mathbb { R } ^ { p }$ with $0 \\leq s < k$ . Let $\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }$ and $\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }$ be the eigendecompositions of $\\pmb { \\Sigma }$ and the empirical covariance matrix $\\hat { S }$ , respectively, such that $\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0$ and $\\bar { \\lambda _ { k ^ { \\prime } + 1 } } ( \\hat { S } ) = \\bar { 0 }$ . Then if $m \\geq k$ , we have with probability $^ { l }$ , ", + "bbox": [ + 173, + 236, + 825, + 299 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/e641f104ed6205c318a94d38e1ac57a9523aa7a6726cd7879e9c63a29784a4a8.jpg", + "text": "$$\nk ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 362, + 301, + 635, + 321 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proof. The proof is based on the non-singularity of covariance matrix. See Appendix D. ", + "bbox": [ + 173, + 334, + 753, + 349 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We note that $s$ -flat is the translate $\\mathbb { F } _ { s } = \\pmb { x } + \\mathbb { F } _ { s ( 0 ) }$ of an $s$ -dimensional linear subspace $\\mathbb { F } _ { s ( 0 ) }$ in $\\mathbb { R } ^ { p }$ and the normal distribution satisfies such condition (Eaton & Perlman, 1973; Muirhead, 2009). Therefore, we have seen that for low-rank case of population covariance matrix, the residual gradients are 0 once $m > k$ . In the general case, we measure the expected norm of the residual gradients. ", + "bbox": [ + 174, + 363, + 826, + 420 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Lemma 3.2. Assume that $\\xi \\sim \\mathcal { P }$ and $\\| \\pmb { \\xi } \\| ^ { 2 } < T$ almost surely. Let $\\pmb { \\Sigma } = \\pmb { V } \\pmb { \\Lambda } \\pmb { V } ^ { T }$ be the eigendecomposition of the population covariance matrix $\\pmb { \\Sigma }$ . Let $\\hat { \\pmb { S } } = \\hat { V } _ { k } \\hat { \\Lambda } \\hat { V } _ { k } ^ { T }$ be the eigendecomposition of the empirical covariance matrix $\\hat { S } .$ . Then we have with probability $1 - 2 \\exp ( - \\delta )$ , ", + "bbox": [ + 173, + 422, + 825, + 472 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/2a1373daa4e9888c333f217dc5db760426337a582ba0ce3207dcdfa6ad2c821e.jpg", + "text": "$$\n\\mathbb { E } \\| \\pmb { \\xi } - \\Pi _ { \\hat { V } _ { k } } ( \\pmb { \\xi } ) \\| _ { 2 } ^ { 2 } \\leq \\sum _ { k ^ { \\prime } > k } \\lambda _ { k ^ { \\prime } } ( \\pmb { \\Sigma } ) + \\sqrt { k C / m } + T \\sqrt { 2 \\delta / m } ,\n$$", + "text_format": "latex", + "bbox": [ + 302, + 473, + 692, + 507 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { C = \\big [ \\mathbb { E } \\| \\pmb { \\xi } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\Sigma } ) \\big ] + \\Big [ \\frac { 1 } { m } \\sum _ { j = 1 } ^ { m } \\| \\hat { \\pmb { \\xi } } _ { j } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\hat { S } } ) \\Big ] } \\end{array}$ , $\\Pi _ { \\hat { V } _ { k } }$ is a projection operator onto the subspace $\\hat { V } _ { k }$ and the E is taken over the randomness of $\\xi \\sim \\mathcal { P }$ . ", + "bbox": [ + 174, + 510, + 825, + 551 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Proof. The proof is an adaptation of Theorem 3.1 in Blanchard et al. (2007). ", + "bbox": [ + 176, + 565, + 676, + 582 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "From Lemma 3.2, we can see the larger the number of anchor gradients and the dimension of the anchor subspace $k$ , the smaller the residual gradients. We can choose $m , k$ properly such that the upper bound on the expected residual gradient norm is small. This indicates that we may use a smaller clipping threshold and consequently apply smaller noises with achieving the same privacy guarantee. ", + "bbox": [ + 174, + 595, + 825, + 652 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We next empirically examine the projection error $\\begin{array} { r } { \\pmb { r } = \\sum _ { i } \\pmb { R } _ { i } , } \\end{array}$ ,: by training a 20-layer ResNet on CIFAR10 dataset. We try two different types of auxiliary data to compute the anchor gradients: 1) samples from the same source as private data with correct labels, i.e., 2000 random samples from the test data; 2) samples from different source with random labels, i.e., 2000 random samples from ImageNet. The relation between the dimension of anchor subspace $k$ and the projection error rate $( \\left\\| { \\frac { 1 } { n } } { \\overline { { r } } } \\right\\| / \\left\\| g \\right\\| )$ is presented in Figure 4. We can see that the project error is small and decreases with $k$ , and the benefit of increasing $k$ diminishes when $k$ is large, which is implied by Lemma 3.2. In practice one can only use small or moderate $k$ because of the memory constraint. GEP needs to store at least $k$ individual gradients and each individual gradient consumes the same amount of memory as the model itself. Moreover, we can see that the projection into anchor subspace of random labeled auxiliary data yields comparable projection error, corroborating our argument that unlabeled auxiliary data are sufficient for finding the anchor subspace. ", + "bbox": [ + 173, + 657, + 825, + 825 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We also verify that the redundancy of residual gradients is small, by plotting the stable rank of residual gradient matrix in Figure 5. The stable rank of residual gradient matrix is an order of magnitude higher than the stable rank of original gradient matrix. This implies that it could be hard to further approximate $\\pmb { R }$ with low-dimensional embeddings. ", + "bbox": [ + 174, + 832, + 825, + 888 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We next compare the GEP with a scheme that simply discards the residual gradients and only outputs the perturbed gradient embedding, i.e., the output is $\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n$ . ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/7345a3e82a46645b6d902e73473fed756d4004f557e77e9cb79b0e1a089ad382.jpg", + "image_caption": [ + "Figure 4: Relative projection error $( \\left\\| { \\frac { 1 } { n } } \\pmb { r } \\right\\| / \\left\\| \\pmb { g } \\right\\| )$ of the second stage in ResNet20. The number of anchor gradients is 2000. The dimension of anchor subspace is $k$ . The learning rate is decayed by 10 at epoch 30. The left plot uses random samples from ImageNet. The right plot uses random samples from test data. The benefit of increasing $k$ becomes smaller when $k$ is larger. " + ], + "image_footnote": [], + "bbox": [ + 218, + 103, + 545, + 224 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/fb17dd406c7e4b4486261ff36f80c3a8f963fa4a24c5825b9e573abb26d2881f.jpg", + "image_caption": [ + "Figure 5: Stable rank of the residual gradient matrix versus original gradient matrix. The gradients are computed on full batch data for the first stage in ResNet20. The dimension of anchor subspace is $k = 1 0 0 0$ . " + ], + "image_footnote": [], + "bbox": [ + 632, + 103, + 797, + 213 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Remark 1. Let $\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n$ be the reconstructed gradient from noisy gradient embedding and $\\tilde { v }$ be the output of GEP. If ignoring the effect of gradient clipping, we have ", + "bbox": [ + 173, + 364, + 823, + 395 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/6433a0fa742a5dbd2a1bab2228b73e35eedbb8fa46cbe12952ed2dc569e478a4.jpg", + "text": "$$\n\\mathbb { E } [ \\tilde { \\pmb { u } } ] = \\pmb { g } - \\pmb { r } / n , \\quad \\mathbb { E } [ \\tilde { \\pmb { v } } ] = \\pmb { g } .\n$$", + "text_format": "latex", + "bbox": [ + 397, + 404, + 599, + 420 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { { \\pmb r } = \\sum _ { i } { \\pmb R } _ { i } , } \\end{array}$ : is the aggregated residual gradients, $\\tilde { \\pmb { w } } , \\pmb { B }$ are given in Algorithm 1 and the expectation is over the added random noises. ", + "bbox": [ + 176, + 436, + 825, + 465 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "This indicates that $\\tilde { \\mathbf { \\pmb { u } } }$ contains a systematic error that makes $\\tilde { \\mathbf { \\pmb { u } } }$ always deviate from $\\textbf { { g } }$ by the residual gradient. This systematic error is the projection error, which is plotted in Figure 4. The systematic error cannot be mitigated by reducing the noise magnitude (e.g., increasing the privacy budget or collecting more private data). We refer to the algorithm releasing $\\tilde { \\mathbf { \\pmb { u } } }$ directly as Biased-GEP or $B$ -GEP for short, which can be viewed as an efficient implementation of the algorithm in (Zhou et al., 2020). In our experiments, B-GEP can outperform standard gradient perturbation when $k$ is large but is inferior to GEP. We note that the above remark is made with ignoring the clipping effect (or set a large clipping threshold). In practice, we do apply clipping for the individual gradients at each time step, which makes the expectations in Remark 1 obscure (Chen et al., 2020b). We note that the claim that $\\tilde { v }$ is an unbiased estimator of $\\textbf { { g } }$ is not that precise when applying gradient clipping. ", + "bbox": [ + 173, + 478, + 826, + 617 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "3.3 PRIVATE LEARNING WITH GRADIENT EMBEDDING PERTURBATION ", + "text_level": 1, + "bbox": [ + 176, + 633, + 669, + 647 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "GEP (Algorithm 1) describes how to release one-step gradient with privacy guarantee. In this section, we compose the privacy losses at each step to establish the privacy guarantee for the whole learning process. The differentially private learning process with GEP is given in Algorithm 2 and the privacy analysis is presented in Theorem 3.2. ", + "bbox": [ + 174, + 656, + 825, + 712 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/48a8b9321b51c14a553b73b1f0e05a2f89514c36c6ba6a448e737c6f9cdf47c0.jpg", + "table_caption": [ + "Algorithm 2: Differentially private gradient descent with GEP. " + ], + "table_footnote": [], + "table_body": "
configuration of GEP C; loss function l;1: Input: private dataset D; auxiliary dataset D(@); number of updates T; learning rate n;
2: Output: Differentially private model 0T.
3: fort=OtoT-1do
4:Compute the private gradients Gt and anchor gradients G(@) of loss with respect to 0t.
5: and configuration C to get Ut.
6: 7: end forUpdate model 0t+1 = 0t - nUt.
", + "bbox": [ + 179, + 752, + 787, + 875 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Theorem 3.2. For any $\\epsilon < 2 \\log ( 1 / \\delta )$ and $\\delta \\in ( 0 , 1 )$ , the output of Algorithm 2 satisfies $( \\epsilon , \\delta )$ -DP if we set $\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon$ . ", + "bbox": [ + 173, + 892, + 825, + 925 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "If the private gradients are randomly sampled from the full batch gradients, the privacy guarantee can be strengthened via the privacy amplification by subsampling theorem of DP (Balle et al., 2018; Wang et al., 2019; Zhu & Wang, 2019; Mironov et al., 2019). Theorem 3.3 gives the expected excess error of Algorithm 2. Expected excess error measures the distance between the algorithm’s output and the optimal solution in expectation. ", + "bbox": [ + 173, + 103, + 825, + 174 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Theorem 3.3. Suppose the loss $\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}$ is $I$ -Lipschitz, convex, and $\\beta$ - smooth. If $\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}$ , $\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}$ and $\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}$ , then we have $\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}$ $\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}$ , where $\\begin{array} { r } { \\bar { r } = \\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } } \\end{array}$ and $r _ { t } = \\operatorname* { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|$ is the sensitivity of residual gradient at step $t$ . ", + "bbox": [ + 174, + 176, + 825, + 261 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The $\\bar { r }$ term represents the average projection error over the training process. The previous best expected excess error for gradient perturbation is $\\mathcal { O } ( \\sqrt { p \\log ( 1 / \\delta ) } / ( n \\epsilon ) )$ (Wang et al., 2017). As shown in Lemma 3.1, if the gradients locate in a $k$ -dimensional subspace over the training process, $\\bar { r } = 0$ and the excess error is $\\mathcal { O } ( \\sqrt { k \\log ( 1 / \\delta ) } / ( n \\epsilon ) )$ , independent of the problem ambient dimension $p$ . When the gradients are in general position, i.e., gradient matrix is not exact low-rank, Lemma 3.2 and the empirical result give a hint on how small the residual gradients could be. However, it is hard to get a good bound on $\\operatorname { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|$ and the bound in Theorem 3.3 does not explicitly improve over previous result. One possible solution is to use a clipping threshold based on the expected residual gradient norm. Then the output gradient becomes biased because of clipping and the utility/privacy guarantees in Theorem $3 . 3 / 3 . 2$ require new elaborate derivation. We leave this for future work. ", + "bbox": [ + 173, + 271, + 825, + 415 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 174, + 428, + 326, + 444 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We conduct experiments on MNIST, extended SVHN, and CIFAR-10 datasets. Our implementation is publicly available2. The model for MNIST has two convolutional layers with max-pooling and one fully connected layer. The model for SVHN and CIFAR-10 is ResNet20 in He et al. (2016). We replace all batch normalization (Ioffe & Szegedy, 2015) layers with group normalization (Wu & He, 2018) layers because batch normalization mixes the representations of different samples and makes the privacy loss cannot be analyzed accurately. The non-private accuracy for MNIST, SVHN, and CIFAR-10 is $9 9 . 1 \\%$ , $9 5 . 9 \\%$ , and $9 0 . 4 \\%$ , respectively. ", + "bbox": [ + 173, + 452, + 825, + 549 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We also provide experiments with pre-trained models in Appendix A. Tramèr & Boneh (2020) show that differentially private linear classifier can achieve high accuracy using the features produced by pre-trained models. We examine whether GEP can improve the performance of such private linear classifiers. Notably, using the features produced by a model pre-trained on unlabeled ImageNet, GEP achieves $9 4 . 8 \\%$ validation accuracy on CIFAR10 with $\\epsilon = 2$ . ", + "bbox": [ + 174, + 556, + 825, + 626 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Evaluated algorithms We use the algorithm in Abadi et al. (2016) as benchmark gradient perturbation approach, referred to as “GP”. We also compare GEP with PATE (Papernot et al., 2017). We run the experiments for PATE using the official implementation. The privacy parameter $\\epsilon$ of PATE is data-dependent and hence cannot be released directly (see Section 3.3 in Papernot et al. (2017)). Nonetheless, we report the results of PATE anyway. ", + "bbox": [ + 174, + 632, + 825, + 703 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Implementation details At each step, GEP needs to release two vectors: the noisy gradient embedding and the noisy residual gradient. The gradient embeddings have a sensitivity of $S _ { 1 }$ and the residual gradients have a sensitivity of $S _ { 2 }$ because of the clipping. The output of GEP can be constructed as follows: (1) normalize the gradient embeddings and residual gradients by $1 / S _ { 1 }$ and $1 / S _ { 2 }$ , respectively, (2) concatenate the rescaled vectors, (3) release the concatenated vector via√ gaussian mechanism with sensitivity $\\sqrt { 2 }$ , (4) rescale the two components by $S _ { 1 }$ and $S _ { 2 }$ . B-GEP only needs to release the normalized noisy gradient embedding. We use the numerical tool in Mironov et al. (2019) to compute the privacy loss. For given privacy budget and sampling probability, $\\sigma$ is set to be the smallest value such that the privacy budget is allowable to run desired epochs. ", + "bbox": [ + 174, + 709, + 825, + 837 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "All experiments are run on a single Tesla V100 GPU with 16G memory. For ResNet20, the parameters are divided into five groups: input layer, output layer, and three intermediate stages. For a given quota of basis vectors, we allocate it to each group according to the square root of the number of parameters in each group. We compute an orthonormal subspace basis on each group separately. ", + "bbox": [ + 174, + 844, + 825, + 900 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/cca7e7dd6e5514993cd679f864e126dd899a16e09afd1abab60c6677599354d0.jpg", + "table_caption": [ + "Table 1: Test accuracy (in $\\%$ ) with varying choices of privacy bound $\\epsilon$ . The numbers under symbol $\\Delta$ denote the improvement over GP baseline. " + ], + "table_footnote": [], + "table_body": "
Dataset Algorithme=2Ae=5Ae=8A
GPPATEMNISTB-GEPGEP94.7+0.096.8+0.097.2+0.0
PATE98.5+3.898.5+1.798.6+1.4
B-GEP93.1-1.694.5-2.395.9-1.3
96.3+1.697.9+1.198.4+1.2
SVHNGP87.1+0.091.3+0.091.6+0.0
PATE80.7-6.491.6+0.391.6+0.0
B-GEP88.5+1.491.8+0.592.3+0.7
GEP92.3+5.294.7+3.495.1+3.5
CIFAR-10GP43.6+0.052.2+0.056.4+0.0
PATE34.2-9.441.9-10.343.6-12.8
B-GEP50.3+6.759.5+7.363.0+6.6
GEP59.7+16.170.1+17.974.9+18.5
", + "bbox": [ + 253, + 142, + 745, + 318 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/fa6a5f6d7a35fa34dec7a6cf45765314549eb5a963274140f2a890e59cd1e7d0.jpg", + "image_caption": [ + "Figure 6: Test accuracy when varying the dimension of anchor subspace. GEP significantly outperforms B-GEP for all $k$ . Moreover, the performance of GEP is not that sensitive to $k$ . " + ], + "image_footnote": [], + "bbox": [ + 254, + 335, + 740, + 428 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Then we concatenate the projections of all groups to construct gradient embeddings. The number of power iterations $t$ is set as 1 as empirical evaluations suggest more iterations do not improve the performance for GEP and B-GEP. ", + "bbox": [ + 174, + 501, + 826, + 541 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "For all datasets, the anchor gradients are computed on 2000 random samples from ImageNet. In Appendix C, we examine the influence of choosing different numbers of anchor gradients and different sources of auxiliary data. The selected images are downsampled into size of $3 2 \\times 3 2$ ( $2 8 \\times 2 8$ for MNIST) and we label them randomly at each update. For SVHN and CIFAR-10, $k$ is chosen from [500, 1000, 1500, 2000]. For MNIST, we halve the size of $k$ . We use SGD with momentum 0.9 as the optimizer. Initial learning rate and batchsize are 0.1 and 1000, respectively. The learning rate is divided by 10 at middle of training. Weight decay is set as $1 \\times 1 0 ^ { - 4 }$ . The clipping threshold for is 10 for original gradients and 2 for residual gradients. The number of training epochs for CIFAR-10 and MNIST is 50, 100, 200 for privacy parameter $\\epsilon = 2 , 5 , 8$ , respectively. The number of training epochs for SVHN is 5, 10, 20 for privacy parameter $\\epsilon = 2 , 5 , 8$ , respectively. Privacy parameter $\\delta$ is $1 ^ { \\cdot } \\times 1 0 ^ { - 6 }$ for SVHN and $\\mathrm { i } \\times \\mathrm { 1 0 ^ { - 5 } }$ for CIFAR-10 and MNIST. ", + "bbox": [ + 174, + 549, + 825, + 702 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Results The best accuracy with given $\\epsilon$ is in Table 4. For all datasets, GEP achieves considerable improvement over GP in Abadi et al. (2016). Specifically, GEP achieves $7 4 . 9 \\%$ test accuracy on CIFAR-10 with $( 8 , 1 0 ^ { - 5 } )$ -DP, outperforming GP by $1 8 . 5 \\%$ . PATE achieves best accuracy on MNIST but its performance drops as the dataset becomes more complex. ", + "bbox": [ + 174, + 709, + 825, + 765 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We also plot the relation between accuracy and $k$ in Figure 6. GEP is less sensitive to the choice of $k$ and outperforms B-GEP for all choices of $k$ . The improvement of increasing $k$ becomes smaller as $k$ becomes larger. We note that the memory cost of choosing large $k$ is high because we need to store at least $k$ individual gradients to compute anchor subspace. ", + "bbox": [ + 174, + 772, + 825, + 828 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 842, + 318, + 858 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, we propose Gradient Embedding Perturbation (GEP) for learning with differential privacy. GEP leverages the gradient redundancy to reduce the added noise and outputs an unbiased estimator of target gradient. The several key designs of GEP significantly boost the applicability of GEP. Extensive experiments on real world datasets demonstrate the superior utility of GEP. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer and Communications Security, 2016. ", + "bbox": [ + 178, + 126, + 823, + 169 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Noga Alon, Raef Bassily, and Shay Moran. Limits of private learning with access to public data. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 171, + 179, + 823, + 208 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Borja Balle, Gilles Barthe, and Marco Gaboardi. Privacy amplification by subsampling: Tight analyses via couplings and divergences. In Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 174, + 218, + 826, + 261 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk minimization: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of Computer Science, 2014. ", + "bbox": [ + 173, + 272, + 826, + 315 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Daniel Bernau, Philip-William Grassal, Jonas Robl, and Florian Kerschbaum. Assessing differentially private deep learning with membership inference. arXiv preprint arXiv:1912.11328, 2019. ", + "bbox": [ + 173, + 325, + 823, + 354 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Gilles Blanchard, Olivier Bousquet, and Laurent Zwald. Statistical properties of kernel principal component analysis. Machine Learning, 66(2-3):259–294, 2007. ", + "bbox": [ + 173, + 364, + 823, + 395 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and lower bounds. In Theory of Cryptography Conference, 2016. ", + "bbox": [ + 171, + 404, + 825, + 434 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicholas Carlini, Chang Liu, Úlfar Erlingsson, Jernej Kos, and Dawn Song. The secret sharer: Evaluating and testing unintended memorization in neural networks. In USENIX Security Symposium, 2019. ", + "bbox": [ + 174, + 444, + 826, + 487 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ting Chen, Simon Kornblith, Kevin Swersky, Mohammad Norouzi, and Geoffrey Hinton. Big self-supervised models are strong semi-supervised learners. arXiv preprint arXiv:2006.10029, 2020a. ", + "bbox": [ + 174, + 497, + 826, + 541 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Xiangyi Chen, Steven Z Wu, and Mingyi Hong. Understanding gradient clipping in private sgd: A geometric perspective. Advances in Neural Information Processing Systems, 33, 2020b. ", + "bbox": [ + 169, + 551, + 825, + 582 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sanjoy Dasgupta and Anupam Gupta. An elementary proof of a theorem of johnson and lindenstrauss. Random Structures & Algorithms, 2003. ", + "bbox": [ + 171, + 590, + 825, + 621 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jinshuo Dong, Aaron Roth, and Weijie J Su. Gaussian differential privacy. arXiv preprint arXiv:1905.02383, 2019. ", + "bbox": [ + 173, + 630, + 823, + 660 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data, ourselves: Privacy via distributed noise generation. In Annual International Conference on the Theory and Applications of Cryptographic Techniques, 2006a. ", + "bbox": [ + 173, + 669, + 826, + 713 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in private data analysis. In Theory of cryptography conference, 2006b. ", + "bbox": [ + 173, + 723, + 823, + 753 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations and Trends® in Theoretical Computer Science, 2014. ", + "bbox": [ + 173, + 762, + 825, + 792 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Morris L Eaton and Michael D Perlman. The non-singularity of generalized sample covariance matrices. The Annals of Statistics, pp. 710–717, 1973. ", + "bbox": [ + 171, + 803, + 823, + 832 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confidence information and basic countermeasures. In ACM SIGSAC Conference on Computer and Communications Security, 2015. ", + "bbox": [ + 174, + 842, + 825, + 885 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kazuto Fukuchi, Quang Khai Tran, and Jun Sakuma. Differentially private empirical risk minimization with input perturbation. In International Conference on Discovery Science, 2017. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mary Gooneratne, Khe Chai Sim, Petr Zadrazil, Andreas Kabel, Françoise Beaufays, and Giovanni Motta. Low-rank gradient approximation for memory-efficient on-device training of deep neural network. In IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP). IEEE, 2020. ", + "bbox": [ + 174, + 103, + 825, + 159 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Guy Gur-Ari, Daniel A Roberts, and Ethan Dyer. Gradient descent happens in a tiny subspace. arXiv preprint arXiv:1812.04754, 2018. ", + "bbox": [ + 171, + 167, + 823, + 196 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, 2016. ", + "bbox": [ + 174, + 204, + 825, + 247 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross Girshick. Momentum contrast for unsupervised visual representation learning. In Conference on Computer Vision and Pattern Recognition, 2020. ", + "bbox": [ + 173, + 256, + 825, + 297 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference on Computer and Communications Security, 2017. ", + "bbox": [ + 174, + 306, + 825, + 349 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by reducing internal covariate shift. In International Conference on Machine Learning, 2015. ", + "bbox": [ + 174, + 357, + 821, + 387 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang. Towards practical differentially private convex optimization. In IEEE Symposium on Security and Privacy, 2019. ", + "bbox": [ + 174, + 395, + 826, + 438 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 174, + 445, + 825, + 488 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "James Jordon, Jinsung Yoon, and Mihaela van der Schaar. Pate-gan: Generating synthetic data with differential privacy guarantees. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 171, + 496, + 823, + 526 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Peter Kairouz, Mónica Ribero, Keith Rush, and Abhradeep Thakurta. Dimension independence in unconstrained private erm via adaptive preconditioning. arXiv preprint arXiv:2008.06570, 2020. ", + "bbox": [ + 174, + 534, + 823, + 564 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization and high-dimensional regression. In Conference on Learning Theory, 2012. ", + "bbox": [ + 174, + 570, + 823, + 599 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, 2018. ", + "bbox": [ + 174, + 607, + 825, + 651 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xinyan Li, Qilong Gu, Yingxue Zhou, Tiancong Chen, and Arindam Banerjee. Hessian based analysis of sgd for deep nets: Dynamics and generalization. In SIAM International Conference on Data Mining, 2020. ", + "bbox": [ + 174, + 659, + 826, + 702 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yuzhe Ma, Xiaojin Zhu, and Justin Hsu. Data poisoning against differentially-private learners: attacks and defenses. In Proceedings of the 28th International Joint Conference on Artificial Intelligence, pp. 4732–4738. AAAI Press, 2019. ", + "bbox": [ + 174, + 709, + 826, + 752 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ilya Mironov. Rényi differential privacy. In IEEE Computer Security Foundations Symposium, 2017. ", + "bbox": [ + 173, + 760, + 825, + 776 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ilya Mironov, Kunal Talwar, and Li Zhang. Rényi differential privacy of the sampled gaussian mechanism. arXiv, 2019. ", + "bbox": [ + 173, + 784, + 823, + 813 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Robb J Muirhead. Aspects of multivariate statistical theory, volume 197. John Wiley & Sons, 2009. ", + "bbox": [ + 169, + 820, + 825, + 837 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Maysum Panju. Iterative methods for computing eigenvalues and eigenvectors. arXiv preprint arXiv:1105.1185, 2011. ", + "bbox": [ + 173, + 844, + 825, + 873 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nicolas Papernot, Martín Abadi, Ulfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semisupervised knowledge transfer for deep learning from private training data. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nicolas Papernot, Shuang Song, Ilya Mironov, Ananth Raghunathan, Kunal Talwar, and Úlfar Erlingsson. Scalable private learning with pate. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 103, + 825, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "NhatHai Phan, My T Thai, Han Hu, Ruoming Jin, Tong Sun, and Dejing Dou. Scalable differential privacy with certified robustness in adversarial learning. International Conference on Machine Learning, 2020. ", + "bbox": [ + 174, + 155, + 826, + 198 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang. Membership inference attack against differentially private deep learning model. Transactions on Data Privacy, 2018. ", + "bbox": [ + 173, + 208, + 826, + 251 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Alexandre Sablayrolles, Matthijs Douze, Yann Ollivier, Cordelia Schmid, and Hervé Jégou. Whitebox vs black-box: Bayes optimal strategies for membership inference. International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 260, + 826, + 304 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Reza Shokri and Vitaly Shmatikov. Privacy-preserving deep learning. In ACM SIGSAC conference on computer and communications security, 2015. ", + "bbox": [ + 173, + 313, + 825, + 342 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017. ", + "bbox": [ + 173, + 351, + 825, + 381 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differentially private updates. In Global Conference on Signal and Information Processing (GlobalSIP), 2013. ", + "bbox": [ + 176, + 388, + 825, + 433 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances in Neural Information Processing Systems, 2015. ", + "bbox": [ + 171, + 443, + 825, + 472 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Abhradeep Guha Thakurta and Adam Smith. Differentially private feature selection via stability arguments, and the robustness of the lasso. In Conference on Learning Theory, 2013. ", + "bbox": [ + 174, + 481, + 823, + 511 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Florian Tramèr and Dan Boneh. Differentially private learning needs better features (or much more data). arXiv preprint arXiv:2011.11660, 2020. ", + "bbox": [ + 173, + 520, + 821, + 549 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Joel A Tropp et al. An introduction to matrix concentration inequalities. Foundations and Trends® in Machine Learning, 8(1-2):1–230, 2015. ", + "bbox": [ + 173, + 559, + 823, + 588 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Thijs Vogels, Sai Praneeth Karimireddy, and Martin Jaggi. Powersgd: Practical low-rank gradient compression for distributed optimization. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 174, + 597, + 826, + 638 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Di Wang and Jinhui Xu. On sparse linear regression in the local differential privacy model. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 174, + 648, + 823, + 679 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited: Faster and more general. In Advances in Neural Information Processing Systems, 2017. ", + "bbox": [ + 176, + 688, + 823, + 718 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jun Wang and Zhi-Hua Zhou. Differentially private learning with small public data. In AAAI, 2020. ", + "bbox": [ + 173, + 727, + 823, + 742 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for sparse learning. In International Joint Conference on Artificial Intelligence, 2019. ", + "bbox": [ + 169, + 751, + 823, + 781 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yu-Xiang Wang, Borja Balle, and Shiva Prasad Kasiviswanathan. Subsampled rényi differential privacy and analytical moments accountant. In International Conference on Artificial Intelligence and Statistics, 2019. ", + "bbox": [ + 174, + 789, + 825, + 833 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing model-inversion attacks. In IEEE Computer Security Foundations Symposium, 2016. ", + "bbox": [ + 169, + 842, + 825, + 872 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on differential privacy for scalable stochastic gradient descent-based analytics. In ACM International Conference on Management of Data, 2017. ", + "bbox": [ + 176, + 881, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the European conference on computer vision (ECCV), 2018. ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. Gradient perturbation is underrated for differentially private convex optimization. In Proc. of 29th Int. Joint Conf. Artificial Intelligence, 2020. ", + "bbox": [ + 176, + 140, + 823, + 183 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. How does data augmentation affect privacy in machine learning? In Proc. of the AAAI Conference on Artificial Intelligence, 2021. ", + "bbox": [ + 173, + 193, + 823, + 222 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yingxue Zhou, Zhiwei Steven Wu, and Arindam Banerjee. Bypassing the ambient dimension: Private sgd with gradient subspace identification. arXiv preprint arXiv:2007.03813, 2020. ", + "bbox": [ + 173, + 231, + 823, + 258 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ligeng Zhu, Zhijian Liu, and Song Han. Deep leakage from gradients. In Advances in Neural Information Processing Systems, 2019. ", + "bbox": [ + 173, + 268, + 825, + 296 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yuqing Zhu and Yu-Xiang Wang. Poission subsampled rényi differential privacy. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 306, + 823, + 335 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A EXPERIMENTS WITH PRE-TRAINED MODELS ", + "text_level": 1, + "bbox": [ + 174, + 103, + 575, + 117 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Recent works have shown that pre-training the models on unlabeled data can be beneficial for subsequent learning tasks (Chen et al., 2020a; He et al., 2020). Tramèr & Boneh (2020) demonstrate that differentially private linear classifier can achieve high accuracy using the features produced by those per-trained models. We show that GEP can also benefit from such pre-trained models. ", + "bbox": [ + 174, + 137, + 825, + 193 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Inspired by Tramèr & Boneh (2020), we use the output of the penultimate layer of a pre-trained ResNet152 model as feature to train a private linear classifier. The ResNet152 model is pre-trained on unlabeled ImageNet using SimCLR (Chen et al., 2020a). The feature dimension is 4096. ", + "bbox": [ + 174, + 200, + 825, + 242 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Implementation Details We choose the privacy parameter $\\epsilon$ from [0.1, 0.5, 1, 2]. The privacy parameter $\\delta$ is $1 \\times 1 0 ^ { - 5 }$ . We run all experiments for 5 times and report the average accuracy. The clipping threshold of residual gradients is still one-fifth of the clipping threshold of the original gradients. The√ dimension of anchor subspace is set as $2 0 0 \\simeq { \\sqrt { p } }$ where $p = 4 0 9 6 0$ is the model dimension. We randomly sample 500 samples from the test set as auxiliary data and evaluate performance on the rest test samples. The optimizer is Adam with default momentum coefficients. Other hyper-parameters are listed in Table 2. ", + "bbox": [ + 173, + 250, + 825, + 347 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/ccca16543a9464f97ec0984f98d22d836b4c07702615bab375648ce16f082fa7.jpg", + "table_caption": [ + "Table 2: Hyperparameter values used in Appendix A. " + ], + "table_footnote": [], + "table_body": "
HyperparameterValues
Learning rate0.01,0.05,0.1
Running steps50,100,400
Clipping threshold0.01,0.1,1
", + "bbox": [ + 369, + 364, + 627, + 429 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Results The experiment results are shown in Table 3. GEP outperforms GP on all values of $\\epsilon$ . With privacy bound $\\epsilon = 2$ , GEP achieves $9 4 . 8 \\%$ validation accuracy on CIFAR10 dataset, improving over the GP baseline by $1 . 4 \\%$ . For very strong privacy guarantee $\\epsilon = 0 . 1$ ), B-GEP performs on par with GEP because strong privacy guarantee requires large noise and the useful signal in residual gradient is submerged in the added noise. B-GEP benefits less from larger $\\epsilon$ compared to GP or GEP. For $\\epsilon = 1$ and 2, the performance of B-GEP is worse than the performance of GP. This is because larger $\\epsilon$ can not reduce the systematic error of B-GEP (see Remark 1 in Section 3.2). ", + "bbox": [ + 173, + 477, + 825, + 575 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/d2776c477361166377cc930d11339cb78443091d3330e04c61148c4ef204a63e.jpg", + "table_caption": [ + "Table 3: Validation accuracy $( \\mathrm { i n } \\% )$ ) on CIFAR10 with varying choices of $\\epsilon$ . We train a private linear model on top of the features from a ResNet152 model, which is pre-trained on unlabeled ImageNet. " + ], + "table_footnote": [], + "table_body": "
e=0.1e=0.5e=1e=2
Non private96.396.396.396.3
GP88.2 (±0.16)91.1 (±0.17)93.2 (±0.19)93.4 (±0.12)
B-GEP91.0 (±0.07)92.9 (±0.03)93.1 (±0.10)93.2 (±0.08)
GEP90.9 (±0.19)93.5 (±0.06)94.3 (±0.09)94.8 (±0.06)
", + "bbox": [ + 197, + 633, + 799, + 722 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B COMPLEXITY ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 763, + 413, + 780 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We provide an analysis of the computational and memory costs of the construction of anchor subspace. The computation of the anchor subspace is the dominant additional cost of GEP compared to conventional gradient perturbation. Notations: $k , m , n$ , and $p$ are the dimension of anchor subspace, number of anchor gradients, number of private gradients, and the model dimension, respectively. In order to reduce the computational and memory costs, we divide the parameters into $g$ groups and compute one orthonormal basis for each group. We refer to this approach as ‘parameter grouping’. In this section, we assume the parameters and the dimension of the anchor subspace are both divided evenly. Table 4 summarizes the additional costs of GEP with/without parameter grouping. Using parameter grouping can reduce the computational/memory cost significantly. ", + "bbox": [ + 173, + 797, + 826, + 924 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/f315354942de29a4144ad26103cf1adc1edf47b60572935e95564367851d17d5.jpg", + "table_caption": [ + "Table 4: Computational and memory costs of a single power iteration in Algorithm 1. The computation cost is measured by the number of floating point operations. The memory cost is measured by the number of floating-point numbers we need to store. $\\cdot _ { \\mathrm { G E P + P G } } ,$ denotes GEP with parameter grouping and $g$ denotes the number of groups. Notations: $k$ , $m$ , $n$ , and $p$ are the dimension of anchor subspace, number of anchor gradients, number of private gradients, and the model dimension, respectively. " + ], + "table_footnote": [], + "table_body": "
Computational CostMemory Cost
GEP2mkp+pk²max(0,(m-n+k)p+mk)
GEP+PG2mkp/g+pk²/g²max (0,(m-n+)p+mk)
", + "bbox": [ + 194, + 184, + 803, + 246 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C ABLATION STUDY ", + "text_level": 1, + "bbox": [ + 174, + 271, + 361, + 287 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The influence of choosing different auxiliary datasets. We conduct experiments with different choices of auxiliary datasets. For CIFAR10, we try 2000 random test samples from CIFAR10, 2000 random samples from CIFAR100, and 2000 random samples from ImageNet. When the auxiliary dataset is CIFAR10, we try both correct labels and random labels. For all choices of auxiliary datasets, the test accuracy is evaluated on 8000 test samples of CIFAR10 that are not used as auxiliary data. Other implementation details are the same as in Section 4. The results are shown in Table 5. Surprisingly, using samples from CIFAR10 with correct labels yields the worst accuracy. This may because the model ‘overfits’ the auxiliary data when it has access to correct labels, which makes the anchor subspace contains less information about the private gradients. The best accuracy is achieved using samples from CIFAR10 with random labels, this makes sense because in this case the features of auxiliary data and private data have the same distribution. Using samples from CIFAR100 or ImageNet as auxiliary data has a small influence on the test accuracy. ", + "bbox": [ + 173, + 303, + 826, + 470 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/fd820d7ebdd3b49214716ea42d3d342bd0ed8833f7f8931c9bea093500cd4490.jpg", + "table_caption": [ + "Table 5: Test accuracy on CIFAR10 with different choices of auxiliary datasets. The privacy guarantee is $( 8 , 1 0 ^ { - 5 } )$ -DP. We report the average accuracy of five runs with standard deviations in brackets. " + ], + "table_footnote": [], + "table_body": "
Auxiliary DataRandomLabel?Test Accuracy
CIFAR10No72.9 (±0.31)
CIFAR10Yes75.1 (±0.42)
CIFAR100Yes74.7 (±0.46)
ImageNetYes74.8 (±0.39)
", + "bbox": [ + 223, + 525, + 774, + 614 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The influence of the number of anchor gradients. In the main text, the size of auxiliary dataset is $m = 2 0 0 0$ . We conduct more experiments with different sizes of auxiliary dataset to examine the influence of $m$ . The auxiliary data is randomly sampled from ImageNet. Table 6 reports the test accuracy on CIFAR10 with different choices of $m$ . For both B-GEP and GEP, increasing $m$ leads to slightly improved performance. ", + "bbox": [ + 173, + 628, + 825, + 700 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/0c60aa5a4fe1f318992c1aff6f337c8fa519582439ab36f3f8c4c946d3b38e55.jpg", + "table_caption": [ + "Table 6: Test accuracy on CIFAR10 with different sizes of auxiliary dataset. The privacy guarantee is $( 8 , 1 0 ^ { - 5 } )$ -DP. We report the average accuracy of five runs with standard deviations in brackets. " + ], + "table_footnote": [], + "table_body": "
Algorithmm = 1000m = 2000m = 4000
B-GEP62.2 (±0.26)62.6 (±0.24)63.3 (±0.27)
GEP74.6 (±0.41)74.8 (±0.39)75.2 (±0.34)
", + "bbox": [ + 223, + 755, + 771, + 810 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The projection error of random basis vectors. It is tempting to construct the anchor subspace using random basis vectors because Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees that one can preserve the pairwise distance between any two points after projecting into a random subspace of much lower dimension. We empirically verify the projection error of Gaussian random basis vectors on CIFAR10 and SVHN. The experiment settings are the same as in Section 4. The projection errors over the training process are plotted in Figure 7. The projection error of random basis vectors is very high $( > 9 5 \\%$ ) throughout training. This is because preserving the pairwise distance is not sufficient for high quality gradient reconstruction, which requires one to preserve the average ‘distance’ between any individual gradient and all other gradients. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/6bd629998cab363e48acafcc2df5409bfe0ffc571069597eaba467654c736237.jpg", + "image_caption": [ + "Figure 7: Projection error rate of random basis vectors. The dimension of subspace is denoted by $k$ . " + ], + "image_footnote": [], + "bbox": [ + 305, + 102, + 691, + 238 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 294, + 823, + 323 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "D MISSING PROOFS ", + "text_level": 1, + "bbox": [ + 174, + 342, + 356, + 359 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Lemma 3.1. Assume that the population covariance matrix $\\pmb { \\Sigma }$ is with rank $k$ and the distribution $\\mathcal { P }$ satisfies $\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0$ for all $s$ -flats $\\mathbb { F } _ { s }$ in $\\mathbb { R } ^ { p }$ with $0 \\leq s < k$ . Let $\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }$ and $\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }$ be the eigendecompositions of $\\pmb { \\Sigma }$ and the empirical covariance matrix $\\hat { S }$ , respectively, such that $\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0$ and $\\lambda _ { k ^ { \\prime } + 1 } ( \\hat { \\pmb S } ) = 0$ . Then if $m \\geq k$ , we have with probability $^ { l }$ , ", + "bbox": [ + 173, + 373, + 825, + 438 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/fa7681484f07c4229db4a3ebfe8369aafa31b912624554f7ac0925b7f0997da0.jpg", + "text": "$$\nk ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 .\n$$", + "text_format": "latex", + "bbox": [ + 362, + 443, + 635, + 463 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof. We extend the Theorem 3.2 in Eaton & Perlman (1973) to the low-rank case. ", + "bbox": [ + 174, + 477, + 725, + 492 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Theorem D.1 (Theorem 3.2 in Eaton & Perlman (1973)). Let $\\pmb { X } = ( \\pmb { x } _ { 1 } , . . . , \\pmb { x } _ { n } )$ where the $\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { i } }$ are i.i.d. random vectors in $\\mathbb { R } ^ { p }$ , $n \\geq p$ . If $\\mathbb { P } \\{ \\pmb { x } _ { 1 } \\in \\mathbb { M } \\} = 0$ for all proper manifolds $\\mathbb { M } \\subset \\mathbb { R } ^ { p }$ , then $\\mathbb { P } \\{ X$ is non-singular $\\scriptstyle \\cdot \\} = I$ . ", + "bbox": [ + 173, + 497, + 826, + 541 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We note that the subspace spanned by $\\hat { V } _ { k ^ { \\prime } }$ is in the space spanned by $V _ { k }$ by definition. Hence $k ^ { \\prime } \\leq k$ ", + "bbox": [ + 173, + 556, + 825, + 574 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Let $\\hat { \\pmb { x } } _ { i } : = V _ { k } ^ { T } \\pmb { \\hat { \\xi } } _ { i } \\in \\mathbb { R } ^ { k }$ for $i \\in [ m ]$ . Then $\\hat { \\pmb X } : = ( \\hat { \\pmb x } _ { 1 } , . . . , \\hat { \\pmb x } _ { m } )$ is non-singular because of the assumption and Theorem D.1. That is $r a n k ( { \\hat { X } } ) = k$ . Therefore $r a n k ( ( \\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m } ) ) \\geq k , r a n k ( \\hat { S } ) \\geq k$ and $k ^ { \\prime } \\geq k$ . Therefore $k ^ { \\prime } = k$ and the subspace spanned by $\\hat { V } _ { k ^ { \\prime } }$ and the subspace spanned by $V _ { k }$ are identical. □ ", + "bbox": [ + 173, + 579, + 826, + 643 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Theorem 3.1. Let $S _ { 1 }$ and $S _ { 2 }$ be the sensitivity of w and $\\pmb { r }$ , respectively, the output of Algorithm $^ { l }$ satisfies $( \\epsilon , \\delta )$ -DP for any $\\delta \\in ( 0 , 1 )$ and $\\epsilon \\leq 2 \\log ( 1 / \\delta )$ if we choose $\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon$ and $\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon$ . ", + "bbox": [ + 173, + 650, + 826, + 700 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof of Theorem 3.1. We first introduce some background knowledge of Rényi differential privacy (RDP) (Mironov, 2017). RDP measures the Rényi divergence between two output distributions. ", + "bbox": [ + 173, + 713, + 823, + 742 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Definition 2 ( $( \\lambda , \\gamma )$ -RDP). A randomized mechanism $f$ is said to guarantee $( \\lambda , \\gamma )$ -RDP if for any neighboring datasets $\\mathbb { D } , \\mathbb { D } ^ { \\prime }$ and $\\lambda > 1$ it holds that ", + "bbox": [ + 171, + 747, + 825, + 777 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/76eecbcfbf32fd9cdf5207a68929c3d124097f63292329f3bc306dce37ddd515.jpg", + "text": "$$\nD _ { \\lambda } ( f ( \\mathbb { D } ) | | f ( \\mathbb { D } ^ { \\prime } ) ) \\leq \\gamma ,\n$$", + "text_format": "latex", + "bbox": [ + 419, + 782, + 576, + 801 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "where $D _ { \\lambda } ( \\cdot | | \\cdot )$ denotes the Rényi divergence of order $\\lambda$ . ", + "bbox": [ + 173, + 805, + 540, + 821 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We next introduce some useful properties of RDP. ", + "bbox": [ + 173, + 834, + 501, + 851 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Lemma D.2 (Gaussian mechanism of RDP). Let $S = \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D ^ { \\prime } } } \\| f ( \\mathbb { D } ) - f ( \\mathbb { D ^ { \\prime } } ) \\|$ be the $l _ { 2 }$ sensitivity, then Gaussian mechanism $\\mathcal { M } = f ( \\mathbb { D } ) + z$ satisfies $( \\lambda , \\frac { \\lambda S ^ { 2 } } { 2 \\sigma ^ { 2 } } )$ -RDP, where $z \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p \\times p } )$ . ", + "bbox": [ + 173, + 856, + 825, + 890 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Lemma D.3 (Composition of RDP). If $M _ { 1 }$ , $M _ { 2 }$ satisfy $( \\lambda , \\gamma _ { 1 } )$ -RDP and $( \\lambda , \\gamma _ { 2 } )$ -RDP respectively, then their composition satisfies $( \\lambda , \\gamma _ { 1 } + \\gamma _ { 2 } ) – R D P$ . ", + "bbox": [ + 171, + 895, + 825, + 925 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Lemma D.4 (Conversion from RDP to $( \\epsilon , \\delta )$ -DP). If $\\mathcal { M }$ obeys $( \\lambda , \\gamma )$ -RDP, then $\\mathcal { M }$ obeys $( \\gamma +$ $\\log ( 1 / \\delta ) / ( \\lambda - 1 ) , \\delta )$ -DP for all $0 < \\delta < 1$ . ", + "bbox": [ + 169, + 102, + 826, + 133 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Now we proof Theorem 3.1. Let $W$ , $W ^ { \\prime }$ be the gradient embeddings of two neighboring datasets $\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }$ and $R , R ^ { \\prime }$ be corresponding residual gradients. Without loss of generality, suppose $W \\left( R \\right)$ has one more row than $W ^ { \\prime } \\left( R ^ { \\prime } \\right)$ . For given sensitivity $S _ { 1 } , S _ { 2 }$ , ", + "bbox": [ + 173, + 151, + 826, + 195 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/7fc3a9e2cce240c0aefbfe437436f3e719e063546830a1b9aa25f2391d0085ca.jpg", + "text": "$$\n\\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { w } - \\boldsymbol { w } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { W } \\sim \\boldsymbol { W } ^ { \\prime } } \\| \\boldsymbol { W } _ { n , : } \\| \\le S _ { 1 } , \\quad \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { r } - \\boldsymbol { r } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { R } \\sim \\boldsymbol { R } ^ { \\prime } } \\| \\boldsymbol { R } _ { n , : } \\| \\le S _ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 228, + 198, + 764, + 222 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "If we set $\\sigma _ { 1 } = S _ { 1 } \\sigma$ and $\\sigma _ { 2 } = S _ { 2 } \\sigma$ for some $\\sigma$ , then Algorithm 1 satisfies $( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )$ -RDP because of Lemma D.2 and D.3. In order to guarantee $( \\epsilon , \\delta )$ -DP, we need ", + "bbox": [ + 171, + 234, + 825, + 263 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/e7212eeb33637bbca78b6714dacddb3386f2ec61593454a6cfee99bfbf941832.jpg", + "text": "$$\n\\frac { \\lambda } { \\sigma ^ { 2 } } + \\frac { \\log ( 1 / \\delta ) } { \\lambda - 1 } \\leq \\epsilon .\n$$", + "text_format": "latex", + "bbox": [ + 428, + 267, + 568, + 300 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Choose $\\begin{array} { r } { \\lambda = 1 + \\frac { 2 \\log ( 1 / \\delta ) } { \\epsilon } } \\end{array}$ and rearrange Eq (5), we need ", + "bbox": [ + 173, + 303, + 550, + 323 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/6f7855b8607e1e307752b02447a0914dc17633fb4e2f8a3349789f1fe6f27e69.jpg", + "text": "$$\n\\sigma ^ { 2 } \\geq \\frac { 2 \\left( \\epsilon + 2 \\log ( 1 / \\delta ) \\right) } { \\epsilon ^ { 2 } } .\n$$", + "text_format": "latex", + "bbox": [ + 413, + 327, + 584, + 358 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Then using the constraint on $\\epsilon$ concludes the proof. ", + "bbox": [ + 173, + 367, + 509, + 383 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Theorem 3.2. For any $\\epsilon < 2 \\log ( 1 / \\delta )$ and $\\delta \\in ( 0 , 1 )$ , the output of Algorithm 2 satisfies $( \\epsilon , \\delta )$ -DP if we set $\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon$ . ", + "bbox": [ + 173, + 410, + 828, + 444 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof of Theorem 3.2. From the proof of Theorem 3.1, we have each call of GEP satisfies $( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )$ - RDP. Then by the composition property of RDP (Lemma D.3), the output of Algorithm 2 satisfies $( \\lambda , \\frac { T \\lambda } { \\sigma ^ { 2 } } )$ -RDP. Plugging $\\textstyle { \\frac { T \\lambda } { \\sigma ^ { 2 } } }$ into Equation 5 and 6 concludes the proof. ", + "bbox": [ + 173, + 458, + 826, + 503 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Theorem 3.3. Suppose the loss $\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}$ is $I$ -Lipschitz, convex, and $\\beta$ - smooth. If $\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}$ , $\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}$ √p , and $\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}$ , then we have $\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}$ $\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}$ \u0013, where r¯ = 1T PT −1t=0 r2t and rt = maxi k(Rt)i,:k is the sensitivity of residual gradient at step $t$ . ", + "bbox": [ + 173, + 529, + 826, + 616 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Proof of Theorem 3.3. The $\\beta$ -smooth condition gives ", + "bbox": [ + 174, + 628, + 524, + 643 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/7536a1ab5ca51429f922fd95d18a87e5ad2b33df96ad78a61ecf2fc5af343ae9.jpg", + "text": "$$\nL ( \\pmb \\theta _ { t + 1 } ) \\leq L ( \\pmb \\theta _ { t } ) + \\langle \\nabla L ( \\pmb \\theta _ { t } ) , \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\right. ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 290, + 647, + 707, + 678 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Based on the update rule of GEP we have ", + "bbox": [ + 174, + 688, + 449, + 703 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/99c6112a8db4ea5617a63069e0a1eb930b414eacaecb5f2fc034fef410752c8d.jpg", + "text": "$$\n\\pmb { \\theta } _ { t + 1 } - \\pmb { \\theta } _ { t } = - \\eta \\tilde { \\pmb { v } } = - \\eta \\nabla L ( \\pmb { \\theta } _ { t } ) - \\frac { \\eta } { n } ( z _ { t } ^ { ( 1 ) } \\pmb { B } + z _ { t } ^ { ( 2 ) } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 318, + 705, + 678, + 733 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where $\\boldsymbol { z } _ { t } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } \\boldsymbol { I } _ { k \\times k } )$ , $\\boldsymbol { z } _ { t } ^ { ( 2 ) } \\sim \\mathcal { N } ( \\boldsymbol { 0 } , \\sigma ^ { 2 } r _ { t } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )$ are the perturbation noises and $r _ { t } = $ $\\operatorname * { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|$ is the sensitivity of residual gradients at step $t$ . ", + "bbox": [ + 174, + 737, + 825, + 770 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Take expectation on Eq (7) with respect to the perturbation noises. ", + "bbox": [ + 173, + 775, + 607, + 791 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/8f966ab937534900a2616f443a3167e5e63761526e7f1755ad4efac1dd73ac2f.jpg", + "text": "$$\n\\mathbb { E } [ L ( \\pmb { \\theta } _ { t + 1 } ) ] \\leq \\mathbb { E } [ L ( \\pmb { \\theta } _ { t } ) ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\| \\nabla L ( \\pmb { \\theta } _ { t } ) \\| ^ { 2 } ] + \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 245, + 794, + 751, + 827 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Subtract $L ( \\theta _ { * } )$ from both sides, we have ", + "bbox": [ + 174, + 829, + 444, + 844 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/ff26de6eec42ee98ab4ee145ada1c6e0d7f40887dab6948936422bc3bf1b299f.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { I } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\mathbb { E } [ L ( \\theta _ { t } ) ] - L ( \\theta _ { * } ) - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\qquad \\le \\mathbb { E } [ \\langle \\nabla L ( \\theta _ { t } ) , \\theta _ { t } - \\theta _ { * } \\rangle ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 848, + 826, + 915 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The second inequality holds because $L$ is convex. Then choose $\\begin{array} { r } { \\eta \\mathrm { ~ = ~ } \\frac { 1 } { \\beta } } \\end{array}$ and plug $\\nabla L ( \\pmb \\theta _ { t } ) =$ $( \\pmb { \\theta } _ { t } - \\pmb { \\theta } _ { t + 1 } ) / \\eta - ( z _ { 1 } ^ { t } \\pmb { B } + z _ { 2 } ^ { t } ) / n$ into Eq (10). ", + "bbox": [ + 173, + 102, + 825, + 137 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/0acf8d9f1b722986e62fcd741f7cf702ef5145067921e62b7dfcbc0d67bff46d.jpg", + "text": "$$\n\\begin{array} { r l } & { \\displaystyle \\mathbb { E } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\beta \\mathbb { E } [ \\langle \\theta _ { t } - \\theta _ { t + 1 } , \\theta _ { t } - \\theta _ { * } \\rangle ] - \\frac { \\beta } { 2 } \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { t + 1 } \\| ^ { 2 } ] + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\frac { \\beta } { 2 } \\left( \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { * } \\| ^ { 2 } ] - \\mathbb { E } [ \\| \\theta _ { t + 1 } - \\theta _ { * } \\| ^ { 2 } ] \\right) + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 186, + 160, + 782, + 231 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Sum over $t = 0 , \\ldots , T - 1$ and use convexity, we have ", + "bbox": [ + 174, + 242, + 537, + 258 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/db6aede629a530a84e7e966007583d5d941d251d7130cb724ce940b66fced80d.jpg", + "text": "$$\n\\mathbb { E } [ L ( \\bar { \\theta } ) ] - L ( \\theta _ { * } ) \\le \\frac { \\beta } { 2 T } \\lVert \\theta _ { 0 } - \\theta _ { * } \\rVert + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } ( k + \\frac { p } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } ) .\n$$", + "text_format": "latex", + "bbox": [ + 299, + 263, + 697, + 308 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Then substituting $\\begin{array} { r } { T = \\frac { n \\beta \\epsilon } { \\sqrt { p } } } \\end{array}$ and $\\sigma = \\mathcal { O } ( \\sqrt { T \\log ( 1 / \\delta ) } / \\epsilon )$ yields the desired bound. ", + "bbox": [ + 173, + 321, + 710, + 343 + ], + "page_idx": 17 + } +] \ No newline at end of file diff --git a/parse/train/7aogOj_VYO0/7aogOj_VYO0_middle.json b/parse/train/7aogOj_VYO0/7aogOj_VYO0_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..31634b64ea8a86ae53d3aebb5b4750e4138cda19 --- /dev/null +++ b/parse/train/7aogOj_VYO0/7aogOj_VYO0_middle.json @@ -0,0 +1,57355 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "DO NOT LET PRIVACY OVERBILL UTILITY: GRADIENT", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 504, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 118 + ], + "score": 1.0, + "content": "EMBEDDING PERTURBATION FOR PRIVATE LEARNING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 398, + 192 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 354, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 127, + 147 + ], + "score": 1.0, + "content": "Da", + "type": "text" + }, + { + "bbox": [ + 127, + 134, + 157, + 146 + ], + "score": 0.86, + "content": "\\mathbf { V } \\mathbf { u } ^ { 1 , 2 , * }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 133, + 354, + 147 + ], + "score": 1.0, + "content": ", Huishuai Zhang2,∗, Wei Chen2, Tie-Yan Liu2", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 144, + 399, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 399, + 160 + ], + "score": 1.0, + "content": "1School of Computer Science and Engineering, Sun Yat-sen University", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 156, + 219, + 170 + ], + "spans": [ + { + "bbox": [ + 112, + 156, + 219, + 170 + ], + "score": 1.0, + "content": "2Microsoft Research Asia", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 167, + 257, + 183 + ], + "spans": [ + { + "bbox": [ + 111, + 167, + 257, + 183 + ], + "score": 1.0, + "content": "1yuda3@mail2.sysu.edu.cn", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 111, + 179, + 324, + 194 + ], + "spans": [ + { + "bbox": [ + 111, + 179, + 324, + 194 + ], + "score": 1.0, + "content": "2{huzhang,wche,tyliu}@microsoft.com", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 278, + 221, + 333, + 233 + ], + "lines": [ + { + "bbox": [ + 276, + 219, + 336, + 235 + ], + "spans": [ + { + "bbox": [ + 276, + 219, + 336, + 235 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 246, + 469, + 411 + ], + "lines": [ + { + "bbox": [ + 142, + 246, + 469, + 259 + ], + "spans": [ + { + "bbox": [ + 142, + 246, + 469, + 259 + ], + "score": 1.0, + "content": "The privacy leakage of the model about the training data can be bounded in the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 471, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 471, + 271 + ], + "score": 1.0, + "content": "differential privacy mechanism. However, for meaningful privacy parameters,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 269, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 269, + 470, + 281 + ], + "score": 1.0, + "content": "a differentially private model degrades the utility drastically when the model", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 280, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 292 + ], + "score": 1.0, + "content": "comprises a large number of trainable parameters. In this paper, we propose an", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "score": 1.0, + "content": "algorithm Gradient Embedding Perturbation (GEP) towards training differentially", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "score": 1.0, + "content": "private deep models with decent accuracy. Specifically, in each gradient descent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "score": 1.0, + "content": "step, GEP first projects individual private gradient into a non-sensitive anchor", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "score": 1.0, + "content": "subspace, producing a low-dimensional gradient embedding and a small-norm", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 335, + 469, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 469, + 346 + ], + "score": 1.0, + "content": "residual gradient. Then, GEP perturbs the low-dimensional embedding and the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "score": 1.0, + "content": "residual gradient separately according to the privacy budget. Such a decomposition", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 357, + 469, + 368 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 469, + 368 + ], + "score": 1.0, + "content": "permits a small perturbation variance, which greatly helps to break the dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "score": 1.0, + "content": "barrier of private learning. With GEP, we achieve decent accuracy with reasonable", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "score": 1.0, + "content": "computational cost and modest privacy guarantee for deep models. Especially, with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 389, + 470, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 200, + 401 + ], + "score": 1.0, + "content": "privacy bound", + "type": "text" + }, + { + "bbox": [ + 200, + 390, + 224, + 399 + ], + "score": 0.89, + "content": "\\epsilon = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 389, + 273, + 401 + ], + "score": 1.0, + "content": ", we achieve", + "type": "text" + }, + { + "bbox": [ + 273, + 389, + 301, + 400 + ], + "score": 0.89, + "content": "7 4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 389, + 424, + 401 + ], + "score": 1.0, + "content": "test accuracy on CIFAR10 and", + "type": "text" + }, + { + "bbox": [ + 425, + 389, + 452, + 400 + ], + "score": 0.88, + "content": "9 5 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 389, + 470, + 401 + ], + "score": 1.0, + "content": "test", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 401, + 406, + 413 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 406, + 413 + ], + "score": 1.0, + "content": "accuracy on SVHN, significantly improving over existing results.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 433, + 206, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 459, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "Recent works have shown that the trained model may leak/memorize the information of its training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "set (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017; Hitaj et al., 2017), which raises", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 495 + ], + "score": 1.0, + "content": "privacy issue when the models are trained with sensitive data. Differential privacy (DP) mechanism", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "provides a way to quantitatively measure and upper bound such information leakage. It theoretically", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 462, + 516 + ], + "score": 1.0, + "content": "ensures that the influence of any individual sample is negligible with the DP parameter", + "type": "text" + }, + { + "bbox": [ + 463, + 505, + 469, + 513 + ], + "score": 0.45, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 503, + 481, + 516 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 481, + 503, + 502, + 515 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 503, + 506, + 516 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "Moreover, it has been observed that differentially private models can also resist model inversion", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "attack (Carlini et al., 2019), membership inference attack (Rahman et al., 2018; Bernau et al., 2019;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 536, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 548 + ], + "score": 1.0, + "content": "Sablayrolles et al., 2019; Yu et al., 2021), gradient matching attack (Zhu et al., 2019), and data", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 246, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 246, + 559 + ], + "score": 1.0, + "content": "poisoning attack (Ma et al., 2019).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "One popular way to achieve differentially private machine learning is to perturb the training process", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "score": 1.0, + "content": "with noise (Song et al., 2013; Bassily et al., 2014; Shokri & Shmatikov, 2015; Wu et al., 2017;", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "Fukuchi et al., 2017; Iyengar et al., 2019; Phan et al., 2020). Specifically, gradient perturbation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "perturbs the gradient at each iteration of (stochastic) gradient descent algorithm and guarantees", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "the privacy of the final model via composition property of DP. It is worthy to note that gradient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "perturbation does not assume (strongly) convex objective and hence is applicable to various settings", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "(Abadi et al., 2016; Wang et al., 2017; Lee & Kifer, 2018; Jayaraman et al., 2018; Wang & Gu, 2019;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 338, + 654 + ], + "score": 1.0, + "content": "Yu et al., 2020). Specifically, for given gradient sensitivity", + "type": "text" + }, + { + "bbox": [ + 338, + 641, + 345, + 651 + ], + "score": 0.82, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 640, + 506, + 654 + ], + "score": 1.0, + "content": ", a general form of gradient perturbation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 649, + 470, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 254, + 666 + ], + "score": 1.0, + "content": "is to add an isotropic Gaussian noise", + "type": "text" + }, + { + "bbox": [ + 254, + 653, + 262, + 661 + ], + "score": 0.77, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 649, + 323, + 666 + ], + "score": 1.0, + "content": "to the gradient", + "type": "text" + }, + { + "bbox": [ + 323, + 652, + 354, + 663 + ], + "score": 0.92, + "content": "\\pmb { g } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 649, + 470, + 666 + ], + "score": 1.0, + "content": "independently for each step,", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 668, + 394, + 683 + ], + "lines": [ + { + "bbox": [ + 217, + 668, + 394, + 683 + ], + "spans": [ + { + "bbox": [ + 217, + 668, + 394, + 683 + ], + "score": 0.89, + "content": "\\tilde { \\pmb g } = \\pmb g + \\pmb z , \\mathrm { w h e r e } \\ z \\sim \\mathcal N ( 0 , \\sigma ^ { 2 } S ^ { 2 } \\pmb { I } _ { p \\times p } ) .", + "type": "interline_equation", + "image_path": "d554b0db410635760f4622599ed14bc6f791f2640b579fbb7f2460d93ae4ae98.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 217, + 668, + 394, + 683 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 690, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 107, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 107, + 690, + 219, + 703 + ], + "score": 1.0, + "content": "One can set proper variance", + "type": "text" + }, + { + "bbox": [ + 219, + 690, + 231, + 700 + ], + "score": 0.89, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 690, + 461, + 703 + ], + "score": 1.0, + "content": "to make each update differentially private with parameter", + "type": "text" + }, + { + "bbox": [ + 461, + 690, + 483, + 702 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 690, + 505, + 703 + ], + "score": 1.0, + "content": ". It is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 503, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 296, + 715 + ], + "score": 1.0, + "content": "easy to see that the intensity of the added noise", + "type": "text" + }, + { + "bbox": [ + 297, + 701, + 330, + 713 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| z \\| ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 700, + 497, + 715 + ], + "score": 1.0, + "content": "scales linearly with the model dimension", + "type": "text" + }, + { + "bbox": [ + 497, + 705, + 503, + 713 + ], + "score": 0.72, + "content": "p", + "type": "inline_equation" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 722, + 266, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 268, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 268, + 733 + ], + "score": 1.0, + "content": "∗Authors contribute equally to this work.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "DO NOT LET PRIVACY OVERBILL UTILITY: GRADIENT", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 504, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 118 + ], + "score": 1.0, + "content": "EMBEDDING PERTURBATION FOR PRIVATE LEARNING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "index", + "bbox": [ + 113, + 133, + 398, + 192 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 354, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 127, + 147 + ], + "score": 1.0, + "content": "Da", + "type": "text" + }, + { + "bbox": [ + 127, + 134, + 157, + 146 + ], + "score": 0.86, + "content": "\\mathbf { V } \\mathbf { u } ^ { 1 , 2 , * }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 133, + 354, + 147 + ], + "score": 1.0, + "content": ", Huishuai Zhang2,∗, Wei Chen2, Tie-Yan Liu2", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 144, + 399, + 160 + ], + "spans": [ + { + "bbox": [ + 111, + 144, + 399, + 160 + ], + "score": 1.0, + "content": "1School of Computer Science and Engineering, Sun Yat-sen University", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 156, + 219, + 170 + ], + "spans": [ + { + "bbox": [ + 112, + 156, + 219, + 170 + ], + "score": 1.0, + "content": "2Microsoft Research Asia", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 167, + 257, + 183 + ], + "spans": [ + { + "bbox": [ + 111, + 167, + 257, + 183 + ], + "score": 1.0, + "content": "1yuda3@mail2.sysu.edu.cn", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 179, + 324, + 194 + ], + "spans": [ + { + "bbox": [ + 111, + 179, + 324, + 194 + ], + "score": 1.0, + "content": "2{huzhang,wche,tyliu}@microsoft.com", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + } + ], + "index": 4, + "bbox_fs": [ + 111, + 133, + 399, + 194 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 221, + 333, + 233 + ], + "lines": [ + { + "bbox": [ + 276, + 219, + 336, + 235 + ], + "spans": [ + { + "bbox": [ + 276, + 219, + 336, + 235 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 143, + 246, + 469, + 411 + ], + "lines": [ + { + "bbox": [ + 142, + 246, + 469, + 259 + ], + "spans": [ + { + "bbox": [ + 142, + 246, + 469, + 259 + ], + "score": 1.0, + "content": "The privacy leakage of the model about the training data can be bounded in the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 471, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 471, + 271 + ], + "score": 1.0, + "content": "differential privacy mechanism. However, for meaningful privacy parameters,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 269, + 470, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 269, + 470, + 281 + ], + "score": 1.0, + "content": "a differentially private model degrades the utility drastically when the model", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 280, + 470, + 292 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 292 + ], + "score": 1.0, + "content": "comprises a large number of trainable parameters. In this paper, we propose an", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 469, + 303 + ], + "score": 1.0, + "content": "algorithm Gradient Embedding Perturbation (GEP) towards training differentially", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 315 + ], + "score": 1.0, + "content": "private deep models with decent accuracy. Specifically, in each gradient descent", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 470, + 325 + ], + "score": 1.0, + "content": "step, GEP first projects individual private gradient into a non-sensitive anchor", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 336 + ], + "score": 1.0, + "content": "subspace, producing a low-dimensional gradient embedding and a small-norm", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 335, + 469, + 346 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 469, + 346 + ], + "score": 1.0, + "content": "residual gradient. Then, GEP perturbs the low-dimensional embedding and the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 469, + 358 + ], + "score": 1.0, + "content": "residual gradient separately according to the privacy budget. Such a decomposition", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 357, + 469, + 368 + ], + "spans": [ + { + "bbox": [ + 141, + 357, + 469, + 368 + ], + "score": 1.0, + "content": "permits a small perturbation variance, which greatly helps to break the dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "spans": [ + { + "bbox": [ + 142, + 368, + 469, + 379 + ], + "score": 1.0, + "content": "barrier of private learning. With GEP, we achieve decent accuracy with reasonable", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 469, + 391 + ], + "score": 1.0, + "content": "computational cost and modest privacy guarantee for deep models. Especially, with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 389, + 470, + 401 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 200, + 401 + ], + "score": 1.0, + "content": "privacy bound", + "type": "text" + }, + { + "bbox": [ + 200, + 390, + 224, + 399 + ], + "score": 0.89, + "content": "\\epsilon = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 389, + 273, + 401 + ], + "score": 1.0, + "content": ", we achieve", + "type": "text" + }, + { + "bbox": [ + 273, + 389, + 301, + 400 + ], + "score": 0.89, + "content": "7 4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 389, + 424, + 401 + ], + "score": 1.0, + "content": "test accuracy on CIFAR10 and", + "type": "text" + }, + { + "bbox": [ + 425, + 389, + 452, + 400 + ], + "score": 0.88, + "content": "9 5 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 389, + 470, + 401 + ], + "score": 1.0, + "content": "test", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 401, + 406, + 413 + ], + "spans": [ + { + "bbox": [ + 141, + 401, + 406, + 413 + ], + "score": 1.0, + "content": "accuracy on SVHN, significantly improving over existing results.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15, + "bbox_fs": [ + 141, + 246, + 471, + 413 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 433, + 206, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 208, + 449 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 459, + 505, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 473 + ], + "score": 1.0, + "content": "Recent works have shown that the trained model may leak/memorize the information of its training", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 470, + 505, + 483 + ], + "score": 1.0, + "content": "set (Fredrikson et al., 2015; Wu et al., 2016; Shokri et al., 2017; Hitaj et al., 2017), which raises", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 506, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 495 + ], + "score": 1.0, + "content": "privacy issue when the models are trained with sensitive data. Differential privacy (DP) mechanism", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "provides a way to quantitatively measure and upper bound such information leakage. It theoretically", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 462, + 516 + ], + "score": 1.0, + "content": "ensures that the influence of any individual sample is negligible with the DP parameter", + "type": "text" + }, + { + "bbox": [ + 463, + 505, + 469, + 513 + ], + "score": 0.45, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 503, + 481, + 516 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 481, + 503, + 502, + 515 + ], + "score": 0.93, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 503, + 506, + 516 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "Moreover, it has been observed that differentially private models can also resist model inversion", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 537 + ], + "score": 1.0, + "content": "attack (Carlini et al., 2019), membership inference attack (Rahman et al., 2018; Bernau et al., 2019;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 536, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 506, + 548 + ], + "score": 1.0, + "content": "Sablayrolles et al., 2019; Yu et al., 2021), gradient matching attack (Zhu et al., 2019), and data", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 547, + 246, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 246, + 559 + ], + "score": 1.0, + "content": "poisoning attack (Ma et al., 2019).", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 457, + 506, + 559 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 563, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "One popular way to achieve differentially private machine learning is to perturb the training process", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "score": 1.0, + "content": "with noise (Song et al., 2013; Bassily et al., 2014; Shokri & Shmatikov, 2015; Wu et al., 2017;", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 505, + 598 + ], + "score": 1.0, + "content": "Fukuchi et al., 2017; Iyengar et al., 2019; Phan et al., 2020). Specifically, gradient perturbation", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "perturbs the gradient at each iteration of (stochastic) gradient descent algorithm and guarantees", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 608, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 506, + 621 + ], + "score": 1.0, + "content": "the privacy of the final model via composition property of DP. It is worthy to note that gradient", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 617, + 506, + 632 + ], + "score": 1.0, + "content": "perturbation does not assume (strongly) convex objective and hence is applicable to various settings", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 643 + ], + "score": 1.0, + "content": "(Abadi et al., 2016; Wang et al., 2017; Lee & Kifer, 2018; Jayaraman et al., 2018; Wang & Gu, 2019;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 338, + 654 + ], + "score": 1.0, + "content": "Yu et al., 2020). Specifically, for given gradient sensitivity", + "type": "text" + }, + { + "bbox": [ + 338, + 641, + 345, + 651 + ], + "score": 0.82, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 640, + 506, + 654 + ], + "score": 1.0, + "content": ", a general form of gradient perturbation", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 649, + 470, + 666 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 254, + 666 + ], + "score": 1.0, + "content": "is to add an isotropic Gaussian noise", + "type": "text" + }, + { + "bbox": [ + 254, + 653, + 262, + 661 + ], + "score": 0.77, + "content": "_ z", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 649, + 323, + 666 + ], + "score": 1.0, + "content": "to the gradient", + "type": "text" + }, + { + "bbox": [ + 323, + 652, + 354, + 663 + ], + "score": 0.92, + "content": "\\pmb { g } \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 649, + 470, + 666 + ], + "score": 1.0, + "content": "independently for each step,", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 564, + 506, + 666 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 668, + 394, + 683 + ], + "lines": [ + { + "bbox": [ + 217, + 668, + 394, + 683 + ], + "spans": [ + { + "bbox": [ + 217, + 668, + 394, + 683 + ], + "score": 0.89, + "content": "\\tilde { \\pmb g } = \\pmb g + \\pmb z , \\mathrm { w h e r e } \\ z \\sim \\mathcal N ( 0 , \\sigma ^ { 2 } S ^ { 2 } \\pmb { I } _ { p \\times p } ) .", + "type": "interline_equation", + "image_path": "d554b0db410635760f4622599ed14bc6f791f2640b579fbb7f2460d93ae4ae98.jpg" + } + ] + } + ], + "index": 42, + "virtual_lines": [ + { + "bbox": [ + 217, + 668, + 394, + 683 + ], + "spans": [], + "index": 42 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 690, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 107, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 107, + 690, + 219, + 703 + ], + "score": 1.0, + "content": "One can set proper variance", + "type": "text" + }, + { + "bbox": [ + 219, + 690, + 231, + 700 + ], + "score": 0.89, + "content": "\\sigma ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 690, + 461, + 703 + ], + "score": 1.0, + "content": "to make each update differentially private with parameter", + "type": "text" + }, + { + "bbox": [ + 461, + 690, + 483, + 702 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 690, + 505, + 703 + ], + "score": 1.0, + "content": ". It is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 700, + 503, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 296, + 715 + ], + "score": 1.0, + "content": "easy to see that the intensity of the added noise", + "type": "text" + }, + { + "bbox": [ + 297, + 701, + 330, + 713 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\| z \\| ^ { 2 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 700, + 497, + 715 + ], + "score": 1.0, + "content": "scales linearly with the model dimension", + "type": "text" + }, + { + "bbox": [ + 497, + 705, + 503, + 713 + ], + "score": 0.72, + "content": "p", + "type": "inline_equation" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 106, + 690, + 505, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 132, + 83, + 239, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 132, + 83, + 239, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 83, + 239, + 165 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 239, + 165 + ], + "score": 0.95, + "type": "image", + "image_path": "2328dd1acaacf1d6d310601a05b8693111b94ade2562eb88887a4f66dd786d46.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 132, + 83, + 239, + 124.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 132, + 124.0, + 239, + 165.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 179, + 267, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 268, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 268, + 191 + ], + "score": 1.0, + "content": "Figure 1: Noise norm vs gradient norm", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 189, + 267, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 267, + 201 + ], + "score": 1.0, + "content": "of ResNet20 at initialization. The noise", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 201, + 269, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 269, + 212 + ], + "score": 1.0, + "content": "variance is chosen such that SGD sat-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 210, + 268, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 131, + 224 + ], + "score": 1.0, + "content": "isfies", + "type": "text" + }, + { + "bbox": [ + 132, + 211, + 169, + 223 + ], + "score": 0.87, + "content": "( 5 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 210, + 268, + 224 + ], + "score": 1.0, + "content": "-DP after 90 epochs in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 221, + 187, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 187, + 235 + ], + "score": 1.0, + "content": "Abadi et al. (2016).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + } + ], + "index": 3.25 + }, + { + "type": "image", + "bbox": [ + 374, + 83, + 474, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 374, + 83, + 474, + 165 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 374, + 83, + 474, + 165 + ], + "spans": [ + { + "bbox": [ + 374, + 83, + 474, + 165 + ], + "score": 0.958, + "type": "image", + "image_path": "f29d64dfab5e9fa6de07c1a19f11f4a844d9260e860a0226687d143addd4c6e9.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 374, + 83, + 474, + 124.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 374, + 124.0, + 474, + 165.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 177, + 505, + 234 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 343, + 177, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 343, + 177, + 428, + 191 + ], + "score": 1.0, + "content": "Figure 2: Stable rank", + "type": "text" + }, + { + "bbox": [ + 429, + 177, + 475, + 190 + ], + "score": 0.92, + "content": "\\| \\cdot \\| _ { F } ^ { 2 } / \\| \\cdot \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 177, + 505, + 191 + ], + "score": 1.0, + "content": "(Tropp", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 344, + 189, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 344, + 189, + 505, + 200 + ], + "score": 1.0, + "content": "et al., 2015) of batch gradient matrix of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 343, + 201, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 343, + 201, + 424, + 212 + ], + "score": 1.0, + "content": "given groups (with", + "type": "text" + }, + { + "bbox": [ + 424, + 202, + 431, + 212 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 201, + 505, + 212 + ], + "score": 1.0, + "content": "parameters). The", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 343, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 343, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "setting is ResNet20 on CIFAR-10. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 343, + 220, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 343, + 220, + 505, + 236 + ], + "score": 1.0, + "content": "stable rank is small throughout training.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + } + ], + "index": 6.75 + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 505, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "This indicates that as the model becomes larger, the useful signal, i.e., gradient, would be submerged", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 268, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 504, + 280 + ], + "score": 1.0, + "content": "in the added noise (see Figure 1). This dimensional barrier restricts the utility of deep learning models", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 279, + 245, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 245, + 291 + ], + "score": 1.0, + "content": "trained with gradient perturbation.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "The dimensional barrier is attributed to the fact that the added noise is isotropic while the gradients", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 307, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 504, + 318 + ], + "score": 1.0, + "content": "live on a very low dimensional manifold, which has been observed in (Gur-Ari et al., 2018; Vogels", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "et al., 2019; Gooneratne et al., 2020; Li et al., 2020) and is also verified in Figure 2 for the gradients", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 330, + 472, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 472, + 341 + ], + "score": 1.0, + "content": "of a 20-layer ResNet (He et al., 2016). Hence to limit the noise energy, it is natural to think", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 504, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "“Can we reduce the dimension of gradients first and then add the isotropic noise onto a low-dimensional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 356, + 196, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 196, + 370 + ], + "score": 1.0, + "content": "gradient embedding?\"", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 373, + 505, + 440 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 506, + 385 + ], + "score": 1.0, + "content": "The answer is affirmative. We propose a new algorithm Gradient Embedding Perturbation (GEP),", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "illustrated in Figure 3. Specifically, we first compute anchor gradients on some non-sensitive auxiliary", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "data, and identify an anchor subspace that is spanned by several top principal components of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "anchor gradient matrix. Then we project the private gradients into the anchor subspace and obtain", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "low-dimensional gradient embeddings and small-norm residual gradients. Finally, we perturb the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "score": 1.0, + "content": "gradient embedding and residual gradient separately according to the sensitivities and privacy budget.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "We intuitively argue why GEP could reduce the perturbation variance and achieve good utility for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "large models. First, because the gradient embedding has a very low dimension, the added isotropic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "noise on embedding has small energy that scales linearly only with the subspace dimension. Second,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "if the anchor subspace can cover most of the gradient information, the residual gradient, though", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "high dimensional, should have small magnitude, which permits smaller added noise to guarantee the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "same level privacy because of the reduced sensitivity. Overall, we can use a much lower perturbation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 511, + 458, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 458, + 525 + ], + "score": 1.0, + "content": "compared with the original gradient perturbation to guarantee the same level of privacy.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "We emphasize several properties of GEP. First, the non-sensitive auxiliary data assumption is weak.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "In fact, GEP only requires a small number of non-sensitive unlabeled data following a similar", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "feature distribution as the private data, which often exist even for learning on sensitive data. In our", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "experiments, we use a few unlabeled samples from ImageNet to serve as auxiliary data for MNIST,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "SVHN, and CIFAR-10. This assumption is much weaker than the public data assumption in previous", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "works (Papernot et al., 2017; 2018; Alon et al., 2019; Wang & Zhou, 2020), where the public data", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "should follow exactly the same distribution as the private data. Second, GEP produces an unbiased", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "estimator of the target gradient because of releasing both the perturbed gradient embedding and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "the perturbed residual gradient, which turns out to be critical for good utility. Third, we use power", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "method to estimate the principal components of anchor gradients, achievable with a few matrix", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "multiplications. The fact that GEP is not sensitive to the choices of subspace dimension further allows", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 649, + 236, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 236, + 662 + ], + "score": 1.0, + "content": "a very efficient implementation.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Compared with existing works of differentially private machine learning, our contribution can be", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "summarized as follows: (1) we propose a novel algorithm GEP that achieves good utility for large", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "score": 1.0, + "content": "models with modest differential privacy guarantee; (2) we show that GEP returns an unbiased", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "estimator of target private gradient with much lower perturbation variance than original gradient", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "perturbation; (3) we demonstrate that GEP achieves state-of-the-art utility in differentially private", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 336, + 733 + ], + "score": 1.0, + "content": "learning with three benchmark datasets. Specifically, for", + "type": "text" + }, + { + "bbox": [ + 337, + 721, + 360, + 731 + ], + "score": 0.88, + "content": "\\epsilon = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 720, + 422, + 733 + ], + "score": 1.0, + "content": ", GEP achieves", + "type": "text" + }, + { + "bbox": [ + 422, + 720, + 450, + 731 + ], + "score": 0.86, + "content": "7 4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "test accuracy", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 50.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 132, + 83, + 239, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 132, + 83, + 239, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 83, + 239, + 165 + ], + "spans": [ + { + "bbox": [ + 132, + 83, + 239, + 165 + ], + "score": 0.95, + "type": "image", + "image_path": "2328dd1acaacf1d6d310601a05b8693111b94ade2562eb88887a4f66dd786d46.jpg" + } + ] + } + ], + "index": 0.5, + "virtual_lines": [ + { + "bbox": [ + 132, + 83, + 239, + 124.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 132, + 124.0, + 239, + 165.0 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 179, + 267, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 178, + 268, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 178, + 268, + 191 + ], + "score": 1.0, + "content": "Figure 1: Noise norm vs gradient norm", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 189, + 267, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 267, + 201 + ], + "score": 1.0, + "content": "of ResNet20 at initialization. The noise", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 201, + 269, + 212 + ], + "spans": [ + { + "bbox": [ + 106, + 201, + 269, + 212 + ], + "score": 1.0, + "content": "variance is chosen such that SGD sat-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 210, + 268, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 131, + 224 + ], + "score": 1.0, + "content": "isfies", + "type": "text" + }, + { + "bbox": [ + 132, + 211, + 169, + 223 + ], + "score": 0.87, + "content": "( 5 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 210, + 268, + 224 + ], + "score": 1.0, + "content": "-DP after 90 epochs in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 221, + 187, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 187, + 235 + ], + "score": 1.0, + "content": "Abadi et al. (2016).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + } + ], + "index": 3.25 + }, + { + "type": "image", + "bbox": [ + 374, + 83, + 474, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 374, + 83, + 474, + 165 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 374, + 83, + 474, + 165 + ], + "spans": [ + { + "bbox": [ + 374, + 83, + 474, + 165 + ], + "score": 0.958, + "type": "image", + "image_path": "f29d64dfab5e9fa6de07c1a19f11f4a844d9260e860a0226687d143addd4c6e9.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 374, + 83, + 474, + 124.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 374, + 124.0, + 474, + 165.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 177, + 505, + 234 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 343, + 177, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 343, + 177, + 428, + 191 + ], + "score": 1.0, + "content": "Figure 2: Stable rank", + "type": "text" + }, + { + "bbox": [ + 429, + 177, + 475, + 190 + ], + "score": 0.92, + "content": "\\| \\cdot \\| _ { F } ^ { 2 } / \\| \\cdot \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 177, + 505, + 191 + ], + "score": 1.0, + "content": "(Tropp", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 344, + 189, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 344, + 189, + 505, + 200 + ], + "score": 1.0, + "content": "et al., 2015) of batch gradient matrix of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 343, + 201, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 343, + 201, + 424, + 212 + ], + "score": 1.0, + "content": "given groups (with", + "type": "text" + }, + { + "bbox": [ + 424, + 202, + 431, + 212 + ], + "score": 0.76, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 201, + 505, + 212 + ], + "score": 1.0, + "content": "parameters). The", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 343, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 343, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "setting is ResNet20 on CIFAR-10. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 343, + 220, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 343, + 220, + 505, + 236 + ], + "score": 1.0, + "content": "stable rank is small throughout training.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + } + ], + "index": 6.75 + }, + { + "type": "text", + "bbox": [ + 107, + 257, + 505, + 290 + ], + "lines": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "This indicates that as the model becomes larger, the useful signal, i.e., gradient, would be submerged", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 268, + 504, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 504, + 280 + ], + "score": 1.0, + "content": "in the added noise (see Figure 1). This dimensional barrier restricts the utility of deep learning models", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 279, + 245, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 245, + 291 + ], + "score": 1.0, + "content": "trained with gradient perturbation.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 256, + 505, + 291 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "The dimensional barrier is attributed to the fact that the added noise is isotropic while the gradients", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 307, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 504, + 318 + ], + "score": 1.0, + "content": "live on a very low dimensional manifold, which has been observed in (Gur-Ari et al., 2018; Vogels", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "et al., 2019; Gooneratne et al., 2020; Li et al., 2020) and is also verified in Figure 2 for the gradients", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 330, + 472, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 472, + 341 + ], + "score": 1.0, + "content": "of a 20-layer ResNet (He et al., 2016). Hence to limit the noise energy, it is natural to think", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 296, + 505, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 346, + 504, + 368 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "“Can we reduce the dimension of gradients first and then add the isotropic noise onto a low-dimensional", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 356, + 196, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 196, + 370 + ], + "score": 1.0, + "content": "gradient embedding?\"", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 345, + 506, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 373, + 505, + 440 + ], + "lines": [ + { + "bbox": [ + 106, + 374, + 506, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 506, + 385 + ], + "score": 1.0, + "content": "The answer is affirmative. We propose a new algorithm Gradient Embedding Perturbation (GEP),", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "illustrated in Figure 3. Specifically, we first compute anchor gradients on some non-sensitive auxiliary", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 505, + 408 + ], + "score": 1.0, + "content": "data, and identify an anchor subspace that is spanned by several top principal components of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "anchor gradient matrix. Then we project the private gradients into the anchor subspace and obtain", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "low-dimensional gradient embeddings and small-norm residual gradients. Finally, we perturb the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 506, + 442 + ], + "score": 1.0, + "content": "gradient embedding and residual gradient separately according to the sensitivities and privacy budget.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 374, + 506, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 506, + 458 + ], + "score": 1.0, + "content": "We intuitively argue why GEP could reduce the perturbation variance and achieve good utility for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "large models. First, because the gradient embedding has a very low dimension, the added isotropic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 480 + ], + "score": 1.0, + "content": "noise on embedding has small energy that scales linearly only with the subspace dimension. Second,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "if the anchor subspace can cover most of the gradient information, the residual gradient, though", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "high dimensional, should have small magnitude, which permits smaller added noise to guarantee the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "same level privacy because of the reduced sensitivity. Overall, we can use a much lower perturbation", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 511, + 458, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 458, + 525 + ], + "score": 1.0, + "content": "compared with the original gradient perturbation to guarantee the same level of privacy.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 446, + 506, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "We emphasize several properties of GEP. First, the non-sensitive auxiliary data assumption is weak.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 551 + ], + "score": 1.0, + "content": "In fact, GEP only requires a small number of non-sensitive unlabeled data following a similar", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "feature distribution as the private data, which often exist even for learning on sensitive data. In our", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "experiments, we use a few unlabeled samples from ImageNet to serve as auxiliary data for MNIST,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "SVHN, and CIFAR-10. This assumption is much weaker than the public data assumption in previous", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "works (Papernot et al., 2017; 2018; Alon et al., 2019; Wang & Zhou, 2020), where the public data", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "should follow exactly the same distribution as the private data. Second, GEP produces an unbiased", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 618 + ], + "score": 1.0, + "content": "estimator of the target gradient because of releasing both the perturbed gradient embedding and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "the perturbed residual gradient, which turns out to be critical for good utility. Third, we use power", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "method to estimate the principal components of anchor gradients, achievable with a few matrix", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "multiplications. The fact that GEP is not sensitive to the choices of subspace dimension further allows", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 649, + 236, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 236, + 662 + ], + "score": 1.0, + "content": "a very efficient implementation.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 527, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Compared with existing works of differentially private machine learning, our contribution can be", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "summarized as follows: (1) we propose a novel algorithm GEP that achieves good utility for large", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 506, + 701 + ], + "score": 1.0, + "content": "models with modest differential privacy guarantee; (2) we show that GEP returns an unbiased", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "estimator of target private gradient with much lower perturbation variance than original gradient", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "perturbation; (3) we demonstrate that GEP achieves state-of-the-art utility in differentially private", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 336, + 733 + ], + "score": 1.0, + "content": "learning with three benchmark datasets. Specifically, for", + "type": "text" + }, + { + "bbox": [ + 337, + 721, + 360, + 731 + ], + "score": 0.88, + "content": "\\epsilon = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 720, + 422, + 733 + ], + "score": 1.0, + "content": ", GEP achieves", + "type": "text" + }, + { + "bbox": [ + 422, + 720, + 450, + 731 + ], + "score": 0.86, + "content": "7 4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "test accuracy", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "on CIFAR-10 with a ResNet20 model. To the best of our knowledge, GEP is the first algorithm that", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "score": 1.0, + "content": "can achieve such utility with training deep models from scratch for a “single-digit\" privacy budget1.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 50.5, + "bbox_fs": [ + 105, + 665, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 126, + 79, + 484, + 173 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 79, + 484, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 79, + 484, + 173 + ], + "spans": [ + { + "bbox": [ + 126, + 79, + 484, + 173 + ], + "score": 0.97, + "type": "image", + "image_path": "3bef0fb092363e24757fc5e7749b7b0d21880e7f800df950d684090df99c907d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 79, + 484, + 110.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 110.33333333333333, + 484, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 141.66666666666666, + 484, + 173.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 184, + 506, + 250 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 183, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 197 + ], + "score": 1.0, + "content": "Figure 3: Overview of the proposed GEP approach. 1) We estimate an anchor subspace on some", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 196, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 208 + ], + "score": 1.0, + "content": "non-sensitive data; 2) We project the private gradients into the anchor subspace, producing low-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "dimensional embeddings and residual gradients; 3) We perturb the gradient embedding and residual", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "gradient separately to guarantee differential privacy. The auxiliary data are only required to share", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "similar features as the private data. In our experiments, we use 2000 images from ImageNet as", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 239, + 343, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 343, + 252 + ], + "score": 1.0, + "content": "auxiliary data for MNIST, SVHN, and CIFAR-10 datasets.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 105, + 272, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "on CIFAR-10 with a ResNet20 model. To the best of our knowledge, GEP is the first algorithm that", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "score": 1.0, + "content": "can achieve such utility with training deep models from scratch for a “single-digit\" privacy budget1.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 108, + 307, + 201, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 202, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 202, + 319 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 322, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "score": 1.0, + "content": "Existing works studying differentially private machine learning in high-dimensional setting can be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "score": 1.0, + "content": "roughly categorized into two sets. One is treating the optimization of the machine learning objective", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "as a whole mechanism and adding noise into this process. The other one is based on the knowledge", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "transfer of machine learning models, which trains a differentially private publishable student model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 367, + 389, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 389, + 379 + ], + "score": 1.0, + "content": "with private signals from teacher models. We review them one by one.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "Differentially private convex optimization in high-dimensional setting has been studied extensively", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "over the years (Kifer et al., 2012; Thakurta & Smith, 2013; Talwar et al., 2015; Wang & Xu, 2019;", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "Wang & Gu, 2019). Although these methods demonstrate good utility on some convex settings, their", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "analyses can not be directly applied to non-convex setting. Right before the submission, we note two", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "independent and concurrent works (Zhou et al., 2020; Kairouz et al., 2020) that also leverage the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 439, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 450 + ], + "score": 1.0, + "content": "gradient redundancy to reduce the added noise. Specifically, Kairouz et al. (2020) track historical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "gradients to do dimension reduction for private AdaGrad. Zhou et al. (2020) requires gradients on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "some public data and then project the noisy gradients into a public subspace at each update. One core", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "difference between these two works and GEP is that we introduce residual gradient perturbation and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "score": 1.0, + "content": "GEP produces an unbiased estimator of the private gradients, which is essential for achieving the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "superior utility. Moreover, we weaken the auxiliary data assumption and introduce several designs", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 503, + 359, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 359, + 517 + ], + "score": 1.0, + "content": "that significantly boost the efficiency and applicability of GEP.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 521, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "One recent progress towards training arbitrary models with differential privacy is Private Aggregation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "of Teacher Ensembles (PATE) (Papernot et al., 2017; 2018; Jordon et al., 2019). PATE first trains", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "score": 1.0, + "content": "independent teacher models on disjoint shards of private data. Then it trains a student model with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "privacy guarantee by distilling noisy predictions of teacher models on some public samples. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "comparison, GEP only requires some non-sensitive data that have similar natural features as the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "score": 1.0, + "content": "private data while PATE requires the public data follow exactly the same distribution as the private data", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "and in practice it uses a portion of the test data to serve as public data. Moreover, GEP demonstrates", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "better performance than PATE especially for complex datasets, e.g., CIFAR-10, because GEP can", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 412, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 412, + 621 + ], + "score": 1.0, + "content": "train the model with the whole private data rather than a small shard of data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 108, + 635, + 208, + 647 + ], + "lines": [ + { + "bbox": [ + 104, + 633, + 209, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 633, + 209, + 650 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 428, + 668 + ], + "score": 1.0, + "content": "We introduce some notations and definitions. We use bold lowercase letters, e.g.,", + "type": "text" + }, + { + "bbox": [ + 429, + 658, + 435, + 666 + ], + "score": 0.67, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 655, + 505, + 668 + ], + "score": 1.0, + "content": ", and bold capital", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 155, + 678 + ], + "score": 1.0, + "content": "letters, e.g.,", + "type": "text" + }, + { + "bbox": [ + 156, + 666, + 169, + 676 + ], + "score": 0.68, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 665, + 370, + 678 + ], + "score": 1.0, + "content": ", to denote vectors and matrices, respectively. The", + "type": "text" + }, + { + "bbox": [ + 371, + 666, + 383, + 676 + ], + "score": 0.88, + "content": "L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 665, + 453, + 678 + ], + "score": 1.0, + "content": "norm of a vector", + "type": "text" + }, + { + "bbox": [ + 453, + 668, + 460, + 676 + ], + "score": 0.78, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "is denoted", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 675, + 502, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 675, + 119, + 691 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 677, + 136, + 689 + ], + "score": 0.91, + "content": "\\| \\pmb { v } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 675, + 355, + 691 + ], + "score": 1.0, + "content": ". The spectral norm and the Frobenius norm of a matrix", + "type": "text" + }, + { + "bbox": [ + 356, + 677, + 369, + 687 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 675, + 430, + 691 + ], + "score": 1.0, + "content": "are denoted by", + "type": "text" + }, + { + "bbox": [ + 431, + 677, + 454, + 689 + ], + "score": 0.93, + "content": "\\lVert M \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 675, + 473, + 691 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 677, + 502, + 689 + ], + "score": 0.92, + "content": "\\| M \\| _ { F }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 204, + 702 + ], + "score": 1.0, + "content": "respectively. A sample", + "type": "text" + }, + { + "bbox": [ + 204, + 688, + 250, + 700 + ], + "score": 0.93, + "content": "d = ( \\pmb { x } , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 687, + 330, + 702 + ], + "score": 1.0, + "content": "consists of feature", + "type": "text" + }, + { + "bbox": [ + 330, + 690, + 338, + 698 + ], + "score": 0.77, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 687, + 380, + 702 + ], + "score": 1.0, + "content": "and label", + "type": "text" + }, + { + "bbox": [ + 380, + 690, + 387, + 700 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 687, + 434, + 702 + ], + "score": 1.0, + "content": ". A dataset", + "type": "text" + }, + { + "bbox": [ + 434, + 689, + 443, + 698 + ], + "score": 0.8, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "is a collection", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 246, + 712 + ], + "score": 1.0, + "content": "of individual samples. A dataset", + "type": "text" + }, + { + "bbox": [ + 247, + 699, + 258, + 708 + ], + "score": 0.87, + "content": "\\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 698, + 419, + 712 + ], + "score": 1.0, + "content": "is said to be a neighboring dataset of", + "type": "text" + }, + { + "bbox": [ + 420, + 699, + 428, + 709 + ], + "score": 0.84, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "if they differ in a", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 113, + 721, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 219, + 733 + ], + "score": 1.0, + "content": "1Abadi et al. (2016) achieve", + "type": "text" + }, + { + "bbox": [ + 219, + 721, + 237, + 731 + ], + "score": 0.87, + "content": "7 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "accuracy on CIFAR-10 but they need to pre-train the model on CIFAR-100.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 126, + 79, + 484, + 173 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 126, + 79, + 484, + 173 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 79, + 484, + 173 + ], + "spans": [ + { + "bbox": [ + 126, + 79, + 484, + 173 + ], + "score": 0.97, + "type": "image", + "image_path": "3bef0fb092363e24757fc5e7749b7b0d21880e7f800df950d684090df99c907d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 79, + 484, + 110.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 110.33333333333333, + 484, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 141.66666666666666, + 484, + 173.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 184, + 506, + 250 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 183, + 506, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 506, + 197 + ], + "score": 1.0, + "content": "Figure 3: Overview of the proposed GEP approach. 1) We estimate an anchor subspace on some", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 196, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 506, + 208 + ], + "score": 1.0, + "content": "non-sensitive data; 2) We project the private gradients into the anchor subspace, producing low-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "dimensional embeddings and residual gradients; 3) We perturb the gradient embedding and residual", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "gradient separately to guarantee differential privacy. The auxiliary data are only required to share", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "similar features as the private data. In our experiments, we use 2000 images from ImageNet as", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 239, + 343, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 343, + 252 + ], + "score": 1.0, + "content": "auxiliary data for MNIST, SVHN, and CIFAR-10 datasets.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 105, + 272, + 505, + 295 + ], + "lines": [], + "index": 9.5, + "bbox_fs": [ + 105, + 272, + 505, + 296 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 307, + 201, + 318 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 202, + 319 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 202, + 319 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 322, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 505, + 335 + ], + "score": 1.0, + "content": "Existing works studying differentially private machine learning in high-dimensional setting can be", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "score": 1.0, + "content": "roughly categorized into two sets. One is treating the optimization of the machine learning objective", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "as a whole mechanism and adding noise into this process. The other one is based on the knowledge", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "transfer of machine learning models, which trains a differentially private publishable student model", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 367, + 389, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 389, + 379 + ], + "score": 1.0, + "content": "with private signals from teacher models. We review them one by one.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 321, + 505, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 383, + 505, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "Differentially private convex optimization in high-dimensional setting has been studied extensively", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 506, + 407 + ], + "score": 1.0, + "content": "over the years (Kifer et al., 2012; Thakurta & Smith, 2013; Talwar et al., 2015; Wang & Xu, 2019;", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "score": 1.0, + "content": "Wang & Gu, 2019). Although these methods demonstrate good utility on some convex settings, their", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 430 + ], + "score": 1.0, + "content": "analyses can not be directly applied to non-convex setting. Right before the submission, we note two", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "independent and concurrent works (Zhou et al., 2020; Kairouz et al., 2020) that also leverage the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 439, + 505, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 450 + ], + "score": 1.0, + "content": "gradient redundancy to reduce the added noise. Specifically, Kairouz et al. (2020) track historical", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "gradients to do dimension reduction for private AdaGrad. Zhou et al. (2020) requires gradients on", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "some public data and then project the noisy gradients into a public subspace at each update. One core", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "difference between these two works and GEP is that we introduce residual gradient perturbation and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "score": 1.0, + "content": "GEP produces an unbiased estimator of the private gradients, which is essential for achieving the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 507 + ], + "score": 1.0, + "content": "superior utility. Moreover, we weaken the auxiliary data assumption and introduce several designs", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 503, + 359, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 359, + 517 + ], + "score": 1.0, + "content": "that significantly boost the efficiency and applicability of GEP.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 384, + 506, + 517 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 521, + 505, + 620 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "One recent progress towards training arbitrary models with differential privacy is Private Aggregation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 505, + 544 + ], + "score": 1.0, + "content": "of Teacher Ensembles (PATE) (Papernot et al., 2017; 2018; Jordon et al., 2019). PATE first trains", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "score": 1.0, + "content": "independent teacher models on disjoint shards of private data. Then it trains a student model with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "privacy guarantee by distilling noisy predictions of teacher models on some public samples. In", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 578 + ], + "score": 1.0, + "content": "comparison, GEP only requires some non-sensitive data that have similar natural features as the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 506, + 589 + ], + "score": 1.0, + "content": "private data while PATE requires the public data follow exactly the same distribution as the private data", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "and in practice it uses a portion of the test data to serve as public data. Moreover, GEP demonstrates", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "better performance than PATE especially for complex datasets, e.g., CIFAR-10, because GEP can", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 412, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 412, + 621 + ], + "score": 1.0, + "content": "train the model with the whole private data rather than a small shard of data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 520, + 506, + 621 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 635, + 208, + 647 + ], + "lines": [ + { + "bbox": [ + 104, + 633, + 209, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 633, + 209, + 650 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 428, + 668 + ], + "score": 1.0, + "content": "We introduce some notations and definitions. We use bold lowercase letters, e.g.,", + "type": "text" + }, + { + "bbox": [ + 429, + 658, + 435, + 666 + ], + "score": 0.67, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 655, + 505, + 668 + ], + "score": 1.0, + "content": ", and bold capital", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 155, + 678 + ], + "score": 1.0, + "content": "letters, e.g.,", + "type": "text" + }, + { + "bbox": [ + 156, + 666, + 169, + 676 + ], + "score": 0.68, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 665, + 370, + 678 + ], + "score": 1.0, + "content": ", to denote vectors and matrices, respectively. The", + "type": "text" + }, + { + "bbox": [ + 371, + 666, + 383, + 676 + ], + "score": 0.88, + "content": "L ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 665, + 453, + 678 + ], + "score": 1.0, + "content": "norm of a vector", + "type": "text" + }, + { + "bbox": [ + 453, + 668, + 460, + 676 + ], + "score": 0.78, + "content": "\\textbf { { v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "is denoted", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 675, + 502, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 675, + 119, + 691 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 119, + 677, + 136, + 689 + ], + "score": 0.91, + "content": "\\| \\pmb { v } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 675, + 355, + 691 + ], + "score": 1.0, + "content": ". The spectral norm and the Frobenius norm of a matrix", + "type": "text" + }, + { + "bbox": [ + 356, + 677, + 369, + 687 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 675, + 430, + 691 + ], + "score": 1.0, + "content": "are denoted by", + "type": "text" + }, + { + "bbox": [ + 431, + 677, + 454, + 689 + ], + "score": 0.93, + "content": "\\lVert M \\rVert", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 675, + 473, + 691 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 473, + 677, + 502, + 689 + ], + "score": 0.92, + "content": "\\| M \\| _ { F }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 204, + 702 + ], + "score": 1.0, + "content": "respectively. A sample", + "type": "text" + }, + { + "bbox": [ + 204, + 688, + 250, + 700 + ], + "score": 0.93, + "content": "d = ( \\pmb { x } , y )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 687, + 330, + 702 + ], + "score": 1.0, + "content": "consists of feature", + "type": "text" + }, + { + "bbox": [ + 330, + 690, + 338, + 698 + ], + "score": 0.77, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 687, + 380, + 702 + ], + "score": 1.0, + "content": "and label", + "type": "text" + }, + { + "bbox": [ + 380, + 690, + 387, + 700 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 687, + 434, + 702 + ], + "score": 1.0, + "content": ". A dataset", + "type": "text" + }, + { + "bbox": [ + 434, + 689, + 443, + 698 + ], + "score": 0.8, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "is a collection", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 246, + 712 + ], + "score": 1.0, + "content": "of individual samples. A dataset", + "type": "text" + }, + { + "bbox": [ + 247, + 699, + 258, + 708 + ], + "score": 0.87, + "content": "\\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 698, + 419, + 712 + ], + "score": 1.0, + "content": "is said to be a neighboring dataset of", + "type": "text" + }, + { + "bbox": [ + 420, + 699, + 428, + 709 + ], + "score": 0.84, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "if they differ in a", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 212, + 95 + ], + "score": 1.0, + "content": "single sample, denoted as", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 212, + 83, + 244, + 93 + ], + "score": 0.92, + "content": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 244, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". Differential privacy ensures that the outputs of an algorithm on", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 397, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 397, + 106 + ], + "score": 1.0, + "content": "neighboring datasets have approximately indistinguishable distributions.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 655, + 506, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 212, + 95 + ], + "score": 1.0, + "content": "single sample, denoted as", + "type": "text" + }, + { + "bbox": [ + 212, + 83, + 244, + 93 + ], + "score": 0.92, + "content": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". Differential privacy ensures that the outputs of an algorithm on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 397, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 397, + 106 + ], + "score": 1.0, + "content": "neighboring datasets have approximately indistinguishable distributions.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 108, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 108, + 506, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 162, + 122 + ], + "score": 1.0, + "content": "Definition 1", + "type": "text" + }, + { + "bbox": [ + 163, + 109, + 185, + 121 + ], + "score": 0.88, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 108, + 417, + 122 + ], + "score": 1.0, + "content": "-DP (Dwork et al., 2006a;b)). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 417, + 109, + 431, + 119 + ], + "score": 0.67, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 108, + 480, + 122 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 480, + 109, + 502, + 121 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 108, + 506, + 122 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 504, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 346, + 135 + ], + "score": 1.0, + "content": "differential privacy if for any two neighboring input datasets", + "type": "text" + }, + { + "bbox": [ + 346, + 120, + 377, + 132 + ], + "score": 0.9, + "content": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 121, + 496, + 135 + ], + "score": 1.0, + "content": "and for any subset of outputs", + "type": "text" + }, + { + "bbox": [ + 496, + 122, + 504, + 132 + ], + "score": 0.78, + "content": "S", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 133, + 326, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 156, + 147 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + }, + { + "bbox": [ + 157, + 133, + 322, + 146 + ], + "score": 0.91, + "content": "P r [ \\mathcal { M } ( \\mathbb { D } ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( \\mathbb { D } ^ { ' } ) \\in S ] + \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 133, + 326, + 147 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 176, + 168 + ], + "score": 1.0, + "content": "By its definition,", + "type": "text" + }, + { + "bbox": [ + 176, + 155, + 198, + 167 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 155, + 506, + 168 + ], + "score": 1.0, + "content": "-DP controls the maximum influence that any individual sample can produce.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "score": 1.0, + "content": "One can adjust the privacy parameters to trade off between privacy and utility. Differential privacy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "is immune to post-processing (Dwork et al., 2014), i.e., any function applied on the output of a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "score": 1.0, + "content": "differentially private algorithm would not increase the privacy loss as long as it does not have", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "new interaction with the private dataset. Differential privacy also allows composition, i.e., the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "composition of a series of differentially private mechanisms is also differentially private but with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 268, + 235 + ], + "score": 1.0, + "content": "different parameters. Several variants of", + "type": "text" + }, + { + "bbox": [ + 268, + 221, + 290, + 233 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 219, + 506, + 235 + ], + "score": 1.0, + "content": "-DP have been proposed (Bun & Steinke, 2016; Dong", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 230, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 280, + 246 + ], + "score": 1.0, + "content": "et al., 2019) to address certain weakness of", + "type": "text" + }, + { + "bbox": [ + 281, + 232, + 302, + 244 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 230, + 507, + 246 + ], + "score": 1.0, + "content": "-DP, e.g., they achieve better composition property.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "score": 1.0, + "content": "In this work, we use Rényi differential privacy (Mironov, 2017) to track the privacy loss and then", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 198, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 157, + 267 + ], + "score": 1.0, + "content": "convert it to", + "type": "text" + }, + { + "bbox": [ + 157, + 254, + 178, + 266 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 254, + 198, + 267 + ], + "score": 1.0, + "content": "-DP.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 504, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 255, + 285 + ], + "score": 1.0, + "content": "Suppose that there is a private dataset", + "type": "text" + }, + { + "bbox": [ + 255, + 271, + 330, + 283 + ], + "score": 0.93, + "content": "\\mathbb { D } = \\{ ( \\boldsymbol { x } _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 270, + 351, + 285 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 351, + 273, + 358, + 281 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 270, + 496, + 285 + ], + "score": 1.0, + "content": "samples. We want to train a model", + "type": "text" + }, + { + "bbox": [ + 497, + 271, + 504, + 283 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 200, + 295 + ], + "score": 1.0, + "content": "to learn the mapping in", + "type": "text" + }, + { + "bbox": [ + 200, + 282, + 208, + 292 + ], + "score": 0.76, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 281, + 263, + 295 + ], + "score": 1.0, + "content": ". Specifically,", + "type": "text" + }, + { + "bbox": [ + 263, + 283, + 271, + 294 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 281, + 294, + 295 + ], + "score": 1.0, + "content": "takes", + "type": "text" + }, + { + "bbox": [ + 294, + 284, + 302, + 292 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 281, + 412, + 295 + ], + "score": 1.0, + "content": "as input and outputs a label", + "type": "text" + }, + { + "bbox": [ + 413, + 284, + 419, + 293 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 281, + 439, + 295 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 440, + 282, + 447, + 293 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "has parameter", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 288, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 107, + 293, + 137, + 303 + ], + "score": 0.9, + "content": "\\theta \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 288, + 367, + 310 + ], + "score": 1.0, + "content": ". The training objective is to minimize an empirical risk", + "type": "text" + }, + { + "bbox": [ + 367, + 292, + 451, + 305 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\dot { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( \\dot { f } ( \\pmb { x } _ { i } ) , \\dot { y } _ { i } ) , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 288, + 482, + 310 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 482, + 293, + 505, + 305 + ], + "score": 0.91, + "content": "\\ell ( \\cdot , \\cdot )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 301, + 504, + 322 + ], + "spans": [ + { + "bbox": [ + 104, + 301, + 388, + 322 + ], + "score": 1.0, + "content": "is a loss function. We further assume that there is an auxiliary dataset", + "type": "text" + }, + { + "bbox": [ + 388, + 306, + 477, + 320 + ], + "score": 0.91, + "content": "\\mathbb { D } ^ { ( a ) } = \\{ ( \\tilde { \\pmb { x } } _ { j } , \\tilde { \\pmb { y } } _ { j } ) \\} _ { j = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 301, + 496, + 322 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 496, + 307, + 504, + 316 + ], + "score": 0.78, + "content": "\\tilde { \\pmb x }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 342, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 209, + 329 + ], + "score": 1.0, + "content": "shares similar features as", + "type": "text" + }, + { + "bbox": [ + 209, + 319, + 217, + 327 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 317, + 228, + 329 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 228, + 318, + 237, + 327 + ], + "score": 0.8, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 317, + 262, + 329 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 262, + 318, + 269, + 329 + ], + "score": 0.84, + "content": "\\tilde { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 317, + 342, + 329 + ], + "score": 1.0, + "content": "could be random.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 343, + 329, + 355 + ], + "lines": [ + { + "bbox": [ + 104, + 340, + 330, + 358 + ], + "spans": [ + { + "bbox": [ + 104, + 340, + 330, + 358 + ], + "score": 1.0, + "content": "3 GRADIENT EMBEDDING PERTURBATION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "An overview of GEP is given in Figure 3. GEP has three major ingredients: 1) first, estimate an anchor", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "subspace that contains the principal components of some non-sensitive anchor gradients via power", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "method; 2) then, project private gradients into the anchor subspace and produce low-dimensional", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "embeddings of private gradients and residual gradients; 3) finally, perturb gradient embedding and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "residual gradient separately to establish differential privacy guarantee. In Section 3.1, we present the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "GEP algorithm in detail. In Section 3.2, we given an analysis on the residual gradients. In Section 3.3,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 431, + 496, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 496, + 443 + ], + "score": 1.0, + "content": "we give a differentially private learning algorithm that updates the model with the output of GEP.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 107, + 454, + 349, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 350, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 350, + 466 + ], + "score": 1.0, + "content": "3.1 THE GEP ALGORITHM AND ITS PRIVACY ANALYSIS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 471, + 503, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "The pseudocode of GEP is presented in Algorithm 1. For convenience, we write a set of gradients", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 483, + 442, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 442, + 496 + ], + "score": 1.0, + "content": "and a set of basis vectors as matrices with each row being one gradient/basis vector.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "The anchor subspace is constructed as follows. We first compute the gradients of the model on an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 503, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 176, + 524 + ], + "score": 1.0, + "content": "auxiliary dataset", + "type": "text" + }, + { + "bbox": [ + 176, + 511, + 195, + 522 + ], + "score": 0.91, + "content": "\\mathbb { D } ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 510, + 217, + 524 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 217, + 513, + 228, + 522 + ], + "score": 0.69, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 510, + 444, + 524 + ], + "score": 1.0, + "content": "samples, which is referred to as the anchor gradients", + "type": "text" + }, + { + "bbox": [ + 445, + 511, + 503, + 522 + ], + "score": 0.92, + "content": "G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 523, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 389, + 537 + ], + "score": 1.0, + "content": "We then use the power method to estimate the principal components of", + "type": "text" + }, + { + "bbox": [ + 389, + 523, + 410, + 534 + ], + "score": 0.91, + "content": "G ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 523, + 505, + 537 + ], + "score": 1.0, + "content": "to construct a subspace", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 130, + 549 + ], + "score": 1.0, + "content": "basis", + "type": "text" + }, + { + "bbox": [ + 130, + 534, + 176, + 545 + ], + "score": 0.92, + "content": "\\boldsymbol { B } \\in \\mathbb { R } ^ { k \\times \\hat { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 533, + 506, + 549 + ], + "score": 1.0, + "content": ", which is referred to as the anchor subspace. All these matrices are publishable", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 141, + 561 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 142, + 546, + 161, + 557 + ], + "score": 0.9, + "content": "\\mathbb { D } ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 545, + 385, + 561 + ], + "score": 1.0, + "content": "is non-sensitive. We expect that the anchor subspace", + "type": "text" + }, + { + "bbox": [ + 385, + 547, + 396, + 557 + ], + "score": 0.73, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 545, + 506, + 561 + ], + "score": 1.0, + "content": "can cover most energy of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 557, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 401, + 572 + ], + "score": 1.0, + "content": "private gradients when the auxiliary data are not far from private data and", + "type": "text" + }, + { + "bbox": [ + 401, + 559, + 421, + 569 + ], + "score": 0.9, + "content": "m , k", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 557, + 507, + 572 + ], + "score": 1.0, + "content": "are reasonably large.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 262, + 588 + ], + "score": 1.0, + "content": "Suppose that the private gradients are", + "type": "text" + }, + { + "bbox": [ + 263, + 574, + 309, + 585 + ], + "score": 0.92, + "content": "G \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 574, + 505, + 588 + ], + "score": 1.0, + "content": ". Then, we project the private gradients into the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 173, + 597 + ], + "score": 1.0, + "content": "anchor subspace", + "type": "text" + }, + { + "bbox": [ + 173, + 586, + 183, + 596 + ], + "score": 0.74, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 586, + 402, + 597 + ], + "score": 1.0, + "content": ". The projection produces low-dimensional embeddings", + "type": "text" + }, + { + "bbox": [ + 403, + 585, + 453, + 596 + ], + "score": 0.92, + "content": "\\mathbf { \\check { \\boldsymbol { W } } } = \\check { G } \\mathbf { \\boldsymbol { B } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "and residual", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 147, + 610 + ], + "score": 1.0, + "content": "gradients", + "type": "text" + }, + { + "bbox": [ + 147, + 596, + 227, + 608 + ], + "score": 0.91, + "content": "\\bar { \\pmb { R } } = \\pmb { G } - \\pmb { G } \\bar { \\pmb { B } } ^ { T } \\bar { \\pmb { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 596, + 505, + 610 + ], + "score": 1.0, + "content": ". The magnitude of residual gradients is usually much smaller than", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 607, + 407, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 220, + 621 + ], + "score": 1.0, + "content": "original gradient even when", + "type": "text" + }, + { + "bbox": [ + 220, + 608, + 227, + 618 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 607, + 407, + 621 + ], + "score": 1.0, + "content": "is small because of the gradient redundancy.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 624, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "Then, we aggregate the gradient embeddings and the residual gradients, respectively. We perturb", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "the aggregated embedding and the aggregated residual gradient respectively to guarantee certain", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "differential privacy. Finally, we release the perturbed embedding and the perturbed residual gradient", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 345, + 670 + ], + "score": 1.0, + "content": "and construct an unbiased estimator of the private gradient:", + "type": "text" + }, + { + "bbox": [ + 345, + 657, + 429, + 670 + ], + "score": 0.92, + "content": "\\widetilde { \\pmb { v } } : = ( \\widetilde { \\pmb { w } } ^ { T } \\pmb { B } ^ { \\top } + \\widetilde { \\pmb { r } } ) / n", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 657, + 505, + 670 + ], + "score": 1.0, + "content": ". This construction", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "process does not resulting in additional privacy loss because of DP’s post-processing property. The", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 680, + 390, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 390, + 692 + ], + "score": 1.0, + "content": "privacy analysis of the whole process of GEP is given in Theorem 3.1.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 107, + 695, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 504, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 183, + 708 + ], + "score": 1.0, + "content": "Theorem 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 183, + 695, + 195, + 706 + ], + "score": 0.87, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 694, + 213, + 708 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 695, + 226, + 706 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 694, + 308, + 708 + ], + "score": 1.0, + "content": "be the sensitivity of", + "type": "text" + }, + { + "bbox": [ + 308, + 697, + 317, + 705 + ], + "score": 0.33, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 694, + 337, + 708 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 337, + 697, + 343, + 705 + ], + "score": 0.59, + "content": "\\pmb { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 694, + 498, + 708 + ], + "score": 1.0, + "content": ", respectively, the output of Algorithm", + "type": "text" + }, + { + "bbox": [ + 498, + 695, + 504, + 705 + ], + "score": 0.33, + "content": "^ { l }", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 706, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 706, + 141, + 721 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 141, + 707, + 163, + 719 + ], + "score": 0.89, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 706, + 212, + 721 + ], + "score": 1.0, + "content": "-DP for any", + "type": "text" + }, + { + "bbox": [ + 212, + 707, + 252, + 719 + ], + "score": 0.93, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 706, + 271, + 721 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 707, + 332, + 719 + ], + "score": 0.84, + "content": "\\epsilon \\leq 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 706, + 385, + 721 + ], + "score": 1.0, + "content": "if we choose", + "type": "text" + }, + { + "bbox": [ + 385, + 706, + 486, + 720 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 706, + 505, + 721 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 719, + 212, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 208, + 733 + ], + "score": 0.92, + "content": "\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 719, + 212, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 108, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 108, + 506, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 162, + 122 + ], + "score": 1.0, + "content": "Definition 1", + "type": "text" + }, + { + "bbox": [ + 163, + 109, + 185, + 121 + ], + "score": 0.88, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 108, + 417, + 122 + ], + "score": 1.0, + "content": "-DP (Dwork et al., 2006a;b)). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 417, + 109, + 431, + 119 + ], + "score": 0.67, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 108, + 480, + 122 + ], + "score": 1.0, + "content": "guarantees", + "type": "text" + }, + { + "bbox": [ + 480, + 109, + 502, + 121 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 108, + 506, + 122 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 504, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 346, + 135 + ], + "score": 1.0, + "content": "differential privacy if for any two neighboring input datasets", + "type": "text" + }, + { + "bbox": [ + 346, + 120, + 377, + 132 + ], + "score": 0.9, + "content": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 121, + 496, + 135 + ], + "score": 1.0, + "content": "and for any subset of outputs", + "type": "text" + }, + { + "bbox": [ + 496, + 122, + 504, + 132 + ], + "score": 0.78, + "content": "S", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 133, + 326, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 156, + 147 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + }, + { + "bbox": [ + 157, + 133, + 322, + 146 + ], + "score": 0.91, + "content": "P r [ \\mathcal { M } ( \\mathbb { D } ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( \\mathbb { D } ^ { ' } ) \\in S ] + \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 133, + 326, + 147 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 108, + 506, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 155, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 155, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 176, + 168 + ], + "score": 1.0, + "content": "By its definition,", + "type": "text" + }, + { + "bbox": [ + 176, + 155, + 198, + 167 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 155, + 506, + 168 + ], + "score": 1.0, + "content": "-DP controls the maximum influence that any individual sample can produce.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 181 + ], + "score": 1.0, + "content": "One can adjust the privacy parameters to trade off between privacy and utility. Differential privacy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 506, + 190 + ], + "score": 1.0, + "content": "is immune to post-processing (Dwork et al., 2014), i.e., any function applied on the output of a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 505, + 201 + ], + "score": 1.0, + "content": "differentially private algorithm would not increase the privacy loss as long as it does not have", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 199, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 506, + 212 + ], + "score": 1.0, + "content": "new interaction with the private dataset. Differential privacy also allows composition, i.e., the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 223 + ], + "score": 1.0, + "content": "composition of a series of differentially private mechanisms is also differentially private but with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 268, + 235 + ], + "score": 1.0, + "content": "different parameters. Several variants of", + "type": "text" + }, + { + "bbox": [ + 268, + 221, + 290, + 233 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 219, + 506, + 235 + ], + "score": 1.0, + "content": "-DP have been proposed (Bun & Steinke, 2016; Dong", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 230, + 507, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 280, + 246 + ], + "score": 1.0, + "content": "et al., 2019) to address certain weakness of", + "type": "text" + }, + { + "bbox": [ + 281, + 232, + 302, + 244 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 230, + 507, + 246 + ], + "score": 1.0, + "content": "-DP, e.g., they achieve better composition property.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 506, + 256 + ], + "score": 1.0, + "content": "In this work, we use Rényi differential privacy (Mironov, 2017) to track the privacy loss and then", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 198, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 157, + 267 + ], + "score": 1.0, + "content": "convert it to", + "type": "text" + }, + { + "bbox": [ + 157, + 254, + 178, + 266 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 254, + 198, + 267 + ], + "score": 1.0, + "content": "-DP.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 155, + 507, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 270, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 504, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 255, + 285 + ], + "score": 1.0, + "content": "Suppose that there is a private dataset", + "type": "text" + }, + { + "bbox": [ + 255, + 271, + 330, + 283 + ], + "score": 0.93, + "content": "\\mathbb { D } = \\{ ( \\boldsymbol { x } _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 270, + 351, + 285 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 351, + 273, + 358, + 281 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 270, + 496, + 285 + ], + "score": 1.0, + "content": "samples. We want to train a model", + "type": "text" + }, + { + "bbox": [ + 497, + 271, + 504, + 283 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 281, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 200, + 295 + ], + "score": 1.0, + "content": "to learn the mapping in", + "type": "text" + }, + { + "bbox": [ + 200, + 282, + 208, + 292 + ], + "score": 0.76, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 281, + 263, + 295 + ], + "score": 1.0, + "content": ". Specifically,", + "type": "text" + }, + { + "bbox": [ + 263, + 283, + 271, + 294 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 281, + 294, + 295 + ], + "score": 1.0, + "content": "takes", + "type": "text" + }, + { + "bbox": [ + 294, + 284, + 302, + 292 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 281, + 412, + 295 + ], + "score": 1.0, + "content": "as input and outputs a label", + "type": "text" + }, + { + "bbox": [ + 413, + 284, + 419, + 293 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 281, + 439, + 295 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 440, + 282, + 447, + 293 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 281, + 506, + 295 + ], + "score": 1.0, + "content": "has parameter", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 288, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 107, + 293, + 137, + 303 + ], + "score": 0.9, + "content": "\\theta \\in \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 288, + 367, + 310 + ], + "score": 1.0, + "content": ". The training objective is to minimize an empirical risk", + "type": "text" + }, + { + "bbox": [ + 367, + 292, + 451, + 305 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\dot { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( \\dot { f } ( \\pmb { x } _ { i } ) , \\dot { y } _ { i } ) , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 288, + 482, + 310 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 482, + 293, + 505, + 305 + ], + "score": 0.91, + "content": "\\ell ( \\cdot , \\cdot )", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 301, + 504, + 322 + ], + "spans": [ + { + "bbox": [ + 104, + 301, + 388, + 322 + ], + "score": 1.0, + "content": "is a loss function. We further assume that there is an auxiliary dataset", + "type": "text" + }, + { + "bbox": [ + 388, + 306, + 477, + 320 + ], + "score": 0.91, + "content": "\\mathbb { D } ^ { ( a ) } = \\{ ( \\tilde { \\pmb { x } } _ { j } , \\tilde { \\pmb { y } } _ { j } ) \\} _ { j = 1 } ^ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 301, + 496, + 322 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 496, + 307, + 504, + 316 + ], + "score": 0.78, + "content": "\\tilde { \\pmb x }", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 342, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 209, + 329 + ], + "score": 1.0, + "content": "shares similar features as", + "type": "text" + }, + { + "bbox": [ + 209, + 319, + 217, + 327 + ], + "score": 0.75, + "content": "_ { \\textbf { \\em x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 317, + 228, + 329 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 228, + 318, + 237, + 327 + ], + "score": 0.8, + "content": "\\mathbb { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 317, + 262, + 329 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 262, + 318, + 269, + 329 + ], + "score": 0.84, + "content": "\\tilde { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 317, + 342, + 329 + ], + "score": 1.0, + "content": "could be random.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 270, + 506, + 329 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 343, + 329, + 355 + ], + "lines": [ + { + "bbox": [ + 104, + 340, + 330, + 358 + ], + "spans": [ + { + "bbox": [ + 104, + 340, + 330, + 358 + ], + "score": 1.0, + "content": "3 GRADIENT EMBEDDING PERTURBATION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 365, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 506, + 378 + ], + "score": 1.0, + "content": "An overview of GEP is given in Figure 3. GEP has three major ingredients: 1) first, estimate an anchor", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "subspace that contains the principal components of some non-sensitive anchor gradients via power", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 505, + 400 + ], + "score": 1.0, + "content": "method; 2) then, project private gradients into the anchor subspace and produce low-dimensional", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 411 + ], + "score": 1.0, + "content": "embeddings of private gradients and residual gradients; 3) finally, perturb gradient embedding and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 505, + 421 + ], + "score": 1.0, + "content": "residual gradient separately to establish differential privacy guarantee. In Section 3.1, we present the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "GEP algorithm in detail. In Section 3.2, we given an analysis on the residual gradients. In Section 3.3,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 431, + 496, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 496, + 443 + ], + "score": 1.0, + "content": "we give a differentially private learning algorithm that updates the model with the output of GEP.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 365, + 506, + 443 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 454, + 349, + 465 + ], + "lines": [ + { + "bbox": [ + 105, + 453, + 350, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 350, + 466 + ], + "score": 1.0, + "content": "3.1 THE GEP ALGORITHM AND ITS PRIVACY ANALYSIS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 471, + 503, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 484 + ], + "score": 1.0, + "content": "The pseudocode of GEP is presented in Algorithm 1. For convenience, we write a set of gradients", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 483, + 442, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 442, + 496 + ], + "score": 1.0, + "content": "and a set of basis vectors as matrices with each row being one gradient/basis vector.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 471, + 505, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 513 + ], + "score": 1.0, + "content": "The anchor subspace is constructed as follows. We first compute the gradients of the model on an", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 510, + 503, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 176, + 524 + ], + "score": 1.0, + "content": "auxiliary dataset", + "type": "text" + }, + { + "bbox": [ + 176, + 511, + 195, + 522 + ], + "score": 0.91, + "content": "\\mathbb { D } ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 510, + 217, + 524 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 217, + 513, + 228, + 522 + ], + "score": 0.69, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 510, + 444, + 524 + ], + "score": 1.0, + "content": "samples, which is referred to as the anchor gradients", + "type": "text" + }, + { + "bbox": [ + 445, + 511, + 503, + 522 + ], + "score": 0.92, + "content": "G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 523, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 389, + 537 + ], + "score": 1.0, + "content": "We then use the power method to estimate the principal components of", + "type": "text" + }, + { + "bbox": [ + 389, + 523, + 410, + 534 + ], + "score": 0.91, + "content": "G ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 523, + 505, + 537 + ], + "score": 1.0, + "content": "to construct a subspace", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 533, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 130, + 549 + ], + "score": 1.0, + "content": "basis", + "type": "text" + }, + { + "bbox": [ + 130, + 534, + 176, + 545 + ], + "score": 0.92, + "content": "\\boldsymbol { B } \\in \\mathbb { R } ^ { k \\times \\hat { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 533, + 506, + 549 + ], + "score": 1.0, + "content": ", which is referred to as the anchor subspace. All these matrices are publishable", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 545, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 141, + 561 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 142, + 546, + 161, + 557 + ], + "score": 0.9, + "content": "\\mathbb { D } ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 545, + 385, + 561 + ], + "score": 1.0, + "content": "is non-sensitive. We expect that the anchor subspace", + "type": "text" + }, + { + "bbox": [ + 385, + 547, + 396, + 557 + ], + "score": 0.73, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 545, + 506, + 561 + ], + "score": 1.0, + "content": "can cover most energy of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 557, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 401, + 572 + ], + "score": 1.0, + "content": "private gradients when the auxiliary data are not far from private data and", + "type": "text" + }, + { + "bbox": [ + 401, + 559, + 421, + 569 + ], + "score": 0.9, + "content": "m , k", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 557, + 507, + 572 + ], + "score": 1.0, + "content": "are reasonably large.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 499, + 507, + 572 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 574, + 505, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 262, + 588 + ], + "score": 1.0, + "content": "Suppose that the private gradients are", + "type": "text" + }, + { + "bbox": [ + 263, + 574, + 309, + 585 + ], + "score": 0.92, + "content": "G \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 574, + 505, + 588 + ], + "score": 1.0, + "content": ". Then, we project the private gradients into the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 173, + 597 + ], + "score": 1.0, + "content": "anchor subspace", + "type": "text" + }, + { + "bbox": [ + 173, + 586, + 183, + 596 + ], + "score": 0.74, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 586, + 402, + 597 + ], + "score": 1.0, + "content": ". The projection produces low-dimensional embeddings", + "type": "text" + }, + { + "bbox": [ + 403, + 585, + 453, + 596 + ], + "score": 0.92, + "content": "\\mathbf { \\check { \\boldsymbol { W } } } = \\check { G } \\mathbf { \\boldsymbol { B } } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "and residual", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 147, + 610 + ], + "score": 1.0, + "content": "gradients", + "type": "text" + }, + { + "bbox": [ + 147, + 596, + 227, + 608 + ], + "score": 0.91, + "content": "\\bar { \\pmb { R } } = \\pmb { G } - \\pmb { G } \\bar { \\pmb { B } } ^ { T } \\bar { \\pmb { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 596, + 505, + 610 + ], + "score": 1.0, + "content": ". The magnitude of residual gradients is usually much smaller than", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 607, + 407, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 220, + 621 + ], + "score": 1.0, + "content": "original gradient even when", + "type": "text" + }, + { + "bbox": [ + 220, + 608, + 227, + 618 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 607, + 407, + 621 + ], + "score": 1.0, + "content": "is small because of the gradient redundancy.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 574, + 505, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 624, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "Then, we aggregate the gradient embeddings and the residual gradients, respectively. We perturb", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "the aggregated embedding and the aggregated residual gradient respectively to guarantee certain", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 505, + 659 + ], + "score": 1.0, + "content": "differential privacy. Finally, we release the perturbed embedding and the perturbed residual gradient", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 345, + 670 + ], + "score": 1.0, + "content": "and construct an unbiased estimator of the private gradient:", + "type": "text" + }, + { + "bbox": [ + 345, + 657, + 429, + 670 + ], + "score": 0.92, + "content": "\\widetilde { \\pmb { v } } : = ( \\widetilde { \\pmb { w } } ^ { T } \\pmb { B } ^ { \\top } + \\widetilde { \\pmb { r } } ) / n", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 657, + 505, + 670 + ], + "score": 1.0, + "content": ". This construction", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "process does not resulting in additional privacy loss because of DP’s post-processing property. The", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 680, + 390, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 390, + 692 + ], + "score": 1.0, + "content": "privacy analysis of the whole process of GEP is given in Theorem 3.1.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 624, + 505, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 695, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 694, + 504, + 708 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 183, + 708 + ], + "score": 1.0, + "content": "Theorem 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 183, + 695, + 195, + 706 + ], + "score": 0.87, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 694, + 213, + 708 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 695, + 226, + 706 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 694, + 308, + 708 + ], + "score": 1.0, + "content": "be the sensitivity of", + "type": "text" + }, + { + "bbox": [ + 308, + 697, + 317, + 705 + ], + "score": 0.33, + "content": "\\pmb { w }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 694, + 337, + 708 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 337, + 697, + 343, + 705 + ], + "score": 0.59, + "content": "\\pmb { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 694, + 498, + 708 + ], + "score": 1.0, + "content": ", respectively, the output of Algorithm", + "type": "text" + }, + { + "bbox": [ + 498, + 695, + 504, + 705 + ], + "score": 0.33, + "content": "^ { l }", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 706, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 706, + 141, + 721 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 141, + 707, + 163, + 719 + ], + "score": 0.89, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 706, + 212, + 721 + ], + "score": 1.0, + "content": "-DP for any", + "type": "text" + }, + { + "bbox": [ + 212, + 707, + 252, + 719 + ], + "score": 0.93, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 706, + 271, + 721 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 707, + 332, + 719 + ], + "score": 0.84, + "content": "\\epsilon \\leq 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 706, + 385, + 721 + ], + "score": 1.0, + "content": "if we choose", + "type": "text" + }, + { + "bbox": [ + 385, + 706, + 486, + 720 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 706, + 505, + 721 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 719, + 212, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 208, + 733 + ], + "score": 0.92, + "content": "\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 719, + 212, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 694, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 99, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 110, + 99, + 502, + 113 + ], + "spans": [ + { + "bbox": [ + 110, + 99, + 221, + 113 + ], + "score": 1.0, + "content": "1: Input: anchor gradients", + "type": "text" + }, + { + "bbox": [ + 221, + 99, + 279, + 111 + ], + "score": 0.91, + "content": "G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 99, + 378, + 113 + ], + "score": 1.0, + "content": "; number of basis vectors", + "type": "text" + }, + { + "bbox": [ + 379, + 101, + 385, + 111 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 99, + 456, + 113 + ], + "score": 1.0, + "content": "; private gradients", + "type": "text" + }, + { + "bbox": [ + 457, + 100, + 502, + 111 + ], + "score": 0.86, + "content": "G \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 123, + 111, + 462, + 125 + ], + "spans": [ + { + "bbox": [ + 123, + 111, + 202, + 125 + ], + "score": 1.0, + "content": "clipping thresholds", + "type": "text" + }, + { + "bbox": [ + 202, + 112, + 228, + 123 + ], + "score": 0.89, + "content": "S _ { 1 } , S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 111, + 312, + 125 + ], + "score": 1.0, + "content": "; standard deviations", + "type": "text" + }, + { + "bbox": [ + 312, + 114, + 338, + 124 + ], + "score": 0.9, + "content": "\\sigma _ { 1 } , \\sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 111, + 452, + 125 + ], + "score": 1.0, + "content": "; number of power iterations", + "type": "text" + }, + { + "bbox": [ + 453, + 113, + 457, + 122 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 111, + 462, + 125 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 110, + 128, + 401, + 142 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 401, + 142 + ], + "score": 1.0, + "content": "2: //First stage: Compute an orthonormal basis for the anchor subspace.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 109, + 137, + 251, + 153 + ], + "spans": [ + { + "bbox": [ + 109, + 137, + 162, + 153 + ], + "score": 1.0, + "content": "3: Initialize", + "type": "text" + }, + { + "bbox": [ + 162, + 139, + 206, + 150 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { \\boldsymbol { B } } } \\in \\mathbb { R } ^ { k \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 137, + 251, + 153 + ], + "score": 1.0, + "content": "randomly.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 110, + 151, + 192, + 163 + ], + "spans": [ + { + "bbox": [ + 110, + 151, + 138, + 163 + ], + "score": 1.0, + "content": "4: for", + "type": "text" + }, + { + "bbox": [ + 138, + 151, + 162, + 161 + ], + "score": 0.89, + "content": "i = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 151, + 173, + 163 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 152, + 178, + 161 + ], + "score": 0.65, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 151, + 192, + 163 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 160, + 311, + 173 + ], + "spans": [ + { + "bbox": [ + 110, + 162, + 122, + 173 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 160, + 172, + 173 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 173, + 161, + 231, + 172 + ], + "score": 0.92, + "content": "\\pmb { A } = \\pmb { G } ^ { ( a ) } \\pmb { B } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 160, + 249, + 173 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 249, + 160, + 307, + 172 + ], + "score": 0.92, + "content": "B = A ^ { T } G ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 160, + 311, + 173 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 173, + 315, + 185 + ], + "spans": [ + { + "bbox": [ + 110, + 173, + 122, + 184 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 132, + 173, + 193, + 185 + ], + "score": 1.0, + "content": "Orthogonalize", + "type": "text" + }, + { + "bbox": [ + 193, + 173, + 203, + 183 + ], + "score": 0.75, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 173, + 315, + 185 + ], + "score": 1.0, + "content": "and normalize row vectors.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 109, + 183, + 156, + 196 + ], + "spans": [ + { + "bbox": [ + 109, + 183, + 156, + 196 + ], + "score": 1.0, + "content": "7: end for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 108, + 192, + 241, + 208 + ], + "spans": [ + { + "bbox": [ + 108, + 192, + 152, + 208 + ], + "score": 1.0, + "content": "8: Delete", + "type": "text" + }, + { + "bbox": [ + 152, + 193, + 173, + 205 + ], + "score": 0.9, + "content": "G ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 192, + 241, + 208 + ], + "score": 1.0, + "content": "to free memory.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 109, + 210, + 408, + 225 + ], + "spans": [ + { + "bbox": [ + 109, + 210, + 300, + 225 + ], + "score": 1.0, + "content": "9: //Second stage: project the private gradients", + "type": "text" + }, + { + "bbox": [ + 301, + 212, + 311, + 222 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 210, + 398, + 225 + ], + "score": 1.0, + "content": "into anchor subspace", + "type": "text" + }, + { + "bbox": [ + 398, + 212, + 408, + 222 + ], + "score": 0.76, + "content": "\\textbf { { B } }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 108, + 223, + 457, + 236 + ], + "spans": [ + { + "bbox": [ + 108, + 224, + 248, + 236 + ], + "score": 1.0, + "content": "10: Compute gradient embeddings", + "type": "text" + }, + { + "bbox": [ + 249, + 223, + 299, + 235 + ], + "score": 0.92, + "content": "\\pmb { W } = \\pmb { G } \\pmb { B } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 224, + 388, + 236 + ], + "score": 1.0, + "content": "and clip its rows with", + "type": "text" + }, + { + "bbox": [ + 389, + 225, + 401, + 235 + ], + "score": 0.88, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 224, + 439, + 236 + ], + "score": 1.0, + "content": "to obtain", + "type": "text" + }, + { + "bbox": [ + 440, + 223, + 453, + 234 + ], + "score": 0.86, + "content": "\\hat { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 224, + 457, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 108, + 236, + 456, + 249 + ], + "spans": [ + { + "bbox": [ + 108, + 236, + 235, + 249 + ], + "score": 1.0, + "content": "11: Compute residual gradients", + "type": "text" + }, + { + "bbox": [ + 236, + 237, + 302, + 248 + ], + "score": 0.88, + "content": "R = G - W B", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 236, + 390, + 249 + ], + "score": 1.0, + "content": "and clip its rows with", + "type": "text" + }, + { + "bbox": [ + 390, + 237, + 402, + 248 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 236, + 442, + 249 + ], + "score": 1.0, + "content": "to obtain", + "type": "text" + }, + { + "bbox": [ + 442, + 236, + 451, + 247 + ], + "score": 0.83, + "content": "\\hat { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 236, + 456, + 249 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 108, + 253, + 423, + 267 + ], + "spans": [ + { + "bbox": [ + 108, + 253, + 423, + 267 + ], + "score": 1.0, + "content": "12: //Third stage: perturb gradient embedding and residual gradient separately", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 108, + 265, + 479, + 280 + ], + "spans": [ + { + "bbox": [ + 108, + 265, + 245, + 280 + ], + "score": 1.0, + "content": "13: Perturb embedding with noise", + "type": "text" + }, + { + "bbox": [ + 246, + 265, + 335, + 279 + ], + "score": 0.92, + "content": "\\boldsymbol { z } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } \\boldsymbol { I } _ { k \\times k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 265, + 341, + 280 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 342, + 265, + 479, + 278 + ], + "score": 0.27, + "content": "\\begin{array} { r } { \\pmb { w } : = \\sum _ { i } \\hat { W } _ { i , : } , \\tilde { \\pmb { w } } : = \\pmb { w } + \\pmb { z } ^ { ( 1 ) } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 279, + 487, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 268, + 292 + ], + "score": 1.0, + "content": "14: Perturb residual gradient with noise", + "type": "text" + }, + { + "bbox": [ + 268, + 279, + 357, + 292 + ], + "score": 0.87, + "content": "\\boldsymbol { z } ^ { ( 2 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 279, + 363, + 292 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 364, + 279, + 487, + 293 + ], + "score": 0.38, + "content": "\\begin{array} { r } { \\pmb { r } : = \\sum _ { i } \\hat { \\pmb { R } } _ { i , : } , \\ \\tilde { \\pmb { r } } : = \\pmb { r } + \\boldsymbol { z } ^ { ( 2 ) } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 291, + 240, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 153, + 304 + ], + "score": 1.0, + "content": "15: Return", + "type": "text" + }, + { + "bbox": [ + 153, + 291, + 237, + 304 + ], + "score": 0.92, + "content": "\\tilde { v } : = ( \\tilde { w } ^ { T } B + \\tilde { r } ) / n", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 291, + 240, + 304 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "A common practice to control sensitivity is to clip the output with a pre-defined threshold. In our", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 275, + 363 + ], + "score": 1.0, + "content": "experiments, we use different thresholds", + "type": "text" + }, + { + "bbox": [ + 275, + 350, + 287, + 361 + ], + "score": 0.89, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 349, + 306, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 350, + 318, + 361 + ], + "score": 0.91, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "to clip the gradient embeddings and residual", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "gradients, respectively. The privacy loss of GEP consists of two parts: the privacy loss incurred by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "releasing the perturbed embedding and the privacy loss incurred by releasing the perturbed residual", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 383, + 502, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 461, + 396 + ], + "score": 1.0, + "content": "gradient. We compose these two parts via the Rényi differential privacy and convert it to", + "type": "text" + }, + { + "bbox": [ + 461, + 383, + 483, + 395 + ], + "score": 0.9, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 383, + 502, + 396 + ], + "score": 1.0, + "content": "-DP.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 400, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "score": 1.0, + "content": "We highlight several implementation techniques that make GEP widely applicable and implementable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "with reasonable computational cost. Firstly, auxiliary non-sensitive data do not have to be the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "source as the private data and the auxiliary data can be randomly labeled. This non-sensitive data", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "assumption is very weak and easy to satisfy in practical scenarios. To understand why random label", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "works, a quick example is that for the least squares regression problem the individual gradient is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 454, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 507, + 468 + ], + "score": 1.0, + "content": "aligned with the feature vector while the label only scales the length but does not change the direction.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "This auxiliary data assumption avoids conducting principal component analysis (PCA) on private", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "gradients, which requires releasing private high-dimensional basis vectors and hence introduces large", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "privacy loss. Secondly, we use power method (Panju, 2011; Vogels et al., 2019) to approximately", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "estimate the principal components. The new operation we introduce is standard matrix multiplication", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "that enjoys efficient implementation on GPU. The computational complexity of each power iteration", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 115, + 533 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 520, + 141, + 532 + ], + "score": 0.63, + "content": "2 m k p", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 519, + 171, + 533 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 171, + 522, + 178, + 532 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 519, + 323, + 533 + ], + "score": 1.0, + "content": "is the number of model parameters,", + "type": "text" + }, + { + "bbox": [ + 324, + 522, + 333, + 531 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 519, + 487, + 533 + ], + "score": 1.0, + "content": "is the number of anchor gradients and", + "type": "text" + }, + { + "bbox": [ + 488, + 520, + 495, + 530 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 519, + 506, + 533 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "score": 1.0, + "content": "the number of subspace basis vectors. Thirdly, we divide the parameters into different groups and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "compute one orthonormal basis for each group. This further reduces the computational cost. For", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 397, + 566 + ], + "score": 1.0, + "content": "example, suppose the parameters are divided into two groups with size", + "type": "text" + }, + { + "bbox": [ + 398, + 555, + 423, + 565 + ], + "score": 0.89, + "content": "p _ { 1 } , p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "and the numbers of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 174, + 577 + ], + "score": 1.0, + "content": "basis vectors are", + "type": "text" + }, + { + "bbox": [ + 175, + 564, + 199, + 575 + ], + "score": 0.91, + "content": "k _ { 1 } , k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 564, + 429, + 577 + ], + "score": 1.0, + "content": ", the computational complexity of each power iteration is", + "type": "text" + }, + { + "bbox": [ + 430, + 564, + 502, + 576 + ], + "score": 0.91, + "content": "2 m ( k _ { 1 } p _ { 1 } + k _ { 2 } p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 574, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 191, + 589 + ], + "score": 1.0, + "content": "which is smaller than", + "type": "text" + }, + { + "bbox": [ + 191, + 575, + 279, + 587 + ], + "score": 0.92, + "content": "2 m ( k _ { 1 } + k _ { 2 } ) ( p _ { 1 } + p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 574, + 506, + 589 + ], + "score": 1.0, + "content": ". In Appendix B, we analyze the additional computational", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 586, + 391, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 391, + 599 + ], + "score": 1.0, + "content": "and memory costs of GEP compared to standard gradient perturbation.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "Curious readers may wonder if we can use random projection to reduce the dimensionality as", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees that one can preserve the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "pairwise distance between any two points after projecting into a random subspace of much lower", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "dimension. However, preserving the pairwise distance is not sufficient for high quality gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 416, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 416, + 660 + ], + "score": 1.0, + "content": "reconstruction, which is verified by the empirical observation in Appendix C.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41 + }, + { + "type": "title", + "bbox": [ + 109, + 677, + 358, + 687 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 360, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 360, + 689 + ], + "score": 1.0, + "content": "3.2 AN ANALYSIS ON THE RESIDUAL GRADIENTS OF GEP", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 123, + 711 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 695, + 186, + 710 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { g } : = \\frac { 1 } { n } \\sum _ { i } \\pmb { G } _ { i } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 696, + 439, + 711 + ], + "score": 1.0, + "content": ": be the target private gradient. For a given anchor subspace", + "type": "text" + }, + { + "bbox": [ + 440, + 697, + 450, + 707 + ], + "score": 0.76, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 696, + 506, + 711 + ], + "score": 1.0, + "content": ", the residual", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 201, + 722 + ], + "score": 1.0, + "content": "gradients are defined as", + "type": "text" + }, + { + "bbox": [ + 201, + 709, + 282, + 720 + ], + "score": 0.91, + "content": "\\pmb { R } : = \\pmb { G } - \\pmb { G } \\pmb { B } ^ { T } \\pmb { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ". We then analyze how large the residual gradients could", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "be. The following argument holds for all time steps and we ignore the time step index for simplicity.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "index", + "bbox": [ + 109, + 99, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 110, + 99, + 502, + 113 + ], + "spans": [ + { + "bbox": [ + 110, + 99, + 221, + 113 + ], + "score": 1.0, + "content": "1: Input: anchor gradients", + "type": "text" + }, + { + "bbox": [ + 221, + 99, + 279, + 111 + ], + "score": 0.91, + "content": "G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 99, + 378, + 113 + ], + "score": 1.0, + "content": "; number of basis vectors", + "type": "text" + }, + { + "bbox": [ + 379, + 101, + 385, + 111 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 99, + 456, + 113 + ], + "score": 1.0, + "content": "; private gradients", + "type": "text" + }, + { + "bbox": [ + 457, + 100, + 502, + 111 + ], + "score": 0.86, + "content": "G \\in \\mathbb { R } ^ { n \\times p }", + "type": "inline_equation" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 111, + 462, + 125 + ], + "spans": [ + { + "bbox": [ + 123, + 111, + 202, + 125 + ], + "score": 1.0, + "content": "clipping thresholds", + "type": "text" + }, + { + "bbox": [ + 202, + 112, + 228, + 123 + ], + "score": 0.89, + "content": "S _ { 1 } , S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 111, + 312, + 125 + ], + "score": 1.0, + "content": "; standard deviations", + "type": "text" + }, + { + "bbox": [ + 312, + 114, + 338, + 124 + ], + "score": 0.9, + "content": "\\sigma _ { 1 } , \\sigma _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 111, + 452, + 125 + ], + "score": 1.0, + "content": "; number of power iterations", + "type": "text" + }, + { + "bbox": [ + 453, + 113, + 457, + 122 + ], + "score": 0.7, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 111, + 462, + 125 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 128, + 401, + 142 + ], + "spans": [ + { + "bbox": [ + 110, + 128, + 401, + 142 + ], + "score": 1.0, + "content": "2: //First stage: Compute an orthonormal basis for the anchor subspace.", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 137, + 251, + 153 + ], + "spans": [ + { + "bbox": [ + 109, + 137, + 162, + 153 + ], + "score": 1.0, + "content": "3: Initialize", + "type": "text" + }, + { + "bbox": [ + 162, + 139, + 206, + 150 + ], + "score": 0.92, + "content": "\\mathbf { \\bar { \\boldsymbol { B } } } \\in \\mathbb { R } ^ { k \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 137, + 251, + 153 + ], + "score": 1.0, + "content": "randomly.", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 151, + 192, + 163 + ], + "spans": [ + { + "bbox": [ + 110, + 151, + 138, + 163 + ], + "score": 1.0, + "content": "4: for", + "type": "text" + }, + { + "bbox": [ + 138, + 151, + 162, + 161 + ], + "score": 0.89, + "content": "i = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 151, + 173, + 163 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 173, + 152, + 178, + 161 + ], + "score": 0.65, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 151, + 192, + 163 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 160, + 311, + 173 + ], + "spans": [ + { + "bbox": [ + 110, + 162, + 122, + 173 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 131, + 160, + 172, + 173 + ], + "score": 1.0, + "content": "Compute", + "type": "text" + }, + { + "bbox": [ + 173, + 161, + 231, + 172 + ], + "score": 0.92, + "content": "\\pmb { A } = \\pmb { G } ^ { ( a ) } \\pmb { B } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 160, + 249, + 173 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 249, + 160, + 307, + 172 + ], + "score": 0.92, + "content": "B = A ^ { T } G ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 160, + 311, + 173 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 173, + 315, + 185 + ], + "spans": [ + { + "bbox": [ + 110, + 173, + 122, + 184 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 132, + 173, + 193, + 185 + ], + "score": 1.0, + "content": "Orthogonalize", + "type": "text" + }, + { + "bbox": [ + 193, + 173, + 203, + 183 + ], + "score": 0.75, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 173, + 315, + 185 + ], + "score": 1.0, + "content": "and normalize row vectors.", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 183, + 156, + 196 + ], + "spans": [ + { + "bbox": [ + 109, + 183, + 156, + 196 + ], + "score": 1.0, + "content": "7: end for", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 192, + 241, + 208 + ], + "spans": [ + { + "bbox": [ + 108, + 192, + 152, + 208 + ], + "score": 1.0, + "content": "8: Delete", + "type": "text" + }, + { + "bbox": [ + 152, + 193, + 173, + 205 + ], + "score": 0.9, + "content": "G ^ { ( a ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 192, + 241, + 208 + ], + "score": 1.0, + "content": "to free memory.", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 210, + 408, + 225 + ], + "spans": [ + { + "bbox": [ + 109, + 210, + 300, + 225 + ], + "score": 1.0, + "content": "9: //Second stage: project the private gradients", + "type": "text" + }, + { + "bbox": [ + 301, + 212, + 311, + 222 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 210, + 398, + 225 + ], + "score": 1.0, + "content": "into anchor subspace", + "type": "text" + }, + { + "bbox": [ + 398, + 212, + 408, + 222 + ], + "score": 0.76, + "content": "\\textbf { { B } }", + "type": "inline_equation" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 223, + 457, + 236 + ], + "spans": [ + { + "bbox": [ + 108, + 224, + 248, + 236 + ], + "score": 1.0, + "content": "10: Compute gradient embeddings", + "type": "text" + }, + { + "bbox": [ + 249, + 223, + 299, + 235 + ], + "score": 0.92, + "content": "\\pmb { W } = \\pmb { G } \\pmb { B } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 224, + 388, + 236 + ], + "score": 1.0, + "content": "and clip its rows with", + "type": "text" + }, + { + "bbox": [ + 389, + 225, + 401, + 235 + ], + "score": 0.88, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 224, + 439, + 236 + ], + "score": 1.0, + "content": "to obtain", + "type": "text" + }, + { + "bbox": [ + 440, + 223, + 453, + 234 + ], + "score": 0.86, + "content": "\\hat { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 224, + 457, + 236 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 236, + 456, + 249 + ], + "spans": [ + { + "bbox": [ + 108, + 236, + 235, + 249 + ], + "score": 1.0, + "content": "11: Compute residual gradients", + "type": "text" + }, + { + "bbox": [ + 236, + 237, + 302, + 248 + ], + "score": 0.88, + "content": "R = G - W B", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 236, + 390, + 249 + ], + "score": 1.0, + "content": "and clip its rows with", + "type": "text" + }, + { + "bbox": [ + 390, + 237, + 402, + 248 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 236, + 442, + 249 + ], + "score": 1.0, + "content": "to obtain", + "type": "text" + }, + { + "bbox": [ + 442, + 236, + 451, + 247 + ], + "score": 0.83, + "content": "\\hat { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 236, + 456, + 249 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 253, + 423, + 267 + ], + "spans": [ + { + "bbox": [ + 108, + 253, + 423, + 267 + ], + "score": 1.0, + "content": "12: //Third stage: perturb gradient embedding and residual gradient separately", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 108, + 265, + 479, + 280 + ], + "spans": [ + { + "bbox": [ + 108, + 265, + 245, + 280 + ], + "score": 1.0, + "content": "13: Perturb embedding with noise", + "type": "text" + }, + { + "bbox": [ + 246, + 265, + 335, + 279 + ], + "score": 0.92, + "content": "\\boldsymbol { z } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } \\boldsymbol { I } _ { k \\times k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 265, + 341, + 280 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 342, + 265, + 479, + 278 + ], + "score": 0.27, + "content": "\\begin{array} { r } { \\pmb { w } : = \\sum _ { i } \\hat { W } _ { i , : } , \\tilde { \\pmb { w } } : = \\pmb { w } + \\pmb { z } ^ { ( 1 ) } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 279, + 487, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 268, + 292 + ], + "score": 1.0, + "content": "14: Perturb residual gradient with noise", + "type": "text" + }, + { + "bbox": [ + 268, + 279, + 357, + 292 + ], + "score": 0.87, + "content": "\\boldsymbol { z } ^ { ( 2 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 279, + 363, + 292 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 364, + 279, + 487, + 293 + ], + "score": 0.38, + "content": "\\begin{array} { r } { \\pmb { r } : = \\sum _ { i } \\hat { \\pmb { R } } _ { i , : } , \\ \\tilde { \\pmb { r } } : = \\pmb { r } + \\boldsymbol { z } ^ { ( 2 ) } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 291, + 240, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 153, + 304 + ], + "score": 1.0, + "content": "15: Return", + "type": "text" + }, + { + "bbox": [ + 153, + 291, + 237, + 304 + ], + "score": 0.92, + "content": "\\tilde { v } : = ( \\tilde { w } ^ { T } B + \\tilde { r } ) / n", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 291, + 240, + 304 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 99, + 502, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "A common practice to control sensitivity is to clip the output with a pre-defined threshold. In our", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 349, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 275, + 363 + ], + "score": 1.0, + "content": "experiments, we use different thresholds", + "type": "text" + }, + { + "bbox": [ + 275, + 350, + 287, + 361 + ], + "score": 0.89, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 349, + 306, + 363 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 307, + 350, + 318, + 361 + ], + "score": 0.91, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 349, + 505, + 363 + ], + "score": 1.0, + "content": "to clip the gradient embeddings and residual", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 506, + 375 + ], + "score": 1.0, + "content": "gradients, respectively. The privacy loss of GEP consists of two parts: the privacy loss incurred by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 505, + 384 + ], + "score": 1.0, + "content": "releasing the perturbed embedding and the privacy loss incurred by releasing the perturbed residual", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 383, + 502, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 461, + 396 + ], + "score": 1.0, + "content": "gradient. We compose these two parts via the Rényi differential privacy and convert it to", + "type": "text" + }, + { + "bbox": [ + 461, + 383, + 483, + 395 + ], + "score": 0.9, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 383, + 502, + 396 + ], + "score": 1.0, + "content": "-DP.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 338, + 506, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 400, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 505, + 411 + ], + "score": 1.0, + "content": "We highlight several implementation techniques that make GEP widely applicable and implementable", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "with reasonable computational cost. Firstly, auxiliary non-sensitive data do not have to be the same", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 506, + 434 + ], + "score": 1.0, + "content": "source as the private data and the auxiliary data can be randomly labeled. This non-sensitive data", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "assumption is very weak and easy to satisfy in practical scenarios. To understand why random label", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "works, a quick example is that for the least squares regression problem the individual gradient is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 454, + 507, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 507, + 468 + ], + "score": 1.0, + "content": "aligned with the feature vector while the label only scales the length but does not change the direction.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "This auxiliary data assumption avoids conducting principal component analysis (PCA) on private", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 489 + ], + "score": 1.0, + "content": "gradients, which requires releasing private high-dimensional basis vectors and hence introduces large", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "privacy loss. Secondly, we use power method (Panju, 2011; Vogels et al., 2019) to approximately", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "estimate the principal components. The new operation we introduce is standard matrix multiplication", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 521 + ], + "score": 1.0, + "content": "that enjoys efficient implementation on GPU. The computational complexity of each power iteration", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 519, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 115, + 533 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 520, + 141, + 532 + ], + "score": 0.63, + "content": "2 m k p", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 519, + 171, + 533 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 171, + 522, + 178, + 532 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 519, + 323, + 533 + ], + "score": 1.0, + "content": "is the number of model parameters,", + "type": "text" + }, + { + "bbox": [ + 324, + 522, + 333, + 531 + ], + "score": 0.74, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 519, + 487, + 533 + ], + "score": 1.0, + "content": "is the number of anchor gradients and", + "type": "text" + }, + { + "bbox": [ + 488, + 520, + 495, + 530 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 519, + 506, + 533 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 545 + ], + "score": 1.0, + "content": "the number of subspace basis vectors. Thirdly, we divide the parameters into different groups and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 506, + 555 + ], + "score": 1.0, + "content": "compute one orthonormal basis for each group. This further reduces the computational cost. For", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 397, + 566 + ], + "score": 1.0, + "content": "example, suppose the parameters are divided into two groups with size", + "type": "text" + }, + { + "bbox": [ + 398, + 555, + 423, + 565 + ], + "score": 0.89, + "content": "p _ { 1 } , p _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "and the numbers of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 174, + 577 + ], + "score": 1.0, + "content": "basis vectors are", + "type": "text" + }, + { + "bbox": [ + 175, + 564, + 199, + 575 + ], + "score": 0.91, + "content": "k _ { 1 } , k _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 564, + 429, + 577 + ], + "score": 1.0, + "content": ", the computational complexity of each power iteration is", + "type": "text" + }, + { + "bbox": [ + 430, + 564, + 502, + 576 + ], + "score": 0.91, + "content": "2 m ( k _ { 1 } p _ { 1 } + k _ { 2 } p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 574, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 191, + 589 + ], + "score": 1.0, + "content": "which is smaller than", + "type": "text" + }, + { + "bbox": [ + 191, + 575, + 279, + 587 + ], + "score": 0.92, + "content": "2 m ( k _ { 1 } + k _ { 2 } ) ( p _ { 1 } + p _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 574, + 506, + 589 + ], + "score": 1.0, + "content": ". In Appendix B, we analyze the additional computational", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 586, + 391, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 391, + 599 + ], + "score": 1.0, + "content": "and memory costs of GEP compared to standard gradient perturbation.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 400, + 507, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 603, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 505, + 615 + ], + "score": 1.0, + "content": "Curious readers may wonder if we can use random projection to reduce the dimensionality as", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 627 + ], + "score": 1.0, + "content": "Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees that one can preserve the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "pairwise distance between any two points after projecting into a random subspace of much lower", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "dimension. However, preserving the pairwise distance is not sufficient for high quality gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 416, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 416, + 660 + ], + "score": 1.0, + "content": "reconstruction, which is verified by the empirical observation in Appendix C.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 602, + 505, + 660 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 677, + 358, + 687 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 360, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 360, + 689 + ], + "score": 1.0, + "content": "3.2 AN ANALYSIS ON THE RESIDUAL GRADIENTS OF GEP", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 696, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 695, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 696, + 123, + 711 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 695, + 186, + 710 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { g } : = \\frac { 1 } { n } \\sum _ { i } \\pmb { G } _ { i } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 696, + 439, + 711 + ], + "score": 1.0, + "content": ": be the target private gradient. For a given anchor subspace", + "type": "text" + }, + { + "bbox": [ + 440, + 697, + 450, + 707 + ], + "score": 0.76, + "content": "\\textbf { { B } }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 696, + 506, + 711 + ], + "score": 1.0, + "content": ", the residual", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 201, + 722 + ], + "score": 1.0, + "content": "gradients are defined as", + "type": "text" + }, + { + "bbox": [ + 201, + 709, + 282, + 720 + ], + "score": 0.91, + "content": "\\pmb { R } : = \\pmb { G } - \\pmb { G } \\pmb { B } ^ { T } \\pmb { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 709, + 506, + 722 + ], + "score": 1.0, + "content": ". We then analyze how large the residual gradients could", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 506, + 734 + ], + "score": 1.0, + "content": "be. The following argument holds for all time steps and we ignore the time step index for simplicity.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 695, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 282, + 95 + ], + "score": 1.0, + "content": "For the ease of discussion, we introduce", + "type": "text" + }, + { + "bbox": [ + 282, + 82, + 344, + 95 + ], + "score": 0.94, + "content": "\\pmb { \\xi } _ { i } : = ( G _ { i , : } ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 82, + 362, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 362, + 82, + 396, + 95 + ], + "score": 0.92, + "content": "i \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "to denote the the private", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 102, + 89, + 509, + 116 + ], + "spans": [ + { + "bbox": [ + 102, + 89, + 181, + 116 + ], + "score": 1.0, + "content": "gradients and the", + "type": "text" + }, + { + "bbox": [ + 181, + 94, + 245, + 110 + ], + "score": 0.94, + "content": "\\hat { \\pmb { \\xi } } _ { j } : = ( { \\pmb { G } } _ { j , : } ^ { ( a ) } ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 89, + 263, + 116 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 263, + 96, + 299, + 109 + ], + "score": 0.92, + "content": "j \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 89, + 469, + 116 + ], + "score": 1.0, + "content": "to denote the anchor gradients. We use", + "type": "text" + }, + { + "bbox": [ + 470, + 96, + 492, + 109 + ], + "score": 0.9, + "content": "\\lambda _ { k } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 89, + 509, + 116 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 108, + 504, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 150, + 122 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 151, + 109, + 165, + 120 + ], + "score": 0.89, + "content": "k _ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 108, + 465, + 122 + ], + "score": 1.0, + "content": "largest eigenvalue of a given matrix. We assume that the private gradients", + "type": "text" + }, + { + "bbox": [ + 465, + 109, + 504, + 121 + ], + "score": 0.91, + "content": "\\xi _ { 1 } , . . . , \\xi _ { n }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 209, + 136 + ], + "score": 1.0, + "content": "and the anchor gradients", + "type": "text" + }, + { + "bbox": [ + 209, + 120, + 250, + 133 + ], + "score": 0.94, + "content": "\\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 120, + 442, + 136 + ], + "score": 1.0, + "content": "are sampled independently from a distribution", + "type": "text" + }, + { + "bbox": [ + 442, + 122, + 451, + 132 + ], + "score": 0.75, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 120, + 506, + 136 + ], + "score": 1.0, + "content": ". We assume", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 211, + 145 + ], + "score": 0.92, + "content": "\\Sigma : = \\mathbb { E } _ { \\pmb { \\xi } \\sim \\mathcal { P } } \\pmb { \\xi } \\pmb { \\xi } ^ { \\bar { T } } \\in \\mathbb { R } ^ { p \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "to be the population gradient (uncentered) covariance matrix. We also", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 101, + 141, + 449, + 164 + ], + "spans": [ + { + "bbox": [ + 101, + 141, + 360, + 164 + ], + "score": 1.0, + "content": "consider the (uncentered) empirical gradient covariance matrix", + "type": "text" + }, + { + "bbox": [ + 360, + 144, + 441, + 159 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\hat { \\pmb { S } } : = \\frac { 1 } { m } \\sum _ { i = 1 } ^ { m } \\hat { \\pmb { \\xi } } _ { i } \\hat { \\pmb { \\xi } } _ { i } ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 141, + 449, + 164 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 105, + 162, + 504, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 336, + 176 + ], + "score": 1.0, + "content": "One case is that the population gradient covariance matrix", + "type": "text" + }, + { + "bbox": [ + 336, + 163, + 346, + 173 + ], + "score": 0.82, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 162, + 393, + 176 + ], + "score": 1.0, + "content": "is low-rank", + "type": "text" + }, + { + "bbox": [ + 394, + 163, + 400, + 173 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 162, + 505, + 176 + ], + "score": 1.0, + "content": ". In this case we can argue", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 174, + 414, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 382, + 186 + ], + "score": 1.0, + "content": "that the residual gradients are 0 once the number of anchor gradients", + "type": "text" + }, + { + "bbox": [ + 382, + 174, + 411, + 184 + ], + "score": 0.9, + "content": "m > k", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 174, + 414, + 186 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 504, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 347, + 200 + ], + "score": 1.0, + "content": "Lemma 3.1. Assume that the population covariance matrix", + "type": "text" + }, + { + "bbox": [ + 347, + 187, + 356, + 197 + ], + "score": 0.77, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 186, + 406, + 200 + ], + "score": 1.0, + "content": "is with rank", + "type": "text" + }, + { + "bbox": [ + 407, + 188, + 413, + 197 + ], + "score": 0.69, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 186, + 495, + 200 + ], + "score": 1.0, + "content": "and the distribution", + "type": "text" + }, + { + "bbox": [ + 495, + 188, + 504, + 197 + ], + "score": 0.8, + "content": "\\mathcal { P }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 103, + 198, + 504, + 214 + ], + "spans": [ + { + "bbox": [ + 103, + 198, + 140, + 214 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 140, + 199, + 201, + 212 + ], + "score": 0.91, + "content": "\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 198, + 227, + 214 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 228, + 201, + 233, + 210 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 198, + 253, + 214 + ], + "score": 1.0, + "content": "-flats", + "type": "text" + }, + { + "bbox": [ + 254, + 200, + 265, + 211 + ], + "score": 0.86, + "content": "\\mathbb { F } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 198, + 276, + 214 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 276, + 200, + 289, + 210 + ], + "score": 0.85, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 198, + 308, + 214 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 309, + 200, + 352, + 211 + ], + "score": 0.92, + "content": "0 \\leq s < k", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 198, + 371, + 214 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 371, + 199, + 427, + 212 + ], + "score": 0.95, + "content": "\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 198, + 445, + 214 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 198, + 504, + 212 + ], + "score": 0.93, + "content": "\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 234, + 226 + ], + "score": 1.0, + "content": "be the eigendecompositions of", + "type": "text" + }, + { + "bbox": [ + 234, + 213, + 244, + 223 + ], + "score": 0.78, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 212, + 398, + 226 + ], + "score": 1.0, + "content": "and the empirical covariance matrix", + "type": "text" + }, + { + "bbox": [ + 399, + 212, + 407, + 223 + ], + "score": 0.81, + "content": "\\hat { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 212, + 506, + 226 + ], + "score": 1.0, + "content": ", respectively, such that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 224, + 409, + 238 + ], + "spans": [ + { + "bbox": [ + 107, + 224, + 155, + 237 + ], + "score": 0.93, + "content": "\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 224, + 173, + 238 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 224, + 231, + 237 + ], + "score": 0.94, + "content": "\\bar { \\lambda _ { k ^ { \\prime } + 1 } } ( \\hat { S } ) = \\bar { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 224, + 266, + 238 + ], + "score": 1.0, + "content": ". Then if", + "type": "text" + }, + { + "bbox": [ + 267, + 226, + 295, + 237 + ], + "score": 0.9, + "content": "m \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 224, + 399, + 238 + ], + "score": 1.0, + "content": ", we have with probability", + "type": "text" + }, + { + "bbox": [ + 400, + 226, + 405, + 235 + ], + "score": 0.69, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 224, + 409, + 238 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 239, + 389, + 255 + ], + "lines": [ + { + "bbox": [ + 222, + 239, + 389, + 255 + ], + "spans": [ + { + "bbox": [ + 222, + 239, + 389, + 255 + ], + "score": 0.9, + "content": "k ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 .", + "type": "interline_equation", + "image_path": "e641f104ed6205c318a94d38e1ac57a9523aa7a6726cd7879e9c63a29784a4a8.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 222, + 239, + 389, + 255 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 461, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 461, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 461, + 279 + ], + "score": 1.0, + "content": "Proof. The proof is based on the non-singularity of covariance matrix. See Appendix D.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 506, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 157, + 303 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 157, + 291, + 163, + 299 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 288, + 237, + 303 + ], + "score": 1.0, + "content": "-flat is the translate", + "type": "text" + }, + { + "bbox": [ + 237, + 289, + 299, + 302 + ], + "score": 0.92, + "content": "\\mathbb { F } _ { s } = \\pmb { x } + \\mathbb { F } _ { s ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 288, + 322, + 303 + ], + "score": 1.0, + "content": "of an", + "type": "text" + }, + { + "bbox": [ + 322, + 291, + 328, + 299 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 288, + 442, + 303 + ], + "score": 1.0, + "content": "-dimensional linear subspace", + "type": "text" + }, + { + "bbox": [ + 442, + 290, + 463, + 302 + ], + "score": 0.93, + "content": "\\mathbb { F } _ { s ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 288, + 474, + 303 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 474, + 289, + 487, + 299 + ], + "score": 0.86, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 299, + 507, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 507, + 313 + ], + "score": 1.0, + "content": "the normal distribution satisfies such condition (Eaton & Perlman, 1973; Muirhead, 2009). Therefore,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "we have seen that for low-rank case of population covariance matrix, the residual gradients are 0 once", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 322, + 445, + 334 + ], + "spans": [ + { + "bbox": [ + 107, + 322, + 135, + 332 + ], + "score": 0.88, + "content": "m > k", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 322, + 445, + 334 + ], + "score": 1.0, + "content": ". In the general case, we measure the expected norm of the residual gradients.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 211, + 348 + ], + "score": 1.0, + "content": "Lemma 3.2. Assume that", + "type": "text" + }, + { + "bbox": [ + 212, + 335, + 239, + 347 + ], + "score": 0.91, + "content": "\\xi \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 334, + 258, + 348 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 335, + 299, + 348 + ], + "score": 0.93, + "content": "\\| \\pmb { \\xi } \\| ^ { 2 } < T", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 334, + 372, + 348 + ], + "score": 1.0, + "content": "almost surely. Let", + "type": "text" + }, + { + "bbox": [ + 373, + 334, + 427, + 346 + ], + "score": 0.91, + "content": "\\pmb { \\Sigma } = \\pmb { V } \\pmb { \\Lambda } \\pmb { V } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 334, + 506, + 348 + ], + "score": 1.0, + "content": "be the eigendecom-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 286, + 362 + ], + "score": 1.0, + "content": "position of the population covariance matrix", + "type": "text" + }, + { + "bbox": [ + 286, + 349, + 295, + 358 + ], + "score": 0.69, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 347, + 315, + 362 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 315, + 347, + 371, + 361 + ], + "score": 0.93, + "content": "\\hat { \\pmb { S } } = \\hat { V } _ { k } \\hat { \\Lambda } \\hat { V } _ { k } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 347, + 505, + 362 + ], + "score": 1.0, + "content": "be the eigendecomposition of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 423, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 222, + 375 + ], + "score": 1.0, + "content": "empirical covariance matrix", + "type": "text" + }, + { + "bbox": [ + 223, + 360, + 231, + 372 + ], + "score": 0.82, + "content": "\\hat { S } .", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 361, + 358, + 375 + ], + "score": 1.0, + "content": ". Then we have with probability", + "type": "text" + }, + { + "bbox": [ + 358, + 361, + 419, + 374 + ], + "score": 0.89, + "content": "1 - 2 \\exp ( - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 361, + 423, + 375 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 375, + 424, + 402 + ], + "lines": [ + { + "bbox": [ + 185, + 375, + 424, + 402 + ], + "spans": [ + { + "bbox": [ + 185, + 375, + 424, + 402 + ], + "score": 0.91, + "content": "\\mathbb { E } \\| \\pmb { \\xi } - \\Pi _ { \\hat { V } _ { k } } ( \\pmb { \\xi } ) \\| _ { 2 } ^ { 2 } \\leq \\sum _ { k ^ { \\prime } > k } \\lambda _ { k ^ { \\prime } } ( \\pmb { \\Sigma } ) + \\sqrt { k C / m } + T \\sqrt { 2 \\delta / m } ,", + "type": "interline_equation", + "image_path": "2a1373daa4e9888c333f217dc5db760426337a582ba0ce3207dcdfa6ad2c821e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 185, + 375, + 424, + 402 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 103, + 402, + 509, + 426 + ], + "spans": [ + { + "bbox": [ + 103, + 402, + 132, + 426 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 405, + 381, + 425 + ], + "score": 0.92, + "content": "\\begin{array} { r } { C = \\big [ \\mathbb { E } \\| \\pmb { \\xi } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\Sigma } ) \\big ] + \\Big [ \\frac { 1 } { m } \\sum _ { j = 1 } ^ { m } \\| \\hat { \\pmb { \\xi } } _ { j } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\hat { S } } ) \\Big ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 402, + 385, + 426 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 385, + 407, + 404, + 423 + ], + "score": 0.83, + "content": "\\Pi _ { \\hat { V } _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 402, + 509, + 426 + ], + "score": 1.0, + "content": "is a projection operator", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 396, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 180, + 438 + ], + "score": 1.0, + "content": "onto the subspace", + "type": "text" + }, + { + "bbox": [ + 181, + 424, + 193, + 437 + ], + "score": 0.88, + "content": "\\hat { V } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 423, + 364, + 438 + ], + "score": 1.0, + "content": "and the E is taken over the randomness of", + "type": "text" + }, + { + "bbox": [ + 365, + 425, + 392, + 437 + ], + "score": 0.89, + "content": "\\xi \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 423, + 396, + 438 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 108, + 448, + 414, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 414, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 414, + 462 + ], + "score": 1.0, + "content": "Proof. The proof is an adaptation of Theorem 3.1 in Blanchard et al. (2007).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "From Lemma 3.2, we can see the larger the number of anchor gradients and the dimension of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 176, + 495 + ], + "score": 1.0, + "content": "anchor subspace", + "type": "text" + }, + { + "bbox": [ + 176, + 484, + 183, + 494 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 483, + 392, + 495 + ], + "score": 1.0, + "content": ", the smaller the residual gradients. We can choose", + "type": "text" + }, + { + "bbox": [ + 392, + 484, + 412, + 495 + ], + "score": 0.89, + "content": "m , k", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "properly such that the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "upper bound on the expected residual gradient norm is small. This indicates that we may use a smaller", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "score": 1.0, + "content": "clipping threshold and consequently apply smaller noises with achieving the same privacy guarantee.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 312, + 536 + ], + "score": 1.0, + "content": "We next empirically examine the projection error", + "type": "text" + }, + { + "bbox": [ + 312, + 522, + 362, + 535 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { r } = \\sum _ { i } \\pmb { R } _ { i } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 522, + 506, + 536 + ], + "score": 1.0, + "content": ",: by training a 20-layer ResNet on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "CIFAR10 dataset. We try two different types of auxiliary data to compute the anchor gradients: 1)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "score": 1.0, + "content": "samples from the same source as private data with correct labels, i.e., 2000 random samples from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "the test data; 2) samples from different source with random labels, i.e., 2000 random samples from", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 380, + 578 + ], + "score": 1.0, + "content": "ImageNet. The relation between the dimension of anchor subspace", + "type": "text" + }, + { + "bbox": [ + 381, + 567, + 388, + 576 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "and the projection error rate", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 575, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 162, + 590 + ], + "score": 0.91, + "content": "( \\left\\| { \\frac { 1 } { n } } { \\overline { { r } } } \\right\\| / \\left\\| g \\right\\| )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 575, + 506, + 591 + ], + "score": 1.0, + "content": "is presented in Figure 4. We can see that the project error is small and decreases with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 113, + 598 + ], + "score": 0.72, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 588, + 235, + 600 + ], + "score": 1.0, + "content": ", and the benefit of increasing", + "type": "text" + }, + { + "bbox": [ + 236, + 588, + 243, + 598 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 588, + 315, + 600 + ], + "score": 1.0, + "content": "diminishes when", + "type": "text" + }, + { + "bbox": [ + 315, + 588, + 322, + 598 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "is large, which is implied by Lemma 3.2. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 599, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 281, + 612 + ], + "score": 1.0, + "content": "practice one can only use small or moderate", + "type": "text" + }, + { + "bbox": [ + 281, + 600, + 289, + 609 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 599, + 506, + 612 + ], + "score": 1.0, + "content": "because of the memory constraint. GEP needs to store", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 136, + 623 + ], + "score": 1.0, + "content": "at least", + "type": "text" + }, + { + "bbox": [ + 137, + 610, + 144, + 620 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "individual gradients and each individual gradient consumes the same amount of memory as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "the model itself. Moreover, we can see that the projection into anchor subspace of random labeled", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "auxiliary data yields comparable projection error, corroborating our argument that unlabeled auxiliary", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 309, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 309, + 656 + ], + "score": 1.0, + "content": "data are sufficient for finding the anchor subspace.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "We also verify that the redundancy of residual gradients is small, by plotting the stable rank of residual", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "gradient matrix in Figure 5. The stable rank of residual gradient matrix is an order of magnitude", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "higher than the stable rank of original gradient matrix. This implies that it could be hard to further", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 693, + 313, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 159, + 705 + ], + "score": 1.0, + "content": "approximate", + "type": "text" + }, + { + "bbox": [ + 159, + 693, + 169, + 703 + ], + "score": 0.72, + "content": "\\pmb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 693, + 313, + 705 + ], + "score": 1.0, + "content": "with low-dimensional embeddings.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "score": 1.0, + "content": "We next compare the GEP with a scheme that simply discards the residual gradients and only outputs", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 719, + 379, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 315, + 734 + ], + "score": 1.0, + "content": "the perturbed gradient embedding, i.e., the output is", + "type": "text" + }, + { + "bbox": [ + 316, + 720, + 374, + 732 + ], + "score": 0.96, + "content": "\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 719, + 379, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 449, + 504, + 460 + ], + "lines": [ + { + "bbox": [ + 496, + 451, + 504, + 460 + ], + "spans": [ + { + "bbox": [ + 496, + 451, + 504, + 460 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 266, + 504, + 276 + ], + "lines": [ + { + "bbox": [ + 496, + 267, + 504, + 276 + ], + "spans": [ + { + "bbox": [ + 496, + 267, + 504, + 276 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 159 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 282, + 95 + ], + "score": 1.0, + "content": "For the ease of discussion, we introduce", + "type": "text" + }, + { + "bbox": [ + 282, + 82, + 344, + 95 + ], + "score": 0.94, + "content": "\\pmb { \\xi } _ { i } : = ( G _ { i , : } ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 82, + 362, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 362, + 82, + 396, + 95 + ], + "score": 0.92, + "content": "i \\in [ n ]", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "to denote the the private", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 102, + 89, + 509, + 116 + ], + "spans": [ + { + "bbox": [ + 102, + 89, + 181, + 116 + ], + "score": 1.0, + "content": "gradients and the", + "type": "text" + }, + { + "bbox": [ + 181, + 94, + 245, + 110 + ], + "score": 0.94, + "content": "\\hat { \\pmb { \\xi } } _ { j } : = ( { \\pmb { G } } _ { j , : } ^ { ( a ) } ) ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 89, + 263, + 116 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 263, + 96, + 299, + 109 + ], + "score": 0.92, + "content": "j \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 89, + 469, + 116 + ], + "score": 1.0, + "content": "to denote the anchor gradients. We use", + "type": "text" + }, + { + "bbox": [ + 470, + 96, + 492, + 109 + ], + "score": 0.9, + "content": "\\lambda _ { k } ( \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 89, + 509, + 116 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 108, + 504, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 108, + 150, + 122 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + }, + { + "bbox": [ + 151, + 109, + 165, + 120 + ], + "score": 0.89, + "content": "k _ { t h }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 108, + 465, + 122 + ], + "score": 1.0, + "content": "largest eigenvalue of a given matrix. We assume that the private gradients", + "type": "text" + }, + { + "bbox": [ + 465, + 109, + 504, + 121 + ], + "score": 0.91, + "content": "\\xi _ { 1 } , . . . , \\xi _ { n }", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 209, + 136 + ], + "score": 1.0, + "content": "and the anchor gradients", + "type": "text" + }, + { + "bbox": [ + 209, + 120, + 250, + 133 + ], + "score": 0.94, + "content": "\\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 120, + 442, + 136 + ], + "score": 1.0, + "content": "are sampled independently from a distribution", + "type": "text" + }, + { + "bbox": [ + 442, + 122, + 451, + 132 + ], + "score": 0.75, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 120, + 506, + 136 + ], + "score": 1.0, + "content": ". We assume", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 211, + 145 + ], + "score": 0.92, + "content": "\\Sigma : = \\mathbb { E } _ { \\pmb { \\xi } \\sim \\mathcal { P } } \\pmb { \\xi } \\pmb { \\xi } ^ { \\bar { T } } \\in \\mathbb { R } ^ { p \\times p }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "to be the population gradient (uncentered) covariance matrix. We also", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 101, + 141, + 449, + 164 + ], + "spans": [ + { + "bbox": [ + 101, + 141, + 360, + 164 + ], + "score": 1.0, + "content": "consider the (uncentered) empirical gradient covariance matrix", + "type": "text" + }, + { + "bbox": [ + 360, + 144, + 441, + 159 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\hat { \\pmb { S } } : = \\frac { 1 } { m } \\sum _ { i = 1 } ^ { m } \\hat { \\pmb { \\xi } } _ { i } \\hat { \\pmb { \\xi } } _ { i } ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 141, + 449, + 164 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 101, + 82, + 509, + 164 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 162, + 504, + 186 + ], + "lines": [ + { + "bbox": [ + 105, + 162, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 336, + 176 + ], + "score": 1.0, + "content": "One case is that the population gradient covariance matrix", + "type": "text" + }, + { + "bbox": [ + 336, + 163, + 346, + 173 + ], + "score": 0.82, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 162, + 393, + 176 + ], + "score": 1.0, + "content": "is low-rank", + "type": "text" + }, + { + "bbox": [ + 394, + 163, + 400, + 173 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 162, + 505, + 176 + ], + "score": 1.0, + "content": ". In this case we can argue", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 174, + 414, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 382, + 186 + ], + "score": 1.0, + "content": "that the residual gradients are 0 once the number of anchor gradients", + "type": "text" + }, + { + "bbox": [ + 382, + 174, + 411, + 184 + ], + "score": 0.9, + "content": "m > k", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 174, + 414, + 186 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 162, + 505, + 186 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 504, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 347, + 200 + ], + "score": 1.0, + "content": "Lemma 3.1. Assume that the population covariance matrix", + "type": "text" + }, + { + "bbox": [ + 347, + 187, + 356, + 197 + ], + "score": 0.77, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 186, + 406, + 200 + ], + "score": 1.0, + "content": "is with rank", + "type": "text" + }, + { + "bbox": [ + 407, + 188, + 413, + 197 + ], + "score": 0.69, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 186, + 495, + 200 + ], + "score": 1.0, + "content": "and the distribution", + "type": "text" + }, + { + "bbox": [ + 495, + 188, + 504, + 197 + ], + "score": 0.8, + "content": "\\mathcal { P }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 103, + 198, + 504, + 214 + ], + "spans": [ + { + "bbox": [ + 103, + 198, + 140, + 214 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 140, + 199, + 201, + 212 + ], + "score": 0.91, + "content": "\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 198, + 227, + 214 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 228, + 201, + 233, + 210 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 198, + 253, + 214 + ], + "score": 1.0, + "content": "-flats", + "type": "text" + }, + { + "bbox": [ + 254, + 200, + 265, + 211 + ], + "score": 0.86, + "content": "\\mathbb { F } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 198, + 276, + 214 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 276, + 200, + 289, + 210 + ], + "score": 0.85, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 198, + 308, + 214 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 309, + 200, + 352, + 211 + ], + "score": 0.92, + "content": "0 \\leq s < k", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 198, + 371, + 214 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 371, + 199, + 427, + 212 + ], + "score": 0.95, + "content": "\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 198, + 445, + 214 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 198, + 504, + 212 + ], + "score": 0.93, + "content": "\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 234, + 226 + ], + "score": 1.0, + "content": "be the eigendecompositions of", + "type": "text" + }, + { + "bbox": [ + 234, + 213, + 244, + 223 + ], + "score": 0.78, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 212, + 398, + 226 + ], + "score": 1.0, + "content": "and the empirical covariance matrix", + "type": "text" + }, + { + "bbox": [ + 399, + 212, + 407, + 223 + ], + "score": 0.81, + "content": "\\hat { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 212, + 506, + 226 + ], + "score": 1.0, + "content": ", respectively, such that", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 224, + 409, + 238 + ], + "spans": [ + { + "bbox": [ + 107, + 224, + 155, + 237 + ], + "score": 0.93, + "content": "\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 224, + 173, + 238 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 224, + 231, + 237 + ], + "score": 0.94, + "content": "\\bar { \\lambda _ { k ^ { \\prime } + 1 } } ( \\hat { S } ) = \\bar { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 224, + 266, + 238 + ], + "score": 1.0, + "content": ". Then if", + "type": "text" + }, + { + "bbox": [ + 267, + 226, + 295, + 237 + ], + "score": 0.9, + "content": "m \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 224, + 399, + 238 + ], + "score": 1.0, + "content": ", we have with probability", + "type": "text" + }, + { + "bbox": [ + 400, + 226, + 405, + 235 + ], + "score": 0.69, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 224, + 409, + 238 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5, + "bbox_fs": [ + 103, + 186, + 506, + 238 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 239, + 389, + 255 + ], + "lines": [ + { + "bbox": [ + 222, + 239, + 389, + 255 + ], + "spans": [ + { + "bbox": [ + 222, + 239, + 389, + 255 + ], + "score": 0.9, + "content": "k ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 .", + "type": "interline_equation", + "image_path": "e641f104ed6205c318a94d38e1ac57a9523aa7a6726cd7879e9c63a29784a4a8.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 222, + 239, + 389, + 255 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 461, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 461, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 461, + 279 + ], + "score": 1.0, + "content": "Proof. The proof is based on the non-singularity of covariance matrix. See Appendix D.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 264, + 461, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 288, + 506, + 333 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 157, + 303 + ], + "score": 1.0, + "content": "We note that", + "type": "text" + }, + { + "bbox": [ + 157, + 291, + 163, + 299 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 288, + 237, + 303 + ], + "score": 1.0, + "content": "-flat is the translate", + "type": "text" + }, + { + "bbox": [ + 237, + 289, + 299, + 302 + ], + "score": 0.92, + "content": "\\mathbb { F } _ { s } = \\pmb { x } + \\mathbb { F } _ { s ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 288, + 322, + 303 + ], + "score": 1.0, + "content": "of an", + "type": "text" + }, + { + "bbox": [ + 322, + 291, + 328, + 299 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 288, + 442, + 303 + ], + "score": 1.0, + "content": "-dimensional linear subspace", + "type": "text" + }, + { + "bbox": [ + 442, + 290, + 463, + 302 + ], + "score": 0.93, + "content": "\\mathbb { F } _ { s ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 288, + 474, + 303 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 474, + 289, + 487, + 299 + ], + "score": 0.86, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 288, + 506, + 303 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 299, + 507, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 507, + 313 + ], + "score": 1.0, + "content": "the normal distribution satisfies such condition (Eaton & Perlman, 1973; Muirhead, 2009). Therefore,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 506, + 324 + ], + "score": 1.0, + "content": "we have seen that for low-rank case of population covariance matrix, the residual gradients are 0 once", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 322, + 445, + 334 + ], + "spans": [ + { + "bbox": [ + 107, + 322, + 135, + 332 + ], + "score": 0.88, + "content": "m > k", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 322, + 445, + 334 + ], + "score": 1.0, + "content": ". In the general case, we measure the expected norm of the residual gradients.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 288, + 507, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 374 + ], + "lines": [ + { + "bbox": [ + 105, + 334, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 211, + 348 + ], + "score": 1.0, + "content": "Lemma 3.2. Assume that", + "type": "text" + }, + { + "bbox": [ + 212, + 335, + 239, + 347 + ], + "score": 0.91, + "content": "\\xi \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 334, + 258, + 348 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 258, + 335, + 299, + 348 + ], + "score": 0.93, + "content": "\\| \\pmb { \\xi } \\| ^ { 2 } < T", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 334, + 372, + 348 + ], + "score": 1.0, + "content": "almost surely. Let", + "type": "text" + }, + { + "bbox": [ + 373, + 334, + 427, + 346 + ], + "score": 0.91, + "content": "\\pmb { \\Sigma } = \\pmb { V } \\pmb { \\Lambda } \\pmb { V } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 334, + 506, + 348 + ], + "score": 1.0, + "content": "be the eigendecom-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 347, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 286, + 362 + ], + "score": 1.0, + "content": "position of the population covariance matrix", + "type": "text" + }, + { + "bbox": [ + 286, + 349, + 295, + 358 + ], + "score": 0.69, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 347, + 315, + 362 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 315, + 347, + 371, + 361 + ], + "score": 0.93, + "content": "\\hat { \\pmb { S } } = \\hat { V } _ { k } \\hat { \\Lambda } \\hat { V } _ { k } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 347, + 505, + 362 + ], + "score": 1.0, + "content": "be the eigendecomposition of the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 360, + 423, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 222, + 375 + ], + "score": 1.0, + "content": "empirical covariance matrix", + "type": "text" + }, + { + "bbox": [ + 223, + 360, + 231, + 372 + ], + "score": 0.82, + "content": "\\hat { S } .", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 361, + 358, + 375 + ], + "score": 1.0, + "content": ". Then we have with probability", + "type": "text" + }, + { + "bbox": [ + 358, + 361, + 419, + 374 + ], + "score": 0.89, + "content": "1 - 2 \\exp ( - \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 361, + 423, + 375 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 334, + 506, + 375 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 185, + 375, + 424, + 402 + ], + "lines": [ + { + "bbox": [ + 185, + 375, + 424, + 402 + ], + "spans": [ + { + "bbox": [ + 185, + 375, + 424, + 402 + ], + "score": 0.91, + "content": "\\mathbb { E } \\| \\pmb { \\xi } - \\Pi _ { \\hat { V } _ { k } } ( \\pmb { \\xi } ) \\| _ { 2 } ^ { 2 } \\leq \\sum _ { k ^ { \\prime } > k } \\lambda _ { k ^ { \\prime } } ( \\pmb { \\Sigma } ) + \\sqrt { k C / m } + T \\sqrt { 2 \\delta / m } ,", + "type": "interline_equation", + "image_path": "2a1373daa4e9888c333f217dc5db760426337a582ba0ce3207dcdfa6ad2c821e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 185, + 375, + 424, + 402 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 404, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 103, + 402, + 509, + 426 + ], + "spans": [ + { + "bbox": [ + 103, + 402, + 132, + 426 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 405, + 381, + 425 + ], + "score": 0.92, + "content": "\\begin{array} { r } { C = \\big [ \\mathbb { E } \\| \\pmb { \\xi } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\Sigma } ) \\big ] + \\Big [ \\frac { 1 } { m } \\sum _ { j = 1 } ^ { m } \\| \\hat { \\pmb { \\xi } } _ { j } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\hat { S } } ) \\Big ] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 402, + 385, + 426 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 385, + 407, + 404, + 423 + ], + "score": 0.83, + "content": "\\Pi _ { \\hat { V } _ { k } }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 402, + 509, + 426 + ], + "score": 1.0, + "content": "is a projection operator", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 396, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 180, + 438 + ], + "score": 1.0, + "content": "onto the subspace", + "type": "text" + }, + { + "bbox": [ + 181, + 424, + 193, + 437 + ], + "score": 0.88, + "content": "\\hat { V } _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 423, + 364, + 438 + ], + "score": 1.0, + "content": "and the E is taken over the randomness of", + "type": "text" + }, + { + "bbox": [ + 365, + 425, + 392, + 437 + ], + "score": 0.89, + "content": "\\xi \\sim \\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 423, + 396, + 438 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 103, + 402, + 509, + 438 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 448, + 414, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 414, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 414, + 462 + ], + "score": 1.0, + "content": "Proof. The proof is an adaptation of Theorem 3.1 in Blanchard et al. (2007).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 448, + 414, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 472, + 505, + 517 + ], + "lines": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 506, + 485 + ], + "score": 1.0, + "content": "From Lemma 3.2, we can see the larger the number of anchor gradients and the dimension of the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 176, + 495 + ], + "score": 1.0, + "content": "anchor subspace", + "type": "text" + }, + { + "bbox": [ + 176, + 484, + 183, + 494 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 483, + 392, + 495 + ], + "score": 1.0, + "content": ", the smaller the residual gradients. We can choose", + "type": "text" + }, + { + "bbox": [ + 392, + 484, + 412, + 495 + ], + "score": 0.89, + "content": "m , k", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "properly such that the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 506, + 507 + ], + "score": 1.0, + "content": "upper bound on the expected residual gradient norm is small. This indicates that we may use a smaller", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 507, + 519 + ], + "score": 1.0, + "content": "clipping threshold and consequently apply smaller noises with achieving the same privacy guarantee.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 471, + 507, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 312, + 536 + ], + "score": 1.0, + "content": "We next empirically examine the projection error", + "type": "text" + }, + { + "bbox": [ + 312, + 522, + 362, + 535 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\pmb { r } = \\sum _ { i } \\pmb { R } _ { i } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 522, + 506, + 536 + ], + "score": 1.0, + "content": ",: by training a 20-layer ResNet on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 546 + ], + "score": 1.0, + "content": "CIFAR10 dataset. We try two different types of auxiliary data to compute the anchor gradients: 1)", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 505, + 557 + ], + "score": 1.0, + "content": "samples from the same source as private data with correct labels, i.e., 2000 random samples from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "the test data; 2) samples from different source with random labels, i.e., 2000 random samples from", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 380, + 578 + ], + "score": 1.0, + "content": "ImageNet. The relation between the dimension of anchor subspace", + "type": "text" + }, + { + "bbox": [ + 381, + 567, + 388, + 576 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "and the projection error rate", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 575, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 162, + 590 + ], + "score": 0.91, + "content": "( \\left\\| { \\frac { 1 } { n } } { \\overline { { r } } } \\right\\| / \\left\\| g \\right\\| )", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 575, + 506, + 591 + ], + "score": 1.0, + "content": "is presented in Figure 4. We can see that the project error is small and decreases with", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 113, + 598 + ], + "score": 0.72, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 588, + 235, + 600 + ], + "score": 1.0, + "content": ", and the benefit of increasing", + "type": "text" + }, + { + "bbox": [ + 236, + 588, + 243, + 598 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 588, + 315, + 600 + ], + "score": 1.0, + "content": "diminishes when", + "type": "text" + }, + { + "bbox": [ + 315, + 588, + 322, + 598 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "is large, which is implied by Lemma 3.2. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 599, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 281, + 612 + ], + "score": 1.0, + "content": "practice one can only use small or moderate", + "type": "text" + }, + { + "bbox": [ + 281, + 600, + 289, + 609 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 599, + 506, + 612 + ], + "score": 1.0, + "content": "because of the memory constraint. GEP needs to store", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 136, + 623 + ], + "score": 1.0, + "content": "at least", + "type": "text" + }, + { + "bbox": [ + 137, + 610, + 144, + 620 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "individual gradients and each individual gradient consumes the same amount of memory as", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "the model itself. Moreover, we can see that the projection into anchor subspace of random labeled", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 632, + 505, + 645 + ], + "score": 1.0, + "content": "auxiliary data yields comparable projection error, corroborating our argument that unlabeled auxiliary", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 642, + 309, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 309, + 656 + ], + "score": 1.0, + "content": "data are sufficient for finding the anchor subspace.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 522, + 506, + 656 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "We also verify that the redundancy of residual gradients is small, by plotting the stable rank of residual", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "gradient matrix in Figure 5. The stable rank of residual gradient matrix is an order of magnitude", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "higher than the stable rank of original gradient matrix. This implies that it could be hard to further", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 693, + 313, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 159, + 705 + ], + "score": 1.0, + "content": "approximate", + "type": "text" + }, + { + "bbox": [ + 159, + 693, + 169, + 703 + ], + "score": 0.72, + "content": "\\pmb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 693, + 313, + 705 + ], + "score": 1.0, + "content": "with low-dimensional embeddings.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 660, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 708, + 504, + 722 + ], + "score": 1.0, + "content": "We next compare the GEP with a scheme that simply discards the residual gradients and only outputs", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 719, + 379, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 719, + 315, + 734 + ], + "score": 1.0, + "content": "the perturbed gradient embedding, i.e., the output is", + "type": "text" + }, + { + "bbox": [ + 316, + 720, + 374, + 732 + ], + "score": 0.96, + "content": "\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 719, + 379, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 708, + 504, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 134, + 82, + 334, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 134, + 82, + 334, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 82, + 334, + 178 + ], + "spans": [ + { + "bbox": [ + 134, + 82, + 334, + 178 + ], + "score": 0.966, + "type": "image", + "image_path": "7345a3e82a46645b6d902e73473fed756d4004f557e77e9cb79b0e1a089ad382.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 134, + 82, + 334, + 95.71428571428571 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 134, + 95.71428571428571, + 334, + 109.42857142857142 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 134, + 109.42857142857142, + 334, + 123.14285714285712 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 134, + 123.14285714285712, + 334, + 136.85714285714283 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 134, + 136.85714285714283, + 334, + 150.57142857142856 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 134, + 150.57142857142856, + 334, + 164.28571428571428 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 134, + 164.28571428571428, + 334, + 178.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 191, + 362, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 191, + 363, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 250, + 206 + ], + "score": 1.0, + "content": "Figure 4: Relative projection error", + "type": "text" + }, + { + "bbox": [ + 250, + 191, + 306, + 206 + ], + "score": 0.91, + "content": "( \\left\\| { \\frac { 1 } { n } } \\pmb { r } \\right\\| / \\left\\| \\pmb { g } \\right\\| )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 191, + 363, + 206 + ], + "score": 1.0, + "content": "of the second", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 203, + 362, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 362, + 215 + ], + "score": 1.0, + "content": "stage in ResNet20. The number of anchor gradients is 2000. The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 214, + 362, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 237, + 226 + ], + "score": 1.0, + "content": "dimension of anchor subspace is", + "type": "text" + }, + { + "bbox": [ + 237, + 215, + 244, + 224 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 214, + 362, + 226 + ], + "score": 1.0, + "content": ". The learning rate is decayed", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 225, + 362, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 362, + 237 + ], + "score": 1.0, + "content": "by 10 at epoch 30. The left plot uses random samples from", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 364, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 364, + 248 + ], + "score": 1.0, + "content": "ImageNet. The right plot uses random samples from test data.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 246, + 354, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 208, + 259 + ], + "score": 1.0, + "content": "The benefit of increasing", + "type": "text" + }, + { + "bbox": [ + 208, + 248, + 215, + 257 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 246, + 309, + 259 + ], + "score": 1.0, + "content": "becomes smaller when", + "type": "text" + }, + { + "bbox": [ + 309, + 248, + 316, + 257 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 246, + 354, + 259 + ], + "score": 1.0, + "content": "is larger.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + } + ], + "index": 7.25 + }, + { + "type": "image", + "bbox": [ + 387, + 82, + 488, + 169 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 387, + 82, + 488, + 169 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 387, + 82, + 488, + 169 + ], + "spans": [ + { + "bbox": [ + 387, + 82, + 488, + 169 + ], + "score": 0.957, + "type": "image", + "image_path": "fb17dd406c7e4b4486261ff36f80c3a8f963fa4a24c5825b9e573abb26d2881f.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 387, + 82, + 488, + 125.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 387, + 125.5, + 488, + 169.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 371, + 181, + 505, + 259 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 371, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 371, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "Figure 5: Stable rank of the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 371, + 193, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 371, + 193, + 505, + 204 + ], + "score": 1.0, + "content": "residual gradient matrix versus", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 371, + 204, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 371, + 204, + 505, + 215 + ], + "score": 1.0, + "content": "original gradient matrix. The", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 371, + 216, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 371, + 216, + 505, + 226 + ], + "score": 1.0, + "content": "gradients are computed on full", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 370, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 370, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "batch data for the first stage in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 371, + 236, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 371, + 236, + 506, + 248 + ], + "score": 1.0, + "content": "ResNet20. The dimension of an-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 371, + 248, + 483, + 259 + ], + "spans": [ + { + "bbox": [ + 371, + 248, + 439, + 259 + ], + "score": 1.0, + "content": "chor subspace is", + "type": "text" + }, + { + "bbox": [ + 439, + 248, + 479, + 258 + ], + "score": 0.9, + "content": "k = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 248, + 483, + 259 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + } + ], + "index": 12.75 + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 172, + 303 + ], + "score": 1.0, + "content": "Remark 1. Let", + "type": "text" + }, + { + "bbox": [ + 172, + 289, + 231, + 302 + ], + "score": 0.92, + "content": "\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 289, + 497, + 303 + ], + "score": 1.0, + "content": "be the reconstructed gradient from noisy gradient embedding and", + "type": "text" + }, + { + "bbox": [ + 497, + 291, + 504, + 300 + ], + "score": 0.6, + "content": "\\tilde { v }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 301, + 398, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 398, + 314 + ], + "score": 1.0, + "content": "be the output of GEP. If ignoring the effect of gradient clipping, we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 320, + 367, + 333 + ], + "lines": [ + { + "bbox": [ + 243, + 320, + 367, + 333 + ], + "spans": [ + { + "bbox": [ + 243, + 320, + 367, + 333 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\tilde { \\pmb { u } } ] = \\pmb { g } - \\pmb { r } / n , \\quad \\mathbb { E } [ \\tilde { \\pmb { v } } ] = \\pmb { g } .", + "type": "interline_equation", + "image_path": "6433a0fa742a5dbd2a1bab2228b73e35eedbb8fa46cbe12952ed2dc569e478a4.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 243, + 320, + 367, + 333 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 346, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 134, + 359 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 346, + 184, + 359 + ], + "score": 0.91, + "content": "\\begin{array} { r } { { \\pmb r } = \\sum _ { i } { \\pmb R } _ { i } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 345, + 342, + 359 + ], + "score": 1.0, + "content": ": is the aggregated residual gradients,", + "type": "text" + }, + { + "bbox": [ + 343, + 347, + 366, + 358 + ], + "score": 0.9, + "content": "\\tilde { \\pmb { w } } , \\pmb { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 345, + 505, + 359 + ], + "score": 1.0, + "content": "are given in Algorithm 1 and the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 357, + 288, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 288, + 370 + ], + "score": 1.0, + "content": "expectation is over the added random noises.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 506, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 181, + 391 + ], + "score": 1.0, + "content": "This indicates that", + "type": "text" + }, + { + "bbox": [ + 182, + 380, + 190, + 389 + ], + "score": 0.78, + "content": "\\tilde { \\mathbf { \\pmb { u } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 379, + 344, + 391 + ], + "score": 1.0, + "content": "contains a systematic error that makes", + "type": "text" + }, + { + "bbox": [ + 344, + 380, + 352, + 389 + ], + "score": 0.81, + "content": "\\tilde { \\mathbf { \\pmb { u } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 379, + 435, + 391 + ], + "score": 1.0, + "content": "always deviate from", + "type": "text" + }, + { + "bbox": [ + 436, + 381, + 443, + 390 + ], + "score": 0.79, + "content": "\\textbf { { g } }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "by the residual", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "gradient. This systematic error is the projection error, which is plotted in Figure 4. The systematic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "error cannot be mitigated by reducing the noise magnitude (e.g., increasing the privacy budget or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 361, + 424 + ], + "score": 1.0, + "content": "collecting more private data). We refer to the algorithm releasing", + "type": "text" + }, + { + "bbox": [ + 361, + 413, + 370, + 423 + ], + "score": 0.8, + "content": "\\tilde { \\mathbf { \\pmb { u } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 412, + 474, + 424 + ], + "score": 1.0, + "content": "directly as Biased-GEP or", + "type": "text" + }, + { + "bbox": [ + 474, + 413, + 482, + 422 + ], + "score": 0.39, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "-GEP", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "score": 1.0, + "content": "for short, which can be viewed as an efficient implementation of the algorithm in (Zhou et al., 2020).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 438, + 447 + ], + "score": 1.0, + "content": "In our experiments, B-GEP can outperform standard gradient perturbation when", + "type": "text" + }, + { + "bbox": [ + 439, + 435, + 446, + 444 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "is large but is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 444, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 458 + ], + "score": 1.0, + "content": "inferior to GEP. We note that the above remark is made with ignoring the clipping effect (or set a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "large clipping threshold). In practice, we do apply clipping for the individual gradients at each time", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "score": 1.0, + "content": "step, which makes the expectations in Remark 1 obscure (Chen et al., 2020b). We note that the claim", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 477, + 456, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 124, + 491 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 479, + 131, + 487 + ], + "score": 0.82, + "content": "\\tilde { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 477, + 241, + 491 + ], + "score": 1.0, + "content": "is an unbiased estimator of", + "type": "text" + }, + { + "bbox": [ + 241, + 479, + 249, + 489 + ], + "score": 0.81, + "content": "\\textbf { { g } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 477, + 456, + 491 + ], + "score": 1.0, + "content": "is not that precise when applying gradient clipping.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 502, + 410, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 411, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 411, + 514 + ], + "score": 1.0, + "content": "3.3 PRIVATE LEARNING WITH GRADIENT EMBEDDING PERTURBATION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 507, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 507, + 533 + ], + "score": 1.0, + "content": "GEP (Algorithm 1) describes how to release one-step gradient with privacy guarantee. In this section,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "we compose the privacy losses at each step to establish the privacy guarantee for the whole learning", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "process. The differentially private learning process with GEP is given in Algorithm 2 and the privacy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 554, + 257, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 257, + 565 + ], + "score": 1.0, + "content": "analysis is presented in Theorem 3.2.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + }, + { + "type": "table", + "bbox": [ + 110, + 596, + 482, + 693 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 581, + 359, + 594 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 580, + 361, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 361, + 596 + ], + "score": 1.0, + "content": "Algorithm 2: Differentially private gradient descent with GEP.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "table_body", + "bbox": [ + 110, + 596, + 482, + 693 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 596, + 482, + 693 + ], + "spans": [ + { + "bbox": [ + 110, + 596, + 482, + 693 + ], + "score": 0.738, + "html": "
configuration of GEP C; loss function l;1: Input: private dataset D; auxiliary dataset D(@); number of updates T; learning rate n;
2: Output: Differentially private model 0T.
3: fort=OtoT-1do
4:Compute the private gradients Gt and anchor gradients G(@) of loss with respect to 0t.
5: and configuration C to get Ut.
6: 7: end forUpdate model 0t+1 = 0t - nUt.
", + "type": "table", + "image_path": "48a8b9321b51c14a553b73b1f0e05a2f89514c36c6ba6a448e737c6f9cdf47c0.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 110, + 596, + 482, + 628.3333333333334 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 110, + 628.3333333333334, + 482, + 660.6666666666667 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 110, + 660.6666666666667, + 482, + 693.0000000000001 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "index": 43.0 + }, + { + "type": "text", + "bbox": [ + 106, + 707, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 705, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 200, + 722 + ], + "score": 1.0, + "content": "Theorem 3.2. For any", + "type": "text" + }, + { + "bbox": [ + 200, + 708, + 260, + 720 + ], + "score": 0.9, + "content": "\\epsilon < 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 705, + 279, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 708, + 318, + 720 + ], + "score": 0.92, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 705, + 457, + 722 + ], + "score": 1.0, + "content": ", the output of Algorithm 2 satisfies", + "type": "text" + }, + { + "bbox": [ + 458, + 708, + 479, + 720 + ], + "score": 0.86, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 705, + 507, + 722 + ], + "score": 1.0, + "content": "-DP if", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 718, + 230, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 133, + 732 + ], + "score": 1.0, + "content": "we set", + "type": "text" + }, + { + "bbox": [ + 134, + 719, + 227, + 733 + ], + "score": 0.93, + "content": "\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 718, + 230, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 134, + 82, + 334, + 178 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 134, + 82, + 334, + 178 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 82, + 334, + 178 + ], + "spans": [ + { + "bbox": [ + 134, + 82, + 334, + 178 + ], + "score": 0.966, + "type": "image", + "image_path": "7345a3e82a46645b6d902e73473fed756d4004f557e77e9cb79b0e1a089ad382.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 134, + 82, + 334, + 95.71428571428571 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 134, + 95.71428571428571, + 334, + 109.42857142857142 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 134, + 109.42857142857142, + 334, + 123.14285714285712 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 134, + 123.14285714285712, + 334, + 136.85714285714283 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 134, + 136.85714285714283, + 334, + 150.57142857142856 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 134, + 150.57142857142856, + 334, + 164.28571428571428 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 134, + 164.28571428571428, + 334, + 178.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 191, + 362, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 191, + 363, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 250, + 206 + ], + "score": 1.0, + "content": "Figure 4: Relative projection error", + "type": "text" + }, + { + "bbox": [ + 250, + 191, + 306, + 206 + ], + "score": 0.91, + "content": "( \\left\\| { \\frac { 1 } { n } } \\pmb { r } \\right\\| / \\left\\| \\pmb { g } \\right\\| )", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 191, + 363, + 206 + ], + "score": 1.0, + "content": "of the second", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 203, + 362, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 362, + 215 + ], + "score": 1.0, + "content": "stage in ResNet20. The number of anchor gradients is 2000. The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 214, + 362, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 237, + 226 + ], + "score": 1.0, + "content": "dimension of anchor subspace is", + "type": "text" + }, + { + "bbox": [ + 237, + 215, + 244, + 224 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 214, + 362, + 226 + ], + "score": 1.0, + "content": ". The learning rate is decayed", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 225, + 362, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 362, + 237 + ], + "score": 1.0, + "content": "by 10 at epoch 30. The left plot uses random samples from", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 236, + 364, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 364, + 248 + ], + "score": 1.0, + "content": "ImageNet. The right plot uses random samples from test data.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 246, + 354, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 208, + 259 + ], + "score": 1.0, + "content": "The benefit of increasing", + "type": "text" + }, + { + "bbox": [ + 208, + 248, + 215, + 257 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 246, + 309, + 259 + ], + "score": 1.0, + "content": "becomes smaller when", + "type": "text" + }, + { + "bbox": [ + 309, + 248, + 316, + 257 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 246, + 354, + 259 + ], + "score": 1.0, + "content": "is larger.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + } + ], + "index": 7.25 + }, + { + "type": "image", + "bbox": [ + 387, + 82, + 488, + 169 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 387, + 82, + 488, + 169 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 387, + 82, + 488, + 169 + ], + "spans": [ + { + "bbox": [ + 387, + 82, + 488, + 169 + ], + "score": 0.957, + "type": "image", + "image_path": "fb17dd406c7e4b4486261ff36f80c3a8f963fa4a24c5825b9e573abb26d2881f.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 387, + 82, + 488, + 125.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 387, + 125.5, + 488, + 169.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 371, + 181, + 505, + 259 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 371, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 371, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "Figure 5: Stable rank of the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 371, + 193, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 371, + 193, + 505, + 204 + ], + "score": 1.0, + "content": "residual gradient matrix versus", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 371, + 204, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 371, + 204, + 505, + 215 + ], + "score": 1.0, + "content": "original gradient matrix. The", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 371, + 216, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 371, + 216, + 505, + 226 + ], + "score": 1.0, + "content": "gradients are computed on full", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 370, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 370, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "batch data for the first stage in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 371, + 236, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 371, + 236, + 506, + 248 + ], + "score": 1.0, + "content": "ResNet20. The dimension of an-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 371, + 248, + 483, + 259 + ], + "spans": [ + { + "bbox": [ + 371, + 248, + 439, + 259 + ], + "score": 1.0, + "content": "chor subspace is", + "type": "text" + }, + { + "bbox": [ + 439, + 248, + 479, + 258 + ], + "score": 0.9, + "content": "k = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 248, + 483, + 259 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 18 + } + ], + "index": 12.75 + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 504, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 172, + 303 + ], + "score": 1.0, + "content": "Remark 1. Let", + "type": "text" + }, + { + "bbox": [ + 172, + 289, + 231, + 302 + ], + "score": 0.92, + "content": "\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 289, + 497, + 303 + ], + "score": 1.0, + "content": "be the reconstructed gradient from noisy gradient embedding and", + "type": "text" + }, + { + "bbox": [ + 497, + 291, + 504, + 300 + ], + "score": 0.6, + "content": "\\tilde { v }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 301, + 398, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 301, + 398, + 314 + ], + "score": 1.0, + "content": "be the output of GEP. If ignoring the effect of gradient clipping, we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 289, + 504, + 314 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 320, + 367, + 333 + ], + "lines": [ + { + "bbox": [ + 243, + 320, + 367, + 333 + ], + "spans": [ + { + "bbox": [ + 243, + 320, + 367, + 333 + ], + "score": 0.91, + "content": "\\mathbb { E } [ \\tilde { \\pmb { u } } ] = \\pmb { g } - \\pmb { r } / n , \\quad \\mathbb { E } [ \\tilde { \\pmb { v } } ] = \\pmb { g } .", + "type": "interline_equation", + "image_path": "6433a0fa742a5dbd2a1bab2228b73e35eedbb8fa46cbe12952ed2dc569e478a4.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 243, + 320, + 367, + 333 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 346, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 505, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 134, + 359 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 346, + 184, + 359 + ], + "score": 0.91, + "content": "\\begin{array} { r } { { \\pmb r } = \\sum _ { i } { \\pmb R } _ { i } , } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 345, + 342, + 359 + ], + "score": 1.0, + "content": ": is the aggregated residual gradients,", + "type": "text" + }, + { + "bbox": [ + 343, + 347, + 366, + 358 + ], + "score": 0.9, + "content": "\\tilde { \\pmb { w } } , \\pmb { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 345, + 505, + 359 + ], + "score": 1.0, + "content": "are given in Algorithm 1 and the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 357, + 288, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 288, + 370 + ], + "score": 1.0, + "content": "expectation is over the added random noises.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 345, + 505, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 379, + 506, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 181, + 391 + ], + "score": 1.0, + "content": "This indicates that", + "type": "text" + }, + { + "bbox": [ + 182, + 380, + 190, + 389 + ], + "score": 0.78, + "content": "\\tilde { \\mathbf { \\pmb { u } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 379, + 344, + 391 + ], + "score": 1.0, + "content": "contains a systematic error that makes", + "type": "text" + }, + { + "bbox": [ + 344, + 380, + 352, + 389 + ], + "score": 0.81, + "content": "\\tilde { \\mathbf { \\pmb { u } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 379, + 435, + 391 + ], + "score": 1.0, + "content": "always deviate from", + "type": "text" + }, + { + "bbox": [ + 436, + 381, + 443, + 390 + ], + "score": 0.79, + "content": "\\textbf { { g } }", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 379, + 505, + 391 + ], + "score": 1.0, + "content": "by the residual", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 403 + ], + "score": 1.0, + "content": "gradient. This systematic error is the projection error, which is plotted in Figure 4. The systematic", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 414 + ], + "score": 1.0, + "content": "error cannot be mitigated by reducing the noise magnitude (e.g., increasing the privacy budget or", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 412, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 361, + 424 + ], + "score": 1.0, + "content": "collecting more private data). We refer to the algorithm releasing", + "type": "text" + }, + { + "bbox": [ + 361, + 413, + 370, + 423 + ], + "score": 0.8, + "content": "\\tilde { \\mathbf { \\pmb { u } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 412, + 474, + 424 + ], + "score": 1.0, + "content": "directly as Biased-GEP or", + "type": "text" + }, + { + "bbox": [ + 474, + 413, + 482, + 422 + ], + "score": 0.39, + "content": "B", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 412, + 506, + 424 + ], + "score": 1.0, + "content": "-GEP", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "score": 1.0, + "content": "for short, which can be viewed as an efficient implementation of the algorithm in (Zhou et al., 2020).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 434, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 438, + 447 + ], + "score": 1.0, + "content": "In our experiments, B-GEP can outperform standard gradient perturbation when", + "type": "text" + }, + { + "bbox": [ + 439, + 435, + 446, + 444 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 434, + 506, + 447 + ], + "score": 1.0, + "content": "is large but is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 444, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 458 + ], + "score": 1.0, + "content": "inferior to GEP. We note that the above remark is made with ignoring the clipping effect (or set a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "large clipping threshold). In practice, we do apply clipping for the individual gradients at each time", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 479 + ], + "score": 1.0, + "content": "step, which makes the expectations in Remark 1 obscure (Chen et al., 2020b). We note that the claim", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 477, + 456, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 124, + 491 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 479, + 131, + 487 + ], + "score": 0.82, + "content": "\\tilde { v }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 477, + 241, + 491 + ], + "score": 1.0, + "content": "is an unbiased estimator of", + "type": "text" + }, + { + "bbox": [ + 241, + 479, + 249, + 489 + ], + "score": 0.81, + "content": "\\textbf { { g } }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 477, + 456, + 491 + ], + "score": 1.0, + "content": "is not that precise when applying gradient clipping.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 379, + 506, + 491 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 502, + 410, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 411, + 514 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 411, + 514 + ], + "score": 1.0, + "content": "3.3 PRIVATE LEARNING WITH GRADIENT EMBEDDING PERTURBATION", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 507, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 507, + 533 + ], + "score": 1.0, + "content": "GEP (Algorithm 1) describes how to release one-step gradient with privacy guarantee. In this section,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "we compose the privacy losses at each step to establish the privacy guarantee for the whole learning", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "process. The differentially private learning process with GEP is given in Algorithm 2 and the privacy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 554, + 257, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 554, + 257, + 565 + ], + "score": 1.0, + "content": "analysis is presented in Theorem 3.2.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 520, + 507, + 565 + ] + }, + { + "type": "table", + "bbox": [ + 110, + 596, + 482, + 693 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 581, + 359, + 594 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 580, + 361, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 580, + 361, + 596 + ], + "score": 1.0, + "content": "Algorithm 2: Differentially private gradient descent with GEP.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "table_body", + "bbox": [ + 110, + 596, + 482, + 693 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 596, + 482, + 693 + ], + "spans": [ + { + "bbox": [ + 110, + 596, + 482, + 693 + ], + "score": 0.738, + "html": "
configuration of GEP C; loss function l;1: Input: private dataset D; auxiliary dataset D(@); number of updates T; learning rate n;
2: Output: Differentially private model 0T.
3: fort=OtoT-1do
4:Compute the private gradients Gt and anchor gradients G(@) of loss with respect to 0t.
5: and configuration C to get Ut.
6: 7: end forUpdate model 0t+1 = 0t - nUt.
", + "type": "table", + "image_path": "48a8b9321b51c14a553b73b1f0e05a2f89514c36c6ba6a448e737c6f9cdf47c0.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 110, + 596, + 482, + 628.3333333333334 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 110, + 628.3333333333334, + 482, + 660.6666666666667 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 110, + 660.6666666666667, + 482, + 693.0000000000001 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "index": 43.0 + }, + { + "type": "text", + "bbox": [ + 106, + 707, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 106, + 705, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 200, + 722 + ], + "score": 1.0, + "content": "Theorem 3.2. For any", + "type": "text" + }, + { + "bbox": [ + 200, + 708, + 260, + 720 + ], + "score": 0.9, + "content": "\\epsilon < 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 705, + 279, + 722 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 708, + 318, + 720 + ], + "score": 0.92, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 705, + 457, + 722 + ], + "score": 1.0, + "content": ", the output of Algorithm 2 satisfies", + "type": "text" + }, + { + "bbox": [ + 458, + 708, + 479, + 720 + ], + "score": 0.86, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 705, + 507, + 722 + ], + "score": 1.0, + "content": "-DP if", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 718, + 230, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 133, + 732 + ], + "score": 1.0, + "content": "we set", + "type": "text" + }, + { + "bbox": [ + 134, + 719, + 227, + 733 + ], + "score": 0.93, + "content": "\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 718, + 230, + 732 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46.5, + "bbox_fs": [ + 106, + 705, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "If the private gradients are randomly sampled from the full batch gradients, the privacy guarantee", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "can be strengthened via the privacy amplification by subsampling theorem of DP (Balle et al., 2018;", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Wang et al., 2019; Zhu & Wang, 2019; Mironov et al., 2019). Theorem 3.3 gives the expected excess", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "error of Algorithm 2. Expected excess error measures the distance between the algorithm’s output", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 266, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 266, + 139 + ], + "score": 1.0, + "content": "and the optimal solution in expectation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 505, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 507, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 242, + 156 + ], + "score": 1.0, + "content": "Theorem 3.3. Suppose the loss", + "type": "text" + }, + { + "bbox": [ + 242, + 140, + 377, + 155 + ], + "score": 0.92, + "content": "\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 139, + 390, + 156 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 390, + 142, + 396, + 151 + ], + "score": 0.52, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 139, + 495, + 156 + ], + "score": 1.0, + "content": "-Lipschitz, convex, and", + "type": "text" + }, + { + "bbox": [ + 495, + 141, + 502, + 153 + ], + "score": 0.81, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 139, + 507, + 156 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 158, + 171 + ], + "score": 1.0, + "content": "smooth. If", + "type": "text" + }, + { + "bbox": [ + 159, + 155, + 194, + 171 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 154, + 200, + 171 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 201, + 155, + 245, + 172 + ], + "score": 0.91, + "content": "\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 154, + 272, + 171 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 155, + 345, + 170 + ], + "score": 0.92, + "content": "\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 154, + 415, + 171 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + }, + { + "bbox": [ + 415, + 155, + 505, + 169 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 171, + 508, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 237, + 197 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 172, + 268, + 194 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 268, + 175, + 335, + 191 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\bar { r } = \\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 172, + 353, + 194 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 354, + 177, + 438, + 190 + ], + "score": 0.91, + "content": "r _ { t } = \\operatorname* { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 172, + 508, + 194 + ], + "score": 1.0, + "content": "is the sensitivity", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 195, + 225, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 216, + 208 + ], + "score": 1.0, + "content": "of residual gradient at step", + "type": "text" + }, + { + "bbox": [ + 217, + 197, + 221, + 205 + ], + "score": 0.44, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 195, + 225, + 208 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 125, + 228 + ], + "score": 1.0, + "content": "The", + "type": "text" + }, + { + "bbox": [ + 125, + 217, + 132, + 226 + ], + "score": 0.72, + "content": "\\bar { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "term represents the average projection error over the training process. The previous best", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 227, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 312, + 242 + ], + "score": 1.0, + "content": "expected excess error for gradient perturbation is", + "type": "text" + }, + { + "bbox": [ + 312, + 227, + 403, + 240 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\sqrt { p \\log ( 1 / \\delta ) } / ( n \\epsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 227, + 506, + 242 + ], + "score": 1.0, + "content": "(Wang et al., 2017). As", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 303, + 253 + ], + "score": 1.0, + "content": "shown in Lemma 3.1, if the gradients locate in a", + "type": "text" + }, + { + "bbox": [ + 303, + 240, + 309, + 249 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 238, + 506, + 253 + ], + "score": 1.0, + "content": "-dimensional subspace over the training process,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 250, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 107, + 252, + 131, + 262 + ], + "score": 0.88, + "content": "\\bar { r } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 250, + 221, + 266 + ], + "score": 1.0, + "content": "and the excess error is", + "type": "text" + }, + { + "bbox": [ + 222, + 250, + 313, + 264 + ], + "score": 0.94, + "content": "\\mathcal { O } ( \\sqrt { k \\log ( 1 / \\delta ) } / ( n \\epsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 250, + 506, + 266 + ], + "score": 1.0, + "content": ", independent of the problem ambient dimension", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 262, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 113, + 274 + ], + "score": 0.68, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 262, + 506, + 276 + ], + "score": 1.0, + "content": ". When the gradients are in general position, i.e., gradient matrix is not exact low-rank, Lemma 3.2", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "and the empirical result give a hint on how small the residual gradients could be. However, it is hard to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 190, + 298 + ], + "score": 1.0, + "content": "get a good bound on", + "type": "text" + }, + { + "bbox": [ + 190, + 284, + 252, + 297 + ], + "score": 0.92, + "content": "\\operatorname { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 284, + 506, + 298 + ], + "score": 1.0, + "content": "and the bound in Theorem 3.3 does not explicitly improve over", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "previous result. One possible solution is to use a clipping threshold based on the expected residual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 305, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 305, + 506, + 321 + ], + "score": 1.0, + "content": "gradient norm. Then the output gradient becomes biased because of clipping and the utility/privacy", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 486, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 200, + 330 + ], + "score": 1.0, + "content": "guarantees in Theorem", + "type": "text" + }, + { + "bbox": [ + 200, + 318, + 230, + 328 + ], + "score": 0.42, + "content": "3 . 3 / 3 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 317, + 486, + 330 + ], + "score": 1.0, + "content": "require new elaborate derivation. We leave this for future work.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 339, + 200, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 338, + 201, + 354 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 201, + 354 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "score": 1.0, + "content": "We conduct experiments on MNIST, extended SVHN, and CIFAR-10 datasets. Our implementation", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 367, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 367, + 506, + 383 + ], + "score": 1.0, + "content": "is publicly available2. The model for MNIST has two convolutional layers with max-pooling and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "score": 1.0, + "content": "one fully connected layer. The model for SVHN and CIFAR-10 is ResNet20 in He et al. (2016). We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 404 + ], + "score": 1.0, + "content": "replace all batch normalization (Ioffe & Szegedy, 2015) layers with group normalization (Wu & He,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "2018) layers because batch normalization mixes the representations of different samples and makes", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "the privacy loss cannot be analyzed accurately. The non-private accuracy for MNIST, SVHN, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 423, + 321, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 159, + 437 + ], + "score": 1.0, + "content": "CIFAR-10 is", + "type": "text" + }, + { + "bbox": [ + 160, + 424, + 187, + 435 + ], + "score": 0.82, + "content": "9 9 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 423, + 190, + 437 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 190, + 424, + 218, + 435 + ], + "score": 0.83, + "content": "9 5 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 423, + 238, + 437 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 238, + 424, + 265, + 435 + ], + "score": 0.84, + "content": "9 0 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 423, + 321, + 437 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "We also provide experiments with pre-trained models in Appendix A. Tramèr & Boneh (2020) show", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "score": 1.0, + "content": "that differentially private linear classifier can achieve high accuracy using the features produced by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 462, + 507, + 476 + ], + "spans": [ + { + "bbox": [ + 104, + 462, + 507, + 476 + ], + "score": 1.0, + "content": "pre-trained models. We examine whether GEP can improve the performance of such private linear", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "classifiers. Notably, using the features produced by a model pre-trained on unlabeled ImageNet, GEP", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 485, + 352, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 142, + 497 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + }, + { + "bbox": [ + 143, + 485, + 170, + 496 + ], + "score": 0.85, + "content": "9 4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 485, + 324, + 497 + ], + "score": 1.0, + "content": "validation accuracy on CIFAR10 with", + "type": "text" + }, + { + "bbox": [ + 325, + 486, + 348, + 495 + ], + "score": 0.89, + "content": "\\epsilon = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 485, + 352, + 497 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 505, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 506, + 515 + ], + "score": 1.0, + "content": "Evaluated algorithms We use the algorithm in Abadi et al. (2016) as benchmark gradient perturba-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "tion approach, referred to as “GP”. We also compare GEP with PATE (Papernot et al., 2017). We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 461, + 537 + ], + "score": 1.0, + "content": "run the experiments for PATE using the official implementation. The privacy parameter", + "type": "text" + }, + { + "bbox": [ + 462, + 526, + 468, + 534 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "of PATE", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 549 + ], + "score": 1.0, + "content": "is data-dependent and hence cannot be released directly (see Section 3.3 in Papernot et al. (2017)).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 545, + 315, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 315, + 560 + ], + "score": 1.0, + "content": "Nonetheless, we report the results of PATE anyway.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 506, + 575 + ], + "score": 1.0, + "content": "Implementation details At each step, GEP needs to release two vectors: the noisy gradient em-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 474, + 587 + ], + "score": 1.0, + "content": "bedding and the noisy residual gradient. The gradient embeddings have a sensitivity of", + "type": "text" + }, + { + "bbox": [ + 474, + 574, + 486, + 585 + ], + "score": 0.88, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 285, + 598 + ], + "score": 1.0, + "content": "the residual gradients have a sensitivity of", + "type": "text" + }, + { + "bbox": [ + 286, + 585, + 298, + 596 + ], + "score": 0.89, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "because of the clipping. The output of GEP can", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 595, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 482, + 609 + ], + "score": 1.0, + "content": "be constructed as follows: (1) normalize the gradient embeddings and residual gradients by", + "type": "text" + }, + { + "bbox": [ + 483, + 595, + 504, + 608 + ], + "score": 0.9, + "content": "1 / S _ { 1 }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 123, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 606, + 145, + 619 + ], + "score": 0.91, + "content": "1 / S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 606, + 506, + 620 + ], + "score": 1.0, + "content": ", respectively, (2) concatenate the rescaled vectors, (3) release the concatenated vector via√", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 253, + 632 + ], + "score": 1.0, + "content": "gaussian mechanism with sensitivity", + "type": "text" + }, + { + "bbox": [ + 253, + 618, + 267, + 630 + ], + "score": 0.89, + "content": "\\sqrt { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 618, + 408, + 632 + ], + "score": 1.0, + "content": ", (4) rescale the two components by", + "type": "text" + }, + { + "bbox": [ + 408, + 619, + 420, + 630 + ], + "score": 0.88, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 618, + 438, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 438, + 619, + 450, + 630 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 618, + 506, + 632 + ], + "score": 1.0, + "content": ". B-GEP only", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "score": 1.0, + "content": "needs to release the normalized noisy gradient embedding. We use the numerical tool in Mironov", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 641, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 474, + 654 + ], + "score": 1.0, + "content": "et al. (2019) to compute the privacy loss. For given privacy budget and sampling probability,", + "type": "text" + }, + { + "bbox": [ + 474, + 643, + 481, + 651 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 641, + 506, + 654 + ], + "score": 1.0, + "content": "is set", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 651, + 456, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 456, + 666 + ], + "score": 1.0, + "content": "to be the smallest value such that the privacy budget is allowable to run desired epochs.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "All experiments are run on a single Tesla V100 GPU with 16G memory. For ResNet20, the parameters", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "are divided into five groups: input layer, output layer, and three intermediate stages. For a given", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "quota of basis vectors, we allocate it to each group according to the square root of the number of", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 702, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 506, + 715 + ], + "score": 1.0, + "content": "parameters in each group. We compute an orthonormal subspace basis on each group separately.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 116, + 722, + 432, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 720, + 433, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 720, + 433, + 734 + ], + "score": 1.0, + "content": "2https://github.com/dayu11/Gradient-Embedding-Perturbation", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 300, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 11, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "If the private gradients are randomly sampled from the full batch gradients, the privacy guarantee", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "can be strengthened via the privacy amplification by subsampling theorem of DP (Balle et al., 2018;", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "Wang et al., 2019; Zhu & Wang, 2019; Mironov et al., 2019). Theorem 3.3 gives the expected excess", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "error of Algorithm 2. Expected excess error measures the distance between the algorithm’s output", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 266, + 139 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 266, + 139 + ], + "score": 1.0, + "content": "and the optimal solution in expectation.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 81, + 506, + 139 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 140, + 505, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 139, + 507, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 139, + 242, + 156 + ], + "score": 1.0, + "content": "Theorem 3.3. Suppose the loss", + "type": "text" + }, + { + "bbox": [ + 242, + 140, + 377, + 155 + ], + "score": 0.92, + "content": "\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 139, + 390, + 156 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 390, + 142, + 396, + 151 + ], + "score": 0.52, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 139, + 495, + 156 + ], + "score": 1.0, + "content": "-Lipschitz, convex, and", + "type": "text" + }, + { + "bbox": [ + 495, + 141, + 502, + 153 + ], + "score": 0.81, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 139, + 507, + 156 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 158, + 171 + ], + "score": 1.0, + "content": "smooth. If", + "type": "text" + }, + { + "bbox": [ + 159, + 155, + 194, + 171 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 154, + 200, + 171 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 201, + 155, + 245, + 172 + ], + "score": 0.91, + "content": "\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 154, + 272, + 171 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 272, + 155, + 345, + 170 + ], + "score": 0.92, + "content": "\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 154, + 415, + 171 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + }, + { + "bbox": [ + 415, + 155, + 505, + 169 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 171, + 508, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 237, + 197 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 172, + 268, + 194 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 268, + 175, + 335, + 191 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\bar { r } = \\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 172, + 353, + 194 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 354, + 177, + 438, + 190 + ], + "score": 0.91, + "content": "r _ { t } = \\operatorname* { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 172, + 508, + 194 + ], + "score": 1.0, + "content": "is the sensitivity", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 195, + 225, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 216, + 208 + ], + "score": 1.0, + "content": "of residual gradient at step", + "type": "text" + }, + { + "bbox": [ + 217, + 197, + 221, + 205 + ], + "score": 0.44, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 195, + 225, + 208 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 139, + 508, + 208 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 125, + 228 + ], + "score": 1.0, + "content": "The", + "type": "text" + }, + { + "bbox": [ + 125, + 217, + 132, + 226 + ], + "score": 0.72, + "content": "\\bar { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 216, + 506, + 228 + ], + "score": 1.0, + "content": "term represents the average projection error over the training process. The previous best", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 227, + 506, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 312, + 242 + ], + "score": 1.0, + "content": "expected excess error for gradient perturbation is", + "type": "text" + }, + { + "bbox": [ + 312, + 227, + 403, + 240 + ], + "score": 0.93, + "content": "\\mathcal { O } ( \\sqrt { p \\log ( 1 / \\delta ) } / ( n \\epsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 227, + 506, + 242 + ], + "score": 1.0, + "content": "(Wang et al., 2017). As", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 238, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 303, + 253 + ], + "score": 1.0, + "content": "shown in Lemma 3.1, if the gradients locate in a", + "type": "text" + }, + { + "bbox": [ + 303, + 240, + 309, + 249 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 238, + 506, + 253 + ], + "score": 1.0, + "content": "-dimensional subspace over the training process,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 250, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 107, + 252, + 131, + 262 + ], + "score": 0.88, + "content": "\\bar { r } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 250, + 221, + 266 + ], + "score": 1.0, + "content": "and the excess error is", + "type": "text" + }, + { + "bbox": [ + 222, + 250, + 313, + 264 + ], + "score": 0.94, + "content": "\\mathcal { O } ( \\sqrt { k \\log ( 1 / \\delta ) } / ( n \\epsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 250, + 506, + 266 + ], + "score": 1.0, + "content": ", independent of the problem ambient dimension", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 262, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 113, + 274 + ], + "score": 0.68, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 262, + 506, + 276 + ], + "score": 1.0, + "content": ". When the gradients are in general position, i.e., gradient matrix is not exact low-rank, Lemma 3.2", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "and the empirical result give a hint on how small the residual gradients could be. However, it is hard to", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 190, + 298 + ], + "score": 1.0, + "content": "get a good bound on", + "type": "text" + }, + { + "bbox": [ + 190, + 284, + 252, + 297 + ], + "score": 0.92, + "content": "\\operatorname { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 284, + 506, + 298 + ], + "score": 1.0, + "content": "and the bound in Theorem 3.3 does not explicitly improve over", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "previous result. One possible solution is to use a clipping threshold based on the expected residual", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 305, + 506, + 321 + ], + "spans": [ + { + "bbox": [ + 104, + 305, + 506, + 321 + ], + "score": 1.0, + "content": "gradient norm. Then the output gradient becomes biased because of clipping and the utility/privacy", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 317, + 486, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 200, + 330 + ], + "score": 1.0, + "content": "guarantees in Theorem", + "type": "text" + }, + { + "bbox": [ + 200, + 318, + 230, + 328 + ], + "score": 0.42, + "content": "3 . 3 / 3 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 317, + 486, + 330 + ], + "score": 1.0, + "content": "require new elaborate derivation. We leave this for future work.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 216, + 506, + 330 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 339, + 200, + 352 + ], + "lines": [ + { + "bbox": [ + 104, + 338, + 201, + 354 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 201, + 354 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "score": 1.0, + "content": "We conduct experiments on MNIST, extended SVHN, and CIFAR-10 datasets. Our implementation", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 367, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 104, + 367, + 506, + 383 + ], + "score": 1.0, + "content": "is publicly available2. The model for MNIST has two convolutional layers with max-pooling and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 392 + ], + "score": 1.0, + "content": "one fully connected layer. The model for SVHN and CIFAR-10 is ResNet20 in He et al. (2016). We", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 506, + 404 + ], + "score": 1.0, + "content": "replace all batch normalization (Ioffe & Szegedy, 2015) layers with group normalization (Wu & He,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 506, + 415 + ], + "score": 1.0, + "content": "2018) layers because batch normalization mixes the representations of different samples and makes", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 505, + 426 + ], + "score": 1.0, + "content": "the privacy loss cannot be analyzed accurately. The non-private accuracy for MNIST, SVHN, and", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 423, + 321, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 159, + 437 + ], + "score": 1.0, + "content": "CIFAR-10 is", + "type": "text" + }, + { + "bbox": [ + 160, + 424, + 187, + 435 + ], + "score": 0.82, + "content": "9 9 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 423, + 190, + 437 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 190, + 424, + 218, + 435 + ], + "score": 0.83, + "content": "9 5 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 423, + 238, + 437 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 238, + 424, + 265, + 435 + ], + "score": 0.84, + "content": "9 0 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 423, + 321, + 437 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 104, + 357, + 506, + 437 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 505, + 453 + ], + "score": 1.0, + "content": "We also provide experiments with pre-trained models in Appendix A. Tramèr & Boneh (2020) show", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 466 + ], + "score": 1.0, + "content": "that differentially private linear classifier can achieve high accuracy using the features produced by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 462, + 507, + 476 + ], + "spans": [ + { + "bbox": [ + 104, + 462, + 507, + 476 + ], + "score": 1.0, + "content": "pre-trained models. We examine whether GEP can improve the performance of such private linear", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "classifiers. Notably, using the features produced by a model pre-trained on unlabeled ImageNet, GEP", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 485, + 352, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 142, + 497 + ], + "score": 1.0, + "content": "achieves", + "type": "text" + }, + { + "bbox": [ + 143, + 485, + 170, + 496 + ], + "score": 0.85, + "content": "9 4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 485, + 324, + 497 + ], + "score": 1.0, + "content": "validation accuracy on CIFAR10 with", + "type": "text" + }, + { + "bbox": [ + 325, + 486, + 348, + 495 + ], + "score": 0.89, + "content": "\\epsilon = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 485, + 352, + 497 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 441, + 507, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 501, + 505, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 506, + 515 + ], + "score": 1.0, + "content": "Evaluated algorithms We use the algorithm in Abadi et al. (2016) as benchmark gradient perturba-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "tion approach, referred to as “GP”. We also compare GEP with PATE (Papernot et al., 2017). We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 524, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 461, + 537 + ], + "score": 1.0, + "content": "run the experiments for PATE using the official implementation. The privacy parameter", + "type": "text" + }, + { + "bbox": [ + 462, + 526, + 468, + 534 + ], + "score": 0.73, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 524, + 506, + 537 + ], + "score": 1.0, + "content": "of PATE", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 506, + 549 + ], + "score": 1.0, + "content": "is data-dependent and hence cannot be released directly (see Section 3.3 in Papernot et al. (2017)).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 545, + 315, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 315, + 560 + ], + "score": 1.0, + "content": "Nonetheless, we report the results of PATE anyway.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 501, + 506, + 560 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 506, + 575 + ], + "score": 1.0, + "content": "Implementation details At each step, GEP needs to release two vectors: the noisy gradient em-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 474, + 587 + ], + "score": 1.0, + "content": "bedding and the noisy residual gradient. The gradient embeddings have a sensitivity of", + "type": "text" + }, + { + "bbox": [ + 474, + 574, + 486, + 585 + ], + "score": 0.88, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 285, + 598 + ], + "score": 1.0, + "content": "the residual gradients have a sensitivity of", + "type": "text" + }, + { + "bbox": [ + 286, + 585, + 298, + 596 + ], + "score": 0.89, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 584, + 506, + 598 + ], + "score": 1.0, + "content": "because of the clipping. The output of GEP can", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 595, + 504, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 482, + 609 + ], + "score": 1.0, + "content": "be constructed as follows: (1) normalize the gradient embeddings and residual gradients by", + "type": "text" + }, + { + "bbox": [ + 483, + 595, + 504, + 608 + ], + "score": 0.9, + "content": "1 / S _ { 1 }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 606, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 123, + 620 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 606, + 145, + 619 + ], + "score": 0.91, + "content": "1 / S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 606, + 506, + 620 + ], + "score": 1.0, + "content": ", respectively, (2) concatenate the rescaled vectors, (3) release the concatenated vector via√", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 253, + 632 + ], + "score": 1.0, + "content": "gaussian mechanism with sensitivity", + "type": "text" + }, + { + "bbox": [ + 253, + 618, + 267, + 630 + ], + "score": 0.89, + "content": "\\sqrt { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 618, + 408, + 632 + ], + "score": 1.0, + "content": ", (4) rescale the two components by", + "type": "text" + }, + { + "bbox": [ + 408, + 619, + 420, + 630 + ], + "score": 0.88, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 618, + 438, + 632 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 438, + 619, + 450, + 630 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 618, + 506, + 632 + ], + "score": 1.0, + "content": ". B-GEP only", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 506, + 643 + ], + "score": 1.0, + "content": "needs to release the normalized noisy gradient embedding. We use the numerical tool in Mironov", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 641, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 474, + 654 + ], + "score": 1.0, + "content": "et al. (2019) to compute the privacy loss. For given privacy budget and sampling probability,", + "type": "text" + }, + { + "bbox": [ + 474, + 643, + 481, + 651 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 641, + 506, + 654 + ], + "score": 1.0, + "content": "is set", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 651, + 456, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 456, + 666 + ], + "score": 1.0, + "content": "to be the smallest value such that the privacy budget is allowable to run desired epochs.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 562, + 506, + 666 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "All experiments are run on a single Tesla V100 GPU with 16G memory. For ResNet20, the parameters", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "are divided into five groups: input layer, output layer, and three intermediate stages. For a given", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 506, + 704 + ], + "score": 1.0, + "content": "quota of basis vectors, we allocate it to each group according to the square root of the number of", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 702, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 702, + 506, + 715 + ], + "score": 1.0, + "content": "parameters in each group. We compute an orthonormal subspace basis on each group separately.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 669, + 506, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 155, + 113, + 456, + 252 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 89, + 504, + 111 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 209, + 102 + ], + "score": 1.0, + "content": "Table 1: Test accuracy (in", + "type": "text" + }, + { + "bbox": [ + 210, + 90, + 219, + 100 + ], + "score": 0.61, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 88, + 375, + 102 + ], + "score": 1.0, + "content": ") with varying choices of privacy bound", + "type": "text" + }, + { + "bbox": [ + 376, + 92, + 381, + 99 + ], + "score": 0.4, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 88, + 495, + 102 + ], + "score": 1.0, + "content": ". The numbers under symbol", + "type": "text" + }, + { + "bbox": [ + 495, + 90, + 505, + 99 + ], + "score": 0.64, + "content": "\\Delta", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 101, + 277, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 277, + 112 + ], + "score": 1.0, + "content": "denote the improvement over GP baseline.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 155, + 113, + 456, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 113, + 456, + 252 + ], + "spans": [ + { + "bbox": [ + 155, + 113, + 456, + 252 + ], + "score": 0.975, + "html": "
Dataset Algorithme=2Ae=5Ae=8A
GPPATEMNISTB-GEPGEP94.7+0.096.8+0.097.2+0.0
PATE98.5+3.898.5+1.798.6+1.4
B-GEP93.1-1.694.5-2.395.9-1.3
96.3+1.697.9+1.198.4+1.2
SVHNGP87.1+0.091.3+0.091.6+0.0
PATE80.7-6.491.6+0.391.6+0.0
B-GEP88.5+1.491.8+0.592.3+0.7
GEP92.3+5.294.7+3.495.1+3.5
CIFAR-10GP43.6+0.052.2+0.056.4+0.0
PATE34.2-9.441.9-10.343.6-12.8
B-GEP50.3+6.759.5+7.363.0+6.6
GEP59.7+16.170.1+17.974.9+18.5
", + "type": "table", + "image_path": "cca7e7dd6e5514993cd679f864e126dd899a16e09afd1abab60c6677599354d0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 155, + 113, + 456, + 159.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 155, + 159.33333333333334, + 456, + 205.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 155, + 205.66666666666669, + 456, + 252.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "image", + "bbox": [ + 156, + 266, + 453, + 339 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 156, + 266, + 453, + 339 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 266, + 453, + 339 + ], + "spans": [ + { + "bbox": [ + 156, + 266, + 453, + 339 + ], + "score": 0.957, + "type": "image", + "image_path": "fa6a5f6d7a35fa34dec7a6cf45765314549eb5a963274140f2a890e59cd1e7d0.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 156, + 266, + 453, + 290.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 156, + 290.3333333333333, + 453, + 314.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 156, + 314.66666666666663, + 453, + 338.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 352, + 504, + 375 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Figure 6: Test accuracy when varying the dimension of anchor subspace. GEP significantly outper-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 363, + 443, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 190, + 376 + ], + "score": 1.0, + "content": "forms B-GEP for all", + "type": "text" + }, + { + "bbox": [ + 190, + 364, + 197, + 374 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 363, + 433, + 376 + ], + "score": 1.0, + "content": ". Moreover, the performance of GEP is not that sensitive to", + "type": "text" + }, + { + "bbox": [ + 433, + 364, + 440, + 374 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 363, + 443, + 376 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Then we concatenate the projections of all groups to construct gradient embeddings. The number", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 184, + 420 + ], + "score": 1.0, + "content": "of power iterations", + "type": "text" + }, + { + "bbox": [ + 185, + 409, + 190, + 417 + ], + "score": 0.76, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "is set as 1 as empirical evaluations suggest more iterations do not improve the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 419, + 244, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 244, + 430 + ], + "score": 1.0, + "content": "performance for GEP and B-GEP.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 435, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "For all datasets, the anchor gradients are computed on 2000 random samples from ImageNet. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 447, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 506, + 459 + ], + "score": 1.0, + "content": "Appendix C, we examine the influence of choosing different numbers of anchor gradients and different", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 418, + 469 + ], + "score": 1.0, + "content": "sources of auxiliary data. The selected images are downsampled into size of", + "type": "text" + }, + { + "bbox": [ + 418, + 457, + 452, + 468 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 457, + 456, + 469 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 456, + 457, + 490, + 468 + ], + "score": 0.88, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 457, + 506, + 469 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 469, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 435, + 480 + ], + "score": 1.0, + "content": "MNIST) and we label them randomly at each update. For SVHN and CIFAR-10,", + "type": "text" + }, + { + "bbox": [ + 435, + 469, + 442, + 479 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 469, + 505, + 480 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 342, + 492 + ], + "score": 1.0, + "content": "[500, 1000, 1500, 2000]. For MNIST, we halve the size of", + "type": "text" + }, + { + "bbox": [ + 343, + 480, + 349, + 489 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 479, + 505, + 492 + ], + "score": 1.0, + "content": ". We use SGD with momentum 0.9 as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "score": 1.0, + "content": "the optimizer. Initial learning rate and batchsize are 0.1 and 1000, respectively. The learning rate is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 344, + 514 + ], + "score": 1.0, + "content": "divided by 10 at middle of training. Weight decay is set as", + "type": "text" + }, + { + "bbox": [ + 344, + 501, + 383, + 512 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 501, + 506, + 514 + ], + "score": 1.0, + "content": ". The clipping threshold for is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "10 for original gradients and 2 for residual gradients. The number of training epochs for CIFAR-10", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 309, + 537 + ], + "score": 1.0, + "content": "and MNIST is 50, 100, 200 for privacy parameter", + "type": "text" + }, + { + "bbox": [ + 309, + 524, + 352, + 534 + ], + "score": 0.89, + "content": "\\epsilon = 2 , 5 , 8", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 523, + 506, + 537 + ], + "score": 1.0, + "content": ", respectively. The number of training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 315, + 547 + ], + "score": 1.0, + "content": "epochs for SVHN is 5, 10, 20 for privacy parameter", + "type": "text" + }, + { + "bbox": [ + 315, + 535, + 357, + 545 + ], + "score": 0.84, + "content": "\\epsilon = 2 , 5 , 8", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 534, + 488, + 547 + ], + "score": 1.0, + "content": ", respectively. Privacy parameter", + "type": "text" + }, + { + "bbox": [ + 489, + 535, + 495, + 544 + ], + "score": 0.74, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 544, + 358, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 145, + 556 + ], + "score": 0.91, + "content": "1 ^ { \\cdot } \\times 1 0 ^ { - 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 544, + 207, + 557 + ], + "score": 1.0, + "content": "for SVHN and", + "type": "text" + }, + { + "bbox": [ + 207, + 544, + 246, + 556 + ], + "score": 0.92, + "content": "\\mathrm { i } \\times \\mathrm { 1 0 ^ { - 5 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 544, + 358, + 557 + ], + "score": 1.0, + "content": "for CIFAR-10 and MNIST.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 262, + 574 + ], + "score": 1.0, + "content": "Results The best accuracy with given", + "type": "text" + }, + { + "bbox": [ + 262, + 564, + 268, + 572 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "is in Table 4. For all datasets, GEP achieves considerable", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 407, + 586 + ], + "score": 1.0, + "content": "improvement over GP in Abadi et al. (2016). Specifically, GEP achieves", + "type": "text" + }, + { + "bbox": [ + 408, + 573, + 435, + 584 + ], + "score": 0.87, + "content": "7 4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "test accuracy on", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 583, + 507, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 170, + 598 + ], + "score": 1.0, + "content": "CIFAR-10 with", + "type": "text" + }, + { + "bbox": [ + 171, + 583, + 208, + 596 + ], + "score": 0.89, + "content": "( 8 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 583, + 313, + 598 + ], + "score": 1.0, + "content": "-DP, outperforming GP by", + "type": "text" + }, + { + "bbox": [ + 313, + 584, + 340, + 595 + ], + "score": 0.87, + "content": "1 8 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 583, + 507, + 598 + ], + "score": 1.0, + "content": ". PATE achieves best accuracy on MNIST", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 595, + 366, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 366, + 607 + ], + "score": 1.0, + "content": "but its performance drops as the dataset becomes more complex.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 505, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 504, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 293, + 623 + ], + "score": 1.0, + "content": "We also plot the relation between accuracy and", + "type": "text" + }, + { + "bbox": [ + 293, + 612, + 300, + 622 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 612, + 497, + 623 + ], + "score": 1.0, + "content": "in Figure 6. GEP is less sensitive to the choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 612, + 504, + 622 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 623, + 504, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 273, + 635 + ], + "score": 1.0, + "content": "and outperforms B-GEP for all choices of", + "type": "text" + }, + { + "bbox": [ + 273, + 623, + 280, + 633 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 623, + 410, + 635 + ], + "score": 1.0, + "content": ". The improvement of increasing", + "type": "text" + }, + { + "bbox": [ + 410, + 623, + 417, + 633 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 623, + 497, + 635 + ], + "score": 1.0, + "content": "becomes smaller as", + "type": "text" + }, + { + "bbox": [ + 497, + 623, + 504, + 633 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 359, + 646 + ], + "score": 1.0, + "content": "becomes larger. We note that the memory cost of choosing large", + "type": "text" + }, + { + "bbox": [ + 360, + 634, + 366, + 644 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 634, + 506, + 646 + ], + "score": 1.0, + "content": "is high because we need to store at", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 645, + 334, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 127, + 657 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 127, + 645, + 134, + 655 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 645, + 334, + 657 + ], + "score": 1.0, + "content": "individual gradients to compute anchor subspace.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 195, + 680 + ], + "lines": [ + { + "bbox": [ + 104, + 666, + 198, + 683 + ], + "spans": [ + { + "bbox": [ + 104, + 666, + 198, + 683 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "In this paper, we propose Gradient Embedding Perturbation (GEP) for learning with differential", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "privacy. GEP leverages the gradient redundancy to reduce the added noise and outputs an unbiased", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "estimator of target gradient. The several key designs of GEP significantly boost the applicability of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 471, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 471, + 732 + ], + "score": 1.0, + "content": "GEP. Extensive experiments on real world datasets demonstrate the superior utility of GEP.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 155, + 113, + 456, + 252 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 89, + 504, + 111 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 88, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 105, + 88, + 209, + 102 + ], + "score": 1.0, + "content": "Table 1: Test accuracy (in", + "type": "text" + }, + { + "bbox": [ + 210, + 90, + 219, + 100 + ], + "score": 0.61, + "content": "\\%", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 88, + 375, + 102 + ], + "score": 1.0, + "content": ") with varying choices of privacy bound", + "type": "text" + }, + { + "bbox": [ + 376, + 92, + 381, + 99 + ], + "score": 0.4, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 88, + 495, + 102 + ], + "score": 1.0, + "content": ". The numbers under symbol", + "type": "text" + }, + { + "bbox": [ + 495, + 90, + 505, + 99 + ], + "score": 0.64, + "content": "\\Delta", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 101, + 277, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 277, + 112 + ], + "score": 1.0, + "content": "denote the improvement over GP baseline.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 155, + 113, + 456, + 252 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 155, + 113, + 456, + 252 + ], + "spans": [ + { + "bbox": [ + 155, + 113, + 456, + 252 + ], + "score": 0.975, + "html": "
Dataset Algorithme=2Ae=5Ae=8A
GPPATEMNISTB-GEPGEP94.7+0.096.8+0.097.2+0.0
PATE98.5+3.898.5+1.798.6+1.4
B-GEP93.1-1.694.5-2.395.9-1.3
96.3+1.697.9+1.198.4+1.2
SVHNGP87.1+0.091.3+0.091.6+0.0
PATE80.7-6.491.6+0.391.6+0.0
B-GEP88.5+1.491.8+0.592.3+0.7
GEP92.3+5.294.7+3.495.1+3.5
CIFAR-10GP43.6+0.052.2+0.056.4+0.0
PATE34.2-9.441.9-10.343.6-12.8
B-GEP50.3+6.759.5+7.363.0+6.6
GEP59.7+16.170.1+17.974.9+18.5
", + "type": "table", + "image_path": "cca7e7dd6e5514993cd679f864e126dd899a16e09afd1abab60c6677599354d0.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 155, + 113, + 456, + 159.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 155, + 159.33333333333334, + 456, + 205.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 155, + 205.66666666666669, + 456, + 252.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "image", + "bbox": [ + 156, + 266, + 453, + 339 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 156, + 266, + 453, + 339 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 156, + 266, + 453, + 339 + ], + "spans": [ + { + "bbox": [ + 156, + 266, + 453, + 339 + ], + "score": 0.957, + "type": "image", + "image_path": "fa6a5f6d7a35fa34dec7a6cf45765314549eb5a963274140f2a890e59cd1e7d0.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 156, + 266, + 453, + 290.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 156, + 290.3333333333333, + 453, + 314.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 156, + 314.66666666666663, + 453, + 338.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 352, + 504, + 375 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 366 + ], + "score": 1.0, + "content": "Figure 6: Test accuracy when varying the dimension of anchor subspace. GEP significantly outper-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 363, + 443, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 190, + 376 + ], + "score": 1.0, + "content": "forms B-GEP for all", + "type": "text" + }, + { + "bbox": [ + 190, + 364, + 197, + 374 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 363, + 433, + 376 + ], + "score": 1.0, + "content": ". Moreover, the performance of GEP is not that sensitive to", + "type": "text" + }, + { + "bbox": [ + 433, + 364, + 440, + 374 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 363, + 443, + 376 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + } + ], + "index": 7.25 + }, + { + "type": "text", + "bbox": [ + 107, + 397, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Then we concatenate the projections of all groups to construct gradient embeddings. The number", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 184, + 420 + ], + "score": 1.0, + "content": "of power iterations", + "type": "text" + }, + { + "bbox": [ + 185, + 409, + 190, + 417 + ], + "score": 0.76, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "is set as 1 as empirical evaluations suggest more iterations do not improve the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 419, + 244, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 244, + 430 + ], + "score": 1.0, + "content": "performance for GEP and B-GEP.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 396, + 506, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 435, + 505, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "For all datasets, the anchor gradients are computed on 2000 random samples from ImageNet. In", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 447, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 506, + 459 + ], + "score": 1.0, + "content": "Appendix C, we examine the influence of choosing different numbers of anchor gradients and different", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 457, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 418, + 469 + ], + "score": 1.0, + "content": "sources of auxiliary data. The selected images are downsampled into size of", + "type": "text" + }, + { + "bbox": [ + 418, + 457, + 452, + 468 + ], + "score": 0.89, + "content": "3 2 \\times 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 457, + 456, + 469 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 456, + 457, + 490, + 468 + ], + "score": 0.88, + "content": "2 8 \\times 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 457, + 506, + 469 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 469, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 435, + 480 + ], + "score": 1.0, + "content": "MNIST) and we label them randomly at each update. For SVHN and CIFAR-10,", + "type": "text" + }, + { + "bbox": [ + 435, + 469, + 442, + 479 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 469, + 505, + 480 + ], + "score": 1.0, + "content": "is chosen from", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 342, + 492 + ], + "score": 1.0, + "content": "[500, 1000, 1500, 2000]. For MNIST, we halve the size of", + "type": "text" + }, + { + "bbox": [ + 343, + 480, + 349, + 489 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 479, + 505, + 492 + ], + "score": 1.0, + "content": ". We use SGD with momentum 0.9 as", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 506, + 503 + ], + "score": 1.0, + "content": "the optimizer. Initial learning rate and batchsize are 0.1 and 1000, respectively. The learning rate is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 344, + 514 + ], + "score": 1.0, + "content": "divided by 10 at middle of training. Weight decay is set as", + "type": "text" + }, + { + "bbox": [ + 344, + 501, + 383, + 512 + ], + "score": 0.92, + "content": "1 \\times 1 0 ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 501, + 506, + 514 + ], + "score": 1.0, + "content": ". The clipping threshold for is", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 525 + ], + "score": 1.0, + "content": "10 for original gradients and 2 for residual gradients. The number of training epochs for CIFAR-10", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 309, + 537 + ], + "score": 1.0, + "content": "and MNIST is 50, 100, 200 for privacy parameter", + "type": "text" + }, + { + "bbox": [ + 309, + 524, + 352, + 534 + ], + "score": 0.89, + "content": "\\epsilon = 2 , 5 , 8", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 523, + 506, + 537 + ], + "score": 1.0, + "content": ", respectively. The number of training", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 315, + 547 + ], + "score": 1.0, + "content": "epochs for SVHN is 5, 10, 20 for privacy parameter", + "type": "text" + }, + { + "bbox": [ + 315, + 535, + 357, + 545 + ], + "score": 0.84, + "content": "\\epsilon = 2 , 5 , 8", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 534, + 488, + 547 + ], + "score": 1.0, + "content": ", respectively. Privacy parameter", + "type": "text" + }, + { + "bbox": [ + 489, + 535, + 495, + 544 + ], + "score": 0.74, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 544, + 358, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 145, + 556 + ], + "score": 0.91, + "content": "1 ^ { \\cdot } \\times 1 0 ^ { - 6 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 544, + 207, + 557 + ], + "score": 1.0, + "content": "for SVHN and", + "type": "text" + }, + { + "bbox": [ + 207, + 544, + 246, + 556 + ], + "score": 0.92, + "content": "\\mathrm { i } \\times \\mathrm { 1 0 ^ { - 5 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 544, + 358, + 557 + ], + "score": 1.0, + "content": "for CIFAR-10 and MNIST.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 435, + 506, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 562, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 262, + 574 + ], + "score": 1.0, + "content": "Results The best accuracy with given", + "type": "text" + }, + { + "bbox": [ + 262, + 564, + 268, + 572 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 562, + 505, + 574 + ], + "score": 1.0, + "content": "is in Table 4. For all datasets, GEP achieves considerable", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 407, + 586 + ], + "score": 1.0, + "content": "improvement over GP in Abadi et al. (2016). Specifically, GEP achieves", + "type": "text" + }, + { + "bbox": [ + 408, + 573, + 435, + 584 + ], + "score": 0.87, + "content": "7 4 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "test accuracy on", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 583, + 507, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 170, + 598 + ], + "score": 1.0, + "content": "CIFAR-10 with", + "type": "text" + }, + { + "bbox": [ + 171, + 583, + 208, + 596 + ], + "score": 0.89, + "content": "( 8 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 583, + 313, + 598 + ], + "score": 1.0, + "content": "-DP, outperforming GP by", + "type": "text" + }, + { + "bbox": [ + 313, + 584, + 340, + 595 + ], + "score": 0.87, + "content": "1 8 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 583, + 507, + 598 + ], + "score": 1.0, + "content": ". PATE achieves best accuracy on MNIST", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 595, + 366, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 366, + 607 + ], + "score": 1.0, + "content": "but its performance drops as the dataset becomes more complex.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 562, + 507, + 607 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 612, + 505, + 656 + ], + "lines": [ + { + "bbox": [ + 105, + 612, + 504, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 293, + 623 + ], + "score": 1.0, + "content": "We also plot the relation between accuracy and", + "type": "text" + }, + { + "bbox": [ + 293, + 612, + 300, + 622 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 612, + 497, + 623 + ], + "score": 1.0, + "content": "in Figure 6. GEP is less sensitive to the choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 612, + 504, + 622 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 623, + 504, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 273, + 635 + ], + "score": 1.0, + "content": "and outperforms B-GEP for all choices of", + "type": "text" + }, + { + "bbox": [ + 273, + 623, + 280, + 633 + ], + "score": 0.77, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 623, + 410, + 635 + ], + "score": 1.0, + "content": ". The improvement of increasing", + "type": "text" + }, + { + "bbox": [ + 410, + 623, + 417, + 633 + ], + "score": 0.78, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 623, + 497, + 635 + ], + "score": 1.0, + "content": "becomes smaller as", + "type": "text" + }, + { + "bbox": [ + 497, + 623, + 504, + 633 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 359, + 646 + ], + "score": 1.0, + "content": "becomes larger. We note that the memory cost of choosing large", + "type": "text" + }, + { + "bbox": [ + 360, + 634, + 366, + 644 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 634, + 506, + 646 + ], + "score": 1.0, + "content": "is high because we need to store at", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 645, + 334, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 127, + 657 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 127, + 645, + 134, + 655 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 645, + 334, + 657 + ], + "score": 1.0, + "content": "individual gradients to compute anchor subspace.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 612, + 506, + 657 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 195, + 680 + ], + "lines": [ + { + "bbox": [ + 104, + 666, + 198, + 683 + ], + "spans": [ + { + "bbox": [ + 104, + 666, + 198, + 683 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "In this paper, we propose Gradient Embedding Perturbation (GEP) for learning with differential", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "privacy. GEP leverages the gradient redundancy to reduce the added noise and outputs an unbiased", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "estimator of target gradient. The several key designs of GEP significantly boost the applicability of", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 721, + 471, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 471, + 732 + ], + "score": 1.0, + "content": "GEP. Extensive experiments on real world datasets demonstrate the superior utility of GEP.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 688, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "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": [ + 109, + 100, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 107, + 100, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 107, + 100, + 506, + 113 + ], + "score": 1.0, + "content": "Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 123, + 249, + 135 + ], + "spans": [ + { + "bbox": [ + 117, + 123, + 249, + 135 + ], + "score": 1.0, + "content": "Communications Security, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 105, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "Noga Alon, Raef Bassily, and Shay Moran. Limits of private learning with access to public data. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 355, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 355, + 167 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 506, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "score": 1.0, + "content": "Borja Balle, Gilles Barthe, and Marco Gaboardi. Privacy amplification by subsampling: Tight", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 184, + 507, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 507, + 199 + ], + "score": 1.0, + "content": "analyses via couplings and divergences. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 195, + 142, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 142, + 207 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk minimiza-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "tion: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of Computer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 238, + 177, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 177, + 250 + ], + "score": 1.0, + "content": "Science, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Daniel Bernau, Philip-William Grassal, Jonas Robl, and Florian Kerschbaum. Assessing differentially", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 269, + 480, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 269, + 480, + 282 + ], + "score": 1.0, + "content": "private deep learning with membership inference. arXiv preprint arXiv:1912.11328, 2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "Gilles Blanchard, Olivier Bousquet, and Laurent Zwald. Statistical properties of kernel principal", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 301, + 379, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 379, + 313 + ], + "score": 1.0, + "content": "component analysis. Machine Learning, 66(2-3):259–294, 2007.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 105, + 320, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 332, + 362, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 362, + 345 + ], + "score": 1.0, + "content": "lower bounds. In Theory of Cryptography Conference, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 352, + 506, + 386 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 506, + 365 + ], + "score": 1.0, + "content": "Nicholas Carlini, Chang Liu, Úlfar Erlingsson, Jernej Kos, and Dawn Song. The secret sharer: Evalu-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 363, + 507, + 378 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 507, + 378 + ], + "score": 1.0, + "content": "ating and testing unintended memorization in neural networks. In USENIX Security Symposium,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 375, + 142, + 387 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 142, + 387 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "score": 1.0, + "content": "Ting Chen, Simon Kornblith, Kevin Swersky, Mohammad Norouzi, and Geoffrey Hinton. Big", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 406, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 507, + 419 + ], + "score": 1.0, + "content": "self-supervised models are strong semi-supervised learners. arXiv preprint arXiv:2006.10029,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 415, + 147, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 415, + 147, + 430 + ], + "score": 1.0, + "content": "2020a.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 104, + 437, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "Xiangyi Chen, Steven Z Wu, and Mingyi Hong. Understanding gradient clipping in private sgd: A", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 448, + 469, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 469, + 461 + ], + "score": 1.0, + "content": "geometric perspective. Advances in Neural Information Processing Systems, 33, 2020b.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 105, + 468, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 507, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 507, + 482 + ], + "score": 1.0, + "content": "Sanjoy Dasgupta and Anupam Gupta. An elementary proof of a theorem of johnson and lindenstrauss.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 480, + 279, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 480, + 279, + 492 + ], + "score": 1.0, + "content": "Random Structures & Algorithms, 2003.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 514 + ], + "score": 1.0, + "content": "Jinshuo Dong, Aaron Roth, and Weijie J Su. Gaussian differential privacy. arXiv preprint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 511, + 219, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 511, + 219, + 522 + ], + "score": 1.0, + "content": "arXiv:1905.02383, 2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 530, + 506, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 116, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "ourselves: Privacy via distributed noise generation. In Annual International Conference on the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 552, + 367, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 367, + 567 + ], + "score": 1.0, + "content": "Theory and Applications of Cryptographic Techniques, 2006a.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 504, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 584, + 389, + 598 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 389, + 598 + ], + "score": 1.0, + "content": "private data analysis. In Theory of cryptography conference, 2006b.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "score": 1.0, + "content": "Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 615, + 332, + 628 + ], + "spans": [ + { + "bbox": [ + 115, + 615, + 332, + 628 + ], + "score": 1.0, + "content": "and Trends® in Theoretical Computer Science, 2014.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 105, + 636, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "Morris L Eaton and Michael D Perlman. The non-singularity of generalized sample covariance", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 647, + 336, + 659 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 336, + 659 + ], + "score": 1.0, + "content": "matrices. The Annals of Statistics, pp. 710–717, 1973.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confi-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "dence information and basic countermeasures. In ACM SIGSAC Conference on Computer and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 689, + 249, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 689, + 249, + 702 + ], + "score": 1.0, + "content": "Communications Security, 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "Kazuto Fukuchi, Quang Khai Tran, and Jun Sakuma. Differentially private empirical risk minimiza-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "score": 1.0, + "content": "tion with input perturbation. In International Conference on Discovery Science, 2017.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 176, + 93 + ], + "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": [ + 109, + 100, + 504, + 134 + ], + "lines": [ + { + "bbox": [ + 107, + 100, + 506, + 113 + ], + "spans": [ + { + "bbox": [ + 107, + 100, + 506, + 113 + ], + "score": 1.0, + "content": "Martin Abadi, Andy Chu, Ian Goodfellow, H Brendan McMahan, Ilya Mironov, Kunal Talwar, and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "spans": [ + { + "bbox": [ + 115, + 111, + 506, + 125 + ], + "score": 1.0, + "content": "Li Zhang. Deep learning with differential privacy. In ACM SIGSAC Conference on Computer and", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 117, + 123, + 249, + 135 + ], + "spans": [ + { + "bbox": [ + 117, + 123, + 249, + 135 + ], + "score": 1.0, + "content": "Communications Security, 2016.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 107, + 100, + 506, + 135 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 106, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "Noga Alon, Raef Bassily, and Shay Moran. Limits of private learning with access to public data. In", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 154, + 355, + 167 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 355, + 167 + ], + "score": 1.0, + "content": "Advances in Neural Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 142, + 505, + 167 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 506, + 207 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 187 + ], + "score": 1.0, + "content": "Borja Balle, Gilles Barthe, and Marco Gaboardi. Privacy amplification by subsampling: Tight", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 184, + 507, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 184, + 507, + 199 + ], + "score": 1.0, + "content": "analyses via couplings and divergences. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 195, + 142, + 207 + ], + "spans": [ + { + "bbox": [ + 115, + 195, + 142, + 207 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 173, + 507, + 207 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 216, + 506, + 250 + ], + "lines": [ + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 216, + 506, + 229 + ], + "score": 1.0, + "content": "Raef Bassily, Adam Smith, and Abhradeep Thakurta. Differentially private empirical risk minimiza-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "tion: Efficient algorithms and tight error bounds. Annual Symposium on Foundations of Computer", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 238, + 177, + 250 + ], + "spans": [ + { + "bbox": [ + 116, + 238, + 177, + 250 + ], + "score": 1.0, + "content": "Science, 2014.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 216, + 506, + 250 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 258, + 504, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "Daniel Bernau, Philip-William Grassal, Jonas Robl, and Florian Kerschbaum. Assessing differentially", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 269, + 480, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 269, + 480, + 282 + ], + "score": 1.0, + "content": "private deep learning with membership inference. arXiv preprint arXiv:1912.11328, 2019.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 258, + 505, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 289, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "Gilles Blanchard, Olivier Bousquet, and Laurent Zwald. Statistical properties of kernel principal", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 301, + 379, + 313 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 379, + 313 + ], + "score": 1.0, + "content": "component analysis. Machine Learning, 66(2-3):259–294, 2007.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 289, + 505, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 320, + 505, + 344 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 334 + ], + "score": 1.0, + "content": "Mark Bun and Thomas Steinke. Concentrated differential privacy: Simplifications, extensions, and", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 332, + 362, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 362, + 345 + ], + "score": 1.0, + "content": "lower bounds. In Theory of Cryptography Conference, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 320, + 505, + 345 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 352, + 506, + 386 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 506, + 365 + ], + "score": 1.0, + "content": "Nicholas Carlini, Chang Liu, Úlfar Erlingsson, Jernej Kos, and Dawn Song. The secret sharer: Evalu-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 363, + 507, + 378 + ], + "spans": [ + { + "bbox": [ + 115, + 363, + 507, + 378 + ], + "score": 1.0, + "content": "ating and testing unintended memorization in neural networks. In USENIX Security Symposium,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 375, + 142, + 387 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 142, + 387 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 353, + 507, + 387 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 409 + ], + "score": 1.0, + "content": "Ting Chen, Simon Kornblith, Kevin Swersky, Mohammad Norouzi, and Geoffrey Hinton. Big", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 406, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 115, + 406, + 507, + 419 + ], + "score": 1.0, + "content": "self-supervised models are strong semi-supervised learners. arXiv preprint arXiv:2006.10029,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 114, + 415, + 147, + 430 + ], + "spans": [ + { + "bbox": [ + 114, + 415, + 147, + 430 + ], + "score": 1.0, + "content": "2020a.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 393, + 507, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 437, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 438, + 506, + 451 + ], + "score": 1.0, + "content": "Xiangyi Chen, Steven Z Wu, and Mingyi Hong. Understanding gradient clipping in private sgd: A", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 448, + 469, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 469, + 461 + ], + "score": 1.0, + "content": "geometric perspective. Advances in Neural Information Processing Systems, 33, 2020b.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 438, + 506, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 468, + 505, + 492 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 507, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 507, + 482 + ], + "score": 1.0, + "content": "Sanjoy Dasgupta and Anupam Gupta. An elementary proof of a theorem of johnson and lindenstrauss.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 480, + 279, + 492 + ], + "spans": [ + { + "bbox": [ + 116, + 480, + 279, + 492 + ], + "score": 1.0, + "content": "Random Structures & Algorithms, 2003.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 468, + 507, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 514 + ], + "score": 1.0, + "content": "Jinshuo Dong, Aaron Roth, and Weijie J Su. Gaussian differential privacy. arXiv preprint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 511, + 219, + 522 + ], + "spans": [ + { + "bbox": [ + 116, + 511, + 219, + 522 + ], + "score": 1.0, + "content": "arXiv:1905.02383, 2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 498, + 506, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 530, + 506, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 506, + 544 + ], + "score": 1.0, + "content": "Cynthia Dwork, Krishnaram Kenthapadi, Frank McSherry, Ilya Mironov, and Moni Naor. Our data,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 116, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "ourselves: Privacy via distributed noise generation. In Annual International Conference on the", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 552, + 367, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 552, + 367, + 567 + ], + "score": 1.0, + "content": "Theory and Applications of Cryptographic Techniques, 2006a.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 531, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 504, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 587 + ], + "score": 1.0, + "content": "Cynthia Dwork, Frank McSherry, Kobbi Nissim, and Adam Smith. Calibrating noise to sensitivity in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 584, + 389, + 598 + ], + "spans": [ + { + "bbox": [ + 115, + 584, + 389, + 598 + ], + "score": 1.0, + "content": "private data analysis. In Theory of cryptography conference, 2006b.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 572, + 506, + 598 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 619 + ], + "score": 1.0, + "content": "Cynthia Dwork, Aaron Roth, et al. The algorithmic foundations of differential privacy. Foundations", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 615, + 332, + 628 + ], + "spans": [ + { + "bbox": [ + 115, + 615, + 332, + 628 + ], + "score": 1.0, + "content": "and Trends® in Theoretical Computer Science, 2014.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 603, + 505, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 636, + 504, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 649 + ], + "score": 1.0, + "content": "Morris L Eaton and Michael D Perlman. The non-singularity of generalized sample covariance", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 647, + 336, + 659 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 336, + 659 + ], + "score": 1.0, + "content": "matrices. The Annals of Statistics, pp. 710–717, 1973.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 635, + 505, + 659 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 667, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "Matt Fredrikson, Somesh Jha, and Thomas Ristenpart. Model inversion attacks that exploit confi-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "dence information and basic countermeasures. In ACM SIGSAC Conference on Computer and", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 689, + 249, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 689, + 249, + 702 + ], + "score": 1.0, + "content": "Communications Security, 2015.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 667, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "Kazuto Fukuchi, Quang Khai Tran, and Jun Sakuma. Differentially private empirical risk minimiza-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 462, + 732 + ], + "score": 1.0, + "content": "tion with input perturbation. In International Conference on Discovery Science, 2017.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 708, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Mary Gooneratne, Khe Chai Sim, Petr Zadrazil, Andreas Kabel, Françoise Beaufays, and Giovanni", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Motta. Low-rank gradient approximation for memory-efficient on-device training of deep neural", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "network. In IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP).", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 168, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 168, + 127 + ], + "score": 1.0, + "content": "IEEE, 2020.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 133, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "score": 1.0, + "content": "Guy Gur-Ari, Daniel A Roberts, and Ethan Dyer. Gradient descent happens in a tiny subspace. arXiv", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 145, + 253, + 156 + ], + "spans": [ + { + "bbox": [ + 114, + 145, + 253, + 156 + ], + "score": 1.0, + "content": "preprint arXiv:1812.04754, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 162, + 505, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 183, + 142, + 197 + ], + "spans": [ + { + "bbox": [ + 114, + 183, + 142, + 197 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 505, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross Girshick. Momentum contrast for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 116, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "unsupervised visual representation learning. In Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 225, + 194, + 238 + ], + "spans": [ + { + "bbox": [ + 116, + 225, + 194, + 238 + ], + "score": 1.0, + "content": "Recognition, 2020.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 266, + 322, + 278 + ], + "spans": [ + { + "bbox": [ + 116, + 266, + 322, + 278 + ], + "score": 1.0, + "content": "on Computer and Communications Security, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 505, + 298 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 294, + 479, + 307 + ], + "spans": [ + { + "bbox": [ + 116, + 294, + 479, + 307 + ], + "score": 1.0, + "content": "reducing internal covariate shift. In International Conference on Machine Learning, 2015.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 506, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 507, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 507, + 327 + ], + "score": 1.0, + "content": "Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 324, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 506, + 337 + ], + "score": 1.0, + "content": "Towards practical differentially private convex optimization. In IEEE Symposium on Security and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 335, + 177, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 335, + 177, + 348 + ], + "score": 1.0, + "content": "Privacy, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 116, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 375, + 224, + 388 + ], + "spans": [ + { + "bbox": [ + 116, + 375, + 224, + 388 + ], + "score": 1.0, + "content": "Processing Systems, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 105, + 393, + 504, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "James Jordon, Jinsung Yoon, and Mihaela van der Schaar. Pate-gan: Generating synthetic data with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 405, + 503, + 418 + ], + "spans": [ + { + "bbox": [ + 116, + 405, + 503, + 418 + ], + "score": 1.0, + "content": "differential privacy guarantees. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "Peter Kairouz, Mónica Ribero, Keith Rush, and Abhradeep Thakurta. Dimension independence in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 435, + 504, + 447 + ], + "spans": [ + { + "bbox": [ + 116, + 435, + 504, + 447 + ], + "score": 1.0, + "content": "unconstrained private erm via adaptive preconditioning. arXiv preprint arXiv:2008.06570, 2020.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 504, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 463, + 404, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 404, + 476 + ], + "score": 1.0, + "content": "high-dimensional regression. In Conference on Learning Theory, 2012.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "score": 1.0, + "content": "Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 504, + 310, + 516 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 310, + 516 + ], + "score": 1.0, + "content": "on Knowledge Discovery & Data Mining, 2018.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 506, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "Xinyan Li, Qilong Gu, Yingxue Zhou, Tiancong Chen, and Arindam Banerjee. Hessian based analysis", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "of sgd for deep nets: Dynamics and generalization. In SIAM International Conference on Data", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 544, + 175, + 557 + ], + "spans": [ + { + "bbox": [ + 115, + 544, + 175, + 557 + ], + "score": 1.0, + "content": "Mining, 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 506, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "score": 1.0, + "content": "Yuzhe Ma, Xiaojin Zhu, and Justin Hsu. Data poisoning against differentially-private learners: attacks", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "and defenses. In Proceedings of the 28th International Joint Conference on Artificial Intelligence,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 585, + 260, + 596 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 260, + 596 + ], + "score": 1.0, + "content": "pp. 4732–4738. AAAI Press, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 616 + ], + "score": 1.0, + "content": "Ilya Mironov. Rényi differential privacy. In IEEE Computer Security Foundations Symposium, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 504, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "score": 1.0, + "content": "Ilya Mironov, Kunal Talwar, and Li Zhang. Rényi differential privacy of the sampled gaussian", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 633, + 220, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 633, + 220, + 644 + ], + "score": 1.0, + "content": "mechanism. arXiv, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 104, + 650, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "Robb J Muirhead. Aspects of multivariate statistical theory, volume 197. John Wiley & Sons, 2009.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "Maysum Panju. Iterative methods for computing eigenvalues and eigenvectors. arXiv preprint", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 679, + 215, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 215, + 692 + ], + "score": 1.0, + "content": "arXiv:1105.1185, 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "score": 1.0, + "content": "Nicolas Papernot, Martín Abadi, Ulfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semi-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "supervised knowledge transfer for deep learning from private training data. In International", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 309, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 309, + 732 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 126 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Mary Gooneratne, Khe Chai Sim, Petr Zadrazil, Andreas Kabel, Françoise Beaufays, and Giovanni", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "Motta. Low-rank gradient approximation for memory-efficient on-device training of deep neural", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "network. In IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP).", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 168, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 168, + 127 + ], + "score": 1.0, + "content": "IEEE, 2020.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 82, + 506, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 133, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 505, + 146 + ], + "score": 1.0, + "content": "Guy Gur-Ari, Daniel A Roberts, and Ethan Dyer. Gradient descent happens in a tiny subspace. arXiv", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 145, + 253, + 156 + ], + "spans": [ + { + "bbox": [ + 114, + 145, + 253, + 156 + ], + "score": 1.0, + "content": "preprint arXiv:1812.04754, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 133, + 505, + 156 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 162, + 505, + 196 + ], + "lines": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 505, + 177 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 506, + 187 + ], + "score": 1.0, + "content": "recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 114, + 183, + 142, + 197 + ], + "spans": [ + { + "bbox": [ + 114, + 183, + 142, + 197 + ], + "score": 1.0, + "content": "2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 162, + 506, + 197 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 203, + 505, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "Kaiming He, Haoqi Fan, Yuxin Wu, Saining Xie, and Ross Girshick. Momentum contrast for", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 214, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 116, + 214, + 505, + 227 + ], + "score": 1.0, + "content": "unsupervised visual representation learning. In Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 225, + 194, + 238 + ], + "spans": [ + { + "bbox": [ + 116, + 225, + 194, + 238 + ], + "score": 1.0, + "content": "Recognition, 2020.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 203, + 505, + 238 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 505, + 277 + ], + "lines": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "Briland Hitaj, Giuseppe Ateniese, and Fernando Pérez-Cruz. Deep models under the gan: information", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 505, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 505, + 267 + ], + "score": 1.0, + "content": "leakage from collaborative deep learning. In Proceedings of the 2017 ACM SIGSAC Conference", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 266, + 322, + 278 + ], + "spans": [ + { + "bbox": [ + 116, + 266, + 322, + 278 + ], + "score": 1.0, + "content": "on Computer and Communications Security, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 243, + 505, + 278 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 283, + 503, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 505, + 298 + ], + "score": 1.0, + "content": "Sergey Ioffe and Christian Szegedy. Batch normalization: Accelerating deep network training by", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 294, + 479, + 307 + ], + "spans": [ + { + "bbox": [ + 116, + 294, + 479, + 307 + ], + "score": 1.0, + "content": "reducing internal covariate shift. In International Conference on Machine Learning, 2015.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 283, + 505, + 307 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 506, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 507, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 507, + 327 + ], + "score": 1.0, + "content": "Roger Iyengar, Joseph P Near, Dawn Song, Om Thakkar, Abhradeep Thakurta, and Lun Wang.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 324, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 115, + 324, + 506, + 337 + ], + "score": 1.0, + "content": "Towards practical differentially private convex optimization. In IEEE Symposium on Security and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 335, + 177, + 348 + ], + "spans": [ + { + "bbox": [ + 115, + 335, + 177, + 348 + ], + "score": 1.0, + "content": "Privacy, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 312, + 507, + 348 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 387 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "Bargav Jayaraman, Lingxiao Wang, David Evans, and Quanquan Gu. Distributed learning without", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 116, + 365, + 505, + 377 + ], + "score": 1.0, + "content": "distress: Privacy-preserving empirical risk minimization. In Advances in Neural Information", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 375, + 224, + 388 + ], + "spans": [ + { + "bbox": [ + 116, + 375, + 224, + 388 + ], + "score": 1.0, + "content": "Processing Systems, 2018.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 353, + 505, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 393, + 504, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "James Jordon, Jinsung Yoon, and Mihaela van der Schaar. Pate-gan: Generating synthetic data with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 405, + 503, + 418 + ], + "spans": [ + { + "bbox": [ + 116, + 405, + 503, + 418 + ], + "score": 1.0, + "content": "differential privacy guarantees. In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 394, + 505, + 418 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 504, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "Peter Kairouz, Mónica Ribero, Keith Rush, and Abhradeep Thakurta. Dimension independence in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 435, + 504, + 447 + ], + "spans": [ + { + "bbox": [ + 116, + 435, + 504, + 447 + ], + "score": 1.0, + "content": "unconstrained private erm via adaptive preconditioning. arXiv preprint arXiv:2008.06570, 2020.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 423, + 505, + 447 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 504, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 465 + ], + "score": 1.0, + "content": "Daniel Kifer, Adam Smith, and Abhradeep Thakurta. Private convex empirical risk minimization and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 463, + 404, + 476 + ], + "spans": [ + { + "bbox": [ + 115, + 463, + 404, + 476 + ], + "score": 1.0, + "content": "high-dimensional regression. In Conference on Learning Theory, 2012.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 452, + 505, + 476 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 481, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 495 + ], + "score": 1.0, + "content": "Jaewoo Lee and Daniel Kifer. Concentrated differentially private gradient descent with adaptive", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "per-iteration privacy budget. In Proceedings of the 24th ACM SIGKDD International Conference", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 504, + 310, + 516 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 310, + 516 + ], + "score": 1.0, + "content": "on Knowledge Discovery & Data Mining, 2018.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 481, + 506, + 516 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 506, + 556 + ], + "lines": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 506, + 535 + ], + "score": 1.0, + "content": "Xinyan Li, Qilong Gu, Yingxue Zhou, Tiancong Chen, and Arindam Banerjee. Hessian based analysis", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "of sgd for deep nets: Dynamics and generalization. In SIAM International Conference on Data", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 544, + 175, + 557 + ], + "spans": [ + { + "bbox": [ + 115, + 544, + 175, + 557 + ], + "score": 1.0, + "content": "Mining, 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 522, + 506, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 562, + 506, + 596 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 576 + ], + "score": 1.0, + "content": "Yuzhe Ma, Xiaojin Zhu, and Justin Hsu. Data poisoning against differentially-private learners: attacks", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 573, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 506, + 587 + ], + "score": 1.0, + "content": "and defenses. In Proceedings of the 28th International Joint Conference on Artificial Intelligence,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 585, + 260, + 596 + ], + "spans": [ + { + "bbox": [ + 115, + 585, + 260, + 596 + ], + "score": 1.0, + "content": "pp. 4732–4738. AAAI Press, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 561, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 602, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 601, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 616 + ], + "score": 1.0, + "content": "Ilya Mironov. Rényi differential privacy. In IEEE Computer Security Foundations Symposium, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 601, + 506, + 616 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 504, + 644 + ], + "lines": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 505, + 635 + ], + "score": 1.0, + "content": "Ilya Mironov, Kunal Talwar, and Li Zhang. Rényi differential privacy of the sampled gaussian", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 633, + 220, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 633, + 220, + 644 + ], + "score": 1.0, + "content": "mechanism. arXiv, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 620, + 505, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 650, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "Robb J Muirhead. Aspects of multivariate statistical theory, volume 197. John Wiley & Sons, 2009.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 650, + 506, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 669, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "Maysum Panju. Iterative methods for computing eigenvalues and eigenvectors. arXiv preprint", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 679, + 215, + 692 + ], + "spans": [ + { + "bbox": [ + 115, + 679, + 215, + 692 + ], + "score": 1.0, + "content": "arXiv:1105.1185, 2011.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 668, + 505, + 692 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "score": 1.0, + "content": "Nicolas Papernot, Martín Abadi, Ulfar Erlingsson, Ian Goodfellow, and Kunal Talwar. Semi-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "supervised knowledge transfer for deep learning from private training data. In International", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 309, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 309, + 732 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 698, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Nicolas Papernot, Shuang Song, Ilya Mironov, Ananth Raghunathan, Kunal Talwar, and Úlfar Erlings-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "son. Scalable private learning with pate. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 142, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 142, + 116 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 506, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 506, + 137 + ], + "score": 1.0, + "content": "NhatHai Phan, My T Thai, Han Hu, Ruoming Jin, Tong Sun, and Dejing Dou. Scalable differential", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "score": 1.0, + "content": "privacy with certified robustness in adversarial learning. International Conference on Machine", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 183, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 183, + 158 + ], + "score": 1.0, + "content": "Learning, 2020.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 506, + 199 + ], + "lines": [ + { + "bbox": [ + 104, + 163, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 104, + 163, + 506, + 180 + ], + "score": 1.0, + "content": "Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 116, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "Membership inference attack against differentially private deep learning model. Transactions on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 200, + 200 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 200, + 200 + ], + "score": 1.0, + "content": "Data Privacy, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 506, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "Alexandre Sablayrolles, Matthijs Douze, Yann Ollivier, Cordelia Schmid, and Hervé Jégou. White-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "box vs black-box: Bayes optimal strategies for membership inference. International Conference", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 229, + 232, + 241 + ], + "spans": [ + { + "bbox": [ + 115, + 229, + 232, + 241 + ], + "score": 1.0, + "content": "on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "Reza Shokri and Vitaly Shmatikov. Privacy-preserving deep learning. In ACM SIGSAC conference", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 260, + 316, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 260, + 316, + 272 + ], + "score": 1.0, + "content": "on computer and communications security, 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 290, + 482, + 303 + ], + "spans": [ + { + "bbox": [ + 116, + 290, + 482, + 303 + ], + "score": 1.0, + "content": "against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differen-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 507, + 334 + ], + "score": 1.0, + "content": "tially private updates. In Global Conference on Signal and Information Processing (GlobalSIP),", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 330, + 144, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 144, + 344 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 105, + 351, + 505, + 374 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 362, + 315, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 315, + 374 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, 2015.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 395 + ], + "score": 1.0, + "content": "Abhradeep Guha Thakurta and Adam Smith. Differentially private feature selection via stability", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 393, + 459, + 405 + ], + "spans": [ + { + "bbox": [ + 115, + 393, + 459, + 405 + ], + "score": 1.0, + "content": "arguments, and the robustness of the lasso. In Conference on Learning Theory, 2013.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 503, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "Florian Tramèr and Dan Boneh. Differentially private learning needs better features (or much more", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 423, + 305, + 436 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 305, + 436 + ], + "score": 1.0, + "content": "data). arXiv preprint arXiv:2011.11660, 2020.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Joel A Tropp et al. An introduction to matrix concentration inequalities. Foundations and Trends® in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 454, + 277, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 454, + 277, + 466 + ], + "score": 1.0, + "content": "Machine Learning, 8(1-2):1–230, 2015.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 506, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Thijs Vogels, Sai Praneeth Karimireddy, and Martin Jaggi. Powersgd: Practical low-rank gradient", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 484, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 114, + 484, + 507, + 498 + ], + "score": 1.0, + "content": "compression for distributed optimization. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 493, + 144, + 507 + ], + "spans": [ + { + "bbox": [ + 115, + 493, + 144, + 507 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 514, + 504, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "Di Wang and Jinhui Xu. On sparse linear regression in the local differential privacy model. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 525, + 336, + 538 + ], + "spans": [ + { + "bbox": [ + 115, + 525, + 336, + 538 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 108, + 545, + 504, + 569 + ], + "lines": [ + { + "bbox": [ + 107, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited:", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 557, + 468, + 568 + ], + "spans": [ + { + "bbox": [ + 116, + 557, + 468, + 568 + ], + "score": 1.0, + "content": "Faster and more general. In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "Jun Wang and Zhi-Hua Zhou. Differentially private learning with small public data. In AAAI, 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 104, + 595, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 607, + 446, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 446, + 619 + ], + "score": 1.0, + "content": "sparse learning. In International Joint Conference on Artificial Intelligence, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 625, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 107, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 107, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Yu-Xiang Wang, Borja Balle, and Shiva Prasad Kasiviswanathan. Subsampled rényi differential", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "privacy and analytical moments accountant. In International Conference on Artificial Intelligence", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 649, + 200, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 200, + 660 + ], + "score": 1.0, + "content": "and Statistics, 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 104, + 667, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "score": 1.0, + "content": "Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 678, + 457, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 457, + 691 + ], + "score": 1.0, + "content": "model-inversion attacks. In IEEE Computer Security Foundations Symposium, 2016.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "differential privacy for scalable stochastic gradient descent-based analytics. In ACM International", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 291, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 291, + 732 + ], + "score": 1.0, + "content": "Conference on Management of Data, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Nicolas Papernot, Shuang Song, Ilya Mironov, Ananth Raghunathan, Kunal Talwar, and Úlfar Erlings-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "son. Scalable private learning with pate. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 142, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 142, + 116 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 506, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 506, + 137 + ], + "score": 1.0, + "content": "NhatHai Phan, My T Thai, Han Hu, Ruoming Jin, Tong Sun, and Dejing Dou. Scalable differential", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 506, + 148 + ], + "score": 1.0, + "content": "privacy with certified robustness in adversarial learning. International Conference on Machine", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 183, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 183, + 158 + ], + "score": 1.0, + "content": "Learning, 2020.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 123, + 506, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 506, + 199 + ], + "lines": [ + { + "bbox": [ + 104, + 163, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 104, + 163, + 506, + 180 + ], + "score": 1.0, + "content": "Md Atiqur Rahman, Tanzila Rahman, Robert Laganiere, Noman Mohammed, and Yang Wang.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 116, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "Membership inference attack against differentially private deep learning model. Transactions on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 200, + 200 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 200, + 200 + ], + "score": 1.0, + "content": "Data Privacy, 2018.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 163, + 506, + 200 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 506, + 241 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 220 + ], + "score": 1.0, + "content": "Alexandre Sablayrolles, Matthijs Douze, Yann Ollivier, Cordelia Schmid, and Hervé Jégou. White-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 505, + 231 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 505, + 231 + ], + "score": 1.0, + "content": "box vs black-box: Bayes optimal strategies for membership inference. International Conference", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 229, + 232, + 241 + ], + "spans": [ + { + "bbox": [ + 115, + 229, + 232, + 241 + ], + "score": 1.0, + "content": "on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 206, + 506, + 241 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 505, + 262 + ], + "score": 1.0, + "content": "Reza Shokri and Vitaly Shmatikov. Privacy-preserving deep learning. In ACM SIGSAC conference", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 260, + 316, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 260, + 316, + 272 + ], + "score": 1.0, + "content": "on computer and communications security, 2015.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 249, + 505, + 272 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 505, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 291 + ], + "score": 1.0, + "content": "Reza Shokri, Marco Stronati, Congzheng Song, and Vitaly Shmatikov. Membership inference attacks", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 290, + 482, + 303 + ], + "spans": [ + { + "bbox": [ + 116, + 290, + 482, + 303 + ], + "score": 1.0, + "content": "against machine learning models. In IEEE Symposium on Security and Privacy (SP), 2017.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 279, + 505, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 308, + 505, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "Shuang Song, Kamalika Chaudhuri, and Anand D Sarwate. Stochastic gradient descent with differen-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 507, + 334 + ], + "score": 1.0, + "content": "tially private updates. In Global Conference on Signal and Information Processing (GlobalSIP),", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 330, + 144, + 344 + ], + "spans": [ + { + "bbox": [ + 115, + 330, + 144, + 344 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17, + "bbox_fs": [ + 106, + 309, + 507, + 344 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 351, + 505, + 374 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 364 + ], + "score": 1.0, + "content": "Kunal Talwar, Abhradeep Guha Thakurta, and Li Zhang. Nearly optimal private lasso. In Advances", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 362, + 315, + 374 + ], + "spans": [ + { + "bbox": [ + 115, + 362, + 315, + 374 + ], + "score": 1.0, + "content": "in Neural Information Processing Systems, 2015.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 351, + 505, + 374 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 381, + 504, + 405 + ], + "lines": [ + { + "bbox": [ + 106, + 381, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 505, + 395 + ], + "score": 1.0, + "content": "Abhradeep Guha Thakurta and Adam Smith. Differentially private feature selection via stability", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 393, + 459, + 405 + ], + "spans": [ + { + "bbox": [ + 115, + 393, + 459, + 405 + ], + "score": 1.0, + "content": "arguments, and the robustness of the lasso. In Conference on Learning Theory, 2013.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 381, + 505, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 503, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "Florian Tramèr and Dan Boneh. Differentially private learning needs better features (or much more", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 423, + 305, + 436 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 305, + 436 + ], + "score": 1.0, + "content": "data). arXiv preprint arXiv:2011.11660, 2020.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 411, + 505, + 436 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 443, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Joel A Tropp et al. An introduction to matrix concentration inequalities. Foundations and Trends® in", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 454, + 277, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 454, + 277, + 466 + ], + "score": 1.0, + "content": "Machine Learning, 8(1-2):1–230, 2015.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 443, + 505, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 506, + 506 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 486 + ], + "score": 1.0, + "content": "Thijs Vogels, Sai Praneeth Karimireddy, and Martin Jaggi. Powersgd: Practical low-rank gradient", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 114, + 484, + 507, + 498 + ], + "spans": [ + { + "bbox": [ + 114, + 484, + 507, + 498 + ], + "score": 1.0, + "content": "compression for distributed optimization. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 493, + 144, + 507 + ], + "spans": [ + { + "bbox": [ + 115, + 493, + 144, + 507 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 474, + 507, + 507 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 514, + 504, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 505, + 528 + ], + "score": 1.0, + "content": "Di Wang and Jinhui Xu. On sparse linear regression in the local differential privacy model. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 525, + 336, + 538 + ], + "spans": [ + { + "bbox": [ + 115, + 525, + 336, + 538 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 515, + 505, + 538 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 545, + 504, + 569 + ], + "lines": [ + { + "bbox": [ + 107, + 546, + 505, + 558 + ], + "spans": [ + { + "bbox": [ + 107, + 546, + 505, + 558 + ], + "score": 1.0, + "content": "Di Wang, Minwei Ye, and Jinhui Xu. Differentially private empirical risk minimization revisited:", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 557, + 468, + 568 + ], + "spans": [ + { + "bbox": [ + 116, + 557, + 468, + 568 + ], + "score": 1.0, + "content": "Faster and more general. In Advances in Neural Information Processing Systems, 2017.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 107, + 546, + 505, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "Jun Wang and Zhi-Hua Zhou. Differentially private learning with small public data. In AAAI, 2020.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 576, + 506, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 595, + 504, + 619 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "Lingxiao Wang and Quanquan Gu. Differentially private iterative gradient hard thresholding for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 607, + 446, + 619 + ], + "spans": [ + { + "bbox": [ + 115, + 607, + 446, + 619 + ], + "score": 1.0, + "content": "sparse learning. In International Joint Conference on Artificial Intelligence, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 595, + 505, + 619 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 625, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 107, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 107, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Yu-Xiang Wang, Borja Balle, and Shiva Prasad Kasiviswanathan. Subsampled rényi differential", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 115, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "privacy and analytical moments accountant. In International Conference on Artificial Intelligence", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 649, + 200, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 200, + 660 + ], + "score": 1.0, + "content": "and Statistics, 2019.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 107, + 626, + 505, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 667, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "score": 1.0, + "content": "Xi Wu, Matthew Fredrikson, Somesh Jha, and Jeffrey F Naughton. A methodology for formalizing", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 678, + 457, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 678, + 457, + 691 + ], + "score": 1.0, + "content": "model-inversion attacks. In IEEE Computer Security Foundations Symposium, 2016.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 666, + 506, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Xi Wu, Fengan Li, Arun Kumar, Kamalika Chaudhuri, Somesh Jha, and Jeffrey Naughton. Bolt-on", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "differential privacy for scalable stochastic gradient descent-based analytics. In ACM International", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 720, + 291, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 291, + 732 + ], + "score": 1.0, + "content": "Conference on Management of Data, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 698, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the European conference on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 95, + 244, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 244, + 105 + ], + "score": 1.0, + "content": "computer vision (ECCV), 2018.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. Gradient perturbation is underrated for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 137 + ], + "score": 1.0, + "content": "differentially private convex optimization. In Proc. of 29th Int. Joint Conf. Artificial Intelligence,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 142, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 142, + 146 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 165 + ], + "score": 1.0, + "content": "Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. How does data augmentation affect", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 495, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 495, + 177 + ], + "score": 1.0, + "content": "privacy in machine learning? In Proc. of the AAAI Conference on Artificial Intelligence, 2021.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "Yingxue Zhou, Zhiwei Steven Wu, and Arindam Banerjee. Bypassing the ambient dimension: Private", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 447, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 447, + 206 + ], + "score": 1.0, + "content": "sgd with gradient subspace identification. arXiv preprint arXiv:2007.03813, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "Ligeng Zhu, Zhijian Liu, and Song Han. Deep leakage from gradients. In Advances in Neural", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 274, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 274, + 236 + ], + "score": 1.0, + "content": "Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 506, + 256 + ], + "score": 1.0, + "content": "Yuqing Zhu and Yu-Xiang Wang. Poission subsampled rényi differential privacy. In International", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 254, + 281, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 281, + 266 + ], + "score": 1.0, + "content": "Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Yuxin Wu and Kaiming He. Group normalization. In Proceedings of the European conference on", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 95, + 244, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 95, + 244, + 105 + ], + "score": 1.0, + "content": "computer vision (ECCV), 2018.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. Gradient perturbation is underrated for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 122, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 115, + 122, + 506, + 137 + ], + "score": 1.0, + "content": "differentially private convex optimization. In Proc. of 29th Int. Joint Conf. Artificial Intelligence,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 142, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 142, + 146 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 112, + 506, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 165 + ], + "score": 1.0, + "content": "Da Yu, Huishuai Zhang, Wei Chen, Jian Yin, and Tie-Yan Liu. How does data augmentation affect", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 495, + 177 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 495, + 177 + ], + "score": 1.0, + "content": "privacy in machine learning? In Proc. of the AAAI Conference on Artificial Intelligence, 2021.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 154, + 505, + 177 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 183, + 504, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "Yingxue Zhou, Zhiwei Steven Wu, and Arindam Banerjee. Bypassing the ambient dimension: Private", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 447, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 447, + 206 + ], + "score": 1.0, + "content": "sgd with gradient subspace identification. arXiv preprint arXiv:2007.03813, 2020.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 183, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 506, + 226 + ], + "score": 1.0, + "content": "Ligeng Zhu, Zhijian Liu, and Song Han. Deep leakage from gradients. In Advances in Neural", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 274, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 274, + 236 + ], + "score": 1.0, + "content": "Information Processing Systems, 2019.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 212, + 506, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 106, + 241, + 506, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 506, + 256 + ], + "score": 1.0, + "content": "Yuqing Zhu and Yu-Xiang Wang. Poission subsampled rényi differential privacy. In International", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 254, + 281, + 266 + ], + "spans": [ + { + "bbox": [ + 115, + 254, + 281, + 266 + ], + "score": 1.0, + "content": "Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 241, + 506, + 266 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 352, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 353, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 353, + 96 + ], + "score": 1.0, + "content": "A EXPERIMENTS WITH PRE-TRAINED MODELS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 505, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 121 + ], + "score": 1.0, + "content": "Recent works have shown that pre-training the models on unlabeled data can be beneficial for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "score": 1.0, + "content": "subsequent learning tasks (Chen et al., 2020a; He et al., 2020). Tramèr & Boneh (2020) demonstrate", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "score": 1.0, + "content": "that differentially private linear classifier can achieve high accuracy using the features produced by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 143, + 474, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 474, + 153 + ], + "score": 1.0, + "content": "those per-trained models. We show that GEP can also benefit from such pre-trained models.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "Inspired by Tramèr & Boneh (2020), we use the output of the penultimate layer of a pre-trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "ResNet152 model as feature to train a private linear classifier. The ResNet152 model is pre-trained", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 475, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 475, + 193 + ], + "score": 1.0, + "content": "on unlabeled ImageNet using SimCLR (Chen et al., 2020a). The feature dimension is 4096.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 198, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 340, + 212 + ], + "score": 1.0, + "content": "Implementation Details We choose the privacy parameter", + "type": "text" + }, + { + "bbox": [ + 340, + 200, + 346, + 208 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 197, + 506, + 212 + ], + "score": 1.0, + "content": "from [0.1, 0.5, 1, 2]. The privacy param-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 207, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 207, + 123, + 223 + ], + "score": 1.0, + "content": "eter", + "type": "text" + }, + { + "bbox": [ + 124, + 209, + 130, + 219 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 207, + 140, + 223 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 140, + 209, + 179, + 219 + ], + "score": 0.91, + "content": "1 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 207, + 506, + 223 + ], + "score": 1.0, + "content": ". We run all experiments for 5 times and report the average accuracy. The clipping", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "threshold of residual gradients is still one-fifth of the clipping threshold of the original gradients. The√", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 267, + 243 + ], + "score": 1.0, + "content": "dimension of anchor subspace is set as", + "type": "text" + }, + { + "bbox": [ + 268, + 231, + 312, + 244 + ], + "score": 0.93, + "content": "2 0 0 \\simeq { \\sqrt { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 231, + 340, + 243 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 340, + 231, + 386, + 242 + ], + "score": 0.91, + "content": "p = 4 0 9 6 0", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "is the model dimension. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "randomly sample 500 samples from the test set as auxiliary data and evaluate performance on the rest", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "test samples. The optimizer is Adam with default momentum coefficients. Other hyper-parameters", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 264, + 190, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 190, + 275 + ], + "score": 1.0, + "content": "are listed in Table 2.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "table", + "bbox": [ + 226, + 289, + 384, + 340 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 226, + 289, + 384, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 226, + 289, + 384, + 340 + ], + "spans": [ + { + "bbox": [ + 226, + 289, + 384, + 340 + ], + "score": 0.968, + "html": "
HyperparameterValues
Learning rate0.01,0.05,0.1
Running steps50,100,400
Clipping threshold0.01,0.1,1
", + "type": "table", + "image_path": "ccca16543a9464f97ec0984f98d22d836b4c07702615bab375648ce16f082fa7.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 226, + 289, + 384, + 306.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 226, + 306.0, + 384, + 323.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 226, + 323.0, + 384, + 340.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 197, + 349, + 411, + 361 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 348, + 412, + 363 + ], + "spans": [ + { + "bbox": [ + 195, + 348, + 412, + 363 + ], + "score": 1.0, + "content": "Table 2: Hyperparameter values used in Appendix A.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + } + ], + "index": 17.0 + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 473, + 391 + ], + "score": 1.0, + "content": "Results The experiment results are shown in Table 3. GEP outperforms GP on all values of", + "type": "text" + }, + { + "bbox": [ + 473, + 381, + 479, + 389 + ], + "score": 0.36, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 379, + 505, + 391 + ], + "score": 1.0, + "content": ". With", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 165, + 403 + ], + "score": 1.0, + "content": "privacy bound", + "type": "text" + }, + { + "bbox": [ + 165, + 390, + 189, + 400 + ], + "score": 0.89, + "content": "\\epsilon = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 389, + 249, + 403 + ], + "score": 1.0, + "content": ", GEP achieves", + "type": "text" + }, + { + "bbox": [ + 249, + 390, + 276, + 400 + ], + "score": 0.88, + "content": "9 4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "validation accuracy on CIFAR10 dataset, improving over", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 400, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 184, + 414 + ], + "score": 1.0, + "content": "the GP baseline by", + "type": "text" + }, + { + "bbox": [ + 184, + 401, + 205, + 411 + ], + "score": 0.87, + "content": "1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 400, + 348, + 414 + ], + "score": 1.0, + "content": ". For very strong privacy guarantee", + "type": "text" + }, + { + "bbox": [ + 349, + 401, + 381, + 411 + ], + "score": 0.85, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 400, + 505, + 414 + ], + "score": 1.0, + "content": "), B-GEP performs on par with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "GEP because strong privacy guarantee requires large noise and the useful signal in residual gradient", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 377, + 435 + ], + "score": 1.0, + "content": "is submerged in the added noise. B-GEP benefits less from larger", + "type": "text" + }, + { + "bbox": [ + 378, + 425, + 384, + 432 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "compared to GP or GEP. For", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 433, + 504, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 130, + 444 + ], + "score": 0.89, + "content": "\\epsilon = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 433, + 498, + 447 + ], + "score": 1.0, + "content": "and 2, the performance of B-GEP is worse than the performance of GP. This is because larger", + "type": "text" + }, + { + "bbox": [ + 498, + 435, + 504, + 443 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 414, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 414, + 457 + ], + "score": 1.0, + "content": "can not reduce the systematic error of B-GEP (see Remark 1 in Section 3.2).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22 + }, + { + "type": "table", + "bbox": [ + 121, + 502, + 489, + 572 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 479, + 504, + 502 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 223, + 493 + ], + "score": 1.0, + "content": "Table 3: Validation accuracy", + "type": "text" + }, + { + "bbox": [ + 223, + 480, + 246, + 491 + ], + "score": 0.33, + "content": "( \\mathrm { i n } \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 479, + 398, + 493 + ], + "score": 1.0, + "content": ") on CIFAR10 with varying choices of", + "type": "text" + }, + { + "bbox": [ + 398, + 482, + 403, + 490 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 479, + 505, + 493 + ], + "score": 1.0, + "content": ". We train a private linear", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 506, + 503 + ], + "score": 1.0, + "content": "model on top of the features from a ResNet152 model, which is pre-trained on unlabeled ImageNet.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "table_body", + "bbox": [ + 121, + 502, + 489, + 572 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 121, + 502, + 489, + 572 + ], + "spans": [ + { + "bbox": [ + 121, + 502, + 489, + 572 + ], + "score": 0.982, + "html": "
e=0.1e=0.5e=1e=2
Non private96.396.396.396.3
GP88.2 (±0.16)91.1 (±0.17)93.2 (±0.19)93.4 (±0.12)
B-GEP91.0 (±0.07)92.9 (±0.03)93.1 (±0.10)93.2 (±0.08)
GEP90.9 (±0.19)93.5 (±0.06)94.3 (±0.09)94.8 (±0.06)
", + "type": "table", + "image_path": "d2776c477361166377cc930d11339cb78443091d3330e04c61148c4ef204a63e.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 121, + 502, + 489, + 525.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 121, + 525.3333333333334, + 489, + 548.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 121, + 548.6666666666667, + 489, + 572.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 27.75 + }, + { + "type": "title", + "bbox": [ + 108, + 605, + 253, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 254, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 254, + 620 + ], + "score": 1.0, + "content": "B COMPLEXITY ANALYSIS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "We provide an analysis of the computational and memory costs of the construction of anchor", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "subspace. The computation of the anchor subspace is the dominant additional cost of GEP compared", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 298, + 668 + ], + "score": 1.0, + "content": "to conventional gradient perturbation. Notations:", + "type": "text" + }, + { + "bbox": [ + 299, + 655, + 330, + 666 + ], + "score": 0.38, + "content": "k , m , n", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 655, + 349, + 668 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 349, + 657, + 356, + 666 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "are the dimension of anchor subspace,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "number of anchor gradients, number of private gradients, and the model dimension, respectively. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 449, + 690 + ], + "score": 1.0, + "content": "order to reduce the computational and memory costs, we divide the parameters into", + "type": "text" + }, + { + "bbox": [ + 450, + 679, + 456, + 689 + ], + "score": 0.75, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "groups and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "compute one orthonormal basis for each group. We refer to this approach as ‘parameter grouping’. In", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "this section, we assume the parameters and the dimension of the anchor subspace are both divided", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 708, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 724 + ], + "score": 1.0, + "content": "evenly. Table 4 summarizes the additional costs of GEP with/without parameter grouping. Using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 414, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 414, + 734 + ], + "score": 1.0, + "content": "parameter grouping can reduce the computational/memory cost significantly.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 352, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 353, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 353, + 96 + ], + "score": 1.0, + "content": "A EXPERIMENTS WITH PRE-TRAINED MODELS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 505, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 121 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 121 + ], + "score": 1.0, + "content": "Recent works have shown that pre-training the models on unlabeled data can be beneficial for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "score": 1.0, + "content": "subsequent learning tasks (Chen et al., 2020a; He et al., 2020). Tramèr & Boneh (2020) demonstrate", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 505, + 144 + ], + "score": 1.0, + "content": "that differentially private linear classifier can achieve high accuracy using the features produced by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 143, + 474, + 153 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 474, + 153 + ], + "score": 1.0, + "content": "those per-trained models. We show that GEP can also benefit from such pre-trained models.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 109, + 505, + 153 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "Inspired by Tramèr & Boneh (2020), we use the output of the penultimate layer of a pre-trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 182 + ], + "score": 1.0, + "content": "ResNet152 model as feature to train a private linear classifier. The ResNet152 model is pre-trained", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 181, + 475, + 193 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 475, + 193 + ], + "score": 1.0, + "content": "on unlabeled ImageNet using SimCLR (Chen et al., 2020a). The feature dimension is 4096.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 159, + 505, + 193 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 198, + 505, + 275 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 340, + 212 + ], + "score": 1.0, + "content": "Implementation Details We choose the privacy parameter", + "type": "text" + }, + { + "bbox": [ + 340, + 200, + 346, + 208 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 197, + 506, + 212 + ], + "score": 1.0, + "content": "from [0.1, 0.5, 1, 2]. The privacy param-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 207, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 207, + 123, + 223 + ], + "score": 1.0, + "content": "eter", + "type": "text" + }, + { + "bbox": [ + 124, + 209, + 130, + 219 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 207, + 140, + 223 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 140, + 209, + 179, + 219 + ], + "score": 0.91, + "content": "1 \\times 1 0 ^ { - 5 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 207, + 506, + 223 + ], + "score": 1.0, + "content": ". We run all experiments for 5 times and report the average accuracy. The clipping", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "threshold of residual gradients is still one-fifth of the clipping threshold of the original gradients. The√", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 267, + 243 + ], + "score": 1.0, + "content": "dimension of anchor subspace is set as", + "type": "text" + }, + { + "bbox": [ + 268, + 231, + 312, + 244 + ], + "score": 0.93, + "content": "2 0 0 \\simeq { \\sqrt { p } }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 231, + 340, + 243 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 340, + 231, + 386, + 242 + ], + "score": 0.91, + "content": "p = 4 0 9 6 0", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "is the model dimension. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "randomly sample 500 samples from the test set as auxiliary data and evaluate performance on the rest", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "test samples. The optimizer is Adam with default momentum coefficients. Other hyper-parameters", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 264, + 190, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 264, + 190, + 275 + ], + "score": 1.0, + "content": "are listed in Table 2.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 197, + 506, + 275 + ] + }, + { + "type": "table", + "bbox": [ + 226, + 289, + 384, + 340 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 226, + 289, + 384, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 226, + 289, + 384, + 340 + ], + "spans": [ + { + "bbox": [ + 226, + 289, + 384, + 340 + ], + "score": 0.968, + "html": "
HyperparameterValues
Learning rate0.01,0.05,0.1
Running steps50,100,400
Clipping threshold0.01,0.1,1
", + "type": "table", + "image_path": "ccca16543a9464f97ec0984f98d22d836b4c07702615bab375648ce16f082fa7.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 226, + 289, + 384, + 306.0 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 226, + 306.0, + 384, + 323.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 226, + 323.0, + 384, + 340.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 197, + 349, + 411, + 361 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 348, + 412, + 363 + ], + "spans": [ + { + "bbox": [ + 195, + 348, + 412, + 363 + ], + "score": 1.0, + "content": "Table 2: Hyperparameter values used in Appendix A.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + } + ], + "index": 17.0 + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 505, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 473, + 391 + ], + "score": 1.0, + "content": "Results The experiment results are shown in Table 3. GEP outperforms GP on all values of", + "type": "text" + }, + { + "bbox": [ + 473, + 381, + 479, + 389 + ], + "score": 0.36, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 379, + 505, + 391 + ], + "score": 1.0, + "content": ". With", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 165, + 403 + ], + "score": 1.0, + "content": "privacy bound", + "type": "text" + }, + { + "bbox": [ + 165, + 390, + 189, + 400 + ], + "score": 0.89, + "content": "\\epsilon = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 389, + 249, + 403 + ], + "score": 1.0, + "content": ", GEP achieves", + "type": "text" + }, + { + "bbox": [ + 249, + 390, + 276, + 400 + ], + "score": 0.88, + "content": "9 4 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "validation accuracy on CIFAR10 dataset, improving over", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 400, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 184, + 414 + ], + "score": 1.0, + "content": "the GP baseline by", + "type": "text" + }, + { + "bbox": [ + 184, + 401, + 205, + 411 + ], + "score": 0.87, + "content": "1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 400, + 348, + 414 + ], + "score": 1.0, + "content": ". For very strong privacy guarantee", + "type": "text" + }, + { + "bbox": [ + 349, + 401, + 381, + 411 + ], + "score": 0.85, + "content": "\\epsilon = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 400, + 505, + 414 + ], + "score": 1.0, + "content": "), B-GEP performs on par with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "score": 1.0, + "content": "GEP because strong privacy guarantee requires large noise and the useful signal in residual gradient", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 377, + 435 + ], + "score": 1.0, + "content": "is submerged in the added noise. B-GEP benefits less from larger", + "type": "text" + }, + { + "bbox": [ + 378, + 425, + 384, + 432 + ], + "score": 0.6, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "compared to GP or GEP. For", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 433, + 504, + 447 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 130, + 444 + ], + "score": 0.89, + "content": "\\epsilon = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 433, + 498, + 447 + ], + "score": 1.0, + "content": "and 2, the performance of B-GEP is worse than the performance of GP. This is because larger", + "type": "text" + }, + { + "bbox": [ + 498, + 435, + 504, + 443 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 414, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 414, + 457 + ], + "score": 1.0, + "content": "can not reduce the systematic error of B-GEP (see Remark 1 in Section 3.2).", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 379, + 506, + 457 + ] + }, + { + "type": "table", + "bbox": [ + 121, + 502, + 489, + 572 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 479, + 504, + 502 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 479, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 223, + 493 + ], + "score": 1.0, + "content": "Table 3: Validation accuracy", + "type": "text" + }, + { + "bbox": [ + 223, + 480, + 246, + 491 + ], + "score": 0.33, + "content": "( \\mathrm { i n } \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 479, + 398, + 493 + ], + "score": 1.0, + "content": ") on CIFAR10 with varying choices of", + "type": "text" + }, + { + "bbox": [ + 398, + 482, + 403, + 490 + ], + "score": 0.5, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 479, + 505, + 493 + ], + "score": 1.0, + "content": ". We train a private linear", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 490, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 506, + 503 + ], + "score": 1.0, + "content": "model on top of the features from a ResNet152 model, which is pre-trained on unlabeled ImageNet.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "table_body", + "bbox": [ + 121, + 502, + 489, + 572 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 121, + 502, + 489, + 572 + ], + "spans": [ + { + "bbox": [ + 121, + 502, + 489, + 572 + ], + "score": 0.982, + "html": "
e=0.1e=0.5e=1e=2
Non private96.396.396.396.3
GP88.2 (±0.16)91.1 (±0.17)93.2 (±0.19)93.4 (±0.12)
B-GEP91.0 (±0.07)92.9 (±0.03)93.1 (±0.10)93.2 (±0.08)
GEP90.9 (±0.19)93.5 (±0.06)94.3 (±0.09)94.8 (±0.06)
", + "type": "table", + "image_path": "d2776c477361166377cc930d11339cb78443091d3330e04c61148c4ef204a63e.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 121, + 502, + 489, + 525.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 121, + 525.3333333333334, + 489, + 548.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 121, + 548.6666666666667, + 489, + 572.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "index": 27.75 + }, + { + "type": "title", + "bbox": [ + 108, + 605, + 253, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 602, + 254, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 602, + 254, + 620 + ], + "score": 1.0, + "content": "B COMPLEXITY ANALYSIS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 632, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "We provide an analysis of the computational and memory costs of the construction of anchor", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "subspace. The computation of the anchor subspace is the dominant additional cost of GEP compared", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 298, + 668 + ], + "score": 1.0, + "content": "to conventional gradient perturbation. Notations:", + "type": "text" + }, + { + "bbox": [ + 299, + 655, + 330, + 666 + ], + "score": 0.38, + "content": "k , m , n", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 655, + 349, + 668 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 349, + 657, + 356, + 666 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "are the dimension of anchor subspace,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "number of anchor gradients, number of private gradients, and the model dimension, respectively. In", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 449, + 690 + ], + "score": 1.0, + "content": "order to reduce the computational and memory costs, we divide the parameters into", + "type": "text" + }, + { + "bbox": [ + 450, + 679, + 456, + 689 + ], + "score": 0.75, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "groups and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "compute one orthonormal basis for each group. We refer to this approach as ‘parameter grouping’. In", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "this section, we assume the parameters and the dimension of the anchor subspace are both divided", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 708, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 724 + ], + "score": 1.0, + "content": "evenly. Table 4 summarizes the additional costs of GEP with/without parameter grouping. Using", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 414, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 414, + 734 + ], + "score": 1.0, + "content": "parameter grouping can reduce the computational/memory cost significantly.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 633, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 119, + 146, + 492, + 195 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 88, + 505, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "score": 1.0, + "content": "Table 4: Computational and memory costs of a single power iteration in Algorithm 1. The computation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 504, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 504, + 112 + ], + "score": 1.0, + "content": "cost is measured by the number of floating point operations. The memory cost is measured by the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 109, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 109, + 310, + 127 + ], + "score": 1.0, + "content": "number of floating-point numbers we need to store.", + "type": "text" + }, + { + "bbox": [ + 311, + 111, + 352, + 122 + ], + "score": 0.46, + "content": "\\cdot _ { \\mathrm { G E P + P G } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 109, + 506, + 127 + ], + "score": 1.0, + "content": "denotes GEP with parameter grouping", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 507, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 123, + 137 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 124, + 130, + 134 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 120, + 295, + 137 + ], + "score": 1.0, + "content": "denotes the number of groups. Notations:", + "type": "text" + }, + { + "bbox": [ + 296, + 123, + 303, + 132 + ], + "score": 0.48, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 120, + 306, + 137 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 307, + 124, + 316, + 132 + ], + "score": 0.26, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 120, + 319, + 137 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 320, + 124, + 327, + 132 + ], + "score": 0.34, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 120, + 347, + 137 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 347, + 124, + 354, + 133 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 120, + 507, + 137 + ], + "score": 1.0, + "content": "are the dimension of anchor subspace,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 493, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 493, + 145 + ], + "score": 1.0, + "content": "number of anchor gradients, number of private gradients, and the model dimension, respectively.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 119, + 146, + 492, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 146, + 492, + 195 + ], + "spans": [ + { + "bbox": [ + 119, + 146, + 492, + 195 + ], + "score": 0.974, + "html": "
Computational CostMemory Cost
GEP2mkp+pk²max(0,(m-n+k)p+mk)
GEP+PG2mkp/g+pk²/g²max (0,(m-n+)p+mk)
", + "type": "table", + "image_path": "f315354942de29a4144ad26103cf1adc1edf47b60572935e95564367851d17d5.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 119, + 146, + 492, + 162.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 119, + 162.33333333333334, + 492, + 178.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 119, + 178.66666666666669, + 492, + 195.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 107, + 215, + 221, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 223, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 223, + 230 + ], + "score": 1.0, + "content": "C ABLATION STUDY", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 506, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 254 + ], + "score": 1.0, + "content": "The influence of choosing different auxiliary datasets. We conduct experiments with different", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "choices of auxiliary datasets. For CIFAR10, we try 2000 random test samples from CIFAR10, 2000", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "random samples from CIFAR100, and 2000 random samples from ImageNet. When the auxiliary", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "dataset is CIFAR10, we try both correct labels and random labels. For all choices of auxiliary", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "datasets, the test accuracy is evaluated on 8000 test samples of CIFAR10 that are not used as auxiliary", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 507, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 507, + 309 + ], + "score": 1.0, + "content": "data. Other implementation details are the same as in Section 4. The results are shown in Table 5.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "Surprisingly, using samples from CIFAR10 with correct labels yields the worst accuracy. This may", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 330 + ], + "score": 1.0, + "content": "because the model ‘overfits’ the auxiliary data when it has access to correct labels, which makes the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 329, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 341 + ], + "score": 1.0, + "content": "anchor subspace contains less information about the private gradients. The best accuracy is achieved", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "using samples from CIFAR10 with random labels, this makes sense because in this case the features", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "score": 1.0, + "content": "of auxiliary data and private data have the same distribution. Using samples from CIFAR100 or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 361, + 385, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 385, + 375 + ], + "score": 1.0, + "content": "ImageNet as auxiliary data has a small influence on the test accuracy.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5 + }, + { + "type": "table", + "bbox": [ + 137, + 416, + 474, + 487 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 393, + 503, + 416 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "Table 5: Test accuracy on CIFAR10 with different choices of auxiliary datasets. The privacy guarantee", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 496, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 116, + 417 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 404, + 154, + 416 + ], + "score": 0.82, + "content": "( 8 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 403, + 496, + 417 + ], + "score": 1.0, + "content": "-DP. We report the average accuracy of five runs with standard deviations in brackets.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "table_body", + "bbox": [ + 137, + 416, + 474, + 487 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 416, + 474, + 487 + ], + "spans": [ + { + "bbox": [ + 137, + 416, + 474, + 487 + ], + "score": 0.978, + "html": "
Auxiliary DataRandomLabel?Test Accuracy
CIFAR10No72.9 (±0.31)
CIFAR10Yes75.1 (±0.42)
CIFAR100Yes74.7 (±0.46)
ImageNetYes74.8 (±0.39)
", + "type": "table", + "image_path": "fd820d7ebdd3b49214716ea42d3d342bd0ed8833f7f8931c9bea093500cd4490.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 137, + 416, + 474, + 439.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 137, + 439.6666666666667, + 474, + 463.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 137, + 463.33333333333337, + 474, + 487.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + } + ], + "index": 22.75 + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "The influence of the number of anchor gradients. In the main text, the size of auxiliary dataset is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 150, + 520 + ], + "score": 0.89, + "content": "m = 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 510, + 504, + 522 + ], + "score": 1.0, + "content": ". We conduct more experiments with different sizes of auxiliary dataset to examine the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 158, + 533 + ], + "score": 1.0, + "content": "influence of", + "type": "text" + }, + { + "bbox": [ + 158, + 523, + 168, + 531 + ], + "score": 0.51, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 521, + 505, + 533 + ], + "score": 1.0, + "content": ". The auxiliary data is randomly sampled from ImageNet. Table 6 reports the test", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 296, + 545 + ], + "score": 1.0, + "content": "accuracy on CIFAR10 with different choices of", + "type": "text" + }, + { + "bbox": [ + 297, + 533, + 306, + 542 + ], + "score": 0.61, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 531, + 460, + 545 + ], + "score": 1.0, + "content": ". For both B-GEP and GEP, increasing", + "type": "text" + }, + { + "bbox": [ + 461, + 533, + 471, + 542 + ], + "score": 0.63, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "leads to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 543, + 234, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 234, + 556 + ], + "score": 1.0, + "content": "slightly improved performance.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "table", + "bbox": [ + 137, + 598, + 472, + 642 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 574, + 503, + 597 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Table 6: Test accuracy on CIFAR10 with different sizes of auxiliary dataset. The privacy guarantee is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 583, + 487, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 144, + 597 + ], + "score": 0.81, + "content": "( 8 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 583, + 487, + 599 + ], + "score": 1.0, + "content": "-DP. We report the average accuracy of five runs with standard deviations in brackets.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "table_body", + "bbox": [ + 137, + 598, + 472, + 642 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 137, + 598, + 472, + 642 + ], + "spans": [ + { + "bbox": [ + 137, + 598, + 472, + 642 + ], + "score": 0.974, + "html": "
Algorithmm = 1000m = 2000m = 4000
B-GEP62.2 (±0.26)62.6 (±0.24)63.3 (±0.27)
GEP74.6 (±0.41)74.8 (±0.39)75.2 (±0.34)
", + "type": "table", + "image_path": "0c60aa5a4fe1f318992c1aff6f337c8fa519582439ab36f3f8c4c946d3b38e55.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 137, + 598, + 472, + 612.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 137, + 612.6666666666666, + 472, + 627.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 137, + 627.3333333333333, + 472, + 641.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + } + ], + "index": 32.75 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 669 + ], + "score": 1.0, + "content": "The projection error of random basis vectors. It is tempting to construct the anchor subspace using", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "random basis vectors because Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "that one can preserve the pairwise distance between any two points after projecting into a random", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "subspace of much lower dimension. We empirically verify the projection error of Gaussian random", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "basis vectors on CIFAR10 and SVHN. The experiment settings are the same as in Section 4. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "projection errors over the training process are plotted in Figure 7. The projection error of random", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 215, + 733 + ], + "score": 1.0, + "content": "basis vectors is very high", + "type": "text" + }, + { + "bbox": [ + 216, + 721, + 249, + 731 + ], + "score": 0.85, + "content": "( > 9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 721, + 505, + 733 + ], + "score": 1.0, + "content": ") throughout training. This is because preserving the pairwise", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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": "table", + "bbox": [ + 119, + 146, + 492, + 195 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 88, + 505, + 145 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "spans": [ + { + "bbox": [ + 106, + 90, + 505, + 102 + ], + "score": 1.0, + "content": "Table 4: Computational and memory costs of a single power iteration in Algorithm 1. The computation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 100, + 504, + 112 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 504, + 112 + ], + "score": 1.0, + "content": "cost is measured by the number of floating point operations. The memory cost is measured by the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 109, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 109, + 310, + 127 + ], + "score": 1.0, + "content": "number of floating-point numbers we need to store.", + "type": "text" + }, + { + "bbox": [ + 311, + 111, + 352, + 122 + ], + "score": 0.46, + "content": "\\cdot _ { \\mathrm { G E P + P G } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 109, + 506, + 127 + ], + "score": 1.0, + "content": "denotes GEP with parameter grouping", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 507, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 123, + 137 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 124, + 130, + 134 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 120, + 295, + 137 + ], + "score": 1.0, + "content": "denotes the number of groups. Notations:", + "type": "text" + }, + { + "bbox": [ + 296, + 123, + 303, + 132 + ], + "score": 0.48, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 120, + 306, + 137 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 307, + 124, + 316, + 132 + ], + "score": 0.26, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 120, + 319, + 137 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 320, + 124, + 327, + 132 + ], + "score": 0.34, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 120, + 347, + 137 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 347, + 124, + 354, + 133 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 120, + 507, + 137 + ], + "score": 1.0, + "content": "are the dimension of anchor subspace,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 133, + 493, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 133, + 493, + 145 + ], + "score": 1.0, + "content": "number of anchor gradients, number of private gradients, and the model dimension, respectively.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "table_body", + "bbox": [ + 119, + 146, + 492, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 119, + 146, + 492, + 195 + ], + "spans": [ + { + "bbox": [ + 119, + 146, + 492, + 195 + ], + "score": 0.974, + "html": "
Computational CostMemory Cost
GEP2mkp+pk²max(0,(m-n+k)p+mk)
GEP+PG2mkp/g+pk²/g²max (0,(m-n+)p+mk)
", + "type": "table", + "image_path": "f315354942de29a4144ad26103cf1adc1edf47b60572935e95564367851d17d5.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 119, + 146, + 492, + 162.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 119, + 162.33333333333334, + 492, + 178.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 119, + 178.66666666666669, + 492, + 195.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 4.0 + }, + { + "type": "title", + "bbox": [ + 107, + 215, + 221, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 223, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 223, + 230 + ], + "score": 1.0, + "content": "C ABLATION STUDY", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 506, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 254 + ], + "score": 1.0, + "content": "The influence of choosing different auxiliary datasets. We conduct experiments with different", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "choices of auxiliary datasets. For CIFAR10, we try 2000 random test samples from CIFAR10, 2000", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 275 + ], + "score": 1.0, + "content": "random samples from CIFAR100, and 2000 random samples from ImageNet. When the auxiliary", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 287 + ], + "score": 1.0, + "content": "dataset is CIFAR10, we try both correct labels and random labels. For all choices of auxiliary", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 506, + 297 + ], + "score": 1.0, + "content": "datasets, the test accuracy is evaluated on 8000 test samples of CIFAR10 that are not used as auxiliary", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 507, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 507, + 309 + ], + "score": 1.0, + "content": "data. Other implementation details are the same as in Section 4. The results are shown in Table 5.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 506, + 320 + ], + "score": 1.0, + "content": "Surprisingly, using samples from CIFAR10 with correct labels yields the worst accuracy. This may", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 506, + 330 + ], + "score": 1.0, + "content": "because the model ‘overfits’ the auxiliary data when it has access to correct labels, which makes the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 329, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 341 + ], + "score": 1.0, + "content": "anchor subspace contains less information about the private gradients. The best accuracy is achieved", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "using samples from CIFAR10 with random labels, this makes sense because in this case the features", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 506, + 363 + ], + "score": 1.0, + "content": "of auxiliary data and private data have the same distribution. Using samples from CIFAR100 or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 361, + 385, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 385, + 375 + ], + "score": 1.0, + "content": "ImageNet as auxiliary data has a small influence on the test accuracy.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 240, + 507, + 375 + ] + }, + { + "type": "table", + "bbox": [ + 137, + 416, + 474, + 487 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 393, + 503, + 416 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "Table 5: Test accuracy on CIFAR10 with different choices of auxiliary datasets. The privacy guarantee", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 496, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 116, + 417 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 117, + 404, + 154, + 416 + ], + "score": 0.82, + "content": "( 8 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 403, + 496, + 417 + ], + "score": 1.0, + "content": "-DP. We report the average accuracy of five runs with standard deviations in brackets.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "table_body", + "bbox": [ + 137, + 416, + 474, + 487 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 137, + 416, + 474, + 487 + ], + "spans": [ + { + "bbox": [ + 137, + 416, + 474, + 487 + ], + "score": 0.978, + "html": "
Auxiliary DataRandomLabel?Test Accuracy
CIFAR10No72.9 (±0.31)
CIFAR10Yes75.1 (±0.42)
CIFAR100Yes74.7 (±0.46)
ImageNetYes74.8 (±0.39)
", + "type": "table", + "image_path": "fd820d7ebdd3b49214716ea42d3d342bd0ed8833f7f8931c9bea093500cd4490.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 137, + 416, + 474, + 439.6666666666667 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 137, + 439.6666666666667, + 474, + 463.33333333333337 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 137, + 463.33333333333337, + 474, + 487.00000000000006 + ], + "spans": [], + "index": 25 + } + ] + } + ], + "index": 22.75 + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "The influence of the number of anchor gradients. In the main text, the size of auxiliary dataset is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 510, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 150, + 520 + ], + "score": 0.89, + "content": "m = 2 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 510, + 504, + 522 + ], + "score": 1.0, + "content": ". We conduct more experiments with different sizes of auxiliary dataset to examine the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 158, + 533 + ], + "score": 1.0, + "content": "influence of", + "type": "text" + }, + { + "bbox": [ + 158, + 523, + 168, + 531 + ], + "score": 0.51, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 521, + 505, + 533 + ], + "score": 1.0, + "content": ". The auxiliary data is randomly sampled from ImageNet. Table 6 reports the test", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 296, + 545 + ], + "score": 1.0, + "content": "accuracy on CIFAR10 with different choices of", + "type": "text" + }, + { + "bbox": [ + 297, + 533, + 306, + 542 + ], + "score": 0.61, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 531, + 460, + 545 + ], + "score": 1.0, + "content": ". For both B-GEP and GEP, increasing", + "type": "text" + }, + { + "bbox": [ + 461, + 533, + 471, + 542 + ], + "score": 0.63, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "leads to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 543, + 234, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 234, + 556 + ], + "score": 1.0, + "content": "slightly improved performance.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 498, + 506, + 556 + ] + }, + { + "type": "table", + "bbox": [ + 137, + 598, + 472, + 642 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 574, + 503, + 597 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 505, + 587 + ], + "score": 1.0, + "content": "Table 6: Test accuracy on CIFAR10 with different sizes of auxiliary dataset. The privacy guarantee is", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 583, + 487, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 144, + 597 + ], + "score": 0.81, + "content": "( 8 , 1 0 ^ { - 5 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 583, + 487, + 599 + ], + "score": 1.0, + "content": "-DP. We report the average accuracy of five runs with standard deviations in brackets.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "table_body", + "bbox": [ + 137, + 598, + 472, + 642 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 137, + 598, + 472, + 642 + ], + "spans": [ + { + "bbox": [ + 137, + 598, + 472, + 642 + ], + "score": 0.974, + "html": "
Algorithmm = 1000m = 2000m = 4000
B-GEP62.2 (±0.26)62.6 (±0.24)63.3 (±0.27)
GEP74.6 (±0.41)74.8 (±0.39)75.2 (±0.34)
", + "type": "table", + "image_path": "0c60aa5a4fe1f318992c1aff6f337c8fa519582439ab36f3f8c4c946d3b38e55.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 137, + 598, + 472, + 612.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 137, + 612.6666666666666, + 472, + 627.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 137, + 627.3333333333333, + 472, + 641.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + } + ], + "index": 32.75 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 505, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 669 + ], + "score": 1.0, + "content": "The projection error of random basis vectors. It is tempting to construct the anchor subspace using", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "random basis vectors because Johnson–Lindenstrauss Lemma (Dasgupta & Gupta, 2003) guarantees", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "that one can preserve the pairwise distance between any two points after projecting into a random", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "subspace of much lower dimension. We empirically verify the projection error of Gaussian random", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "basis vectors on CIFAR10 and SVHN. The experiment settings are the same as in Section 4. The", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "projection errors over the training process are plotted in Figure 7. The projection error of random", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 215, + 733 + ], + "score": 1.0, + "content": "basis vectors is very high", + "type": "text" + }, + { + "bbox": [ + 216, + 721, + 249, + 731 + ], + "score": 0.85, + "content": "( > 9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 721, + 505, + 733 + ], + "score": 1.0, + "content": ") throughout training. This is because preserving the pairwise", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "distance is not sufficient for high quality gradient reconstruction, which requires one to preserve the", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 244, + 405, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 405, + 257 + ], + "score": 1.0, + "content": "average ‘distance’ between any individual gradient and all other gradients.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 653, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 187, + 81, + 423, + 189 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 187, + 81, + 423, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 81, + 423, + 189 + ], + "spans": [ + { + "bbox": [ + 187, + 81, + 423, + 189 + ], + "score": 0.969, + "type": "image", + "image_path": "6bd629998cab363e48acafcc2df5409bfe0ffc571069597eaba467654c736237.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 187, + 81, + 423, + 96.42857142857143 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 187, + 96.42857142857143, + 423, + 111.85714285714286 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 187, + 111.85714285714286, + 423, + 127.28571428571429 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 187, + 127.28571428571429, + 423, + 142.71428571428572 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 187, + 142.71428571428572, + 423, + 158.14285714285714 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 187, + 158.14285714285714, + 423, + 173.57142857142856 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 187, + 173.57142857142856, + 423, + 188.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 201, + 505, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 200, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 496, + 216 + ], + "score": 1.0, + "content": "Figure 7: Projection error rate of random basis vectors. The dimension of subspace is denoted by", + "type": "text" + }, + { + "bbox": [ + 496, + 203, + 502, + 212 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 200, + 506, + 216 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 504, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "distance is not sufficient for high quality gradient reconstruction, which requires one to preserve the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 244, + 405, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 405, + 257 + ], + "score": 1.0, + "content": "average ‘distance’ between any individual gradient and all other gradients.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 107, + 271, + 218, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 220, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 220, + 287 + ], + "score": 1.0, + "content": "D MISSING PROOFS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 504, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 347, + 309 + ], + "score": 1.0, + "content": "Lemma 3.1. Assume that the population covariance matrix", + "type": "text" + }, + { + "bbox": [ + 347, + 297, + 356, + 307 + ], + "score": 0.79, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 295, + 406, + 309 + ], + "score": 1.0, + "content": "is with rank", + "type": "text" + }, + { + "bbox": [ + 407, + 297, + 413, + 307 + ], + "score": 0.69, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 295, + 495, + 309 + ], + "score": 1.0, + "content": "and the distribution", + "type": "text" + }, + { + "bbox": [ + 495, + 298, + 504, + 307 + ], + "score": 0.81, + "content": "\\mathcal { P }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 306, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 104, + 306, + 139, + 324 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 140, + 309, + 201, + 322 + ], + "score": 0.92, + "content": "\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 306, + 227, + 324 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 228, + 311, + 233, + 319 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 306, + 253, + 324 + ], + "score": 1.0, + "content": "-flats", + "type": "text" + }, + { + "bbox": [ + 254, + 309, + 265, + 320 + ], + "score": 0.87, + "content": "\\mathbb { F } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 306, + 276, + 324 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 276, + 309, + 289, + 320 + ], + "score": 0.85, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 306, + 308, + 324 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 309, + 309, + 352, + 321 + ], + "score": 0.9, + "content": "0 \\leq s < k", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 306, + 371, + 324 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 371, + 308, + 427, + 321 + ], + "score": 0.92, + "content": "\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 306, + 445, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 308, + 504, + 322 + ], + "score": 0.93, + "content": "\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 321, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 234, + 335 + ], + "score": 1.0, + "content": "be the eigendecompositions of", + "type": "text" + }, + { + "bbox": [ + 234, + 323, + 244, + 333 + ], + "score": 0.79, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 322, + 398, + 335 + ], + "score": 1.0, + "content": "and the empirical covariance matrix", + "type": "text" + }, + { + "bbox": [ + 399, + 321, + 407, + 333 + ], + "score": 0.81, + "content": "\\hat { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 322, + 506, + 335 + ], + "score": 1.0, + "content": ", respectively, such that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 334, + 410, + 348 + ], + "spans": [ + { + "bbox": [ + 107, + 334, + 155, + 347 + ], + "score": 0.93, + "content": "\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 334, + 173, + 348 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 334, + 231, + 347 + ], + "score": 0.94, + "content": "\\lambda _ { k ^ { \\prime } + 1 } ( \\hat { \\pmb S } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 334, + 266, + 348 + ], + "score": 1.0, + "content": ". Then if", + "type": "text" + }, + { + "bbox": [ + 266, + 335, + 295, + 347 + ], + "score": 0.89, + "content": "m \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 334, + 399, + 348 + ], + "score": 1.0, + "content": ", we have with probability", + "type": "text" + }, + { + "bbox": [ + 400, + 336, + 405, + 345 + ], + "score": 0.68, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 334, + 410, + 348 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 351, + 389, + 367 + ], + "lines": [ + { + "bbox": [ + 222, + 351, + 389, + 367 + ], + "spans": [ + { + "bbox": [ + 222, + 351, + 389, + 367 + ], + "score": 0.91, + "content": "k ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 .", + "type": "interline_equation", + "image_path": "fa7681484f07c4229db4a3ebfe8369aafa31b912624554f7ac0925b7f0997da0.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 222, + 351, + 389, + 367 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 378, + 444, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 446, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 446, + 392 + ], + "score": 1.0, + "content": "Proof. We extend the Theorem 3.2 in Eaton & Perlman (1973) to the low-rank case.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 360, + 408 + ], + "score": 1.0, + "content": "Theorem D.1 (Theorem 3.2 in Eaton & Perlman (1973)). Let", + "type": "text" + }, + { + "bbox": [ + 361, + 395, + 433, + 407 + ], + "score": 0.91, + "content": "\\pmb { X } = ( \\pmb { x } _ { 1 } , . . . , \\pmb { x } _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 393, + 477, + 408 + ], + "score": 1.0, + "content": "where the", + "type": "text" + }, + { + "bbox": [ + 477, + 397, + 488, + 406 + ], + "score": 0.86, + "content": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 393, + 505, + 408 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 207, + 419 + ], + "score": 1.0, + "content": "i.i.d. random vectors in", + "type": "text" + }, + { + "bbox": [ + 207, + 407, + 219, + 416 + ], + "score": 0.76, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 405, + 224, + 419 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 225, + 407, + 252, + 418 + ], + "score": 0.86, + "content": "n \\geq p", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 405, + 267, + 419 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 267, + 406, + 340, + 418 + ], + "score": 0.89, + "content": "\\mathbb { P } \\{ \\pmb { x } _ { 1 } \\in \\mathbb { M } \\} = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 405, + 442, + 419 + ], + "score": 1.0, + "content": "for all proper manifolds", + "type": "text" + }, + { + "bbox": [ + 443, + 406, + 480, + 416 + ], + "score": 0.88, + "content": "\\mathbb { M } \\subset \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 405, + 506, + 419 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 416, + 213, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 129, + 429 + ], + "score": 0.81, + "content": "\\mathbb { P } \\{ X", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 416, + 191, + 430 + ], + "score": 1.0, + "content": "is non-singular", + "type": "text" + }, + { + "bbox": [ + 191, + 417, + 208, + 429 + ], + "score": 0.66, + "content": "\\scriptstyle \\cdot \\} = I", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 416, + 213, + 430 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 503, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 257, + 456 + ], + "score": 1.0, + "content": "We note that the subspace spanned by", + "type": "text" + }, + { + "bbox": [ + 257, + 441, + 272, + 453 + ], + "score": 0.9, + "content": "\\hat { V } _ { k ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 440, + 378, + 456 + ], + "score": 1.0, + "content": "is in the space spanned by", + "type": "text" + }, + { + "bbox": [ + 378, + 443, + 390, + 453 + ], + "score": 0.88, + "content": "V _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 440, + 474, + 456 + ], + "score": 1.0, + "content": "by definition. Hence", + "type": "text" + }, + { + "bbox": [ + 475, + 442, + 503, + 453 + ], + "score": 0.9, + "content": "k ^ { \\prime } \\leq k", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 459, + 506, + 510 + ], + "lines": [ + { + "bbox": [ + 104, + 458, + 507, + 475 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 122, + 475 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 459, + 198, + 473 + ], + "score": 0.93, + "content": "\\hat { \\pmb { x } } _ { i } : = V _ { k } ^ { T } \\pmb { \\hat { \\xi } } _ { i } \\in \\mathbb { R } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 458, + 213, + 475 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 213, + 460, + 244, + 473 + ], + "score": 0.92, + "content": "i \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 458, + 271, + 475 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + }, + { + "bbox": [ + 272, + 459, + 348, + 473 + ], + "score": 0.92, + "content": "\\hat { \\pmb X } : = ( \\hat { \\pmb x } _ { 1 } , . . . , \\hat { \\pmb x } _ { m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 458, + 507, + 475 + ], + "score": 1.0, + "content": "is non-singular because of the assump-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 472, + 502, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 235, + 487 + ], + "score": 1.0, + "content": "tion and Theorem D.1. That is", + "type": "text" + }, + { + "bbox": [ + 235, + 473, + 295, + 486 + ], + "score": 0.94, + "content": "r a n k ( { \\hat { X } } ) = k", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 473, + 344, + 487 + ], + "score": 1.0, + "content": ". Therefore", + "type": "text" + }, + { + "bbox": [ + 344, + 472, + 502, + 487 + ], + "score": 0.77, + "content": "r a n k ( ( \\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m } ) ) \\geq k , r a n k ( \\hat { S } ) \\geq k", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 486, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 123, + 500 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 487, + 151, + 498 + ], + "score": 0.91, + "content": "k ^ { \\prime } \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 486, + 197, + 500 + ], + "score": 1.0, + "content": ". Therefore", + "type": "text" + }, + { + "bbox": [ + 197, + 487, + 226, + 497 + ], + "score": 0.91, + "content": "k ^ { \\prime } = k", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 486, + 343, + 500 + ], + "score": 1.0, + "content": "and the subspace spanned by", + "type": "text" + }, + { + "bbox": [ + 343, + 486, + 358, + 498 + ], + "score": 0.91, + "content": "\\hat { V } _ { k ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 486, + 476, + 500 + ], + "score": 1.0, + "content": "and the subspace spanned by", + "type": "text" + }, + { + "bbox": [ + 477, + 487, + 489, + 498 + ], + "score": 0.88, + "content": "V _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 486, + 506, + 500 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 146, + 509 + ], + "score": 1.0, + "content": "identical.", + "type": "text" + }, + { + "bbox": [ + 494, + 498, + 505, + 510 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 506, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 504, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 182, + 529 + ], + "score": 1.0, + "content": "Theorem 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 183, + 516, + 194, + 527 + ], + "score": 0.86, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 515, + 213, + 529 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 516, + 226, + 527 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 515, + 336, + 529 + ], + "score": 1.0, + "content": "be the sensitivity of w and", + "type": "text" + }, + { + "bbox": [ + 337, + 518, + 343, + 526 + ], + "score": 0.63, + "content": "\\pmb { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 515, + 498, + 529 + ], + "score": 1.0, + "content": ", respectively, the output of Algorithm", + "type": "text" + }, + { + "bbox": [ + 498, + 516, + 504, + 526 + ], + "score": 0.33, + "content": "^ { l }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 141, + 541 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 141, + 528, + 163, + 540 + ], + "score": 0.89, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 527, + 212, + 541 + ], + "score": 1.0, + "content": "-DP for any", + "type": "text" + }, + { + "bbox": [ + 212, + 528, + 252, + 540 + ], + "score": 0.92, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 527, + 271, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 528, + 332, + 540 + ], + "score": 0.89, + "content": "\\epsilon \\leq 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 527, + 385, + 541 + ], + "score": 1.0, + "content": "if we choose", + "type": "text" + }, + { + "bbox": [ + 385, + 527, + 486, + 541 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 540, + 212, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 207, + 554 + ], + "score": 0.91, + "content": "\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 541, + 212, + 555 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 580 + ], + "score": 1.0, + "content": "Proof of Theorem 3.1. We first introduce some background knowledge of Rényi differential privacy", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 576, + 490, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 490, + 590 + ], + "score": 1.0, + "content": "(RDP) (Mironov, 2017). RDP measures the Rényi divergence between two output distributions.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 592, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 162, + 607 + ], + "score": 1.0, + "content": "Definition 2 (", + "type": "text" + }, + { + "bbox": [ + 162, + 593, + 186, + 605 + ], + "score": 0.83, + "content": "( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 591, + 326, + 607 + ], + "score": 1.0, + "content": "-RDP). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 326, + 594, + 333, + 605 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 591, + 417, + 607 + ], + "score": 1.0, + "content": "is said to guarantee", + "type": "text" + }, + { + "bbox": [ + 417, + 593, + 441, + 605 + ], + "score": 0.91, + "content": "( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 591, + 505, + 607 + ], + "score": 1.0, + "content": "-RDP if for any", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 604, + 311, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 192, + 617 + ], + "score": 1.0, + "content": "neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 193, + 605, + 216, + 616 + ], + "score": 0.88, + "content": "\\mathbb { D } , \\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 604, + 234, + 617 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 235, + 605, + 260, + 615 + ], + "score": 0.9, + "content": "\\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 604, + 311, + 617 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 620, + 353, + 635 + ], + "lines": [ + { + "bbox": [ + 257, + 620, + 353, + 635 + ], + "spans": [ + { + "bbox": [ + 257, + 620, + 353, + 635 + ], + "score": 0.91, + "content": "D _ { \\lambda } ( f ( \\mathbb { D } ) | | f ( \\mathbb { D } ^ { \\prime } ) ) \\leq \\gamma ,", + "type": "interline_equation", + "image_path": "76eecbcfbf32fd9cdf5207a68929c3d124097f63292329f3bc306dce37ddd515.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 257, + 620, + 353, + 635 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 331, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 331, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 133, + 653 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 639, + 166, + 651 + ], + "score": 0.91, + "content": "D _ { \\lambda } ( \\cdot | | \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 638, + 321, + 653 + ], + "score": 1.0, + "content": "denotes the Rényi divergence of order", + "type": "text" + }, + { + "bbox": [ + 321, + 640, + 328, + 649 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 638, + 331, + 653 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 661, + 307, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 307, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 307, + 675 + ], + "score": 1.0, + "content": "We next introduce some useful properties of RDP.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 104, + 677, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 300, + 693 + ], + "score": 1.0, + "content": "Lemma D.2 (Gaussian mechanism of RDP). Let", + "type": "text" + }, + { + "bbox": [ + 300, + 679, + 428, + 691 + ], + "score": 0.85, + "content": "S = \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D ^ { \\prime } } } \\| f ( \\mathbb { D } ) - f ( \\mathbb { D ^ { \\prime } } ) \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 677, + 453, + 693 + ], + "score": 1.0, + "content": "be the", + "type": "text" + }, + { + "bbox": [ + 454, + 680, + 462, + 690 + ], + "score": 0.85, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 677, + 506, + 693 + ], + "score": 1.0, + "content": "sensitivity,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 688, + 483, + 709 + ], + "spans": [ + { + "bbox": [ + 104, + 688, + 213, + 709 + ], + "score": 1.0, + "content": "then Gaussian mechanism", + "type": "text" + }, + { + "bbox": [ + 214, + 692, + 279, + 705 + ], + "score": 0.92, + "content": "\\mathcal { M } = f ( \\mathbb { D } ) + z", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 688, + 315, + 709 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 315, + 690, + 349, + 705 + ], + "score": 0.74, + "content": "( \\lambda , \\frac { \\lambda S ^ { 2 } } { 2 \\sigma ^ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 688, + 401, + 709 + ], + "score": 1.0, + "content": "-RDP, where", + "type": "text" + }, + { + "bbox": [ + 401, + 692, + 478, + 705 + ], + "score": 0.91, + "content": "z \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p \\times p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 688, + 483, + 709 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 105, + 709, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 267, + 723 + ], + "score": 1.0, + "content": "Lemma D.3 (Composition of RDP). If", + "type": "text" + }, + { + "bbox": [ + 267, + 710, + 281, + 721 + ], + "score": 0.76, + "content": "M _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 708, + 285, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 286, + 710, + 301, + 721 + ], + "score": 0.83, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 708, + 331, + 723 + ], + "score": 1.0, + "content": "satisfy", + "type": "text" + }, + { + "bbox": [ + 331, + 709, + 359, + 722 + ], + "score": 0.87, + "content": "( \\lambda , \\gamma _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 708, + 402, + 723 + ], + "score": 1.0, + "content": "-RDP and", + "type": "text" + }, + { + "bbox": [ + 402, + 709, + 430, + 722 + ], + "score": 0.91, + "content": "( \\lambda , \\gamma _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "-RDP respectively,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 308, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 233, + 733 + ], + "score": 1.0, + "content": "then their composition satisfies", + "type": "text" + }, + { + "bbox": [ + 233, + 721, + 306, + 732 + ], + "score": 0.88, + "content": "( \\lambda , \\gamma _ { 1 } + \\gamma _ { 2 } ) – R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 720, + 308, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 187, + 81, + 423, + 189 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 187, + 81, + 423, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 187, + 81, + 423, + 189 + ], + "spans": [ + { + "bbox": [ + 187, + 81, + 423, + 189 + ], + "score": 0.969, + "type": "image", + "image_path": "6bd629998cab363e48acafcc2df5409bfe0ffc571069597eaba467654c736237.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 187, + 81, + 423, + 96.42857142857143 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 187, + 96.42857142857143, + 423, + 111.85714285714286 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 187, + 111.85714285714286, + 423, + 127.28571428571429 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 187, + 127.28571428571429, + 423, + 142.71428571428572 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 187, + 142.71428571428572, + 423, + 158.14285714285714 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 187, + 158.14285714285714, + 423, + 173.57142857142856 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 187, + 173.57142857142856, + 423, + 188.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 201, + 505, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 200, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 496, + 216 + ], + "score": 1.0, + "content": "Figure 7: Projection error rate of random basis vectors. The dimension of subspace is denoted by", + "type": "text" + }, + { + "bbox": [ + 496, + 203, + 502, + 212 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 200, + 506, + 216 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 5.0 + }, + { + "type": "text", + "bbox": [ + 107, + 233, + 504, + 256 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 105, + 233, + 505, + 257 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 271, + 218, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 270, + 220, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 220, + 287 + ], + "score": 1.0, + "content": "D MISSING PROOFS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 296, + 505, + 347 + ], + "lines": [ + { + "bbox": [ + 105, + 295, + 504, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 347, + 309 + ], + "score": 1.0, + "content": "Lemma 3.1. Assume that the population covariance matrix", + "type": "text" + }, + { + "bbox": [ + 347, + 297, + 356, + 307 + ], + "score": 0.79, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 295, + 406, + 309 + ], + "score": 1.0, + "content": "is with rank", + "type": "text" + }, + { + "bbox": [ + 407, + 297, + 413, + 307 + ], + "score": 0.69, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 295, + 495, + 309 + ], + "score": 1.0, + "content": "and the distribution", + "type": "text" + }, + { + "bbox": [ + 495, + 298, + 504, + 307 + ], + "score": 0.81, + "content": "\\mathcal { P }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 306, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 104, + 306, + 139, + 324 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 140, + 309, + 201, + 322 + ], + "score": 0.92, + "content": "\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 306, + 227, + 324 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 228, + 311, + 233, + 319 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 306, + 253, + 324 + ], + "score": 1.0, + "content": "-flats", + "type": "text" + }, + { + "bbox": [ + 254, + 309, + 265, + 320 + ], + "score": 0.87, + "content": "\\mathbb { F } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 306, + 276, + 324 + ], + "score": 1.0, + "content": "in", + "type": "text" + }, + { + "bbox": [ + 276, + 309, + 289, + 320 + ], + "score": 0.85, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 306, + 308, + 324 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 309, + 309, + 352, + 321 + ], + "score": 0.9, + "content": "0 \\leq s < k", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 306, + 371, + 324 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 371, + 308, + 427, + 321 + ], + "score": 0.92, + "content": "\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 306, + 445, + 324 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 446, + 308, + 504, + 322 + ], + "score": 0.93, + "content": "\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 321, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 234, + 335 + ], + "score": 1.0, + "content": "be the eigendecompositions of", + "type": "text" + }, + { + "bbox": [ + 234, + 323, + 244, + 333 + ], + "score": 0.79, + "content": "\\pmb { \\Sigma }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 322, + 398, + 335 + ], + "score": 1.0, + "content": "and the empirical covariance matrix", + "type": "text" + }, + { + "bbox": [ + 399, + 321, + 407, + 333 + ], + "score": 0.81, + "content": "\\hat { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 322, + 506, + 335 + ], + "score": 1.0, + "content": ", respectively, such that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 334, + 410, + 348 + ], + "spans": [ + { + "bbox": [ + 107, + 334, + 155, + 347 + ], + "score": 0.93, + "content": "\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 334, + 173, + 348 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 174, + 334, + 231, + 347 + ], + "score": 0.94, + "content": "\\lambda _ { k ^ { \\prime } + 1 } ( \\hat { \\pmb S } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 334, + 266, + 348 + ], + "score": 1.0, + "content": ". Then if", + "type": "text" + }, + { + "bbox": [ + 266, + 335, + 295, + 347 + ], + "score": 0.89, + "content": "m \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 334, + 399, + 348 + ], + "score": 1.0, + "content": ", we have with probability", + "type": "text" + }, + { + "bbox": [ + 400, + 336, + 405, + 345 + ], + "score": 0.68, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 334, + 410, + 348 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 104, + 295, + 506, + 348 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 222, + 351, + 389, + 367 + ], + "lines": [ + { + "bbox": [ + 222, + 351, + 389, + 367 + ], + "spans": [ + { + "bbox": [ + 222, + 351, + 389, + 367 + ], + "score": 0.91, + "content": "k ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 .", + "type": "interline_equation", + "image_path": "fa7681484f07c4229db4a3ebfe8369aafa31b912624554f7ac0925b7f0997da0.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 222, + 351, + 389, + 367 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 378, + 444, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 446, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 446, + 392 + ], + "score": 1.0, + "content": "Proof. We extend the Theorem 3.2 in Eaton & Perlman (1973) to the low-rank case.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 378, + 446, + 392 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 506, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 360, + 408 + ], + "score": 1.0, + "content": "Theorem D.1 (Theorem 3.2 in Eaton & Perlman (1973)). Let", + "type": "text" + }, + { + "bbox": [ + 361, + 395, + 433, + 407 + ], + "score": 0.91, + "content": "\\pmb { X } = ( \\pmb { x } _ { 1 } , . . . , \\pmb { x } _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 393, + 477, + 408 + ], + "score": 1.0, + "content": "where the", + "type": "text" + }, + { + "bbox": [ + 477, + 397, + 488, + 406 + ], + "score": 0.86, + "content": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { i } }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 393, + 505, + 408 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 405, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 207, + 419 + ], + "score": 1.0, + "content": "i.i.d. random vectors in", + "type": "text" + }, + { + "bbox": [ + 207, + 407, + 219, + 416 + ], + "score": 0.76, + "content": "\\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 405, + 224, + 419 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 225, + 407, + 252, + 418 + ], + "score": 0.86, + "content": "n \\geq p", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 405, + 267, + 419 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 267, + 406, + 340, + 418 + ], + "score": 0.89, + "content": "\\mathbb { P } \\{ \\pmb { x } _ { 1 } \\in \\mathbb { M } \\} = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 405, + 442, + 419 + ], + "score": 1.0, + "content": "for all proper manifolds", + "type": "text" + }, + { + "bbox": [ + 443, + 406, + 480, + 416 + ], + "score": 0.88, + "content": "\\mathbb { M } \\subset \\mathbb { R } ^ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 405, + 506, + 419 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 416, + 213, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 129, + 429 + ], + "score": 0.81, + "content": "\\mathbb { P } \\{ X", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 416, + 191, + 430 + ], + "score": 1.0, + "content": "is non-singular", + "type": "text" + }, + { + "bbox": [ + 191, + 417, + 208, + 429 + ], + "score": 0.66, + "content": "\\scriptstyle \\cdot \\} = I", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 416, + 213, + 430 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 393, + 506, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 503, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 257, + 456 + ], + "score": 1.0, + "content": "We note that the subspace spanned by", + "type": "text" + }, + { + "bbox": [ + 257, + 441, + 272, + 453 + ], + "score": 0.9, + "content": "\\hat { V } _ { k ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 440, + 378, + 456 + ], + "score": 1.0, + "content": "is in the space spanned by", + "type": "text" + }, + { + "bbox": [ + 378, + 443, + 390, + 453 + ], + "score": 0.88, + "content": "V _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 440, + 474, + 456 + ], + "score": 1.0, + "content": "by definition. Hence", + "type": "text" + }, + { + "bbox": [ + 475, + 442, + 503, + 453 + ], + "score": 0.9, + "content": "k ^ { \\prime } \\leq k", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 440, + 503, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 459, + 506, + 510 + ], + "lines": [ + { + "bbox": [ + 104, + 458, + 507, + 475 + ], + "spans": [ + { + "bbox": [ + 104, + 458, + 122, + 475 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 459, + 198, + 473 + ], + "score": 0.93, + "content": "\\hat { \\pmb { x } } _ { i } : = V _ { k } ^ { T } \\pmb { \\hat { \\xi } } _ { i } \\in \\mathbb { R } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 458, + 213, + 475 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 213, + 460, + 244, + 473 + ], + "score": 0.92, + "content": "i \\in [ m ]", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 458, + 271, + 475 + ], + "score": 1.0, + "content": ". Then", + "type": "text" + }, + { + "bbox": [ + 272, + 459, + 348, + 473 + ], + "score": 0.92, + "content": "\\hat { \\pmb X } : = ( \\hat { \\pmb x } _ { 1 } , . . . , \\hat { \\pmb x } _ { m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 458, + 507, + 475 + ], + "score": 1.0, + "content": "is non-singular because of the assump-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 472, + 502, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 235, + 487 + ], + "score": 1.0, + "content": "tion and Theorem D.1. That is", + "type": "text" + }, + { + "bbox": [ + 235, + 473, + 295, + 486 + ], + "score": 0.94, + "content": "r a n k ( { \\hat { X } } ) = k", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 473, + 344, + 487 + ], + "score": 1.0, + "content": ". Therefore", + "type": "text" + }, + { + "bbox": [ + 344, + 472, + 502, + 487 + ], + "score": 0.77, + "content": "r a n k ( ( \\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m } ) ) \\geq k , r a n k ( \\hat { S } ) \\geq k", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 486, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 123, + 500 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 487, + 151, + 498 + ], + "score": 0.91, + "content": "k ^ { \\prime } \\geq k", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 486, + 197, + 500 + ], + "score": 1.0, + "content": ". Therefore", + "type": "text" + }, + { + "bbox": [ + 197, + 487, + 226, + 497 + ], + "score": 0.91, + "content": "k ^ { \\prime } = k", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 486, + 343, + 500 + ], + "score": 1.0, + "content": "and the subspace spanned by", + "type": "text" + }, + { + "bbox": [ + 343, + 486, + 358, + 498 + ], + "score": 0.91, + "content": "\\hat { V } _ { k ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 486, + 476, + 500 + ], + "score": 1.0, + "content": "and the subspace spanned by", + "type": "text" + }, + { + "bbox": [ + 477, + 487, + 489, + 498 + ], + "score": 0.88, + "content": "V _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 486, + 506, + 500 + ], + "score": 1.0, + "content": "are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 497, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 146, + 509 + ], + "score": 1.0, + "content": "identical.", + "type": "text" + }, + { + "bbox": [ + 494, + 498, + 505, + 510 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 104, + 458, + 507, + 510 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 515, + 506, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 504, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 182, + 529 + ], + "score": 1.0, + "content": "Theorem 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 183, + 516, + 194, + 527 + ], + "score": 0.86, + "content": "S _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 515, + 213, + 529 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 516, + 226, + 527 + ], + "score": 0.87, + "content": "S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 515, + 336, + 529 + ], + "score": 1.0, + "content": "be the sensitivity of w and", + "type": "text" + }, + { + "bbox": [ + 337, + 518, + 343, + 526 + ], + "score": 0.63, + "content": "\\pmb { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 515, + 498, + 529 + ], + "score": 1.0, + "content": ", respectively, the output of Algorithm", + "type": "text" + }, + { + "bbox": [ + 498, + 516, + 504, + 526 + ], + "score": 0.33, + "content": "^ { l }", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 141, + 541 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 141, + 528, + 163, + 540 + ], + "score": 0.89, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 527, + 212, + 541 + ], + "score": 1.0, + "content": "-DP for any", + "type": "text" + }, + { + "bbox": [ + 212, + 528, + 252, + 540 + ], + "score": 0.92, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 527, + 271, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 271, + 528, + 332, + 540 + ], + "score": 0.89, + "content": "\\epsilon \\leq 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 527, + 385, + 541 + ], + "score": 1.0, + "content": "if we choose", + "type": "text" + }, + { + "bbox": [ + 385, + 527, + 486, + 541 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 540, + 212, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 207, + 554 + ], + "score": 0.91, + "content": "\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 541, + 212, + 555 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 515, + 506, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 580 + ], + "score": 1.0, + "content": "Proof of Theorem 3.1. We first introduce some background knowledge of Rényi differential privacy", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 576, + 490, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 490, + 590 + ], + "score": 1.0, + "content": "(RDP) (Mironov, 2017). RDP measures the Rényi divergence between two output distributions.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 563, + 505, + 590 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 592, + 505, + 616 + ], + "lines": [ + { + "bbox": [ + 105, + 591, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 162, + 607 + ], + "score": 1.0, + "content": "Definition 2 (", + "type": "text" + }, + { + "bbox": [ + 162, + 593, + 186, + 605 + ], + "score": 0.83, + "content": "( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 591, + 326, + 607 + ], + "score": 1.0, + "content": "-RDP). A randomized mechanism", + "type": "text" + }, + { + "bbox": [ + 326, + 594, + 333, + 605 + ], + "score": 0.84, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 591, + 417, + 607 + ], + "score": 1.0, + "content": "is said to guarantee", + "type": "text" + }, + { + "bbox": [ + 417, + 593, + 441, + 605 + ], + "score": 0.91, + "content": "( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 591, + 505, + 607 + ], + "score": 1.0, + "content": "-RDP if for any", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 604, + 311, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 604, + 192, + 617 + ], + "score": 1.0, + "content": "neighboring datasets", + "type": "text" + }, + { + "bbox": [ + 193, + 605, + 216, + 616 + ], + "score": 0.88, + "content": "\\mathbb { D } , \\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 604, + 234, + 617 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 235, + 605, + 260, + 615 + ], + "score": 0.9, + "content": "\\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 604, + 311, + 617 + ], + "score": 1.0, + "content": "it holds that", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 591, + 505, + 617 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 620, + 353, + 635 + ], + "lines": [ + { + "bbox": [ + 257, + 620, + 353, + 635 + ], + "spans": [ + { + "bbox": [ + 257, + 620, + 353, + 635 + ], + "score": 0.91, + "content": "D _ { \\lambda } ( f ( \\mathbb { D } ) | | f ( \\mathbb { D } ^ { \\prime } ) ) \\leq \\gamma ,", + "type": "interline_equation", + "image_path": "76eecbcfbf32fd9cdf5207a68929c3d124097f63292329f3bc306dce37ddd515.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 257, + 620, + 353, + 635 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 331, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 638, + 331, + 653 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 133, + 653 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 639, + 166, + 651 + ], + "score": 0.91, + "content": "D _ { \\lambda } ( \\cdot | | \\cdot )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 638, + 321, + 653 + ], + "score": 1.0, + "content": "denotes the Rényi divergence of order", + "type": "text" + }, + { + "bbox": [ + 321, + 640, + 328, + 649 + ], + "score": 0.71, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 638, + 331, + 653 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 638, + 331, + 653 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 661, + 307, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 307, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 307, + 675 + ], + "score": 1.0, + "content": "We next introduce some useful properties of RDP.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34, + "bbox_fs": [ + 106, + 662, + 307, + 675 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 104, + 677, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 300, + 693 + ], + "score": 1.0, + "content": "Lemma D.2 (Gaussian mechanism of RDP). Let", + "type": "text" + }, + { + "bbox": [ + 300, + 679, + 428, + 691 + ], + "score": 0.85, + "content": "S = \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D ^ { \\prime } } } \\| f ( \\mathbb { D } ) - f ( \\mathbb { D ^ { \\prime } } ) \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 677, + 453, + 693 + ], + "score": 1.0, + "content": "be the", + "type": "text" + }, + { + "bbox": [ + 454, + 680, + 462, + 690 + ], + "score": 0.85, + "content": "l _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 677, + 506, + 693 + ], + "score": 1.0, + "content": "sensitivity,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 688, + 483, + 709 + ], + "spans": [ + { + "bbox": [ + 104, + 688, + 213, + 709 + ], + "score": 1.0, + "content": "then Gaussian mechanism", + "type": "text" + }, + { + "bbox": [ + 214, + 692, + 279, + 705 + ], + "score": 0.92, + "content": "\\mathcal { M } = f ( \\mathbb { D } ) + z", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 688, + 315, + 709 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 315, + 690, + 349, + 705 + ], + "score": 0.74, + "content": "( \\lambda , \\frac { \\lambda S ^ { 2 } } { 2 \\sigma ^ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 688, + 401, + 709 + ], + "score": 1.0, + "content": "-RDP, where", + "type": "text" + }, + { + "bbox": [ + 401, + 692, + 478, + 705 + ], + "score": 0.91, + "content": "z \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p \\times p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 688, + 483, + 709 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 677, + 506, + 709 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 709, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 267, + 723 + ], + "score": 1.0, + "content": "Lemma D.3 (Composition of RDP). If", + "type": "text" + }, + { + "bbox": [ + 267, + 710, + 281, + 721 + ], + "score": 0.76, + "content": "M _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 708, + 285, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 286, + 710, + 301, + 721 + ], + "score": 0.83, + "content": "M _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 708, + 331, + 723 + ], + "score": 1.0, + "content": "satisfy", + "type": "text" + }, + { + "bbox": [ + 331, + 709, + 359, + 722 + ], + "score": 0.87, + "content": "( \\lambda , \\gamma _ { 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 708, + 402, + 723 + ], + "score": 1.0, + "content": "-RDP and", + "type": "text" + }, + { + "bbox": [ + 402, + 709, + 430, + 722 + ], + "score": 0.91, + "content": "( \\lambda , \\gamma _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "-RDP respectively,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 720, + 308, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 233, + 733 + ], + "score": 1.0, + "content": "then their composition satisfies", + "type": "text" + }, + { + "bbox": [ + 233, + 721, + 306, + 732 + ], + "score": 0.88, + "content": "( \\lambda , \\gamma _ { 1 } + \\gamma _ { 2 } ) – R D P", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 720, + 308, + 733 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 708, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 81, + 506, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 271, + 96 + ], + "score": 1.0, + "content": "Lemma D.4 (Conversion from RDP to", + "type": "text" + }, + { + "bbox": [ + 271, + 82, + 293, + 95 + ], + "score": 0.87, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 80, + 329, + 96 + ], + "score": 1.0, + "content": "-DP). If", + "type": "text" + }, + { + "bbox": [ + 329, + 83, + 343, + 93 + ], + "score": 0.69, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 80, + 371, + 96 + ], + "score": 1.0, + "content": "obeys", + "type": "text" + }, + { + "bbox": [ + 371, + 82, + 395, + 95 + ], + "score": 0.9, + "content": "( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 80, + 443, + 96 + ], + "score": 1.0, + "content": "-RDP, then", + "type": "text" + }, + { + "bbox": [ + 443, + 83, + 456, + 93 + ], + "score": 0.38, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 80, + 484, + 96 + ], + "score": 1.0, + "content": "obeys", + "type": "text" + }, + { + "bbox": [ + 485, + 82, + 507, + 95 + ], + "score": 0.82, + "content": "( \\gamma +", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 284, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 191, + 106 + ], + "score": 0.86, + "content": "\\log ( 1 / \\delta ) / ( \\lambda - 1 ) , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 93, + 237, + 106 + ], + "score": 1.0, + "content": "-DP for all", + "type": "text" + }, + { + "bbox": [ + 237, + 94, + 279, + 104 + ], + "score": 0.89, + "content": "0 < \\delta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 93, + 284, + 106 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 120, + 506, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 241, + 135 + ], + "score": 1.0, + "content": "Now we proof Theorem 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 241, + 122, + 254, + 132 + ], + "score": 0.58, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 121, + 258, + 135 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 258, + 121, + 275, + 132 + ], + "score": 0.79, + "content": "W ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 121, + 506, + 135 + ], + "score": 1.0, + "content": "be the gradient embeddings of two neighboring datasets", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 504, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 138, + 143 + ], + "score": 0.91, + "content": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 131, + 156, + 146 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 156, + 133, + 182, + 144 + ], + "score": 0.9, + "content": "R , R ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 131, + 473, + 146 + ], + "score": 1.0, + "content": "be corresponding residual gradients. Without loss of generality, suppose", + "type": "text" + }, + { + "bbox": [ + 473, + 132, + 504, + 144 + ], + "score": 0.4, + "content": "W \\left( R \\right)", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 356, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 199, + 156 + ], + "score": 1.0, + "content": "has one more row than", + "type": "text" + }, + { + "bbox": [ + 200, + 144, + 236, + 155 + ], + "score": 0.85, + "content": "W ^ { \\prime } \\left( R ^ { \\prime } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 142, + 325, + 156 + ], + "score": 1.0, + "content": ". For given sensitivity", + "type": "text" + }, + { + "bbox": [ + 325, + 144, + 351, + 155 + ], + "score": 0.92, + "content": "S _ { 1 } , S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 142, + 356, + 156 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 157, + 468, + 176 + ], + "lines": [ + { + "bbox": [ + 140, + 157, + 468, + 176 + ], + "spans": [ + { + "bbox": [ + 140, + 157, + 468, + 176 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { w } - \\boldsymbol { w } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { W } \\sim \\boldsymbol { W } ^ { \\prime } } \\| \\boldsymbol { W } _ { n , : } \\| \\le S _ { 1 } , \\quad \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { r } - \\boldsymbol { r } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { R } \\sim \\boldsymbol { R } ^ { \\prime } } \\| \\boldsymbol { R } _ { n , : } \\| \\le S _ { 2 } .", + "type": "interline_equation", + "image_path": "7fc3a9e2cce240c0aefbfe437436f3e719e063546830a1b9aa25f2391d0085ca.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 140, + 157, + 468, + 176 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 186, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 144, + 200 + ], + "score": 1.0, + "content": "If we set", + "type": "text" + }, + { + "bbox": [ + 144, + 187, + 186, + 198 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } = S _ { 1 } \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 185, + 204, + 200 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 205, + 187, + 246, + 198 + ], + "score": 0.92, + "content": "\\sigma _ { 2 } = S _ { 2 } \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 185, + 286, + 200 + ], + "score": 1.0, + "content": "for some", + "type": "text" + }, + { + "bbox": [ + 286, + 189, + 293, + 197 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 185, + 405, + 200 + ], + "score": 1.0, + "content": ", then Algorithm 1 satisfies", + "type": "text" + }, + { + "bbox": [ + 405, + 186, + 434, + 200 + ], + "score": 0.92, + "content": "( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 185, + 506, + 200 + ], + "score": 1.0, + "content": "-RDP because of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 196, + 356, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 280, + 210 + ], + "score": 1.0, + "content": "Lemma D.2 and D.3. In order to guarantee", + "type": "text" + }, + { + "bbox": [ + 280, + 198, + 302, + 210 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 196, + 356, + 210 + ], + "score": 1.0, + "content": "-DP, we need", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 212, + 348, + 238 + ], + "lines": [ + { + "bbox": [ + 262, + 212, + 348, + 238 + ], + "spans": [ + { + "bbox": [ + 262, + 212, + 348, + 238 + ], + "score": 0.96, + "content": "\\frac { \\lambda } { \\sigma ^ { 2 } } + \\frac { \\log ( 1 / \\delta ) } { \\lambda - 1 } \\leq \\epsilon .", + "type": "interline_equation", + "image_path": "e7212eeb33637bbca78b6714dacddb3386f2ec61593454a6cfee99bfbf941832.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 262, + 212, + 348, + 238 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 337, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 337, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 138, + 258 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 139, + 241, + 212, + 256 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\lambda = 1 + \\frac { 2 \\log ( 1 / \\delta ) } { \\epsilon } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 240, + 337, + 258 + ], + "score": 1.0, + "content": "and rearrange Eq (5), we need", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 259, + 358, + 284 + ], + "lines": [ + { + "bbox": [ + 253, + 259, + 358, + 284 + ], + "spans": [ + { + "bbox": [ + 253, + 259, + 358, + 284 + ], + "score": 0.94, + "content": "\\sigma ^ { 2 } \\geq \\frac { 2 \\left( \\epsilon + 2 \\log ( 1 / \\delta ) \\right) } { \\epsilon ^ { 2 } } .", + "type": "interline_equation", + "image_path": "6f7855b8607e1e307752b02447a0914dc17633fb4e2f8a3349789f1fe6f27e69.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 253, + 259, + 358, + 284 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 312, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 312, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 222, + 304 + ], + "score": 1.0, + "content": "Then using the constraint on", + "type": "text" + }, + { + "bbox": [ + 222, + 294, + 228, + 302 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 291, + 312, + 304 + ], + "score": 1.0, + "content": "concludes the proof.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 507, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 507, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 200, + 340 + ], + "score": 1.0, + "content": "Theorem 3.2. For any", + "type": "text" + }, + { + "bbox": [ + 200, + 326, + 260, + 338 + ], + "score": 0.9, + "content": "\\epsilon < 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 325, + 279, + 340 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 326, + 318, + 338 + ], + "score": 0.92, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 325, + 457, + 340 + ], + "score": 1.0, + "content": ", the output of Algorithm 2 satisfies", + "type": "text" + }, + { + "bbox": [ + 458, + 326, + 479, + 338 + ], + "score": 0.87, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 325, + 507, + 340 + ], + "score": 1.0, + "content": "-DP if", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 337, + 230, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 133, + 352 + ], + "score": 1.0, + "content": "we set", + "type": "text" + }, + { + "bbox": [ + 134, + 338, + 227, + 352 + ], + "score": 0.92, + "content": "\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 337, + 230, + 352 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 506, + 399 + ], + "lines": [ + { + "bbox": [ + 104, + 362, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 472, + 379 + ], + "score": 1.0, + "content": "Proof of Theorem 3.2. From the proof of Theorem 3.1, we have each call of GEP satisfies", + "type": "text" + }, + { + "bbox": [ + 472, + 363, + 502, + 377 + ], + "score": 0.91, + "content": "( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 362, + 506, + 379 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "RDP. Then by the composition property of RDP (Lemma D.3), the output of Algorithm 2 satisfies", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 382, + 391, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 137, + 399 + ], + "score": 0.91, + "content": "( \\lambda , \\frac { T \\lambda } { \\sigma ^ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 382, + 202, + 403 + ], + "score": 1.0, + "content": "-RDP. Plugging", + "type": "text" + }, + { + "bbox": [ + 202, + 385, + 215, + 399 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { T \\lambda } { \\sigma ^ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 382, + 391, + 403 + ], + "score": 1.0, + "content": "into Equation 5 and 6 concludes the proof.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 507, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 242, + 437 + ], + "score": 1.0, + "content": "Theorem 3.3. Suppose the loss", + "type": "text" + }, + { + "bbox": [ + 242, + 420, + 377, + 435 + ], + "score": 0.92, + "content": "\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 418, + 390, + 437 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 390, + 422, + 396, + 432 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 418, + 495, + 437 + ], + "score": 1.0, + "content": "-Lipschitz, convex, and", + "type": "text" + }, + { + "bbox": [ + 495, + 422, + 502, + 433 + ], + "score": 0.8, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 418, + 507, + 437 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 430, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 435, + 158, + 450 + ], + "score": 1.0, + "content": "smooth. If", + "type": "text" + }, + { + "bbox": [ + 159, + 435, + 194, + 451 + ], + "score": 0.9, + "content": "\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 435, + 200, + 450 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 200, + 435, + 245, + 451 + ], + "score": 0.9, + "content": "\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 440, + 252, + 452 + ], + "score": 1.0, + "content": "√p", + "type": "text" + }, + { + "bbox": [ + 246, + 430, + 272, + 455 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 272, + 435, + 346, + 450 + ], + "score": 0.91, + "content": "\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 430, + 414, + 455 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + }, + { + "bbox": [ + 415, + 435, + 505, + 449 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 449, + 509, + 479 + ], + "spans": [ + { + "bbox": [ + 107, + 451, + 237, + 477 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 449, + 509, + 479 + ], + "score": 1.0, + "content": "\u0013, where r¯ = 1T PT −1t=0 r2t and rt = maxi k(Rt)i,:k is the sensitivity", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 475, + 225, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 216, + 488 + ], + "score": 1.0, + "content": "of residual gradient at step", + "type": "text" + }, + { + "bbox": [ + 217, + 477, + 221, + 485 + ], + "score": 0.48, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 475, + 225, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 321, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 322, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 217, + 513 + ], + "score": 1.0, + "content": "Proof of Theorem 3.3. The", + "type": "text" + }, + { + "bbox": [ + 217, + 499, + 225, + 510 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 497, + 322, + 513 + ], + "score": 1.0, + "content": "-smooth condition gives", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 513, + 433, + 537 + ], + "lines": [ + { + "bbox": [ + 178, + 513, + 433, + 537 + ], + "spans": [ + { + "bbox": [ + 178, + 513, + 433, + 537 + ], + "score": 0.9, + "content": "L ( \\pmb \\theta _ { t + 1 } ) \\leq L ( \\pmb \\theta _ { t } ) + \\langle \\nabla L ( \\pmb \\theta _ { t } ) , \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\right. ^ { 2 } .", + "type": "interline_equation", + "image_path": "7536a1ab5ca51429f922fd95d18a87e5ad2b33df96ad78a61ecf2fc5af343ae9.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 178, + 513, + 433, + 537 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 275, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 275, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 275, + 558 + ], + "score": 1.0, + "content": "Based on the update rule of GEP we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 559, + 415, + 581 + ], + "lines": [ + { + "bbox": [ + 195, + 559, + 415, + 581 + ], + "spans": [ + { + "bbox": [ + 195, + 559, + 415, + 581 + ], + "score": 0.91, + "content": "\\pmb { \\theta } _ { t + 1 } - \\pmb { \\theta } _ { t } = - \\eta \\tilde { \\pmb { v } } = - \\eta \\nabla L ( \\pmb { \\theta } _ { t } ) - \\frac { \\eta } { n } ( z _ { t } ^ { ( 1 ) } \\pmb { B } + z _ { t } ^ { ( 2 ) } ) ,", + "type": "interline_equation", + "image_path": "99c6112a8db4ea5617a63069e0a1eb930b414eacaecb5f2fc034fef410752c8d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 195, + 559, + 415, + 581 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 584, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 103, + 579, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 103, + 579, + 135, + 603 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 584, + 231, + 599 + ], + "score": 0.83, + "content": "\\boldsymbol { z } _ { t } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } \\boldsymbol { I } _ { k \\times k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 579, + 237, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 237, + 585, + 342, + 599 + ], + "score": 0.8, + "content": "\\boldsymbol { z } _ { t } ^ { ( 2 ) } \\sim \\mathcal { N } ( \\boldsymbol { 0 } , \\sigma ^ { 2 } r _ { t } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 579, + 480, + 603 + ], + "score": 1.0, + "content": "are the perturbation noises and", + "type": "text" + }, + { + "bbox": [ + 481, + 588, + 505, + 599 + ], + "score": 0.82, + "content": "r _ { t } = ", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 596, + 359, + 612 + ], + "spans": [ + { + "bbox": [ + 107, + 599, + 169, + 610 + ], + "score": 0.91, + "content": "\\operatorname * { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 596, + 349, + 612 + ], + "score": 1.0, + "content": "is the sensitivity of residual gradients at step", + "type": "text" + }, + { + "bbox": [ + 349, + 599, + 354, + 608 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 596, + 359, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 372, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 374, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 374, + 629 + ], + "score": 1.0, + "content": "Take expectation on Eq (7) with respect to the perturbation noises.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 629, + 460, + 655 + ], + "lines": [ + { + "bbox": [ + 150, + 629, + 460, + 655 + ], + "spans": [ + { + "bbox": [ + 150, + 629, + 460, + 655 + ], + "score": 0.9, + "content": "\\mathbb { E } [ L ( \\pmb { \\theta } _ { t + 1 } ) ] \\leq \\mathbb { E } [ L ( \\pmb { \\theta } _ { t } ) ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\| \\nabla L ( \\pmb { \\theta } _ { t } ) \\| ^ { 2 } ] + \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) .", + "type": "interline_equation", + "image_path": "8f966ab937534900a2616f443a3167e5e63761526e7f1755ad4efac1dd73ac2f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 150, + 629, + 460, + 655 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 272, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 272, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 142, + 670 + ], + "score": 1.0, + "content": "Subtract", + "type": "text" + }, + { + "bbox": [ + 142, + 657, + 168, + 669 + ], + "score": 0.92, + "content": "L ( \\theta _ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 657, + 272, + 670 + ], + "score": 1.0, + "content": "from both sides, we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 672, + 506, + 725 + ], + "lines": [ + { + "bbox": [ + 111, + 672, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 111, + 672, + 506, + 725 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { I } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\mathbb { E } [ L ( \\theta _ { t } ) ] - L ( \\theta _ { * } ) - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\qquad \\le \\mathbb { E } [ \\langle \\nabla L ( \\theta _ { t } ) , \\theta _ { t } - \\theta _ { * } \\rangle ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "ff26de6eec42ee98ab4ee145ada1c6e0d7f40887dab6948936422bc3bf1b299f.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 672, + 506, + 689.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 689.6666666666666, + 506, + 707.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 707.3333333333333, + 506, + 724.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 308, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 495, + 310, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 495, + 310, + 505, + 319 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 403, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 495, + 405, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 495, + 405, + 505, + 415 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 81, + 506, + 106 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 507, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 271, + 96 + ], + "score": 1.0, + "content": "Lemma D.4 (Conversion from RDP to", + "type": "text" + }, + { + "bbox": [ + 271, + 82, + 293, + 95 + ], + "score": 0.87, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 80, + 329, + 96 + ], + "score": 1.0, + "content": "-DP). If", + "type": "text" + }, + { + "bbox": [ + 329, + 83, + 343, + 93 + ], + "score": 0.69, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 80, + 371, + 96 + ], + "score": 1.0, + "content": "obeys", + "type": "text" + }, + { + "bbox": [ + 371, + 82, + 395, + 95 + ], + "score": 0.9, + "content": "( \\lambda , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 80, + 443, + 96 + ], + "score": 1.0, + "content": "-RDP, then", + "type": "text" + }, + { + "bbox": [ + 443, + 83, + 456, + 93 + ], + "score": 0.38, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 80, + 484, + 96 + ], + "score": 1.0, + "content": "obeys", + "type": "text" + }, + { + "bbox": [ + 485, + 82, + 507, + 95 + ], + "score": 0.82, + "content": "( \\gamma +", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 284, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 191, + 106 + ], + "score": 0.86, + "content": "\\log ( 1 / \\delta ) / ( \\lambda - 1 ) , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 93, + 237, + 106 + ], + "score": 1.0, + "content": "-DP for all", + "type": "text" + }, + { + "bbox": [ + 237, + 94, + 279, + 104 + ], + "score": 0.89, + "content": "0 < \\delta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 93, + 284, + 106 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 80, + 507, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 120, + 506, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 121, + 506, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 241, + 135 + ], + "score": 1.0, + "content": "Now we proof Theorem 3.1. Let", + "type": "text" + }, + { + "bbox": [ + 241, + 122, + 254, + 132 + ], + "score": 0.58, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 121, + 258, + 135 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 258, + 121, + 275, + 132 + ], + "score": 0.79, + "content": "W ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 121, + 506, + 135 + ], + "score": 1.0, + "content": "be the gradient embeddings of two neighboring datasets", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 504, + 146 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 138, + 143 + ], + "score": 0.91, + "content": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 131, + 156, + 146 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 156, + 133, + 182, + 144 + ], + "score": 0.9, + "content": "R , R ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 131, + 473, + 146 + ], + "score": 1.0, + "content": "be corresponding residual gradients. Without loss of generality, suppose", + "type": "text" + }, + { + "bbox": [ + 473, + 132, + 504, + 144 + ], + "score": 0.4, + "content": "W \\left( R \\right)", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 356, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 199, + 156 + ], + "score": 1.0, + "content": "has one more row than", + "type": "text" + }, + { + "bbox": [ + 200, + 144, + 236, + 155 + ], + "score": 0.85, + "content": "W ^ { \\prime } \\left( R ^ { \\prime } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 142, + 325, + 156 + ], + "score": 1.0, + "content": ". For given sensitivity", + "type": "text" + }, + { + "bbox": [ + 325, + 144, + 351, + 155 + ], + "score": 0.92, + "content": "S _ { 1 } , S _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 142, + 356, + 156 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 121, + 506, + 156 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 157, + 468, + 176 + ], + "lines": [ + { + "bbox": [ + 140, + 157, + 468, + 176 + ], + "spans": [ + { + "bbox": [ + 140, + 157, + 468, + 176 + ], + "score": 0.9, + "content": "\\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { w } - \\boldsymbol { w } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { W } \\sim \\boldsymbol { W } ^ { \\prime } } \\| \\boldsymbol { W } _ { n , : } \\| \\le S _ { 1 } , \\quad \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { r } - \\boldsymbol { r } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { R } \\sim \\boldsymbol { R } ^ { \\prime } } \\| \\boldsymbol { R } _ { n , : } \\| \\le S _ { 2 } .", + "type": "interline_equation", + "image_path": "7fc3a9e2cce240c0aefbfe437436f3e719e063546830a1b9aa25f2391d0085ca.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 140, + 157, + 468, + 176 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 186, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 144, + 200 + ], + "score": 1.0, + "content": "If we set", + "type": "text" + }, + { + "bbox": [ + 144, + 187, + 186, + 198 + ], + "score": 0.92, + "content": "\\sigma _ { 1 } = S _ { 1 } \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 185, + 204, + 200 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 205, + 187, + 246, + 198 + ], + "score": 0.92, + "content": "\\sigma _ { 2 } = S _ { 2 } \\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 185, + 286, + 200 + ], + "score": 1.0, + "content": "for some", + "type": "text" + }, + { + "bbox": [ + 286, + 189, + 293, + 197 + ], + "score": 0.77, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 185, + 405, + 200 + ], + "score": 1.0, + "content": ", then Algorithm 1 satisfies", + "type": "text" + }, + { + "bbox": [ + 405, + 186, + 434, + 200 + ], + "score": 0.92, + "content": "( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 185, + 506, + 200 + ], + "score": 1.0, + "content": "-RDP because of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 196, + 356, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 280, + 210 + ], + "score": 1.0, + "content": "Lemma D.2 and D.3. In order to guarantee", + "type": "text" + }, + { + "bbox": [ + 280, + 198, + 302, + 210 + ], + "score": 0.91, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 196, + 356, + 210 + ], + "score": 1.0, + "content": "-DP, we need", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 185, + 506, + 210 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 212, + 348, + 238 + ], + "lines": [ + { + "bbox": [ + 262, + 212, + 348, + 238 + ], + "spans": [ + { + "bbox": [ + 262, + 212, + 348, + 238 + ], + "score": 0.96, + "content": "\\frac { \\lambda } { \\sigma ^ { 2 } } + \\frac { \\log ( 1 / \\delta ) } { \\lambda - 1 } \\leq \\epsilon .", + "type": "interline_equation", + "image_path": "e7212eeb33637bbca78b6714dacddb3386f2ec61593454a6cfee99bfbf941832.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 262, + 212, + 348, + 238 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 240, + 337, + 256 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 337, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 138, + 258 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 139, + 241, + 212, + 256 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\lambda = 1 + \\frac { 2 \\log ( 1 / \\delta ) } { \\epsilon } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 240, + 337, + 258 + ], + "score": 1.0, + "content": "and rearrange Eq (5), we need", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 240, + 337, + 258 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 259, + 358, + 284 + ], + "lines": [ + { + "bbox": [ + 253, + 259, + 358, + 284 + ], + "spans": [ + { + "bbox": [ + 253, + 259, + 358, + 284 + ], + "score": 0.94, + "content": "\\sigma ^ { 2 } \\geq \\frac { 2 \\left( \\epsilon + 2 \\log ( 1 / \\delta ) \\right) } { \\epsilon ^ { 2 } } .", + "type": "interline_equation", + "image_path": "6f7855b8607e1e307752b02447a0914dc17633fb4e2f8a3349789f1fe6f27e69.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 253, + 259, + 358, + 284 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 291, + 312, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 291, + 312, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 291, + 222, + 304 + ], + "score": 1.0, + "content": "Then using the constraint on", + "type": "text" + }, + { + "bbox": [ + 222, + 294, + 228, + 302 + ], + "score": 0.71, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 291, + 312, + 304 + ], + "score": 1.0, + "content": "concludes the proof.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 291, + 312, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 507, + 352 + ], + "lines": [ + { + "bbox": [ + 106, + 325, + 507, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 200, + 340 + ], + "score": 1.0, + "content": "Theorem 3.2. For any", + "type": "text" + }, + { + "bbox": [ + 200, + 326, + 260, + 338 + ], + "score": 0.9, + "content": "\\epsilon < 2 \\log ( 1 / \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 325, + 279, + 340 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 326, + 318, + 338 + ], + "score": 0.92, + "content": "\\delta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 325, + 457, + 340 + ], + "score": 1.0, + "content": ", the output of Algorithm 2 satisfies", + "type": "text" + }, + { + "bbox": [ + 458, + 326, + 479, + 338 + ], + "score": 0.87, + "content": "( \\epsilon , \\delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 325, + 507, + 340 + ], + "score": 1.0, + "content": "-DP if", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 337, + 230, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 133, + 352 + ], + "score": 1.0, + "content": "we set", + "type": "text" + }, + { + "bbox": [ + 134, + 338, + 227, + 352 + ], + "score": 0.92, + "content": "\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 337, + 230, + 352 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 325, + 507, + 352 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 506, + 399 + ], + "lines": [ + { + "bbox": [ + 104, + 362, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 472, + 379 + ], + "score": 1.0, + "content": "Proof of Theorem 3.2. From the proof of Theorem 3.1, we have each call of GEP satisfies", + "type": "text" + }, + { + "bbox": [ + 472, + 363, + 502, + 377 + ], + "score": 0.91, + "content": "( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 362, + 506, + 379 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "RDP. Then by the composition property of RDP (Lemma D.3), the output of Algorithm 2 satisfies", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 382, + 391, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 137, + 399 + ], + "score": 0.91, + "content": "( \\lambda , \\frac { T \\lambda } { \\sigma ^ { 2 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 382, + 202, + 403 + ], + "score": 1.0, + "content": "-RDP. Plugging", + "type": "text" + }, + { + "bbox": [ + 202, + 385, + 215, + 399 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { T \\lambda } { \\sigma ^ { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 382, + 391, + 403 + ], + "score": 1.0, + "content": "into Equation 5 and 6 concludes the proof.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 104, + 362, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 419, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 105, + 418, + 507, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 242, + 437 + ], + "score": 1.0, + "content": "Theorem 3.3. Suppose the loss", + "type": "text" + }, + { + "bbox": [ + 242, + 420, + 377, + 435 + ], + "score": 0.92, + "content": "\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 418, + 390, + 437 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 390, + 422, + 396, + 432 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 418, + 495, + 437 + ], + "score": 1.0, + "content": "-Lipschitz, convex, and", + "type": "text" + }, + { + "bbox": [ + 495, + 422, + 502, + 433 + ], + "score": 0.8, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 418, + 507, + 437 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 430, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 104, + 435, + 158, + 450 + ], + "score": 1.0, + "content": "smooth. If", + "type": "text" + }, + { + "bbox": [ + 159, + 435, + 194, + 451 + ], + "score": 0.9, + "content": "\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 435, + 200, + 450 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 200, + 435, + 245, + 451 + ], + "score": 0.9, + "content": "\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 440, + 252, + 452 + ], + "score": 1.0, + "content": "√p", + "type": "text" + }, + { + "bbox": [ + 246, + 430, + 272, + 455 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 272, + 435, + 346, + 450 + ], + "score": 0.91, + "content": "\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 430, + 414, + 455 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + }, + { + "bbox": [ + 415, + 435, + 505, + 449 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 449, + 509, + 479 + ], + "spans": [ + { + "bbox": [ + 107, + 451, + 237, + 477 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 449, + 509, + 479 + ], + "score": 1.0, + "content": "\u0013, where r¯ = 1T PT −1t=0 r2t and rt = maxi k(Rt)i,:k is the sensitivity", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 475, + 225, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 216, + 488 + ], + "score": 1.0, + "content": "of residual gradient at step", + "type": "text" + }, + { + "bbox": [ + 217, + 477, + 221, + 485 + ], + "score": 0.48, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 475, + 225, + 488 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 418, + 509, + 488 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 498, + 321, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 497, + 322, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 217, + 513 + ], + "score": 1.0, + "content": "Proof of Theorem 3.3. The", + "type": "text" + }, + { + "bbox": [ + 217, + 499, + 225, + 510 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 497, + 322, + 513 + ], + "score": 1.0, + "content": "-smooth condition gives", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 497, + 322, + 513 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 513, + 433, + 537 + ], + "lines": [ + { + "bbox": [ + 178, + 513, + 433, + 537 + ], + "spans": [ + { + "bbox": [ + 178, + 513, + 433, + 537 + ], + "score": 0.9, + "content": "L ( \\pmb \\theta _ { t + 1 } ) \\leq L ( \\pmb \\theta _ { t } ) + \\langle \\nabla L ( \\pmb \\theta _ { t } ) , \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\right. ^ { 2 } .", + "type": "interline_equation", + "image_path": "7536a1ab5ca51429f922fd95d18a87e5ad2b33df96ad78a61ecf2fc5af343ae9.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 178, + 513, + 433, + 537 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 545, + 275, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 275, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 275, + 558 + ], + "score": 1.0, + "content": "Based on the update rule of GEP we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 545, + 275, + 558 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 559, + 415, + 581 + ], + "lines": [ + { + "bbox": [ + 195, + 559, + 415, + 581 + ], + "spans": [ + { + "bbox": [ + 195, + 559, + 415, + 581 + ], + "score": 0.91, + "content": "\\pmb { \\theta } _ { t + 1 } - \\pmb { \\theta } _ { t } = - \\eta \\tilde { \\pmb { v } } = - \\eta \\nabla L ( \\pmb { \\theta } _ { t } ) - \\frac { \\eta } { n } ( z _ { t } ^ { ( 1 ) } \\pmb { B } + z _ { t } ^ { ( 2 ) } ) ,", + "type": "interline_equation", + "image_path": "99c6112a8db4ea5617a63069e0a1eb930b414eacaecb5f2fc034fef410752c8d.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 195, + 559, + 415, + 581 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 584, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 103, + 579, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 103, + 579, + 135, + 603 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 136, + 584, + 231, + 599 + ], + "score": 0.83, + "content": "\\boldsymbol { z } _ { t } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } \\boldsymbol { I } _ { k \\times k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 579, + 237, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 237, + 585, + 342, + 599 + ], + "score": 0.8, + "content": "\\boldsymbol { z } _ { t } ^ { ( 2 ) } \\sim \\mathcal { N } ( \\boldsymbol { 0 } , \\sigma ^ { 2 } r _ { t } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 579, + 480, + 603 + ], + "score": 1.0, + "content": "are the perturbation noises and", + "type": "text" + }, + { + "bbox": [ + 481, + 588, + 505, + 599 + ], + "score": 0.82, + "content": "r _ { t } = ", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 596, + 359, + 612 + ], + "spans": [ + { + "bbox": [ + 107, + 599, + 169, + 610 + ], + "score": 0.91, + "content": "\\operatorname * { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 596, + 349, + 612 + ], + "score": 1.0, + "content": "is the sensitivity of residual gradients at step", + "type": "text" + }, + { + "bbox": [ + 349, + 599, + 354, + 608 + ], + "score": 0.71, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 596, + 359, + 612 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 103, + 579, + 505, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 614, + 372, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 374, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 374, + 629 + ], + "score": 1.0, + "content": "Take expectation on Eq (7) with respect to the perturbation noises.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 613, + 374, + 629 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 150, + 629, + 460, + 655 + ], + "lines": [ + { + "bbox": [ + 150, + 629, + 460, + 655 + ], + "spans": [ + { + "bbox": [ + 150, + 629, + 460, + 655 + ], + "score": 0.9, + "content": "\\mathbb { E } [ L ( \\pmb { \\theta } _ { t + 1 } ) ] \\leq \\mathbb { E } [ L ( \\pmb { \\theta } _ { t } ) ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\| \\nabla L ( \\pmb { \\theta } _ { t } ) \\| ^ { 2 } ] + \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) .", + "type": "interline_equation", + "image_path": "8f966ab937534900a2616f443a3167e5e63761526e7f1755ad4efac1dd73ac2f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 150, + 629, + 460, + 655 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 272, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 272, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 142, + 670 + ], + "score": 1.0, + "content": "Subtract", + "type": "text" + }, + { + "bbox": [ + 142, + 657, + 168, + 669 + ], + "score": 0.92, + "content": "L ( \\theta _ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 657, + 272, + 670 + ], + "score": 1.0, + "content": "from both sides, we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 657, + 272, + 670 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 672, + 506, + 725 + ], + "lines": [ + { + "bbox": [ + 111, + 672, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 111, + 672, + 506, + 725 + ], + "score": 0.91, + "content": "\\begin{array} { r l } & { \\mathbb { I } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\mathbb { E } [ L ( \\theta _ { t } ) ] - L ( \\theta _ { * } ) - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\qquad \\le \\mathbb { E } [ \\langle \\nabla L ( \\theta _ { t } ) , \\theta _ { t } - \\theta _ { * } \\rangle ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "ff26de6eec42ee98ab4ee145ada1c6e0d7f40887dab6948936422bc3bf1b299f.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 111, + 672, + 506, + 689.6666666666666 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 111, + 689.6666666666666, + 506, + 707.3333333333333 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 111, + 707.3333333333333, + 506, + 724.9999999999999 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 109 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 264, + 97 + ], + "score": 1.0, + "content": "The second inequality holds because", + "type": "text" + }, + { + "bbox": [ + 264, + 83, + 273, + 92 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 81, + 381, + 97 + ], + "score": 1.0, + "content": "is convex. Then choose", + "type": "text" + }, + { + "bbox": [ + 381, + 81, + 414, + 97 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta \\mathrm { ~ = ~ } \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 81, + 457, + 97 + ], + "score": 1.0, + "content": "and plug", + "type": "text" + }, + { + "bbox": [ + 457, + 82, + 505, + 95 + ], + "score": 0.87, + "content": "\\nabla L ( \\pmb \\theta _ { t } ) =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 292, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 238, + 109 + ], + "score": 0.9, + "content": "( \\pmb { \\theta } _ { t } - \\pmb { \\theta } _ { t + 1 } ) / \\eta - ( z _ { 1 } ^ { t } \\pmb { B } + z _ { 2 } ^ { t } ) / n", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 95, + 292, + 109 + ], + "score": 1.0, + "content": "into Eq (10).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 127, + 479, + 183 + ], + "lines": [ + { + "bbox": [ + 114, + 127, + 479, + 183 + ], + "spans": [ + { + "bbox": [ + 114, + 127, + 479, + 183 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathbb { E } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\beta \\mathbb { E } [ \\langle \\theta _ { t } - \\theta _ { t + 1 } , \\theta _ { t } - \\theta _ { * } \\rangle ] - \\frac { \\beta } { 2 } \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { t + 1 } \\| ^ { 2 } ] + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\frac { \\beta } { 2 } \\left( \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { * } \\| ^ { 2 } ] - \\mathbb { E } [ \\| \\theta _ { t + 1 } - \\theta _ { * } \\| ^ { 2 } ] \\right) + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "0acf8d9f1b722986e62fcd741f7cf702ef5145067921e62b7dfcbc0d67bff46d.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 114, + 127, + 479, + 145.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 114, + 145.66666666666666, + 479, + 164.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 114, + 164.33333333333331, + 479, + 182.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 329, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 329, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 147, + 206 + ], + "score": 1.0, + "content": "Sum over", + "type": "text" + }, + { + "bbox": [ + 147, + 194, + 217, + 204 + ], + "score": 0.93, + "content": "t = 0 , \\ldots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 192, + 329, + 206 + ], + "score": 1.0, + "content": "and use convexity, we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 209, + 427, + 244 + ], + "lines": [ + { + "bbox": [ + 183, + 209, + 427, + 244 + ], + "spans": [ + { + "bbox": [ + 183, + 209, + 427, + 244 + ], + "score": 0.92, + "content": "\\mathbb { E } [ L ( \\bar { \\theta } ) ] - L ( \\theta _ { * } ) \\le \\frac { \\beta } { 2 T } \\lVert \\theta _ { 0 } - \\theta _ { * } \\rVert + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } ( k + \\frac { p } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "db6aede629a530a84e7e966007583d5d941d251d7130cb724ce940b66fced80d.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 209, + 427, + 226.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 183, + 226.5, + 427, + 244.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 435, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 437, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 178, + 273 + ], + "score": 1.0, + "content": "Then substituting", + "type": "text" + }, + { + "bbox": [ + 178, + 255, + 215, + 273 + ], + "score": 0.94, + "content": "\\begin{array} { r } { T = \\frac { n \\beta \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 255, + 234, + 271 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 234, + 255, + 333, + 270 + ], + "score": 0.92, + "content": "\\sigma = \\mathcal { O } ( \\sqrt { T \\log ( 1 / \\delta ) } / \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 255, + 437, + 271 + ], + "score": 1.0, + "content": "yields the desired bound.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 277, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 495, + 278, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 495, + 278, + 505, + 289 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 109 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 264, + 97 + ], + "score": 1.0, + "content": "The second inequality holds because", + "type": "text" + }, + { + "bbox": [ + 264, + 83, + 273, + 92 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 81, + 381, + 97 + ], + "score": 1.0, + "content": "is convex. Then choose", + "type": "text" + }, + { + "bbox": [ + 381, + 81, + 414, + 97 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\eta \\mathrm { ~ = ~ } \\frac { 1 } { \\beta } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 81, + 457, + 97 + ], + "score": 1.0, + "content": "and plug", + "type": "text" + }, + { + "bbox": [ + 457, + 82, + 505, + 95 + ], + "score": 0.87, + "content": "\\nabla L ( \\pmb \\theta _ { t } ) =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 95, + 292, + 109 + ], + "spans": [ + { + "bbox": [ + 106, + 95, + 238, + 109 + ], + "score": 0.9, + "content": "( \\pmb { \\theta } _ { t } - \\pmb { \\theta } _ { t + 1 } ) / \\eta - ( z _ { 1 } ^ { t } \\pmb { B } + z _ { 2 } ^ { t } ) / n", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 95, + 292, + 109 + ], + "score": 1.0, + "content": "into Eq (10).", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 109 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 127, + 479, + 183 + ], + "lines": [ + { + "bbox": [ + 114, + 127, + 479, + 183 + ], + "spans": [ + { + "bbox": [ + 114, + 127, + 479, + 183 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\displaystyle \\mathbb { E } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\beta \\mathbb { E } [ \\langle \\theta _ { t } - \\theta _ { t + 1 } , \\theta _ { t } - \\theta _ { * } \\rangle ] - \\frac { \\beta } { 2 } \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { t + 1 } \\| ^ { 2 } ] + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\frac { \\beta } { 2 } \\left( \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { * } \\| ^ { 2 } ] - \\mathbb { E } [ \\| \\theta _ { t + 1 } - \\theta _ { * } \\| ^ { 2 } ] \\right) + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "0acf8d9f1b722986e62fcd741f7cf702ef5145067921e62b7dfcbc0d67bff46d.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 114, + 127, + 479, + 145.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 114, + 145.66666666666666, + 479, + 164.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 114, + 164.33333333333331, + 479, + 182.99999999999997 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 329, + 205 + ], + "lines": [ + { + "bbox": [ + 106, + 192, + 329, + 206 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 147, + 206 + ], + "score": 1.0, + "content": "Sum over", + "type": "text" + }, + { + "bbox": [ + 147, + 194, + 217, + 204 + ], + "score": 0.93, + "content": "t = 0 , \\ldots , T - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 192, + 329, + 206 + ], + "score": 1.0, + "content": "and use convexity, we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 192, + 329, + 206 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 183, + 209, + 427, + 244 + ], + "lines": [ + { + "bbox": [ + 183, + 209, + 427, + 244 + ], + "spans": [ + { + "bbox": [ + 183, + 209, + 427, + 244 + ], + "score": 0.92, + "content": "\\mathbb { E } [ L ( \\bar { \\theta } ) ] - L ( \\theta _ { * } ) \\le \\frac { \\beta } { 2 T } \\lVert \\theta _ { 0 } - \\theta _ { * } \\rVert + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } ( k + \\frac { p } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } ) .", + "type": "interline_equation", + "image_path": "db6aede629a530a84e7e966007583d5d941d251d7130cb724ce940b66fced80d.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 183, + 209, + 427, + 226.5 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 183, + 226.5, + 427, + 244.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 255, + 435, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 254, + 437, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 178, + 273 + ], + "score": 1.0, + "content": "Then substituting", + "type": "text" + }, + { + "bbox": [ + 178, + 255, + 215, + 273 + ], + "score": 0.94, + "content": "\\begin{array} { r } { T = \\frac { n \\beta \\epsilon } { \\sqrt { p } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 255, + 234, + 271 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 234, + 255, + 333, + 270 + ], + "score": 0.92, + "content": "\\sigma = \\mathcal { O } ( \\sqrt { T \\log ( 1 / \\delta ) } / \\epsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 255, + 437, + 271 + ], + "score": 1.0, + "content": "yields the desired bound.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 254, + 437, + 273 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/7aogOj_VYO0/7aogOj_VYO0_model.json b/parse/train/7aogOj_VYO0/7aogOj_VYO0_model.json new file mode 100644 index 0000000000000000000000000000000000000000..4053eb0926c3921f75e22ff9e527a9a3b2fbe8e8 --- /dev/null +++ b/parse/train/7aogOj_VYO0/7aogOj_VYO0_model.json @@ -0,0 +1,31973 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 686, + 1303, + 686, + 1303, + 1143, + 398, + 1143 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1275, + 1405, + 1275, + 1405, + 1553, + 298, + 1553 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1566, + 1405, + 1566, + 1405, + 1843, + 298, + 1843 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 299, + 218, + 1396, + 218, + 1396, + 324, + 299, + 324 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 302, + 1917, + 1403, + 1917, + 1403, + 1983, + 302, + 1983 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 605, + 1860, + 1091, + 1860, + 1091, + 1899, + 605, + 1899 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 331, + 2006, + 741, + 2006, + 741, + 2034, + 331, + 2034 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 302, + 1205, + 573, + 1205, + 573, + 1240, + 302, + 1240 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 773, + 615, + 927, + 615, + 927, + 648, + 773, + 648 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1864, + 1399, + 1864, + 1399, + 1893, + 1366, + 1893 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 314, + 372, + 1107, + 372, + 1107, + 534, + 314, + 534 + ], + "score": 0.805 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2112, + 840, + 2112 + ], + "score": 0.752 + }, + { + "category_id": 13, + "poly": [ + 1338, + 1398, + 1397, + 1398, + 1397, + 1432, + 1338, + 1432 + ], + "score": 0.93, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 825, + 1948, + 918, + 1948, + 918, + 1983, + 825, + 1983 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\| z \\| ^ { 2 } ]" + }, + { + "category_id": 13, + "poly": [ + 899, + 1812, + 984, + 1812, + 984, + 1843, + 899, + 1843 + ], + "score": 0.92, + "latex": "\\pmb { g } \\in \\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1919, + 1342, + 1919, + 1342, + 1952, + 1283, + 1952 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 14, + "poly": [ + 604, + 1857, + 1095, + 1857, + 1095, + 1899, + 604, + 1899 + ], + "score": 0.89, + "latex": "\\tilde { \\pmb g } = \\pmb g + \\pmb z , \\mathrm { w h e r e } \\ z \\sim \\mathcal N ( 0 , \\sigma ^ { 2 } S ^ { 2 } \\pmb { I } _ { p \\times p } ) ." + }, + { + "category_id": 13, + "poly": [ + 610, + 1917, + 642, + 1917, + 642, + 1946, + 610, + 1946 + ], + "score": 0.89, + "latex": "\\sigma ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 558, + 1084, + 624, + 1084, + 624, + 1111, + 558, + 1111 + ], + "score": 0.89, + "latex": "\\epsilon = 8" + }, + { + "category_id": 13, + "poly": [ + 761, + 1082, + 838, + 1082, + 838, + 1112, + 761, + 1112 + ], + "score": 0.89, + "latex": "7 4 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1082, + 1257, + 1082, + 1257, + 1112, + 1181, + 1112 + ], + "score": 0.88, + "latex": "9 5 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 354, + 374, + 437, + 374, + 437, + 406, + 354, + 406 + ], + "score": 0.86, + "latex": "\\mathbf { V } \\mathbf { u } ^ { 1 , 2 , * }" + }, + { + "category_id": 13, + "poly": [ + 940, + 1782, + 961, + 1782, + 961, + 1809, + 940, + 1809 + ], + "score": 0.82, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 708, + 1816, + 729, + 1816, + 729, + 1838, + 708, + 1838 + ], + "score": 0.77, + "latex": "_ z" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1959, + 1398, + 1959, + 1398, + 1982, + 1382, + 1982 + ], + "score": 0.72, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1287, + 1404, + 1303, + 1404, + 1303, + 1427, + 1287, + 1427 + ], + "score": 0.45, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 214.0, + 1404.0, + 214.0, + 1404.0, + 274.0, + 293.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 275.0, + 1402.0, + 275.0, + 1402.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2000.0, + 745.0, + 2000.0, + 745.0, + 2038.0, + 331.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1202.0, + 579.0, + 1202.0, + 579.0, + 1249.0, + 294.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 611.0, + 934.0, + 611.0, + 934.0, + 654.0, + 768.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 858.0, + 2088.0, + 858.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 686.0, + 1305.0, + 686.0, + 1305.0, + 721.0, + 395.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 715.0, + 1309.0, + 715.0, + 1309.0, + 755.0, + 392.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 748.0, + 1306.0, + 748.0, + 1306.0, + 782.0, + 393.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 778.0, + 1306.0, + 778.0, + 1306.0, + 813.0, + 394.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 809.0, + 1305.0, + 809.0, + 1305.0, + 844.0, + 394.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 840.0, + 1307.0, + 840.0, + 1307.0, + 875.0, + 393.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 869.0, + 1307.0, + 869.0, + 1307.0, + 904.0, + 393.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 900.0, + 1306.0, + 900.0, + 1306.0, + 935.0, + 394.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 931.0, + 1304.0, + 931.0, + 1304.0, + 963.0, + 393.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 960.0, + 1305.0, + 960.0, + 1305.0, + 996.0, + 392.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 992.0, + 1304.0, + 992.0, + 1304.0, + 1023.0, + 393.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1023.0, + 1304.0, + 1023.0, + 1304.0, + 1055.0, + 395.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1052.0, + 1305.0, + 1052.0, + 1305.0, + 1087.0, + 393.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1082.0, + 557.0, + 1082.0, + 557.0, + 1116.0, + 393.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1082.0, + 760.0, + 1082.0, + 760.0, + 1116.0, + 625.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1082.0, + 1180.0, + 1082.0, + 1180.0, + 1116.0, + 839.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1082.0, + 1306.0, + 1082.0, + 1306.0, + 1116.0, + 1258.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1114.0, + 1128.0, + 1114.0, + 1128.0, + 1148.0, + 393.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1316.0, + 292.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1306.0, + 1405.0, + 1306.0, + 1405.0, + 1343.0, + 295.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1337.0, + 1407.0, + 1337.0, + 1407.0, + 1375.0, + 292.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1406.0, + 293.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1398.0, + 1286.0, + 1398.0, + 1286.0, + 1435.0, + 293.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1398.0, + 1337.0, + 1398.0, + 1337.0, + 1435.0, + 1304.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1398.0, + 1407.0, + 1398.0, + 1407.0, + 1435.0, + 1398.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1430.0, + 1406.0, + 1430.0, + 1406.0, + 1463.0, + 296.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1460.0, + 1407.0, + 1460.0, + 1407.0, + 1493.0, + 295.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1490.0, + 1406.0, + 1490.0, + 1406.0, + 1523.0, + 296.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1520.0, + 685.0, + 1520.0, + 685.0, + 1554.0, + 293.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1567.0, + 1406.0, + 1567.0, + 1406.0, + 1604.0, + 296.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1598.0, + 1406.0, + 1598.0, + 1406.0, + 1631.0, + 295.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1626.0, + 1403.0, + 1626.0, + 1403.0, + 1663.0, + 293.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1656.0, + 1406.0, + 1656.0, + 1406.0, + 1697.0, + 293.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1690.0, + 1406.0, + 1690.0, + 1406.0, + 1727.0, + 295.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1716.0, + 1406.0, + 1716.0, + 1406.0, + 1758.0, + 291.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1748.0, + 1407.0, + 1748.0, + 1407.0, + 1787.0, + 293.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1778.0, + 939.0, + 1778.0, + 939.0, + 1817.0, + 293.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1778.0, + 1406.0, + 1778.0, + 1406.0, + 1817.0, + 962.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1805.0, + 707.0, + 1805.0, + 707.0, + 1850.0, + 291.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1805.0, + 898.0, + 1805.0, + 898.0, + 1850.0, + 730.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1805.0, + 1308.0, + 1805.0, + 1308.0, + 1850.0, + 985.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1918.0, + 609.0, + 1918.0, + 609.0, + 1954.0, + 298.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1918.0, + 1282.0, + 1918.0, + 1282.0, + 1954.0, + 643.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1918.0, + 1405.0, + 1918.0, + 1405.0, + 1954.0, + 1343.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1947.0, + 824.0, + 1947.0, + 824.0, + 1988.0, + 296.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1947.0, + 1381.0, + 1947.0, + 1381.0, + 1988.0, + 919.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1947.0, + 1412.0, + 1947.0, + 1412.0, + 1988.0, + 1399.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 371.0, + 353.0, + 371.0, + 353.0, + 410.0, + 311.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 371.0, + 986.0, + 371.0, + 986.0, + 410.0, + 438.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 402.0, + 1109.0, + 402.0, + 1109.0, + 445.0, + 310.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 435.0, + 610.0, + 435.0, + 610.0, + 473.0, + 312.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 465.0, + 716.0, + 465.0, + 716.0, + 510.0, + 311.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 498.0, + 900.0, + 498.0, + 900.0, + 540.0, + 309.0, + 540.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1468, + 1405, + 1468, + 1405, + 1834, + 298, + 1834 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1239, + 1404, + 1239, + 1404, + 1453, + 298, + 1453 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1850, + 1403, + 1850, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1038, + 1405, + 1038, + 1405, + 1224, + 298, + 1224 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 823, + 1404, + 823, + 1404, + 947, + 297, + 947 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 716, + 1404, + 716, + 1404, + 807, + 298, + 807 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 296, + 498, + 743, + 498, + 743, + 651, + 296, + 651 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 956, + 494, + 1403, + 494, + 1403, + 650, + 956, + 650 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 1039, + 233, + 1317, + 233, + 1317, + 459, + 1039, + 459 + ], + "score": 0.958 + }, + { + "category_id": 3, + "poly": [ + 369, + 231, + 665, + 231, + 665, + 460, + 369, + 460 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 962, + 1401, + 962, + 1401, + 1024, + 298, + 1024 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.7 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.179 + }, + { + "category_id": 13, + "poly": [ + 1192, + 494, + 1320, + 494, + 1320, + 530, + 1192, + 530 + ], + "score": 0.92, + "latex": "\\| \\cdot \\| _ { F } ^ { 2 } / \\| \\cdot \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 937, + 2004, + 1001, + 2004, + 1001, + 2031, + 937, + 2031 + ], + "score": 0.88, + "latex": "\\epsilon = 8" + }, + { + "category_id": 13, + "poly": [ + 367, + 588, + 472, + 588, + 472, + 622, + 367, + 622 + ], + "score": 0.87, + "latex": "( 5 , 1 0 ^ { - 5 } )" + }, + { + "category_id": 13, + "poly": [ + 1174, + 2002, + 1250, + 2002, + 1250, + 2032, + 1174, + 2032 + ], + "score": 0.86, + "latex": "7 4 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1179, + 562, + 1198, + 562, + 1198, + 589, + 1179, + 589 + ], + "score": 0.76, + "latex": "p" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 497.0, + 745.0, + 497.0, + 745.0, + 531.0, + 295.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 527.0, + 744.0, + 527.0, + 744.0, + 560.0, + 295.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 560.0, + 748.0, + 560.0, + 748.0, + 590.0, + 295.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 586.0, + 366.0, + 586.0, + 366.0, + 623.0, + 293.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 586.0, + 746.0, + 586.0, + 746.0, + 623.0, + 473.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 616.0, + 521.0, + 616.0, + 521.0, + 655.0, + 295.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 494.0, + 1191.0, + 494.0, + 1191.0, + 532.0, + 954.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 494.0, + 1405.0, + 494.0, + 1405.0, + 532.0, + 1321.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 527.0, + 1404.0, + 527.0, + 1404.0, + 558.0, + 956.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 559.0, + 1178.0, + 559.0, + 1178.0, + 589.0, + 954.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 559.0, + 1405.0, + 559.0, + 1405.0, + 589.0, + 1199.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 586.0, + 1405.0, + 586.0, + 1405.0, + 620.0, + 953.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 613.0, + 1405.0, + 613.0, + 1405.0, + 656.0, + 954.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 242.0, + 1207.0, + 242.0, + 1207.0, + 251.0, + 1198.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 255.0, + 1081.0, + 255.0, + 1081.0, + 278.0, + 1052.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 275.0, + 1186.0, + 275.0, + 1186.0, + 283.0, + 1176.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 290.0, + 1060.0, + 290.0, + 1060.0, + 370.0, + 1037.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 296.0, + 1079.0, + 296.0, + 1079.0, + 320.0, + 1053.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 301.0, + 1295.0, + 301.0, + 1295.0, + 324.0, + 1168.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 319.0, + 1308.0, + 319.0, + 1308.0, + 340.0, + 1166.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 337.0, + 1080.0, + 337.0, + 1080.0, + 360.0, + 1053.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 336.0, + 1301.0, + 336.0, + 1301.0, + 358.0, + 1168.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 360.0, + 1310.0, + 360.0, + 1310.0, + 375.0, + 1211.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 371.0, + 1140.0, + 371.0, + 1140.0, + 379.0, + 1127.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 381.0, + 1078.0, + 381.0, + 1078.0, + 399.0, + 1062.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 382.0, + 1093.0, + 382.0, + 1093.0, + 393.0, + 1085.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 384.0, + 1105.0, + 384.0, + 1105.0, + 391.0, + 1097.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 394.0, + 1093.0, + 394.0, + 1093.0, + 403.0, + 1085.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 425.0, + 1097.0, + 425.0, + 1097.0, + 443.0, + 1083.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 423.0, + 1147.0, + 423.0, + 1147.0, + 444.0, + 1120.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 422.0, + 1193.0, + 422.0, + 1193.0, + 446.0, + 1166.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 424.0, + 1237.0, + 424.0, + 1237.0, + 445.0, + 1212.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 422.0, + 1283.0, + 422.0, + 1283.0, + 446.0, + 1256.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 439.0, + 1252.0, + 439.0, + 1252.0, + 461.0, + 1140.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 242.0, + 411.0, + 242.0, + 411.0, + 265.0, + 379.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 244.0, + 438.0, + 244.0, + 438.0, + 255.0, + 419.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 240.0, + 544.0, + 240.0, + 544.0, + 259.0, + 442.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 242.0, + 643.0, + 242.0, + 643.0, + 249.0, + 635.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 255.0, + 527.0, + 255.0, + 527.0, + 275.0, + 417.0, + 275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 278.0, + 412.0, + 278.0, + 412.0, + 300.0, + 379.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 270.0, + 528.0, + 270.0, + 528.0, + 291.0, + 414.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 278.0, + 644.0, + 278.0, + 644.0, + 287.0, + 635.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 285.0, + 513.0, + 285.0, + 513.0, + 305.0, + 417.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 304.0, + 417.0, + 304.0, + 417.0, + 360.0, + 361.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 351.0, + 411.0, + 351.0, + 411.0, + 370.0, + 381.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 369.0, + 424.0, + 369.0, + 424.0, + 377.0, + 416.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 385.0, + 411.0, + 385.0, + 411.0, + 407.0, + 379.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 404.0, + 426.0, + 404.0, + 426.0, + 420.0, + 415.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 403.0, + 643.0, + 403.0, + 643.0, + 411.0, + 635.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 430.0, + 670.0, + 430.0, + 670.0, + 446.0, + 390.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 442.0, + 567.0, + 442.0, + 567.0, + 462.0, + 492.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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": [ + 293.0, + 1465.0, + 1408.0, + 1465.0, + 1408.0, + 1504.0, + 293.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1533.0, + 293.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1562.0, + 295.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1561.0, + 1407.0, + 1561.0, + 1407.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1405.0, + 1589.0, + 1405.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": [ + 295.0, + 1652.0, + 1406.0, + 1652.0, + 1406.0, + 1686.0, + 295.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1683.0, + 1403.0, + 1683.0, + 1403.0, + 1717.0, + 295.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1712.0, + 1406.0, + 1712.0, + 1406.0, + 1748.0, + 293.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1742.0, + 1403.0, + 1742.0, + 1403.0, + 1776.0, + 295.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1774.0, + 1405.0, + 1774.0, + 1405.0, + 1808.0, + 295.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1805.0, + 657.0, + 1805.0, + 657.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1239.0, + 1406.0, + 1239.0, + 1406.0, + 1274.0, + 296.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1270.0, + 1404.0, + 1270.0, + 1404.0, + 1304.0, + 294.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1299.0, + 1406.0, + 1299.0, + 1406.0, + 1334.0, + 292.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1331.0, + 1404.0, + 1331.0, + 1404.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1361.0, + 1404.0, + 1361.0, + 1404.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1391.0, + 1406.0, + 1391.0, + 1406.0, + 1429.0, + 293.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 1274.0, + 1421.0, + 1274.0, + 1460.0, + 293.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1848.0, + 1404.0, + 1848.0, + 1404.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1877.0, + 1405.0, + 1877.0, + 1405.0, + 1919.0, + 292.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1908.0, + 1407.0, + 1908.0, + 1407.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 936.0, + 2002.0, + 936.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 2002.0, + 1173.0, + 2002.0, + 1173.0, + 2038.0, + 1002.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2038.0, + 1251.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1040.0, + 1407.0, + 1040.0, + 1407.0, + 1072.0, + 296.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1068.0, + 1405.0, + 1068.0, + 1405.0, + 1107.0, + 293.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1100.0, + 1405.0, + 1100.0, + 1405.0, + 1136.0, + 295.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 1405.0, + 1131.0, + 1405.0, + 1167.0, + 293.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1195.0, + 296.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1191.0, + 1408.0, + 1191.0, + 1408.0, + 1229.0, + 292.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 823.0, + 1404.0, + 823.0, + 1404.0, + 856.0, + 295.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 853.0, + 1402.0, + 853.0, + 1402.0, + 886.0, + 295.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 885.0, + 1404.0, + 885.0, + 1404.0, + 918.0, + 295.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 917.0, + 1312.0, + 917.0, + 1312.0, + 949.0, + 295.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 713.0, + 1405.0, + 713.0, + 1405.0, + 752.0, + 292.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 746.0, + 1402.0, + 746.0, + 1402.0, + 779.0, + 294.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 777.0, + 683.0, + 777.0, + 683.0, + 810.0, + 296.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 1407.0, + 959.0, + 1407.0, + 997.0, + 293.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 991.0, + 545.0, + 991.0, + 545.0, + 1028.0, + 292.0, + 1028.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1066, + 1404, + 1066, + 1404, + 1433, + 298, + 1433 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1448, + 1404, + 1448, + 1404, + 1724, + 298, + 1724 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 897, + 1403, + 897, + 1403, + 1050, + 299, + 1050 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1405, + 1820, + 1405, + 1974, + 298, + 1974 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 351, + 221, + 1347, + 221, + 1347, + 481, + 351, + 481 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 294, + 757, + 1403, + 757, + 1403, + 821, + 294, + 821 + ], + "score": 0.949 + }, + { + "category_id": 4, + "poly": [ + 296, + 513, + 1406, + 513, + 1406, + 696, + 296, + 696 + ], + "score": 0.941 + }, + { + "category_id": 2, + "poly": [ + 315, + 2004, + 1400, + 2004, + 1400, + 2034, + 315, + 2034 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 301, + 1764, + 578, + 1764, + 578, + 1799, + 301, + 1799 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 0, + "poly": [ + 300, + 854, + 559, + 854, + 559, + 884, + 300, + 884 + ], + "score": 0.875 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.664 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.359 + }, + { + "category_id": 13, + "poly": [ + 569, + 1912, + 695, + 1912, + 695, + 1945, + 569, + 1945 + ], + "score": 0.93, + "latex": "d = ( \\pmb { x } , y )" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1882, + 1263, + 1882, + 1263, + 1914, + 1198, + 1914 + ], + "score": 0.93, + "latex": "\\lVert M \\rVert" + }, + { + "category_id": 13, + "poly": [ + 1315, + 1881, + 1397, + 1881, + 1397, + 1915, + 1315, + 1915 + ], + "score": 0.92, + "latex": "\\| M \\| _ { F }" + }, + { + "category_id": 13, + "poly": [ + 332, + 1882, + 378, + 1882, + 378, + 1915, + 332, + 1915 + ], + "score": 0.91, + "latex": "\\| \\pmb { v } \\|" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1850, + 1065, + 1850, + 1065, + 1879, + 1031, + 1879 + ], + "score": 0.88, + "latex": "L ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 611, + 2004, + 661, + 2004, + 661, + 2032, + 611, + 2032 + ], + "score": 0.87, + "latex": "7 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 687, + 1944, + 718, + 1944, + 718, + 1969, + 687, + 1969 + ], + "score": 0.87, + "latex": "\\mathbb { D } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1167, + 1944, + 1191, + 1944, + 1191, + 1970, + 1167, + 1970 + ], + "score": 0.84, + "latex": "\\mathbb { D }" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1915, + 1233, + 1915, + 1233, + 1940, + 1208, + 1940 + ], + "score": 0.8, + "latex": "\\mathbb { D }" + }, + { + "category_id": 13, + "poly": [ + 989, + 1883, + 1027, + 1883, + 1027, + 1909, + 989, + 1909 + ], + "score": 0.79, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1857, + 1280, + 1857, + 1280, + 1879, + 1261, + 1879 + ], + "score": 0.78, + "latex": "\\textbf { { v } }" + }, + { + "category_id": 13, + "poly": [ + 918, + 1918, + 940, + 1918, + 940, + 1940, + 918, + 1940 + ], + "score": 0.77, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 1058, + 1918, + 1075, + 1918, + 1075, + 1945, + 1058, + 1945 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 434, + 1852, + 471, + 1852, + 471, + 1880, + 434, + 1880 + ], + "score": 0.68, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1192, + 1828, + 1211, + 1828, + 1211, + 1850, + 1192, + 1850 + ], + "score": 0.67, + "latex": "\\textbf { { v } }" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 236.0, + 499.0, + 236.0, + 499.0, + 268.0, + 376.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 227.0, + 785.0, + 227.0, + 785.0, + 279.0, + 637.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 224.0, + 1013.0, + 224.0, + 1013.0, + 277.0, + 835.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 221.0, + 1140.0, + 221.0, + 1140.0, + 284.0, + 1020.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 224.0, + 1328.0, + 224.0, + 1328.0, + 280.0, + 1151.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 282.0, + 884.0, + 282.0, + 884.0, + 316.0, + 809.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 275.0, + 1318.0, + 275.0, + 1318.0, + 325.0, + 1163.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 309.0, + 511.0, + 309.0, + 511.0, + 338.0, + 362.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 314.0, + 788.0, + 314.0, + 788.0, + 347.0, + 698.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 314.0, + 1294.0, + 314.0, + 1294.0, + 348.0, + 1188.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 332.0, + 497.0, + 332.0, + 497.0, + 360.0, + 351.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 343.0, + 714.0, + 343.0, + 714.0, + 358.0, + 702.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 343.0, + 914.0, + 343.0, + 914.0, + 371.0, + 805.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 352.0, + 1185.0, + 352.0, + 1185.0, + 360.0, + 1176.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 344.0, + 1339.0, + 344.0, + 1339.0, + 377.0, + 1190.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 387.0, + 509.0, + 387.0, + 509.0, + 426.0, + 359.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 375.0, + 792.0, + 375.0, + 792.0, + 433.0, + 514.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 377.0, + 1002.0, + 377.0, + 1002.0, + 432.0, + 836.0, + 432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 375.0, + 1334.0, + 375.0, + 1334.0, + 436.0, + 1021.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 445.0, + 485.0, + 445.0, + 485.0, + 468.0, + 400.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 441.0, + 562.0, + 441.0, + 562.0, + 472.0, + 512.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 442.0, + 777.0, + 442.0, + 777.0, + 467.0, + 564.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 441.0, + 874.0, + 441.0, + 874.0, + 474.0, + 826.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 443.0, + 997.0, + 443.0, + 997.0, + 469.0, + 878.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 439.0, + 1082.0, + 439.0, + 1082.0, + 472.0, + 1032.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 440.0, + 1265.0, + 440.0, + 1265.0, + 468.0, + 1094.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 511.0, + 1406.0, + 511.0, + 1406.0, + 549.0, + 294.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 546.0, + 1407.0, + 546.0, + 1407.0, + 578.0, + 295.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 574.0, + 1406.0, + 574.0, + 1406.0, + 610.0, + 295.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 606.0, + 1404.0, + 606.0, + 1404.0, + 640.0, + 295.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 636.0, + 1404.0, + 636.0, + 1404.0, + 671.0, + 294.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 665.0, + 954.0, + 665.0, + 954.0, + 701.0, + 295.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 2000.0, + 610.0, + 2000.0, + 610.0, + 2038.0, + 332.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 2000.0, + 1403.0, + 2000.0, + 1403.0, + 2038.0, + 662.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1760.0, + 583.0, + 1760.0, + 583.0, + 1806.0, + 291.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 853.0, + 563.0, + 853.0, + 563.0, + 888.0, + 297.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1067.0, + 1405.0, + 1067.0, + 1405.0, + 1101.0, + 294.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1097.0, + 1408.0, + 1097.0, + 1408.0, + 1132.0, + 294.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1125.0, + 1408.0, + 1125.0, + 1408.0, + 1164.0, + 292.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1157.0, + 1408.0, + 1157.0, + 1408.0, + 1195.0, + 293.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1252.0, + 293.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1251.0, + 1405.0, + 1251.0, + 1405.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 1404.0, + 1280.0, + 1404.0, + 1314.0, + 294.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1309.0, + 1405.0, + 1309.0, + 1405.0, + 1346.0, + 293.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1337.0, + 1405.0, + 1337.0, + 1405.0, + 1377.0, + 292.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1411.0, + 292.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1399.0, + 998.0, + 1399.0, + 998.0, + 1437.0, + 293.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1446.0, + 1406.0, + 1446.0, + 1406.0, + 1484.0, + 295.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1405.0, + 1476.0, + 1405.0, + 1513.0, + 294.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1510.0, + 1404.0, + 1510.0, + 1404.0, + 1543.0, + 296.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1539.0, + 1405.0, + 1539.0, + 1405.0, + 1574.0, + 293.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1406.0, + 1572.0, + 1406.0, + 1606.0, + 293.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1599.0, + 1406.0, + 1599.0, + 1406.0, + 1637.0, + 292.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1633.0, + 1405.0, + 1633.0, + 1405.0, + 1666.0, + 296.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1660.0, + 1405.0, + 1660.0, + 1405.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1693.0, + 1146.0, + 1693.0, + 1146.0, + 1726.0, + 296.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 894.0, + 1404.0, + 894.0, + 1404.0, + 933.0, + 294.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 927.0, + 1405.0, + 927.0, + 1405.0, + 963.0, + 294.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 956.0, + 1405.0, + 956.0, + 1405.0, + 995.0, + 293.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 988.0, + 1405.0, + 988.0, + 1405.0, + 1025.0, + 295.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1021.0, + 1082.0, + 1021.0, + 1082.0, + 1054.0, + 297.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1820.0, + 1191.0, + 1820.0, + 1191.0, + 1857.0, + 295.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1857.0, + 1212.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 433.0, + 1849.0, + 433.0, + 1885.0, + 292.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1849.0, + 1030.0, + 1849.0, + 1030.0, + 1885.0, + 472.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1849.0, + 1260.0, + 1849.0, + 1260.0, + 1885.0, + 1066.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1885.0, + 1281.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1876.0, + 331.0, + 1876.0, + 331.0, + 1922.0, + 291.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1876.0, + 988.0, + 1876.0, + 988.0, + 1922.0, + 379.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1876.0, + 1197.0, + 1876.0, + 1197.0, + 1922.0, + 1028.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1876.0, + 1314.0, + 1876.0, + 1314.0, + 1922.0, + 1264.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1876.0, + 1410.0, + 1876.0, + 1410.0, + 1922.0, + 1398.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 568.0, + 1910.0, + 568.0, + 1950.0, + 292.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1910.0, + 917.0, + 1910.0, + 917.0, + 1950.0, + 696.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 1910.0, + 1057.0, + 1910.0, + 1057.0, + 1950.0, + 941.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1910.0, + 1207.0, + 1910.0, + 1207.0, + 1950.0, + 1076.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1950.0, + 1234.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 686.0, + 1941.0, + 686.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1941.0, + 1166.0, + 1941.0, + 1166.0, + 1978.0, + 719.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1978.0, + 1192.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 757.0, + 1405.0, + 757.0, + 1405.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 788.0, + 1404.0, + 788.0, + 1404.0, + 824.0, + 296.0, + 824.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 431, + 1405, + 431, + 1405, + 739, + 298, + 739 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1014, + 1405, + 1014, + 1405, + 1231, + 298, + 1231 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 752, + 1405, + 752, + 1405, + 914, + 298, + 914 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1735, + 1403, + 1735, + 1403, + 1920, + 298, + 1920 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1388, + 1404, + 1388, + 1404, + 1584, + 298, + 1584 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1596, + 1403, + 1596, + 1403, + 1721, + 298, + 1721 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 302, + 1404, + 302, + 1404, + 408, + 298, + 408 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1931, + 1404, + 1931, + 1404, + 2038, + 299, + 2038 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1401, + 229, + 1401, + 293, + 293, + 293 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 300, + 1311, + 1399, + 1311, + 1399, + 1375, + 300, + 1375 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 300, + 954, + 914, + 954, + 914, + 988, + 300, + 988 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 298, + 1262, + 971, + 1262, + 971, + 1293, + 298, + 1293 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.776 + }, + { + "category_id": 13, + "poly": [ + 591, + 1965, + 702, + 1965, + 702, + 1999, + 591, + 1999 + ], + "score": 0.93, + "latex": "\\delta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 710, + 754, + 918, + 754, + 918, + 788, + 710, + 788 + ], + "score": 0.93, + "latex": "\\mathbb { D } = \\{ ( \\boldsymbol { x } _ { i } , y _ { i } ) \\} _ { i = 1 } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1420, + 1398, + 1420, + 1398, + 1452, + 1237, + 1452 + ], + "score": 0.92, + "latex": "G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }" + }, + { + "category_id": 13, + "poly": [ + 1120, + 1627, + 1261, + 1627, + 1261, + 1658, + 1120, + 1658 + ], + "score": 0.92, + "latex": "\\mathbf { \\check { \\boldsymbol { W } } } = \\check { G } \\mathbf { \\boldsymbol { B } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 961, + 1826, + 1193, + 1826, + 1193, + 1862, + 961, + 1862 + ], + "score": 0.92, + "latex": "\\widetilde { \\pmb { v } } : = ( \\widetilde { \\pmb { w } } ^ { T } \\pmb { B } ^ { \\top } + \\widetilde { \\pmb { r } } ) / n" + }, + { + "category_id": 13, + "poly": [ + 363, + 1486, + 489, + 1486, + 489, + 1516, + 363, + 1516 + ], + "score": 0.92, + "latex": "\\boldsymbol { B } \\in \\mathbb { R } ^ { k \\times \\hat { p } }" + }, + { + "category_id": 13, + "poly": [ + 731, + 1597, + 859, + 1597, + 859, + 1627, + 731, + 1627 + ], + "score": 0.92, + "latex": "G \\in \\mathbb { R } ^ { n \\times p }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1999, + 578, + 1999, + 578, + 2038, + 297, + 2038 + ], + "score": 0.92, + "latex": "\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1962, + 1352, + 1962, + 1352, + 2001, + 1072, + 2001 + ], + "score": 0.92, + "latex": "\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 590, + 231, + 678, + 231, + 678, + 259, + 590, + 259 + ], + "score": 0.92, + "latex": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1340, + 814, + 1403, + 814, + 1403, + 848, + 1340, + 848 + ], + "score": 0.91, + "latex": "\\ell ( \\cdot , \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 437, + 370, + 897, + 370, + 897, + 407, + 437, + 407 + ], + "score": 0.91, + "latex": "P r [ \\mathcal { M } ( \\mathbb { D } ) \\in S ] \\leq e ^ { \\epsilon } P r [ \\mathcal { M } ( \\mathbb { D } ^ { ' } ) \\in S ] + \\delta" + }, + { + "category_id": 13, + "poly": [ + 1080, + 850, + 1327, + 850, + 1327, + 889, + 1080, + 889 + ], + "score": 0.91, + "latex": "\\mathbb { D } ^ { ( a ) } = \\{ ( \\tilde { \\pmb { x } } _ { j } , \\tilde { \\pmb { y } } _ { j } ) \\} _ { j = 1 } ^ { m }" + }, + { + "category_id": 13, + "poly": [ + 410, + 1658, + 632, + 1658, + 632, + 1689, + 410, + 1689 + ], + "score": 0.91, + "latex": "\\bar { \\pmb { R } } = \\pmb { G } - \\pmb { G } \\bar { \\pmb { B } } ^ { T } \\bar { \\pmb { B } }" + }, + { + "category_id": 13, + "poly": [ + 747, + 616, + 806, + 616, + 806, + 648, + 747, + 648 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1336, + 303, + 1395, + 303, + 1395, + 337, + 1336, + 337 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 438, + 707, + 497, + 707, + 497, + 740, + 438, + 740 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1454, + 1139, + 1454, + 1139, + 1486, + 1082, + 1486 + ], + "score": 0.91, + "latex": "G ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 490, + 1420, + 543, + 1420, + 543, + 1451, + 490, + 1451 + ], + "score": 0.91, + "latex": "\\mathbb { D } ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 490, + 433, + 550, + 433, + 550, + 466, + 490, + 466 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 781, + 647, + 840, + 647, + 840, + 679, + 781, + 679 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1021, + 813, + 1254, + 813, + 1254, + 849, + 1021, + 849 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\dot { \\frac { 1 } { n } } \\sum _ { i = 1 } ^ { n } \\ell ( \\dot { f } ( \\pmb { x } _ { i } ) , \\dot { y } _ { i } ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 963, + 334, + 1049, + 334, + 1049, + 368, + 963, + 368 + ], + "score": 0.9, + "latex": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 298, + 815, + 382, + 815, + 382, + 844, + 298, + 844 + ], + "score": 0.9, + "latex": "\\theta \\in \\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1553, + 1170, + 1553, + 1170, + 1583, + 1115, + 1583 + ], + "score": 0.9, + "latex": "m , k" + }, + { + "category_id": 13, + "poly": [ + 395, + 1518, + 449, + 1518, + 449, + 1549, + 395, + 1549 + ], + "score": 0.9, + "latex": "\\mathbb { D } ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1965, + 453, + 1965, + 453, + 1998, + 394, + 1998 + ], + "score": 0.89, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 453, + 303, + 514, + 303, + 514, + 337, + 453, + 337 + ], + "score": 0.88, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 595, + 1932, + 628, + 1932, + 628, + 1962, + 595, + 1962 + ], + "score": 0.87, + "latex": "S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 510, + 1932, + 542, + 1932, + 542, + 1962, + 510, + 1962 + ], + "score": 0.87, + "latex": "S _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 732, + 787, + 753, + 787, + 753, + 817, + 732, + 817 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 730, + 884, + 749, + 884, + 749, + 915, + 730, + 915 + ], + "score": 0.84, + "latex": "\\tilde { y }" + }, + { + "category_id": 13, + "poly": [ + 1381, + 755, + 1401, + 755, + 1401, + 787, + 1381, + 787 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1223, + 786, + 1242, + 786, + 1242, + 816, + 1223, + 816 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 755, + 1965, + 923, + 1965, + 923, + 1999, + 755, + 1999 + ], + "score": 0.84, + "latex": "\\epsilon \\leq 2 \\log ( 1 / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 635, + 884, + 659, + 884, + 659, + 910, + 635, + 910 + ], + "score": 0.8, + "latex": "\\mathbb { D }" + }, + { + "category_id": 13, + "poly": [ + 613, + 1691, + 631, + 1691, + 631, + 1717, + 613, + 1717 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1379, + 853, + 1401, + 853, + 1401, + 880, + 1379, + 880 + ], + "score": 0.78, + "latex": "\\tilde { \\pmb x }" + }, + { + "category_id": 13, + "poly": [ + 1379, + 341, + 1401, + 341, + 1401, + 367, + 1379, + 367 + ], + "score": 0.78, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 557, + 786, + 580, + 786, + 580, + 812, + 557, + 812 + ], + "score": 0.76, + "latex": "\\mathbb { D }" + }, + { + "category_id": 13, + "poly": [ + 1148, + 789, + 1166, + 789, + 1166, + 815, + 1148, + 815 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 582, + 888, + 603, + 888, + 603, + 910, + 582, + 910 + ], + "score": 0.75, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 977, + 760, + 997, + 760, + 997, + 783, + 977, + 783 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 819, + 791, + 840, + 791, + 840, + 812, + 819, + 812 + ], + "score": 0.75, + "latex": "_ { \\textbf { \\em x } }" + }, + { + "category_id": 13, + "poly": [ + 483, + 1630, + 511, + 1630, + 511, + 1656, + 483, + 1656 + ], + "score": 0.74, + "latex": "\\textbf { { B } }" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1521, + 1101, + 1521, + 1101, + 1549, + 1072, + 1549 + ], + "score": 0.73, + "latex": "\\textbf { { B } }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1427, + 634, + 1427, + 634, + 1452, + 605, + 1452 + ], + "score": 0.69, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1161, + 304, + 1198, + 304, + 1198, + 333, + 1161, + 333 + ], + "score": 0.67, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 938, + 1938, + 954, + 1938, + 954, + 1959, + 938, + 1959 + ], + "score": 0.59, + "latex": "\\pmb { r }" + }, + { + "category_id": 13, + "poly": [ + 1385, + 1933, + 1402, + 1933, + 1402, + 1959, + 1385, + 1959 + ], + "score": 0.33, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 858, + 1937, + 883, + 1937, + 883, + 1960, + 858, + 1960 + ], + "score": 0.33, + "latex": "\\pmb { w }" + }, + { + "category_id": 13, + "poly": [ + 755, + 1965, + 820, + 1965, + 820, + 1997, + 755, + 1997 + ], + "score": 0.26, + "latex": "\\epsilon \\leq 2" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 947.0, + 918.0, + 947.0, + 918.0, + 995.0, + 290.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1261.0, + 974.0, + 1261.0, + 974.0, + 1297.0, + 294.0, + 1297.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": [ + 295.0, + 432.0, + 489.0, + 432.0, + 489.0, + 468.0, + 295.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 432.0, + 1408.0, + 432.0, + 1408.0, + 468.0, + 551.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 459.0, + 1406.0, + 459.0, + 1406.0, + 503.0, + 292.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 493.0, + 1406.0, + 493.0, + 1406.0, + 529.0, + 293.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 523.0, + 1405.0, + 523.0, + 1405.0, + 560.0, + 293.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 554.0, + 1406.0, + 554.0, + 1406.0, + 590.0, + 293.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 585.0, + 1405.0, + 585.0, + 1405.0, + 621.0, + 295.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 609.0, + 746.0, + 609.0, + 746.0, + 655.0, + 292.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 609.0, + 1406.0, + 609.0, + 1406.0, + 655.0, + 807.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 641.0, + 780.0, + 641.0, + 780.0, + 686.0, + 291.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 641.0, + 1409.0, + 641.0, + 1409.0, + 686.0, + 841.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 677.0, + 1406.0, + 677.0, + 1406.0, + 713.0, + 293.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 706.0, + 437.0, + 706.0, + 437.0, + 742.0, + 293.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 706.0, + 551.0, + 706.0, + 551.0, + 742.0, + 498.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1016.0, + 1406.0, + 1016.0, + 1406.0, + 1051.0, + 295.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1046.0, + 1405.0, + 1046.0, + 1405.0, + 1080.0, + 296.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1078.0, + 1405.0, + 1078.0, + 1405.0, + 1113.0, + 295.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1106.0, + 1405.0, + 1106.0, + 1405.0, + 1144.0, + 293.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1137.0, + 1403.0, + 1137.0, + 1403.0, + 1172.0, + 295.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1167.0, + 1407.0, + 1167.0, + 1407.0, + 1202.0, + 296.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1198.0, + 1378.0, + 1198.0, + 1378.0, + 1233.0, + 292.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 751.0, + 709.0, + 751.0, + 709.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 751.0, + 976.0, + 751.0, + 976.0, + 793.0, + 919.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 751.0, + 1380.0, + 751.0, + 1380.0, + 793.0, + 998.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 751.0, + 1406.0, + 751.0, + 1406.0, + 793.0, + 1402.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 783.0, + 556.0, + 783.0, + 556.0, + 821.0, + 295.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 783.0, + 731.0, + 783.0, + 731.0, + 821.0, + 581.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 783.0, + 818.0, + 783.0, + 818.0, + 821.0, + 754.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 783.0, + 1147.0, + 783.0, + 1147.0, + 821.0, + 841.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 783.0, + 1222.0, + 783.0, + 1222.0, + 821.0, + 1167.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 783.0, + 1407.0, + 783.0, + 1407.0, + 821.0, + 1243.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 802.0, + 297.0, + 802.0, + 297.0, + 862.0, + 287.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 802.0, + 1020.0, + 802.0, + 1020.0, + 862.0, + 383.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 802.0, + 1339.0, + 802.0, + 1339.0, + 862.0, + 1255.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 802.0, + 1414.0, + 802.0, + 1414.0, + 862.0, + 1404.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 837.0, + 1079.0, + 837.0, + 1079.0, + 895.0, + 290.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 837.0, + 1378.0, + 837.0, + 1378.0, + 895.0, + 1328.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 837.0, + 1409.0, + 837.0, + 1409.0, + 895.0, + 1402.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 881.0, + 581.0, + 881.0, + 581.0, + 916.0, + 295.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 881.0, + 634.0, + 881.0, + 634.0, + 916.0, + 604.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 881.0, + 729.0, + 881.0, + 729.0, + 916.0, + 660.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 881.0, + 950.0, + 881.0, + 950.0, + 916.0, + 750.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1736.0, + 1405.0, + 1736.0, + 1405.0, + 1772.0, + 294.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1765.0, + 1405.0, + 1765.0, + 1405.0, + 1805.0, + 293.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1797.0, + 1404.0, + 1797.0, + 1404.0, + 1833.0, + 294.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1827.0, + 960.0, + 1827.0, + 960.0, + 1863.0, + 294.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1827.0, + 1404.0, + 1827.0, + 1404.0, + 1863.0, + 1194.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1859.0, + 1404.0, + 1859.0, + 1404.0, + 1895.0, + 294.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1889.0, + 1085.0, + 1889.0, + 1085.0, + 1923.0, + 293.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1387.0, + 1405.0, + 1387.0, + 1405.0, + 1425.0, + 295.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1419.0, + 489.0, + 1419.0, + 489.0, + 1458.0, + 292.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1419.0, + 604.0, + 1419.0, + 604.0, + 1458.0, + 544.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1419.0, + 1236.0, + 1419.0, + 1236.0, + 1458.0, + 635.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1419.0, + 1409.0, + 1419.0, + 1409.0, + 1458.0, + 1399.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1453.0, + 1081.0, + 1453.0, + 1081.0, + 1494.0, + 293.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1453.0, + 1405.0, + 1453.0, + 1405.0, + 1494.0, + 1140.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1481.0, + 362.0, + 1481.0, + 362.0, + 1526.0, + 292.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1481.0, + 1408.0, + 1481.0, + 1408.0, + 1526.0, + 490.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1514.0, + 394.0, + 1514.0, + 394.0, + 1560.0, + 292.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1514.0, + 1071.0, + 1514.0, + 1071.0, + 1560.0, + 450.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1514.0, + 1408.0, + 1514.0, + 1408.0, + 1560.0, + 1102.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1548.0, + 1114.0, + 1548.0, + 1114.0, + 1590.0, + 292.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1548.0, + 1409.0, + 1548.0, + 1409.0, + 1590.0, + 1171.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1595.0, + 730.0, + 1595.0, + 730.0, + 1635.0, + 293.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1595.0, + 1405.0, + 1595.0, + 1405.0, + 1635.0, + 860.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1628.0, + 482.0, + 1628.0, + 482.0, + 1661.0, + 292.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1628.0, + 1119.0, + 1628.0, + 1119.0, + 1661.0, + 512.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1661.0, + 1262.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1657.0, + 409.0, + 1657.0, + 409.0, + 1695.0, + 293.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1657.0, + 1404.0, + 1657.0, + 1404.0, + 1695.0, + 633.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1688.0, + 612.0, + 1688.0, + 612.0, + 1726.0, + 293.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1688.0, + 1132.0, + 1688.0, + 1132.0, + 1726.0, + 632.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 301.0, + 452.0, + 301.0, + 452.0, + 341.0, + 293.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 301.0, + 1160.0, + 301.0, + 1160.0, + 341.0, + 515.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 301.0, + 1335.0, + 301.0, + 1335.0, + 341.0, + 1199.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 301.0, + 1408.0, + 301.0, + 1408.0, + 341.0, + 1396.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 337.0, + 962.0, + 337.0, + 962.0, + 376.0, + 293.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 337.0, + 1378.0, + 337.0, + 1378.0, + 376.0, + 1050.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 337.0, + 1406.0, + 337.0, + 1406.0, + 376.0, + 1402.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 370.0, + 436.0, + 370.0, + 436.0, + 409.0, + 292.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 370.0, + 907.0, + 370.0, + 907.0, + 409.0, + 898.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1928.0, + 509.0, + 1928.0, + 509.0, + 1968.0, + 294.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1928.0, + 594.0, + 1928.0, + 594.0, + 1968.0, + 543.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1928.0, + 857.0, + 1928.0, + 857.0, + 1968.0, + 629.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1928.0, + 937.0, + 1928.0, + 937.0, + 1968.0, + 884.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1928.0, + 1384.0, + 1928.0, + 1384.0, + 1968.0, + 955.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1963.0, + 393.0, + 1963.0, + 393.0, + 2003.0, + 295.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1963.0, + 590.0, + 1963.0, + 590.0, + 2003.0, + 454.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1963.0, + 754.0, + 1963.0, + 754.0, + 2003.0, + 703.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1963.0, + 1071.0, + 1963.0, + 1071.0, + 2003.0, + 924.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1963.0, + 1405.0, + 1963.0, + 1405.0, + 2003.0, + 1353.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1998.0, + 296.0, + 1998.0, + 296.0, + 2040.0, + 292.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1998.0, + 589.0, + 1998.0, + 589.0, + 2040.0, + 579.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 589.0, + 228.0, + 589.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 228.0, + 1403.0, + 228.0, + 1403.0, + 266.0, + 679.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1104.0, + 261.0, + 1104.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1311.0, + 1403.0, + 1311.0, + 1403.0, + 1347.0, + 296.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1342.0, + 1230.0, + 1342.0, + 1230.0, + 1379.0, + 295.0, + 1379.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1112, + 1405, + 1112, + 1405, + 1660, + 298, + 1660 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 299, + 1675, + 1403, + 1675, + 1403, + 1829, + 299, + 1829 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 941, + 1403, + 941, + 1403, + 1096, + 297, + 1096 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1935, + 1403, + 1935, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 812, + 75, + 812, + 105, + 300, + 105 + ], + "score": 0.892 + }, + { + "category_id": 6, + "poly": [ + 300, + 238, + 829, + 238, + 829, + 271, + 300, + 271 + ], + "score": 0.821 + }, + { + "category_id": 0, + "poly": [ + 303, + 1881, + 997, + 1881, + 997, + 1910, + 303, + 1910 + ], + "score": 0.803 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 305, + 277, + 1398, + 277, + 1398, + 853, + 305, + 853 + ], + "score": 0.698 + }, + { + "category_id": 5, + "poly": [ + 305, + 277, + 1398, + 277, + 1398, + 853, + 305, + 853 + ], + "score": 0.309, + "html": "
1: Input: anchor gradients G(a) ∈ RmXp; number of basis vectors k; private gradients G ∈ Rn Xp clipping thresholds S1, S2; standard deviations O1,O2; number of power iterations t.
2://First stage: Compute an orthonormal basis for the anchor subspace.
3:InitializeB∈RkXP randomly.
4:fori=1 to t do
5:Compute A= G(α) BT and B = ATG(a).
6:Orthogonalize B and normalize row vectors.
7:end for
8:Delete G(@) to free memory.
9::ISecond stage: project the private gradients G into anchor subspace B
10:Compute gradient embeddings W = GBT and clip its rows with S1 to obtain W.
11:Compute residual gradients R= G -WB and clip its rows with S2 to obtain R.
12://Third stage:perturb gradient embedding and residual gradient separately
13: Perturb embedding with noise z(1) ~ N(0,o²Ik×k): w := ∑ Wi,, ω := w + z(1).
14: Perturb residual gradient with noise z(2) ~ N(O,o²Ipxp): r := ∑ Ri,:, r := r + z(2).
15::Return v := (ωTB+r)/n.
" + }, + { + "category_id": 13, + "poly": [ + 344, + 1933, + 519, + 1933, + 519, + 1973, + 344, + 1973 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\pmb { g } : = \\frac { 1 } { n } \\sum _ { i } \\pmb { G } _ { i } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 692, + 622, + 832, + 622, + 832, + 654, + 692, + 654 + ], + "score": 0.92, + "latex": "\\pmb { W } = \\pmb { G } \\pmb { B } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 451, + 388, + 574, + 388, + 574, + 418, + 451, + 418 + ], + "score": 0.92, + "latex": "\\mathbf { \\bar { \\boldsymbol { B } } } \\in \\mathbb { R } ^ { k \\times p }" + }, + { + "category_id": 13, + "poly": [ + 693, + 446, + 854, + 446, + 854, + 479, + 693, + 479 + ], + "score": 0.92, + "latex": "B = A ^ { T } G ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 684, + 738, + 933, + 738, + 933, + 775, + 684, + 775 + ], + "score": 0.92, + "latex": "\\boldsymbol { z } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 1 } ^ { 2 } \\boldsymbol { I } _ { k \\times k } )" + }, + { + "category_id": 13, + "poly": [ + 481, + 448, + 642, + 448, + 642, + 479, + 481, + 479 + ], + "score": 0.92, + "latex": "\\pmb { A } = \\pmb { G } ^ { ( a ) } \\pmb { B } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 533, + 1598, + 777, + 1598, + 777, + 1632, + 533, + 1632 + ], + "score": 0.92, + "latex": "2 m ( k _ { 1 } + k _ { 2 } ) ( p _ { 1 } + p _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 427, + 809, + 659, + 809, + 659, + 847, + 427, + 847 + ], + "score": 0.92, + "latex": "\\tilde { v } : = ( \\tilde { w } ^ { T } B + \\tilde { r } ) / n" + }, + { + "category_id": 13, + "poly": [ + 1195, + 1568, + 1397, + 1568, + 1397, + 1601, + 1195, + 1601 + ], + "score": 0.91, + "latex": "2 m ( k _ { 1 } p _ { 1 } + k _ { 2 } p _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 853, + 974, + 886, + 974, + 886, + 1004, + 853, + 1004 + ], + "score": 0.91, + "latex": "S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 487, + 1568, + 555, + 1568, + 555, + 1599, + 487, + 1599 + ], + "score": 0.91, + "latex": "k _ { 1 } , k _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 561, + 1970, + 784, + 1970, + 784, + 2002, + 561, + 2002 + ], + "score": 0.91, + "latex": "\\pmb { R } : = \\pmb { G } - \\pmb { G } \\pmb { B } ^ { T } \\pmb { B }" + }, + { + "category_id": 13, + "poly": [ + 616, + 277, + 776, + 277, + 776, + 310, + 616, + 310 + ], + "score": 0.91, + "latex": "G ^ { ( a ) } \\in \\mathbb { R } ^ { m \\times p }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 1064, + 1343, + 1064, + 1343, + 1098, + 1283, + 1098 + ], + "score": 0.9, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 869, + 317, + 941, + 317, + 941, + 345, + 869, + 345 + ], + "score": 0.9, + "latex": "\\sigma _ { 1 } , \\sigma _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 424, + 538, + 481, + 538, + 481, + 570, + 424, + 570 + ], + "score": 0.9, + "latex": "G ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 563, + 313, + 636, + 313, + 636, + 344, + 563, + 344 + ], + "score": 0.89, + "latex": "S _ { 1 } , S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1542, + 1175, + 1542, + 1175, + 1570, + 1106, + 1570 + ], + "score": 0.89, + "latex": "p _ { 1 } , p _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 766, + 974, + 798, + 974, + 798, + 1004, + 766, + 1004 + ], + "score": 0.89, + "latex": "S _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 386, + 421, + 450, + 421, + 450, + 449, + 386, + 449 + ], + "score": 0.89, + "latex": "i = 1" + }, + { + "category_id": 13, + "poly": [ + 1081, + 625, + 1114, + 625, + 1114, + 655, + 1081, + 655 + ], + "score": 0.88, + "latex": "S _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 656, + 659, + 839, + 659, + 839, + 689, + 656, + 689 + ], + "score": 0.88, + "latex": "R = G - W B" + }, + { + "category_id": 13, + "poly": [ + 747, + 776, + 993, + 776, + 993, + 813, + 747, + 813 + ], + "score": 0.87, + "latex": "\\boldsymbol { z } ^ { ( 2 ) } \\sim \\mathcal { N } ( 0 , \\sigma _ { 2 } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )" + }, + { + "category_id": 13, + "poly": [ + 1086, + 660, + 1119, + 660, + 1119, + 690, + 1086, + 690 + ], + "score": 0.87, + "latex": "S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1270, + 280, + 1395, + 280, + 1395, + 310, + 1270, + 310 + ], + "score": 0.86, + "latex": "G \\in \\mathbb { R } ^ { n \\times p }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 620, + 1260, + 620, + 1260, + 652, + 1223, + 652 + ], + "score": 0.86, + "latex": "\\hat { W }" + }, + { + "category_id": 13, + "poly": [ + 1229, + 656, + 1255, + 656, + 1255, + 687, + 1229, + 687 + ], + "score": 0.83, + "latex": "\\hat { R }" + }, + { + "category_id": 13, + "poly": [ + 1356, + 1447, + 1376, + 1447, + 1376, + 1474, + 1356, + 1474 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 837, + 591, + 865, + 591, + 865, + 618, + 837, + 618 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 477, + 1451, + 497, + 1451, + 497, + 1479, + 477, + 1479 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1053, + 283, + 1072, + 283, + 1072, + 310, + 1053, + 310 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1108, + 591, + 1136, + 591, + 1136, + 617, + 1108, + 617 + ], + "score": 0.76, + "latex": "\\textbf { { B } }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1938, + 1251, + 1938, + 1251, + 1965, + 1223, + 1965 + ], + "score": 0.76, + "latex": "\\textbf { { B } }" + }, + { + "category_id": 13, + "poly": [ + 538, + 483, + 566, + 483, + 566, + 509, + 538, + 509 + ], + "score": 0.75, + "latex": "\\textbf { { B } }" + }, + { + "category_id": 13, + "poly": [ + 900, + 1451, + 927, + 1451, + 927, + 1475, + 900, + 1475 + ], + "score": 0.74, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1259, + 316, + 1272, + 316, + 1272, + 340, + 1259, + 340 + ], + "score": 0.7, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 483, + 423, + 497, + 423, + 497, + 448, + 483, + 448 + ], + "score": 0.65, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 323, + 1447, + 393, + 1447, + 393, + 1478, + 323, + 1478 + ], + "score": 0.63, + "latex": "2 m k p" + }, + { + "category_id": 13, + "poly": [ + 1143, + 738, + 1320, + 738, + 1320, + 773, + 1143, + 773 + ], + "score": 0.46, + "latex": "\\tilde { \\pmb { w } } : = \\pmb { w } + \\pmb { z } ^ { ( 1 ) }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 775, + 1354, + 775, + 1354, + 814, + 1012, + 814 + ], + "score": 0.38, + "latex": "\\begin{array} { r } { \\pmb { r } : = \\sum _ { i } \\hat { \\pmb { R } } _ { i , : } , \\ \\tilde { \\pmb { r } } : = \\pmb { r } + \\boldsymbol { z } ^ { ( 2 ) } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 952, + 737, + 1119, + 737, + 1119, + 776, + 952, + 776 + ], + "score": 0.34, + "latex": "\\begin{array} { r } { \\pmb { w } : = \\sum _ { i } \\hat { W } _ { i , : } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 950, + 737, + 1331, + 737, + 1331, + 774, + 950, + 774 + ], + "score": 0.27, + "latex": "\\begin{array} { r } { \\pmb { w } : = \\sum _ { i } \\hat { W } _ { i , : } , \\tilde { \\pmb { w } } : = \\pmb { w } + \\pmb { z } ^ { ( 1 ) } . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 233.0, + 833.0, + 233.0, + 833.0, + 277.0, + 294.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1878.0, + 1000.0, + 1878.0, + 1000.0, + 1914.0, + 297.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1113.0, + 1403.0, + 1113.0, + 1403.0, + 1144.0, + 296.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1139.0, + 1406.0, + 1139.0, + 1406.0, + 1177.0, + 293.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1172.0, + 1406.0, + 1172.0, + 1406.0, + 1208.0, + 293.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1202.0, + 1403.0, + 1202.0, + 1403.0, + 1238.0, + 295.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1234.0, + 1406.0, + 1234.0, + 1406.0, + 1270.0, + 295.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1262.0, + 1409.0, + 1262.0, + 1409.0, + 1300.0, + 293.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 1407.0, + 1292.0, + 1407.0, + 1330.0, + 293.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1325.0, + 1405.0, + 1325.0, + 1405.0, + 1361.0, + 295.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1356.0, + 1405.0, + 1356.0, + 1405.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 1405.0, + 1385.0, + 1405.0, + 1420.0, + 293.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1414.0, + 1405.0, + 1414.0, + 1405.0, + 1449.0, + 295.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1444.0, + 322.0, + 1444.0, + 322.0, + 1481.0, + 292.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1444.0, + 476.0, + 1444.0, + 476.0, + 1481.0, + 394.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1444.0, + 899.0, + 1444.0, + 899.0, + 1481.0, + 498.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1444.0, + 1355.0, + 1444.0, + 1355.0, + 1481.0, + 928.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1444.0, + 1406.0, + 1444.0, + 1406.0, + 1481.0, + 1377.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1473.0, + 1407.0, + 1473.0, + 1407.0, + 1514.0, + 293.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1509.0, + 1407.0, + 1509.0, + 1407.0, + 1542.0, + 292.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1538.0, + 1105.0, + 1538.0, + 1105.0, + 1573.0, + 293.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1538.0, + 1407.0, + 1538.0, + 1407.0, + 1573.0, + 1176.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1568.0, + 486.0, + 1568.0, + 486.0, + 1604.0, + 295.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1568.0, + 1194.0, + 1568.0, + 1194.0, + 1604.0, + 556.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1568.0, + 1407.0, + 1568.0, + 1407.0, + 1604.0, + 1398.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1597.0, + 532.0, + 1597.0, + 532.0, + 1637.0, + 293.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1597.0, + 1407.0, + 1597.0, + 1407.0, + 1637.0, + 778.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1628.0, + 1087.0, + 1628.0, + 1087.0, + 1664.0, + 293.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1673.0, + 1405.0, + 1673.0, + 1405.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1703.0, + 1405.0, + 1703.0, + 1405.0, + 1743.0, + 293.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1735.0, + 1405.0, + 1735.0, + 1405.0, + 1772.0, + 294.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1767.0, + 1405.0, + 1767.0, + 1405.0, + 1804.0, + 295.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1797.0, + 1157.0, + 1797.0, + 1157.0, + 1834.0, + 293.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 1406.0, + 941.0, + 1406.0, + 977.0, + 292.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 972.0, + 765.0, + 972.0, + 765.0, + 1009.0, + 295.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 972.0, + 852.0, + 972.0, + 852.0, + 1009.0, + 799.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 972.0, + 1405.0, + 972.0, + 1405.0, + 1009.0, + 887.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1001.0, + 1407.0, + 1001.0, + 1407.0, + 1042.0, + 293.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1032.0, + 1404.0, + 1032.0, + 1404.0, + 1069.0, + 292.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1064.0, + 1282.0, + 1064.0, + 1282.0, + 1101.0, + 293.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1064.0, + 1396.0, + 1064.0, + 1396.0, + 1101.0, + 1344.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1934.0, + 343.0, + 1934.0, + 343.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1934.0, + 1222.0, + 1934.0, + 1222.0, + 1976.0, + 520.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1934.0, + 1407.0, + 1934.0, + 1407.0, + 1976.0, + 1252.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 560.0, + 1970.0, + 560.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2008.0, + 785.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 1408.0, + 1999.0, + 1408.0, + 2041.0, + 293.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 275.0, + 615.0, + 275.0, + 615.0, + 316.0, + 307.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 275.0, + 1052.0, + 275.0, + 1052.0, + 316.0, + 777.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 275.0, + 1269.0, + 275.0, + 1269.0, + 316.0, + 1073.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 275.0, + 1406.0, + 275.0, + 1406.0, + 316.0, + 1396.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 309.0, + 562.0, + 309.0, + 562.0, + 349.0, + 342.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 309.0, + 868.0, + 309.0, + 868.0, + 349.0, + 637.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 309.0, + 1258.0, + 309.0, + 1258.0, + 349.0, + 942.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 309.0, + 1285.0, + 309.0, + 1285.0, + 349.0, + 1273.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 357.0, + 1114.0, + 357.0, + 1114.0, + 395.0, + 306.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 381.0, + 450.0, + 381.0, + 450.0, + 427.0, + 304.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 381.0, + 698.0, + 381.0, + 698.0, + 427.0, + 575.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 421.0, + 385.0, + 421.0, + 385.0, + 453.0, + 307.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 421.0, + 482.0, + 421.0, + 482.0, + 453.0, + 451.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 421.0, + 536.0, + 421.0, + 536.0, + 453.0, + 498.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 452.0, + 340.0, + 452.0, + 340.0, + 483.0, + 307.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 447.0, + 480.0, + 447.0, + 480.0, + 482.0, + 364.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 447.0, + 692.0, + 447.0, + 692.0, + 482.0, + 643.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 447.0, + 865.0, + 447.0, + 865.0, + 482.0, + 855.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 483.0, + 340.0, + 483.0, + 340.0, + 513.0, + 307.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 481.0, + 537.0, + 481.0, + 537.0, + 515.0, + 367.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 481.0, + 876.0, + 481.0, + 876.0, + 515.0, + 567.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 509.0, + 436.0, + 509.0, + 436.0, + 545.0, + 305.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 534.0, + 423.0, + 534.0, + 423.0, + 580.0, + 302.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 534.0, + 670.0, + 534.0, + 670.0, + 580.0, + 482.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 585.0, + 836.0, + 585.0, + 836.0, + 626.0, + 304.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 585.0, + 1107.0, + 585.0, + 1107.0, + 626.0, + 866.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 585.0, + 1140.0, + 585.0, + 1140.0, + 626.0, + 1137.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 623.0, + 691.0, + 623.0, + 691.0, + 657.0, + 300.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 623.0, + 1080.0, + 623.0, + 1080.0, + 657.0, + 833.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 623.0, + 1222.0, + 623.0, + 1222.0, + 657.0, + 1115.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 623.0, + 1270.0, + 623.0, + 1270.0, + 657.0, + 1261.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 657.0, + 655.0, + 657.0, + 655.0, + 693.0, + 301.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 657.0, + 1085.0, + 657.0, + 1085.0, + 693.0, + 840.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 657.0, + 1228.0, + 657.0, + 1228.0, + 693.0, + 1120.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 657.0, + 1268.0, + 657.0, + 1268.0, + 693.0, + 1256.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 705.0, + 1175.0, + 705.0, + 1175.0, + 744.0, + 301.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 737.0, + 683.0, + 737.0, + 683.0, + 779.0, + 300.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 737.0, + 949.0, + 737.0, + 949.0, + 779.0, + 934.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 775.0, + 746.0, + 775.0, + 746.0, + 813.0, + 293.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 775.0, + 1011.0, + 775.0, + 1011.0, + 813.0, + 994.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 775.0, + 1358.0, + 775.0, + 1358.0, + 813.0, + 1355.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 810.0, + 426.0, + 810.0, + 426.0, + 847.0, + 297.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 810.0, + 669.0, + 810.0, + 669.0, + 847.0, + 660.0, + 847.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1449, + 1405, + 1449, + 1405, + 1819, + 297, + 1819 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 226, + 1405, + 226, + 1405, + 443, + 297, + 443 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1833, + 1403, + 1833, + 1403, + 1957, + 299, + 1957 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 520, + 1404, + 520, + 1404, + 660, + 297, + 660 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 802, + 1406, + 802, + 1406, + 926, + 298, + 926 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 1312, + 1405, + 1312, + 1405, + 1438, + 298, + 1438 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1124, + 1405, + 1124, + 1405, + 1216, + 299, + 1216 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 931, + 1404, + 931, + 1404, + 1039, + 297, + 1039 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 294, + 452, + 1400, + 452, + 1400, + 517, + 294, + 517 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1400, + 1971, + 1400, + 2035, + 297, + 2035 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 620, + 666, + 1078, + 666, + 1078, + 710, + 620, + 710 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 300, + 1246, + 1150, + 1246, + 1150, + 1282, + 300, + 1282 + ], + "score": 0.926 + }, + { + "category_id": 8, + "poly": [ + 515, + 1044, + 1182, + 1044, + 1182, + 1116, + 515, + 1116 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 295, + 737, + 1281, + 737, + 1281, + 772, + 295, + 772 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.908 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1055, + 1400, + 1055, + 1400, + 1086, + 1366, + 1086 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 674, + 1400, + 674, + 1400, + 704, + 1366, + 704 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 1375, + 1249, + 1402, + 1249, + 1402, + 1278, + 1375, + 1278 + ], + "score": 0.795 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.787 + }, + { + "category_id": 2, + "poly": [ + 1375, + 739, + 1402, + 739, + 1402, + 768, + 1375, + 768 + ], + "score": 0.748 + }, + { + "category_id": 13, + "poly": [ + 878, + 2002, + 1040, + 2002, + 1040, + 2036, + 878, + 2036 + ], + "score": 0.96, + "latex": "\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n" + }, + { + "category_id": 13, + "poly": [ + 1033, + 554, + 1188, + 554, + 1188, + 590, + 1033, + 590 + ], + "score": 0.95, + "latex": "\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 505, + 262, + 682, + 262, + 682, + 308, + 505, + 308 + ], + "score": 0.94, + "latex": "\\hat { \\pmb { \\xi } } _ { j } : = ( { \\pmb { G } } _ { j , : } ^ { ( a ) } ) ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 484, + 623, + 644, + 623, + 644, + 661, + 484, + 661 + ], + "score": 0.94, + "latex": "\\bar { \\lambda _ { k ^ { \\prime } + 1 } } ( \\hat { S } ) = \\bar { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1001, + 401, + 1225, + 401, + 1225, + 444, + 1001, + 444 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\hat { \\pmb { S } } : = \\frac { 1 } { m } \\sum _ { i = 1 } ^ { m } \\hat { \\pmb { \\xi } } _ { i } \\hat { \\pmb { \\xi } } _ { i } ^ { T } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 785, + 228, + 957, + 228, + 957, + 265, + 785, + 265 + ], + "score": 0.94, + "latex": "\\pmb { \\xi } _ { i } : = ( G _ { i , : } ) ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 583, + 334, + 695, + 334, + 695, + 371, + 583, + 371 + ], + "score": 0.94, + "latex": "\\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m }" + }, + { + "category_id": 13, + "poly": [ + 877, + 964, + 1031, + 964, + 1031, + 1003, + 877, + 1003 + ], + "score": 0.93, + "latex": "\\hat { \\pmb { S } } = \\hat { V } _ { k } \\hat { \\Lambda } \\hat { V } _ { k } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 298, + 623, + 431, + 623, + 431, + 661, + 298, + 661 + ], + "score": 0.93, + "latex": "\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0" + }, + { + "category_id": 13, + "poly": [ + 1239, + 551, + 1400, + 551, + 1400, + 591, + 1239, + 591 + ], + "score": 0.93, + "latex": "\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 1229, + 806, + 1288, + 806, + 1288, + 839, + 1229, + 839 + ], + "score": 0.93, + "latex": "\\mathbb { F } _ { s ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 718, + 931, + 832, + 931, + 832, + 967, + 718, + 967 + ], + "score": 0.93, + "latex": "\\| \\pmb { \\xi } \\| ^ { 2 } < T" + }, + { + "category_id": 13, + "poly": [ + 661, + 805, + 832, + 805, + 832, + 840, + 661, + 840 + ], + "score": 0.92, + "latex": "\\mathbb { F } _ { s } = \\pmb { x } + \\mathbb { F } _ { s ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 296, + 367, + 587, + 367, + 587, + 404, + 296, + 404 + ], + "score": 0.92, + "latex": "\\Sigma : = \\mathbb { E } _ { \\pmb { \\xi } \\sim \\mathcal { P } } \\pmb { \\xi } \\pmb { \\xi } ^ { \\bar { T } } \\in \\mathbb { R } ^ { p \\times p }" + }, + { + "category_id": 13, + "poly": [ + 732, + 268, + 832, + 268, + 832, + 304, + 732, + 304 + ], + "score": 0.92, + "latex": "j \\in [ m ]" + }, + { + "category_id": 13, + "poly": [ + 1008, + 230, + 1102, + 230, + 1102, + 264, + 1008, + 264 + ], + "score": 0.92, + "latex": "i \\in [ n ]" + }, + { + "category_id": 13, + "poly": [ + 370, + 1126, + 1061, + 1126, + 1061, + 1182, + 370, + 1182 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { C = \\big [ \\mathbb { E } \\| \\pmb { \\xi } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\Sigma } ) \\big ] + \\Big [ \\frac { 1 } { m } \\sum _ { j = 1 } ^ { m } \\| \\hat { \\pmb { \\xi } } _ { j } \\| ^ { 4 } - \\sum _ { i } \\lambda _ { i } ^ { 2 } ( \\pmb { \\hat { S } } ) \\Big ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 859, + 556, + 978, + 556, + 978, + 587, + 859, + 587 + ], + "score": 0.92, + "latex": "0 \\leq s < k" + }, + { + "category_id": 13, + "poly": [ + 868, + 1451, + 1006, + 1451, + 1006, + 1487, + 868, + 1487 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\pmb { r } = \\sum _ { i } \\pmb { R } _ { i } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 390, + 555, + 560, + 555, + 560, + 590, + 390, + 590 + ], + "score": 0.91, + "latex": "\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 1294, + 304, + 1400, + 304, + 1400, + 337, + 1294, + 337 + ], + "score": 0.91, + "latex": "\\xi _ { 1 } , . . . , \\xi _ { n }" + }, + { + "category_id": 13, + "poly": [ + 1037, + 930, + 1187, + 930, + 1187, + 962, + 1037, + 962 + ], + "score": 0.91, + "latex": "\\pmb { \\Sigma } = \\pmb { V } \\pmb { \\Lambda } \\pmb { V } ^ { T }" + }, + { + "category_id": 14, + "poly": [ + 516, + 1043, + 1179, + 1043, + 1179, + 1118, + 516, + 1118 + ], + "score": 0.91, + "latex": "\\mathbb { E } \\| \\pmb { \\xi } - \\Pi _ { \\hat { V } _ { k } } ( \\pmb { \\xi } ) \\| _ { 2 } ^ { 2 } \\leq \\sum _ { k ^ { \\prime } > k } \\lambda _ { k ^ { \\prime } } ( \\pmb { \\Sigma } ) + \\sqrt { k C / m } + T \\sqrt { 2 \\delta / m } ," + }, + { + "category_id": 13, + "poly": [ + 297, + 1601, + 451, + 1601, + 451, + 1641, + 297, + 1641 + ], + "score": 0.91, + "latex": "( \\left\\| { \\frac { 1 } { n } } { \\overline { { r } } } \\right\\| / \\left\\| g \\right\\| )" + }, + { + "category_id": 13, + "poly": [ + 589, + 933, + 666, + 933, + 666, + 966, + 589, + 966 + ], + "score": 0.91, + "latex": "\\xi \\sim \\mathcal { P }" + }, + { + "category_id": 14, + "poly": [ + 618, + 666, + 1081, + 666, + 1081, + 709, + 618, + 709 + ], + "score": 0.9, + "latex": "k ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 ." + }, + { + "category_id": 13, + "poly": [ + 1306, + 269, + 1369, + 269, + 1369, + 304, + 1306, + 304 + ], + "score": 0.9, + "latex": "\\lambda _ { k } ( \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 742, + 628, + 820, + 628, + 820, + 659, + 742, + 659 + ], + "score": 0.9, + "latex": "m \\geq k" + }, + { + "category_id": 13, + "poly": [ + 1063, + 486, + 1142, + 486, + 1142, + 513, + 1063, + 513 + ], + "score": 0.9, + "latex": "m > k" + }, + { + "category_id": 13, + "poly": [ + 420, + 304, + 460, + 304, + 460, + 334, + 420, + 334 + ], + "score": 0.89, + "latex": "k _ { t h }" + }, + { + "category_id": 13, + "poly": [ + 997, + 1005, + 1164, + 1005, + 1164, + 1040, + 997, + 1040 + ], + "score": 0.89, + "latex": "1 - 2 \\exp ( - \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1346, + 1147, + 1346, + 1147, + 1376, + 1091, + 1376 + ], + "score": 0.89, + "latex": "m , k" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1183, + 1089, + 1183, + 1089, + 1215, + 1014, + 1215 + ], + "score": 0.89, + "latex": "\\xi \\sim \\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 503, + 1178, + 537, + 1178, + 537, + 1214, + 503, + 1214 + ], + "score": 0.88, + "latex": "\\hat { V } _ { k }" + }, + { + "category_id": 13, + "poly": [ + 298, + 896, + 377, + 896, + 377, + 924, + 298, + 924 + ], + "score": 0.88, + "latex": "m > k" + }, + { + "category_id": 13, + "poly": [ + 706, + 557, + 738, + 557, + 738, + 587, + 706, + 587 + ], + "score": 0.86, + "latex": "\\mathbb { F } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 805, + 1355, + 805, + 1355, + 832, + 1319, + 832 + ], + "score": 0.86, + "latex": "\\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 768, + 557, + 804, + 557, + 804, + 585, + 768, + 585 + ], + "score": 0.85, + "latex": "\\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 1071, + 1133, + 1123, + 1133, + 1123, + 1176, + 1071, + 1176 + ], + "score": 0.83, + "latex": "\\Pi _ { \\hat { V } _ { k } }" + }, + { + "category_id": 13, + "poly": [ + 620, + 1000, + 644, + 1000, + 644, + 1034, + 620, + 1034 + ], + "score": 0.82, + "latex": "\\hat { S } ." + }, + { + "category_id": 13, + "poly": [ + 936, + 455, + 962, + 455, + 962, + 481, + 936, + 481 + ], + "score": 0.82, + "latex": "\\pmb { \\Sigma }" + }, + { + "category_id": 13, + "poly": [ + 783, + 1667, + 803, + 1667, + 803, + 1693, + 783, + 1693 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 876, + 1636, + 896, + 1636, + 896, + 1663, + 876, + 1663 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1109, + 589, + 1133, + 589, + 1133, + 622, + 1109, + 622 + ], + "score": 0.81, + "latex": "\\hat { S }" + }, + { + "category_id": 13, + "poly": [ + 656, + 1636, + 675, + 1636, + 675, + 1663, + 656, + 1663 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 381, + 1697, + 400, + 1697, + 400, + 1723, + 381, + 1723 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1059, + 1575, + 1079, + 1575, + 1079, + 1601, + 1059, + 1601 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1376, + 523, + 1400, + 523, + 1400, + 549, + 1376, + 549 + ], + "score": 0.8, + "latex": "\\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 455, + 1113, + 455, + 1113, + 481, + 1095, + 481 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 438, + 810, + 453, + 810, + 453, + 832, + 438, + 832 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 491, + 1346, + 509, + 1346, + 509, + 1373, + 491, + 1373 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 652, + 594, + 678, + 594, + 678, + 622, + 652, + 622 + ], + "score": 0.78, + "latex": "\\pmb { \\Sigma }" + }, + { + "category_id": 13, + "poly": [ + 965, + 522, + 991, + 522, + 991, + 549, + 965, + 549 + ], + "score": 0.77, + "latex": "\\pmb { \\Sigma }" + }, + { + "category_id": 13, + "poly": [ + 1230, + 339, + 1255, + 339, + 1255, + 367, + 1230, + 367 + ], + "score": 0.75, + "latex": "\\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 897, + 810, + 912, + 810, + 912, + 832, + 897, + 832 + ], + "score": 0.74, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 297, + 1639, + 316, + 1639, + 316, + 1663, + 297, + 1663 + ], + "score": 0.72, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 443, + 1926, + 471, + 1926, + 471, + 1953, + 443, + 1953 + ], + "score": 0.72, + "latex": "\\pmb { R }" + }, + { + "category_id": 13, + "poly": [ + 1131, + 523, + 1149, + 523, + 1149, + 549, + 1131, + 549 + ], + "score": 0.69, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 634, + 561, + 649, + 561, + 649, + 585, + 634, + 585 + ], + "score": 0.69, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1112, + 630, + 1127, + 630, + 1127, + 655, + 1112, + 655 + ], + "score": 0.69, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 796, + 970, + 821, + 970, + 821, + 997, + 796, + 997 + ], + "score": 0.69, + "latex": "\\pmb { \\Sigma }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 1253.0, + 1402.0, + 1253.0, + 1402.0, + 1280.0, + 1379.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 744.0, + 1401.0, + 744.0, + 1401.0, + 767.0, + 1380.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1452.0, + 867.0, + 1452.0, + 867.0, + 1490.0, + 294.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 1452.0, + 1406.0, + 1452.0, + 1406.0, + 1490.0, + 1007.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1481.0, + 1407.0, + 1481.0, + 1407.0, + 1518.0, + 294.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1514.0, + 1405.0, + 1514.0, + 1405.0, + 1548.0, + 295.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 1405.0, + 1541.0, + 1405.0, + 1579.0, + 294.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1573.0, + 1058.0, + 1573.0, + 1058.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1080.0, + 1573.0, + 1405.0, + 1573.0, + 1405.0, + 1608.0, + 1080.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1599.0, + 296.0, + 1599.0, + 296.0, + 1644.0, + 291.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1599.0, + 1408.0, + 1599.0, + 1408.0, + 1644.0, + 452.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1635.0, + 655.0, + 1635.0, + 655.0, + 1669.0, + 317.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1635.0, + 875.0, + 1635.0, + 875.0, + 1669.0, + 676.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1669.0, + 897.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1665.0, + 782.0, + 1665.0, + 782.0, + 1700.0, + 292.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1665.0, + 1407.0, + 1665.0, + 1407.0, + 1700.0, + 804.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1695.0, + 380.0, + 1695.0, + 380.0, + 1731.0, + 294.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1695.0, + 1406.0, + 1695.0, + 1406.0, + 1731.0, + 401.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1726.0, + 1406.0, + 1726.0, + 1406.0, + 1760.0, + 294.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1758.0, + 1405.0, + 1758.0, + 1405.0, + 1792.0, + 295.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1786.0, + 860.0, + 1786.0, + 860.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 784.0, + 228.0, + 784.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 228.0, + 1007.0, + 228.0, + 1007.0, + 266.0, + 958.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 1103.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 249.0, + 504.0, + 249.0, + 504.0, + 323.0, + 285.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 249.0, + 731.0, + 249.0, + 731.0, + 323.0, + 683.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 249.0, + 1305.0, + 249.0, + 1305.0, + 323.0, + 833.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 249.0, + 1416.0, + 249.0, + 1416.0, + 323.0, + 1370.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 300.0, + 419.0, + 300.0, + 419.0, + 341.0, + 294.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 300.0, + 1293.0, + 300.0, + 1293.0, + 341.0, + 461.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 300.0, + 1405.0, + 300.0, + 1405.0, + 341.0, + 1401.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 336.0, + 582.0, + 336.0, + 582.0, + 378.0, + 292.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 336.0, + 1229.0, + 336.0, + 1229.0, + 378.0, + 696.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 336.0, + 1407.0, + 336.0, + 1407.0, + 378.0, + 1256.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 367.0, + 1406.0, + 367.0, + 1406.0, + 405.0, + 588.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 394.0, + 1000.0, + 394.0, + 1000.0, + 457.0, + 281.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 394.0, + 1248.0, + 394.0, + 1248.0, + 457.0, + 1226.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1834.0, + 1404.0, + 1834.0, + 1404.0, + 1867.0, + 295.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1865.0, + 1403.0, + 1865.0, + 1403.0, + 1896.0, + 294.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1894.0, + 1407.0, + 1894.0, + 1407.0, + 1930.0, + 294.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1925.0, + 442.0, + 1925.0, + 442.0, + 1961.0, + 293.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1925.0, + 870.0, + 1925.0, + 870.0, + 1961.0, + 472.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 518.0, + 964.0, + 518.0, + 964.0, + 556.0, + 292.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 518.0, + 1130.0, + 518.0, + 1130.0, + 556.0, + 992.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 518.0, + 1375.0, + 518.0, + 1375.0, + 556.0, + 1150.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 518.0, + 1405.0, + 518.0, + 1405.0, + 556.0, + 1401.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 551.0, + 389.0, + 551.0, + 389.0, + 596.0, + 288.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 551.0, + 633.0, + 551.0, + 633.0, + 596.0, + 561.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 551.0, + 705.0, + 551.0, + 705.0, + 596.0, + 650.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 551.0, + 767.0, + 551.0, + 767.0, + 596.0, + 739.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 551.0, + 858.0, + 551.0, + 858.0, + 596.0, + 805.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 551.0, + 1032.0, + 551.0, + 1032.0, + 596.0, + 979.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 551.0, + 1238.0, + 551.0, + 1238.0, + 596.0, + 1189.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 551.0, + 1406.0, + 551.0, + 1406.0, + 596.0, + 1401.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 591.0, + 651.0, + 591.0, + 651.0, + 630.0, + 294.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 591.0, + 1108.0, + 591.0, + 1108.0, + 630.0, + 679.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 591.0, + 1406.0, + 591.0, + 1406.0, + 630.0, + 1134.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 624.0, + 483.0, + 624.0, + 483.0, + 662.0, + 432.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 624.0, + 741.0, + 624.0, + 741.0, + 662.0, + 645.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 624.0, + 1111.0, + 624.0, + 1111.0, + 662.0, + 821.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 624.0, + 1138.0, + 624.0, + 1138.0, + 662.0, + 1128.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 802.0, + 437.0, + 802.0, + 437.0, + 842.0, + 292.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 802.0, + 660.0, + 802.0, + 660.0, + 842.0, + 454.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 802.0, + 896.0, + 802.0, + 896.0, + 842.0, + 833.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 802.0, + 1228.0, + 802.0, + 1228.0, + 842.0, + 913.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 802.0, + 1318.0, + 802.0, + 1318.0, + 842.0, + 1289.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 802.0, + 1407.0, + 802.0, + 1407.0, + 842.0, + 1356.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 831.0, + 1409.0, + 831.0, + 1409.0, + 870.0, + 292.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 865.0, + 1407.0, + 865.0, + 1407.0, + 901.0, + 293.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 897.0, + 1238.0, + 897.0, + 1238.0, + 929.0, + 378.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1310.0, + 1406.0, + 1310.0, + 1406.0, + 1348.0, + 292.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1344.0, + 490.0, + 1344.0, + 490.0, + 1377.0, + 295.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1344.0, + 1090.0, + 1344.0, + 1090.0, + 1377.0, + 510.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1344.0, + 1405.0, + 1344.0, + 1405.0, + 1377.0, + 1148.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 1407.0, + 1375.0, + 1407.0, + 1409.0, + 293.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1404.0, + 1410.0, + 1404.0, + 1410.0, + 1442.0, + 293.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1117.0, + 369.0, + 1117.0, + 369.0, + 1184.0, + 287.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1117.0, + 1070.0, + 1117.0, + 1070.0, + 1184.0, + 1062.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1117.0, + 1415.0, + 1117.0, + 1415.0, + 1184.0, + 1124.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1177.0, + 502.0, + 1177.0, + 502.0, + 1219.0, + 294.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1177.0, + 1013.0, + 1177.0, + 1013.0, + 1219.0, + 538.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1177.0, + 1102.0, + 1177.0, + 1102.0, + 1219.0, + 1090.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 929.0, + 588.0, + 929.0, + 588.0, + 969.0, + 294.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 929.0, + 717.0, + 929.0, + 717.0, + 969.0, + 667.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 929.0, + 1036.0, + 929.0, + 1036.0, + 969.0, + 833.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 929.0, + 1407.0, + 929.0, + 1407.0, + 969.0, + 1188.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 966.0, + 795.0, + 966.0, + 795.0, + 1006.0, + 292.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 966.0, + 876.0, + 966.0, + 876.0, + 1006.0, + 822.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 966.0, + 1405.0, + 966.0, + 1405.0, + 1006.0, + 1032.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1003.0, + 619.0, + 1003.0, + 619.0, + 1043.0, + 294.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1003.0, + 996.0, + 1003.0, + 996.0, + 1043.0, + 645.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1003.0, + 1176.0, + 1003.0, + 1176.0, + 1043.0, + 1165.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 450.0, + 935.0, + 450.0, + 935.0, + 491.0, + 293.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 450.0, + 1094.0, + 450.0, + 1094.0, + 491.0, + 963.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 450.0, + 1405.0, + 450.0, + 1405.0, + 491.0, + 1114.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 486.0, + 1062.0, + 486.0, + 1062.0, + 518.0, + 297.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 486.0, + 1152.0, + 486.0, + 1152.0, + 518.0, + 1143.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1968.0, + 1402.0, + 1968.0, + 1402.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1999.0, + 877.0, + 1999.0, + 877.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1999.0, + 1053.0, + 1999.0, + 1053.0, + 2039.0, + 1041.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1245.0, + 1151.0, + 1245.0, + 1151.0, + 1284.0, + 295.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 736.0, + 1283.0, + 736.0, + 1283.0, + 776.0, + 294.0, + 776.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1053, + 1406, + 1053, + 1406, + 1361, + 297, + 1361 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1446, + 1405, + 1446, + 1405, + 1569, + 299, + 1569 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 373, + 228, + 929, + 228, + 929, + 497, + 373, + 497 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 1033, + 505, + 1403, + 505, + 1403, + 720, + 1033, + 720 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 532, + 1007, + 532, + 1007, + 719, + 296, + 719 + ], + "score": 0.964 + }, + { + "category_id": 3, + "poly": [ + 1075, + 230, + 1358, + 230, + 1358, + 470, + 1075, + 470 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 301, + 962, + 1403, + 962, + 1403, + 1026, + 301, + 1026 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 805, + 1401, + 805, + 1401, + 871, + 295, + 871 + ], + "score": 0.941 + }, + { + "category_id": 8, + "poly": [ + 678, + 888, + 1018, + 888, + 1018, + 929, + 678, + 929 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 302, + 1396, + 1140, + 1396, + 1140, + 1426, + 302, + 1426 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 894, + 1399, + 894, + 1399, + 923, + 1366, + 923 + ], + "score": 0.878 + }, + { + "category_id": 1, + "poly": [ + 296, + 1966, + 1404, + 1966, + 1404, + 2037, + 296, + 2037 + ], + "score": 0.78 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.768 + }, + { + "category_id": 5, + "poly": [ + 306, + 1657, + 1341, + 1657, + 1341, + 1925, + 306, + 1925 + ], + "score": 0.738, + "html": "
configuration of GEP C; loss function l;1: Input: private dataset D; auxiliary dataset D(@); number of updates T; learning rate n;
2: Output: Differentially private model 0T.
3: fort=OtoT-1do
4:Compute the private gradients Gt and anchor gradients G(@) of loss with respect to 0t.
5: and configuration C to get Ut.
6: 7: end forUpdate model 0t+1 = 0t - nUt.
" + }, + { + "category_id": 6, + "poly": [ + 297, + 1616, + 998, + 1616, + 998, + 1650, + 297, + 1650 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 306, + 1657, + 1341, + 1657, + 1341, + 1925, + 306, + 1925 + ], + "score": 0.384 + }, + { + "category_id": 0, + "poly": [ + 297, + 1616, + 998, + 1616, + 998, + 1650, + 297, + 1650 + ], + "score": 0.128 + }, + { + "category_id": 13, + "poly": [ + 373, + 1999, + 631, + 1999, + 631, + 2038, + 373, + 2038 + ], + "score": 0.93, + "latex": "\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 991, + 1779, + 1048, + 1779, + 1048, + 1820, + 991, + 1820 + ], + "score": 0.93, + "latex": "G _ { t } ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 479, + 805, + 642, + 805, + 642, + 841, + 479, + 841 + ], + "score": 0.92, + "latex": "\\tilde { \\mathbf { u } } : = \\tilde { \\mathbf { w } } ^ { T } \\mathbf { B } / n" + }, + { + "category_id": 13, + "poly": [ + 776, + 1967, + 886, + 1967, + 886, + 2001, + 776, + 2001 + ], + "score": 0.92, + "latex": "\\delta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 541, + 1818, + 645, + 1818, + 645, + 1858, + 541, + 1858 + ], + "score": 0.92, + "latex": "G _ { t } , G _ { t } ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 535, + 1858, + 728, + 1858, + 728, + 1888, + 535, + 1888 + ], + "score": 0.91, + "latex": "\\pmb { \\theta } _ { t + 1 } = \\pmb { \\theta } _ { t } - \\eta \\tilde { \\pmb { v } } _ { t }" + }, + { + "category_id": 14, + "poly": [ + 676, + 889, + 1022, + 889, + 1022, + 927, + 676, + 927 + ], + "score": 0.91, + "latex": "\\mathbb { E } [ \\tilde { \\pmb { u } } ] = \\pmb { g } - \\pmb { r } / n , \\quad \\mathbb { E } [ \\tilde { \\pmb { v } } ] = \\pmb { g } ." + }, + { + "category_id": 13, + "poly": [ + 696, + 532, + 850, + 532, + 850, + 573, + 696, + 573 + ], + "score": 0.91, + "latex": "( \\left\\| { \\frac { 1 } { n } } \\pmb { r } \\right\\| / \\left\\| \\pmb { g } \\right\\| )" + }, + { + "category_id": 13, + "poly": [ + 374, + 963, + 513, + 963, + 513, + 999, + 374, + 999 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { { \\pmb r } = \\sum _ { i } { \\pmb R } _ { i } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 953, + 965, + 1018, + 965, + 1018, + 995, + 953, + 995 + ], + "score": 0.9, + "latex": "\\tilde { \\pmb { w } } , \\pmb { B }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1967, + 723, + 1967, + 723, + 2001, + 557, + 2001 + ], + "score": 0.9, + "latex": "\\epsilon < 2 \\log ( 1 / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 1222, + 689, + 1333, + 689, + 1333, + 719, + 1222, + 719 + ], + "score": 0.9, + "latex": "k = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 712, + 1787, + 749, + 1787, + 749, + 1817, + 712, + 1817 + ], + "score": 0.89, + "latex": "G _ { t }" + }, + { + "category_id": 13, + "poly": [ + 385, + 1754, + 450, + 1754, + 450, + 1781, + 385, + 1781 + ], + "score": 0.89, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 818, + 1658, + 871, + 1658, + 871, + 1689, + 818, + 1689 + ], + "score": 0.89, + "latex": "\\mathbb { D } ^ { ( a ) }" + }, + { + "category_id": 13, + "poly": [ + 764, + 1724, + 800, + 1724, + 800, + 1753, + 764, + 1753 + ], + "score": 0.88, + "latex": "\\pmb { \\theta } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 946, + 1826, + 975, + 1826, + 975, + 1856, + 946, + 1856 + ], + "score": 0.88, + "latex": "\\tilde { \\mathbf { v } } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1787, + 1331, + 1787, + 1331, + 1818, + 1303, + 1818 + ], + "score": 0.86, + "latex": "\\theta _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1273, + 1967, + 1333, + 1967, + 1333, + 2001, + 1273, + 2001 + ], + "score": 0.86, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 483, + 1753, + 555, + 1753, + 555, + 1782, + 483, + 1782 + ], + "score": 0.83, + "latex": "T - 1" + }, + { + "category_id": 13, + "poly": [ + 347, + 1331, + 365, + 1331, + 365, + 1355, + 347, + 1355 + ], + "score": 0.82, + "latex": "\\tilde { v }" + }, + { + "category_id": 13, + "poly": [ + 672, + 1333, + 693, + 1333, + 693, + 1361, + 672, + 1361 + ], + "score": 0.81, + "latex": "\\textbf { { g } }" + }, + { + "category_id": 13, + "poly": [ + 957, + 1057, + 980, + 1057, + 980, + 1082, + 957, + 1082 + ], + "score": 0.81, + "latex": "\\tilde { \\mathbf { \\pmb { u } } }" + }, + { + "category_id": 13, + "poly": [ + 594, + 1663, + 617, + 1663, + 617, + 1689, + 594, + 1689 + ], + "score": 0.81, + "latex": "\\mathbb { D }" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1209, + 1239, + 1209, + 1239, + 1235, + 1220, + 1235 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 860, + 689, + 879, + 689, + 879, + 715, + 860, + 715 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1148, + 1028, + 1148, + 1028, + 1175, + 1005, + 1175 + ], + "score": 0.8, + "latex": "\\tilde { \\mathbf { \\pmb { u } } }" + }, + { + "category_id": 13, + "poly": [ + 579, + 689, + 598, + 689, + 598, + 715, + 579, + 715 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 661, + 598, + 679, + 598, + 679, + 624, + 661, + 624 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1060, + 1232, + 1060, + 1232, + 1086, + 1212, + 1086 + ], + "score": 0.79, + "latex": "\\textbf { { g } }" + }, + { + "category_id": 13, + "poly": [ + 506, + 1057, + 528, + 1057, + 528, + 1082, + 506, + 1082 + ], + "score": 0.78, + "latex": "\\tilde { \\mathbf { \\pmb { u } } }" + }, + { + "category_id": 13, + "poly": [ + 772, + 1693, + 787, + 1693, + 787, + 1719, + 772, + 1719 + ], + "score": 0.78, + "latex": "\\ell" + }, + { + "category_id": 13, + "poly": [ + 851, + 1826, + 875, + 1826, + 875, + 1854, + 851, + 1854 + ], + "score": 0.75, + "latex": "\\mathbb { C }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 1663, + 1119, + 1663, + 1119, + 1689, + 1096, + 1689 + ], + "score": 0.72, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 588, + 1693, + 611, + 1693, + 611, + 1720, + 588, + 1720 + ], + "score": 0.66, + "latex": "\\mathbb { C }" + }, + { + "category_id": 13, + "poly": [ + 1382, + 810, + 1400, + 810, + 1400, + 835, + 1382, + 835 + ], + "score": 0.6, + "latex": "\\tilde { v }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1669, + 1295, + 1669, + 1295, + 1694, + 1277, + 1694 + ], + "score": 0.57, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1148, + 1339, + 1148, + 1339, + 1174, + 1319, + 1174 + ], + "score": 0.39, + "latex": "B" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 229.0, + 854.0, + 229.0, + 854.0, + 254.0, + 752.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 230.0, + 609.0, + 230.0, + 609.0, + 254.0, + 475.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 239.0, + 423.0, + 239.0, + 423.0, + 415.0, + 385.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 255.0, + 397.0, + 255.0, + 397.0, + 454.0, + 371.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 261.0, + 530.0, + 261.0, + 530.0, + 284.0, + 465.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 280.0, + 538.0, + 280.0, + 538.0, + 305.0, + 463.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 301.0, + 539.0, + 301.0, + 539.0, + 326.0, + 464.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 383.0, + 907.0, + 383.0, + 907.0, + 405.0, + 842.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 408.0, + 418.0, + 408.0, + 418.0, + 437.0, + 400.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 403.0, + 916.0, + 403.0, + 916.0, + 446.0, + 840.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 447.0, + 417.0, + 447.0, + 417.0, + 463.0, + 402.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 460.0, + 439.0, + 460.0, + 439.0, + 477.0, + 423.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 455.0, + 521.0, + 455.0, + 521.0, + 481.0, + 489.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 457.0, + 595.0, + 457.0, + 595.0, + 480.0, + 566.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 457.0, + 670.0, + 457.0, + 670.0, + 480.0, + 641.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 460.0, + 700.0, + 460.0, + 700.0, + 477.0, + 684.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 455.0, + 783.0, + 455.0, + 783.0, + 481.0, + 750.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 456.0, + 856.0, + 456.0, + 856.0, + 480.0, + 827.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 457.0, + 931.0, + 457.0, + 931.0, + 480.0, + 902.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 473.0, + 608.0, + 473.0, + 608.0, + 501.0, + 474.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 473.0, + 870.0, + 473.0, + 870.0, + 501.0, + 737.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 392.5, + 802.0, + 392.5, + 802.0, + 418.5, + 742.0, + 418.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.75, + 399.5, + 752.75, + 399.5, + 752.75, + 427.5, + 693.75, + 427.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 505.0, + 1404.0, + 505.0, + 1404.0, + 540.0, + 1033.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 538.0, + 1404.0, + 538.0, + 1404.0, + 569.0, + 1032.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 599.0, + 1031.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 601.0, + 1404.0, + 601.0, + 1404.0, + 629.0, + 1032.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 625.0, + 1405.0, + 625.0, + 1405.0, + 663.0, + 1030.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 657.0, + 1407.0, + 657.0, + 1407.0, + 689.0, + 1031.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 689.0, + 1221.0, + 689.0, + 1221.0, + 722.0, + 1032.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 689.0, + 1344.0, + 689.0, + 1344.0, + 722.0, + 1334.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 532.0, + 695.0, + 532.0, + 695.0, + 573.0, + 294.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 532.0, + 1010.0, + 532.0, + 1010.0, + 573.0, + 851.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 566.0, + 1008.0, + 566.0, + 1008.0, + 599.0, + 294.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 596.0, + 660.0, + 596.0, + 660.0, + 629.0, + 296.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 596.0, + 1007.0, + 596.0, + 1007.0, + 629.0, + 680.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 626.0, + 1008.0, + 626.0, + 1008.0, + 660.0, + 295.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 656.0, + 1012.0, + 656.0, + 1012.0, + 690.0, + 294.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 684.0, + 578.0, + 684.0, + 578.0, + 722.0, + 293.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 684.0, + 859.0, + 684.0, + 859.0, + 722.0, + 599.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 684.0, + 984.0, + 684.0, + 984.0, + 722.0, + 880.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 258.0, + 1139.0, + 258.0, + 1139.0, + 267.0, + 1131.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 270.0, + 1125.0, + 270.0, + 1125.0, + 291.0, + 1090.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 289.0, + 1152.0, + 289.0, + 1152.0, + 307.0, + 1137.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 291.0, + 1274.0, + 291.0, + 1274.0, + 300.0, + 1265.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 293.0, + 1097.0, + 293.0, + 1097.0, + 375.0, + 1074.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 309.0, + 1158.0, + 309.0, + 1158.0, + 321.0, + 1146.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 319.0, + 1124.0, + 319.0, + 1124.0, + 340.0, + 1090.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 321.0, + 1191.0, + 321.0, + 1191.0, + 328.0, + 1183.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 314.0, + 1340.0, + 314.0, + 1340.0, + 334.0, + 1201.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 337.0, + 1192.0, + 337.0, + 1192.0, + 348.0, + 1178.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 331.0, + 1339.0, + 331.0, + 1339.0, + 355.0, + 1202.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 368.0, + 1126.0, + 368.0, + 1126.0, + 390.0, + 1098.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 402.0, + 1344.0, + 402.0, + 1344.0, + 418.0, + 1271.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 417.0, + 1153.0, + 417.0, + 1153.0, + 430.0, + 1129.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 419.0, + 1125.0, + 419.0, + 1125.0, + 437.0, + 1108.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 435.0, + 1143.0, + 435.0, + 1143.0, + 453.0, + 1127.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 432.0, + 1202.0, + 432.0, + 1202.0, + 455.0, + 1175.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 432.0, + 1254.0, + 432.0, + 1254.0, + 454.0, + 1226.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 432.0, + 1306.0, + 432.0, + 1306.0, + 455.0, + 1279.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 431.0, + 1363.0, + 431.0, + 1363.0, + 455.0, + 1326.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 447.0, + 1296.0, + 447.0, + 1296.0, + 472.0, + 1177.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.75, + 258.0, + 1174.75, + 258.0, + 1174.75, + 270.5, + 1155.75, + 270.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1395.0, + 1144.0, + 1395.0, + 1144.0, + 1429.0, + 295.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 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, + 1613.0, + 1003.0, + 1613.0, + 1003.0, + 1656.0, + 295.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1613.0, + 1003.0, + 1613.0, + 1003.0, + 1656.0, + 295.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1055.0, + 505.0, + 1055.0, + 505.0, + 1087.0, + 296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1055.0, + 956.0, + 1055.0, + 956.0, + 1087.0, + 529.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1055.0, + 1211.0, + 1055.0, + 1211.0, + 1087.0, + 981.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1055.0, + 1404.0, + 1055.0, + 1404.0, + 1087.0, + 1233.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1086.0, + 1404.0, + 1086.0, + 1404.0, + 1122.0, + 295.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1114.0, + 1406.0, + 1114.0, + 1406.0, + 1152.0, + 294.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1146.0, + 1004.0, + 1146.0, + 1004.0, + 1180.0, + 294.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1146.0, + 1318.0, + 1146.0, + 1318.0, + 1180.0, + 1029.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1146.0, + 1406.0, + 1146.0, + 1406.0, + 1180.0, + 1340.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1174.0, + 1408.0, + 1174.0, + 1408.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1206.0, + 1219.0, + 1206.0, + 1219.0, + 1243.0, + 292.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1206.0, + 1407.0, + 1206.0, + 1407.0, + 1243.0, + 1240.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 1408.0, + 1235.0, + 1408.0, + 1273.0, + 294.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1268.0, + 1406.0, + 1268.0, + 1406.0, + 1304.0, + 295.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1299.0, + 1406.0, + 1299.0, + 1406.0, + 1333.0, + 292.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1326.0, + 346.0, + 1326.0, + 346.0, + 1366.0, + 292.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1326.0, + 671.0, + 1326.0, + 671.0, + 1366.0, + 366.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1326.0, + 1268.0, + 1326.0, + 1268.0, + 1366.0, + 694.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1447.0, + 1409.0, + 1447.0, + 1409.0, + 1483.0, + 294.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1477.0, + 1406.0, + 1477.0, + 1406.0, + 1513.0, + 293.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1507.0, + 1405.0, + 1507.0, + 1405.0, + 1546.0, + 293.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1540.0, + 715.0, + 1540.0, + 715.0, + 1570.0, + 295.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 959.0, + 373.0, + 959.0, + 373.0, + 999.0, + 296.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 959.0, + 952.0, + 959.0, + 952.0, + 999.0, + 514.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 959.0, + 1404.0, + 959.0, + 1404.0, + 999.0, + 1019.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 994.0, + 802.0, + 994.0, + 802.0, + 1029.0, + 295.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 804.0, + 478.0, + 804.0, + 478.0, + 844.0, + 295.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 804.0, + 1381.0, + 804.0, + 1381.0, + 844.0, + 643.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 804.0, + 1406.0, + 804.0, + 1406.0, + 844.0, + 1401.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 838.0, + 1106.0, + 838.0, + 1106.0, + 874.0, + 295.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1961.0, + 556.0, + 1961.0, + 556.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1961.0, + 775.0, + 1961.0, + 775.0, + 2006.0, + 724.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1961.0, + 1272.0, + 1961.0, + 1272.0, + 2006.0, + 887.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1961.0, + 1409.0, + 1961.0, + 1409.0, + 2006.0, + 1334.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1997.0, + 372.0, + 1997.0, + 372.0, + 2036.0, + 296.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1997.0, + 639.0, + 1997.0, + 639.0, + 2036.0, + 632.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1653.0, + 593.0, + 1653.0, + 593.0, + 1702.0, + 305.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1653.0, + 817.0, + 1653.0, + 817.0, + 1702.0, + 618.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1653.0, + 1095.0, + 1653.0, + 1095.0, + 1702.0, + 872.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1653.0, + 1276.0, + 1653.0, + 1276.0, + 1702.0, + 1120.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 1653.0, + 1309.0, + 1653.0, + 1309.0, + 1702.0, + 1296.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1690.0, + 587.0, + 1690.0, + 587.0, + 1725.0, + 341.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1690.0, + 771.0, + 1690.0, + 771.0, + 1725.0, + 612.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 1690.0, + 801.0, + 1690.0, + 801.0, + 1725.0, + 788.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1720.0, + 763.0, + 1720.0, + 763.0, + 1758.0, + 310.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1720.0, + 812.0, + 1720.0, + 812.0, + 1758.0, + 801.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1751.0, + 384.0, + 1751.0, + 384.0, + 1783.0, + 309.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1751.0, + 482.0, + 1751.0, + 482.0, + 1783.0, + 451.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1751.0, + 595.0, + 1751.0, + 595.0, + 1783.0, + 556.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1788.0, + 338.0, + 1788.0, + 338.0, + 1819.0, + 309.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1774.0, + 711.0, + 1774.0, + 711.0, + 1830.0, + 359.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1774.0, + 990.0, + 1774.0, + 990.0, + 1830.0, + 750.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1774.0, + 1302.0, + 1774.0, + 1302.0, + 1830.0, + 1049.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1774.0, + 1352.0, + 1774.0, + 1352.0, + 1830.0, + 1332.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1824.0, + 340.0, + 1824.0, + 340.0, + 1858.0, + 307.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1814.0, + 540.0, + 1814.0, + 540.0, + 1870.0, + 359.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1814.0, + 850.0, + 1814.0, + 850.0, + 1870.0, + 646.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1814.0, + 945.0, + 1814.0, + 945.0, + 1870.0, + 876.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1814.0, + 984.0, + 1814.0, + 984.0, + 1870.0, + 976.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1858.0, + 339.0, + 1858.0, + 339.0, + 1886.0, + 307.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1853.0, + 534.0, + 1853.0, + 534.0, + 1890.0, + 369.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1853.0, + 740.0, + 1853.0, + 740.0, + 1890.0, + 729.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1883.0, + 438.0, + 1883.0, + 438.0, + 1920.0, + 336.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1889.0, + 341.0, + 1889.0, + 341.0, + 1916.0, + 309.0, + 1916.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 599, + 1405, + 599, + 1405, + 915, + 297, + 915 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 996, + 1405, + 996, + 1405, + 1211, + 297, + 1211 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1563, + 1404, + 1563, + 1404, + 1844, + 298, + 1844 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1226, + 1404, + 1226, + 1404, + 1379, + 298, + 1379 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1394, + 1405, + 1394, + 1405, + 1549, + 298, + 1549 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1405, + 228, + 1405, + 384, + 297, + 384 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 390, + 1405, + 390, + 1405, + 576, + 298, + 576 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1859, + 1403, + 1859, + 1403, + 1983, + 299, + 1983 + ], + "score": 0.97 + }, + { + "category_id": 2, + "poly": [ + 323, + 2006, + 1202, + 2006, + 1202, + 2033, + 323, + 2033 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 299, + 944, + 558, + 944, + 558, + 979, + 299, + 979 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2111, + 840, + 2111 + ], + "score": 0.8 + }, + { + "category_id": 13, + "poly": [ + 297, + 476, + 661, + 476, + 661, + 548, + 297, + 548 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 617, + 696, + 870, + 696, + 870, + 735, + 617, + 735 + ], + "score": 0.94, + "latex": "\\mathcal { O } ( \\sqrt { k \\log ( 1 / \\delta ) } / ( n \\epsilon ) )" + }, + { + "category_id": 13, + "poly": [ + 868, + 631, + 1120, + 631, + 1120, + 669, + 868, + 669 + ], + "score": 0.93, + "latex": "\\mathcal { O } ( \\sqrt { p \\log ( 1 / \\delta ) } / ( n \\epsilon ) )" + }, + { + "category_id": 13, + "poly": [ + 529, + 791, + 701, + 791, + 701, + 825, + 529, + 825 + ], + "score": 0.92, + "latex": "\\operatorname { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|" + }, + { + "category_id": 13, + "poly": [ + 674, + 390, + 1049, + 390, + 1049, + 432, + 674, + 432 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 747, + 488, + 932, + 488, + 932, + 531, + 747, + 531 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\bar { r } = \\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 758, + 432, + 961, + 432, + 961, + 473, + 758, + 473 + ], + "score": 0.92, + "latex": "\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 442, + 433, + 539, + 433, + 539, + 476, + 442, + 476 + ], + "score": 0.92, + "latex": "\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 984, + 494, + 1217, + 494, + 1217, + 529, + 984, + 529 + ], + "score": 0.91, + "latex": "r _ { t } = \\operatorname* { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|" + }, + { + "category_id": 13, + "poly": [ + 559, + 431, + 683, + 431, + 683, + 478, + 559, + 478 + ], + "score": 0.91, + "latex": "\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 344, + 1686, + 404, + 1686, + 404, + 1720, + 344, + 1720 + ], + "score": 0.91, + "latex": "1 / S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1342, + 1655, + 1402, + 1655, + 1402, + 1689, + 1342, + 1689 + ], + "score": 0.9, + "latex": "1 / S _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 432, + 1404, + 432, + 1404, + 471, + 1154, + 471 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 903, + 1350, + 968, + 1350, + 968, + 1376, + 903, + 1376 + ], + "score": 0.89, + "latex": "\\epsilon = 2" + }, + { + "category_id": 13, + "poly": [ + 795, + 1626, + 828, + 1626, + 828, + 1656, + 795, + 1656 + ], + "score": 0.89, + "latex": "S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 704, + 1717, + 744, + 1717, + 744, + 1752, + 704, + 1752 + ], + "score": 0.89, + "latex": "\\sqrt { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 701, + 365, + 701, + 365, + 729, + 298, + 729 + ], + "score": 0.88, + "latex": "\\bar { r } = 0" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1595, + 1351, + 1595, + 1351, + 1625, + 1318, + 1625 + ], + "score": 0.88, + "latex": "S _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1721, + 1169, + 1721, + 1169, + 1752, + 1136, + 1752 + ], + "score": 0.88, + "latex": "S _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1219, + 1720, + 1251, + 1720, + 1251, + 1752, + 1219, + 1752 + ], + "score": 0.87, + "latex": "S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 398, + 1349, + 473, + 1349, + 473, + 1378, + 398, + 1378 + ], + "score": 0.85, + "latex": "9 4 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 663, + 1180, + 738, + 1180, + 738, + 1209, + 663, + 1209 + ], + "score": 0.84, + "latex": "9 0 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 530, + 1180, + 606, + 1180, + 606, + 1209, + 530, + 1209 + ], + "score": 0.83, + "latex": "9 5 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 445, + 1180, + 520, + 1180, + 520, + 1209, + 445, + 1209 + ], + "score": 0.82, + "latex": "9 9 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 843, + 668, + 861, + 668, + 861, + 693, + 843, + 693 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1376, + 394, + 1396, + 394, + 1396, + 426, + 1376, + 426 + ], + "score": 0.81, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1787, + 1338, + 1787, + 1338, + 1809, + 1318, + 1809 + ], + "score": 0.76, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1284, + 1463, + 1300, + 1463, + 1300, + 1484, + 1284, + 1484 + ], + "score": 0.73, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 349, + 604, + 367, + 604, + 367, + 628, + 349, + 628 + ], + "score": 0.72, + "latex": "\\bar { r }" + }, + { + "category_id": 13, + "poly": [ + 297, + 736, + 315, + 736, + 315, + 762, + 297, + 762 + ], + "score": 0.68, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1085, + 395, + 1102, + 395, + 1102, + 422, + 1085, + 422 + ], + "score": 0.52, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 603, + 549, + 615, + 549, + 615, + 571, + 603, + 571 + ], + "score": 0.44, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 557, + 884, + 639, + 884, + 639, + 913, + 557, + 913 + ], + "score": 0.42, + "latex": "3 . 3 / 3 . 2" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 2000.0, + 1204.0, + 2000.0, + 1204.0, + 2040.0, + 330.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 939.0, + 561.0, + 939.0, + 561.0, + 985.0, + 291.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.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": [ + 295.0, + 600.0, + 348.0, + 600.0, + 348.0, + 636.0, + 295.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 600.0, + 1406.0, + 600.0, + 1406.0, + 636.0, + 368.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 633.0, + 867.0, + 633.0, + 867.0, + 674.0, + 294.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 633.0, + 1406.0, + 633.0, + 1406.0, + 674.0, + 1121.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 662.0, + 842.0, + 662.0, + 842.0, + 704.0, + 294.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 662.0, + 1408.0, + 662.0, + 1408.0, + 704.0, + 862.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 695.0, + 297.0, + 695.0, + 297.0, + 739.0, + 291.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 695.0, + 616.0, + 695.0, + 616.0, + 739.0, + 366.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 695.0, + 1407.0, + 695.0, + 1407.0, + 739.0, + 871.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 728.0, + 296.0, + 728.0, + 296.0, + 769.0, + 292.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 728.0, + 1407.0, + 728.0, + 1407.0, + 769.0, + 316.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 761.0, + 1406.0, + 761.0, + 1406.0, + 797.0, + 292.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 790.0, + 528.0, + 790.0, + 528.0, + 828.0, + 292.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 790.0, + 1408.0, + 790.0, + 1408.0, + 828.0, + 702.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 1405.0, + 821.0, + 1405.0, + 860.0, + 294.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 894.0, + 291.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 883.0, + 556.0, + 883.0, + 556.0, + 917.0, + 294.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 883.0, + 1350.0, + 883.0, + 1350.0, + 917.0, + 640.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 994.0, + 1406.0, + 994.0, + 1406.0, + 1033.0, + 292.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1022.0, + 1406.0, + 1022.0, + 1406.0, + 1064.0, + 291.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 1406.0, + 1057.0, + 1406.0, + 1091.0, + 294.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 1407.0, + 1089.0, + 1407.0, + 1123.0, + 294.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1115.0, + 1406.0, + 1115.0, + 1406.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1150.0, + 1405.0, + 1150.0, + 1405.0, + 1185.0, + 295.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1177.0, + 444.0, + 1177.0, + 444.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1177.0, + 529.0, + 1177.0, + 529.0, + 1216.0, + 521.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1177.0, + 662.0, + 1177.0, + 662.0, + 1216.0, + 607.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 1177.0, + 893.0, + 1177.0, + 893.0, + 1216.0, + 739.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1563.0, + 1408.0, + 1563.0, + 1408.0, + 1599.0, + 295.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 1317.0, + 1591.0, + 1317.0, + 1631.0, + 293.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1591.0, + 1406.0, + 1591.0, + 1406.0, + 1631.0, + 1352.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 794.0, + 1623.0, + 794.0, + 1662.0, + 293.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1623.0, + 1407.0, + 1623.0, + 1407.0, + 1662.0, + 829.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 1341.0, + 1655.0, + 1341.0, + 1692.0, + 294.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1686.0, + 343.0, + 1686.0, + 343.0, + 1723.0, + 294.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1686.0, + 1406.0, + 1686.0, + 1406.0, + 1723.0, + 405.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1717.0, + 703.0, + 1717.0, + 703.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1717.0, + 1135.0, + 1717.0, + 1135.0, + 1758.0, + 745.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1717.0, + 1218.0, + 1717.0, + 1218.0, + 1758.0, + 1170.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1717.0, + 1407.0, + 1717.0, + 1407.0, + 1758.0, + 1252.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1751.0, + 1406.0, + 1751.0, + 1406.0, + 1788.0, + 293.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1782.0, + 1317.0, + 1782.0, + 1317.0, + 1819.0, + 293.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1782.0, + 1408.0, + 1782.0, + 1408.0, + 1819.0, + 1339.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1811.0, + 1268.0, + 1811.0, + 1268.0, + 1852.0, + 292.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1227.0, + 1405.0, + 1227.0, + 1405.0, + 1260.0, + 297.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1254.0, + 1406.0, + 1254.0, + 1406.0, + 1295.0, + 293.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1285.0, + 1409.0, + 1285.0, + 1409.0, + 1324.0, + 291.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 1405.0, + 1317.0, + 1405.0, + 1353.0, + 293.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1349.0, + 397.0, + 1349.0, + 397.0, + 1382.0, + 296.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1349.0, + 902.0, + 1349.0, + 902.0, + 1382.0, + 474.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1349.0, + 978.0, + 1349.0, + 978.0, + 1382.0, + 969.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1394.0, + 1408.0, + 1394.0, + 1408.0, + 1432.0, + 295.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1424.0, + 1403.0, + 1424.0, + 1403.0, + 1461.0, + 295.0, + 1461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1456.0, + 1283.0, + 1456.0, + 1283.0, + 1493.0, + 293.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1456.0, + 1406.0, + 1456.0, + 1406.0, + 1493.0, + 1301.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1483.0, + 1408.0, + 1483.0, + 1408.0, + 1525.0, + 292.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1514.0, + 875.0, + 1514.0, + 875.0, + 1557.0, + 292.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1408.0, + 261.0, + 1408.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 290.0, + 1406.0, + 290.0, + 1406.0, + 327.0, + 295.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 319.0, + 1407.0, + 319.0, + 1407.0, + 361.0, + 294.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 354.0, + 739.0, + 354.0, + 739.0, + 387.0, + 296.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 387.0, + 673.0, + 387.0, + 673.0, + 436.0, + 293.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 387.0, + 1084.0, + 387.0, + 1084.0, + 436.0, + 1050.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 387.0, + 1375.0, + 387.0, + 1375.0, + 436.0, + 1103.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 387.0, + 1410.0, + 387.0, + 1410.0, + 436.0, + 1397.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 428.0, + 441.0, + 428.0, + 441.0, + 477.0, + 292.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 428.0, + 558.0, + 428.0, + 558.0, + 477.0, + 540.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 427.0, + 688.0, + 427.0, + 688.0, + 457.0, + 684.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 428.0, + 757.0, + 428.0, + 757.0, + 477.0, + 693.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 428.0, + 1153.0, + 428.0, + 1153.0, + 477.0, + 962.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 478.0, + 746.0, + 478.0, + 746.0, + 540.0, + 662.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 478.0, + 983.0, + 478.0, + 983.0, + 540.0, + 933.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 478.0, + 1412.0, + 478.0, + 1412.0, + 540.0, + 1218.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 542.0, + 602.0, + 542.0, + 602.0, + 579.0, + 296.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 542.0, + 625.0, + 542.0, + 625.0, + 579.0, + 616.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.25, + 432.0, + 908.25, + 432.0, + 908.25, + 446.5, + 885.25, + 446.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.25, + 446.5, + 701.25, + 446.5, + 701.25, + 478.5, + 637.25, + 478.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1860.0, + 1405.0, + 1860.0, + 1405.0, + 1893.0, + 295.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1888.0, + 1405.0, + 1888.0, + 1405.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1921.0, + 1407.0, + 1921.0, + 1407.0, + 1956.0, + 293.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1951.0, + 1408.0, + 1951.0, + 1408.0, + 1987.0, + 293.0, + 1987.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1210, + 1405, + 1210, + 1405, + 1546, + 298, + 1546 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1403, + 1911, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1562, + 1403, + 1562, + 1403, + 1685, + 299, + 1685 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 431, + 315, + 1267, + 315, + 1267, + 701, + 431, + 701 + ], + "score": 0.975, + "html": "
Dataset Algorithme=2Ae=5Ae=8A
GPPATEMNISTB-GEPGEP94.7+0.096.8+0.097.2+0.0
PATE98.5+3.898.5+1.798.6+1.4
B-GEP93.1-1.694.5-2.395.9-1.3
96.3+1.697.9+1.198.4+1.2
SVHNGP87.1+0.091.3+0.091.6+0.0
PATE80.7-6.491.6+0.391.6+0.0
B-GEP88.5+1.491.8+0.592.3+0.7
GEP92.3+5.294.7+3.495.1+3.5
CIFAR-10GP43.6+0.052.2+0.056.4+0.0
PATE34.2-9.441.9-10.343.6-12.8
B-GEP50.3+6.759.5+7.363.0+6.6
GEP59.7+16.170.1+17.974.9+18.5
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1700, + 1403, + 1700, + 1403, + 1824, + 298, + 1824 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1103, + 1406, + 1103, + 1406, + 1194, + 298, + 1194 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 435, + 739, + 1261, + 739, + 1261, + 943, + 435, + 943 + ], + "score": 0.957 + }, + { + "category_id": 4, + "poly": [ + 297, + 980, + 1401, + 980, + 1401, + 1043, + 297, + 1043 + ], + "score": 0.933 + }, + { + "category_id": 6, + "poly": [ + 297, + 248, + 1402, + 248, + 1402, + 309, + 297, + 309 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 299, + 1855, + 544, + 1855, + 544, + 1890, + 299, + 1890 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.794 + }, + { + "category_id": 13, + "poly": [ + 576, + 1513, + 684, + 1513, + 684, + 1545, + 576, + 1545 + ], + "score": 0.92, + "latex": "\\mathrm { i } \\times \\mathrm { 1 0 ^ { - 5 } }" + }, + { + "category_id": 13, + "poly": [ + 957, + 1393, + 1065, + 1393, + 1065, + 1423, + 957, + 1423 + ], + "score": 0.92, + "latex": "1 \\times 1 0 ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1514, + 404, + 1514, + 404, + 1545, + 296, + 1545 + ], + "score": 0.91, + "latex": "1 ^ { \\cdot } \\times 1 0 ^ { - 6 }" + }, + { + "category_id": 13, + "poly": [ + 1163, + 1272, + 1256, + 1272, + 1256, + 1301, + 1163, + 1301 + ], + "score": 0.89, + "latex": "3 2 \\times 3 2" + }, + { + "category_id": 13, + "poly": [ + 475, + 1622, + 580, + 1622, + 580, + 1656, + 475, + 1656 + ], + "score": 0.89, + "latex": "( 8 , 1 0 ^ { - 5 } )" + }, + { + "category_id": 13, + "poly": [ + 860, + 1456, + 978, + 1456, + 978, + 1486, + 860, + 1486 + ], + "score": 0.89, + "latex": "\\epsilon = 2 , 5 , 8" + }, + { + "category_id": 13, + "poly": [ + 1269, + 1272, + 1362, + 1272, + 1362, + 1302, + 1269, + 1302 + ], + "score": 0.88, + "latex": "2 8 \\times 2 8" + }, + { + "category_id": 13, + "poly": [ + 872, + 1623, + 946, + 1623, + 946, + 1654, + 872, + 1654 + ], + "score": 0.87, + "latex": "1 8 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1592, + 1210, + 1592, + 1210, + 1623, + 1134, + 1623 + ], + "score": 0.87, + "latex": "7 4 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 877, + 1487, + 994, + 1487, + 994, + 1516, + 877, + 1516 + ], + "score": 0.84, + "latex": "\\epsilon = 2 , 5 , 8" + }, + { + "category_id": 13, + "poly": [ + 355, + 1794, + 374, + 1794, + 374, + 1820, + 355, + 1820 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 816, + 1702, + 835, + 1702, + 835, + 1728, + 816, + 1728 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1383, + 1702, + 1401, + 1702, + 1401, + 1728, + 1383, + 1728 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 953, + 1334, + 971, + 1334, + 971, + 1360, + 953, + 1360 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1763, + 1019, + 1763, + 1019, + 1789, + 1000, + 1789 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1733, + 1401, + 1733, + 1401, + 1759, + 1382, + 1759 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1013, + 1224, + 1013, + 1224, + 1039, + 1205, + 1039 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1733, + 1160, + 1733, + 1160, + 1759, + 1141, + 1759 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 530, + 1013, + 548, + 1013, + 548, + 1039, + 530, + 1039 + ], + "score": 0.78, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1304, + 1229, + 1304, + 1229, + 1331, + 1210, + 1331 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 761, + 1733, + 779, + 1733, + 779, + 1759, + 761, + 1759 + ], + "score": 0.77, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 514, + 1137, + 528, + 1137, + 528, + 1161, + 514, + 1161 + ], + "score": 0.76, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1359, + 1487, + 1376, + 1487, + 1376, + 1513, + 1359, + 1513 + ], + "score": 0.74, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1187, + 556, + 1234, + 556, + 1234, + 573, + 1187, + 573 + ], + "score": 0.72, + "latex": "+ 3 . 5" + }, + { + "category_id": 13, + "poly": [ + 1187, + 323, + 1210, + 323, + 1210, + 342, + 1187, + 342 + ], + "score": 0.72, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1187, + 473, + 1234, + 473, + 1234, + 491, + 1187, + 491 + ], + "score": 0.7, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1187, + 527, + 1234, + 527, + 1234, + 545, + 1187, + 545 + ], + "score": 0.68, + "latex": "+ 0 . 7" + }, + { + "category_id": 13, + "poly": [ + 729, + 1569, + 745, + 1569, + 745, + 1590, + 729, + 1590 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1377, + 251, + 1403, + 251, + 1403, + 277, + 1377, + 277 + ], + "score": 0.64, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1003, + 472, + 1050, + 472, + 1050, + 491, + 1003, + 491 + ], + "score": 0.63, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1003, + 527, + 1049, + 527, + 1049, + 545, + 1003, + 545 + ], + "score": 0.62, + "latex": "+ 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 584, + 252, + 610, + 252, + 610, + 278, + 584, + 278 + ], + "score": 0.61, + "latex": "\\%" + }, + { + "category_id": 13, + "poly": [ + 1187, + 498, + 1234, + 498, + 1234, + 517, + 1187, + 517 + ], + "score": 0.6, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 820, + 322, + 843, + 322, + 843, + 342, + 820, + 342 + ], + "score": 0.6, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1187, + 591, + 1234, + 591, + 1234, + 608, + 1187, + 608 + ], + "score": 0.59, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1003, + 555, + 1050, + 555, + 1050, + 573, + 1003, + 573 + ], + "score": 0.59, + "latex": "+ 3 . 4" + }, + { + "category_id": 13, + "poly": [ + 1003, + 498, + 1049, + 498, + 1049, + 518, + 1003, + 518 + ], + "score": 0.51, + "latex": "+ 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 1003, + 644, + 1049, + 644, + 1049, + 664, + 1003, + 664 + ], + "score": 0.5, + "latex": "+ 7 . 3" + }, + { + "category_id": 13, + "poly": [ + 819, + 472, + 867, + 472, + 867, + 491, + 819, + 491 + ], + "score": 0.5, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 728, + 322, + 787, + 322, + 787, + 343, + 728, + 343 + ], + "score": 0.49, + "latex": "\\epsilon = 2" + }, + { + "category_id": 13, + "poly": [ + 820, + 527, + 866, + 527, + 866, + 546, + 820, + 546 + ], + "score": 0.48, + "latex": "+ 1 . 4" + }, + { + "category_id": 13, + "poly": [ + 1186, + 350, + 1234, + 350, + 1234, + 372, + 1186, + 372 + ], + "score": 0.46, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1003, + 591, + 1050, + 591, + 1050, + 608, + 1003, + 608 + ], + "score": 0.44, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 1004, + 322, + 1026, + 322, + 1026, + 342, + 1004, + 342 + ], + "score": 0.43, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 912, + 323, + 970, + 323, + 970, + 343, + 912, + 343 + ], + "score": 0.42, + "latex": "\\epsilon = 5" + }, + { + "category_id": 13, + "poly": [ + 820, + 591, + 866, + 591, + 866, + 608, + 820, + 608 + ], + "score": 0.42, + "latex": "+ 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 819, + 349, + 867, + 349, + 867, + 372, + 819, + 372 + ], + "score": 0.42, + "latex": "\\overline { { + 0 . 0 } }" + }, + { + "category_id": 13, + "poly": [ + 1045, + 256, + 1060, + 256, + 1060, + 276, + 1045, + 276 + ], + "score": 0.4, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 819, + 432, + 867, + 432, + 867, + 455, + 819, + 455 + ], + "score": 0.35, + "latex": "\\overline { { + 1 . 6 } }" + }, + { + "category_id": 13, + "poly": [ + 1187, + 377, + 1234, + 377, + 1234, + 400, + 1187, + 400 + ], + "score": 0.33, + "latex": "\\overline { { + 1 . 4 } }" + }, + { + "category_id": 13, + "poly": [ + 1187, + 432, + 1234, + 432, + 1234, + 455, + 1187, + 455 + ], + "score": 0.32, + "latex": "\\overline { { + 1 . 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1002, + 349, + 1051, + 349, + 1051, + 372, + 1002, + 372 + ], + "score": 0.3, + "latex": "\\overline { { + 0 . 0 } }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 323, + 1154, + 323, + 1154, + 343, + 1096, + 343 + ], + "score": 0.29, + "latex": "\\epsilon = 8" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 739.0, + 606.0, + 739.0, + 606.0, + 760.0, + 510.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 739.0, + 808.0, + 739.0, + 808.0, + 760.0, + 714.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 740.0, + 1002.0, + 740.0, + 1002.0, + 759.0, + 925.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 740.0, + 1207.0, + 740.0, + 1207.0, + 759.0, + 1129.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 757.0, + 486.0, + 757.0, + 486.0, + 892.0, + 436.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 763.0, + 539.0, + 763.0, + 539.0, + 775.0, + 526.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 762.0, + 589.0, + 762.0, + 589.0, + 775.0, + 578.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 758.0, + 643.0, + 758.0, + 643.0, + 774.0, + 625.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 755.0, + 678.0, + 755.0, + 678.0, + 804.0, + 653.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 779.0, + 688.0, + 779.0, + 688.0, + 787.0, + 680.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 766.0, + 740.0, + 766.0, + 740.0, + 775.0, + 730.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 771.0, + 791.0, + 771.0, + 791.0, + 779.0, + 782.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 758.0, + 846.0, + 758.0, + 846.0, + 773.0, + 829.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 758.0, + 895.0, + 758.0, + 895.0, + 808.0, + 857.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 762.0, + 946.0, + 762.0, + 946.0, + 775.0, + 933.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 759.0, + 997.0, + 759.0, + 997.0, + 818.0, + 983.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 760.0, + 1049.0, + 760.0, + 1049.0, + 808.0, + 1035.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 763.0, + 1097.0, + 763.0, + 1097.0, + 817.0, + 1061.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 759.0, + 1149.0, + 759.0, + 1149.0, + 772.0, + 1136.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 767.0, + 1199.0, + 767.0, + 1199.0, + 819.0, + 1187.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 763.0, + 1251.0, + 763.0, + 1251.0, + 810.0, + 1238.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 813.0, + 528.0, + 813.0, + 528.0, + 831.0, + 503.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 814.0, + 677.0, + 814.0, + 677.0, + 832.0, + 653.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 813.0, + 731.0, + 813.0, + 731.0, + 831.0, + 706.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 814.0, + 882.0, + 814.0, + 882.0, + 833.0, + 857.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 817.0, + 944.0, + 817.0, + 944.0, + 830.0, + 933.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 818.0, + 1147.0, + 818.0, + 1147.0, + 831.0, + 1135.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 829.0, + 472.0, + 829.0, + 472.0, + 849.0, + 451.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 830.0, + 498.0, + 830.0, + 498.0, + 841.0, + 484.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 826.0, + 544.0, + 826.0, + 544.0, + 860.0, + 503.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 834.0, + 641.0, + 834.0, + 641.0, + 850.0, + 625.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 843.0, + 678.0, + 843.0, + 678.0, + 861.0, + 653.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 831.0, + 701.0, + 831.0, + 701.0, + 841.0, + 688.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 826.0, + 747.0, + 826.0, + 747.0, + 860.0, + 706.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 834.0, + 794.0, + 834.0, + 794.0, + 850.0, + 778.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 827.0, + 845.0, + 827.0, + 845.0, + 842.0, + 829.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 840.0, + 882.0, + 840.0, + 882.0, + 858.0, + 857.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 825.0, + 1085.0, + 825.0, + 1085.0, + 844.0, + 1061.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 866.0, + 473.0, + 866.0, + 473.0, + 884.0, + 451.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 876.0, + 537.0, + 876.0, + 537.0, + 888.0, + 525.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 853.0, + 590.0, + 853.0, + 590.0, + 866.0, + 576.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 871.0, + 676.0, + 871.0, + 676.0, + 890.0, + 653.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 859.0, + 741.0, + 859.0, + 741.0, + 870.0, + 728.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 865.0, + 882.0, + 865.0, + 882.0, + 884.0, + 857.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 880.0, + 1001.0, + 880.0, + 1001.0, + 890.0, + 986.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 862.0, + 1046.0, + 862.0, + 1046.0, + 894.0, + 1004.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 851.0, + 1087.0, + 851.0, + 1087.0, + 897.0, + 1060.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 880.0, + 1203.0, + 880.0, + 1203.0, + 890.0, + 1188.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 862.0, + 1249.0, + 862.0, + 1249.0, + 894.0, + 1207.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 890.0, + 882.0, + 890.0, + 882.0, + 908.0, + 857.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 892.0, + 1002.0, + 892.0, + 1002.0, + 907.0, + 984.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 889.0, + 1037.0, + 889.0, + 1037.0, + 909.0, + 1004.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 891.0, + 1205.0, + 891.0, + 1205.0, + 907.0, + 1187.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 889.0, + 1240.0, + 889.0, + 1240.0, + 910.0, + 1207.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 899.0, + 694.0, + 899.0, + 694.0, + 917.0, + 650.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 899.0, + 895.0, + 899.0, + 895.0, + 916.0, + 878.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 912.0, + 496.0, + 912.0, + 496.0, + 933.0, + 465.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 913.0, + 550.0, + 913.0, + 550.0, + 933.0, + 514.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 914.0, + 601.0, + 914.0, + 601.0, + 931.0, + 566.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 914.0, + 651.0, + 914.0, + 651.0, + 931.0, + 617.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 913.0, + 698.0, + 913.0, + 698.0, + 931.0, + 669.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 913.0, + 753.0, + 913.0, + 753.0, + 933.0, + 717.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 912.0, + 805.0, + 912.0, + 805.0, + 932.0, + 769.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 914.0, + 855.0, + 914.0, + 855.0, + 931.0, + 821.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 913.0, + 902.0, + 913.0, + 902.0, + 931.0, + 874.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 913.0, + 957.0, + 913.0, + 957.0, + 933.0, + 921.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 913.0, + 1009.0, + 913.0, + 1009.0, + 933.0, + 972.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 914.0, + 1059.0, + 914.0, + 1059.0, + 931.0, + 1024.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 913.0, + 1105.0, + 913.0, + 1105.0, + 931.0, + 1077.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 914.0, + 1159.0, + 914.0, + 1159.0, + 931.0, + 1125.0, + 931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 912.0, + 1212.0, + 912.0, + 1212.0, + 932.0, + 1176.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 913.0, + 1263.0, + 913.0, + 1263.0, + 933.0, + 1226.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 927.0, + 565.0, + 927.0, + 565.0, + 944.0, + 549.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 927.0, + 768.0, + 927.0, + 768.0, + 944.0, + 753.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 927.0, + 972.0, + 927.0, + 972.0, + 944.0, + 956.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 927.0, + 1175.0, + 927.0, + 1175.0, + 944.0, + 1160.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.75, + 897.0, + 494.75, + 897.0, + 494.75, + 920.0, + 445.75, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.75, + 901.5, + 1103.75, + 901.5, + 1103.75, + 913.5, + 1076.75, + 913.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 977.0, + 1406.0, + 977.0, + 1406.0, + 1018.0, + 293.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1009.0, + 529.0, + 1009.0, + 529.0, + 1045.0, + 295.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1009.0, + 1204.0, + 1009.0, + 1204.0, + 1045.0, + 549.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1009.0, + 1233.0, + 1009.0, + 1233.0, + 1045.0, + 1225.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 247.0, + 583.0, + 247.0, + 583.0, + 286.0, + 293.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 247.0, + 1044.0, + 247.0, + 1044.0, + 286.0, + 611.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 247.0, + 1376.0, + 247.0, + 1376.0, + 286.0, + 1061.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 281.0, + 772.0, + 281.0, + 772.0, + 312.0, + 296.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1851.0, + 550.0, + 1851.0, + 550.0, + 1899.0, + 291.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.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": [ + 292.0, + 1210.0, + 1405.0, + 1210.0, + 1405.0, + 1247.0, + 292.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1242.0, + 1406.0, + 1242.0, + 1406.0, + 1276.0, + 295.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1271.0, + 1162.0, + 1271.0, + 1162.0, + 1305.0, + 293.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1271.0, + 1268.0, + 1271.0, + 1268.0, + 1305.0, + 1257.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1305.0, + 1363.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1304.0, + 1209.0, + 1304.0, + 1209.0, + 1335.0, + 296.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1304.0, + 1403.0, + 1304.0, + 1403.0, + 1335.0, + 1230.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1332.0, + 952.0, + 1332.0, + 952.0, + 1367.0, + 296.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 1332.0, + 1405.0, + 1332.0, + 1405.0, + 1367.0, + 972.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1362.0, + 1407.0, + 1362.0, + 1407.0, + 1399.0, + 292.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1392.0, + 956.0, + 1392.0, + 956.0, + 1430.0, + 293.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1392.0, + 1407.0, + 1392.0, + 1407.0, + 1430.0, + 1066.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1425.0, + 1405.0, + 1425.0, + 1405.0, + 1460.0, + 295.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1454.0, + 859.0, + 1454.0, + 859.0, + 1492.0, + 293.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1454.0, + 1406.0, + 1454.0, + 1406.0, + 1492.0, + 979.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1486.0, + 876.0, + 1486.0, + 876.0, + 1520.0, + 295.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1486.0, + 1358.0, + 1486.0, + 1358.0, + 1520.0, + 995.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1486.0, + 1405.0, + 1486.0, + 1405.0, + 1520.0, + 1377.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1513.0, + 295.0, + 1513.0, + 295.0, + 1548.0, + 292.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1513.0, + 575.0, + 1513.0, + 575.0, + 1548.0, + 405.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1513.0, + 996.0, + 1513.0, + 996.0, + 1548.0, + 685.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1976.0, + 293.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1974.0, + 1407.0, + 1974.0, + 1407.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1310.0, + 2004.0, + 1310.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1563.0, + 728.0, + 1563.0, + 728.0, + 1596.0, + 295.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1563.0, + 1404.0, + 1563.0, + 1404.0, + 1596.0, + 746.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1592.0, + 1133.0, + 1592.0, + 1133.0, + 1628.0, + 294.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 1592.0, + 1407.0, + 1592.0, + 1407.0, + 1628.0, + 1211.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1620.0, + 474.0, + 1620.0, + 474.0, + 1663.0, + 292.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1620.0, + 871.0, + 1620.0, + 871.0, + 1663.0, + 581.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1620.0, + 1409.0, + 1620.0, + 1409.0, + 1663.0, + 947.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1655.0, + 1018.0, + 1655.0, + 1018.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1700.0, + 815.0, + 1700.0, + 815.0, + 1733.0, + 294.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1700.0, + 1382.0, + 1700.0, + 1382.0, + 1733.0, + 836.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1700.0, + 1407.0, + 1700.0, + 1407.0, + 1733.0, + 1402.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1732.0, + 760.0, + 1732.0, + 760.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1732.0, + 1140.0, + 1732.0, + 1140.0, + 1764.0, + 780.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1732.0, + 1381.0, + 1732.0, + 1381.0, + 1764.0, + 1161.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1732.0, + 1405.0, + 1732.0, + 1405.0, + 1764.0, + 1402.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1763.0, + 999.0, + 1763.0, + 999.0, + 1796.0, + 294.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1763.0, + 1407.0, + 1763.0, + 1407.0, + 1796.0, + 1020.0, + 1796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1792.0, + 354.0, + 1792.0, + 354.0, + 1827.0, + 293.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1792.0, + 930.0, + 1792.0, + 930.0, + 1827.0, + 375.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1102.0, + 1406.0, + 1102.0, + 1406.0, + 1139.0, + 293.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1134.0, + 513.0, + 1134.0, + 513.0, + 1168.0, + 296.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1134.0, + 1404.0, + 1134.0, + 1404.0, + 1168.0, + 529.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1165.0, + 679.0, + 1165.0, + 679.0, + 1196.0, + 293.0, + 1196.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 304, + 279, + 1401, + 279, + 1401, + 373, + 304, + 373 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 295, + 1388, + 1402, + 1388, + 1402, + 1454, + 295, + 1454 + ], + "score": 0.833 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 295, + 717, + 1402, + 717, + 1402, + 783, + 295, + 783 + ], + "score": 0.809 + }, + { + "category_id": 1, + "poly": [ + 292, + 1302, + 1404, + 1302, + 1404, + 1367, + 292, + 1367 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 298, + 1097, + 1407, + 1097, + 1407, + 1192, + 298, + 1192 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 291, + 1215, + 1403, + 1215, + 1403, + 1281, + 291, + 1281 + ], + "score": 0.803 + }, + { + "category_id": 1, + "poly": [ + 294, + 891, + 1403, + 891, + 1403, + 957, + 294, + 957 + ], + "score": 0.803 + }, + { + "category_id": 1, + "poly": [ + 298, + 978, + 1407, + 978, + 1407, + 1074, + 298, + 1074 + ], + "score": 0.8 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 261, + 300, + 261 + ], + "score": 0.788 + }, + { + "category_id": 1, + "poly": [ + 295, + 804, + 1401, + 804, + 1401, + 870, + 295, + 870 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 297, + 600, + 1406, + 600, + 1406, + 695, + 297, + 695 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 292, + 397, + 1402, + 397, + 1402, + 461, + 292, + 461 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 297, + 1679, + 1403, + 1679, + 1403, + 1745, + 297, + 1745 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 297, + 1592, + 1401, + 1592, + 1401, + 1659, + 297, + 1659 + ], + "score": 0.748 + }, + { + "category_id": 1, + "poly": [ + 292, + 1767, + 1402, + 1767, + 1402, + 1832, + 292, + 1832 + ], + "score": 0.741 + }, + { + "category_id": 1, + "poly": [ + 297, + 1474, + 1406, + 1474, + 1406, + 1572, + 297, + 1572 + ], + "score": 0.735 + }, + { + "category_id": 1, + "poly": [ + 299, + 482, + 1407, + 482, + 1407, + 577, + 299, + 577 + ], + "score": 0.724 + }, + { + "category_id": 1, + "poly": [ + 299, + 1971, + 1401, + 1971, + 1401, + 2035, + 299, + 2035 + ], + "score": 0.687 + }, + { + "category_id": 1, + "poly": [ + 299, + 1854, + 1404, + 1854, + 1404, + 1949, + 299, + 1949 + ], + "score": 0.637 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 490.0, + 229.0, + 490.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 279.0, + 1406.0, + 279.0, + 1406.0, + 316.0, + 298.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 309.0, + 1406.0, + 309.0, + 1406.0, + 348.0, + 320.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 342.0, + 692.0, + 342.0, + 692.0, + 376.0, + 325.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1385.0, + 1406.0, + 1385.0, + 1406.0, + 1428.0, + 293.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1421.0, + 611.0, + 1421.0, + 611.0, + 1452.0, + 323.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 1404.0, + 718.0, + 1404.0, + 755.0, + 294.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 749.0, + 1336.0, + 749.0, + 1336.0, + 785.0, + 320.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1300.0, + 1409.0, + 1300.0, + 1409.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1334.0, + 775.0, + 1334.0, + 775.0, + 1367.0, + 323.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1093.0, + 1408.0, + 1093.0, + 1408.0, + 1138.0, + 292.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1129.0, + 1409.0, + 1129.0, + 1409.0, + 1166.0, + 321.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1155.0, + 410.0, + 1155.0, + 410.0, + 1195.0, + 319.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1217.0, + 1406.0, + 1217.0, + 1406.0, + 1253.0, + 295.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1247.0, + 1304.0, + 1247.0, + 1304.0, + 1283.0, + 322.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 889.0, + 1405.0, + 889.0, + 1405.0, + 929.0, + 294.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 923.0, + 1007.0, + 923.0, + 1007.0, + 959.0, + 322.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 982.0, + 1407.0, + 982.0, + 1407.0, + 1016.0, + 295.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1011.0, + 1409.0, + 1011.0, + 1409.0, + 1051.0, + 320.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1042.0, + 397.0, + 1042.0, + 397.0, + 1075.0, + 321.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 803.0, + 1403.0, + 803.0, + 1403.0, + 842.0, + 295.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 837.0, + 1053.0, + 837.0, + 1053.0, + 871.0, + 322.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 600.0, + 1406.0, + 600.0, + 1406.0, + 637.0, + 294.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 632.0, + 1403.0, + 632.0, + 1403.0, + 666.0, + 323.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 663.0, + 493.0, + 663.0, + 493.0, + 695.0, + 323.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 397.0, + 1404.0, + 397.0, + 1404.0, + 433.0, + 295.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 428.0, + 987.0, + 428.0, + 987.0, + 464.0, + 320.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1720.0, + 294.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1711.0, + 923.0, + 1711.0, + 923.0, + 1747.0, + 322.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 1406.0, + 1590.0, + 1406.0, + 1632.0, + 293.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1624.0, + 1083.0, + 1624.0, + 1083.0, + 1662.0, + 320.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1765.0, + 1404.0, + 1765.0, + 1404.0, + 1805.0, + 294.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1798.0, + 934.0, + 1798.0, + 934.0, + 1832.0, + 323.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1475.0, + 1407.0, + 1475.0, + 1407.0, + 1513.0, + 295.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1508.0, + 1404.0, + 1508.0, + 1404.0, + 1543.0, + 324.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1535.0, + 1020.0, + 1535.0, + 1020.0, + 1575.0, + 321.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 1404.0, + 482.0, + 1404.0, + 520.0, + 294.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 512.0, + 1410.0, + 512.0, + 1410.0, + 553.0, + 320.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 543.0, + 395.0, + 543.0, + 395.0, + 577.0, + 321.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1968.0, + 1406.0, + 1968.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2002.0, + 1284.0, + 2002.0, + 1284.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 1406.0, + 1853.0, + 1406.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1921.0, + 323.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1916.0, + 692.0, + 1916.0, + 692.0, + 1950.0, + 324.0, + 1950.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 294, + 1094, + 1402, + 1094, + 1402, + 1159, + 294, + 1159 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 298, + 676, + 1405, + 676, + 1405, + 772, + 298, + 772 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 297, + 565, + 1405, + 565, + 1405, + 658, + 297, + 658 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 298, + 982, + 1405, + 982, + 1405, + 1077, + 298, + 1077 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 298, + 1257, + 1401, + 1257, + 1401, + 1322, + 298, + 1322 + ], + "score": 0.827 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 298, + 1451, + 1406, + 1451, + 1406, + 1545, + 298, + 1545 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 298, + 1338, + 1405, + 1338, + 1405, + 1434, + 298, + 1434 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 299, + 788, + 1399, + 788, + 1399, + 853, + 299, + 853 + ], + "score": 0.81 + }, + { + "category_id": 1, + "poly": [ + 298, + 452, + 1403, + 452, + 1403, + 546, + 298, + 546 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 299, + 1562, + 1406, + 1562, + 1406, + 1658, + 299, + 1658 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 294, + 371, + 1402, + 371, + 1402, + 435, + 294, + 435 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 295, + 1674, + 1403, + 1674, + 1403, + 1710, + 295, + 1710 + ], + "score": 0.803 + }, + { + "category_id": 1, + "poly": [ + 299, + 870, + 1406, + 870, + 1406, + 964, + 299, + 964 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 291, + 1808, + 1403, + 1808, + 1403, + 1843, + 291, + 1843 + ], + "score": 0.781 + }, + { + "category_id": 1, + "poly": [ + 299, + 1175, + 1402, + 1175, + 1402, + 1242, + 299, + 1242 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1405, + 228, + 1405, + 352, + 298, + 352 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 297, + 1725, + 1402, + 1725, + 1402, + 1791, + 297, + 1791 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 296, + 1859, + 1403, + 1859, + 1403, + 1923, + 296, + 1923 + ], + "score": 0.718 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1405, + 1941, + 1405, + 2034, + 299, + 2034 + ], + "score": 0.701 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1097.0, + 1403.0, + 1097.0, + 1403.0, + 1129.0, + 297.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1126.0, + 1398.0, + 1126.0, + 1398.0, + 1163.0, + 323.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 676.0, + 1405.0, + 676.0, + 1405.0, + 714.0, + 293.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 709.0, + 1403.0, + 709.0, + 1403.0, + 744.0, + 323.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 739.0, + 895.0, + 739.0, + 895.0, + 773.0, + 323.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 566.0, + 1405.0, + 566.0, + 1405.0, + 599.0, + 296.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 597.0, + 1405.0, + 597.0, + 1405.0, + 631.0, + 324.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 627.0, + 540.0, + 627.0, + 540.0, + 662.0, + 323.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 982.0, + 1405.0, + 982.0, + 1405.0, + 1020.0, + 295.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1015.0, + 1403.0, + 1015.0, + 1403.0, + 1049.0, + 323.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1044.0, + 624.0, + 1044.0, + 624.0, + 1079.0, + 323.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1256.0, + 1405.0, + 1256.0, + 1405.0, + 1293.0, + 294.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1288.0, + 1123.0, + 1288.0, + 1123.0, + 1323.0, + 322.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1451.0, + 1406.0, + 1451.0, + 1406.0, + 1488.0, + 295.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1483.0, + 1404.0, + 1483.0, + 1404.0, + 1517.0, + 322.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1513.0, + 488.0, + 1513.0, + 488.0, + 1548.0, + 320.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1337.0, + 1405.0, + 1337.0, + 1405.0, + 1376.0, + 292.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1369.0, + 1406.0, + 1369.0, + 1406.0, + 1408.0, + 320.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1402.0, + 863.0, + 1402.0, + 863.0, + 1435.0, + 323.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 787.0, + 1404.0, + 787.0, + 1404.0, + 828.0, + 294.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 818.0, + 1332.0, + 818.0, + 1332.0, + 854.0, + 323.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 450.0, + 1405.0, + 450.0, + 1405.0, + 492.0, + 295.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 484.0, + 1408.0, + 484.0, + 1408.0, + 520.0, + 320.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 511.0, + 396.0, + 511.0, + 396.0, + 549.0, + 318.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1600.0, + 294.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1594.0, + 1408.0, + 1594.0, + 1408.0, + 1631.0, + 322.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1626.0, + 723.0, + 1626.0, + 723.0, + 1658.0, + 322.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 372.0, + 1403.0, + 372.0, + 1403.0, + 408.0, + 296.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 404.0, + 705.0, + 404.0, + 705.0, + 436.0, + 319.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1672.0, + 1408.0, + 1672.0, + 1408.0, + 1712.0, + 297.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 868.0, + 1410.0, + 868.0, + 1410.0, + 910.0, + 293.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 900.0, + 1406.0, + 900.0, + 1406.0, + 938.0, + 321.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 932.0, + 493.0, + 932.0, + 493.0, + 967.0, + 321.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1806.0, + 1408.0, + 1806.0, + 1408.0, + 1845.0, + 294.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1175.0, + 1404.0, + 1175.0, + 1404.0, + 1212.0, + 294.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1209.0, + 1401.0, + 1209.0, + 1401.0, + 1242.0, + 323.0, + 1242.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": [ + 322.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 297.0, + 322.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 291.0, + 1408.0, + 291.0, + 1408.0, + 327.0, + 320.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 320.0, + 468.0, + 320.0, + 468.0, + 354.0, + 321.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1723.0, + 1404.0, + 1723.0, + 1404.0, + 1765.0, + 293.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1759.0, + 612.0, + 1759.0, + 612.0, + 1789.0, + 322.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1856.0, + 1405.0, + 1856.0, + 1405.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1888.0, + 598.0, + 1888.0, + 598.0, + 1924.0, + 320.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1409.0, + 1940.0, + 1409.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 322.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2002.0, + 861.0, + 2002.0, + 861.0, + 2036.0, + 324.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 323, + 298, + 323 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 298, + 343, + 1406, + 343, + 1406, + 438, + 298, + 438 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 298, + 1738, + 1405, + 1738, + 1405, + 1834, + 298, + 1834 + ], + "score": 0.899 + }, + { + "category_id": 1, + "poly": [ + 297, + 1231, + 1400, + 1231, + 1400, + 1295, + 297, + 1295 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 297, + 460, + 1406, + 460, + 1406, + 554, + 297, + 554 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.889 + }, + { + "category_id": 1, + "poly": [ + 294, + 975, + 1403, + 975, + 1403, + 1040, + 294, + 1040 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 291, + 1654, + 1401, + 1654, + 1401, + 1720, + 291, + 1720 + ], + "score": 0.884 + }, + { + "category_id": 1, + "poly": [ + 301, + 858, + 1404, + 858, + 1404, + 954, + 301, + 954 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 296, + 690, + 1403, + 690, + 1403, + 755, + 296, + 755 + ], + "score": 0.877 + }, + { + "category_id": 1, + "poly": [ + 298, + 1315, + 1406, + 1315, + 1406, + 1408, + 298, + 1408 + ], + "score": 0.873 + }, + { + "category_id": 1, + "poly": [ + 296, + 1146, + 1399, + 1146, + 1399, + 1210, + 296, + 1210 + ], + "score": 0.87 + }, + { + "category_id": 1, + "poly": [ + 295, + 774, + 1403, + 774, + 1403, + 841, + 295, + 841 + ], + "score": 0.868 + }, + { + "category_id": 1, + "poly": [ + 299, + 1060, + 1402, + 1060, + 1402, + 1125, + 299, + 1125 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 302, + 1514, + 1402, + 1514, + 1402, + 1581, + 302, + 1581 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 299, + 1430, + 1402, + 1430, + 1402, + 1495, + 299, + 1495 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 297, + 574, + 1406, + 574, + 1406, + 670, + 297, + 670 + ], + "score": 0.86 + }, + { + "category_id": 1, + "poly": [ + 296, + 1600, + 1402, + 1600, + 1402, + 1636, + 296, + 1636 + ], + "score": 0.849 + }, + { + "category_id": 1, + "poly": [ + 291, + 1855, + 1403, + 1855, + 1403, + 1920, + 291, + 1920 + ], + "score": 0.841 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.83 + }, + { + "category_id": 1, + "poly": [ + 300, + 1941, + 1403, + 1941, + 1403, + 2034, + 300, + 2034 + ], + "score": 0.82 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1408.0, + 225.0, + 1408.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 261.0, + 1407.0, + 261.0, + 1407.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 289.0, + 396.0, + 289.0, + 396.0, + 323.0, + 321.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 343.0, + 1406.0, + 343.0, + 1406.0, + 381.0, + 293.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 376.0, + 1406.0, + 376.0, + 1406.0, + 412.0, + 322.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 405.0, + 509.0, + 405.0, + 509.0, + 441.0, + 321.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1741.0, + 1403.0, + 1741.0, + 1403.0, + 1775.0, + 298.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1808.0, + 321.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1803.0, + 557.0, + 1803.0, + 557.0, + 1834.0, + 321.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 1405.0, + 1231.0, + 1405.0, + 1267.0, + 295.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1263.0, + 771.0, + 1263.0, + 771.0, + 1295.0, + 322.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 454.0, + 1408.0, + 454.0, + 1408.0, + 501.0, + 291.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 490.0, + 1404.0, + 490.0, + 1404.0, + 526.0, + 323.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 522.0, + 556.0, + 522.0, + 556.0, + 557.0, + 323.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 977.0, + 1403.0, + 977.0, + 1403.0, + 1013.0, + 296.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1006.0, + 876.0, + 1006.0, + 876.0, + 1041.0, + 321.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 1404.0, + 1655.0, + 1404.0, + 1691.0, + 294.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1687.0, + 1239.0, + 1687.0, + 1239.0, + 1722.0, + 322.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 859.0, + 1406.0, + 859.0, + 1406.0, + 896.0, + 296.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 891.0, + 1409.0, + 891.0, + 1409.0, + 929.0, + 321.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 919.0, + 400.0, + 919.0, + 400.0, + 956.0, + 320.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 692.0, + 1403.0, + 692.0, + 1403.0, + 728.0, + 295.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 723.0, + 878.0, + 723.0, + 878.0, + 756.0, + 321.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1317.0, + 1404.0, + 1317.0, + 1404.0, + 1351.0, + 296.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1346.0, + 1409.0, + 1346.0, + 1409.0, + 1384.0, + 318.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1371.0, + 400.0, + 1371.0, + 400.0, + 1411.0, + 320.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1143.0, + 1404.0, + 1143.0, + 1404.0, + 1183.0, + 294.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1177.0, + 848.0, + 1177.0, + 848.0, + 1213.0, + 324.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 775.0, + 1404.0, + 775.0, + 1404.0, + 811.0, + 295.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 808.0, + 1341.0, + 808.0, + 1341.0, + 843.0, + 323.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1060.0, + 1404.0, + 1060.0, + 1404.0, + 1098.0, + 295.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1093.0, + 1275.0, + 1093.0, + 1275.0, + 1126.0, + 322.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1517.0, + 1403.0, + 1517.0, + 1403.0, + 1550.0, + 298.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1548.0, + 1301.0, + 1548.0, + 1301.0, + 1580.0, + 323.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1432.0, + 1404.0, + 1432.0, + 1404.0, + 1468.0, + 295.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1461.0, + 934.0, + 1461.0, + 934.0, + 1496.0, + 320.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 573.0, + 1407.0, + 573.0, + 1407.0, + 612.0, + 294.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 607.0, + 1404.0, + 607.0, + 1404.0, + 642.0, + 324.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 638.0, + 647.0, + 638.0, + 647.0, + 671.0, + 322.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1600.0, + 1407.0, + 1600.0, + 1407.0, + 1639.0, + 295.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1897.0, + 293.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1886.0, + 1270.0, + 1886.0, + 1270.0, + 1922.0, + 323.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2006.0, + 324.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2002.0, + 810.0, + 2002.0, + 810.0, + 2036.0, + 324.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 295, + 675, + 1402, + 675, + 1402, + 739, + 295, + 739 + ], + "score": 0.841 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.833 + }, + { + "category_id": 1, + "poly": [ + 295, + 592, + 1403, + 592, + 1403, + 655, + 295, + 655 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 297, + 509, + 1400, + 509, + 1400, + 572, + 297, + 572 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1402, + 229, + 1402, + 293, + 294, + 293 + ], + "score": 0.744 + }, + { + "category_id": 1, + "poly": [ + 296, + 425, + 1401, + 425, + 1401, + 490, + 296, + 490 + ], + "score": 0.715 + }, + { + "category_id": 1, + "poly": [ + 300, + 311, + 1401, + 311, + 1401, + 405, + 300, + 405 + ], + "score": 0.709 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 672.0, + 1407.0, + 672.0, + 1407.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 706.0, + 782.0, + 706.0, + 782.0, + 739.0, + 322.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 590.0, + 1406.0, + 590.0, + 1406.0, + 630.0, + 294.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 622.0, + 763.0, + 622.0, + 763.0, + 657.0, + 320.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 510.0, + 1404.0, + 510.0, + 1404.0, + 546.0, + 297.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 541.0, + 1242.0, + 541.0, + 1242.0, + 574.0, + 322.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 269.0, + 294.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 264.0, + 680.0, + 264.0, + 680.0, + 293.0, + 322.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 460.0, + 296.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 456.0, + 1376.0, + 456.0, + 1376.0, + 494.0, + 321.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 313.0, + 1405.0, + 313.0, + 1405.0, + 347.0, + 296.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 341.0, + 1408.0, + 341.0, + 1408.0, + 381.0, + 320.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 373.0, + 396.0, + 373.0, + 396.0, + 407.0, + 321.0, + 407.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1758, + 1406, + 1758, + 1406, + 2035, + 297, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 338, + 1397, + 1360, + 1397, + 1360, + 1590, + 338, + 1590 + ], + "score": 0.982, + "html": "
e=0.1e=0.5e=1e=2
Non private96.396.396.396.3
GP88.2 (±0.16)91.1 (±0.17)93.2 (±0.19)93.4 (±0.12)
B-GEP91.0 (±0.07)92.9 (±0.03)93.1 (±0.10)93.2 (±0.08)
GEP90.9 (±0.19)93.5 (±0.06)94.3 (±0.09)94.8 (±0.06)
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1051, + 1404, + 1051, + 1404, + 1267, + 297, + 1267 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 550, + 1405, + 550, + 1405, + 764, + 296, + 764 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 442, + 1404, + 442, + 1404, + 536, + 298, + 536 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 303, + 1404, + 303, + 1404, + 427, + 298, + 427 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 630, + 805, + 1069, + 805, + 1069, + 946, + 630, + 946 + ], + "score": 0.968, + "html": "
HyperparameterValues
Learning rate0.01,0.05,0.1
Running steps50,100,400
Clipping threshold0.01,0.1,1
" + }, + { + "category_id": 6, + "poly": [ + 297, + 1333, + 1401, + 1333, + 1401, + 1396, + 297, + 1396 + ], + "score": 0.933 + }, + { + "category_id": 0, + "poly": [ + 300, + 1681, + 703, + 1681, + 703, + 1717, + 300, + 1717 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.892 + }, + { + "category_id": 6, + "poly": [ + 549, + 970, + 1143, + 970, + 1143, + 1003, + 549, + 1003 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.856 + }, + { + "category_id": 0, + "poly": [ + 299, + 228, + 979, + 228, + 979, + 261, + 299, + 261 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 299, + 228, + 979, + 228, + 979, + 261, + 299, + 261 + ], + "score": 0.148 + }, + { + "category_id": 13, + "poly": [ + 745, + 643, + 867, + 643, + 867, + 678, + 745, + 678 + ], + "score": 0.93, + "latex": "2 0 0 \\simeq { \\sqrt { p } }" + }, + { + "category_id": 13, + "poly": [ + 391, + 581, + 498, + 581, + 498, + 611, + 391, + 611 + ], + "score": 0.91, + "latex": "1 \\times 1 0 ^ { - 5 }" + }, + { + "category_id": 13, + "poly": [ + 947, + 643, + 1074, + 643, + 1074, + 674, + 947, + 674 + ], + "score": 0.91, + "latex": "p = 4 0 9 6 0" + }, + { + "category_id": 13, + "poly": [ + 460, + 1085, + 525, + 1085, + 525, + 1112, + 460, + 1112 + ], + "score": 0.89, + "latex": "\\epsilon = 2" + }, + { + "category_id": 13, + "poly": [ + 297, + 1207, + 363, + 1207, + 363, + 1234, + 297, + 1234 + ], + "score": 0.89, + "latex": "\\epsilon = 1" + }, + { + "category_id": 13, + "poly": [ + 694, + 1084, + 769, + 1084, + 769, + 1113, + 694, + 1113 + ], + "score": 0.88, + "latex": "9 4 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 513, + 1114, + 572, + 1114, + 572, + 1144, + 513, + 1144 + ], + "score": 0.87, + "latex": "1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 970, + 1115, + 1060, + 1115, + 1060, + 1144, + 970, + 1144 + ], + "score": 0.85, + "latex": "\\epsilon = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 971, + 1825, + 989, + 1825, + 989, + 1852, + 971, + 1852 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 345, + 583, + 362, + 583, + 362, + 609, + 345, + 609 + ], + "score": 0.78, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1887, + 1269, + 1887, + 1269, + 1914, + 1250, + 1914 + ], + "score": 0.75, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 946, + 558, + 963, + 558, + 963, + 579, + 946, + 579 + ], + "score": 0.71, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1386, + 1211, + 1402, + 1211, + 1402, + 1233, + 1386, + 1233 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1050, + 1181, + 1067, + 1181, + 1067, + 1202, + 1050, + 1202 + ], + "score": 0.6, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 655, + 1337, + 682, + 1337, + 682, + 1363, + 655, + 1363 + ], + "score": 0.55, + "latex": "\\%" + }, + { + "category_id": 13, + "poly": [ + 1107, + 1341, + 1122, + 1341, + 1122, + 1362, + 1107, + 1362 + ], + "score": 0.5, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 832, + 1821, + 851, + 1821, + 851, + 1849, + 832, + 1849 + ], + "score": 0.49, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 831, + 1821, + 917, + 1821, + 917, + 1851, + 831, + 1851 + ], + "score": 0.38, + "latex": "k , m , n" + }, + { + "category_id": 13, + "poly": [ + 1316, + 1060, + 1331, + 1060, + 1331, + 1081, + 1316, + 1081 + ], + "score": 0.36, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 622, + 1336, + 684, + 1336, + 684, + 1364, + 622, + 1364 + ], + "score": 0.33, + "latex": "( \\mathrm { i n } \\% )" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1331.0, + 621.0, + 1331.0, + 621.0, + 1370.0, + 293.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1331.0, + 1106.0, + 1331.0, + 1106.0, + 1370.0, + 685.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 1331.0, + 1405.0, + 1331.0, + 1405.0, + 1370.0, + 1123.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1363.0, + 1406.0, + 1363.0, + 1406.0, + 1399.0, + 296.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1674.0, + 708.0, + 1674.0, + 708.0, + 1724.0, + 292.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 967.0, + 1145.0, + 967.0, + 1145.0, + 1009.0, + 544.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 982.0, + 226.0, + 982.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1760.0, + 1404.0, + 1760.0, + 1404.0, + 1793.0, + 296.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1406.0, + 1789.0, + 1406.0, + 1824.0, + 294.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 830.0, + 1821.0, + 830.0, + 1857.0, + 295.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1821.0, + 970.0, + 1821.0, + 970.0, + 1857.0, + 918.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1821.0, + 1408.0, + 1821.0, + 1408.0, + 1857.0, + 990.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1879.0, + 1249.0, + 1879.0, + 1249.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1879.0, + 1407.0, + 1879.0, + 1407.0, + 1919.0, + 1270.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1967.0, + 1406.0, + 1967.0, + 1406.0, + 2013.0, + 292.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1152.0, + 2003.0, + 1152.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1053.0, + 1315.0, + 1053.0, + 1315.0, + 1087.0, + 295.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1053.0, + 1404.0, + 1053.0, + 1404.0, + 1087.0, + 1332.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1082.0, + 459.0, + 1082.0, + 459.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1082.0, + 693.0, + 1082.0, + 693.0, + 1121.0, + 526.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1082.0, + 1407.0, + 1082.0, + 1407.0, + 1121.0, + 770.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1112.0, + 512.0, + 1112.0, + 512.0, + 1150.0, + 294.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1112.0, + 969.0, + 1112.0, + 969.0, + 1150.0, + 573.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1112.0, + 1405.0, + 1112.0, + 1405.0, + 1150.0, + 1061.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1142.0, + 1406.0, + 1142.0, + 1406.0, + 1181.0, + 292.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1175.0, + 1049.0, + 1175.0, + 1049.0, + 1210.0, + 294.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1175.0, + 1405.0, + 1175.0, + 1405.0, + 1210.0, + 1068.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1205.0, + 296.0, + 1205.0, + 296.0, + 1243.0, + 292.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1205.0, + 1385.0, + 1205.0, + 1385.0, + 1243.0, + 364.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1205.0, + 1407.0, + 1205.0, + 1407.0, + 1243.0, + 1403.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1236.0, + 1150.0, + 1236.0, + 1150.0, + 1270.0, + 293.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 945.0, + 548.0, + 945.0, + 590.0, + 294.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 548.0, + 1408.0, + 548.0, + 1408.0, + 590.0, + 964.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 577.0, + 344.0, + 577.0, + 344.0, + 620.0, + 291.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 577.0, + 390.0, + 577.0, + 390.0, + 620.0, + 363.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 577.0, + 1406.0, + 577.0, + 1406.0, + 620.0, + 499.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 609.0, + 1406.0, + 609.0, + 1406.0, + 650.0, + 294.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 744.0, + 642.0, + 744.0, + 677.0, + 294.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 642.0, + 946.0, + 642.0, + 946.0, + 677.0, + 868.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 642.0, + 1405.0, + 642.0, + 1405.0, + 677.0, + 1075.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 707.0, + 294.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 1405.0, + 702.0, + 1405.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 734.0, + 528.0, + 734.0, + 528.0, + 765.0, + 295.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 442.0, + 1405.0, + 442.0, + 1405.0, + 478.0, + 295.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 472.0, + 1405.0, + 472.0, + 1405.0, + 507.0, + 293.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 504.0, + 1321.0, + 504.0, + 1321.0, + 537.0, + 293.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 304.0, + 1404.0, + 304.0, + 1404.0, + 337.0, + 294.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 336.0, + 1404.0, + 336.0, + 1404.0, + 369.0, + 296.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 364.0, + 1404.0, + 364.0, + 1404.0, + 401.0, + 295.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 398.0, + 1317.0, + 398.0, + 1317.0, + 427.0, + 297.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 226.0, + 982.0, + 226.0, + 982.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 669, + 1406, + 669, + 1406, + 1037, + 296, + 1037 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 382, + 1158, + 1317, + 1158, + 1317, + 1353, + 382, + 1353 + ], + "score": 0.978, + "html": "
Auxiliary DataRandomLabel?Test Accuracy
CIFAR10No72.9 (±0.31)
CIFAR10Yes75.1 (±0.42)
CIFAR100Yes74.7 (±0.46)
ImageNetYes74.8 (±0.39)
" + }, + { + "category_id": 6, + "poly": [ + 298, + 247, + 1405, + 247, + 1405, + 403, + 298, + 403 + ], + "score": 0.976 + }, + { + "category_id": 5, + "poly": [ + 383, + 1662, + 1313, + 1662, + 1313, + 1784, + 383, + 1784 + ], + "score": 0.974, + "html": "
Algorithmm = 1000m = 2000m = 4000
B-GEP62.2 (±0.26)62.6 (±0.24)63.3 (±0.27)
GEP74.6 (±0.41)74.8 (±0.39)75.2 (±0.34)
" + }, + { + "category_id": 5, + "poly": [ + 332, + 406, + 1367, + 406, + 1367, + 543, + 332, + 543 + ], + "score": 0.974, + "html": "
Computational CostMemory Cost
GEP2mkp+pk²max(0,(m-n+k)p+mk)
GEP+PG2mkp/g+pk²/g²max (0,(m-n+)p+mk)
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1819, + 1404, + 1819, + 1404, + 2036, + 296, + 2036 + ], + "score": 0.97 + }, + { + "category_id": 6, + "poly": [ + 296, + 1596, + 1398, + 1596, + 1398, + 1659, + 296, + 1659 + ], + "score": 0.94 + }, + { + "category_id": 6, + "poly": [ + 294, + 1092, + 1398, + 1092, + 1398, + 1156, + 294, + 1156 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 297, + 1386, + 1404, + 1386, + 1404, + 1542, + 297, + 1542 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 298, + 598, + 615, + 598, + 615, + 635, + 298, + 635 + ], + "score": 0.909 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 863, + 2087, + 863, + 2113, + 835, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 13, + "poly": [ + 297, + 1419, + 419, + 1419, + 419, + 1447, + 297, + 1447 + ], + "score": 0.89, + "latex": "m = 2 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 600, + 2003, + 693, + 2003, + 693, + 2033, + 600, + 2033 + ], + "score": 0.85, + "latex": "( > 9 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 325, + 1123, + 428, + 1123, + 428, + 1157, + 325, + 1157 + ], + "score": 0.82, + "latex": "( 8 , 1 0 ^ { - 5 } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 1626, + 401, + 1626, + 401, + 1660, + 296, + 1660 + ], + "score": 0.81, + "latex": "( 8 , 1 0 ^ { - 5 } )" + }, + { + "category_id": 13, + "poly": [ + 965, + 346, + 984, + 346, + 984, + 372, + 965, + 372 + ], + "score": 0.78, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 343, + 345, + 362, + 345, + 362, + 373, + 343, + 373 + ], + "score": 0.76, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1483, + 1309, + 1483, + 1309, + 1507, + 1281, + 1507 + ], + "score": 0.63, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 825, + 1483, + 852, + 1483, + 852, + 1506, + 825, + 1506 + ], + "score": 0.61, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 440, + 1453, + 468, + 1453, + 468, + 1476, + 440, + 1476 + ], + "score": 0.51, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 823, + 342, + 842, + 342, + 842, + 368, + 823, + 368 + ], + "score": 0.48, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 864, + 311, + 979, + 311, + 979, + 339, + 864, + 339 + ], + "score": 0.46, + "latex": "\\cdot _ { \\mathrm { G E P + P G } } ," + }, + { + "category_id": 13, + "poly": [ + 889, + 347, + 909, + 347, + 909, + 369, + 889, + 369 + ], + "score": 0.34, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 853, + 346, + 879, + 346, + 879, + 369, + 853, + 369 + ], + "score": 0.26, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 250.0, + 1403.0, + 250.0, + 1403.0, + 284.0, + 296.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 280.0, + 1401.0, + 280.0, + 1401.0, + 313.0, + 296.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 304.0, + 863.0, + 304.0, + 863.0, + 353.0, + 291.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 304.0, + 1407.0, + 304.0, + 1407.0, + 353.0, + 980.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 336.0, + 342.0, + 336.0, + 342.0, + 381.0, + 292.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 336.0, + 822.0, + 336.0, + 822.0, + 381.0, + 363.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 336.0, + 852.0, + 336.0, + 852.0, + 381.0, + 843.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 336.0, + 888.0, + 336.0, + 888.0, + 381.0, + 880.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 336.0, + 964.0, + 336.0, + 964.0, + 381.0, + 910.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 336.0, + 1410.0, + 336.0, + 1410.0, + 381.0, + 985.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 372.0, + 1370.0, + 372.0, + 1370.0, + 405.0, + 296.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1633.0, + 292.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1622.0, + 295.0, + 1622.0, + 295.0, + 1664.0, + 290.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1622.0, + 1353.0, + 1622.0, + 1353.0, + 1664.0, + 402.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1089.0, + 1403.0, + 1089.0, + 1403.0, + 1129.0, + 293.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1120.0, + 324.0, + 1120.0, + 324.0, + 1160.0, + 293.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1120.0, + 1380.0, + 1120.0, + 1380.0, + 1160.0, + 429.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 594.0, + 620.0, + 594.0, + 620.0, + 641.0, + 294.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 669.0, + 1406.0, + 669.0, + 1406.0, + 706.0, + 294.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 702.0, + 1404.0, + 702.0, + 1404.0, + 736.0, + 296.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 1404.0, + 731.0, + 1404.0, + 766.0, + 293.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 759.0, + 1407.0, + 759.0, + 1407.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 792.0, + 1406.0, + 792.0, + 1406.0, + 827.0, + 293.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 821.0, + 1409.0, + 821.0, + 1409.0, + 859.0, + 294.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 853.0, + 1406.0, + 853.0, + 1406.0, + 890.0, + 293.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 885.0, + 1406.0, + 885.0, + 1406.0, + 919.0, + 294.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 915.0, + 1406.0, + 915.0, + 1406.0, + 948.0, + 293.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 943.0, + 1407.0, + 943.0, + 1407.0, + 981.0, + 293.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 976.0, + 1406.0, + 976.0, + 1406.0, + 1010.0, + 295.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1004.0, + 1070.0, + 1004.0, + 1070.0, + 1042.0, + 295.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1816.0, + 1405.0, + 1816.0, + 1405.0, + 1859.0, + 293.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1404.0, + 1849.0, + 1404.0, + 1887.0, + 293.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 599.0, + 2003.0, + 599.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2038.0, + 694.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1385.0, + 1404.0, + 1385.0, + 1404.0, + 1421.0, + 295.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1417.0, + 1402.0, + 1417.0, + 1402.0, + 1451.0, + 420.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1449.0, + 439.0, + 1449.0, + 439.0, + 1483.0, + 296.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1483.0, + 469.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1477.0, + 824.0, + 1477.0, + 824.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 1477.0, + 1280.0, + 1477.0, + 1280.0, + 1515.0, + 853.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1477.0, + 1406.0, + 1477.0, + 1406.0, + 1515.0, + 1310.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1509.0, + 652.0, + 1509.0, + 652.0, + 1545.0, + 295.0, + 1545.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 823, + 1405, + 823, + 1405, + 966, + 296, + 966 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1275, + 1407, + 1275, + 1407, + 1418, + 296, + 1418 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1097, + 1407, + 1097, + 1407, + 1194, + 297, + 1194 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 296, + 1432, + 1406, + 1432, + 1406, + 1542, + 296, + 1542 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 522, + 225, + 1177, + 225, + 1177, + 525, + 522, + 525 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 649, + 1402, + 649, + 1402, + 713, + 298, + 713 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 297, + 1570, + 1400, + 1570, + 1400, + 1635, + 297, + 1635 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 296, + 1884, + 1405, + 1884, + 1405, + 1961, + 296, + 1961 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 294, + 1647, + 1403, + 1647, + 1403, + 1712, + 294, + 1712 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 294, + 1970, + 1403, + 1970, + 1403, + 2037, + 294, + 2037 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 717, + 1725, + 982, + 1725, + 982, + 1765, + 717, + 1765 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 619, + 978, + 1079, + 978, + 1079, + 1024, + 619, + 1024 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 298, + 1050, + 1235, + 1050, + 1235, + 1085, + 298, + 1085 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 1774, + 921, + 1774, + 921, + 1811, + 297, + 1811 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 755, + 608, + 755, + 608, + 792, + 299, + 792 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 295, + 1225, + 1403, + 1225, + 1403, + 1264, + 295, + 1264 + ], + "score": 0.912 + }, + { + "category_id": 4, + "poly": [ + 295, + 561, + 1404, + 561, + 1404, + 596, + 295, + 596 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 813, + 76, + 813, + 104, + 299, + 104 + ], + "score": 0.893 + }, + { + "category_id": 9, + "poly": [ + 1365, + 987, + 1400, + 987, + 1400, + 1018, + 1365, + 1018 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.855 + }, + { + "category_id": 1, + "poly": [ + 296, + 1838, + 855, + 1838, + 855, + 1873, + 296, + 1873 + ], + "score": 0.594 + }, + { + "category_id": 13, + "poly": [ + 655, + 1314, + 822, + 1314, + 822, + 1352, + 655, + 1352 + ], + "score": 0.94, + "latex": "r a n k ( { \\hat { X } } ) = k" + }, + { + "category_id": 13, + "poly": [ + 484, + 928, + 644, + 928, + 644, + 966, + 484, + 966 + ], + "score": 0.94, + "latex": "\\lambda _ { k ^ { \\prime } + 1 } ( \\hat { \\pmb S } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 928, + 431, + 928, + 431, + 966, + 298, + 966 + ], + "score": 0.93, + "latex": "\\lambda _ { k ^ { \\prime } } ( \\hat { S } ) > 0" + }, + { + "category_id": 13, + "poly": [ + 1239, + 856, + 1400, + 856, + 1400, + 895, + 1239, + 895 + ], + "score": 0.93, + "latex": "\\hat { \\pmb { S } } = \\hat { V } _ { k ^ { \\prime } } \\hat { \\pmb { \\Lambda } } \\hat { V } _ { k ^ { \\prime } } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 341, + 1276, + 550, + 1276, + 550, + 1316, + 341, + 1316 + ], + "score": 0.93, + "latex": "\\hat { \\pmb { x } } _ { i } : = V _ { k } ^ { T } \\pmb { \\hat { \\xi } } _ { i } \\in \\mathbb { R } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1072, + 1465, + 1352, + 1465, + 1352, + 1504, + 1072, + 1504 + ], + "score": 0.92, + "latex": "\\sigma _ { 1 } \\geq 2 S _ { 1 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 595, + 1924, + 776, + 1924, + 776, + 1959, + 595, + 1959 + ], + "score": 0.92, + "latex": "\\mathcal { M } = f ( \\mathbb { D } ) + z" + }, + { + "category_id": 13, + "poly": [ + 591, + 1468, + 701, + 1468, + 701, + 1502, + 591, + 1502 + ], + "score": 0.92, + "latex": "\\delta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 1033, + 858, + 1187, + 858, + 1187, + 893, + 1033, + 893 + ], + "score": 0.92, + "latex": "\\pmb { \\Sigma } = \\pmb { V _ { k } } \\pmb { \\Lambda } \\pmb { V } _ { k } ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 756, + 1276, + 969, + 1276, + 969, + 1315, + 756, + 1315 + ], + "score": 0.92, + "latex": "\\hat { \\pmb X } : = ( \\hat { \\pmb x } _ { 1 } , . . . , \\hat { \\pmb x } _ { m } )" + }, + { + "category_id": 13, + "poly": [ + 389, + 859, + 559, + 859, + 559, + 895, + 389, + 895 + ], + "score": 0.92, + "latex": "\\mathbb { P } ( \\pmb { \\xi } \\in \\mathbb { F } _ { s } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 593, + 1280, + 679, + 1280, + 679, + 1315, + 593, + 1315 + ], + "score": 0.92, + "latex": "i \\in [ m ]" + }, + { + "category_id": 13, + "poly": [ + 297, + 1502, + 577, + 1502, + 577, + 1541, + 297, + 1541 + ], + "score": 0.91, + "latex": "\\sigma _ { 2 } \\geq 2 S _ { 2 } \\sqrt { 2 \\log ( 1 / \\delta ) } / \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 344, + 1353, + 422, + 1353, + 422, + 1385, + 344, + 1385 + ], + "score": 0.91, + "latex": "k ^ { \\prime } \\geq k" + }, + { + "category_id": 14, + "poly": [ + 618, + 977, + 1081, + 977, + 1081, + 1022, + 618, + 1022 + ], + "score": 0.91, + "latex": "k ^ { \\prime } = k \\quad a n d \\quad \\| V _ { k } V _ { k } ^ { T } - \\hat { V } _ { k } \\hat { V } _ { k } ^ { T } \\| _ { 2 } = 0 ." + }, + { + "category_id": 13, + "poly": [ + 1160, + 1649, + 1226, + 1649, + 1226, + 1683, + 1160, + 1683 + ], + "score": 0.91, + "latex": "( \\lambda , \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 1116, + 1923, + 1329, + 1923, + 1329, + 1961, + 1116, + 1961 + ], + "score": 0.91, + "latex": "z \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } I _ { p \\times p } )" + }, + { + "category_id": 13, + "poly": [ + 371, + 1776, + 463, + 1776, + 463, + 1810, + 371, + 1810 + ], + "score": 0.91, + "latex": "D _ { \\lambda } ( \\cdot | | \\cdot )" + }, + { + "category_id": 13, + "poly": [ + 549, + 1354, + 628, + 1354, + 628, + 1382, + 549, + 1382 + ], + "score": 0.91, + "latex": "k ^ { \\prime } = k" + }, + { + "category_id": 14, + "poly": [ + 716, + 1724, + 981, + 1724, + 981, + 1764, + 716, + 1764 + ], + "score": 0.91, + "latex": "D _ { \\lambda } ( f ( \\mathbb { D } ) | | f ( \\mathbb { D } ^ { \\prime } ) ) \\leq \\gamma ," + }, + { + "category_id": 13, + "poly": [ + 1003, + 1099, + 1204, + 1099, + 1204, + 1133, + 1003, + 1133 + ], + "score": 0.91, + "latex": "\\pmb { X } = ( \\pmb { x } _ { 1 } , . . . , \\pmb { x } _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1972, + 1195, + 1972, + 1195, + 2006, + 1119, + 2006 + ], + "score": 0.91, + "latex": "( \\lambda , \\gamma _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 955, + 1350, + 996, + 1350, + 996, + 1385, + 955, + 1385 + ], + "score": 0.91, + "latex": "\\hat { V } _ { k ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 859, + 860, + 978, + 860, + 978, + 892, + 859, + 892 + ], + "score": 0.9, + "latex": "0 \\leq s < k" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1229, + 1398, + 1229, + 1398, + 1260, + 1320, + 1260 + ], + "score": 0.9, + "latex": "k ^ { \\prime } \\leq k" + }, + { + "category_id": 13, + "poly": [ + 715, + 1225, + 756, + 1225, + 756, + 1261, + 715, + 1261 + ], + "score": 0.9, + "latex": "\\hat { V } _ { k ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 653, + 1682, + 723, + 1682, + 723, + 1709, + 653, + 1709 + ], + "score": 0.9, + "latex": "\\lambda > 1" + }, + { + "category_id": 13, + "poly": [ + 744, + 1130, + 945, + 1130, + 945, + 1163, + 744, + 1163 + ], + "score": 0.89, + "latex": "\\mathbb { P } \\{ \\pmb { x } _ { 1 } \\in \\mathbb { M } \\} = 0" + }, + { + "category_id": 13, + "poly": [ + 741, + 933, + 820, + 933, + 820, + 964, + 741, + 964 + ], + "score": 0.89, + "latex": "m \\geq k" + }, + { + "category_id": 13, + "poly": [ + 755, + 1468, + 923, + 1468, + 923, + 1502, + 755, + 1502 + ], + "score": 0.89, + "latex": "\\epsilon \\leq 2 \\log ( 1 / \\delta )" + }, + { + "category_id": 13, + "poly": [ + 394, + 1468, + 453, + 1468, + 453, + 1501, + 394, + 1501 + ], + "score": 0.89, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 537, + 1681, + 600, + 1681, + 600, + 1712, + 537, + 1712 + ], + "score": 0.88, + "latex": "\\mathbb { D } , \\mathbb { D } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 649, + 2004, + 851, + 2004, + 851, + 2036, + 649, + 2036 + ], + "score": 0.88, + "latex": "( \\lambda , \\gamma _ { 1 } + \\gamma _ { 2 } ) – R D P" + }, + { + "category_id": 13, + "poly": [ + 1325, + 1355, + 1360, + 1355, + 1360, + 1385, + 1325, + 1385 + ], + "score": 0.88, + "latex": "V _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1231, + 1130, + 1334, + 1130, + 1334, + 1158, + 1231, + 1158 + ], + "score": 0.88, + "latex": "\\mathbb { M } \\subset \\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1231, + 1086, + 1231, + 1086, + 1260, + 1052, + 1260 + ], + "score": 0.88, + "latex": "V _ { k }" + }, + { + "category_id": 13, + "poly": [ + 706, + 861, + 738, + 861, + 738, + 891, + 706, + 891 + ], + "score": 0.87, + "latex": "\\mathbb { F } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 922, + 1972, + 998, + 1972, + 998, + 2006, + 922, + 2006 + ], + "score": 0.87, + "latex": "( \\lambda , \\gamma _ { 1 } )" + }, + { + "category_id": 13, + "poly": [ + 595, + 1435, + 628, + 1435, + 628, + 1465, + 595, + 1465 + ], + "score": 0.87, + "latex": "S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 509, + 1435, + 541, + 1435, + 541, + 1465, + 509, + 1465 + ], + "score": 0.86, + "latex": "S _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1326, + 1104, + 1356, + 1104, + 1356, + 1130, + 1326, + 1130 + ], + "score": 0.86, + "latex": "\\mathbf { \\Delta } _ { \\mathbf { \\mathcal { X } } _ { i } }" + }, + { + "category_id": 13, + "poly": [ + 625, + 1131, + 701, + 1131, + 701, + 1162, + 625, + 1162 + ], + "score": 0.86, + "latex": "n \\geq p" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1889, + 1285, + 1889, + 1285, + 1919, + 1262, + 1919 + ], + "score": 0.85, + "latex": "l _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 768, + 861, + 803, + 861, + 803, + 889, + 768, + 889 + ], + "score": 0.85, + "latex": "\\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 835, + 1887, + 1189, + 1887, + 1189, + 1921, + 835, + 1921 + ], + "score": 0.85, + "latex": "S = \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D ^ { \\prime } } } \\| f ( \\mathbb { D } ) - f ( \\mathbb { D ^ { \\prime } } ) \\|" + }, + { + "category_id": 13, + "poly": [ + 907, + 1651, + 926, + 1651, + 926, + 1682, + 907, + 1682 + ], + "score": 0.84, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 452, + 1649, + 519, + 1649, + 519, + 1682, + 452, + 1682 + ], + "score": 0.83, + "latex": "( \\lambda , \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 795, + 1973, + 837, + 1973, + 837, + 2003, + 795, + 2003 + ], + "score": 0.83, + "latex": "M _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1160, + 359, + 1160, + 359, + 1194, + 297, + 1194 + ], + "score": 0.81, + "latex": "\\mathbb { P } \\{ X" + }, + { + "category_id": 13, + "poly": [ + 1377, + 828, + 1400, + 828, + 1400, + 853, + 1377, + 853 + ], + "score": 0.81, + "latex": "\\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 894, + 1132, + 894, + 1132, + 925, + 1109, + 925 + ], + "score": 0.81, + "latex": "\\hat { S }" + }, + { + "category_id": 13, + "poly": [ + 1379, + 564, + 1397, + 564, + 1397, + 590, + 1379, + 590 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 652, + 898, + 678, + 898, + 678, + 925, + 652, + 925 + ], + "score": 0.79, + "latex": "\\pmb { \\Sigma }" + }, + { + "category_id": 13, + "poly": [ + 965, + 827, + 990, + 827, + 990, + 853, + 965, + 853 + ], + "score": 0.79, + "latex": "\\pmb { \\Sigma }" + }, + { + "category_id": 13, + "poly": [ + 957, + 1313, + 1397, + 1313, + 1397, + 1353, + 957, + 1353 + ], + "score": 0.77, + "latex": "r a n k ( ( \\hat { \\xi } _ { 1 } , . . . , \\hat { \\xi } _ { m } ) ) \\geq k , r a n k ( \\hat { S } ) \\geq k" + }, + { + "category_id": 13, + "poly": [ + 743, + 1973, + 783, + 1973, + 783, + 2003, + 743, + 2003 + ], + "score": 0.76, + "latex": "M _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1131, + 611, + 1131, + 611, + 1158, + 577, + 1158 + ], + "score": 0.76, + "latex": "\\mathbb { R } ^ { p }" + }, + { + "category_id": 13, + "poly": [ + 877, + 1919, + 970, + 1919, + 970, + 1961, + 877, + 1961 + ], + "score": 0.74, + "latex": "( \\lambda , \\frac { \\lambda S ^ { 2 } } { 2 \\sigma ^ { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 893, + 1778, + 912, + 1778, + 912, + 1804, + 893, + 1804 + ], + "score": 0.71, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1131, + 827, + 1149, + 827, + 1149, + 853, + 1131, + 853 + ], + "score": 0.69, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1112, + 935, + 1127, + 935, + 1127, + 960, + 1112, + 960 + ], + "score": 0.68, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1313, + 1402, + 1313, + 1402, + 1352, + 1240, + 1352 + ], + "score": 0.68, + "latex": "r a n k ( { \\hat { S } } ) \\geq k" + }, + { + "category_id": 13, + "poly": [ + 533, + 1161, + 580, + 1161, + 580, + 1193, + 533, + 1193 + ], + "score": 0.66, + "latex": "\\scriptstyle \\cdot \\} = I" + }, + { + "category_id": 13, + "poly": [ + 634, + 865, + 649, + 865, + 649, + 888, + 634, + 888 + ], + "score": 0.66, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 937, + 1441, + 954, + 1441, + 954, + 1462, + 937, + 1462 + ], + "score": 0.63, + "latex": "\\pmb { r }" + }, + { + "category_id": 13, + "poly": [ + 1385, + 1436, + 1402, + 1436, + 1402, + 1462, + 1385, + 1462 + ], + "score": 0.33, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 227.0, + 742.0, + 227.0, + 742.0, + 251.0, + 677.0, + 251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 228.0, + 1058.0, + 228.0, + 1058.0, + 250.0, + 1012.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 259.0, + 574.0, + 259.0, + 574.0, + 281.0, + 537.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 255.0, + 703.0, + 255.0, + 703.0, + 285.0, + 580.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 259.0, + 899.0, + 259.0, + 899.0, + 284.0, + 862.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 251.0, + 1163.0, + 251.0, + 1163.0, + 292.0, + 904.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 289.0, + 572.0, + 289.0, + 572.0, + 307.0, + 538.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 289.0, + 901.0, + 289.0, + 901.0, + 310.0, + 862.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 303.0, + 543.0, + 303.0, + 543.0, + 434.0, + 520.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 305.0, + 838.0, + 305.0, + 838.0, + 356.0, + 577.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 314.0, + 572.0, + 314.0, + 572.0, + 336.0, + 538.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 317.0, + 899.0, + 317.0, + 899.0, + 340.0, + 862.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 323.0, + 1009.0, + 323.0, + 1009.0, + 346.0, + 951.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 342.0, + 573.0, + 342.0, + 573.0, + 364.0, + 537.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 344.0, + 744.0, + 344.0, + 744.0, + 361.0, + 693.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 345.0, + 900.0, + 345.0, + 900.0, + 367.0, + 862.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 342.0, + 1159.0, + 342.0, + 1159.0, + 363.0, + 1105.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 355.0, + 747.0, + 355.0, + 747.0, + 379.0, + 692.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 357.0, + 1160.0, + 357.0, + 1160.0, + 378.0, + 1106.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 372.0, + 572.0, + 372.0, + 572.0, + 391.0, + 538.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 373.0, + 752.0, + 373.0, + 752.0, + 394.0, + 693.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 373.0, + 900.0, + 373.0, + 900.0, + 392.0, + 861.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 373.0, + 1165.0, + 373.0, + 1165.0, + 394.0, + 1107.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 397.0, + 573.0, + 397.0, + 573.0, + 419.0, + 537.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 401.0, + 899.0, + 401.0, + 899.0, + 423.0, + 862.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 427.0, + 573.0, + 427.0, + 573.0, + 446.0, + 539.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 419.0, + 843.0, + 419.0, + 843.0, + 481.0, + 579.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 428.0, + 899.0, + 428.0, + 899.0, + 450.0, + 862.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 420.0, + 1166.0, + 420.0, + 1166.0, + 479.0, + 903.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 453.0, + 573.0, + 453.0, + 573.0, + 475.0, + 537.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 455.0, + 899.0, + 455.0, + 899.0, + 478.0, + 862.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 489.0, + 594.0, + 489.0, + 594.0, + 508.0, + 578.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 487.0, + 650.0, + 487.0, + 650.0, + 511.0, + 623.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 489.0, + 699.0, + 489.0, + 699.0, + 509.0, + 675.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 489.0, + 749.0, + 489.0, + 749.0, + 509.0, + 725.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 487.0, + 800.0, + 487.0, + 800.0, + 510.0, + 773.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 487.0, + 852.0, + 487.0, + 852.0, + 510.0, + 820.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 490.0, + 920.0, + 490.0, + 920.0, + 508.0, + 904.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 486.0, + 975.0, + 486.0, + 975.0, + 511.0, + 949.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 486.0, + 1025.0, + 486.0, + 1025.0, + 510.0, + 999.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 486.0, + 1076.0, + 486.0, + 1076.0, + 511.0, + 1050.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 487.0, + 1126.0, + 487.0, + 1126.0, + 511.0, + 1098.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 487.0, + 1178.0, + 487.0, + 1178.0, + 510.0, + 1145.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 503.0, + 762.0, + 503.0, + 762.0, + 526.0, + 658.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 503.0, + 1088.0, + 503.0, + 1088.0, + 526.0, + 984.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 262.5, + 834.0, + 262.5, + 834.0, + 283.5, + 785.0, + 283.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 260.5, + 789.0, + 260.5, + 789.0, + 273.5, + 770.0, + 273.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 316.0, + 1164.0, + 316.0, + 1164.0, + 347.5, + 1065.0, + 347.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 750.0, + 612.0, + 750.0, + 612.0, + 799.0, + 292.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 556.0, + 1378.0, + 556.0, + 1378.0, + 600.0, + 294.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 556.0, + 1407.0, + 556.0, + 1407.0, + 600.0, + 1398.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 821.0, + 964.0, + 821.0, + 964.0, + 860.0, + 293.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 821.0, + 1130.0, + 821.0, + 1130.0, + 860.0, + 991.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 821.0, + 1376.0, + 821.0, + 1376.0, + 860.0, + 1150.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 821.0, + 1406.0, + 821.0, + 1406.0, + 860.0, + 1401.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 850.0, + 388.0, + 850.0, + 388.0, + 902.0, + 290.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 850.0, + 633.0, + 850.0, + 633.0, + 902.0, + 560.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 850.0, + 705.0, + 850.0, + 705.0, + 902.0, + 650.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 850.0, + 767.0, + 850.0, + 767.0, + 902.0, + 739.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 850.0, + 858.0, + 850.0, + 858.0, + 902.0, + 804.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 850.0, + 1032.0, + 850.0, + 1032.0, + 902.0, + 979.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 850.0, + 1238.0, + 850.0, + 1238.0, + 902.0, + 1188.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 850.0, + 1407.0, + 850.0, + 1407.0, + 902.0, + 1401.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 895.0, + 651.0, + 895.0, + 651.0, + 932.0, + 293.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 895.0, + 1108.0, + 895.0, + 1108.0, + 932.0, + 679.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 895.0, + 1406.0, + 895.0, + 1406.0, + 932.0, + 1133.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 930.0, + 483.0, + 930.0, + 483.0, + 969.0, + 432.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 930.0, + 740.0, + 930.0, + 740.0, + 969.0, + 645.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 930.0, + 1111.0, + 930.0, + 1111.0, + 969.0, + 821.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 930.0, + 1140.0, + 930.0, + 1140.0, + 969.0, + 1128.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1274.0, + 340.0, + 1274.0, + 340.0, + 1320.0, + 290.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1274.0, + 592.0, + 1274.0, + 592.0, + 1320.0, + 551.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1274.0, + 755.0, + 1274.0, + 755.0, + 1320.0, + 680.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1274.0, + 1409.0, + 1274.0, + 1409.0, + 1320.0, + 970.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 654.0, + 1315.0, + 654.0, + 1354.0, + 294.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1315.0, + 956.0, + 1315.0, + 956.0, + 1354.0, + 823.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1315.0, + 1407.0, + 1315.0, + 1407.0, + 1354.0, + 1403.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1352.0, + 343.0, + 1352.0, + 343.0, + 1391.0, + 293.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1352.0, + 548.0, + 1352.0, + 548.0, + 1391.0, + 423.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1352.0, + 954.0, + 1352.0, + 954.0, + 1391.0, + 629.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1352.0, + 1324.0, + 1352.0, + 1324.0, + 1391.0, + 997.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 1352.0, + 1407.0, + 1352.0, + 1407.0, + 1391.0, + 1361.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1383.0, + 407.0, + 1383.0, + 407.0, + 1416.0, + 294.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1386.0, + 1405.0, + 1386.0, + 1405.0, + 1417.0, + 1374.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1094.0, + 1002.0, + 1094.0, + 1002.0, + 1136.0, + 292.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1094.0, + 1325.0, + 1094.0, + 1325.0, + 1136.0, + 1205.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1094.0, + 1405.0, + 1094.0, + 1405.0, + 1136.0, + 1357.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1126.0, + 576.0, + 1126.0, + 576.0, + 1165.0, + 292.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1126.0, + 624.0, + 1126.0, + 624.0, + 1165.0, + 612.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1126.0, + 743.0, + 1126.0, + 743.0, + 1165.0, + 702.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1126.0, + 1230.0, + 1126.0, + 1230.0, + 1165.0, + 946.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1126.0, + 1407.0, + 1126.0, + 1407.0, + 1165.0, + 1335.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1156.0, + 532.0, + 1156.0, + 532.0, + 1197.0, + 360.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1156.0, + 592.0, + 1156.0, + 592.0, + 1197.0, + 581.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1431.0, + 508.0, + 1431.0, + 508.0, + 1471.0, + 294.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1431.0, + 594.0, + 1431.0, + 594.0, + 1471.0, + 542.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1431.0, + 936.0, + 1431.0, + 936.0, + 1471.0, + 629.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1431.0, + 1384.0, + 1431.0, + 1384.0, + 1471.0, + 955.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1431.0, + 1406.0, + 1431.0, + 1406.0, + 1471.0, + 1403.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1465.0, + 393.0, + 1465.0, + 393.0, + 1505.0, + 294.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1465.0, + 590.0, + 1465.0, + 590.0, + 1505.0, + 454.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1465.0, + 754.0, + 1465.0, + 754.0, + 1505.0, + 702.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1465.0, + 1071.0, + 1465.0, + 1071.0, + 1505.0, + 924.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1465.0, + 1406.0, + 1465.0, + 1406.0, + 1505.0, + 1353.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1503.0, + 589.0, + 1503.0, + 589.0, + 1542.0, + 578.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 1404.0, + 648.0, + 1404.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 680.0, + 1127.0, + 680.0, + 1127.0, + 714.0, + 294.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1566.0, + 1405.0, + 1566.0, + 1405.0, + 1612.0, + 292.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1600.0, + 1362.0, + 1600.0, + 1362.0, + 1639.0, + 293.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1881.0, + 834.0, + 1881.0, + 834.0, + 1925.0, + 291.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1881.0, + 1261.0, + 1881.0, + 1261.0, + 1925.0, + 1190.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1881.0, + 1408.0, + 1881.0, + 1408.0, + 1925.0, + 1286.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1913.0, + 594.0, + 1913.0, + 594.0, + 1970.0, + 290.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1913.0, + 876.0, + 1913.0, + 876.0, + 1970.0, + 777.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1913.0, + 1115.0, + 1913.0, + 1115.0, + 1970.0, + 971.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1913.0, + 1343.0, + 1913.0, + 1343.0, + 1970.0, + 1330.0, + 1970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1642.0, + 451.0, + 1642.0, + 451.0, + 1687.0, + 293.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1642.0, + 906.0, + 1642.0, + 906.0, + 1687.0, + 520.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 1642.0, + 1159.0, + 1642.0, + 1159.0, + 1687.0, + 927.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1642.0, + 1404.0, + 1642.0, + 1404.0, + 1687.0, + 1227.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1678.0, + 536.0, + 1678.0, + 536.0, + 1714.0, + 296.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1678.0, + 652.0, + 1678.0, + 652.0, + 1714.0, + 601.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1678.0, + 866.0, + 1678.0, + 866.0, + 1714.0, + 724.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1968.0, + 742.0, + 1968.0, + 742.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1968.0, + 794.0, + 1968.0, + 794.0, + 2009.0, + 784.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1968.0, + 921.0, + 1968.0, + 921.0, + 2009.0, + 838.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1968.0, + 1118.0, + 1968.0, + 1118.0, + 2009.0, + 999.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1968.0, + 1405.0, + 1968.0, + 1405.0, + 2009.0, + 1196.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 648.0, + 2001.0, + 648.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 2001.0, + 857.0, + 2001.0, + 857.0, + 2037.0, + 852.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1050.0, + 1239.0, + 1050.0, + 1239.0, + 1089.0, + 293.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1773.0, + 370.0, + 1773.0, + 370.0, + 1814.0, + 295.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1773.0, + 892.0, + 1773.0, + 892.0, + 1814.0, + 464.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 1773.0, + 920.0, + 1773.0, + 920.0, + 1814.0, + 913.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 714.0, + 1224.0, + 714.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1224.0, + 1051.0, + 1224.0, + 1051.0, + 1269.0, + 757.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 1224.0, + 1319.0, + 1224.0, + 1319.0, + 1269.0, + 1087.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1224.0, + 1410.0, + 1224.0, + 1410.0, + 1269.0, + 1399.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1839.0, + 855.0, + 1839.0, + 855.0, + 1876.0, + 296.0, + 1876.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1165, + 1407, + 1165, + 1407, + 1356, + 296, + 1356 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1011, + 1406, + 1011, + 1406, + 1109, + 296, + 1109 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 732, + 592, + 966, + 592, + 966, + 662, + 732, + 662 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 297, + 335, + 1406, + 335, + 1406, + 432, + 297, + 432 + ], + "score": 0.957 + }, + { + "category_id": 8, + "poly": [ + 705, + 721, + 991, + 721, + 991, + 788, + 705, + 788 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 294, + 518, + 1403, + 518, + 1403, + 583, + 294, + 583 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 295, + 904, + 1409, + 904, + 1409, + 978, + 295, + 978 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 290, + 226, + 1407, + 226, + 1407, + 295, + 290, + 295 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 542, + 1556, + 1154, + 1556, + 1154, + 1615, + 542, + 1615 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 496, + 1430, + 1202, + 1430, + 1202, + 1493, + 496, + 1493 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 295, + 1871, + 1400, + 1871, + 1400, + 2012, + 295, + 2012 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 392, + 438, + 1300, + 438, + 1300, + 491, + 392, + 491 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 299, + 1623, + 1405, + 1623, + 1405, + 1696, + 299, + 1696 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 296, + 810, + 868, + 810, + 868, + 845, + 296, + 845 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 298, + 1515, + 764, + 1515, + 764, + 1548, + 298, + 1548 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 669, + 937, + 669, + 937, + 713, + 297, + 713 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 1708, + 1035, + 1708, + 1035, + 1742, + 297, + 1742 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 299, + 1826, + 756, + 1826, + 756, + 1860, + 299, + 1860 + ], + "score": 0.915 + }, + { + "category_id": 8, + "poly": [ + 418, + 1753, + 1279, + 1753, + 1279, + 1820, + 418, + 1820 + ], + "score": 0.91 + }, + { + "category_id": 9, + "poly": [ + 1365, + 740, + 1401, + 740, + 1401, + 770, + 1365, + 770 + ], + "score": 0.89 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1570, + 1401, + 1570, + 1401, + 1601, + 1365, + 1601 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1444, + 1401, + 1444, + 1401, + 1475, + 1365, + 1475 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1365, + 611, + 1401, + 611, + 1401, + 642, + 1365, + 642 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1768, + 1401, + 1768, + 1401, + 1798, + 1365, + 1798 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1351, + 2005, + 1401, + 2005, + 1401, + 2034, + 1351, + 2034 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 835, + 2087, + 864, + 2087, + 864, + 2113, + 835, + 2113 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 1374, + 858, + 1403, + 858, + 1403, + 888, + 1374, + 888 + ], + "score": 0.831 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1122, + 1403, + 1122, + 1403, + 1151, + 1374, + 1151 + ], + "score": 0.804 + }, + { + "category_id": 1, + "poly": [ + 299, + 1385, + 892, + 1385, + 892, + 1419, + 299, + 1419 + ], + "score": 0.229 + }, + { + "category_id": 14, + "poly": [ + 730, + 590, + 969, + 590, + 969, + 662, + 730, + 662 + ], + "score": 0.96, + "latex": "\\frac { \\lambda } { \\sigma ^ { 2 } } + \\frac { \\log ( 1 / \\delta ) } { \\lambda - 1 } \\leq \\epsilon ." + }, + { + "category_id": 14, + "poly": [ + 704, + 720, + 995, + 720, + 995, + 789, + 704, + 789 + ], + "score": 0.94, + "latex": "\\sigma ^ { 2 } \\geq \\frac { 2 \\left( \\epsilon + 2 \\log ( 1 / \\delta ) \\right) } { \\epsilon ^ { 2 } } ." + }, + { + "category_id": 13, + "poly": [ + 387, + 670, + 591, + 670, + 591, + 713, + 387, + 713 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\lambda = 1 + \\frac { 2 \\log ( 1 / \\delta ) } { \\epsilon } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1254, + 660, + 1254, + 660, + 1326, + 298, + 1326 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\mathcal { O } \\left( \\frac { \\sqrt { k \\log ( 1 / \\delta ) } } { n \\epsilon } + \\frac { \\bar { r } \\sqrt { p \\log ( 1 / \\delta ) } } { n \\epsilon } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 570, + 521, + 684, + 521, + 684, + 551, + 570, + 551 + ], + "score": 0.92, + "latex": "\\sigma _ { 2 } = S _ { 2 } \\sigma" + }, + { + "category_id": 13, + "poly": [ + 776, + 907, + 886, + 907, + 886, + 941, + 776, + 941 + ], + "score": 0.92, + "latex": "\\delta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 397, + 1827, + 468, + 1827, + 468, + 1861, + 397, + 1861 + ], + "score": 0.92, + "latex": "L ( \\theta _ { * } )" + }, + { + "category_id": 13, + "poly": [ + 674, + 1168, + 1049, + 1168, + 1049, + 1210, + 674, + 1210 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { L ( \\pmb \\theta ) = \\frac { 1 } { n } \\sum _ { ( \\pmb x , y ) \\in \\mathbb { D } } \\ell ( f _ { \\pmb \\theta } ( \\pmb x ) , y ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 747, + 1266, + 932, + 1266, + 932, + 1310, + 747, + 1310 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\bar { r } = \\frac { 1 } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 939, + 632, + 939, + 632, + 978, + 373, + 978 + ], + "score": 0.92, + "latex": "\\sigma \\geq 2 \\sqrt { 2 T \\log ( 1 / \\delta ) } / \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 904, + 400, + 977, + 400, + 977, + 432, + 904, + 432 + ], + "score": 0.92, + "latex": "S _ { 1 } , S _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1127, + 517, + 1208, + 517, + 1208, + 556, + 1127, + 556 + ], + "score": 0.92, + "latex": "( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )" + }, + { + "category_id": 13, + "poly": [ + 402, + 521, + 517, + 521, + 517, + 551, + 402, + 551 + ], + "score": 0.92, + "latex": "\\sigma _ { 1 } = S _ { 1 } \\sigma" + }, + { + "category_id": 13, + "poly": [ + 779, + 551, + 839, + 551, + 839, + 584, + 779, + 584 + ], + "score": 0.91, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1664, + 470, + 1664, + 470, + 1696, + 298, + 1696 + ], + "score": 0.91, + "latex": "\\operatorname * { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|" + }, + { + "category_id": 13, + "poly": [ + 758, + 1210, + 962, + 1210, + 962, + 1251, + 758, + 1251 + ], + "score": 0.91, + "latex": "\\begin{array} { r c l } { \\overline { { \\pmb { \\theta } } } } & { = } & { \\frac { 1 } { T } \\sum _ { t = 1 } ^ { T } \\pmb { \\theta } _ { t } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 543, + 1555, + 1154, + 1555, + 1154, + 1615, + 543, + 1615 + ], + "score": 0.91, + "latex": "\\pmb { \\theta } _ { t + 1 } - \\pmb { \\theta } _ { t } = - \\eta \\tilde { \\pmb { v } } = - \\eta \\nabla L ( \\pmb { \\theta } _ { t } ) - \\frac { \\eta } { n } ( z _ { t } ^ { ( 1 ) } \\pmb { B } + z _ { t } ^ { ( 2 ) } ) ," + }, + { + "category_id": 13, + "poly": [ + 563, + 1072, + 599, + 1072, + 599, + 1111, + 563, + 1111 + ], + "score": 0.91, + "latex": "\\textstyle { \\frac { T \\lambda } { \\sigma ^ { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 1313, + 1010, + 1395, + 1010, + 1395, + 1049, + 1313, + 1049 + ], + "score": 0.91, + "latex": "( \\lambda , { \\frac { \\lambda } { \\sigma ^ { 2 } } } )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1867, + 1407, + 1867, + 1407, + 2014, + 310, + 2014 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } & { \\mathbb { I } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\mathbb { E } [ L ( \\theta _ { t } ) ] - L ( \\theta _ { * } ) - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\qquad \\le \\mathbb { E } [ \\langle \\nabla L ( \\theta _ { t } ) , \\theta _ { t } - \\theta _ { * } \\rangle ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\left. \\nabla L ( \\theta _ { t } ) \\right. ^ { 2 } ] + \\displaystyle \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 984, + 1273, + 1217, + 1273, + 1217, + 1308, + 984, + 1308 + ], + "score": 0.91, + "latex": "r _ { t } = \\operatorname* { m a x } _ { i } \\| ( \\pmb { R } _ { t } ) _ { i , : } \\|" + }, + { + "category_id": 13, + "poly": [ + 297, + 369, + 385, + 369, + 385, + 398, + 297, + 398 + ], + "score": 0.91, + "latex": "\\mathbb { D } \\sim \\mathbb { D } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1072, + 382, + 1072, + 382, + 1111, + 296, + 1111 + ], + "score": 0.91, + "latex": "( \\lambda , \\frac { T \\lambda } { \\sigma ^ { 2 } } )" + }, + { + "category_id": 13, + "poly": [ + 436, + 370, + 507, + 370, + 507, + 401, + 436, + 401 + ], + "score": 0.9, + "latex": "R , R ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 558, + 1210, + 683, + 1210, + 683, + 1255, + 558, + 1255 + ], + "score": 0.9, + "latex": "\\begin{array} { l } { T \\ = \\ { \\frac { n \\beta \\epsilon } { \\sqrt { p } } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1032, + 230, + 1099, + 230, + 1099, + 264, + 1032, + 264 + ], + "score": 0.9, + "latex": "( \\lambda , \\gamma )" + }, + { + "category_id": 14, + "poly": [ + 496, + 1425, + 1203, + 1425, + 1203, + 1494, + 496, + 1494 + ], + "score": 0.9, + "latex": "L ( \\pmb \\theta _ { t + 1 } ) \\leq L ( \\pmb \\theta _ { t } ) + \\langle \\nabla L ( \\pmb \\theta _ { t } ) , \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\rangle + \\frac { \\beta } { 2 } \\left. \\pmb \\theta _ { t + 1 } - \\pmb \\theta _ { t } \\right. ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 418, + 1748, + 1279, + 1748, + 1279, + 1820, + 418, + 1820 + ], + "score": 0.9, + "latex": "\\mathbb { E } [ L ( \\pmb { \\theta } _ { t + 1 } ) ] \\leq \\mathbb { E } [ L ( \\pmb { \\theta } _ { t } ) ] - ( \\eta - \\beta \\eta ^ { 2 } / 2 ) \\mathbb { E } [ \\| \\nabla L ( \\pmb { \\theta } _ { t } ) \\| ^ { 2 } ] + \\frac { \\beta \\eta ^ { 2 } \\sigma ^ { 2 } } { 2 n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) ." + }, + { + "category_id": 13, + "poly": [ + 442, + 1211, + 539, + 1211, + 539, + 1254, + 442, + 1254 + ], + "score": 0.9, + "latex": "\\begin{array} { r l r } { \\eta } & { { } = } & { \\frac { 1 } { \\beta } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1210, + 1404, + 1210, + 1404, + 1249, + 1153, + 1249 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\mathbb { E } [ L ( \\bar { \\pmb \\theta } ) ] ~ - ~ L ( \\pmb \\theta _ { * } ) ~ \\leq } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 557, + 907, + 723, + 907, + 723, + 941, + 557, + 941 + ], + "score": 0.9, + "latex": "\\epsilon < 2 \\log ( 1 / \\delta )" + }, + { + "category_id": 14, + "poly": [ + 391, + 438, + 1302, + 438, + 1302, + 490, + 391, + 490 + ], + "score": 0.9, + "latex": "\\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { w } - \\boldsymbol { w } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { W } \\sim \\boldsymbol { W } ^ { \\prime } } \\| \\boldsymbol { W } _ { n , : } \\| \\le S _ { 1 } , \\quad \\operatorname* { m a x } _ { \\mathbb { D } \\sim \\mathbb { D } ^ { \\prime } } \\| \\boldsymbol { r } - \\boldsymbol { r } ^ { \\prime } \\| = \\operatorname* { m a x } _ { \\boldsymbol { R } \\sim \\boldsymbol { R } ^ { \\prime } } \\| \\boldsymbol { R } _ { n , : } \\| \\le S _ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 660, + 262, + 776, + 262, + 776, + 291, + 660, + 291 + ], + "score": 0.89, + "latex": "0 < \\delta < 1" + }, + { + "category_id": 13, + "poly": [ + 1273, + 907, + 1333, + 907, + 1333, + 941, + 1273, + 941 + ], + "score": 0.87, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 755, + 230, + 814, + 230, + 814, + 264, + 755, + 264 + ], + "score": 0.87, + "latex": "( \\epsilon , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 297, + 261, + 533, + 261, + 533, + 296, + 297, + 296 + ], + "score": 0.86, + "latex": "\\log ( 1 / \\delta ) / ( \\lambda - 1 ) , \\delta )" + }, + { + "category_id": 13, + "poly": [ + 556, + 400, + 658, + 400, + 658, + 431, + 556, + 431 + ], + "score": 0.85, + "latex": "W ^ { \\prime } \\left( R ^ { \\prime } \\right)" + }, + { + "category_id": 13, + "poly": [ + 605, + 1388, + 625, + 1388, + 625, + 1418, + 605, + 1418 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 378, + 1624, + 643, + 1624, + 643, + 1664, + 378, + 1664 + ], + "score": 0.83, + "latex": "\\boldsymbol { z } _ { t } ^ { ( 1 ) } \\sim \\mathcal { N } ( 0 , \\sigma ^ { 2 } \\boldsymbol { I } _ { k \\times k } )" + }, + { + "category_id": 13, + "poly": [ + 1337, + 1635, + 1404, + 1635, + 1404, + 1664, + 1337, + 1664 + ], + "score": 0.82, + "latex": "r _ { t } = " + }, + { + "category_id": 13, + "poly": [ + 1348, + 230, + 1410, + 230, + 1410, + 265, + 1348, + 265 + ], + "score": 0.82, + "latex": "( \\gamma +" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1173, + 1396, + 1173, + 1396, + 1204, + 1376, + 1204 + ], + "score": 0.8, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 661, + 1625, + 950, + 1625, + 950, + 1666, + 661, + 1666 + ], + "score": 0.8, + "latex": "\\boldsymbol { z } _ { t } ^ { ( 2 ) } \\sim \\mathcal { N } ( \\boldsymbol { 0 } , \\sigma ^ { 2 } r _ { t } ^ { 2 } \\boldsymbol { I } _ { p \\times p } )" + }, + { + "category_id": 13, + "poly": [ + 719, + 338, + 764, + 338, + 764, + 368, + 719, + 368 + ], + "score": 0.79, + "latex": "W ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 796, + 526, + 815, + 526, + 815, + 548, + 796, + 548 + ], + "score": 0.77, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 619, + 819, + 634, + 819, + 634, + 839, + 619, + 839 + ], + "score": 0.71, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 972, + 1666, + 985, + 1666, + 985, + 1690, + 972, + 1690 + ], + "score": 0.71, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 916, + 231, + 953, + 231, + 953, + 260, + 916, + 260 + ], + "score": 0.69, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1173, + 1102, + 1173, + 1102, + 1200, + 1085, + 1200 + ], + "score": 0.61, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 671, + 339, + 708, + 339, + 708, + 367, + 671, + 367 + ], + "score": 0.58, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 603, + 1326, + 615, + 1326, + 615, + 1349, + 603, + 1349 + ], + "score": 0.48, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1316, + 369, + 1402, + 369, + 1402, + 401, + 1316, + 401 + ], + "score": 0.4, + "latex": "W \\left( R \\right)" + }, + { + "category_id": 13, + "poly": [ + 1232, + 231, + 1269, + 231, + 1269, + 260, + 1232, + 260 + ], + "score": 0.38, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1363, + 371, + 1401, + 371, + 1401, + 400, + 1363, + 400 + ], + "score": 0.27, + "latex": "( R )" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 863.0, + 1403.0, + 863.0, + 1403.0, + 887.0, + 1377.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1126.0, + 1403.0, + 1126.0, + 1403.0, + 1153.0, + 1377.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1163.0, + 673.0, + 1163.0, + 673.0, + 1214.0, + 293.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1163.0, + 1084.0, + 1163.0, + 1084.0, + 1214.0, + 1050.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1163.0, + 1375.0, + 1163.0, + 1375.0, + 1214.0, + 1103.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1163.0, + 1410.0, + 1163.0, + 1410.0, + 1214.0, + 1397.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1210.0, + 441.0, + 1210.0, + 441.0, + 1252.0, + 290.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1210.0, + 557.0, + 1210.0, + 557.0, + 1252.0, + 540.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1195.0, + 757.0, + 1195.0, + 757.0, + 1266.0, + 684.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 1195.0, + 1152.0, + 1195.0, + 1152.0, + 1266.0, + 963.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1195.0, + 1411.0, + 1195.0, + 1411.0, + 1266.0, + 1405.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1320.0, + 602.0, + 1320.0, + 602.0, + 1357.0, + 295.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1320.0, + 627.0, + 1320.0, + 627.0, + 1357.0, + 616.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.25, + 1224.5, + 700.25, + 1224.5, + 700.25, + 1256.0, + 638.25, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1249.5, + 1414.0, + 1249.5, + 1414.0, + 1331.0, + 652.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1007.0, + 1312.0, + 1007.0, + 1312.0, + 1053.0, + 291.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 1007.0, + 1408.0, + 1007.0, + 1408.0, + 1053.0, + 1396.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1040.0, + 1407.0, + 1040.0, + 1407.0, + 1080.0, + 291.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1062.0, + 295.0, + 1062.0, + 295.0, + 1121.0, + 286.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1062.0, + 562.0, + 1062.0, + 562.0, + 1121.0, + 383.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1062.0, + 1088.0, + 1062.0, + 1088.0, + 1121.0, + 600.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 337.0, + 670.0, + 337.0, + 670.0, + 375.0, + 294.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 337.0, + 718.0, + 337.0, + 718.0, + 375.0, + 709.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 337.0, + 1406.0, + 337.0, + 1406.0, + 375.0, + 765.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 366.0, + 296.0, + 366.0, + 296.0, + 407.0, + 292.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 366.0, + 435.0, + 366.0, + 435.0, + 407.0, + 386.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 366.0, + 1315.0, + 366.0, + 1315.0, + 407.0, + 508.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 366.0, + 1406.0, + 366.0, + 1406.0, + 407.0, + 1403.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 396.0, + 555.0, + 396.0, + 555.0, + 436.0, + 292.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 396.0, + 903.0, + 396.0, + 903.0, + 436.0, + 659.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 396.0, + 989.0, + 396.0, + 989.0, + 436.0, + 978.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 514.0, + 401.0, + 514.0, + 401.0, + 558.0, + 293.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 514.0, + 569.0, + 514.0, + 569.0, + 558.0, + 518.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 514.0, + 795.0, + 514.0, + 795.0, + 558.0, + 685.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 514.0, + 1126.0, + 514.0, + 1126.0, + 558.0, + 816.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 514.0, + 1408.0, + 514.0, + 1408.0, + 558.0, + 1209.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 547.0, + 778.0, + 547.0, + 778.0, + 585.0, + 293.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 547.0, + 991.0, + 547.0, + 991.0, + 585.0, + 840.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 903.0, + 556.0, + 903.0, + 556.0, + 945.0, + 296.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 903.0, + 775.0, + 903.0, + 775.0, + 945.0, + 724.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 903.0, + 1272.0, + 903.0, + 1272.0, + 945.0, + 887.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 903.0, + 1410.0, + 903.0, + 1410.0, + 945.0, + 1334.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 938.0, + 372.0, + 938.0, + 372.0, + 978.0, + 297.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 938.0, + 640.0, + 938.0, + 640.0, + 978.0, + 633.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 223.0, + 754.0, + 223.0, + 754.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 223.0, + 915.0, + 223.0, + 915.0, + 268.0, + 815.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 223.0, + 1031.0, + 223.0, + 1031.0, + 268.0, + 954.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 223.0, + 1231.0, + 223.0, + 1231.0, + 268.0, + 1100.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 223.0, + 1347.0, + 223.0, + 1347.0, + 268.0, + 1270.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 296.0, + 259.0, + 296.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 259.0, + 659.0, + 259.0, + 659.0, + 296.0, + 534.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 259.0, + 789.0, + 259.0, + 789.0, + 296.0, + 777.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1611.0, + 377.0, + 1611.0, + 377.0, + 1676.0, + 288.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1611.0, + 660.0, + 1611.0, + 660.0, + 1676.0, + 644.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1611.0, + 1336.0, + 1611.0, + 1336.0, + 1676.0, + 951.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 1611.0, + 1410.0, + 1611.0, + 1410.0, + 1676.0, + 1405.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1658.0, + 297.0, + 1658.0, + 297.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1658.0, + 971.0, + 1658.0, + 971.0, + 1700.0, + 471.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1658.0, + 999.0, + 1658.0, + 999.0, + 1700.0, + 986.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 810.0, + 618.0, + 810.0, + 618.0, + 846.0, + 296.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 810.0, + 867.0, + 810.0, + 867.0, + 846.0, + 635.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1515.0, + 764.0, + 1515.0, + 764.0, + 1551.0, + 296.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 667.0, + 386.0, + 667.0, + 386.0, + 719.0, + 292.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 667.0, + 937.0, + 667.0, + 937.0, + 719.0, + 592.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1704.0, + 1039.0, + 1704.0, + 1039.0, + 1748.0, + 292.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1825.0, + 396.0, + 1825.0, + 396.0, + 1862.0, + 297.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1825.0, + 757.0, + 1825.0, + 757.0, + 1862.0, + 469.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1381.0, + 604.0, + 1381.0, + 604.0, + 1425.0, + 293.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1381.0, + 897.0, + 1381.0, + 897.0, + 1425.0, + 626.0, + 1425.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 317, + 359, + 1334, + 359, + 1334, + 507, + 317, + 507 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 508, + 589, + 1184, + 589, + 1184, + 677, + 508, + 677 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 535, + 915, + 535, + 915, + 571, + 298, + 571 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 709, + 1211, + 709, + 1211, + 757, + 297, + 757 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 814, + 73, + 814, + 106, + 298, + 106 + ], + "score": 0.921 + }, + { + "category_id": 9, + "poly": [ + 1350, + 615, + 1401, + 615, + 1401, + 647, + 1350, + 647 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1351, + 416, + 1401, + 416, + 1401, + 447, + 1351, + 447 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.846 + }, + { + "category_id": 2, + "poly": [ + 1373, + 770, + 1405, + 770, + 1405, + 800, + 1373, + 800 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 295, + 226, + 1405, + 226, + 1405, + 304, + 295, + 304 + ], + "score": 0.792 + }, + { + "category_id": 13, + "poly": [ + 497, + 711, + 599, + 711, + 599, + 759, + 497, + 759 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { T = \\frac { n \\beta \\epsilon } { \\sqrt { p } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 317, + 355, + 1333, + 355, + 1333, + 511, + 317, + 511 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\displaystyle \\mathbb { E } [ L ( \\theta _ { t + 1 } ) ] - L ( \\theta _ { * } ) \\le \\beta \\mathbb { E } [ \\langle \\theta _ { t } - \\theta _ { t + 1 } , \\theta _ { t } - \\theta _ { * } \\rangle ] - \\frac { \\beta } { 2 } \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { t + 1 } \\| ^ { 2 } ] + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad = \\displaystyle \\frac { \\beta } { 2 } \\left( \\mathbb { E } [ \\| \\theta _ { t } - \\theta _ { * } \\| ^ { 2 } ] - \\mathbb { E } [ \\| \\theta _ { t + 1 } - \\theta _ { * } \\| ^ { 2 } ] \\right) + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } \\left( k + p r _ { t } ^ { 2 } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1060, + 227, + 1151, + 227, + 1151, + 272, + 1060, + 272 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\eta \\mathrm { ~ = ~ } \\frac { 1 } { \\beta } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 411, + 539, + 603, + 539, + 603, + 569, + 411, + 569 + ], + "score": 0.93, + "latex": "t = 0 , \\ldots , T - 1" + }, + { + "category_id": 14, + "poly": [ + 511, + 583, + 1188, + 583, + 1188, + 679, + 511, + 679 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ L ( \\bar { \\theta } ) ] - L ( \\theta _ { * } ) \\le \\frac { \\beta } { 2 T } \\lVert \\theta _ { 0 } - \\theta _ { * } \\rVert + \\frac { \\sigma ^ { 2 } } { \\beta n ^ { 2 } } ( k + \\frac { p } { T } \\sum _ { t = 0 } ^ { T - 1 } r _ { t } ^ { 2 } ) ." + }, + { + "category_id": 13, + "poly": [ + 651, + 711, + 926, + 711, + 926, + 752, + 651, + 752 + ], + "score": 0.92, + "latex": "\\sigma = \\mathcal { O } ( \\sqrt { T \\log ( 1 / \\delta ) } / \\epsilon )" + }, + { + "category_id": 13, + "poly": [ + 295, + 265, + 662, + 265, + 662, + 303, + 295, + 303 + ], + "score": 0.9, + "latex": "( \\pmb { \\theta } _ { t } - \\pmb { \\theta } _ { t + 1 } ) / \\eta - ( z _ { 1 } ^ { t } \\pmb { B } + z _ { 2 } ^ { t } ) / n" + }, + { + "category_id": 13, + "poly": [ + 1271, + 229, + 1403, + 229, + 1403, + 265, + 1271, + 265 + ], + "score": 0.87, + "latex": "\\nabla L ( \\pmb \\theta _ { t } ) =" + }, + { + "category_id": 13, + "poly": [ + 736, + 232, + 760, + 232, + 760, + 258, + 736, + 258 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 773.0, + 1404.0, + 773.0, + 1404.0, + 804.0, + 1376.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 534.0, + 410.0, + 534.0, + 410.0, + 574.0, + 296.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 534.0, + 915.0, + 534.0, + 915.0, + 574.0, + 604.0, + 574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 707.0, + 496.0, + 707.0, + 496.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 710.0, + 650.0, + 710.0, + 650.0, + 754.0, + 601.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 710.0, + 1215.0, + 710.0, + 1215.0, + 754.0, + 927.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 735.0, + 225.0, + 735.0, + 272.0, + 293.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 225.0, + 1059.0, + 225.0, + 1059.0, + 272.0, + 761.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 225.0, + 1270.0, + 225.0, + 1270.0, + 272.0, + 1152.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 265.0, + 812.0, + 265.0, + 812.0, + 304.0, + 663.0, + 304.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/B1kJ6H9ex/B1kJ6H9ex.md b/parse/train/B1kJ6H9ex/B1kJ6H9ex.md new file mode 100644 index 0000000000000000000000000000000000000000..cb76805967a801a4d88de45f77589e4cd13c9682 --- /dev/null +++ b/parse/train/B1kJ6H9ex/B1kJ6H9ex.md @@ -0,0 +1,397 @@ +# COMBINING POLICY GRADIENT AND Q-LEARNING + +Brendan O’Donoghue, Remi Munos, Koray Kavukcuoglu & Volodymyr Mnih ´ Deepmind {bodonoghue,munos,korayk,vmnih}@google.com + +# ABSTRACT + +Policy gradient is an efficient technique for improving a policy in a reinforcement learning setting. However, vanilla online variants are on-policy only and not able to take advantage of off-policy data. In this paper we describe a new technique that combines policy gradient with off-policy Q-learning, drawing experience from a replay buffer. This is motivated by making a connection between the fixed points of the regularized policy gradient algorithm and the Q-values. This connection allows us to estimate the Q-values from the action preferences of the policy, to which we apply Q-learning updates. We refer to the new technique as ‘PGQL’, for policy gradient and Q-learning. We also establish an equivalency between action-value fitting techniques and actor-critic algorithms, showing that regularized policy gradient techniques can be interpreted as advantage function learning algorithms. We conclude with some numerical examples that demonstrate improved data efficiency and stability of PGQL. In particular, we tested PGQL on the full suite of Atari games and achieved performance exceeding that of both asynchronous advantage actor-critic (A3C) and Q-learning. + +# 1 INTRODUCTION + +In reinforcement learning an agent explores an environment and through the use of a reward signal learns to optimize its behavior to maximize the expected long-term return. Reinforcement learning has seen success in several areas including robotics (Lin, 1993; Levine et al., 2015), computer games (Mnih et al., 2013; 2015), online advertising (Pednault et al., 2002), board games (Tesauro, 1995; Silver et al., 2016), and many others. For an introduction to reinforcement learning we refer to the classic text by Sutton & Barto (1998). In this paper we consider model-free reinforcement learning, where the state-transition function is not known or learned. There are many different algorithms for model-free reinforcement learning, but most fall into one of two families: action-value fitting and policy gradient techniques. + +Action-value techniques involve fitting a function, called the Q-values, that captures the expected return for taking a particular action at a particular state, and then following a particular policy thereafter. Two alternatives we discuss in this paper are SARSA (Rummery & Niranjan, 1994) and Q-learning (Watkins, 1989), although there are many others. SARSA is an on-policy algorithm whereby the action-value function is fit to the current policy, which is then refined by being mostly greedy with respect to those action-values. On the other hand, Q-learning attempts to find the Qvalues associated with the optimal policy directly and does not fit to the policy that was used to generate the data. Q-learning is an off-policy algorithm that can use data generated by another agent or from a replay buffer of old experience. Under certain conditions both SARSA and Q-learning can be shown to converge to the optimal Q-values, from which we can derive the optimal policy (Sutton, 1988; Bertsekas & Tsitsiklis, 1996). + +In policy gradient techniques the policy is represented explicitly and we improve the policy by updating the parameters in the direction of the gradient of the performance (Sutton et al., 1999; Silver et al., 2014; Kakade, 2001). Online policy gradient typically requires an estimate of the action-value function of the current policy. For this reason they are often referred to as actor-critic methods, where the actor refers to the policy and the critic to the estimate of the action-value function (Konda & Tsitsiklis, 2003). Vanilla actor-critic methods are on-policy only, although some attempts have been made to extend them to off-policy data (Degris et al., 2012; Levine & Koltun, 2013). + +In this paper we derive a link between the Q-values induced by a policy and the policy itself when the policy is the fixed point of a regularized policy gradient algorithm (where the gradient vanishes). This connection allows us to derive an estimate of the Q-values from the current policy, which we can refine using off-policy data and Q-learning. We show in the tabular setting that when the regularization penalty is small (the usual case) the resulting policy is close to the policy that would be found without the addition of the Q-learning update. Separately, we show that regularized actor-critic methods can be interpreted as action-value fitting methods, where the Q-values have been parameterized in a particular way. We conclude with some numerical examples that provide empirical evidence of improved data efficiency and stability of PGQL. + +# 1.1 PRIOR WORK + +Here we highlight various axes along which our work can be compared to others. In this paper we use entropy regularization to ensure exploration in the policy, which is a common practice in policy gradient (Williams & Peng, 1991; Mnih et al., 2016). An alternative is to use KL-divergence instead of entropy as a regularizer, or as a constraint on how much deviation is permitted from a prior policy (Bagnell & Schneider, 2003; Peters et al., 2010; Schulman et al., 2015; Fox et al., 2015). Natural policy gradient can also be interpreted as putting a constraint on the KL-divergence at each step of the policy improvement (Amari, 1998; Kakade, 2001; Pascanu & Bengio, 2013). In Sallans & Hinton (2004) the authors use a Boltzmann exploration policy over estimated Q-values which they update using TD-learning. In Heess et al. (2012) this was extended to use an actor-critic algorithm instead of TD-learning, however the two updates were not combined as we have done in this paper. In Azar et al. (2012) the authors develop an algorithm called dynamic policy programming, whereby they apply a Bellman-like update to the action-preferences of a policy, which is similar in spirit to the update we describe here. In Norouzi et al. (2016) the authors augment a maximum likelihood objective with a reward in a supervised learning setting, and develop a connection that resembles the one we develop here between the policy and the Q-values. Other works have attempted to combine on and off-policy learning, primarily using action-value fitting methods (Wang et al., 2013; Hausknecht & Stone, 2016; Lehnert & Precup, 2015), with varying degrees of success. In this paper we establish a connection between actor-critic algorithms and action-value learning algorithms. In particular we show that TD-actor-critic (Konda & Tsitsiklis, 2003) is equivalent to expected-SARSA (Sutton & Barto, 1998, Exercise 6.10) with Boltzmann exploration where the Q-values are decomposed into advantage function and value function. The algorithm we develop extends actor-critic with a Q-learning style update that, due to the decomposition of the Q-values, resembles the update of the dueling architecture (Wang et al., 2016). Recently, the field of deep reinforcement learning, i.e., the use of deep neural networks to represent action-values or a policy, has seen a lot of success (Mnih et al., 2015; 2016; Silver et al., 2016; Riedmiller, 2005; Lillicrap et al., 2015; Van Hasselt et al., 2016). In the examples section we use a neural network with PGQL to play the Atari games suite. + +# 2 REINFORCEMENT LEARNING + +We consider the infinite horizon, discounted, finite state and action space Markov decision process, with state space $s$ , action space $\mathcal { A }$ and rewards at each time period denoted by $r _ { t } \in \mathbb { R }$ . A policy $\pi : S \times A \to \mathbb { R } _ { + }$ is a mapping from state-action pair to the probability of taking that action at that state, so it must satisfy $\begin{array} { r } { \sum _ { a \in \mathcal { A } } \pi ( s , a ) = 1 } \end{array}$ for all states $s \in { \mathcal { S } }$ . Any policy $\pi$ induces a probability distribution over visited states, $d ^ { \pi } : S \to \mathbb { R } _ { + }$ (which may depend on the initial state), so the probability of seeing state-action pair $( s , a ) \in S \times A$ is $d ^ { \pi } ( s ) \pi ( s , a )$ . + +In reinforcement learning an ‘agent’ interacts with an environment over a number of times steps. At each time step $t$ the agent receives a state $s _ { t }$ and a reward $r _ { t }$ and selects an action $a _ { t }$ from the policy $\pi _ { t }$ , at which point the agent moves to the next state $s _ { t + 1 } \sim P ( \cdot , s _ { t } , a _ { t } )$ , where $P ( s ^ { \prime } , s , a )$ is the probability of transitioning from state $s$ to state $s ^ { \prime }$ after taking action $a$ . This continues until the agent encounters a teto find a policy where the expec $\pi$ inal state (after which the process is typically restartthat maximizes the expected total discounted return tion is with respect to the initial state distribution, the $\begin{array} { r } { J ( \pi ) = \mathbf { \bar { E } } ( \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } r _ { t } \ | \ \pi ) } \end{array}$ and the policy, and where $\gamma \in ( 0 , 1 )$ is the discount factor that, loosely speaking, controls how much the agent prioritizes long-term versus short-term rewards. Since the agent starts with no knowledge of the environment it must continually explore the state space and so will typically use a stochastic policy. + +Action-values. The action-value, or Q-value, of a particular state under policy $\pi$ is the exaction at that state . The value of state d following under polic $\pi$ thereafter, i.e.,is denoted by $\begin{array} { r } { \dot { Q } ^ { \pi } ( s , a ) = \mathbf { E } ( \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } r _ { t } \ | \ s _ { 0 } = s , a _ { 0 } = \overline { { \ a } } , \pi ) } \end{array}$ $s$ $\pi$ $\begin{array} { r } { V ^ { \pi } ( s ) = \mathbf { E } ( \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } r _ { t } \mid s _ { 0 } = s , \pi ) } \end{array}$ , which is the expected total discounted return of policy $\pi$ from state $s$ . The optimal action-value function is denoted $Q ^ { \star }$ and satisfies $Q ^ { \star } ( s , a ) = \operatorname* { m a x } _ { \pi } Q ^ { \pi } ( s , a )$ for each $( s , a )$ . The policy that achieves the maximum is the optimal policy $\pi ^ { \star }$ , with value function $V ^ { \star }$ . The advantage function is the difference between the action-value and the value function, i.e., $A ^ { \pi } ( s , a ) = Q ^ { \pi } ( \bar { s _ { \bf { \Re } } } a ) - V ^ { \pi } ( s )$ , and represents the additional expected reward of taking action $a$ over the average performance of the policy from state $s$ . Since $\begin{array} { r } { V ^ { \bar { \pi } } ( s ) = \sum _ { a } \pi ( s , a ) Q ^ { \pi } \bar { ( } s , a ) } \end{array}$ we have the identity $\begin{array} { r } { \sum _ { a } \pi ( s , a ) A ^ { \pi } ( s , a ) ^ { - } = 0 } \end{array}$ , which simply states that the policy $\pi$ has no advantage over itself. + +Bellman equation. The Bellman operator $\mathcal { T } ^ { \pi }$ (Bellman, 1957) for policy $\pi$ is defined as + +$$ +\mathcal { T } ^ { \pi } Q ( s , a ) = \mathrm { \bf ~ E } _ { s ^ { \prime } , r , b } ( r ( s , a ) + \gamma Q ( s ^ { \prime } , b ) ) , +$$ + +where the expectation is over next state $s ^ { \prime } \sim P ( \cdot , s , a )$ , the reward $r ( s , a )$ , and the action $b$ from policy $\pi _ { s ^ { \prime } }$ . The Q-value function for policy $\pi$ is the fixed point of the Bellman operator for $\pi$ , i.e., ${ \mathcal { T } } ^ { \pi } Q ^ { \pi } = Q ^ { \pi }$ . The optimal Bellman operator $\mathcal { T } ^ { \star }$ is defined as + +$$ +\mathcal { T } ^ { \star } Q ( s , a ) = \mathbf { E } _ { s ^ { \prime } , r } ( r ( s , a ) + \gamma \operatorname* { m a x } _ { b } Q ( s ^ { \prime } , b ) ) , +$$ + +where the expectation is over the next state $s ^ { \prime } \sim P ( \cdot , s , a )$ , and the reward $r ( s , a )$ . The optimal Q-value function is the fixed point of the optimal Bellman equation, i.e., ${ \mathcal { T } } ^ { \star } Q ^ { \star } = Q ^ { \star }$ . Both the $\pi$ -Bellman operator and the optimal Bellman operator are $\gamma$ -contraction mappings in the sup-norm, i.e., $\| T Q _ { 1 } - T Q _ { 2 } \| _ { \infty } \leq \gamma \| Q _ { 1 } - Q _ { 2 } \| _ { \infty }$ , for any $Q _ { 1 } , Q _ { 2 } \in \mathbb { R } ^ { S \times A }$ . From this fact one can show that the fixed point of each operator is unique, and that value iteration converges, i.e., $( T ^ { \pi } ) ^ { k } Q Q ^ { \pi }$ and $( T ^ { \star } ) ^ { \bar { k } } Q Q ^ { \star }$ from any initial $Q$ . (Bertsekas, 2005). + +# 2.1 ACTION-VALUE LEARNING + +In value based reinforcement learning we approximate the $\mathrm { Q }$ -values using a function approximator. We then update the parameters so that the Q-values are as close to the fixed point of a Bellman equation as possible. If we denote by $Q ( s , a ; \theta )$ the approximate Q-values parameterized by $\theta$ , then Q-learning updates the Q-values along direction $\mathbf { E } _ { s , a } ( \mathcal { T } ^ { \star } Q ( s , a ; \theta ) - Q ( \bar { s } , a ; \theta ) ) \nabla _ { \theta } Q ( s , a ; \theta )$ and SARSA updates the $\mathrm { Q }$ -values along direction $\begin{array} { r } { { \bf E } _ { s , a } ( \mathcal { T } ^ { \pi } Q ( s , a ; \theta ) - Q ( s , a ; \theta ) ) \nabla _ { \theta } Q ( s , a ; \theta ) . } \end{array}$ . In the online setting the Bellman operator is approximated by sampling and bootstrapping, whereby the Q-values at any state are updated using the Q-values from the next visited state. Exploration is achieved by not always taking the action with the highest $\mathrm { Q }$ -value at each time step. One common technique called ‘epsilon greedy’ is to sample a random action with probability $\epsilon > 0$ , where $\epsilon$ starts high and decreases over time. Another popular technique is ‘Boltzmann exploration’, where the policy is given by the softmax over the Q-values with a temperature $T$ , i.e., $\pi ( s , a ) = \mathrm { e x p } ( Q ( \dot { s , } a ) / \dot { T } ) / \bar { \sum _ { b } } \mathrm { e x p } \bar { ( } Q ( s , b ) / T )$ , where it is common to decrease the temperature over time. + +# 2.2 POLICY GRADIENT + +Alternatively, we can parameterize the policy directly and attempt to improve it via gradient ascent on the performance $J$ . The policy gradient theorem (Sutton et al., 1999) states that the gradient of $J$ with respect to the parameters of the policy is given by + +$$ +\nabla _ { \boldsymbol { \theta } } J ( \pi ) = \mathbf { \underline { { E } } } _ { s , a } Q ^ { \pi } ( s , a ) \nabla _ { \boldsymbol { \theta } } \log \pi ( s , a ) , +$$ + +where the expectation is over $( s , a )$ with probability $d ^ { \pi } ( s ) \pi ( s , a )$ . In the original derivation of the policy gradient theorem the expectation is over the discounted distribution of states, i.e., over $\begin{array} { r } { d _ { \gamma } ^ { \pi , \overset { \cdot } { s _ { 0 } } } ( s ) \stackrel { \cdot } { = } \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } P r \{ s _ { t } = s \mid \overset { \cdot } { s _ { 0 } } , \pi \} } \end{array}$ . However, the gradient update in that case will assign a low weight to states that take a long time to reach and can therefore have poor empirical performance. In practice the non-discounted distribution of states is frequently used instead. In certain cases this is equivalent to maximizing the average (i.e., non-discounted) policy performance, even when $Q ^ { \pi }$ uses a discount factor (Thomas, 2014). Throughout this paper we will use the non-discounted distribution of states. + +In the online case it is common to add an entropy regularizer to the gradient in order to prevent the policy becoming deterministic. This ensures that the agent will explore continually. In that case the (batch) update becomes + +$$ +\begin{array} { r } { \Delta \theta \propto \underline { { \mathbf { E } } } _ { a } Q ^ { \pi } ( s , a ) \nabla _ { \theta } \log \pi ( s , a ) + \alpha \underline { { \mathbf { E } } } _ { s } \nabla _ { \theta } H ^ { \pi } ( s ) , } \end{array} +$$ + +where $\begin{array} { r } { H ^ { \pi } ( s ) = - \sum _ { a } \pi ( s , a ) \log \pi ( s , a ) } \end{array}$ denotes the entropy of policy $\pi$ , and $\alpha > 0$ is the regularization penalty parameter. Throughout this paper we will make use of entropy regularization, however many of the results are true for other choices of regularizers with only minor modification, e.g., KL-divergence. Note that equation (2) requires exact knowledge of the Q-values. In practice they can be estimated, e.g., by the sum of discounted rewards along an observed trajectory (Williams, 1992), and the policy gradient will still perform well (Konda & Tsitsiklis, 2003). + +# 3 REGULARIZED POLICY GRADIENT ALGORITHM + +In this section we derive a relationship between the policy and the Q-values when using a regularized policy gradient algorithm. This allows us to transform a policy into an estimate of the Q-values. We then show that for small regularization the $\mathrm { Q }$ -values induced by the policy at the fixed point of the algorithm have a small Bellman error in the tabular case. + +# 3.1 TABULAR CASE + +Consider the fixed points of the entropy regularized policy gradient update (2). Let us define $f ( \theta ) =$ $\mathbf { E } _ { s , a } Q ^ { \pi } ( s , a ) \nabla _ { \theta } \log \pi ( s , a ) + \alpha \mathbf { E } _ { s } \bar { \nabla } _ { \theta } H ( \pi _ { s } )$ , and $\begin{array} { r } { \dot { g } _ { s } ( \pi ) \stackrel { - } { = } \sum _ { a } \pi ( \stackrel { - } { s } , a ) } \end{array}$ for each $s$ . A fixed point is one where we can no longer update $\theta$ in the direction of $f ( \theta )$ without violating one of the constraints $g _ { s } ( \pi ) = 1$ , i.e., where $f ( \theta )$ is in the span of the vectors $\{ \dot { \nabla _ { \theta } } g _ { s } ( \pi ) \}$ . In other words, any fixed point must satisfy $\begin{array} { r } { f ( \theta ) = \sum _ { s } \lambda _ { s } \nabla _ { \theta } g _ { s } ( \pi ) } \end{array}$ , where for each $s$ the Lagrange multiplier $\lambda _ { s } \in \mathbb { R }$ ensures that $g _ { s } ( \pi ) = 1$ . Substituting in terms to this equation we obtain + +$$ +\underset { s , a } { \mathbf { E } } \left( Q ^ { \pi } ( s , a ) - \alpha \log \pi ( s , a ) - c _ { s } \right) \nabla _ { \theta } \log \pi ( s , a ) = 0 , +$$ + +where we have absorbed all constants into $c \in \mathbb { R } ^ { | s | }$ . Any solution $\pi$ to this equation is strictly positive element-wise since it must lie in the domain of the entropy function. In the tabular case $\pi$ is represented by a single number for each state and action pair and the gradient of the policy with respect to the parameters is the indicator function, i.e., $\nabla _ { \boldsymbol { \theta } ( t , b ) } \pi ( s , a ) = \bar { \mathbf { 1 } } _ { ( t , b ) = ( s , a ) } .$ . From this we obtain $Q ^ { \pi } ( s , a ) - \alpha \log \pi ( s , a ) - c _ { s } = 0$ for each $s$ (assuming that the measure $d ^ { \pi } ( s ) > 0 )$ . Multiplying by $\pi ( \boldsymbol { a } , \boldsymbol { s } )$ and summing over $a \in { \mathcal { A } }$ we get $c _ { s } = \alpha H ^ { \pi } \bar { ( } s ) + V ^ { \pi } ( s )$ . Substituting $c$ into equation (3) we have the following formulation for the policy: + +$$ +\pi ( s , a ) = \exp ( A ^ { \pi } ( s , a ) / \alpha - H ^ { \pi } ( s ) ) , +$$ + +for all $s \in \mathcal { S }$ and $a \in \mathcal A$ . In other words, the policy at the fixed point is a softmax over the advantage function induced by that policy, where the regularization parameter $\alpha$ can be interpreted as the temperature. Therefore, we can use the policy to derive an estimate of the Q-values, + +$$ +\tilde { Q } ^ { \pi } ( s , a ) = \tilde { A } ^ { \pi } ( s , a ) + V ^ { \pi } ( s ) = \alpha ( \log \pi ( s , a ) + H ^ { \pi } ( s ) ) + V ^ { \pi } ( s ) . +$$ + +With this we can rewrite the gradient update (2) as + +$$ +\begin{array} { r } { \Delta \theta \propto \underset { s , a } { \mathbf { E } } ( Q ^ { \pi } ( s , a ) - \tilde { Q } ^ { \pi } ( s , a ) ) \nabla _ { \theta } \log \pi ( s , a ) , } \end{array} +$$ + +since the update is unchanged by per-state constant offsets. When the policy is parameterized as a softmax, i.e., $\pi ( s , a ) = \bar { \exp ( W ( s , a ) ) } / \sum _ { b } \exp W ( s , b )$ , the quantity $W$ is sometimes referred to as the action-preferences of the policy (Sutton & Barto, 1998, Chapter 6.6). Equation (4) states that the action preferences are equal to the Q-values scaled by $1 / \alpha$ , up to an additive per-state constant. + +# 3.2 GENERAL CASE + +Consider the following optimization problem: + +$$ +\begin{array} { r l } { \mathrm { n i n i m i z e } } & { \mathbf { E } _ { s , a } ( q ( s , a ) - \alpha \log \pi ( s , a ) ) ^ { 2 } } \\ { \mathrm { u b j e c t ~ t o } } & { \sum _ { a } \pi ( s , a ) = 1 , \quad s \in S } \end{array} +$$ + +over variable $\theta$ which parameterizes $\pi$ , where we consider both the measure in the expectation and the values $\boldsymbol { q } ( s , a )$ to be independent of $\theta$ . The optimality condition for this problem is + +$$ +\mathbf { E } _ { s , a } ( q ( s , a ) - \alpha \log \pi ( s , a ) + c _ { s } ) \nabla _ { \theta } \log \pi ( s , a ) = 0 , +$$ + +where $c \in \mathbb { R } ^ { | S | }$ is the Lagrange multiplier associated with the constraint that the policy sum to one at each state. Comparing this to equation (3), we see that if $q = Q ^ { \pi }$ and the measure in the expectation is the same then they describe the same set of fixed points. This suggests an interpretation of the fixed points of the regularized policy gradient as a regression of the log-policy onto the Q-values. In the general case of using an approximation architecture we can interpret equation (3) as indicating that the error between $Q ^ { \pi }$ and ${ \bf \bar { \cal Q } } ^ { \pi }$ is orthogonal to $\nabla _ { \theta _ { i } } \log \pi$ for each $i$ , and so cannot be reduced further by changing the parameters, at least locally. In this case equation (4) is unlikely to hold at a solution to (3), however with a good approximation architecture it may hold approximately, so that the we can derive an estimate of the Q-values from the policy using equation (5). We will use this estimate of the Q-values in the next section. + +# 3.3 CONNECTION TO ACTION-VALUE METHODS + +The previous section made a connection between regularized policy gradient and a regression onto the Q-values at the fixed point. In this section we go one step further, showing that actor-critic methods can be interpreted as action-value fitting methods, where the exact method depends on the choice of critic. + +Actor-critic methods. Consider an agent using an actor-critic method to learn both a policy $\pi$ and a value function $V$ . At any iteration $k$ , the value function $V ^ { k }$ has parameters $w ^ { k }$ , and the policy is of the form + +$$ +\pi ^ { k } ( s , a ) = \exp ( W ^ { k } ( s , a ) / \alpha ) / \sum _ { b } \exp ( W ^ { k } ( s , b ) / \alpha ) , +$$ + +where $W ^ { k }$ is parameterized by $\theta ^ { k }$ and $\alpha > 0$ is the entropy regularization penalty. In this case $\begin{array} { r l } { \nabla _ { \theta } \log \pi ^ { k } ( s , \dot { a _ { ) } } = ( 1 / \alpha ) ( \nabla _ { \theta } \dot { W } ^ { k } ( s , a ) - \sum _ { b } \pi ( s , b ) \nabla _ { \theta } W ^ { k } ( \dot { s } , b ) \overset { \sim } { ) } } & { { } } \end{array}$ . Using equation (6) the parameters are updated as + +$$ +\Delta \theta \propto \underset { s , a } { \mathbf { E } } \delta _ { \mathrm { a c } } ( \nabla _ { \theta } W ^ { k } ( s , a ) - \sum _ { b } \pi ^ { k } ( s , b ) \nabla _ { \theta } W ^ { k } ( s , b ) ) , \quad \Delta w \propto \underset { s , a } { \mathbf { E } } \delta _ { \mathrm { a c } } \nabla _ { w } V ^ { k } ( s ) +$$ + +where $\delta _ { \mathrm { a c } }$ is the critic minus baseline term, which depends on the variant of actor-critic being used (see the remark below). + +Action-value methods. Compare this to the case where an agent is learning Q-values with a dueling architecture (Wang et al., 2016), which at iteration $k$ is given by + +$$ +Q ^ { k } ( s , a ) = Y ^ { k } ( s , a ) - \sum _ { b } \mu ( s , b ) Y ^ { k } ( s , b ) + V ^ { k } ( s ) , +$$ + +where $\mu$ is a probability distribution, $Y ^ { k }$ is parameterized by $\theta ^ { k } , V ^ { k }$ is parameterized by $w ^ { k }$ , and the exploration policy is Boltzmann with temperature $\alpha$ , i.e., + +$$ +\pi ^ { k } ( s , a ) = \exp ( Y ^ { k } ( s , a ) / \alpha ) / \sum _ { b } \exp ( Y ^ { k } ( s , b ) / \alpha ) . +$$ + +In action value fitting methods at each iteration the parameters are updated to reduce some error, where the update is given by + +$$ +\Delta \theta \propto \underset { s , a } { \mathbf { E } } \delta _ { \mathrm { a v } } \bigl ( \nabla _ { \theta } Y ^ { k } ( s , a ) - \sum _ { b } \mu ( s , b ) \nabla _ { \theta } Y ^ { k } ( s , b ) \bigr ) , \quad \Delta w \propto \underset { s , a } { \mathbf { E } } \delta _ { \mathrm { a v } } \nabla _ { w } V ^ { k } ( s ) +$$ + +where $\delta _ { \mathrm { a v } }$ is the action-value error term and depends on which algorithm is being used (see the remark below). + +Equivalence. The two policies (8) and (10) are identical if $W ^ { k } = Y ^ { k }$ for all $k$ . Since $X ^ { 0 }$ and $Y ^ { \tilde { 0 } }$ can be initialized and parameterized in the same way, and assuming the two value function estimates are initialized and parameterized in the same way, all that remains is to show that the updates in equations (11) and (9) are identical. Comparing the two, and assuming that $\delta _ { \mathrm { a c } } = \delta _ { \mathrm { a v } }$ (see remark), we see that the only difference is that the measure is not fixed in (9), but is equal to the current policy and therefore changes after each update. Replacing $\mu$ in (11) with $\pi ^ { k }$ makes the updates identical, in which case $W ^ { \widetilde { k } } = Y ^ { k }$ at all iterations and the two policies (8) and (10) are always the same. In other words, the slightly modified action-value method is equivalent to an actor-critic policy gradient method, and vice-versa (modulo using the non-discounted distribution of states, as discussed in $\ S 2 . 2 )$ . In particular, regularized policy gradient methods can be interpreted as advantage function learning techniques (Baird III, 1993), since at the optimum the quantity $\begin{array} { r } { W ( s , a ) - \sum _ { b } \pi ( s , b ) W ( s , b ) = \alpha ( \log \pi ( s , a ) + H ^ { \pi } ( s ) ) } \end{array}$ will be equal to the advantage function values in the tabular case. + +Remark. In SARSA (Rummery & Niranjan, 1994) we set $\delta _ { \mathrm { a v } } = r ( s , a ) + \gamma Q ( s ^ { \prime } , b ) - Q ( s , a )$ , where $b$ is the action selected at state $s ^ { \prime }$ , which would be equivalent to using a bootstrap critic in equation (6) where $Q ^ { \pi } ( s , a ) = r ( s , a ) + \gamma \tilde { Q } ( s ^ { \prime } , b )$ . In expected-SARSA (Sutton & Barto, 1998, Exercise 6.10), (Van Seijen et al., 2009)) we take the expectation over the Q-values at the next state, so $\delta _ { \mathrm { a v } } = r ( s , a ) + \gamma V ( \bar { s ^ { \prime } } ) - Q ( s , a )$ . This is equivalent to TD-actor-critic (Konda & Tsitsiklis, 2003) where we use the value function to provide the critic, which is given by $Q ^ { \pi } = r ( s , a ) + \gamma V ( s ^ { \prime } )$ . In Q-learning (Watkins, 1989) $\delta _ { \mathrm { a v } } = r ( s , a ) + \gamma \operatorname* { m a x } _ { b } Q ( s ^ { \prime } , b ) - Q ( s , a )$ , which would be equivalent to using an optimizing critic that bootstraps using the max Q-value at the next state, i.e., $Q ^ { \pi } ( s , a ) =$ $r ( s , a ) + \gamma \operatorname* { m a x } _ { b } \tilde { Q } ^ { \pi } ( s ^ { \prime } , b )$ . In REINFORCE the critic is the Monte Carlo return from that state on, i.e., $\begin{array} { r } { Q ^ { \pi } ( s , a ) = ( \sum _ { t = 0 } ^ { \infty } \gamma ^ { t } r _ { t } \ | \ s _ { 0 } = s , a _ { 0 } = a ) } \end{array}$ . If the return trace is truncated and a bootstrap is performed after $n$ -steps, this is equivalent to $n$ -step SARSA or $n$ -step Q-learning, depending on the form of the bootstrap (Peng & Williams, 1996). + +# 3.4 BELLMAN RESIDUAL + +In this section we show that $\| \mathcal { T } ^ { \star } Q ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| \to 0$ with decreasing regularization penalty $\alpha$ , where $\pi _ { \alpha }$ is the policy defined by (4) and $Q ^ { \pi _ { \alpha } }$ is the corresponding $\mathrm { Q }$ -value function, both of which are functions of $\alpha$ . We shall show that it converges to zero by bounding the sequence below by zero and above with a sequence that converges to zero. First, we have that ${ \mathcal { T } } ^ { \star } Q ^ { \pi _ { \alpha } } \geq { \mathcal { T } } ^ { \pi _ { \alpha } } Q ^ { \pi _ { \alpha } } = Q ^ { \pi _ { \alpha } }$ , since $\mathcal { T } ^ { \star }$ is greedy with respect to the Q-values. So ${ \mathcal { T } } ^ { \star } Q ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \geq 0$ . Now, to bound from above we need the fact that $\begin{array} { r } { \pi _ { \alpha } ( s , a ) = \exp ( Q ^ { \pi _ { \alpha } } ( s , a ) / \alpha ) / \sum _ { b } \exp ( Q ^ { \pi _ { \alpha } } ( s , b ) / \alpha ) \leq \exp ( ( Q ^ { \pi _ { \alpha } } ( s , a ) - Q ^ { \pi _ { \alpha } } ( a , b ) ) ) . } \end{array}$ $\operatorname* { m a x } _ { c } Q ^ { \pi _ { \alpha } } ( s , c ) ) / \alpha )$ . Using this we have + +$$ +\begin{array} { r l r } { 0 } & { \leq } & { \mathcal { T } ^ { \star } Q ^ { \pi _ { \alpha } } ( s , a ) - Q ^ { \pi _ { \alpha } } ( s , a ) } \\ & { = } & { \mathcal { T } ^ { \star } Q ^ { \pi _ { \alpha } } ( s , a ) - \mathcal { T } ^ { \pi _ { \alpha } } Q ^ { \pi _ { \alpha } } ( s , a ) } \\ & { = } & { { \bf E } _ { s ^ { \prime } } \big ( \operatorname* { m a x } _ { c } Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , c ) - \sum _ { b } \pi _ { \alpha } ( s ^ { \prime } , b ) Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , b ) \big ) } \\ & { = } & { { \bf E } _ { s ^ { \prime } } \sum _ { b } \pi _ { \alpha } ( s ^ { \prime } , b ) \big ( \operatorname* { m a x } _ { c } Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , c ) - Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , b ) \big ) } \\ & { \leq } & { { \bf E } _ { s ^ { \prime } } \sum _ { b } \exp \big ( ( Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , b ) - Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , b ^ { \star } ) \big ) / \alpha \big ) \big ( \operatorname* { m a x } _ { c } Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , c ) - Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , b ) \big ) } \\ & { = } & { { \bf E } _ { s ^ { \prime } } \sum _ { b } f _ { \alpha } \big ( \operatorname* { m a x } _ { c } Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , c ) - Q ^ { \pi _ { \alpha } } ( s ^ { \prime } , b ) \big ) , } \end{array} +$$ + +where we define $f _ { \alpha } ( x ) = x \exp ( - x / \alpha )$ . To conclude our proof we use the fact that $f _ { \alpha } ( x ) \ \leq$ $\begin{array} { r } { \operatorname* { s u p } _ { x } f _ { \alpha } ( x ) = f _ { \alpha } ( \alpha ) \stackrel { \cdot } { = } \alpha \mathrm { e } ^ { - 1 } } \end{array}$ , which yields + +$$ +0 \leq \mathcal T ^ { \star } Q ^ { \pi _ { \alpha } } ( s , a ) - Q ^ { \pi _ { \alpha } } ( s , a ) \leq | { \mathcal A } | \alpha \mathrm { e } ^ { - 1 } +$$ + +for all $( s , a )$ , and so the Bellman residual converges to zero with decreasing $\alpha$ . In other words, for small enough $\alpha$ (which is the regime we are interested in) the Q-values induced by the policy (4) will have a small Bellman residual. Moreover, this implies that $\mathrm { l i m } _ { \alpha \to 0 } Q ^ { \pi _ { \alpha } } = Q ^ { \star }$ , as one might expect. + +# 4 PGQL + +In this section we introduce the main contribution of the paper, which is a technique to combine policy gradient with Q-learning. We call our technique ‘PGQL’, for policy gradient and Q-learning. In the previous section we showed that the Bellman residual is small at the fixed point of a regularized policy gradient algorithm when the regularization penalty is sufficiently small. This suggests adding an auxiliary update where we explicitly attempt to reduce the Bellman residual as estimated from the policy, i.e., a hybrid between policy gradient and Q-learning. + +We first present the technique in a batch update setting, with a perfect knowledge of $Q ^ { \pi }$ (i.e., a perfect critic). Later we discuss the practical implementation of the technique in a reinforcement learning setting with function approximation, where the agent generates experience from interacting with the environment and needs to estimate a critic simultaneously with the policy. + +# 4.1 PGQL UPDATE + +Define the estimate of $Q$ using the policy as + +$$ +\begin{array} { r } { \tilde { Q } ^ { \pi } ( s , a ) = \alpha ( \log \pi ( s , a ) + H ^ { \pi } ( s ) ) + V ( s ) , } \end{array} +$$ + +where $V$ has parameters $w$ and is not necessarily $V ^ { \pi }$ as it was in equation (5). In (2) it was unnecessary to estimate the constant since the update was invariant to constant offsets, although in practice it is often estimated for use in a variance reduction technique (Williams, 1992; Sutton et al., 1999). + +Since we know that at the fixed point the Bellman residual will be small for small $\alpha$ , we can consider updating the parameters to reduce the Bellman residual in a fashion similar to Q-learning, i.e., + +$$ +\Delta \theta \propto \underset { s , a } { \mathbf { E } } ( T ^ { \star } \tilde { Q } ^ { \pi } ( s , a ) - \tilde { Q } ^ { \pi } ( s , a ) ) \nabla _ { \theta } \log \pi ( s , a ) , \quad \Delta w \propto \underset { s , a } { \mathbf { E } } ( T ^ { \star } \tilde { Q } ^ { \pi } ( s , a ) - \tilde { Q } ^ { \pi } ( s , a ) ) \nabla _ { w } V ( s ) . +$$ + +This is Q-learning applied to a particular form of the $\mathrm { Q }$ -values, and can also be interpreted as an actor-critic algorithm with an optimizing (and therefore biased) critic. + +The full scheme simply combines two updates to the policy, the regularized policy gradient update (2) and the Q-learning update (13). Assuming we have an architecture that provides a policy $\pi$ , a value function estimate $V$ , and an action-value critic $Q ^ { \pi }$ , then the parameter updates can be written as (suppressing the $( s , a )$ notation) + +$$ +\begin{array} { r l } & { \begin{array} { r l } & { \beth \theta \propto ( 1 - \eta ) \mathbf { E } _ { s , a } ( Q ^ { \pi } - \tilde { Q } ^ { \pi } ) \nabla _ { \theta } \log \pi + \eta \mathbf { E } _ { s , a } ( \mathcal { T } ^ { \star } \tilde { Q } ^ { \pi } - \tilde { Q } ^ { \pi } ) \nabla _ { \theta } \log \pi , } \end{array} } \\ & { \begin{array} { r l } & { \Delta w \propto ( 1 - \eta ) \mathbf { E } _ { s , a } ( Q ^ { \pi } - \tilde { Q } ^ { \pi } ) \nabla _ { w } V + \eta \mathbf { E } _ { s , a } ( \mathcal { T } ^ { \star } \tilde { Q } ^ { \pi } - \tilde { Q } ^ { \pi } ) \nabla _ { w } V , } \end{array} } \end{array} +$$ + +here $\eta \in [ 0 , 1 ]$ is a weighting parameter that controls how much of each update we apply. In the case where $\eta = 0$ the above scheme reduces to entropy regularized policy gradient. If $\eta = 1$ then it becomes a variant of (batch) Q-learning with an architecture similar to the dueling architecture (Wang et al., 2016). Intermediate values of $\eta$ produce a hybrid between the two. Examining the update we see that two error terms are trading off. The first term encourages consistency with critic, and the second term encourages optimality over time. However, since we know that under standard policy gradient the Bellman residual will be small, then it follows that adding a term that reduces that error should not make much difference at the fixed point. That is, the updates should be complementary, pointing in the same general direction, at least far away from a fixed point. This update can also be interpreted as an actor-critic update where the critic is given by a weighted combination of a standard critic and an optimizing critic. Yet another interpretation of the update is a combination of expected-SARSA and Q-learning, where the Q-values are parameterized as the sum of an advantage function and a value function. + +# 4.2 PRACTICAL IMPLEMENTATION + +The updates presented in (14) are batch updates, with an exact critic $Q ^ { \pi }$ . In practice we want to run this scheme online, with an estimate of the critic, where we don’t necessarily apply the policy gradient update at the same time or from same data source as the Q-learning update. + +Our proposal scheme is as follows. One or more agents interact with an environment, encountering states and rewards and performing on-policy updates of (shared) parameters using an actor-critic algorithm where both the policy and the critic are being updated online. Each time an agent receives new data from the environment it writes it to a shared replay memory buffer. Periodically a separate learner process samples from the replay buffer and performs a step of Q-learning on the parameters of the policy using (13). This scheme has several advantages. The critic can accumulate the Monte + +![](images/60dbc9368380e17724e2be00298c93faa9fcae8bd176f729054dbc954cf8e87e.jpg) +Figure 1: Grid world experiment. + +Carlo return over many time periods, allowing us to spread the influence of a reward received in the future backwards in time. Furthermore, the replay buffer can be used to store and replay ‘important’ past experiences by prioritizing those samples (Schaul et al., 2015). The use of the replay buffer can help to reduce problems associated with correlated training data, as generated by an agent exploring an environment where the states are likely to be similar from one time step to the next. Also the use of replay can act as a kind of regularizer, preventing the policy from moving too far from satisfying the Bellman equation, thereby improving stability, in a similar sense to that of a policy ‘trust-region’ (Schulman et al., 2015). Moreover, by batching up replay samples to update the network we can leverage GPUs to perform the updates quickly, this is in comparison to pure policy gradient techniques which are generally implemented on CPU (Mnih et al., 2016). + +Since we perform Q-learning using samples from a replay buffer that were generated by a old policy we are performing (slightly) off-policy learning. However, Q-learning is known to converge to the optimal Q-values in the off-policy tabular case (under certain conditions) (Sutton & Barto, 1998), and has shown good performance off-policy in the function approximation case (Mnih et al., 2013). + +# 4.3 MODIFIED FIXED POINT + +The PGQL updates in equation (14) have modified the fixed point of the algorithm, so the analysis of $\ S 3$ is no longer valid. Considering the tabular case once again, it is still the case that the policy $\pi \propto \exp ( \tilde { Q } ^ { \pi } / \bar { \alpha } )$ as before, where ${ \tilde { Q } } ^ { \pi }$ is defined by (12), however where previously the fixed point satisfied $\tilde { Q } ^ { \pi } = Q ^ { \pi }$ , with $Q ^ { \pi }$ corresponding to the Q-values induced by $\pi$ , now we have + +$$ +\begin{array} { r } { \tilde { Q } ^ { \pi } = ( 1 - \eta ) Q ^ { \pi } + \eta T ^ { \star } \tilde { Q } ^ { \pi } , } \end{array} +$$ + +Or equivalently, if $\eta < 1$ , we have $\begin{array} { r } { \tilde { Q } ^ { \pi } = ( 1 - \eta ) \sum _ { k = 0 } ^ { \infty } \eta ^ { k } ( \mathcal { T } ^ { \star } ) ^ { k } Q ^ { \pi } } \end{array}$ . In the appendix we show that $\lVert \tilde { Q } ^ { \pi } - Q ^ { \pi } \rVert \to 0$ and that $\lVert \mathcal { T } ^ { \star } Q ^ { \pi } - Q ^ { \pi } \rVert \to 0$ with decreasing $\alpha$ in the tabular case. That is, for small $\alpha$ the induced $\mathrm { Q }$ -values and the $\mathbf { Q }$ -values estimated from the policy are close, and we still have the guarantee that in the limit the $\mathrm { Q }$ -values are optimal. In other words, we have not perturbed the policy very much by the addition of the auxiliary update. + +# 5 NUMERICAL EXPERIMENTS + +# 5.1 GRID WORLD + +In this section we discuss the results of running PGQL on a toy 4 by 6 grid world, as shown in Figure 1a. The agent always begins in the square marked $\mathbf { \partial } ^ { \bullet } \mathbf { S } ^ { \bullet }$ and the episode continues until it reaches the square marked ‘T’, upon which it receives a reward of 1. All other times it receives no reward. For this experiment we chose regularization parameter $\alpha = 0 . 0 0 1$ and discount factor $\gamma = 0 . 9 5$ . + +Figure 1b shows the performance traces of three different agents learning in the grid world, running from the same initial random seed. The lines show the true expected performance of the policy from the start state, as calculated by value iteration after each update. The blue-line is standard TD-actor-critic (Konda & Tsitsiklis, 2003), where we maintain an estimate of the value function and use that to generate an estimate of the Q-values for use as the critic. The green line is Q-learning where at each step an update is performed using data drawn from a replay buffer of prior experience and where the Q-values are parameterized as in equation (12). The policy is a softmax over the Q-value estimates with temperature $\alpha$ . The red line is PGQL, which at each step first performs the TD-actor-critic update, then performs the Q-learning update as in (14). + +![](images/0c1e17e8c806eefd3b1a2e103e5cc5f50b177953f93920598bd008882d3512cc.jpg) +Figure 2: PGQL network augmentation. + +The grid world was totally deterministic, so the step size could be large and was chosen to be 1. A step-size any larger than this made the pure actor-critic agent fail to learn, but both PGQL and Q-learning could handle some increase in the step-size, possibly due to the stabilizing effect of using replay. + +It is clear that PGQL outperforms the other two. At any point along the $\mathbf { X }$ -axis the agents have seen the same amount of data, which would indicate that PGQL is more data efficient than either of the vanilla methods since it has the highest performance at practically every point. + +# 5.2 ATARI + +We tested our algorithm on the full suite of Atari benchmarks (Bellemare et al., 2012), using a neural network to parameterize the policy. In figure 2 we show how a policy network can be augmented with a parameterless additional layer which outputs the Q-value estimate. With the exception of the extra layer, the architecture and parameters were chosen to exactly match the asynchronous advantage actor-critic (A3C) algorithm presented in Mnih et al. (2016), which in turn reused many of the settings from Mnih et al. (2015). Specifically we used the exact same learning rate, number of workers, entropy penalty, bootstrap horizon, and network architecture. This allows a fair comparison between A3C and PGQL, since the only difference is the addition of the Q-learning step. Our technique augmented A3C with the following change: After each actor-learner has accumulated the gradient for the policy update, it performs a single step of Q-learning from replay data as described in equation (13), where the minibatch size was 32 and the Q-learning learning rate was chosen to be 0.5 times the actor-critic learning rate (we mention learning rate ratios rather than choice of $\eta$ in (14) because the updates happen at different frequencies and from different data sources). Each actor-learner thread maintained a replay buffer of the last $1 0 0 k$ transitions seen by that thread. We ran the learning for 50 million agent steps (200 million Atari frames), as in (Mnih et al., 2016). + +In the results we compare against both A3C and a variant of asynchronous deep Q-learning. The changes we made to Q-learning are to make it similar to our method, with some tuning of the hyperparameters for performance. We use the exact same network, the exploration policy is a softmax over the Q-values with a temperature of 0.1, and the Q-values are parameterized as in equation (12) (i.e., similar to the dueling architecture (Wang et al., 2016)), where $\alpha = 0 . 1$ . The $\mathrm { Q }$ -value updates are performed every 4 steps with a minibatch of 32 (roughly 5 times more frequently than PGQL). For each method, all games used identical hyper-parameters. + +The results across all games are given in table 3 in the appendix. All scores have been normalized by subtracting the average score achieved by an agent that takes actions uniformly at random. Each game was tested 5 times per method with the same hyper-parameters but with different random seeds. The scores presented correspond to the best score obtained by any run from a random start evaluation condition (Mnih et al., 2016). Overall, PGQL performed best in 34 games, A3C performed best in 7 games, and Q-learning was best in 10 games. In 6 games two or more methods tied. In tables 1 and 2 we give the mean and median normalized scores as percentage of an expert human normalized score across all games for each tested algorithm from random and human-start conditions respectively. In a human-start condition the agent takes over control of the game from randomly selected human-play starting points, which generally leads to lower performance since the agent may not have found itself in that state during training. In both cases, PGQL has both the highest mean and median, and the median score exceeds $100 \%$ , the human performance threshold. + +It is worth noting that PGQL was the worst performer in only one game, in cases where it was not the outright winner it was generally somewhere in between the performance of the other two algorithms. Figure 3 shows some sample traces of games where PGQL was the best performer. In these cases PGQL has far better data efficiency than the other methods. In figure 4 we show some of the games where PGQL under-performed. In practically every case where PGQL did not perform well it had better data efficiency early on in the learning, but performance saturated or collapsed. We hypothesize that in these cases the policy has reached a local optimum, or over-fit to the early data, and might perform better were the hyper-parameters to be tuned. + +
A3CQ-learningPGQL
Mean636.8756.3877.2
Median107.358.9145.6
+ +Table 1: Mean and median normalized scores for the Atari suite from random starts, as a percentage of human normalized score. + +Table 2: Mean and median normalized scores for the Atari suite from human starts, as a percentage of human normalized score. + +
A3CQ-learningPGQL
Mean266.6246.6416.7
Median58.330.5103.3
+ +![](images/3da9915f0a0cf23f3d913c2a8ab571f5e5141f16c16785449e05122d43a1a9d3.jpg) +Figure 3: Some Atari runs where PGQL performed well. + +![](images/b3fd759a9cc8a345d3e3d9621f8f8b6c24cca20c40c9e706bcca7d1ae73da696.jpg) +Figure 4: Some Atari runs where PGQL performed poorly. + +# 6 CONCLUSIONS + +We have made a connection between the fixed point of regularized policy gradient techniques and the Q-values of the resulting policy. For small regularization (the usual case) we have shown that the Bellman residual of the induced Q-values must be small. This leads us to consider adding an auxiliary update to the policy gradient which is related to the Bellman residual evaluated on a transformation of the policy. This update can be performed off-policy, using stored experience. We call the resulting method ‘PGQL’, for policy gradient and Q-learning. Empirically, we observe better data efficiency and stability of PGQL when compared to actor-critic or Q-learning alone. We verified the performance of PGQL on a suite of Atari games, where we parameterize the policy using a neural network, and achieved performance exceeding that of both A3C and Q-learning. + +# 7 ACKNOWLEDGMENTS + +We thank Joseph Modayil for many comments and suggestions on the paper, and Hubert Soyer for help with performance evaluation. We would also like to thank the anonymous reviewers for their constructive feedback. + +# REFERENCES + +Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251– 276, 1998. + +Mohammad Gheshlaghi Azar, Vicenc¸ Gomez, and Hilbert J Kappen. Dynamic policy programming. ´ Journal of Machine Learning Research, 13(Nov):3207–3245, 2012. + +J Andrew Bagnell and Jeff Schneider. Covariant policy search. In IJCAI, 2003. + +Leemon C Baird III. Advantage updating. Technical Report WL-TR-93-1146, Wright-Patterson Air Force Base Ohio: Wright Laboratory, 1993. + +Marc G Bellemare, Yavar Naddaf, Joel Veness, and Michael Bowling. The arcade learning environment: An evaluation platform for general agents. Journal of Artificial Intelligence Research, 2012. + +Richard Bellman. Dynamic programming. Princeton University Press, 1957. + +Dimitri P Bertsekas. Dynamic programming and optimal control, volume 1. Athena Scientific, 2005. + +Dimitri P. Bertsekas and John N. Tsitsiklis. Neuro-Dynamic Programming. Athena Scientific, 1996. + +Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. 2012. + +Roy Fox, Ari Pakman, and Naftali Tishby. Taming the noise in reinforcement learning via soft updates. arXiv preprint arXiv:1207.4708, 2015. + +Matthew Hausknecht and Peter Stone. On-policy vs. off-policy updates for deep reinforcement learning. Deep Reinforcement Learning: Frontiers and Challenges, IJCAI 2016 Workshop, 2016. + +Nicolas Heess, David Silver, and Yee Whye Teh. Actor-critic reinforcement learning with energybased policies. In JMLR: Workshop and Conference Proceedings 24, pp. 43–57, 2012. + +Sham Kakade. A natural policy gradient. In Advances in Neural Information Processing Systems, volume 14, pp. 1531–1538, 2001. + +Vijay R Konda and John N Tsitsiklis. On actor-critic algorithms. SIAM Journal on Control and Optimization, 42(4):1143–1166, 2003. + +Lucas Lehnert and Doina Precup. Policy gradient methods for off-policy control. arXiv preprint arXiv:1512.04105, 2015. + +Sergey Levine and Vladlen Koltun. Guided policy search. In Proceedings of the 30th International Conference on Machine Learning (ICML), pp. 1–9, 2013. + +Sergey Levine, Chelsea Finn, Trevor Darrell, and Pieter Abbeel. End-to-end training of deep visuomotor policies. arXiv preprint arXiv:1504.00702, 2015. + +Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971, 2015. + +Long-Ji Lin. Reinforcement learning for robots using neural networks. Technical report, DTIC Document, 1993. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. In NIPS Deep Learning Workshop. 2013. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, 02 2015. URL http://dx.doi.org/10.1038/ nature14236. + +Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy P Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. arXiv preprint arXiv:1602.01783, 2016. + +Mohammad Norouzi, Samy Bengio, Zhifeng Chen, Navdeep Jaitly, Mike Schuster, Yonghui Wu, and Dale Schuurmans. Reward augmented maximum likelihood for neural structured prediction. arXiv preprint arXiv:1609.00150, 2016. + +Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint arXiv:1301.3584, 2013. + +Edwin Pednault, Naoki Abe, and Bianca Zadrozny. Sequential cost-sensitive decision making with reinforcement learning. In Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 259–268. ACM, 2002. + +Jing Peng and Ronald J Williams. Incremental multi-step Q-learning. Machine Learning, 22(1-3): 283–290, 1996. + +Jan Peters, Katharina Mulling, and Yasemin Altun. Relative entropy policy search. In ¨ AAAI. Atlanta, 2010. + +Martin Riedmiller. Neural fitted Q iteration–first experiences with a data efficient neural reinforcement learning method. In Machine Learning: ECML 2005, pp. 317–328. Springer Berlin Heidelberg, 2005. + +Gavin A Rummery and Mahesan Niranjan. On-line Q-learning using connectionist systems. 1994. + +Brian Sallans and Geoffrey E Hinton. Reinforcement learning with factored states and actions. Journal of Machine Learning Research, 5(Aug):1063–1088, 2004. + +Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint arXiv:1511.05952, 2015. + +John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region policy optimization. In Proceedings of The 32nd International Conference on Machine Learning, pp. 1889–1897, 2015. + +David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller. Deterministic policy gradient algorithms. In Proceedings of the 31st International Conference on Machine Learning (ICML), pp. 387–395, 2014. + +David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. + +R. Sutton and A. Barto. Reinforcement Learning: an Introduction. MIT Press, 1998. + +Richard S Sutton. Learning to predict by the methods of temporal differences. Machine learning, 3 (1):9–44, 1988. + +Richard S Sutton, David A McAllester, Satinder P Singh, Yishay Mansour, et al. Policy gradient methods for reinforcement learning with function approximation. In Advances in Neural Information Processing Systems, volume 99, pp. 1057–1063, 1999. + +Gerald Tesauro. Temporal difference learning and TD-Gammon. Communications of the ACM, 38 (3):58–68, 1995. + +Philip Thomas. Bias in natural actor-critic algorithms. In Proceedings of The 31st International Conference on Machine Learning, pp. 441–448, 2014. + +Hado Van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double Qlearning. In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence (AAAI-16), pp. 2094–2100, 2016. + +Harm Van Seijen, Hado Van Hasselt, Shimon Whiteson, and Marco Wiering. A theoretical and empirical analysis of expected sarsa. In 2009 IEEE Symposium on Adaptive Dynamic Programming and Reinforcement Learning, pp. 177–184. IEEE, 2009. + +Yin-Hao Wang, Tzuu-Hseng S Li, and Chih-Jui Lin. Backward q-learning: The combination of sarsa algorithm and q-learning. Engineering Applications of Artificial Intelligence, 26(9):2184–2193, 2013. + +Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas. Dueling network architectures for deep reinforcement learning. In Proceedings of the 33rd International Conference on Machine Learning (ICML), pp. 1995–2003, 2016. + +Christopher John Cornish Hellaby Watkins. Learning from delayed rewards. PhD thesis, University of Cambridge England, 1989. + +Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 8(3-4):229–256, 1992. + +Ronald J Williams and Jing Peng. Function optimization using connectionist reinforcement learning algorithms. Connection Science, 3(3):241–268, 1991. + +# A PGQL BELLMAN RESIDUAL + +Here we demonstrate that in the tabular case the Bellman residual of the induced Q-values for the PGQL updates of (14) converges to zero as the temperature $\alpha$ decreases, which is the same guarantee as vanilla regularized policy gradient (2). We will use the notation that $\pi _ { \alpha }$ is the policy at the fixed point of PGQL updates (14) for some $\alpha$ , i.e., $\pi _ { \alpha } \propto \exp ( \tilde { Q } ^ { \pi _ { \alpha } } )$ , with induced Q-value function $Q ^ { \pi _ { \alpha } }$ . + +First, note that we can apply the same argument as in $\ S 3 . 4$ to show that $\begin{array} { r l } { { \operatorname* { l i m } _ { \alpha \to 0 } \| T ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - } } \end{array}$ $\mathcal { T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } \| \ = \ 0$ (the only difference is that we lack the property that ${ \tilde { Q } } ^ { \pi _ { \alpha } }$ is the fixed point of $\mathcal { T } ^ { \pi _ { \alpha } } )$ . Secondly, from equation (15) we can write $\tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } = \eta ( { \cal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } )$ . Combining these two facts we have + +$$ +\begin{array} { r c l } { \| \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| } & { = } & { \eta \| { \cal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| } \\ & { = } & { \eta \| { \cal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - { \cal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } + { \cal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } - { Q } ^ { \pi _ { \alpha } } \| } \\ & { \leq } & { \eta ( \| { \cal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - { \cal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } \| + \| { \cal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } - { \cal T } ^ { \pi _ { \alpha } } Q ^ { \pi _ { \alpha } } \| ) } \\ & { \leq } & { \eta ( \| { \cal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - { \cal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } \| + \gamma \| \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| ) } \\ & { \leq } & { \eta / ( 1 - \eta \gamma ) \| { \cal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - { \cal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } \| , } \end{array} +$$ + +and so $\| \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| \to 0$ as $\alpha 0$ . Using this fact we have + +$$ +\begin{array} { r l } { \| T ^ { \star } \hat { Q } ^ { \pi _ { \alpha } } - \hat { Q } ^ { \pi _ { \alpha } } \| } & { = \| T ^ { \star } \hat { Q } ^ { \pi _ { \alpha } } - { \mathcal T } ^ { \pi _ { \alpha } } \hat { Q } ^ { \pi _ { \alpha } } + { \mathcal T } ^ { \pi _ { \alpha } } \hat { Q } ^ { \pi _ { \alpha } } - { Q } ^ { \pi _ { \alpha } } + { Q } ^ { \pi _ { \alpha } } - \tilde { Q } ^ { \pi _ { \alpha } } \| } \\ & { \leq \| { \mathcal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - { \mathcal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } \| + \| T ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } - { \mathcal T } ^ { \pi _ { \alpha } } { Q } ^ { \pi _ { \alpha } } \| + \| { Q } ^ { \pi _ { \alpha } } - \tilde { Q } ^ { \pi _ { \alpha } } \| } \\ & { \leq \| { \mathcal T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - { \mathcal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } \| + ( 1 + \gamma ) \| \tilde { Q } ^ { \pi _ { \alpha } } - { Q } ^ { \pi _ { \alpha } } \| } \\ & { < 3 / ( 1 - \eta \gamma ) \| { T } ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - { \mathcal T } ^ { \pi _ { \alpha } } \tilde { Q } ^ { \pi _ { \alpha } } \| , } \end{array} +$$ + +which therefore also converges to zero in the limit. Finally we obtain + +$$ +\begin{array} { r l r } { \| T ^ { \star } Q ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| } & { = } & { \| T ^ { \star } Q ^ { \pi _ { \alpha } } - T ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } + T ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - \tilde { Q } ^ { \pi _ { \alpha } } + \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| } \\ & { \leq } & { \| T ^ { \star } Q ^ { \pi _ { \alpha } } - T ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } \| + \| T ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - \tilde { Q } ^ { \pi _ { \alpha } } \| + \| \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| } \\ & { \leq } & { ( 1 + \gamma ) \| \tilde { Q } ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| + \| T ^ { \star } \tilde { Q } ^ { \pi _ { \alpha } } - \tilde { Q } ^ { \pi _ { \alpha } } \| , } \end{array} +$$ + +which combined with the two previous results implies that $\begin{array} { r } { \operatorname* { l i m } _ { \alpha \to 0 } \| T ^ { \star } Q ^ { \pi _ { \alpha } } - Q ^ { \pi _ { \alpha } } \| = 0 } \end{array}$ , as before. + +B ATARI SCORES + +Table 3: Normalized scores for the Atari suite from random starts, as a percentage of human normalized score. + +
GameA3CQ-learningPGQL
25.53
alien38.43 68.6912.2946.70 71.00
amidar2802.87
assault854.641695.21
asterix191.6998.533790.08
asteroids24.375.3250.23
atlantis15496.0113635.8816217.49
bank heist210.2891.80212.15
battle zone21.632.8952.00
beam rider59.5579.94155.71
berzerk79.3855.5592.85
bowling2.70-7.093.85
boxing510.30299.49902.77
breakout2341.133291.222959.16
centipede50.22105.9873.88
chopper command61.1319.18162.93
crazy climber510.25189.01476.11
defender475.9358.94911.13
demon attack4027.573449.273994.49
double dunk1250.0091.351375.00
enduro9.949.949.94
fishing derby140.84-14.48145.57
freeway-0.26-0.13-0.13
frostbite5.8510.715.71
gopher429.769131.972060.41
gravitar0.711.351.74
hero145.7115.4792.88
ice hockey62.2521.5776.96
jamesbond133.90110.97142.08
kangaroo-0.94-0.94-0.75
krull736.303586.30557.44
kung fu master182.34260.14254.42
montezuma revenge-0.491.80-0.48
ms pacman17.9110.7125.76
name this game102.01113.89188.90
phoenix447.05812.991507.07
pitfall5.485.49 24.965.49 116.37
pong116.37 -0.880.03-0.04
private eye
qbert riverraid186.91159.71136.17
107.2565.01128.63
road runner robotank603.11 15.71179.69519.51
134.8771.50
seaquest3.813.715.88
skiing solaris54.2754.1054.16
space invaders27.0534.6128.66
188.65146.39608.44
star gunner756.60205.70977.99
surround28.29-1.5178.15
tennis145.58-15.35145.58
time pilot270.7491.59438.50
tutankham224.76110.11239.58
up n down1637.01148.101484.43
venture-1.76-1.76-1.76
video pinball3007.374325.024743.68
wizard of wor150.5288.07325.39
yars revenge81.5423.39252.83
zaxxon4.0144.11224.89
\ No newline at end of file diff --git a/parse/train/B1kJ6H9ex/B1kJ6H9ex_content_list.json b/parse/train/B1kJ6H9ex/B1kJ6H9ex_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..5eb2789f82bbc14a18fee1f619fc3afc49db607e --- /dev/null +++ b/parse/train/B1kJ6H9ex/B1kJ6H9ex_content_list.json @@ -0,0 +1,2038 @@ +[ + { + "type": "text", + "text": "COMBINING POLICY GRADIENT AND Q-LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 99, + 776, + 122 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Brendan O’Donoghue, Remi Munos, Koray Kavukcuoglu & Volodymyr Mnih ´ Deepmind {bodonoghue,munos,korayk,vmnih}@google.com ", + "bbox": [ + 183, + 147, + 727, + 191 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 227, + 544, + 242 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Policy gradient is an efficient technique for improving a policy in a reinforcement learning setting. However, vanilla online variants are on-policy only and not able to take advantage of off-policy data. In this paper we describe a new technique that combines policy gradient with off-policy Q-learning, drawing experience from a replay buffer. This is motivated by making a connection between the fixed points of the regularized policy gradient algorithm and the Q-values. This connection allows us to estimate the Q-values from the action preferences of the policy, to which we apply Q-learning updates. We refer to the new technique as ‘PGQL’, for policy gradient and Q-learning. We also establish an equivalency between action-value fitting techniques and actor-critic algorithms, showing that regularized policy gradient techniques can be interpreted as advantage function learning algorithms. We conclude with some numerical examples that demonstrate improved data efficiency and stability of PGQL. In particular, we tested PGQL on the full suite of Atari games and achieved performance exceeding that of both asynchronous advantage actor-critic (A3C) and Q-learning. ", + "bbox": [ + 233, + 261, + 764, + 468 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 501, + 336, + 517 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In reinforcement learning an agent explores an environment and through the use of a reward signal learns to optimize its behavior to maximize the expected long-term return. Reinforcement learning has seen success in several areas including robotics (Lin, 1993; Levine et al., 2015), computer games (Mnih et al., 2013; 2015), online advertising (Pednault et al., 2002), board games (Tesauro, 1995; Silver et al., 2016), and many others. For an introduction to reinforcement learning we refer to the classic text by Sutton & Barto (1998). In this paper we consider model-free reinforcement learning, where the state-transition function is not known or learned. There are many different algorithms for model-free reinforcement learning, but most fall into one of two families: action-value fitting and policy gradient techniques. ", + "bbox": [ + 174, + 535, + 825, + 660 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Action-value techniques involve fitting a function, called the Q-values, that captures the expected return for taking a particular action at a particular state, and then following a particular policy thereafter. Two alternatives we discuss in this paper are SARSA (Rummery & Niranjan, 1994) and Q-learning (Watkins, 1989), although there are many others. SARSA is an on-policy algorithm whereby the action-value function is fit to the current policy, which is then refined by being mostly greedy with respect to those action-values. On the other hand, Q-learning attempts to find the Qvalues associated with the optimal policy directly and does not fit to the policy that was used to generate the data. Q-learning is an off-policy algorithm that can use data generated by another agent or from a replay buffer of old experience. Under certain conditions both SARSA and Q-learning can be shown to converge to the optimal Q-values, from which we can derive the optimal policy (Sutton, 1988; Bertsekas & Tsitsiklis, 1996). ", + "bbox": [ + 174, + 666, + 825, + 819 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In policy gradient techniques the policy is represented explicitly and we improve the policy by updating the parameters in the direction of the gradient of the performance (Sutton et al., 1999; Silver et al., 2014; Kakade, 2001). Online policy gradient typically requires an estimate of the action-value function of the current policy. For this reason they are often referred to as actor-critic methods, where the actor refers to the policy and the critic to the estimate of the action-value function (Konda & Tsitsiklis, 2003). Vanilla actor-critic methods are on-policy only, although some attempts have been made to extend them to off-policy data (Degris et al., 2012; Levine & Koltun, 2013). ", + "bbox": [ + 174, + 827, + 823, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper we derive a link between the Q-values induced by a policy and the policy itself when the policy is the fixed point of a regularized policy gradient algorithm (where the gradient vanishes). This connection allows us to derive an estimate of the Q-values from the current policy, which we can refine using off-policy data and Q-learning. We show in the tabular setting that when the regularization penalty is small (the usual case) the resulting policy is close to the policy that would be found without the addition of the Q-learning update. Separately, we show that regularized actor-critic methods can be interpreted as action-value fitting methods, where the Q-values have been parameterized in a particular way. We conclude with some numerical examples that provide empirical evidence of improved data efficiency and stability of PGQL. ", + "bbox": [ + 174, + 103, + 825, + 229 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 PRIOR WORK ", + "text_level": 1, + "bbox": [ + 176, + 250, + 305, + 263 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Here we highlight various axes along which our work can be compared to others. In this paper we use entropy regularization to ensure exploration in the policy, which is a common practice in policy gradient (Williams & Peng, 1991; Mnih et al., 2016). An alternative is to use KL-divergence instead of entropy as a regularizer, or as a constraint on how much deviation is permitted from a prior policy (Bagnell & Schneider, 2003; Peters et al., 2010; Schulman et al., 2015; Fox et al., 2015). Natural policy gradient can also be interpreted as putting a constraint on the KL-divergence at each step of the policy improvement (Amari, 1998; Kakade, 2001; Pascanu & Bengio, 2013). In Sallans & Hinton (2004) the authors use a Boltzmann exploration policy over estimated Q-values which they update using TD-learning. In Heess et al. (2012) this was extended to use an actor-critic algorithm instead of TD-learning, however the two updates were not combined as we have done in this paper. In Azar et al. (2012) the authors develop an algorithm called dynamic policy programming, whereby they apply a Bellman-like update to the action-preferences of a policy, which is similar in spirit to the update we describe here. In Norouzi et al. (2016) the authors augment a maximum likelihood objective with a reward in a supervised learning setting, and develop a connection that resembles the one we develop here between the policy and the Q-values. Other works have attempted to combine on and off-policy learning, primarily using action-value fitting methods (Wang et al., 2013; Hausknecht & Stone, 2016; Lehnert & Precup, 2015), with varying degrees of success. In this paper we establish a connection between actor-critic algorithms and action-value learning algorithms. In particular we show that TD-actor-critic (Konda & Tsitsiklis, 2003) is equivalent to expected-SARSA (Sutton & Barto, 1998, Exercise 6.10) with Boltzmann exploration where the Q-values are decomposed into advantage function and value function. The algorithm we develop extends actor-critic with a Q-learning style update that, due to the decomposition of the Q-values, resembles the update of the dueling architecture (Wang et al., 2016). Recently, the field of deep reinforcement learning, i.e., the use of deep neural networks to represent action-values or a policy, has seen a lot of success (Mnih et al., 2015; 2016; Silver et al., 2016; Riedmiller, 2005; Lillicrap et al., 2015; Van Hasselt et al., 2016). In the examples section we use a neural network with PGQL to play the Atari games suite. ", + "bbox": [ + 174, + 277, + 825, + 651 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 REINFORCEMENT LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 674, + 446, + 690 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We consider the infinite horizon, discounted, finite state and action space Markov decision process, with state space $s$ , action space $\\mathcal { A }$ and rewards at each time period denoted by $r _ { t } \\in \\mathbb { R }$ . A policy $\\pi : S \\times A \\to \\mathbb { R } _ { + }$ is a mapping from state-action pair to the probability of taking that action at that state, so it must satisfy $\\begin{array} { r } { \\sum _ { a \\in \\mathcal { A } } \\pi ( s , a ) = 1 } \\end{array}$ for all states $s \\in { \\mathcal { S } }$ . Any policy $\\pi$ induces a probability distribution over visited states, $d ^ { \\pi } : S \\to \\mathbb { R } _ { + }$ (which may depend on the initial state), so the probability of seeing state-action pair $( s , a ) \\in S \\times A$ is $d ^ { \\pi } ( s ) \\pi ( s , a )$ . ", + "bbox": [ + 174, + 708, + 825, + 792 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In reinforcement learning an ‘agent’ interacts with an environment over a number of times steps. At each time step $t$ the agent receives a state $s _ { t }$ and a reward $r _ { t }$ and selects an action $a _ { t }$ from the policy $\\pi _ { t }$ , at which point the agent moves to the next state $s _ { t + 1 } \\sim P ( \\cdot , s _ { t } , a _ { t } )$ , where $P ( s ^ { \\prime } , s , a )$ is the probability of transitioning from state $s$ to state $s ^ { \\prime }$ after taking action $a$ . This continues until the agent encounters a teto find a policy where the expec $\\pi$ inal state (after which the process is typically restartthat maximizes the expected total discounted return tion is with respect to the initial state distribution, the $\\begin{array} { r } { J ( \\pi ) = \\mathbf { \\bar { E } } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ \\pi ) } \\end{array}$ and the policy, and where $\\gamma \\in ( 0 , 1 )$ is the discount factor that, loosely speaking, controls how much the agent prioritizes long-term versus short-term rewards. Since the agent starts with no knowledge of the environment it must continually explore the state space and so will typically use a stochastic policy. ", + "bbox": [ + 174, + 797, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Action-values. The action-value, or Q-value, of a particular state under policy $\\pi$ is the exaction at that state . The value of state d following under polic $\\pi$ thereafter, i.e.,is denoted by $\\begin{array} { r } { \\dot { Q } ^ { \\pi } ( s , a ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = \\overline { { \\ a } } , \\pi ) } \\end{array}$ $s$ $\\pi$ $\\begin{array} { r } { V ^ { \\pi } ( s ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\mid s _ { 0 } = s , \\pi ) } \\end{array}$ , which is the expected total discounted return of policy $\\pi$ from state $s$ . The optimal action-value function is denoted $Q ^ { \\star }$ and satisfies $Q ^ { \\star } ( s , a ) = \\operatorname* { m a x } _ { \\pi } Q ^ { \\pi } ( s , a )$ for each $( s , a )$ . The policy that achieves the maximum is the optimal policy $\\pi ^ { \\star }$ , with value function $V ^ { \\star }$ . The advantage function is the difference between the action-value and the value function, i.e., $A ^ { \\pi } ( s , a ) = Q ^ { \\pi } ( \\bar { s _ { \\bf { \\Re } } } a ) - V ^ { \\pi } ( s )$ , and represents the additional expected reward of taking action $a$ over the average performance of the policy from state $s$ . Since $\\begin{array} { r } { V ^ { \\bar { \\pi } } ( s ) = \\sum _ { a } \\pi ( s , a ) Q ^ { \\pi } \\bar { ( } s , a ) } \\end{array}$ we have the identity $\\begin{array} { r } { \\sum _ { a } \\pi ( s , a ) A ^ { \\pi } ( s , a ) ^ { - } = 0 } \\end{array}$ , which simply states that the policy $\\pi$ has no advantage over itself. ", + "bbox": [ + 173, + 146, + 825, + 301 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Bellman equation. The Bellman operator $\\mathcal { T } ^ { \\pi }$ (Bellman, 1957) for policy $\\pi$ is defined as ", + "bbox": [ + 171, + 315, + 766, + 332 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/89c378cc0343c47eb6af9271bc8d2fb860312fad8c9c9b40b854666d7247f446.jpg", + "text": "$$\n\\mathcal { T } ^ { \\pi } Q ( s , a ) = \\mathrm { \\bf ~ E } _ { s ^ { \\prime } , r , b } ( r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) ) ,\n$$", + "text_format": "latex", + "bbox": [ + 364, + 338, + 632, + 362 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where the expectation is over next state $s ^ { \\prime } \\sim P ( \\cdot , s , a )$ , the reward $r ( s , a )$ , and the action $b$ from policy $\\pi _ { s ^ { \\prime } }$ . The Q-value function for policy $\\pi$ is the fixed point of the Bellman operator for $\\pi$ , i.e., ${ \\mathcal { T } } ^ { \\pi } Q ^ { \\pi } = Q ^ { \\pi }$ . The optimal Bellman operator $\\mathcal { T } ^ { \\star }$ is defined as ", + "bbox": [ + 174, + 369, + 823, + 412 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/8cbce3ca3df11e62f2d22c0bcca7002a02924db579f929b7480c9383f255b2e5.jpg", + "text": "$$\n\\mathcal { T } ^ { \\star } Q ( s , a ) = \\mathbf { E } _ { s ^ { \\prime } , r } ( r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) ) ,\n$$", + "text_format": "latex", + "bbox": [ + 351, + 419, + 643, + 443 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where the expectation is over the next state $s ^ { \\prime } \\sim P ( \\cdot , s , a )$ , and the reward $r ( s , a )$ . The optimal Q-value function is the fixed point of the optimal Bellman equation, i.e., ${ \\mathcal { T } } ^ { \\star } Q ^ { \\star } = Q ^ { \\star }$ . Both the $\\pi$ -Bellman operator and the optimal Bellman operator are $\\gamma$ -contraction mappings in the sup-norm, i.e., $\\| T Q _ { 1 } - T Q _ { 2 } \\| _ { \\infty } \\leq \\gamma \\| Q _ { 1 } - Q _ { 2 } \\| _ { \\infty }$ , for any $Q _ { 1 } , Q _ { 2 } \\in \\mathbb { R } ^ { S \\times A }$ . From this fact one can show that the fixed point of each operator is unique, and that value iteration converges, i.e., $( T ^ { \\pi } ) ^ { k } Q Q ^ { \\pi }$ and $( T ^ { \\star } ) ^ { \\bar { k } } Q Q ^ { \\star }$ from any initial $Q$ . (Bertsekas, 2005). ", + "bbox": [ + 174, + 450, + 825, + 536 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 ACTION-VALUE LEARNING ", + "text_level": 1, + "bbox": [ + 176, + 553, + 400, + 565 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In value based reinforcement learning we approximate the $\\mathrm { Q }$ -values using a function approximator. We then update the parameters so that the Q-values are as close to the fixed point of a Bellman equation as possible. If we denote by $Q ( s , a ; \\theta )$ the approximate Q-values parameterized by $\\theta$ , then Q-learning updates the Q-values along direction $\\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } Q ( s , a ; \\theta ) - Q ( \\bar { s } , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta )$ and SARSA updates the $\\mathrm { Q }$ -values along direction $\\begin{array} { r } { { \\bf E } _ { s , a } ( \\mathcal { T } ^ { \\pi } Q ( s , a ; \\theta ) - Q ( s , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta ) . } \\end{array}$ . In the online setting the Bellman operator is approximated by sampling and bootstrapping, whereby the Q-values at any state are updated using the Q-values from the next visited state. Exploration is achieved by not always taking the action with the highest $\\mathrm { Q }$ -value at each time step. One common technique called ‘epsilon greedy’ is to sample a random action with probability $\\epsilon > 0$ , where $\\epsilon$ starts high and decreases over time. Another popular technique is ‘Boltzmann exploration’, where the policy is given by the softmax over the Q-values with a temperature $T$ , i.e., $\\pi ( s , a ) = \\mathrm { e x p } ( Q ( \\dot { s , } a ) / \\dot { T } ) / \\bar { \\sum _ { b } } \\mathrm { e x p } \\bar { ( } Q ( s , b ) / T )$ , where it is common to decrease the temperature over time. ", + "bbox": [ + 173, + 577, + 825, + 758 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 POLICY GRADIENT ", + "text_level": 1, + "bbox": [ + 176, + 775, + 346, + 790 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Alternatively, we can parameterize the policy directly and attempt to improve it via gradient ascent on the performance $J$ . The policy gradient theorem (Sutton et al., 1999) states that the gradient of $J$ with respect to the parameters of the policy is given by ", + "bbox": [ + 174, + 801, + 825, + 844 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/7b640ce1ecbfcc0ceb546a840e29c3869bd4b842885c538bfe4601befb92dce4.jpg", + "text": "$$\n\\nabla _ { \\boldsymbol { \\theta } } J ( \\pi ) = \\mathbf { \\underline { { E } } } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\boldsymbol { \\theta } } \\log \\pi ( s , a ) ,\n$$", + "text_format": "latex", + "bbox": [ + 369, + 849, + 624, + 875 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where the expectation is over $( s , a )$ with probability $d ^ { \\pi } ( s ) \\pi ( s , a )$ . In the original derivation of the policy gradient theorem the expectation is over the discounted distribution of states, i.e., over $\\begin{array} { r } { d _ { \\gamma } ^ { \\pi , \\overset { \\cdot } { s _ { 0 } } } ( s ) \\stackrel { \\cdot } { = } \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } P r \\{ s _ { t } = s \\mid \\overset { \\cdot } { s _ { 0 } } , \\pi \\} } \\end{array}$ . However, the gradient update in that case will assign a low weight to states that take a long time to reach and can therefore have poor empirical performance. In practice the non-discounted distribution of states is frequently used instead. In certain cases this is equivalent to maximizing the average (i.e., non-discounted) policy performance, even when $Q ^ { \\pi }$ uses a discount factor (Thomas, 2014). Throughout this paper we will use the non-discounted distribution of states. ", + "bbox": [ + 174, + 881, + 825, + 925 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 174 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In the online case it is common to add an entropy regularizer to the gradient in order to prevent the policy becoming deterministic. This ensures that the agent will explore continually. In that case the (batch) update becomes ", + "bbox": [ + 173, + 180, + 825, + 223 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/45e7b1c3b13cd803e4327cf2e97609929fa5cf488ce65ca1a830e5fbc4cb9911.jpg", + "text": "$$\n\\begin{array} { r } { \\Delta \\theta \\propto \\underline { { \\mathbf { E } } } _ { a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\underline { { \\mathbf { E } } } _ { s } \\nabla _ { \\theta } H ^ { \\pi } ( s ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 328, + 228, + 665, + 252 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { H ^ { \\pi } ( s ) = - \\sum _ { a } \\pi ( s , a ) \\log \\pi ( s , a ) } \\end{array}$ denotes the entropy of policy $\\pi$ , and $\\alpha > 0$ is the regularization penalty parameter. Throughout this paper we will make use of entropy regularization, however many of the results are true for other choices of regularizers with only minor modification, e.g., KL-divergence. Note that equation (2) requires exact knowledge of the Q-values. In practice they can be estimated, e.g., by the sum of discounted rewards along an observed trajectory (Williams, 1992), and the policy gradient will still perform well (Konda & Tsitsiklis, 2003). ", + "bbox": [ + 174, + 257, + 825, + 343 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3 REGULARIZED POLICY GRADIENT ALGORITHM ", + "text_level": 1, + "bbox": [ + 174, + 363, + 598, + 378 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this section we derive a relationship between the policy and the Q-values when using a regularized policy gradient algorithm. This allows us to transform a policy into an estimate of the Q-values. We then show that for small regularization the $\\mathrm { Q }$ -values induced by the policy at the fixed point of the algorithm have a small Bellman error in the tabular case. ", + "bbox": [ + 173, + 393, + 825, + 450 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 TABULAR CASE ", + "text_level": 1, + "bbox": [ + 174, + 467, + 323, + 481 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Consider the fixed points of the entropy regularized policy gradient update (2). Let us define $f ( \\theta ) =$ $\\mathbf { E } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\mathbf { E } _ { s } \\bar { \\nabla } _ { \\theta } H ( \\pi _ { s } )$ , and $\\begin{array} { r } { \\dot { g } _ { s } ( \\pi ) \\stackrel { - } { = } \\sum _ { a } \\pi ( \\stackrel { - } { s } , a ) } \\end{array}$ for each $s$ . A fixed point is one where we can no longer update $\\theta$ in the direction of $f ( \\theta )$ without violating one of the constraints $g _ { s } ( \\pi ) = 1$ , i.e., where $f ( \\theta )$ is in the span of the vectors $\\{ \\dot { \\nabla _ { \\theta } } g _ { s } ( \\pi ) \\}$ . In other words, any fixed point must satisfy $\\begin{array} { r } { f ( \\theta ) = \\sum _ { s } \\lambda _ { s } \\nabla _ { \\theta } g _ { s } ( \\pi ) } \\end{array}$ , where for each $s$ the Lagrange multiplier $\\lambda _ { s } \\in \\mathbb { R }$ ensures that $g _ { s } ( \\pi ) = 1$ . Substituting in terms to this equation we obtain ", + "bbox": [ + 173, + 492, + 825, + 577 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/b4bd1d16ce41646eeb573f099ce4dcd79f2e617b025b09104f5691feccf06159.jpg", + "text": "$$\n\\underset { s , a } { \\mathbf { E } } \\left( Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } \\right) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ,\n$$", + "text_format": "latex", + "bbox": [ + 316, + 582, + 676, + 607 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where we have absorbed all constants into $c \\in \\mathbb { R } ^ { | s | }$ . Any solution $\\pi$ to this equation is strictly positive element-wise since it must lie in the domain of the entropy function. In the tabular case $\\pi$ is represented by a single number for each state and action pair and the gradient of the policy with respect to the parameters is the indicator function, i.e., $\\nabla _ { \\boldsymbol { \\theta } ( t , b ) } \\pi ( s , a ) = \\bar { \\mathbf { 1 } } _ { ( t , b ) = ( s , a ) } .$ . From this we obtain $Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } = 0$ for each $s$ (assuming that the measure $d ^ { \\pi } ( s ) > 0 )$ . Multiplying by $\\pi ( \\boldsymbol { a } , \\boldsymbol { s } )$ and summing over $a \\in { \\mathcal { A } }$ we get $c _ { s } = \\alpha H ^ { \\pi } \\bar { ( } s ) + V ^ { \\pi } ( s )$ . Substituting $c$ into equation (3) we have the following formulation for the policy: ", + "bbox": [ + 173, + 613, + 825, + 714 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/65fc6d3f60c14f4b6a14fe36da642afb0f86cb66b4835c24ba143948531ad4fa.jpg", + "text": "$$\n\\pi ( s , a ) = \\exp ( A ^ { \\pi } ( s , a ) / \\alpha - H ^ { \\pi } ( s ) ) ,\n$$", + "text_format": "latex", + "bbox": [ + 370, + 719, + 624, + 737 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "for all $s \\in \\mathcal { S }$ and $a \\in \\mathcal A$ . In other words, the policy at the fixed point is a softmax over the advantage function induced by that policy, where the regularization parameter $\\alpha$ can be interpreted as the temperature. Therefore, we can use the policy to derive an estimate of the Q-values, ", + "bbox": [ + 174, + 742, + 825, + 785 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/f37d5d09a8d8a767cad08c6747baaba978d164c4fbaefc513696c0c2e48cad50.jpg", + "text": "$$\n\\tilde { Q } ^ { \\pi } ( s , a ) = \\tilde { A } ^ { \\pi } ( s , a ) + V ^ { \\pi } ( s ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ^ { \\pi } ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 274, + 791, + 723, + 810 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "With this we can rewrite the gradient update (2) as ", + "bbox": [ + 174, + 815, + 504, + 830 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/2b204108af980c7affb3147aead9ea14b91e514a96bda710227d4941ea0673d1.jpg", + "text": "$$\n\\begin{array} { r } { \\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( Q ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 341, + 835, + 651, + 862 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "since the update is unchanged by per-state constant offsets. When the policy is parameterized as a softmax, i.e., $\\pi ( s , a ) = \\bar { \\exp ( W ( s , a ) ) } / \\sum _ { b } \\exp W ( s , b )$ , the quantity $W$ is sometimes referred to as the action-preferences of the policy (Sutton & Barto, 1998, Chapter 6.6). Equation (4) states that the action preferences are equal to the Q-values scaled by $1 / \\alpha$ , up to an additive per-state constant. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 GENERAL CASE ", + "text_level": 1, + "bbox": [ + 174, + 103, + 325, + 117 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Consider the following optimization problem: ", + "bbox": [ + 174, + 128, + 475, + 143 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/b8ec3bc0a89d6f3f2c5a232374e342c51b5b96c164bca2692a0bc9ea447d15ec.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathrm { n i n i m i z e } } & { \\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) ) ^ { 2 } } \\\\ { \\mathrm { u b j e c t ~ t o } } & { \\sum _ { a } \\pi ( s , a ) = 1 , \\quad s \\in S } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 367, + 147, + 638, + 179 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "over variable $\\theta$ which parameterizes $\\pi$ , where we consider both the measure in the expectation and the values $\\boldsymbol { q } ( s , a )$ to be independent of $\\theta$ . The optimality condition for this problem is ", + "bbox": [ + 176, + 181, + 823, + 210 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/71811626b9c67f3aab3a467b4bb4500e85ac3b261c64dcb064a74df947c8c254.jpg", + "text": "$$\n\\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) + c _ { s } ) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ,\n$$", + "text_format": "latex", + "bbox": [ + 326, + 212, + 668, + 237 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $c \\in \\mathbb { R } ^ { | S | }$ is the Lagrange multiplier associated with the constraint that the policy sum to one at each state. Comparing this to equation (3), we see that if $q = Q ^ { \\pi }$ and the measure in the expectation is the same then they describe the same set of fixed points. This suggests an interpretation of the fixed points of the regularized policy gradient as a regression of the log-policy onto the Q-values. In the general case of using an approximation architecture we can interpret equation (3) as indicating that the error between $Q ^ { \\pi }$ and ${ \\bf \\bar { \\cal Q } } ^ { \\pi }$ is orthogonal to $\\nabla _ { \\theta _ { i } } \\log \\pi$ for each $i$ , and so cannot be reduced further by changing the parameters, at least locally. In this case equation (4) is unlikely to hold at a solution to (3), however with a good approximation architecture it may hold approximately, so that the we can derive an estimate of the Q-values from the policy using equation (5). We will use this estimate of the Q-values in the next section. ", + "bbox": [ + 173, + 241, + 826, + 383 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 CONNECTION TO ACTION-VALUE METHODS ", + "text_level": 1, + "bbox": [ + 174, + 400, + 516, + 414 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The previous section made a connection between regularized policy gradient and a regression onto the Q-values at the fixed point. In this section we go one step further, showing that actor-critic methods can be interpreted as action-value fitting methods, where the exact method depends on the choice of critic. ", + "bbox": [ + 173, + 424, + 825, + 481 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Actor-critic methods. Consider an agent using an actor-critic method to learn both a policy $\\pi$ and a value function $V$ . At any iteration $k$ , the value function $V ^ { k }$ has parameters $w ^ { k }$ , and the policy is of the form ", + "bbox": [ + 173, + 494, + 825, + 536 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/92b743844a1e0c6fad7e6baa8d6d6e796deff3ffefb2b5a7307617b4e601b73d.jpg", + "text": "$$\n\\pi ^ { k } ( s , a ) = \\exp ( W ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( W ^ { k } ( s , b ) / \\alpha ) ,\n$$", + "text_format": "latex", + "bbox": [ + 318, + 531, + 674, + 565 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $W ^ { k }$ is parameterized by $\\theta ^ { k }$ and $\\alpha > 0$ is the entropy regularization penalty. In this case $\\begin{array} { r l } { \\nabla _ { \\theta } \\log \\pi ^ { k } ( s , \\dot { a _ { ) } } = ( 1 / \\alpha ) ( \\nabla _ { \\theta } \\dot { W } ^ { k } ( s , a ) - \\sum _ { b } \\pi ( s , b ) \\nabla _ { \\theta } W ^ { k } ( \\dot { s } , b ) \\overset { \\sim } { ) } } & { { } } \\end{array}$ . Using equation (6) the parameters are updated as ", + "bbox": [ + 174, + 568, + 825, + 609 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/a084497eec69e9a1bbd7592b459cfa6df321cf02ac6389ce6e8ec1c459c3af30.jpg", + "text": "$$\n\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } ( \\nabla _ { \\theta } W ^ { k } ( s , a ) - \\sum _ { b } \\pi ^ { k } ( s , b ) \\nabla _ { \\theta } W ^ { k } ( s , b ) ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } \\nabla _ { w } V ^ { k } ( s )\n$$", + "text_format": "latex", + "bbox": [ + 228, + 613, + 767, + 647 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\delta _ { \\mathrm { a c } }$ is the critic minus baseline term, which depends on the variant of actor-critic being used (see the remark below). ", + "bbox": [ + 173, + 648, + 826, + 678 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Action-value methods. Compare this to the case where an agent is learning Q-values with a dueling architecture (Wang et al., 2016), which at iteration $k$ is given by ", + "bbox": [ + 173, + 691, + 823, + 720 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/f3ab42ee27bdb68053dd6071ee1d7589cf03d6df769f582d7826f68e591321e6.jpg", + "text": "$$\nQ ^ { k } ( s , a ) = Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) Y ^ { k } ( s , b ) + V ^ { k } ( s ) ,\n$$", + "text_format": "latex", + "bbox": [ + 323, + 723, + 673, + 757 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\mu$ is a probability distribution, $Y ^ { k }$ is parameterized by $\\theta ^ { k } , V ^ { k }$ is parameterized by $w ^ { k }$ , and the exploration policy is Boltzmann with temperature $\\alpha$ , i.e., ", + "bbox": [ + 174, + 760, + 823, + 790 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/36275287a983b3ad3d278fc55b2ee0e400f4b06c3b7663c253387c82d581edbd.jpg", + "text": "$$\n\\pi ^ { k } ( s , a ) = \\exp ( Y ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Y ^ { k } ( s , b ) / \\alpha ) .\n$$", + "text_format": "latex", + "bbox": [ + 325, + 792, + 673, + 825 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In action value fitting methods at each iteration the parameters are updated to reduce some error, where the update is given by ", + "bbox": [ + 176, + 828, + 821, + 857 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/8be47ac6cf2dc0fc76c19e838a6c168b7d9e1fe9990f08d1d79f89a87cd240c1.jpg", + "text": "$$\n\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\bigl ( \\nabla _ { \\theta } Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) \\nabla _ { \\theta } Y ^ { k } ( s , b ) \\bigr ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\nabla _ { w } V ^ { k } ( s )\n$$", + "text_format": "latex", + "bbox": [ + 236, + 859, + 761, + 892 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\delta _ { \\mathrm { a v } }$ is the action-value error term and depends on which algorithm is being used (see the remark below). ", + "bbox": [ + 174, + 895, + 826, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Equivalence. The two policies (8) and (10) are identical if $W ^ { k } = Y ^ { k }$ for all $k$ . Since $X ^ { 0 }$ and $Y ^ { \\tilde { 0 } }$ can be initialized and parameterized in the same way, and assuming the two value function estimates are initialized and parameterized in the same way, all that remains is to show that the updates in equations (11) and (9) are identical. Comparing the two, and assuming that $\\delta _ { \\mathrm { a c } } = \\delta _ { \\mathrm { a v } }$ (see remark), we see that the only difference is that the measure is not fixed in (9), but is equal to the current policy and therefore changes after each update. Replacing $\\mu$ in (11) with $\\pi ^ { k }$ makes the updates identical, in which case $W ^ { \\widetilde { k } } = Y ^ { k }$ at all iterations and the two policies (8) and (10) are always the same. In other words, the slightly modified action-value method is equivalent to an actor-critic policy gradient method, and vice-versa (modulo using the non-discounted distribution of states, as discussed in $\\ S 2 . 2 )$ . In particular, regularized policy gradient methods can be interpreted as advantage function learning techniques (Baird III, 1993), since at the optimum the quantity $\\begin{array} { r } { W ( s , a ) - \\sum _ { b } \\pi ( s , b ) W ( s , b ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) } \\end{array}$ will be equal to the advantage function values in the tabular case. ", + "bbox": [ + 173, + 102, + 825, + 285 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Remark. In SARSA (Rummery & Niranjan, 1994) we set $\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) - Q ( s , a )$ , where $b$ is the action selected at state $s ^ { \\prime }$ , which would be equivalent to using a bootstrap critic in equation (6) where $Q ^ { \\pi } ( s , a ) = r ( s , a ) + \\gamma \\tilde { Q } ( s ^ { \\prime } , b )$ . In expected-SARSA (Sutton & Barto, 1998, Exercise 6.10), (Van Seijen et al., 2009)) we take the expectation over the Q-values at the next state, so $\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma V ( \\bar { s ^ { \\prime } } ) - Q ( s , a )$ . This is equivalent to TD-actor-critic (Konda & Tsitsiklis, 2003) where we use the value function to provide the critic, which is given by $Q ^ { \\pi } = r ( s , a ) + \\gamma V ( s ^ { \\prime } )$ . In Q-learning (Watkins, 1989) $\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) - Q ( s , a )$ , which would be equivalent to using an optimizing critic that bootstraps using the max Q-value at the next state, i.e., $Q ^ { \\pi } ( s , a ) =$ $r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } \\tilde { Q } ^ { \\pi } ( s ^ { \\prime } , b )$ . In REINFORCE the critic is the Monte Carlo return from that state on, i.e., $\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = a ) } \\end{array}$ . If the return trace is truncated and a bootstrap is performed after $n$ -steps, this is equivalent to $n$ -step SARSA or $n$ -step Q-learning, depending on the form of the bootstrap (Peng & Williams, 1996). ", + "bbox": [ + 173, + 297, + 825, + 470 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.4 BELLMAN RESIDUAL ", + "text_level": 1, + "bbox": [ + 176, + 488, + 357, + 501 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this section we show that $\\| \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0$ with decreasing regularization penalty $\\alpha$ , where $\\pi _ { \\alpha }$ is the policy defined by (4) and $Q ^ { \\pi _ { \\alpha } }$ is the corresponding $\\mathrm { Q }$ -value function, both of which are functions of $\\alpha$ . We shall show that it converges to zero by bounding the sequence below by zero and above with a sequence that converges to zero. First, we have that ${ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } \\geq { \\mathcal { T } } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\pi _ { \\alpha } }$ , since $\\mathcal { T } ^ { \\star }$ is greedy with respect to the Q-values. So ${ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\geq 0$ . Now, to bound from above we need the fact that $\\begin{array} { r } { \\pi _ { \\alpha } ( s , a ) = \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , b ) / \\alpha ) \\leq \\exp ( ( Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( a , b ) ) ) . } \\end{array}$ $\\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s , c ) ) / \\alpha )$ . Using this we have ", + "bbox": [ + 173, + 512, + 825, + 612 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/7df8b01741f5ce01faac5dec9f633b4b91d9897ec26cb87118a55e0aef31be37.jpg", + "text": "$$\n\\begin{array} { r l r } { 0 } & { \\leq } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - \\mathcal { T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { \\leq } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\exp \\big ( ( Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ^ { \\star } ) \\big ) / \\alpha \\big ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } f _ { \\alpha } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 218, + 617, + 776, + 707 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where we define $f _ { \\alpha } ( x ) = x \\exp ( - x / \\alpha )$ . To conclude our proof we use the fact that $f _ { \\alpha } ( x ) \\ \\leq$ $\\begin{array} { r } { \\operatorname* { s u p } _ { x } f _ { \\alpha } ( x ) = f _ { \\alpha } ( \\alpha ) \\stackrel { \\cdot } { = } \\alpha \\mathrm { e } ^ { - 1 } } \\end{array}$ , which yields ", + "bbox": [ + 173, + 712, + 825, + 741 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/f58c7f6d417a2f168a8790e6e40b2e0953a36d847bbef3c13d3477a807c0390b.jpg", + "text": "$$\n0 \\leq \\mathcal T ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) \\leq | { \\mathcal A } | \\alpha \\mathrm { e } ^ { - 1 }\n$$", + "text_format": "latex", + "bbox": [ + 354, + 747, + 640, + 767 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "for all $( s , a )$ , and so the Bellman residual converges to zero with decreasing $\\alpha$ . In other words, for small enough $\\alpha$ (which is the regime we are interested in) the Q-values induced by the policy (4) will have a small Bellman residual. Moreover, this implies that $\\mathrm { l i m } _ { \\alpha \\to 0 } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\star }$ , as one might expect. ", + "bbox": [ + 173, + 773, + 825, + 830 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 PGQL ", + "text_level": 1, + "bbox": [ + 174, + 849, + 261, + 866 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this section we introduce the main contribution of the paper, which is a technique to combine policy gradient with Q-learning. We call our technique ‘PGQL’, for policy gradient and Q-learning. In the previous section we showed that the Bellman residual is small at the fixed point of a regularized policy gradient algorithm when the regularization penalty is sufficiently small. This suggests adding an auxiliary update where we explicitly attempt to reduce the Bellman residual as estimated from the policy, i.e., a hybrid between policy gradient and Q-learning. ", + "bbox": [ + 174, + 882, + 823, + 924 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We first present the technique in a batch update setting, with a perfect knowledge of $Q ^ { \\pi }$ (i.e., a perfect critic). Later we discuss the practical implementation of the technique in a reinforcement learning setting with function approximation, where the agent generates experience from interacting with the environment and needs to estimate a critic simultaneously with the policy. ", + "bbox": [ + 174, + 152, + 825, + 208 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.1 PGQL UPDATE ", + "text_level": 1, + "bbox": [ + 174, + 224, + 320, + 239 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Define the estimate of $Q$ using the policy as ", + "bbox": [ + 176, + 251, + 464, + 266 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/a4b2553e5624564873e14bde82117af28625f68067f1c1b14121f849a0446789.jpg", + "text": "$$\n\\begin{array} { r } { \\tilde { Q } ^ { \\pi } ( s , a ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ( s ) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 348, + 271, + 647, + 291 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "where $V$ has parameters $w$ and is not necessarily $V ^ { \\pi }$ as it was in equation (5). In (2) it was unnecessary to estimate the constant since the update was invariant to constant offsets, although in practice it is often estimated for use in a variance reduction technique (Williams, 1992; Sutton et al., 1999). ", + "bbox": [ + 174, + 295, + 825, + 338 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Since we know that at the fixed point the Bellman residual will be small for small $\\alpha$ , we can consider updating the parameters to reduce the Bellman residual in a fashion similar to Q-learning, i.e., ", + "bbox": [ + 174, + 344, + 823, + 373 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/6b0da3b50b6d6c82a40eb7d00c901dd632bca611e84fb0a1c81d7dc1e95f9b6e.jpg", + "text": "$$\n\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { w } V ( s ) .\n$$", + "text_format": "latex", + "bbox": [ + 181, + 377, + 823, + 404 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "This is Q-learning applied to a particular form of the $\\mathrm { Q }$ -values, and can also be interpreted as an actor-critic algorithm with an optimizing (and therefore biased) critic. ", + "bbox": [ + 171, + 416, + 821, + 444 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The full scheme simply combines two updates to the policy, the regularized policy gradient update (2) and the Q-learning update (13). Assuming we have an architecture that provides a policy $\\pi$ , a value function estimate $V$ , and an action-value critic $Q ^ { \\pi }$ , then the parameter updates can be written as (suppressing the $( s , a )$ notation) ", + "bbox": [ + 176, + 450, + 823, + 507 + ], + "page_idx": 6 + }, + { + "type": "equation", + "img_path": "images/b345ca8e54f6043dc612b6ed55dee1eb6653c65dab9fc0c9be26f32cf3c5d0b9.jpg", + "text": "$$\n\\begin{array} { r l } & { \\begin{array} { r l } & { \\beth \\theta \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi , } \\end{array} } \\\\ & { \\begin{array} { r l } & { \\Delta w \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V , } \\end{array} } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 256, + 511, + 741, + 564 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "here $\\eta \\in [ 0 , 1 ]$ is a weighting parameter that controls how much of each update we apply. In the case where $\\eta = 0$ the above scheme reduces to entropy regularized policy gradient. If $\\eta = 1$ then it becomes a variant of (batch) Q-learning with an architecture similar to the dueling architecture (Wang et al., 2016). Intermediate values of $\\eta$ produce a hybrid between the two. Examining the update we see that two error terms are trading off. The first term encourages consistency with critic, and the second term encourages optimality over time. However, since we know that under standard policy gradient the Bellman residual will be small, then it follows that adding a term that reduces that error should not make much difference at the fixed point. That is, the updates should be complementary, pointing in the same general direction, at least far away from a fixed point. This update can also be interpreted as an actor-critic update where the critic is given by a weighted combination of a standard critic and an optimizing critic. Yet another interpretation of the update is a combination of expected-SARSA and Q-learning, where the Q-values are parameterized as the sum of an advantage function and a value function. ", + "bbox": [ + 173, + 568, + 825, + 748 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.2 PRACTICAL IMPLEMENTATION ", + "text_level": 1, + "bbox": [ + 176, + 765, + 424, + 779 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "The updates presented in (14) are batch updates, with an exact critic $Q ^ { \\pi }$ . In practice we want to run this scheme online, with an estimate of the critic, where we don’t necessarily apply the policy gradient update at the same time or from same data source as the Q-learning update. ", + "bbox": [ + 176, + 790, + 823, + 833 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Our proposal scheme is as follows. One or more agents interact with an environment, encountering states and rewards and performing on-policy updates of (shared) parameters using an actor-critic algorithm where both the policy and the critic are being updated online. Each time an agent receives new data from the environment it writes it to a shared replay memory buffer. Periodically a separate learner process samples from the replay buffer and performs a step of Q-learning on the parameters of the policy using (13). This scheme has several advantages. The critic can accumulate the Monte ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/60dbc9368380e17724e2be00298c93faa9fcae8bd176f729054dbc954cf8e87e.jpg", + "image_caption": [ + "Figure 1: Grid world experiment. " + ], + "image_footnote": [], + "bbox": [ + 259, + 111, + 732, + 294 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Carlo return over many time periods, allowing us to spread the influence of a reward received in the future backwards in time. Furthermore, the replay buffer can be used to store and replay ‘important’ past experiences by prioritizing those samples (Schaul et al., 2015). The use of the replay buffer can help to reduce problems associated with correlated training data, as generated by an agent exploring an environment where the states are likely to be similar from one time step to the next. Also the use of replay can act as a kind of regularizer, preventing the policy from moving too far from satisfying the Bellman equation, thereby improving stability, in a similar sense to that of a policy ‘trust-region’ (Schulman et al., 2015). Moreover, by batching up replay samples to update the network we can leverage GPUs to perform the updates quickly, this is in comparison to pure policy gradient techniques which are generally implemented on CPU (Mnih et al., 2016). ", + "bbox": [ + 173, + 349, + 825, + 491 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Since we perform Q-learning using samples from a replay buffer that were generated by a old policy we are performing (slightly) off-policy learning. However, Q-learning is known to converge to the optimal Q-values in the off-policy tabular case (under certain conditions) (Sutton & Barto, 1998), and has shown good performance off-policy in the function approximation case (Mnih et al., 2013). ", + "bbox": [ + 174, + 497, + 825, + 553 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.3 MODIFIED FIXED POINT ", + "text_level": 1, + "bbox": [ + 174, + 569, + 379, + 583 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "The PGQL updates in equation (14) have modified the fixed point of the algorithm, so the analysis of $\\ S 3$ is no longer valid. Considering the tabular case once again, it is still the case that the policy $\\pi \\propto \\exp ( \\tilde { Q } ^ { \\pi } / \\bar { \\alpha } )$ as before, where ${ \\tilde { Q } } ^ { \\pi }$ is defined by (12), however where previously the fixed point satisfied $\\tilde { Q } ^ { \\pi } = Q ^ { \\pi }$ , with $Q ^ { \\pi }$ corresponding to the Q-values induced by $\\pi$ , now we have ", + "bbox": [ + 173, + 594, + 825, + 655 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/4abc4c43bfe622748b501f6e7d6dfac73f7efca681ab4ddd9a46ecae8232f526.jpg", + "text": "$$\n\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) Q ^ { \\pi } + \\eta T ^ { \\star } \\tilde { Q } ^ { \\pi } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 400, + 659, + 593, + 678 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Or equivalently, if $\\eta < 1$ , we have $\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) \\sum _ { k = 0 } ^ { \\infty } \\eta ^ { k } ( \\mathcal { T } ^ { \\star } ) ^ { k } Q ^ { \\pi } } \\end{array}$ . In the appendix we show that $\\lVert \\tilde { Q } ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0$ and that $\\lVert \\mathcal { T } ^ { \\star } Q ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0$ with decreasing $\\alpha$ in the tabular case. That is, for small $\\alpha$ the induced $\\mathrm { Q }$ -values and the $\\mathbf { Q }$ -values estimated from the policy are close, and we still have the guarantee that in the limit the $\\mathrm { Q }$ -values are optimal. In other words, we have not perturbed the policy very much by the addition of the auxiliary update. ", + "bbox": [ + 174, + 681, + 825, + 756 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 NUMERICAL EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 776, + 433, + 791 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.1 GRID WORLD ", + "text_level": 1, + "bbox": [ + 174, + 806, + 308, + 820 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this section we discuss the results of running PGQL on a toy 4 by 6 grid world, as shown in Figure 1a. The agent always begins in the square marked $\\mathbf { \\partial } ^ { \\bullet } \\mathbf { S } ^ { \\bullet }$ and the episode continues until it reaches the square marked ‘T’, upon which it receives a reward of 1. All other times it receives no reward. For this experiment we chose regularization parameter $\\alpha = 0 . 0 0 1$ and discount factor $\\gamma = 0 . 9 5$ . ", + "bbox": [ + 174, + 832, + 825, + 888 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure 1b shows the performance traces of three different agents learning in the grid world, running from the same initial random seed. The lines show the true expected performance of the policy from the start state, as calculated by value iteration after each update. The blue-line is standard TD-actor-critic (Konda & Tsitsiklis, 2003), where we maintain an estimate of the value function and use that to generate an estimate of the Q-values for use as the critic. The green line is Q-learning where at each step an update is performed using data drawn from a replay buffer of prior experience and where the Q-values are parameterized as in equation (12). The policy is a softmax over the Q-value estimates with temperature $\\alpha$ . The red line is PGQL, which at each step first performs the TD-actor-critic update, then performs the Q-learning update as in (14). ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/0c1e17e8c806eefd3b1a2e103e5cc5f50b177953f93920598bd008882d3512cc.jpg", + "image_caption": [ + "Figure 2: PGQL network augmentation. " + ], + "image_footnote": [], + "bbox": [ + 356, + 103, + 630, + 243 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 305, + 825, + 402 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The grid world was totally deterministic, so the step size could be large and was chosen to be 1. A step-size any larger than this made the pure actor-critic agent fail to learn, but both PGQL and Q-learning could handle some increase in the step-size, possibly due to the stabilizing effect of using replay. ", + "bbox": [ + 174, + 410, + 825, + 465 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "It is clear that PGQL outperforms the other two. At any point along the $\\mathbf { X }$ -axis the agents have seen the same amount of data, which would indicate that PGQL is more data efficient than either of the vanilla methods since it has the highest performance at practically every point. ", + "bbox": [ + 174, + 473, + 825, + 515 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "5.2 ATARI ", + "text_level": 1, + "bbox": [ + 174, + 535, + 258, + 549 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We tested our algorithm on the full suite of Atari benchmarks (Bellemare et al., 2012), using a neural network to parameterize the policy. In figure 2 we show how a policy network can be augmented with a parameterless additional layer which outputs the Q-value estimate. With the exception of the extra layer, the architecture and parameters were chosen to exactly match the asynchronous advantage actor-critic (A3C) algorithm presented in Mnih et al. (2016), which in turn reused many of the settings from Mnih et al. (2015). Specifically we used the exact same learning rate, number of workers, entropy penalty, bootstrap horizon, and network architecture. This allows a fair comparison between A3C and PGQL, since the only difference is the addition of the Q-learning step. Our technique augmented A3C with the following change: After each actor-learner has accumulated the gradient for the policy update, it performs a single step of Q-learning from replay data as described in equation (13), where the minibatch size was 32 and the Q-learning learning rate was chosen to be 0.5 times the actor-critic learning rate (we mention learning rate ratios rather than choice of $\\eta$ in (14) because the updates happen at different frequencies and from different data sources). Each actor-learner thread maintained a replay buffer of the last $1 0 0 k$ transitions seen by that thread. We ran the learning for 50 million agent steps (200 million Atari frames), as in (Mnih et al., 2016). ", + "bbox": [ + 174, + 563, + 825, + 770 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In the results we compare against both A3C and a variant of asynchronous deep Q-learning. The changes we made to Q-learning are to make it similar to our method, with some tuning of the hyperparameters for performance. We use the exact same network, the exploration policy is a softmax over the Q-values with a temperature of 0.1, and the Q-values are parameterized as in equation (12) (i.e., similar to the dueling architecture (Wang et al., 2016)), where $\\alpha = 0 . 1$ . The $\\mathrm { Q }$ -value updates are performed every 4 steps with a minibatch of 32 (roughly 5 times more frequently than PGQL). For each method, all games used identical hyper-parameters. ", + "bbox": [ + 174, + 777, + 823, + 875 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The results across all games are given in table 3 in the appendix. All scores have been normalized by subtracting the average score achieved by an agent that takes actions uniformly at random. Each game was tested 5 times per method with the same hyper-parameters but with different random seeds. The scores presented correspond to the best score obtained by any run from a random start evaluation condition (Mnih et al., 2016). Overall, PGQL performed best in 34 games, A3C performed best in 7 games, and Q-learning was best in 10 games. In 6 games two or more methods tied. In tables 1 and 2 we give the mean and median normalized scores as percentage of an expert human normalized score across all games for each tested algorithm from random and human-start conditions respectively. In a human-start condition the agent takes over control of the game from randomly selected human-play starting points, which generally leads to lower performance since the agent may not have found itself in that state during training. In both cases, PGQL has both the highest mean and median, and the median score exceeds $100 \\%$ , the human performance threshold. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 229 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "It is worth noting that PGQL was the worst performer in only one game, in cases where it was not the outright winner it was generally somewhere in between the performance of the other two algorithms. Figure 3 shows some sample traces of games where PGQL was the best performer. In these cases PGQL has far better data efficiency than the other methods. In figure 4 we show some of the games where PGQL under-performed. In practically every case where PGQL did not perform well it had better data efficiency early on in the learning, but performance saturated or collapsed. We hypothesize that in these cases the policy has reached a local optimum, or over-fit to the early data, and might perform better were the hyper-parameters to be tuned. ", + "bbox": [ + 173, + 236, + 825, + 348 + ], + "page_idx": 9 + }, + { + "type": "table", + "img_path": "images/9b1b13e6c877947094e474d6c824c611559f2e92b9da3d64581156b53df44d0e.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
A3CQ-learningPGQL
Mean636.8756.3877.2
Median107.358.9145.6
", + "bbox": [ + 356, + 364, + 640, + 409 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Table 1: Mean and median normalized scores for the Atari suite from random starts, as a percentage of human normalized score. ", + "bbox": [ + 173, + 425, + 825, + 454 + ], + "page_idx": 9 + }, + { + "type": "table", + "img_path": "images/7819070b3d0344e3cd5ce6ab833f4b0d319bb1cf0d0e65c1351d216567ef26c0.jpg", + "table_caption": [ + "Table 2: Mean and median normalized scores for the Atari suite from human starts, as a percentage of human normalized score. " + ], + "table_footnote": [], + "table_body": "
A3CQ-learningPGQL
Mean266.6246.6416.7
Median58.330.5103.3
", + "bbox": [ + 356, + 483, + 640, + 529 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/3da9915f0a0cf23f3d913c2a8ab571f5e5141f16c16785449e05122d43a1a9d3.jpg", + "image_caption": [ + "Figure 3: Some Atari runs where PGQL performed well. " + ], + "image_footnote": [], + "bbox": [ + 236, + 608, + 738, + 882 + ], + "page_idx": 9 + }, + { + "type": "image", + "img_path": "images/b3fd759a9cc8a345d3e3d9621f8f8b6c24cca20c40c9e706bcca7d1ae73da696.jpg", + "image_caption": [ + "Figure 4: Some Atari runs where PGQL performed poorly. " + ], + "image_footnote": [], + "bbox": [ + 238, + 106, + 738, + 378 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "6 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 429, + 328, + 445 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We have made a connection between the fixed point of regularized policy gradient techniques and the Q-values of the resulting policy. For small regularization (the usual case) we have shown that the Bellman residual of the induced Q-values must be small. This leads us to consider adding an auxiliary update to the policy gradient which is related to the Bellman residual evaluated on a transformation of the policy. This update can be performed off-policy, using stored experience. We call the resulting method ‘PGQL’, for policy gradient and Q-learning. Empirically, we observe better data efficiency and stability of PGQL when compared to actor-critic or Q-learning alone. We verified the performance of PGQL on a suite of Atari games, where we parameterize the policy using a neural network, and achieved performance exceeding that of both A3C and Q-learning. ", + "bbox": [ + 173, + 462, + 825, + 587 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "7 ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 607, + 387, + 622 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "We thank Joseph Modayil for many comments and suggestions on the paper, and Hubert Soyer for help with performance evaluation. We would also like to thank the anonymous reviewers for their constructive feedback. ", + "bbox": [ + 174, + 638, + 825, + 679 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 102, + 287, + 117 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251– 276, 1998. ", + "bbox": [ + 174, + 125, + 823, + 154 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mohammad Gheshlaghi Azar, Vicenc¸ Gomez, and Hilbert J Kappen. Dynamic policy programming. ´ Journal of Machine Learning Research, 13(Nov):3207–3245, 2012. ", + "bbox": [ + 173, + 161, + 821, + 190 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "J Andrew Bagnell and Jeff Schneider. Covariant policy search. In IJCAI, 2003. ", + "bbox": [ + 173, + 196, + 694, + 213 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Leemon C Baird III. Advantage updating. Technical Report WL-TR-93-1146, Wright-Patterson Air Force Base Ohio: Wright Laboratory, 1993. ", + "bbox": [ + 174, + 219, + 818, + 250 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Marc G Bellemare, Yavar Naddaf, Joel Veness, and Michael Bowling. The arcade learning environment: An evaluation platform for general agents. Journal of Artificial Intelligence Research, 2012. ", + "bbox": [ + 174, + 257, + 825, + 299 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Richard Bellman. Dynamic programming. Princeton University Press, 1957. ", + "bbox": [ + 173, + 306, + 678, + 323 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dimitri P Bertsekas. Dynamic programming and optimal control, volume 1. Athena Scientific, 2005. ", + "bbox": [ + 171, + 329, + 821, + 359 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dimitri P. Bertsekas and John N. Tsitsiklis. Neuro-Dynamic Programming. Athena Scientific, 1996. ", + "bbox": [ + 173, + 366, + 823, + 382 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. 2012. ", + "bbox": [ + 173, + 388, + 728, + 405 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Roy Fox, Ari Pakman, and Naftali Tishby. Taming the noise in reinforcement learning via soft updates. arXiv preprint arXiv:1207.4708, 2015. ", + "bbox": [ + 174, + 411, + 823, + 440 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Matthew Hausknecht and Peter Stone. On-policy vs. off-policy updates for deep reinforcement learning. Deep Reinforcement Learning: Frontiers and Challenges, IJCAI 2016 Workshop, 2016. ", + "bbox": [ + 174, + 448, + 823, + 477 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Nicolas Heess, David Silver, and Yee Whye Teh. Actor-critic reinforcement learning with energybased policies. In JMLR: Workshop and Conference Proceedings 24, pp. 43–57, 2012. ", + "bbox": [ + 173, + 483, + 825, + 513 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sham Kakade. A natural policy gradient. In Advances in Neural Information Processing Systems, volume 14, pp. 1531–1538, 2001. ", + "bbox": [ + 173, + 520, + 825, + 550 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Vijay R Konda and John N Tsitsiklis. On actor-critic algorithms. SIAM Journal on Control and Optimization, 42(4):1143–1166, 2003. ", + "bbox": [ + 174, + 556, + 825, + 587 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Lucas Lehnert and Doina Precup. Policy gradient methods for off-policy control. arXiv preprint arXiv:1512.04105, 2015. ", + "bbox": [ + 171, + 593, + 823, + 622 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sergey Levine and Vladlen Koltun. Guided policy search. In Proceedings of the 30th International Conference on Machine Learning (ICML), pp. 1–9, 2013. ", + "bbox": [ + 173, + 630, + 823, + 660 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sergey Levine, Chelsea Finn, Trevor Darrell, and Pieter Abbeel. End-to-end training of deep visuomotor policies. arXiv preprint arXiv:1504.00702, 2015. ", + "bbox": [ + 171, + 666, + 823, + 695 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv preprint arXiv:1509.02971, 2015. ", + "bbox": [ + 174, + 703, + 823, + 746 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Long-Ji Lin. Reinforcement learning for robots using neural networks. Technical report, DTIC Document, 1993. ", + "bbox": [ + 169, + 752, + 823, + 782 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin Riedmiller. Playing atari with deep reinforcement learning. In NIPS Deep Learning Workshop. 2013. ", + "bbox": [ + 174, + 790, + 821, + 832 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G. Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Petersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement learning. Nature, 518(7540):529–533, 02 2015. URL http://dx.doi.org/10.1038/ nature14236. ", + "bbox": [ + 174, + 839, + 825, + 922 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy P Lillicrap, Tim Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement learning. arXiv preprint arXiv:1602.01783, 2016. ", + "bbox": [ + 176, + 103, + 823, + 146 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Mohammad Norouzi, Samy Bengio, Zhifeng Chen, Navdeep Jaitly, Mike Schuster, Yonghui Wu, and Dale Schuurmans. Reward augmented maximum likelihood for neural structured prediction. arXiv preprint arXiv:1609.00150, 2016. ", + "bbox": [ + 174, + 155, + 821, + 198 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint arXiv:1301.3584, 2013. ", + "bbox": [ + 171, + 208, + 821, + 237 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Edwin Pednault, Naoki Abe, and Bianca Zadrozny. Sequential cost-sensitive decision making with reinforcement learning. In Proceedings of the eighth ACM SIGKDD international conference on Knowledge discovery and data mining, pp. 259–268. ACM, 2002. ", + "bbox": [ + 173, + 246, + 826, + 290 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jing Peng and Ronald J Williams. Incremental multi-step Q-learning. Machine Learning, 22(1-3): 283–290, 1996. ", + "bbox": [ + 173, + 299, + 821, + 328 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jan Peters, Katharina Mulling, and Yasemin Altun. Relative entropy policy search. In ¨ AAAI. Atlanta, 2010. ", + "bbox": [ + 173, + 337, + 823, + 367 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Martin Riedmiller. Neural fitted Q iteration–first experiences with a data efficient neural reinforcement learning method. In Machine Learning: ECML 2005, pp. 317–328. Springer Berlin Heidelberg, 2005. ", + "bbox": [ + 174, + 376, + 820, + 419 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Gavin A Rummery and Mahesan Niranjan. On-line Q-learning using connectionist systems. 1994. ", + "bbox": [ + 171, + 428, + 821, + 445 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Brian Sallans and Geoffrey E Hinton. Reinforcement learning with factored states and actions. Journal of Machine Learning Research, 5(Aug):1063–1088, 2004. ", + "bbox": [ + 169, + 453, + 821, + 483 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv preprint arXiv:1511.05952, 2015. ", + "bbox": [ + 171, + 492, + 823, + 521 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region policy optimization. In Proceedings of The 32nd International Conference on Machine Learning, pp. 1889–1897, 2015. ", + "bbox": [ + 173, + 530, + 825, + 574 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller. Deterministic policy gradient algorithms. In Proceedings of the 31st International Conference on Machine Learning (ICML), pp. 387–395, 2014. ", + "bbox": [ + 174, + 583, + 825, + 627 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche, Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. ", + "bbox": [ + 174, + 635, + 825, + 679 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "R. Sutton and A. Barto. Reinforcement Learning: an Introduction. MIT Press, 1998. ", + "bbox": [ + 173, + 688, + 728, + 704 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Richard S Sutton. Learning to predict by the methods of temporal differences. Machine learning, 3 (1):9–44, 1988. ", + "bbox": [ + 173, + 713, + 823, + 742 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Richard S Sutton, David A McAllester, Satinder P Singh, Yishay Mansour, et al. Policy gradient methods for reinforcement learning with function approximation. In Advances in Neural Information Processing Systems, volume 99, pp. 1057–1063, 1999. ", + "bbox": [ + 173, + 751, + 823, + 795 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Gerald Tesauro. Temporal difference learning and TD-Gammon. Communications of the ACM, 38 (3):58–68, 1995. ", + "bbox": [ + 171, + 804, + 823, + 833 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Philip Thomas. Bias in natural actor-critic algorithms. In Proceedings of The 31st International Conference on Machine Learning, pp. 441–448, 2014. ", + "bbox": [ + 171, + 843, + 825, + 872 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Hado Van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double Qlearning. In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence (AAAI-16), pp. 2094–2100, 2016. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Harm Van Seijen, Hado Van Hasselt, Shimon Whiteson, and Marco Wiering. A theoretical and empirical analysis of expected sarsa. In 2009 IEEE Symposium on Adaptive Dynamic Programming and Reinforcement Learning, pp. 177–184. IEEE, 2009. ", + "bbox": [ + 174, + 103, + 821, + 146 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Yin-Hao Wang, Tzuu-Hseng S Li, and Chih-Jui Lin. Backward q-learning: The combination of sarsa algorithm and q-learning. Engineering Applications of Artificial Intelligence, 26(9):2184–2193, 2013. ", + "bbox": [ + 176, + 155, + 823, + 196 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas. Dueling network architectures for deep reinforcement learning. In Proceedings of the 33rd International Conference on Machine Learning (ICML), pp. 1995–2003, 2016. ", + "bbox": [ + 173, + 207, + 826, + 250 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Christopher John Cornish Hellaby Watkins. Learning from delayed rewards. PhD thesis, University of Cambridge England, 1989. ", + "bbox": [ + 176, + 257, + 821, + 287 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement learning. Machine learning, 8(3-4):229–256, 1992. ", + "bbox": [ + 174, + 295, + 821, + 325 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Ronald J Williams and Jing Peng. Function optimization using connectionist reinforcement learning algorithms. Connection Science, 3(3):241–268, 1991. ", + "bbox": [ + 176, + 333, + 823, + 363 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A PGQL BELLMAN RESIDUAL ", + "text_level": 1, + "bbox": [ + 176, + 388, + 444, + 405 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here we demonstrate that in the tabular case the Bellman residual of the induced Q-values for the PGQL updates of (14) converges to zero as the temperature $\\alpha$ decreases, which is the same guarantee as vanilla regularized policy gradient (2). We will use the notation that $\\pi _ { \\alpha }$ is the policy at the fixed point of PGQL updates (14) for some $\\alpha$ , i.e., $\\pi _ { \\alpha } \\propto \\exp ( \\tilde { Q } ^ { \\pi _ { \\alpha } } )$ , with induced Q-value function $Q ^ { \\pi _ { \\alpha } }$ . ", + "bbox": [ + 173, + 420, + 825, + 479 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "First, note that we can apply the same argument as in $\\ S 3 . 4$ to show that $\\begin{array} { r l } { { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - } } \\end{array}$ $\\mathcal { T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| \\ = \\ 0$ (the only difference is that we lack the property that ${ \\tilde { Q } } ^ { \\pi _ { \\alpha } }$ is the fixed point of $\\mathcal { T } ^ { \\pi _ { \\alpha } } )$ . Secondly, from equation (15) we can write $\\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } = \\eta ( { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } )$ . Combining these two facts we have ", + "bbox": [ + 176, + 486, + 825, + 547 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/3401d7823da43b77ffdfd473b449a54b8bf631edeb037ac9ef5730864fb77e4e.jpg", + "text": "$$\n\\begin{array} { r c l } { \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } + { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\gamma \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta / ( 1 - \\eta \\gamma ) \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 253, + 550, + 743, + 636 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "and so $\\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0$ as $\\alpha 0$ . Using this fact we have ", + "bbox": [ + 173, + 642, + 578, + 659 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/e86475be731502fcb8a5c74301d36420f3032ff0da3603324184247dc4550b7b.jpg", + "text": "$$\n\\begin{array} { r l } { \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - \\hat { Q } ^ { \\pi _ { \\alpha } } \\| } & { = \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } + { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } + { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { < 3 / ( 1 - \\eta \\gamma ) \\| { T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 196, + 664, + 800, + 733 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "which therefore also converges to zero in the limit. Finally we obtain ", + "bbox": [ + 173, + 738, + 627, + 753 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/79e091ad9e6d12f27956f429c937fccf9e8bdc14dc68f2d2b430161b06a02d86.jpg", + "text": "$$\n\\begin{array} { r l r } { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } + T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } + \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 220, + 758, + 777, + 811 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "which combined with the two previous results implies that $\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| = 0 } \\end{array}$ , as before. ", + "bbox": [ + 171, + 818, + 823, + 833 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B ATARI SCORES ", + "bbox": [ + 176, + 103, + 331, + 117 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/7776eb2e4c22c69af78a0a2357fcfba07f4076d30f571b527e9dae04d85370e7.jpg", + "table_caption": [ + "Table 3: Normalized scores for the Atari suite from random starts, as a percentage of human normalized score. " + ], + "table_footnote": [], + "table_body": "
GameA3CQ-learningPGQL
25.53
alien38.43 68.6912.2946.70 71.00
amidar2802.87
assault854.641695.21
asterix191.6998.533790.08
asteroids24.375.3250.23
atlantis15496.0113635.8816217.49
bank heist210.2891.80212.15
battle zone21.632.8952.00
beam rider59.5579.94155.71
berzerk79.3855.5592.85
bowling2.70-7.093.85
boxing510.30299.49902.77
breakout2341.133291.222959.16
centipede50.22105.9873.88
chopper command61.1319.18162.93
crazy climber510.25189.01476.11
defender475.9358.94911.13
demon attack4027.573449.273994.49
double dunk1250.0091.351375.00
enduro9.949.949.94
fishing derby140.84-14.48145.57
freeway-0.26-0.13-0.13
frostbite5.8510.715.71
gopher429.769131.972060.41
gravitar0.711.351.74
hero145.7115.4792.88
ice hockey62.2521.5776.96
jamesbond133.90110.97142.08
kangaroo-0.94-0.94-0.75
krull736.303586.30557.44
kung fu master182.34260.14254.42
montezuma revenge-0.491.80-0.48
ms pacman17.9110.7125.76
name this game102.01113.89188.90
phoenix447.05812.991507.07
pitfall5.485.49 24.965.49 116.37
pong116.37 -0.880.03-0.04
private eye
qbert riverraid186.91159.71136.17
107.2565.01128.63
road runner robotank603.11 15.71179.69519.51
134.8771.50
seaquest3.813.715.88
skiing solaris54.2754.1054.16
space invaders27.0534.6128.66
188.65146.39608.44
star gunner756.60205.70977.99
surround28.29-1.5178.15
tennis145.58-15.35145.58
time pilot270.7491.59438.50
tutankham224.76110.11239.58
up n down1637.01148.101484.43
venture-1.76-1.76-1.76
video pinball3007.374325.024743.68
wizard of wor150.5288.07325.39
yars revenge81.5423.39252.83
zaxxon4.0144.11224.89
", + "bbox": [ + 349, + 131, + 645, + 729 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/B1kJ6H9ex/B1kJ6H9ex_middle.json b/parse/train/B1kJ6H9ex/B1kJ6H9ex_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..81e8405635f0b67c1f62278ed81b872913754c90 --- /dev/null +++ b/parse/train/B1kJ6H9ex/B1kJ6H9ex_middle.json @@ -0,0 +1,43025 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 475, + 97 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 478, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 478, + 101 + ], + "score": 1.0, + "content": "COMBINING POLICY GRADIENT AND Q-LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 117, + 445, + 152 + ], + "lines": [ + { + "bbox": [ + 111, + 117, + 445, + 131 + ], + "spans": [ + { + "bbox": [ + 111, + 117, + 445, + 131 + ], + "score": 1.0, + "content": "Brendan O’Donoghue, Remi Munos, Koray Kavukcuoglu & Volodymyr Mnih ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 129, + 157, + 141 + ], + "spans": [ + { + "bbox": [ + 111, + 129, + 157, + 141 + ], + "score": 1.0, + "content": "Deepmind", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 140, + 365, + 153 + ], + "spans": [ + { + "bbox": [ + 112, + 140, + 365, + 153 + ], + "score": 1.0, + "content": "{bodonoghue,munos,korayk,vmnih}@google.com", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 278, + 180, + 333, + 192 + ], + "lines": [ + { + "bbox": [ + 276, + 180, + 335, + 194 + ], + "spans": [ + { + "bbox": [ + 276, + 180, + 335, + 194 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 207, + 468, + 371 + ], + "lines": [ + { + "bbox": [ + 141, + 207, + 470, + 220 + ], + "spans": [ + { + "bbox": [ + 141, + 207, + 470, + 220 + ], + "score": 1.0, + "content": "Policy gradient is an efficient technique for improving a policy in a reinforcement", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 218, + 469, + 231 + ], + "spans": [ + { + "bbox": [ + 141, + 218, + 469, + 231 + ], + "score": 1.0, + "content": "learning setting. However, vanilla online variants are on-policy only and not able", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 229, + 470, + 241 + ], + "spans": [ + { + "bbox": [ + 141, + 229, + 470, + 241 + ], + "score": 1.0, + "content": "to take advantage of off-policy data. In this paper we describe a new technique that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "spans": [ + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "score": 1.0, + "content": "combines policy gradient with off-policy Q-learning, drawing experience from a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "spans": [ + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "score": 1.0, + "content": "replay buffer. This is motivated by making a connection between the fixed points", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 261, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 470, + 275 + ], + "score": 1.0, + "content": "of the regularized policy gradient algorithm and the Q-values. This connection", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 272, + 469, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 469, + 285 + ], + "score": 1.0, + "content": "allows us to estimate the Q-values from the action preferences of the policy, to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 283, + 470, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 283, + 470, + 297 + ], + "score": 1.0, + "content": "which we apply Q-learning updates. We refer to the new technique as ‘PGQL’,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 295, + 470, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 470, + 308 + ], + "score": 1.0, + "content": "for policy gradient and Q-learning. We also establish an equivalency between", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 306, + 469, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 469, + 318 + ], + "score": 1.0, + "content": "action-value fitting techniques and actor-critic algorithms, showing that regular-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 316, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 316, + 470, + 330 + ], + "score": 1.0, + "content": "ized policy gradient techniques can be interpreted as advantage function learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 328, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 142, + 328, + 469, + 340 + ], + "score": 1.0, + "content": "algorithms. We conclude with some numerical examples that demonstrate im-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "score": 1.0, + "content": "proved data efficiency and stability of PGQL. In particular, we tested PGQL on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 350, + 469, + 361 + ], + "spans": [ + { + "bbox": [ + 142, + 350, + 469, + 361 + ], + "score": 1.0, + "content": "the full suite of Atari games and achieved performance exceeding that of both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 360, + 381, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 381, + 374 + ], + "score": 1.0, + "content": "asynchronous advantage actor-critic (A3C) and Q-learning.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 108, + 397, + 206, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "In reinforcement learning an agent explores an environment and through the use of a reward signal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "learns to optimize its behavior to maximize the expected long-term return. Reinforcement learning", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "has seen success in several areas including robotics (Lin, 1993; Levine et al., 2015), computer games", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "(Mnih et al., 2013; 2015), online advertising (Pednault et al., 2002), board games (Tesauro, 1995;", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "Silver et al., 2016), and many others. For an introduction to reinforcement learning we refer to the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "score": 1.0, + "content": "classic text by Sutton & Barto (1998). In this paper we consider model-free reinforcement learning,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "where the state-transition function is not known or learned. There are many different algorithms for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "model-free reinforcement learning, but most fall into one of two families: action-value fitting and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 217, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 217, + 525 + ], + "score": 1.0, + "content": "policy gradient techniques.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "Action-value techniques involve fitting a function, called the Q-values, that captures the expected", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "return for taking a particular action at a particular state, and then following a particular policy there-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "after. Two alternatives we discuss in this paper are SARSA (Rummery & Niranjan, 1994) and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "Q-learning (Watkins, 1989), although there are many others. SARSA is an on-policy algorithm", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "whereby the action-value function is fit to the current policy, which is then refined by being mostly", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "greedy with respect to those action-values. On the other hand, Q-learning attempts to find the Q-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "values associated with the optimal policy directly and does not fit to the policy that was used to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "generate the data. Q-learning is an off-policy algorithm that can use data generated by another agent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "or from a replay buffer of old experience. Under certain conditions both SARSA and Q-learning can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "be shown to converge to the optimal Q-values, from which we can derive the optimal policy (Sutton,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 637, + 253, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 253, + 650 + ], + "score": 1.0, + "content": "1988; Bertsekas & Tsitsiklis, 1996).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "In policy gradient techniques the policy is represented explicitly and we improve the policy by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "updating the parameters in the direction of the gradient of the performance (Sutton et al., 1999;", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "Silver et al., 2014; Kakade, 2001). Online policy gradient typically requires an estimate of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "action-value function of the current policy. For this reason they are often referred to as actor-critic", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "methods, where the actor refers to the policy and the critic to the estimate of the action-value function", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(Konda & Tsitsiklis, 2003). Vanilla actor-critic methods are on-policy only, although some attempts", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 487, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 487, + 732 + ], + "score": 1.0, + "content": "have been made to extend them to off-policy data (Degris et al., 2012; Levine & Koltun, 2013).", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 475, + 97 + ], + "lines": [ + { + "bbox": [ + 105, + 77, + 478, + 101 + ], + "spans": [ + { + "bbox": [ + 105, + 77, + 478, + 101 + ], + "score": 1.0, + "content": "COMBINING POLICY GRADIENT AND Q-LEARNING", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 112, + 117, + 445, + 152 + ], + "lines": [ + { + "bbox": [ + 111, + 117, + 445, + 131 + ], + "spans": [ + { + "bbox": [ + 111, + 117, + 445, + 131 + ], + "score": 1.0, + "content": "Brendan O’Donoghue, Remi Munos, Koray Kavukcuoglu & Volodymyr Mnih ´", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 129, + 157, + 141 + ], + "spans": [ + { + "bbox": [ + 111, + 129, + 157, + 141 + ], + "score": 1.0, + "content": "Deepmind", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 140, + 365, + 153 + ], + "spans": [ + { + "bbox": [ + 112, + 140, + 365, + 153 + ], + "score": 1.0, + "content": "{bodonoghue,munos,korayk,vmnih}@google.com", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 111, + 117, + 445, + 153 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 180, + 333, + 192 + ], + "lines": [ + { + "bbox": [ + 276, + 180, + 335, + 194 + ], + "spans": [ + { + "bbox": [ + 276, + 180, + 335, + 194 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 207, + 468, + 371 + ], + "lines": [ + { + "bbox": [ + 141, + 207, + 470, + 220 + ], + "spans": [ + { + "bbox": [ + 141, + 207, + 470, + 220 + ], + "score": 1.0, + "content": "Policy gradient is an efficient technique for improving a policy in a reinforcement", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 218, + 469, + 231 + ], + "spans": [ + { + "bbox": [ + 141, + 218, + 469, + 231 + ], + "score": 1.0, + "content": "learning setting. However, vanilla online variants are on-policy only and not able", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 229, + 470, + 241 + ], + "spans": [ + { + "bbox": [ + 141, + 229, + 470, + 241 + ], + "score": 1.0, + "content": "to take advantage of off-policy data. In this paper we describe a new technique that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "spans": [ + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "score": 1.0, + "content": "combines policy gradient with off-policy Q-learning, drawing experience from a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "spans": [ + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "score": 1.0, + "content": "replay buffer. This is motivated by making a connection between the fixed points", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 261, + 470, + 275 + ], + "spans": [ + { + "bbox": [ + 141, + 261, + 470, + 275 + ], + "score": 1.0, + "content": "of the regularized policy gradient algorithm and the Q-values. This connection", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 272, + 469, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 272, + 469, + 285 + ], + "score": 1.0, + "content": "allows us to estimate the Q-values from the action preferences of the policy, to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 283, + 470, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 283, + 470, + 297 + ], + "score": 1.0, + "content": "which we apply Q-learning updates. We refer to the new technique as ‘PGQL’,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 295, + 470, + 308 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 470, + 308 + ], + "score": 1.0, + "content": "for policy gradient and Q-learning. We also establish an equivalency between", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 306, + 469, + 318 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 469, + 318 + ], + "score": 1.0, + "content": "action-value fitting techniques and actor-critic algorithms, showing that regular-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 316, + 470, + 330 + ], + "spans": [ + { + "bbox": [ + 141, + 316, + 470, + 330 + ], + "score": 1.0, + "content": "ized policy gradient techniques can be interpreted as advantage function learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 142, + 328, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 142, + 328, + 469, + 340 + ], + "score": 1.0, + "content": "algorithms. We conclude with some numerical examples that demonstrate im-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 470, + 352 + ], + "score": 1.0, + "content": "proved data efficiency and stability of PGQL. In particular, we tested PGQL on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 350, + 469, + 361 + ], + "spans": [ + { + "bbox": [ + 142, + 350, + 469, + 361 + ], + "score": 1.0, + "content": "the full suite of Atari games and achieved performance exceeding that of both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 360, + 381, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 360, + 381, + 374 + ], + "score": 1.0, + "content": "asynchronous advantage actor-critic (A3C) and Q-learning.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 12, + "bbox_fs": [ + 141, + 207, + 470, + 374 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 397, + 206, + 410 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 208, + 413 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "In reinforcement learning an agent explores an environment and through the use of a reward signal", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "learns to optimize its behavior to maximize the expected long-term return. Reinforcement learning", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 506, + 459 + ], + "score": 1.0, + "content": "has seen success in several areas including robotics (Lin, 1993; Levine et al., 2015), computer games", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 469 + ], + "score": 1.0, + "content": "(Mnih et al., 2013; 2015), online advertising (Pednault et al., 2002), board games (Tesauro, 1995;", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "Silver et al., 2016), and many others. For an introduction to reinforcement learning we refer to the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "score": 1.0, + "content": "classic text by Sutton & Barto (1998). In this paper we consider model-free reinforcement learning,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 505, + 502 + ], + "score": 1.0, + "content": "where the state-transition function is not known or learned. There are many different algorithms for", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "model-free reinforcement learning, but most fall into one of two families: action-value fitting and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 511, + 217, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 217, + 525 + ], + "score": 1.0, + "content": "policy gradient techniques.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 424, + 506, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "Action-value techniques involve fitting a function, called the Q-values, that captures the expected", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 505, + 552 + ], + "score": 1.0, + "content": "return for taking a particular action at a particular state, and then following a particular policy there-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "after. Two alternatives we discuss in this paper are SARSA (Rummery & Niranjan, 1994) and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "Q-learning (Watkins, 1989), although there are many others. SARSA is an on-policy algorithm", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "whereby the action-value function is fit to the current policy, which is then refined by being mostly", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "greedy with respect to those action-values. On the other hand, Q-learning attempts to find the Q-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 505, + 607 + ], + "score": 1.0, + "content": "values associated with the optimal policy directly and does not fit to the policy that was used to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 604, + 506, + 619 + ], + "score": 1.0, + "content": "generate the data. Q-learning is an off-policy algorithm that can use data generated by another agent", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "or from a replay buffer of old experience. Under certain conditions both SARSA and Q-learning can", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "be shown to converge to the optimal Q-values, from which we can derive the optimal policy (Sutton,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 637, + 253, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 253, + 650 + ], + "score": 1.0, + "content": "1988; Bertsekas & Tsitsiklis, 1996).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 528, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "In policy gradient techniques the policy is represented explicitly and we improve the policy by", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "updating the parameters in the direction of the gradient of the performance (Sutton et al., 1999;", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 689 + ], + "score": 1.0, + "content": "Silver et al., 2014; Kakade, 2001). Online policy gradient typically requires an estimate of the", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "action-value function of the current policy. For this reason they are often referred to as actor-critic", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "methods, where the actor refers to the policy and the critic to the estimate of the action-value function", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "(Konda & Tsitsiklis, 2003). Vanilla actor-critic methods are on-policy only, although some attempts", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 487, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 487, + 732 + ], + "score": 1.0, + "content": "have been made to extend them to off-policy data (Degris et al., 2012; Levine & Koltun, 2013).", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 654, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "In this paper we derive a link between the Q-values induced by a policy and the policy itself when", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "the policy is the fixed point of a regularized policy gradient algorithm (where the gradient van-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "score": 1.0, + "content": "ishes). This connection allows us to derive an estimate of the Q-values from the current policy,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "which we can refine using off-policy data and Q-learning. We show in the tabular setting that when", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "the regularization penalty is small (the usual case) the resulting policy is close to the policy that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "would be found without the addition of the Q-learning update. Separately, we show that regularized", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "score": 1.0, + "content": "actor-critic methods can be interpreted as action-value fitting methods, where the Q-values have", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "been parameterized in a particular way. We conclude with some numerical examples that provide", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 389, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 389, + 184 + ], + "score": 1.0, + "content": "empirical evidence of improved data efficiency and stability of PGQL.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "title", + "bbox": [ + 108, + 198, + 187, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 189, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 189, + 210 + ], + "score": 1.0, + "content": "1.1 PRIOR WORK", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 232 + ], + "score": 1.0, + "content": "Here we highlight various axes along which our work can be compared to others. In this paper we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "use entropy regularization to ensure exploration in the policy, which is a common practice in policy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "score": 1.0, + "content": "gradient (Williams & Peng, 1991; Mnih et al., 2016). An alternative is to use KL-divergence instead", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "of entropy as a regularizer, or as a constraint on how much deviation is permitted from a prior policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "(Bagnell & Schneider, 2003; Peters et al., 2010; Schulman et al., 2015; Fox et al., 2015). Natural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "score": 1.0, + "content": "policy gradient can also be interpreted as putting a constraint on the KL-divergence at each step", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "of the policy improvement (Amari, 1998; Kakade, 2001; Pascanu & Bengio, 2013). In Sallans &", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Hinton (2004) the authors use a Boltzmann exploration policy over estimated Q-values which they", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "update using TD-learning. In Heess et al. (2012) this was extended to use an actor-critic algorithm", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "score": 1.0, + "content": "instead of TD-learning, however the two updates were not combined as we have done in this paper.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "In Azar et al. (2012) the authors develop an algorithm called dynamic policy programming, whereby", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "they apply a Bellman-like update to the action-preferences of a policy, which is similar in spirit to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "the update we describe here. In Norouzi et al. (2016) the authors augment a maximum likelihood", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "objective with a reward in a supervised learning setting, and develop a connection that resembles", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "the one we develop here between the policy and the Q-values. Other works have attempted to com-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "score": 1.0, + "content": "bine on and off-policy learning, primarily using action-value fitting methods (Wang et al., 2013;", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 393, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 408 + ], + "score": 1.0, + "content": "Hausknecht & Stone, 2016; Lehnert & Precup, 2015), with varying degrees of success. In this paper", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "we establish a connection between actor-critic algorithms and action-value learning algorithms. In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "particular we show that TD-actor-critic (Konda & Tsitsiklis, 2003) is equivalent to expected-SARSA", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 428, + 504, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 504, + 440 + ], + "score": 1.0, + "content": "(Sutton & Barto, 1998, Exercise 6.10) with Boltzmann exploration where the Q-values are decom-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "posed into advantage function and value function. The algorithm we develop extends actor-critic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "with a Q-learning style update that, due to the decomposition of the Q-values, resembles the update", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 459, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 474 + ], + "score": 1.0, + "content": "of the dueling architecture (Wang et al., 2016). Recently, the field of deep reinforcement learning,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "i.e., the use of deep neural networks to represent action-values or a policy, has seen a lot of success", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "(Mnih et al., 2015; 2016; Silver et al., 2016; Riedmiller, 2005; Lillicrap et al., 2015; Van Hasselt", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "et al., 2016). In the examples section we use a neural network with PGQL to play the Atari games", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 504, + 131, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 131, + 516 + ], + "score": 1.0, + "content": "suite.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 534, + 273, + 547 + ], + "lines": [ + { + "bbox": [ + 104, + 533, + 275, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 275, + 549 + ], + "score": 1.0, + "content": "2 REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "We consider the infinite horizon, discounted, finite state and action space Markov decision process,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 173, + 585 + ], + "score": 1.0, + "content": "with state space", + "type": "text" + }, + { + "bbox": [ + 174, + 573, + 182, + 582 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 571, + 239, + 585 + ], + "score": 1.0, + "content": ", action space", + "type": "text" + }, + { + "bbox": [ + 239, + 573, + 249, + 582 + ], + "score": 0.74, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 571, + 430, + 585 + ], + "score": 1.0, + "content": "and rewards at each time period denoted by", + "type": "text" + }, + { + "bbox": [ + 430, + 572, + 461, + 583 + ], + "score": 0.92, + "content": "r _ { t } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 571, + 505, + 585 + ], + "score": 1.0, + "content": ". A policy", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 191, + 595 + ], + "score": 0.91, + "content": "\\pi : S \\times A \\to \\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "is a mapping from state-action pair to the probability of taking that action", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 592, + 508, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 234, + 609 + ], + "score": 1.0, + "content": "at that state, so it must satisfy", + "type": "text" + }, + { + "bbox": [ + 234, + 594, + 313, + 607 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\sum _ { a \\in \\mathcal { A } } \\pi ( s , a ) = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 592, + 370, + 609 + ], + "score": 1.0, + "content": "for all states", + "type": "text" + }, + { + "bbox": [ + 370, + 594, + 399, + 604 + ], + "score": 0.91, + "content": "s \\in { \\mathcal { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 592, + 454, + 609 + ], + "score": 1.0, + "content": ". Any policy", + "type": "text" + }, + { + "bbox": [ + 455, + 596, + 462, + 604 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 592, + 508, + 609 + ], + "score": 1.0, + "content": "induces a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 276, + 617 + ], + "score": 1.0, + "content": "probability distribution over visited states,", + "type": "text" + }, + { + "bbox": [ + 277, + 605, + 333, + 617 + ], + "score": 0.87, + "content": "d ^ { \\pi } : S \\to \\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "(which may depend on the initial state), so", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 616, + 401, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 273, + 629 + ], + "score": 1.0, + "content": "the probability of seeing state-action pair", + "type": "text" + }, + { + "bbox": [ + 273, + 616, + 335, + 628 + ], + "score": 0.89, + "content": "( s , a ) \\in S \\times A", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 616, + 345, + 629 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 346, + 616, + 397, + 628 + ], + "score": 0.93, + "content": "d ^ { \\pi } ( s ) \\pi ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 616, + 401, + 629 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "In reinforcement learning an ‘agent’ interacts with an environment over a number of times steps. At", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 165, + 657 + ], + "score": 1.0, + "content": "each time step", + "type": "text" + }, + { + "bbox": [ + 165, + 645, + 171, + 654 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 643, + 272, + 657 + ], + "score": 1.0, + "content": "the agent receives a state", + "type": "text" + }, + { + "bbox": [ + 272, + 645, + 281, + 655 + ], + "score": 0.85, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 643, + 335, + 657 + ], + "score": 1.0, + "content": "and a reward", + "type": "text" + }, + { + "bbox": [ + 336, + 645, + 345, + 655 + ], + "score": 0.83, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 643, + 430, + 657 + ], + "score": 1.0, + "content": "and selects an action", + "type": "text" + }, + { + "bbox": [ + 430, + 645, + 440, + 655 + ], + "score": 0.84, + "content": "a _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "from the policy", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 117, + 666 + ], + "score": 0.82, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 654, + 322, + 668 + ], + "score": 1.0, + "content": ", at which point the agent moves to the next state", + "type": "text" + }, + { + "bbox": [ + 322, + 655, + 402, + 667 + ], + "score": 0.92, + "content": "s _ { t + 1 } \\sim P ( \\cdot , s _ { t } , a _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 654, + 435, + 668 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 435, + 655, + 478, + 667 + ], + "score": 0.93, + "content": "P ( s ^ { \\prime } , s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 256, + 679 + ], + "score": 1.0, + "content": "probability of transitioning from state", + "type": "text" + }, + { + "bbox": [ + 257, + 668, + 262, + 676 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 665, + 293, + 679 + ], + "score": 1.0, + "content": "to state", + "type": "text" + }, + { + "bbox": [ + 293, + 666, + 302, + 676 + ], + "score": 0.86, + "content": "s ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 665, + 376, + 679 + ], + "score": 1.0, + "content": "after taking action", + "type": "text" + }, + { + "bbox": [ + 376, + 669, + 383, + 676 + ], + "score": 0.75, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 665, + 506, + 679 + ], + "score": 1.0, + "content": ". This continues until the agent", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 102, + 677, + 501, + 712 + ], + "spans": [ + { + "bbox": [ + 102, + 677, + 170, + 712 + ], + "score": 1.0, + "content": "encounters a teto find a policy where the expec", + "type": "text" + }, + { + "bbox": [ + 171, + 689, + 178, + 698 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 677, + 390, + 712 + ], + "score": 1.0, + "content": "inal state (after which the process is typically restartthat maximizes the expected total discounted return tion is with respect to the initial state distribution, the", + "type": "text" + }, + { + "bbox": [ + 391, + 687, + 501, + 700 + ], + "score": 0.93, + "content": "\\begin{array} { r } { J ( \\pi ) = \\mathbf { \\bar { E } } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ \\pi ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 209, + 722 + ], + "score": 1.0, + "content": "and the policy, and where", + "type": "text" + }, + { + "bbox": [ + 209, + 710, + 250, + 722 + ], + "score": 0.93, + "content": "\\gamma \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "is the discount factor that, loosely speaking, controls how much", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "the agent prioritizes long-term versus short-term rewards. Since the agent starts with no knowledge", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 47 + } + ], + "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 2017", + "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, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "In this paper we derive a link between the Q-values induced by a policy and the policy itself when", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "the policy is the fixed point of a regularized policy gradient algorithm (where the gradient van-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 505, + 118 + ], + "score": 1.0, + "content": "ishes). This connection allows us to derive an estimate of the Q-values from the current policy,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "which we can refine using off-policy data and Q-learning. We show in the tabular setting that when", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "the regularization penalty is small (the usual case) the resulting policy is close to the policy that", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "would be found without the addition of the Q-learning update. Separately, we show that regularized", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "score": 1.0, + "content": "actor-critic methods can be interpreted as action-value fitting methods, where the Q-values have", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "been parameterized in a particular way. We conclude with some numerical examples that provide", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 389, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 389, + 184 + ], + "score": 1.0, + "content": "empirical evidence of improved data efficiency and stability of PGQL.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 81, + 506, + 184 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 198, + 187, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 189, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 189, + 210 + ], + "score": 1.0, + "content": "1.1 PRIOR WORK", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 220, + 505, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 218, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 232 + ], + "score": 1.0, + "content": "Here we highlight various axes along which our work can be compared to others. In this paper we", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "use entropy regularization to ensure exploration in the policy, which is a common practice in policy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 255 + ], + "score": 1.0, + "content": "gradient (Williams & Peng, 1991; Mnih et al., 2016). An alternative is to use KL-divergence instead", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "of entropy as a regularizer, or as a constraint on how much deviation is permitted from a prior policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "(Bagnell & Schneider, 2003; Peters et al., 2010; Schulman et al., 2015; Fox et al., 2015). Natural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 288 + ], + "score": 1.0, + "content": "policy gradient can also be interpreted as putting a constraint on the KL-divergence at each step", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "of the policy improvement (Amari, 1998; Kakade, 2001; Pascanu & Bengio, 2013). In Sallans &", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 505, + 309 + ], + "score": 1.0, + "content": "Hinton (2004) the authors use a Boltzmann exploration policy over estimated Q-values which they", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "update using TD-learning. In Heess et al. (2012) this was extended to use an actor-critic algorithm", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 317, + 505, + 331 + ], + "score": 1.0, + "content": "instead of TD-learning, however the two updates were not combined as we have done in this paper.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 342 + ], + "score": 1.0, + "content": "In Azar et al. (2012) the authors develop an algorithm called dynamic policy programming, whereby", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 352 + ], + "score": 1.0, + "content": "they apply a Bellman-like update to the action-preferences of a policy, which is similar in spirit to", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "the update we describe here. In Norouzi et al. (2016) the authors augment a maximum likelihood", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 505, + 375 + ], + "score": 1.0, + "content": "objective with a reward in a supervised learning setting, and develop a connection that resembles", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 385 + ], + "score": 1.0, + "content": "the one we develop here between the policy and the Q-values. Other works have attempted to com-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 383, + 506, + 397 + ], + "score": 1.0, + "content": "bine on and off-policy learning, primarily using action-value fitting methods (Wang et al., 2013;", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 393, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 408 + ], + "score": 1.0, + "content": "Hausknecht & Stone, 2016; Lehnert & Precup, 2015), with varying degrees of success. In this paper", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "we establish a connection between actor-critic algorithms and action-value learning algorithms. In", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "particular we show that TD-actor-critic (Konda & Tsitsiklis, 2003) is equivalent to expected-SARSA", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 428, + 504, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 504, + 440 + ], + "score": 1.0, + "content": "(Sutton & Barto, 1998, Exercise 6.10) with Boltzmann exploration where the Q-values are decom-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 451 + ], + "score": 1.0, + "content": "posed into advantage function and value function. The algorithm we develop extends actor-critic", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "with a Q-learning style update that, due to the decomposition of the Q-values, resembles the update", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 459, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 474 + ], + "score": 1.0, + "content": "of the dueling architecture (Wang et al., 2016). Recently, the field of deep reinforcement learning,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "i.e., the use of deep neural networks to represent action-values or a policy, has seen a lot of success", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 505, + 495 + ], + "score": 1.0, + "content": "(Mnih et al., 2015; 2016; Silver et al., 2016; Riedmiller, 2005; Lillicrap et al., 2015; Van Hasselt", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "et al., 2016). In the examples section we use a neural network with PGQL to play the Atari games", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 504, + 131, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 131, + 516 + ], + "score": 1.0, + "content": "suite.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 218, + 506, + 516 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 534, + 273, + 547 + ], + "lines": [ + { + "bbox": [ + 104, + 533, + 275, + 549 + ], + "spans": [ + { + "bbox": [ + 104, + 533, + 275, + 549 + ], + "score": 1.0, + "content": "2 REINFORCEMENT LEARNING", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 505, + 628 + ], + "lines": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "We consider the infinite horizon, discounted, finite state and action space Markov decision process,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 173, + 585 + ], + "score": 1.0, + "content": "with state space", + "type": "text" + }, + { + "bbox": [ + 174, + 573, + 182, + 582 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 571, + 239, + 585 + ], + "score": 1.0, + "content": ", action space", + "type": "text" + }, + { + "bbox": [ + 239, + 573, + 249, + 582 + ], + "score": 0.74, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 571, + 430, + 585 + ], + "score": 1.0, + "content": "and rewards at each time period denoted by", + "type": "text" + }, + { + "bbox": [ + 430, + 572, + 461, + 583 + ], + "score": 0.92, + "content": "r _ { t } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 571, + 505, + 585 + ], + "score": 1.0, + "content": ". A policy", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 191, + 595 + ], + "score": 0.91, + "content": "\\pi : S \\times A \\to \\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "is a mapping from state-action pair to the probability of taking that action", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 592, + 508, + 609 + ], + "spans": [ + { + "bbox": [ + 104, + 592, + 234, + 609 + ], + "score": 1.0, + "content": "at that state, so it must satisfy", + "type": "text" + }, + { + "bbox": [ + 234, + 594, + 313, + 607 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\sum _ { a \\in \\mathcal { A } } \\pi ( s , a ) = 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 592, + 370, + 609 + ], + "score": 1.0, + "content": "for all states", + "type": "text" + }, + { + "bbox": [ + 370, + 594, + 399, + 604 + ], + "score": 0.91, + "content": "s \\in { \\mathcal { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 592, + 454, + 609 + ], + "score": 1.0, + "content": ". Any policy", + "type": "text" + }, + { + "bbox": [ + 455, + 596, + 462, + 604 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 592, + 508, + 609 + ], + "score": 1.0, + "content": "induces a", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 276, + 617 + ], + "score": 1.0, + "content": "probability distribution over visited states,", + "type": "text" + }, + { + "bbox": [ + 277, + 605, + 333, + 617 + ], + "score": 0.87, + "content": "d ^ { \\pi } : S \\to \\mathbb { R } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 604, + 506, + 617 + ], + "score": 1.0, + "content": "(which may depend on the initial state), so", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 616, + 401, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 273, + 629 + ], + "score": 1.0, + "content": "the probability of seeing state-action pair", + "type": "text" + }, + { + "bbox": [ + 273, + 616, + 335, + 628 + ], + "score": 0.89, + "content": "( s , a ) \\in S \\times A", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 616, + 345, + 629 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 346, + 616, + 397, + 628 + ], + "score": 0.93, + "content": "d ^ { \\pi } ( s ) \\pi ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 616, + 401, + 629 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 560, + 508, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "In reinforcement learning an ‘agent’ interacts with an environment over a number of times steps. At", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 165, + 657 + ], + "score": 1.0, + "content": "each time step", + "type": "text" + }, + { + "bbox": [ + 165, + 645, + 171, + 654 + ], + "score": 0.67, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 643, + 272, + 657 + ], + "score": 1.0, + "content": "the agent receives a state", + "type": "text" + }, + { + "bbox": [ + 272, + 645, + 281, + 655 + ], + "score": 0.85, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 643, + 335, + 657 + ], + "score": 1.0, + "content": "and a reward", + "type": "text" + }, + { + "bbox": [ + 336, + 645, + 345, + 655 + ], + "score": 0.83, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 643, + 430, + 657 + ], + "score": 1.0, + "content": "and selects an action", + "type": "text" + }, + { + "bbox": [ + 430, + 645, + 440, + 655 + ], + "score": 0.84, + "content": "a _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "from the policy", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 117, + 666 + ], + "score": 0.82, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 654, + 322, + 668 + ], + "score": 1.0, + "content": ", at which point the agent moves to the next state", + "type": "text" + }, + { + "bbox": [ + 322, + 655, + 402, + 667 + ], + "score": 0.92, + "content": "s _ { t + 1 } \\sim P ( \\cdot , s _ { t } , a _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 654, + 435, + 668 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 435, + 655, + 478, + 667 + ], + "score": 0.93, + "content": "P ( s ^ { \\prime } , s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 256, + 679 + ], + "score": 1.0, + "content": "probability of transitioning from state", + "type": "text" + }, + { + "bbox": [ + 257, + 668, + 262, + 676 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 665, + 293, + 679 + ], + "score": 1.0, + "content": "to state", + "type": "text" + }, + { + "bbox": [ + 293, + 666, + 302, + 676 + ], + "score": 0.86, + "content": "s ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 665, + 376, + 679 + ], + "score": 1.0, + "content": "after taking action", + "type": "text" + }, + { + "bbox": [ + 376, + 669, + 383, + 676 + ], + "score": 0.75, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 665, + 506, + 679 + ], + "score": 1.0, + "content": ". This continues until the agent", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 102, + 677, + 501, + 712 + ], + "spans": [ + { + "bbox": [ + 102, + 677, + 170, + 712 + ], + "score": 1.0, + "content": "encounters a teto find a policy where the expec", + "type": "text" + }, + { + "bbox": [ + 171, + 689, + 178, + 698 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 677, + 390, + 712 + ], + "score": 1.0, + "content": "inal state (after which the process is typically restartthat maximizes the expected total discounted return tion is with respect to the initial state distribution, the", + "type": "text" + }, + { + "bbox": [ + 391, + 687, + 501, + 700 + ], + "score": 0.93, + "content": "\\begin{array} { r } { J ( \\pi ) = \\mathbf { \\bar { E } } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ \\pi ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 209, + 722 + ], + "score": 1.0, + "content": "and the policy, and where", + "type": "text" + }, + { + "bbox": [ + 209, + 710, + 250, + 722 + ], + "score": 0.93, + "content": "\\gamma \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "is the discount factor that, loosely speaking, controls how much", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "the agent prioritizes long-term versus short-term rewards. Since the agent starts with no knowledge", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 80, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 96 + ], + "score": 1.0, + "content": "of the environment it must continually explore the state space and so will typically use a stochastic", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 137, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 137, + 108 + ], + "score": 1.0, + "content": "policy.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 47, + "bbox_fs": [ + 102, + 633, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 96 + ], + "score": 1.0, + "content": "of the environment it must continually explore the state space and so will typically use a stochastic", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 137, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 137, + 108 + ], + "score": 1.0, + "content": "policy.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 106, + 116, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 116, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 451, + 130 + ], + "score": 1.0, + "content": "Action-values. The action-value, or Q-value, of a particular state under policy", + "type": "text" + }, + { + "bbox": [ + 451, + 119, + 459, + 127 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 116, + 505, + 130 + ], + "score": 1.0, + "content": "is the ex-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 298, + 128, + 509, + 158 + ], + "spans": [ + { + "bbox": [ + 298, + 128, + 379, + 158 + ], + "score": 1.0, + "content": "action at that state . The value of state", + "type": "text" + }, + { + "bbox": [ + 385, + 128, + 435, + 158 + ], + "score": 1.0, + "content": "d following under polic", + "type": "text" + }, + { + "bbox": [ + 435, + 130, + 443, + 138 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 128, + 509, + 158 + ], + "score": 1.0, + "content": "thereafter, i.e.,is denoted by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 138, + 447, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 298, + 151 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\dot { Q } ^ { \\pi } ( s , a ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = \\overline { { \\ a } } , \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 141, + 385, + 149 + ], + "score": 0.68, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 141, + 447, + 149 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 147, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 252, + 164 + ], + "score": 0.9, + "content": "\\begin{array} { r } { V ^ { \\pi } ( s ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\mid s _ { 0 } = s , \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 147, + 474, + 168 + ], + "score": 1.0, + "content": ", which is the expected total discounted return of policy", + "type": "text" + }, + { + "bbox": [ + 475, + 153, + 482, + 161 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 147, + 507, + 168 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 160, + 504, + 176 + ], + "spans": [ + { + "bbox": [ + 104, + 160, + 127, + 176 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 128, + 164, + 134, + 172 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 160, + 324, + 176 + ], + "score": 1.0, + "content": ". The optimal action-value function is denoted", + "type": "text" + }, + { + "bbox": [ + 324, + 162, + 338, + 173 + ], + "score": 0.89, + "content": "Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 160, + 392, + 176 + ], + "score": 1.0, + "content": "and satisfies", + "type": "text" + }, + { + "bbox": [ + 392, + 162, + 504, + 174 + ], + "score": 0.9, + "content": "Q ^ { \\star } ( s , a ) = \\operatorname* { m a x } _ { \\pi } Q ^ { \\pi } ( s , a )", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 141, + 186 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 142, + 173, + 164, + 185 + ], + "score": 0.92, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 171, + 409, + 186 + ], + "score": 1.0, + "content": ". The policy that achieves the maximum is the optimal policy", + "type": "text" + }, + { + "bbox": [ + 410, + 174, + 421, + 183 + ], + "score": 0.85, + "content": "\\pi ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 171, + 506, + 186 + ], + "score": 1.0, + "content": ", with value function", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 182, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 107, + 184, + 120, + 194 + ], + "score": 0.86, + "content": "V ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 182, + 506, + 198 + ], + "score": 1.0, + "content": ". The advantage function is the difference between the action-value and the value function, i.e.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 194, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 107, + 195, + 227, + 207 + ], + "score": 0.91, + "content": "A ^ { \\pi } ( s , a ) = Q ^ { \\pi } ( \\bar { s _ { \\bf { \\Re } } } a ) - V ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 194, + 477, + 208 + ], + "score": 1.0, + "content": ", and represents the additional expected reward of taking action", + "type": "text" + }, + { + "bbox": [ + 478, + 197, + 484, + 205 + ], + "score": 0.75, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 194, + 506, + 208 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 307, + 219 + ], + "score": 1.0, + "content": "the average performance of the policy from state", + "type": "text" + }, + { + "bbox": [ + 307, + 208, + 313, + 216 + ], + "score": 0.63, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 205, + 344, + 219 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 345, + 205, + 468, + 218 + ], + "score": 0.92, + "content": "\\begin{array} { r } { V ^ { \\bar { \\pi } } ( s ) = \\sum _ { a } \\pi ( s , a ) Q ^ { \\pi } \\bar { ( } s , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 205, + 506, + 219 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 215, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 155, + 231 + ], + "score": 1.0, + "content": "the identity", + "type": "text" + }, + { + "bbox": [ + 155, + 217, + 256, + 229 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\sum _ { a } \\pi ( s , a ) A ^ { \\pi } ( s , a ) ^ { - } = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 215, + 403, + 231 + ], + "score": 1.0, + "content": ", which simply states that the policy", + "type": "text" + }, + { + "bbox": [ + 404, + 219, + 411, + 227 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 215, + 506, + 231 + ], + "score": 1.0, + "content": "has no advantage over", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 226, + 132, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 132, + 240 + ], + "score": 1.0, + "content": "itself.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 469, + 263 + ], + "lines": [ + { + "bbox": [ + 104, + 249, + 471, + 266 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 284, + 266 + ], + "score": 1.0, + "content": "Bellman equation. The Bellman operator", + "type": "text" + }, + { + "bbox": [ + 284, + 252, + 298, + 262 + ], + "score": 0.88, + "content": "\\mathcal { T } ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 249, + 408, + 266 + ], + "score": 1.0, + "content": "(Bellman, 1957) for policy", + "type": "text" + }, + { + "bbox": [ + 409, + 254, + 416, + 261 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 249, + 471, + 266 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 268, + 387, + 287 + ], + "lines": [ + { + "bbox": [ + 223, + 268, + 387, + 287 + ], + "spans": [ + { + "bbox": [ + 223, + 268, + 387, + 287 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { \\pi } Q ( s , a ) = \\mathrm { \\bf ~ E } _ { s ^ { \\prime } , r , b } ( r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) ) ,", + "type": "interline_equation", + "image_path": "89c378cc0343c47eb6af9271bc8d2fb860312fad8c9c9b40b854666d7247f446.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 223, + 268, + 387, + 287 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 504, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 271, + 306 + ], + "score": 1.0, + "content": "where the expectation is over next state", + "type": "text" + }, + { + "bbox": [ + 271, + 293, + 332, + 306 + ], + "score": 0.93, + "content": "s ^ { \\prime } \\sim P ( \\cdot , s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 293, + 382, + 306 + ], + "score": 1.0, + "content": ", the reward", + "type": "text" + }, + { + "bbox": [ + 383, + 294, + 410, + 306 + ], + "score": 0.92, + "content": "r ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 293, + 475, + 306 + ], + "score": 1.0, + "content": ", and the action", + "type": "text" + }, + { + "bbox": [ + 476, + 294, + 481, + 304 + ], + "score": 0.77, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 134, + 318 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 306, + 147, + 316 + ], + "score": 0.84, + "content": "\\pi _ { s ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 303, + 284, + 318 + ], + "score": 1.0, + "content": ". The Q-value function for policy", + "type": "text" + }, + { + "bbox": [ + 284, + 307, + 292, + 315 + ], + "score": 0.78, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 303, + 477, + 318 + ], + "score": 1.0, + "content": "is the fixed point of the Bellman operator for", + "type": "text" + }, + { + "bbox": [ + 477, + 308, + 484, + 315 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 303, + 506, + 318 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 315, + 356, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 160, + 327 + ], + "score": 0.92, + "content": "{ \\mathcal { T } } ^ { \\pi } Q ^ { \\pi } = Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 315, + 288, + 328 + ], + "score": 1.0, + "content": ". The optimal Bellman operator", + "type": "text" + }, + { + "bbox": [ + 288, + 316, + 302, + 326 + ], + "score": 0.89, + "content": "\\mathcal { T } ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 315, + 356, + 328 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 332, + 394, + 351 + ], + "lines": [ + { + "bbox": [ + 215, + 332, + 394, + 351 + ], + "spans": [ + { + "bbox": [ + 215, + 332, + 394, + 351 + ], + "score": 0.93, + "content": "\\mathcal { T } ^ { \\star } Q ( s , a ) = \\mathbf { E } _ { s ^ { \\prime } , r } ( r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) ) ,", + "type": "interline_equation", + "image_path": "8cbce3ca3df11e62f2d22c0bcca7002a02924db579f929b7480c9383f255b2e5.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 215, + 332, + 394, + 351 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 287, + 370 + ], + "score": 1.0, + "content": "where the expectation is over the next state", + "type": "text" + }, + { + "bbox": [ + 288, + 357, + 349, + 370 + ], + "score": 0.93, + "content": "s ^ { \\prime } \\sim P ( \\cdot , s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 357, + 418, + 370 + ], + "score": 1.0, + "content": ", and the reward", + "type": "text" + }, + { + "bbox": [ + 419, + 357, + 446, + 369 + ], + "score": 0.92, + "content": "r ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 357, + 505, + 370 + ], + "score": 1.0, + "content": ". The optimal", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 406, + 381 + ], + "score": 1.0, + "content": "Q-value function is the fixed point of the optimal Bellman equation, i.e.,", + "type": "text" + }, + { + "bbox": [ + 407, + 369, + 461, + 380 + ], + "score": 0.92, + "content": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\star } = Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 369, + 505, + 381 + ], + "score": 1.0, + "content": ". Both the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 379, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 107, + 381, + 114, + 390 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 379, + 339, + 393 + ], + "score": 1.0, + "content": "-Bellman operator and the optimal Bellman operator are", + "type": "text" + }, + { + "bbox": [ + 339, + 381, + 346, + 390 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 379, + 506, + 393 + ], + "score": 1.0, + "content": "-contraction mappings in the sup-norm,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 104, + 389, + 124, + 403 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 124, + 390, + 267, + 403 + ], + "score": 0.9, + "content": "\\| T Q _ { 1 } - T Q _ { 2 } \\| _ { \\infty } \\leq \\gamma \\| Q _ { 1 } - Q _ { 2 } \\| _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 389, + 301, + 403 + ], + "score": 1.0, + "content": ", for any", + "type": "text" + }, + { + "bbox": [ + 302, + 390, + 369, + 402 + ], + "score": 0.9, + "content": "Q _ { 1 } , Q _ { 2 } \\in \\mathbb { R } ^ { S \\times A }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 389, + 506, + 403 + ], + "score": 1.0, + "content": ". From this fact one can show that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 401, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 438, + 415 + ], + "score": 1.0, + "content": "the fixed point of each operator is unique, and that value iteration converges, i.e.,", + "type": "text" + }, + { + "bbox": [ + 438, + 401, + 504, + 414 + ], + "score": 0.92, + "content": "( T ^ { \\pi } ) ^ { k } Q Q ^ { \\pi }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 340, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 124, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 412, + 185, + 425 + ], + "score": 0.92, + "content": "( T ^ { \\star } ) ^ { \\bar { k } } Q Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 412, + 251, + 426 + ], + "score": 1.0, + "content": "from any initial", + "type": "text" + }, + { + "bbox": [ + 252, + 413, + 260, + 424 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 412, + 340, + 426 + ], + "score": 1.0, + "content": ". (Bertsekas, 2005).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 108, + 438, + 245, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 246, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 246, + 450 + ], + "score": 1.0, + "content": "2.1 ACTION-VALUE LEARNING", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 341, + 471 + ], + "score": 1.0, + "content": "In value based reinforcement learning we approximate the", + "type": "text" + }, + { + "bbox": [ + 342, + 459, + 351, + 469 + ], + "score": 0.29, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 456, + 505, + 471 + ], + "score": 1.0, + "content": "-values using a function approximator.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "We then update the parameters so that the Q-values are as close to the fixed point of a Bellman", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 269, + 493 + ], + "score": 1.0, + "content": "equation as possible. If we denote by", + "type": "text" + }, + { + "bbox": [ + 269, + 480, + 309, + 492 + ], + "score": 0.93, + "content": "Q ( s , a ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 479, + 495, + 493 + ], + "score": 1.0, + "content": "the approximate Q-values parameterized by", + "type": "text" + }, + { + "bbox": [ + 495, + 480, + 501, + 490 + ], + "score": 0.72, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 479, + 506, + 493 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 490, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 320, + 504 + ], + "score": 1.0, + "content": "then Q-learning updates the Q-values along direction", + "type": "text" + }, + { + "bbox": [ + 320, + 491, + 504, + 502 + ], + "score": 0.88, + "content": "\\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } Q ( s , a ; \\theta ) - Q ( \\bar { s } , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 205, + 515 + ], + "score": 1.0, + "content": "and SARSA updates the", + "type": "text" + }, + { + "bbox": [ + 205, + 502, + 214, + 513 + ], + "score": 0.32, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 501, + 305, + 515 + ], + "score": 1.0, + "content": "-values along direction", + "type": "text" + }, + { + "bbox": [ + 306, + 503, + 491, + 514 + ], + "score": 0.89, + "content": "\\begin{array} { r } { { \\bf E } _ { s , a } ( \\mathcal { T } ^ { \\pi } Q ( s , a ; \\theta ) - Q ( s , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta ) . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 501, + 506, + 515 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "the online setting the Bellman operator is approximated by sampling and bootstrapping, whereby", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 506, + 537 + ], + "score": 1.0, + "content": "the Q-values at any state are updated using the Q-values from the next visited state. Exploration", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 535, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 366, + 548 + ], + "score": 1.0, + "content": "is achieved by not always taking the action with the highest", + "type": "text" + }, + { + "bbox": [ + 366, + 535, + 375, + 546 + ], + "score": 0.33, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 535, + 506, + 548 + ], + "score": 1.0, + "content": "-value at each time step. One", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 474, + 560 + ], + "score": 1.0, + "content": "common technique called ‘epsilon greedy’ is to sample a random action with probability", + "type": "text" + }, + { + "bbox": [ + 474, + 546, + 501, + 556 + ], + "score": 0.88, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 545, + 506, + 560 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 557, + 504, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 134, + 569 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 559, + 141, + 567 + ], + "score": 0.64, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 557, + 504, + 569 + ], + "score": 1.0, + "content": "starts high and decreases over time. Another popular technique is ‘Boltzmann explo-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 474, + 581 + ], + "score": 1.0, + "content": "ration’, where the policy is given by the softmax over the Q-values with a temperature", + "type": "text" + }, + { + "bbox": [ + 474, + 568, + 482, + 578 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 568, + 505, + 581 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 577, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 302, + 591 + ], + "score": 0.83, + "content": "\\pi ( s , a ) = \\mathrm { e x p } ( Q ( \\dot { s , } a ) / \\dot { T } ) / \\bar { \\sum _ { b } } \\mathrm { e x p } \\bar { ( } Q ( s , b ) / T )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 577, + 506, + 593 + ], + "score": 1.0, + "content": ", where it is common to decrease the temperature", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 591, + 149, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 149, + 601 + ], + "score": 1.0, + "content": "over time.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 212, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 213, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 213, + 627 + ], + "score": 1.0, + "content": "2.2 POLICY GRADIENT", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "Alternatively, we can parameterize the policy directly and attempt to improve it via gradient ascent", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 187, + 658 + ], + "score": 1.0, + "content": "on the performance", + "type": "text" + }, + { + "bbox": [ + 188, + 647, + 195, + 656 + ], + "score": 0.78, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 646, + 506, + 658 + ], + "score": 1.0, + "content": ". The policy gradient theorem (Sutton et al., 1999) states that the gradient of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 656, + 336, + 671 + ], + "spans": [ + { + "bbox": [ + 107, + 658, + 114, + 667 + ], + "score": 0.8, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 656, + 336, + 671 + ], + "score": 1.0, + "content": "with respect to the parameters of the policy is given by", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 673, + 382, + 693 + ], + "lines": [ + { + "bbox": [ + 226, + 673, + 382, + 693 + ], + "spans": [ + { + "bbox": [ + 226, + 673, + 382, + 693 + ], + "score": 0.94, + "content": "\\nabla _ { \\boldsymbol { \\theta } } J ( \\pi ) = \\mathbf { \\underline { { E } } } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\boldsymbol { \\theta } } \\log \\pi ( s , a ) ,", + "type": "interline_equation", + "image_path": "7b640ce1ecbfcc0ceb546a840e29c3869bd4b842885c538bfe4601befb92dce4.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 226, + 673, + 382, + 693 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 232, + 712 + ], + "score": 1.0, + "content": "where the expectation is over", + "type": "text" + }, + { + "bbox": [ + 232, + 699, + 255, + 711 + ], + "score": 0.92, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 698, + 327, + 712 + ], + "score": 1.0, + "content": "with probability", + "type": "text" + }, + { + "bbox": [ + 327, + 699, + 379, + 711 + ], + "score": 0.92, + "content": "d ^ { \\pi } ( s ) \\pi ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 698, + 506, + 712 + ], + "score": 1.0, + "content": ". In the original derivation of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "the policy gradient theorem the expectation is over the discounted distribution of states, i.e., over", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 717, + 507, + 738 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 266, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { d _ { \\gamma } ^ { \\pi , \\overset { \\cdot } { s _ { 0 } } } ( s ) \\stackrel { \\cdot } { = } \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } P r \\{ s _ { t } = s \\mid \\overset { \\cdot } { s _ { 0 } } , \\pi \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 717, + 507, + 738 + ], + "score": 1.0, + "content": ". However, the gradient update in that case will assign a low", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 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 2017", + "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": [ + 104, + 80, + 505, + 108 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 116, + 505, + 239 + ], + "lines": [ + { + "bbox": [ + 105, + 116, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 451, + 130 + ], + "score": 1.0, + "content": "Action-values. The action-value, or Q-value, of a particular state under policy", + "type": "text" + }, + { + "bbox": [ + 451, + 119, + 459, + 127 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 116, + 505, + 130 + ], + "score": 1.0, + "content": "is the ex-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 298, + 128, + 509, + 158 + ], + "spans": [ + { + "bbox": [ + 298, + 128, + 379, + 158 + ], + "score": 1.0, + "content": "action at that state . The value of state", + "type": "text" + }, + { + "bbox": [ + 385, + 128, + 435, + 158 + ], + "score": 1.0, + "content": "d following under polic", + "type": "text" + }, + { + "bbox": [ + 435, + 130, + 443, + 138 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 128, + 509, + 158 + ], + "score": 1.0, + "content": "thereafter, i.e.,is denoted by", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 138, + 447, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 298, + 151 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\dot { Q } ^ { \\pi } ( s , a ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = \\overline { { \\ a } } , \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 141, + 385, + 149 + ], + "score": 0.68, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 141, + 447, + 149 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 147, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 252, + 164 + ], + "score": 0.9, + "content": "\\begin{array} { r } { V ^ { \\pi } ( s ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\mid s _ { 0 } = s , \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 147, + 474, + 168 + ], + "score": 1.0, + "content": ", which is the expected total discounted return of policy", + "type": "text" + }, + { + "bbox": [ + 475, + 153, + 482, + 161 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 147, + 507, + 168 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 160, + 504, + 176 + ], + "spans": [ + { + "bbox": [ + 104, + 160, + 127, + 176 + ], + "score": 1.0, + "content": "state", + "type": "text" + }, + { + "bbox": [ + 128, + 164, + 134, + 172 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 160, + 324, + 176 + ], + "score": 1.0, + "content": ". The optimal action-value function is denoted", + "type": "text" + }, + { + "bbox": [ + 324, + 162, + 338, + 173 + ], + "score": 0.89, + "content": "Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 160, + 392, + 176 + ], + "score": 1.0, + "content": "and satisfies", + "type": "text" + }, + { + "bbox": [ + 392, + 162, + 504, + 174 + ], + "score": 0.9, + "content": "Q ^ { \\star } ( s , a ) = \\operatorname* { m a x } _ { \\pi } Q ^ { \\pi } ( s , a )", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 171, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 141, + 186 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 142, + 173, + 164, + 185 + ], + "score": 0.92, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 171, + 409, + 186 + ], + "score": 1.0, + "content": ". The policy that achieves the maximum is the optimal policy", + "type": "text" + }, + { + "bbox": [ + 410, + 174, + 421, + 183 + ], + "score": 0.85, + "content": "\\pi ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 171, + 506, + 186 + ], + "score": 1.0, + "content": ", with value function", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 182, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 107, + 184, + 120, + 194 + ], + "score": 0.86, + "content": "V ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 120, + 182, + 506, + 198 + ], + "score": 1.0, + "content": ". The advantage function is the difference between the action-value and the value function, i.e.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 194, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 107, + 195, + 227, + 207 + ], + "score": 0.91, + "content": "A ^ { \\pi } ( s , a ) = Q ^ { \\pi } ( \\bar { s _ { \\bf { \\Re } } } a ) - V ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 194, + 477, + 208 + ], + "score": 1.0, + "content": ", and represents the additional expected reward of taking action", + "type": "text" + }, + { + "bbox": [ + 478, + 197, + 484, + 205 + ], + "score": 0.75, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 194, + 506, + 208 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 307, + 219 + ], + "score": 1.0, + "content": "the average performance of the policy from state", + "type": "text" + }, + { + "bbox": [ + 307, + 208, + 313, + 216 + ], + "score": 0.63, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 205, + 344, + 219 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 345, + 205, + 468, + 218 + ], + "score": 0.92, + "content": "\\begin{array} { r } { V ^ { \\bar { \\pi } } ( s ) = \\sum _ { a } \\pi ( s , a ) Q ^ { \\pi } \\bar { ( } s , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 205, + 506, + 219 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 215, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 155, + 231 + ], + "score": 1.0, + "content": "the identity", + "type": "text" + }, + { + "bbox": [ + 155, + 217, + 256, + 229 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\sum _ { a } \\pi ( s , a ) A ^ { \\pi } ( s , a ) ^ { - } = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 215, + 403, + 231 + ], + "score": 1.0, + "content": ", which simply states that the policy", + "type": "text" + }, + { + "bbox": [ + 404, + 219, + 411, + 227 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 215, + 506, + 231 + ], + "score": 1.0, + "content": "has no advantage over", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 226, + 132, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 132, + 240 + ], + "score": 1.0, + "content": "itself.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 116, + 509, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 469, + 263 + ], + "lines": [ + { + "bbox": [ + 104, + 249, + 471, + 266 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 284, + 266 + ], + "score": 1.0, + "content": "Bellman equation. The Bellman operator", + "type": "text" + }, + { + "bbox": [ + 284, + 252, + 298, + 262 + ], + "score": 0.88, + "content": "\\mathcal { T } ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 249, + 408, + 266 + ], + "score": 1.0, + "content": "(Bellman, 1957) for policy", + "type": "text" + }, + { + "bbox": [ + 409, + 254, + 416, + 261 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 249, + 471, + 266 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 104, + 249, + 471, + 266 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 268, + 387, + 287 + ], + "lines": [ + { + "bbox": [ + 223, + 268, + 387, + 287 + ], + "spans": [ + { + "bbox": [ + 223, + 268, + 387, + 287 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { \\pi } Q ( s , a ) = \\mathrm { \\bf ~ E } _ { s ^ { \\prime } , r , b } ( r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) ) ,", + "type": "interline_equation", + "image_path": "89c378cc0343c47eb6af9271bc8d2fb860312fad8c9c9b40b854666d7247f446.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 223, + 268, + 387, + 287 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 293, + 504, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 271, + 306 + ], + "score": 1.0, + "content": "where the expectation is over next state", + "type": "text" + }, + { + "bbox": [ + 271, + 293, + 332, + 306 + ], + "score": 0.93, + "content": "s ^ { \\prime } \\sim P ( \\cdot , s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 293, + 382, + 306 + ], + "score": 1.0, + "content": ", the reward", + "type": "text" + }, + { + "bbox": [ + 383, + 294, + 410, + 306 + ], + "score": 0.92, + "content": "r ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 293, + 475, + 306 + ], + "score": 1.0, + "content": ", and the action", + "type": "text" + }, + { + "bbox": [ + 476, + 294, + 481, + 304 + ], + "score": 0.77, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 293, + 506, + 306 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 303, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 134, + 318 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 306, + 147, + 316 + ], + "score": 0.84, + "content": "\\pi _ { s ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 303, + 284, + 318 + ], + "score": 1.0, + "content": ". The Q-value function for policy", + "type": "text" + }, + { + "bbox": [ + 284, + 307, + 292, + 315 + ], + "score": 0.78, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 303, + 477, + 318 + ], + "score": 1.0, + "content": "is the fixed point of the Bellman operator for", + "type": "text" + }, + { + "bbox": [ + 477, + 308, + 484, + 315 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 303, + 506, + 318 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 315, + 356, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 160, + 327 + ], + "score": 0.92, + "content": "{ \\mathcal { T } } ^ { \\pi } Q ^ { \\pi } = Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 315, + 288, + 328 + ], + "score": 1.0, + "content": ". The optimal Bellman operator", + "type": "text" + }, + { + "bbox": [ + 288, + 316, + 302, + 326 + ], + "score": 0.89, + "content": "\\mathcal { T } ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 315, + 356, + 328 + ], + "score": 1.0, + "content": "is defined as", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 293, + 506, + 328 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 332, + 394, + 351 + ], + "lines": [ + { + "bbox": [ + 215, + 332, + 394, + 351 + ], + "spans": [ + { + "bbox": [ + 215, + 332, + 394, + 351 + ], + "score": 0.93, + "content": "\\mathcal { T } ^ { \\star } Q ( s , a ) = \\mathbf { E } _ { s ^ { \\prime } , r } ( r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) ) ,", + "type": "interline_equation", + "image_path": "8cbce3ca3df11e62f2d22c0bcca7002a02924db579f929b7480c9383f255b2e5.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 215, + 332, + 394, + 351 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 287, + 370 + ], + "score": 1.0, + "content": "where the expectation is over the next state", + "type": "text" + }, + { + "bbox": [ + 288, + 357, + 349, + 370 + ], + "score": 0.93, + "content": "s ^ { \\prime } \\sim P ( \\cdot , s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 357, + 418, + 370 + ], + "score": 1.0, + "content": ", and the reward", + "type": "text" + }, + { + "bbox": [ + 419, + 357, + 446, + 369 + ], + "score": 0.92, + "content": "r ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 357, + 505, + 370 + ], + "score": 1.0, + "content": ". The optimal", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 406, + 381 + ], + "score": 1.0, + "content": "Q-value function is the fixed point of the optimal Bellman equation, i.e.,", + "type": "text" + }, + { + "bbox": [ + 407, + 369, + 461, + 380 + ], + "score": 0.92, + "content": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\star } = Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 369, + 505, + 381 + ], + "score": 1.0, + "content": ". Both the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 379, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 107, + 381, + 114, + 390 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 379, + 339, + 393 + ], + "score": 1.0, + "content": "-Bellman operator and the optimal Bellman operator are", + "type": "text" + }, + { + "bbox": [ + 339, + 381, + 346, + 390 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 379, + 506, + 393 + ], + "score": 1.0, + "content": "-contraction mappings in the sup-norm,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 104, + 389, + 124, + 403 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 124, + 390, + 267, + 403 + ], + "score": 0.9, + "content": "\\| T Q _ { 1 } - T Q _ { 2 } \\| _ { \\infty } \\leq \\gamma \\| Q _ { 1 } - Q _ { 2 } \\| _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 389, + 301, + 403 + ], + "score": 1.0, + "content": ", for any", + "type": "text" + }, + { + "bbox": [ + 302, + 390, + 369, + 402 + ], + "score": 0.9, + "content": "Q _ { 1 } , Q _ { 2 } \\in \\mathbb { R } ^ { S \\times A }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 389, + 506, + 403 + ], + "score": 1.0, + "content": ". From this fact one can show that", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 401, + 504, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 438, + 415 + ], + "score": 1.0, + "content": "the fixed point of each operator is unique, and that value iteration converges, i.e.,", + "type": "text" + }, + { + "bbox": [ + 438, + 401, + 504, + 414 + ], + "score": 0.92, + "content": "( T ^ { \\pi } ) ^ { k } Q Q ^ { \\pi }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 412, + 340, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 124, + 426 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 412, + 185, + 425 + ], + "score": 0.92, + "content": "( T ^ { \\star } ) ^ { \\bar { k } } Q Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 412, + 251, + 426 + ], + "score": 1.0, + "content": "from any initial", + "type": "text" + }, + { + "bbox": [ + 252, + 413, + 260, + 424 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 412, + 340, + 426 + ], + "score": 1.0, + "content": ". (Bertsekas, 2005).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 357, + 506, + 426 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 438, + 245, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 246, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 246, + 450 + ], + "score": 1.0, + "content": "2.1 ACTION-VALUE LEARNING", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 457, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 105, + 456, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 341, + 471 + ], + "score": 1.0, + "content": "In value based reinforcement learning we approximate the", + "type": "text" + }, + { + "bbox": [ + 342, + 459, + 351, + 469 + ], + "score": 0.29, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 456, + 505, + 471 + ], + "score": 1.0, + "content": "-values using a function approximator.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "We then update the parameters so that the Q-values are as close to the fixed point of a Bellman", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 269, + 493 + ], + "score": 1.0, + "content": "equation as possible. If we denote by", + "type": "text" + }, + { + "bbox": [ + 269, + 480, + 309, + 492 + ], + "score": 0.93, + "content": "Q ( s , a ; \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 479, + 495, + 493 + ], + "score": 1.0, + "content": "the approximate Q-values parameterized by", + "type": "text" + }, + { + "bbox": [ + 495, + 480, + 501, + 490 + ], + "score": 0.72, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 479, + 506, + 493 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 490, + 504, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 320, + 504 + ], + "score": 1.0, + "content": "then Q-learning updates the Q-values along direction", + "type": "text" + }, + { + "bbox": [ + 320, + 491, + 504, + 502 + ], + "score": 0.88, + "content": "\\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } Q ( s , a ; \\theta ) - Q ( \\bar { s } , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 501, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 205, + 515 + ], + "score": 1.0, + "content": "and SARSA updates the", + "type": "text" + }, + { + "bbox": [ + 205, + 502, + 214, + 513 + ], + "score": 0.32, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 501, + 305, + 515 + ], + "score": 1.0, + "content": "-values along direction", + "type": "text" + }, + { + "bbox": [ + 306, + 503, + 491, + 514 + ], + "score": 0.89, + "content": "\\begin{array} { r } { { \\bf E } _ { s , a } ( \\mathcal { T } ^ { \\pi } Q ( s , a ; \\theta ) - Q ( s , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta ) . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 501, + 506, + 515 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "the online setting the Bellman operator is approximated by sampling and bootstrapping, whereby", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 523, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 506, + 537 + ], + "score": 1.0, + "content": "the Q-values at any state are updated using the Q-values from the next visited state. Exploration", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 535, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 366, + 548 + ], + "score": 1.0, + "content": "is achieved by not always taking the action with the highest", + "type": "text" + }, + { + "bbox": [ + 366, + 535, + 375, + 546 + ], + "score": 0.33, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 535, + 506, + 548 + ], + "score": 1.0, + "content": "-value at each time step. One", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 545, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 545, + 474, + 560 + ], + "score": 1.0, + "content": "common technique called ‘epsilon greedy’ is to sample a random action with probability", + "type": "text" + }, + { + "bbox": [ + 474, + 546, + 501, + 556 + ], + "score": 0.88, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 545, + 506, + 560 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 557, + 504, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 134, + 569 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 559, + 141, + 567 + ], + "score": 0.64, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 557, + 504, + 569 + ], + "score": 1.0, + "content": "starts high and decreases over time. Another popular technique is ‘Boltzmann explo-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 568, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 474, + 581 + ], + "score": 1.0, + "content": "ration’, where the policy is given by the softmax over the Q-values with a temperature", + "type": "text" + }, + { + "bbox": [ + 474, + 568, + 482, + 578 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 568, + 505, + 581 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 577, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 302, + 591 + ], + "score": 0.83, + "content": "\\pi ( s , a ) = \\mathrm { e x p } ( Q ( \\dot { s , } a ) / \\dot { T } ) / \\bar { \\sum _ { b } } \\mathrm { e x p } \\bar { ( } Q ( s , b ) / T )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 577, + 506, + 593 + ], + "score": 1.0, + "content": ", where it is common to decrease the temperature", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 591, + 149, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 149, + 601 + ], + "score": 1.0, + "content": "over time.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 32, + "bbox_fs": [ + 104, + 456, + 506, + 601 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 212, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 614, + 213, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 614, + 213, + 627 + ], + "score": 1.0, + "content": "2.2 POLICY GRADIENT", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "Alternatively, we can parameterize the policy directly and attempt to improve it via gradient ascent", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 646, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 187, + 658 + ], + "score": 1.0, + "content": "on the performance", + "type": "text" + }, + { + "bbox": [ + 188, + 647, + 195, + 656 + ], + "score": 0.78, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 646, + 506, + 658 + ], + "score": 1.0, + "content": ". The policy gradient theorem (Sutton et al., 1999) states that the gradient of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 107, + 656, + 336, + 671 + ], + "spans": [ + { + "bbox": [ + 107, + 658, + 114, + 667 + ], + "score": 0.8, + "content": "J", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 656, + 336, + 671 + ], + "score": 1.0, + "content": "with respect to the parameters of the policy is given by", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 635, + 506, + 671 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 226, + 673, + 382, + 693 + ], + "lines": [ + { + "bbox": [ + 226, + 673, + 382, + 693 + ], + "spans": [ + { + "bbox": [ + 226, + 673, + 382, + 693 + ], + "score": 0.94, + "content": "\\nabla _ { \\boldsymbol { \\theta } } J ( \\pi ) = \\mathbf { \\underline { { E } } } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\boldsymbol { \\theta } } \\log \\pi ( s , a ) ,", + "type": "interline_equation", + "image_path": "7b640ce1ecbfcc0ceb546a840e29c3869bd4b842885c538bfe4601befb92dce4.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 226, + 673, + 382, + 693 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 232, + 712 + ], + "score": 1.0, + "content": "where the expectation is over", + "type": "text" + }, + { + "bbox": [ + 232, + 699, + 255, + 711 + ], + "score": 0.92, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 698, + 327, + 712 + ], + "score": 1.0, + "content": "with probability", + "type": "text" + }, + { + "bbox": [ + 327, + 699, + 379, + 711 + ], + "score": 0.92, + "content": "d ^ { \\pi } ( s ) \\pi ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 698, + 506, + 712 + ], + "score": 1.0, + "content": ". In the original derivation of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "the policy gradient theorem the expectation is over the discounted distribution of states, i.e., over", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 717, + 507, + 738 + ], + "spans": [ + { + "bbox": [ + 107, + 720, + 266, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { d _ { \\gamma } ^ { \\pi , \\overset { \\cdot } { s _ { 0 } } } ( s ) \\stackrel { \\cdot } { = } \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } P r \\{ s _ { t } = s \\mid \\overset { \\cdot } { s _ { 0 } } , \\pi \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 717, + 507, + 738 + ], + "score": 1.0, + "content": ". However, the gradient update in that case will assign a low", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "weight to states that take a long time to reach and can therefore have poor empirical performance. In", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "practice the non-discounted distribution of states is frequently used instead. In certain cases this is", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 470, + 117 + ], + "score": 1.0, + "content": "equivalent to maximizing the average (i.e., non-discounted) policy performance, even when", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 470, + 105, + 484, + 116 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 484, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "uses", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "a discount factor (Thomas, 2014). Throughout this paper we will use the non-discounted distribution", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 145, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 145, + 139 + ], + "score": 1.0, + "content": "of states.", + "type": "text", + "cross_page": true + } + ], + "index": 4 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 698, + 507, + 738 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "weight to states that take a long time to reach and can therefore have poor empirical performance. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "score": 1.0, + "content": "practice the non-discounted distribution of states is frequently used instead. In certain cases this is", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 470, + 117 + ], + "score": 1.0, + "content": "equivalent to maximizing the average (i.e., non-discounted) policy performance, even when", + "type": "text" + }, + { + "bbox": [ + 470, + 105, + 484, + 116 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "uses", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 128 + ], + "score": 1.0, + "content": "a discount factor (Thomas, 2014). Throughout this paper we will use the non-discounted distribution", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 145, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 145, + 139 + ], + "score": 1.0, + "content": "of states.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 143, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "In the online case it is common to add an entropy regularizer to the gradient in order to prevent the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "policy becoming deterministic. This ensures that the agent will explore continually. In that case the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 164, + 204, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 204, + 178 + ], + "score": 1.0, + "content": "(batch) update becomes", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 181, + 407, + 200 + ], + "lines": [ + { + "bbox": [ + 201, + 181, + 407, + 200 + ], + "spans": [ + { + "bbox": [ + 201, + 181, + 407, + 200 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\Delta \\theta \\propto \\underline { { \\mathbf { E } } } _ { a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\underline { { \\mathbf { E } } } _ { s } \\nabla _ { \\theta } H ^ { \\pi } ( s ) , } \\end{array}", + "type": "interline_equation", + "image_path": "45e7b1c3b13cd803e4327cf2e97609929fa5cf488ce65ca1a830e5fbc4cb9911.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 201, + 181, + 407, + 200 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 134, + 220 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 205, + 277, + 218 + ], + "score": 0.93, + "content": "\\begin{array} { r } { H ^ { \\pi } ( s ) = - \\sum _ { a } \\pi ( s , a ) \\log \\pi ( s , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 204, + 401, + 220 + ], + "score": 1.0, + "content": "denotes the entropy of policy", + "type": "text" + }, + { + "bbox": [ + 401, + 208, + 408, + 216 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 204, + 430, + 220 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 431, + 207, + 460, + 216 + ], + "score": 0.9, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 204, + 505, + 220 + ], + "score": 1.0, + "content": "is the reg-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "ularization penalty parameter. Throughout this paper we will make use of entropy regularization,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "however many of the results are true for other choices of regularizers with only minor modification,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "e.g., KL-divergence. Note that equation (2) requires exact knowledge of the Q-values. In practice", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "they can be estimated, e.g., by the sum of discounted rewards along an observed trajectory (Williams,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 260, + 430, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 430, + 273 + ], + "score": 1.0, + "content": "1992), and the policy gradient will still perform well (Konda & Tsitsiklis, 2003).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 107, + 288, + 366, + 300 + ], + "lines": [ + { + "bbox": [ + 104, + 286, + 366, + 303 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 366, + 303 + ], + "score": 1.0, + "content": "3 REGULARIZED POLICY GRADIENT ALGORITHM", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "In this section we derive a relationship between the policy and the Q-values when using a regularized", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "policy gradient algorithm. This allows us to transform a policy into an estimate of the Q-values. We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 279, + 347 + ], + "score": 1.0, + "content": "then show that for small regularization the", + "type": "text" + }, + { + "bbox": [ + 280, + 335, + 289, + 346 + ], + "score": 0.27, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "-values induced by the policy at the fixed point of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 346, + 335, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 335, + 358 + ], + "score": 1.0, + "content": "algorithm have a small Bellman error in the tabular case.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 107, + 370, + 198, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 199, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 199, + 383 + ], + "score": 1.0, + "content": "3.1 TABULAR CASE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 390, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 473, + 404 + ], + "score": 1.0, + "content": "Consider the fixed points of the entropy regularized policy gradient update (2). Let us define", + "type": "text" + }, + { + "bbox": [ + 474, + 391, + 505, + 403 + ], + "score": 0.9, + "content": "f ( \\theta ) =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 400, + 507, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 293, + 414 + ], + "score": 0.9, + "content": "\\mathbf { E } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\mathbf { E } _ { s } \\bar { \\nabla } _ { \\theta } H ( \\pi _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 400, + 313, + 416 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 313, + 402, + 395, + 414 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\dot { g } _ { s } ( \\pi ) \\stackrel { - } { = } \\sum _ { a } \\pi ( \\stackrel { - } { s } , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 400, + 431, + 416 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 432, + 404, + 437, + 412 + ], + "score": 0.52, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 400, + 507, + 416 + ], + "score": 1.0, + "content": ". A fixed point is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 413, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 248, + 425 + ], + "score": 1.0, + "content": "one where we can no longer update", + "type": "text" + }, + { + "bbox": [ + 248, + 414, + 254, + 423 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 413, + 327, + 425 + ], + "score": 1.0, + "content": "in the direction of", + "type": "text" + }, + { + "bbox": [ + 327, + 414, + 347, + 424 + ], + "score": 0.88, + "content": "f ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 413, + 506, + 425 + ], + "score": 1.0, + "content": "without violating one of the constraints", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 107, + 424, + 149, + 436 + ], + "score": 0.89, + "content": "g _ { s } ( \\pi ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 423, + 196, + 437 + ], + "score": 1.0, + "content": ", i.e., where", + "type": "text" + }, + { + "bbox": [ + 197, + 424, + 216, + 435 + ], + "score": 0.9, + "content": "f ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 423, + 329, + 437 + ], + "score": 1.0, + "content": "is in the span of the vectors", + "type": "text" + }, + { + "bbox": [ + 329, + 424, + 376, + 436 + ], + "score": 0.93, + "content": "\\{ \\dot { \\nabla _ { \\theta } } g _ { s } ( \\pi ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 423, + 506, + 437 + ], + "score": 1.0, + "content": ". In other words, any fixed point", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 158, + 448 + ], + "score": 1.0, + "content": "must satisfy", + "type": "text" + }, + { + "bbox": [ + 158, + 435, + 253, + 447 + ], + "score": 0.9, + "content": "\\begin{array} { r } { f ( \\theta ) = \\sum _ { s } \\lambda _ { s } \\nabla _ { \\theta } g _ { s } ( \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 434, + 318, + 448 + ], + "score": 1.0, + "content": ", where for each", + "type": "text" + }, + { + "bbox": [ + 319, + 437, + 325, + 445 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 434, + 423, + 448 + ], + "score": 1.0, + "content": "the Lagrange multiplier", + "type": "text" + }, + { + "bbox": [ + 423, + 435, + 454, + 446 + ], + "score": 0.91, + "content": "\\lambda _ { s } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 434, + 506, + 448 + ], + "score": 1.0, + "content": "ensures that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 445, + 345, + 460 + ], + "spans": [ + { + "bbox": [ + 107, + 446, + 149, + 458 + ], + "score": 0.92, + "content": "g _ { s } ( \\pi ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 445, + 345, + 460 + ], + "score": 1.0, + "content": ". Substituting in terms to this equation we obtain", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 461, + 414, + 481 + ], + "lines": [ + { + "bbox": [ + 194, + 461, + 414, + 481 + ], + "spans": [ + { + "bbox": [ + 194, + 461, + 414, + 481 + ], + "score": 0.9, + "content": "\\underset { s , a } { \\mathbf { E } } \\left( Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } \\right) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ,", + "type": "interline_equation", + "image_path": "b4bd1d16ce41646eeb573f099ce4dcd79f2e617b025b09104f5691feccf06159.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 194, + 461, + 414, + 481 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 284, + 501 + ], + "score": 1.0, + "content": "where we have absorbed all constants into", + "type": "text" + }, + { + "bbox": [ + 284, + 486, + 324, + 498 + ], + "score": 0.95, + "content": "c \\in \\mathbb { R } ^ { | s | }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 484, + 388, + 501 + ], + "score": 1.0, + "content": ". Any solution", + "type": "text" + }, + { + "bbox": [ + 388, + 490, + 396, + 497 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 484, + 506, + 501 + ], + "score": 1.0, + "content": "to this equation is strictly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "positive element-wise since it must lie in the domain of the entropy function. In the tabular case", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 508, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 114, + 519 + ], + "score": 0.73, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 508, + 505, + 523 + ], + "score": 1.0, + "content": "is represented by a single number for each state and action pair and the gradient of the policy", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 519, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 345, + 536 + ], + "score": 1.0, + "content": "with respect to the parameters is the indicator function, i.e.,", + "type": "text" + }, + { + "bbox": [ + 345, + 520, + 461, + 533 + ], + "score": 0.92, + "content": "\\nabla _ { \\boldsymbol { \\theta } ( t , b ) } \\pi ( s , a ) = \\bar { \\mathbf { 1 } } _ { ( t , b ) = ( s , a ) } .", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 519, + 507, + 536 + ], + "score": 1.0, + "content": ". From this", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 150, + 546 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + }, + { + "bbox": [ + 150, + 532, + 293, + 545 + ], + "score": 0.91, + "content": "Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 532, + 330, + 546 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 331, + 535, + 337, + 542 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 532, + 453, + 546 + ], + "score": 1.0, + "content": "(assuming that the measure", + "type": "text" + }, + { + "bbox": [ + 453, + 532, + 500, + 545 + ], + "score": 0.9, + "content": "d ^ { \\pi } ( s ) > 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 532, + 505, + 546 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 169, + 557 + ], + "score": 1.0, + "content": "Multiplying by", + "type": "text" + }, + { + "bbox": [ + 169, + 544, + 198, + 555 + ], + "score": 0.91, + "content": "\\pi ( \\boldsymbol { a } , \\boldsymbol { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 542, + 275, + 557 + ], + "score": 1.0, + "content": "and summing over", + "type": "text" + }, + { + "bbox": [ + 276, + 544, + 302, + 554 + ], + "score": 0.89, + "content": "a \\in { \\mathcal { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 542, + 332, + 557 + ], + "score": 1.0, + "content": "we get", + "type": "text" + }, + { + "bbox": [ + 332, + 543, + 426, + 555 + ], + "score": 0.93, + "content": "c _ { s } = \\alpha H ^ { \\pi } \\bar { ( } s ) + V ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 542, + 480, + 557 + ], + "score": 1.0, + "content": ". Substituting", + "type": "text" + }, + { + "bbox": [ + 480, + 546, + 486, + 553 + ], + "score": 0.75, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "into", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 553, + 357, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 357, + 569 + ], + "score": 1.0, + "content": "equation (3) we have the following formulation for the policy:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 570, + 382, + 584 + ], + "lines": [ + { + "bbox": [ + 227, + 570, + 382, + 584 + ], + "spans": [ + { + "bbox": [ + 227, + 570, + 382, + 584 + ], + "score": 0.92, + "content": "\\pi ( s , a ) = \\exp ( A ^ { \\pi } ( s , a ) / \\alpha - H ^ { \\pi } ( s ) ) ,", + "type": "interline_equation", + "image_path": "65fc6d3f60c14f4b6a14fe36da642afb0f86cb66b4835c24ba143948531ad4fa.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 227, + 570, + 382, + 584 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 136, + 601 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 136, + 589, + 166, + 599 + ], + "score": 0.9, + "content": "s \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 588, + 186, + 601 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 187, + 589, + 218, + 599 + ], + "score": 0.9, + "content": "a \\in \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 588, + 505, + 601 + ], + "score": 1.0, + "content": ". In other words, the policy at the fixed point is a softmax over the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 421, + 612 + ], + "score": 1.0, + "content": "advantage function induced by that policy, where the regularization parameter", + "type": "text" + }, + { + "bbox": [ + 422, + 602, + 429, + 610 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "can be interpreted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 468, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 468, + 623 + ], + "score": 1.0, + "content": "as the temperature. Therefore, we can use the policy to derive an estimate of the Q-values,", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 627, + 443, + 642 + ], + "lines": [ + { + "bbox": [ + 168, + 627, + 443, + 642 + ], + "spans": [ + { + "bbox": [ + 168, + 627, + 443, + 642 + ], + "score": 0.89, + "content": "\\tilde { Q } ^ { \\pi } ( s , a ) = \\tilde { A } ^ { \\pi } ( s , a ) + V ^ { \\pi } ( s ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ^ { \\pi } ( s ) .", + "type": "interline_equation", + "image_path": "f37d5d09a8d8a767cad08c6747baaba978d164c4fbaefc513696c0c2e48cad50.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 168, + 627, + 443, + 642 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 309, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 311, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 311, + 661 + ], + "score": 1.0, + "content": "With this we can rewrite the gradient update (2) as", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 662, + 399, + 683 + ], + "lines": [ + { + "bbox": [ + 209, + 662, + 399, + 683 + ], + "spans": [ + { + "bbox": [ + 209, + 662, + 399, + 683 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( Q ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , } \\end{array}", + "type": "interline_equation", + "image_path": "2b204108af980c7affb3147aead9ea14b91e514a96bda710227d4941ea0673d1.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 209, + 662, + 399, + 683 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "since the update is unchanged by per-state constant offsets. When the policy is parameterized as a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 162, + 713 + ], + "score": 1.0, + "content": "softmax, i.e.,", + "type": "text" + }, + { + "bbox": [ + 162, + 698, + 335, + 711 + ], + "score": 0.9, + "content": "\\pi ( s , a ) = \\bar { \\exp ( W ( s , a ) ) } / \\sum _ { b } \\exp W ( s , b )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 698, + 390, + 713 + ], + "score": 1.0, + "content": ", the quantity", + "type": "text" + }, + { + "bbox": [ + 391, + 699, + 403, + 709 + ], + "score": 0.81, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "is sometimes referred to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "as the action-preferences of the policy (Sutton & Barto, 1998, Chapter 6.6). Equation (4) states that", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 338, + 734 + ], + "score": 1.0, + "content": "the action preferences are equal to the Q-values scaled by", + "type": "text" + }, + { + "bbox": [ + 338, + 721, + 356, + 732 + ], + "score": 0.89, + "content": "1 / \\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 721, + 504, + 734 + ], + "score": 1.0, + "content": ", up to an additive per-state constant.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + } + ], + "page_idx": 3, + "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 2017", + "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": [ + 107, + 82, + 505, + 138 + ], + "lines": [], + "index": 2, + "bbox_fs": [ + 105, + 81, + 505, + 139 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 143, + 505, + 177 + ], + "lines": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "In the online case it is common to add an entropy regularizer to the gradient in order to prevent the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "policy becoming deterministic. This ensures that the agent will explore continually. In that case the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 164, + 204, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 164, + 204, + 178 + ], + "score": 1.0, + "content": "(batch) update becomes", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 143, + 505, + 178 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 201, + 181, + 407, + 200 + ], + "lines": [ + { + "bbox": [ + 201, + 181, + 407, + 200 + ], + "spans": [ + { + "bbox": [ + 201, + 181, + 407, + 200 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\Delta \\theta \\propto \\underline { { \\mathbf { E } } } _ { a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\underline { { \\mathbf { E } } } _ { s } \\nabla _ { \\theta } H ^ { \\pi } ( s ) , } \\end{array}", + "type": "interline_equation", + "image_path": "45e7b1c3b13cd803e4327cf2e97609929fa5cf488ce65ca1a830e5fbc4cb9911.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 201, + 181, + 407, + 200 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 505, + 220 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 134, + 220 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 205, + 277, + 218 + ], + "score": 0.93, + "content": "\\begin{array} { r } { H ^ { \\pi } ( s ) = - \\sum _ { a } \\pi ( s , a ) \\log \\pi ( s , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 204, + 401, + 220 + ], + "score": 1.0, + "content": "denotes the entropy of policy", + "type": "text" + }, + { + "bbox": [ + 401, + 208, + 408, + 216 + ], + "score": 0.77, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 204, + 430, + 220 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 431, + 207, + 460, + 216 + ], + "score": 0.9, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 204, + 505, + 220 + ], + "score": 1.0, + "content": "is the reg-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "ularization penalty parameter. Throughout this paper we will make use of entropy regularization,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 505, + 240 + ], + "score": 1.0, + "content": "however many of the results are true for other choices of regularizers with only minor modification,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 506, + 252 + ], + "score": 1.0, + "content": "e.g., KL-divergence. Note that equation (2) requires exact knowledge of the Q-values. In practice", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 505, + 263 + ], + "score": 1.0, + "content": "they can be estimated, e.g., by the sum of discounted rewards along an observed trajectory (Williams,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 260, + 430, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 260, + 430, + 273 + ], + "score": 1.0, + "content": "1992), and the policy gradient will still perform well (Konda & Tsitsiklis, 2003).", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 204, + 506, + 273 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 288, + 366, + 300 + ], + "lines": [ + { + "bbox": [ + 104, + 286, + 366, + 303 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 366, + 303 + ], + "score": 1.0, + "content": "3 REGULARIZED POLICY GRADIENT ALGORITHM", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "In this section we derive a relationship between the policy and the Q-values when using a regularized", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "policy gradient algorithm. This allows us to transform a policy into an estimate of the Q-values. We", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 335, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 279, + 347 + ], + "score": 1.0, + "content": "then show that for small regularization the", + "type": "text" + }, + { + "bbox": [ + 280, + 335, + 289, + 346 + ], + "score": 0.27, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 335, + 505, + 347 + ], + "score": 1.0, + "content": "-values induced by the policy at the fixed point of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 346, + 335, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 335, + 358 + ], + "score": 1.0, + "content": "algorithm have a small Bellman error in the tabular case.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 312, + 506, + 358 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 370, + 198, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 199, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 199, + 383 + ], + "score": 1.0, + "content": "3.1 TABULAR CASE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 390, + 505, + 457 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 473, + 404 + ], + "score": 1.0, + "content": "Consider the fixed points of the entropy regularized policy gradient update (2). Let us define", + "type": "text" + }, + { + "bbox": [ + 474, + 391, + 505, + 403 + ], + "score": 0.9, + "content": "f ( \\theta ) =", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 400, + 507, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 293, + 414 + ], + "score": 0.9, + "content": "\\mathbf { E } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\mathbf { E } _ { s } \\bar { \\nabla } _ { \\theta } H ( \\pi _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 400, + 313, + 416 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 313, + 402, + 395, + 414 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\dot { g } _ { s } ( \\pi ) \\stackrel { - } { = } \\sum _ { a } \\pi ( \\stackrel { - } { s } , a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 400, + 431, + 416 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 432, + 404, + 437, + 412 + ], + "score": 0.52, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 400, + 507, + 416 + ], + "score": 1.0, + "content": ". A fixed point is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 413, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 248, + 425 + ], + "score": 1.0, + "content": "one where we can no longer update", + "type": "text" + }, + { + "bbox": [ + 248, + 414, + 254, + 423 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 413, + 327, + 425 + ], + "score": 1.0, + "content": "in the direction of", + "type": "text" + }, + { + "bbox": [ + 327, + 414, + 347, + 424 + ], + "score": 0.88, + "content": "f ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 413, + 506, + 425 + ], + "score": 1.0, + "content": "without violating one of the constraints", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 423, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 107, + 424, + 149, + 436 + ], + "score": 0.89, + "content": "g _ { s } ( \\pi ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 423, + 196, + 437 + ], + "score": 1.0, + "content": ", i.e., where", + "type": "text" + }, + { + "bbox": [ + 197, + 424, + 216, + 435 + ], + "score": 0.9, + "content": "f ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 423, + 329, + 437 + ], + "score": 1.0, + "content": "is in the span of the vectors", + "type": "text" + }, + { + "bbox": [ + 329, + 424, + 376, + 436 + ], + "score": 0.93, + "content": "\\{ \\dot { \\nabla _ { \\theta } } g _ { s } ( \\pi ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 423, + 506, + 437 + ], + "score": 1.0, + "content": ". In other words, any fixed point", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 434, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 158, + 448 + ], + "score": 1.0, + "content": "must satisfy", + "type": "text" + }, + { + "bbox": [ + 158, + 435, + 253, + 447 + ], + "score": 0.9, + "content": "\\begin{array} { r } { f ( \\theta ) = \\sum _ { s } \\lambda _ { s } \\nabla _ { \\theta } g _ { s } ( \\pi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 434, + 318, + 448 + ], + "score": 1.0, + "content": ", where for each", + "type": "text" + }, + { + "bbox": [ + 319, + 437, + 325, + 445 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 434, + 423, + 448 + ], + "score": 1.0, + "content": "the Lagrange multiplier", + "type": "text" + }, + { + "bbox": [ + 423, + 435, + 454, + 446 + ], + "score": 0.91, + "content": "\\lambda _ { s } \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 434, + 506, + 448 + ], + "score": 1.0, + "content": "ensures that", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 445, + 345, + 460 + ], + "spans": [ + { + "bbox": [ + 107, + 446, + 149, + 458 + ], + "score": 0.92, + "content": "g _ { s } ( \\pi ) = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 445, + 345, + 460 + ], + "score": 1.0, + "content": ". Substituting in terms to this equation we obtain", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 389, + 507, + 460 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 461, + 414, + 481 + ], + "lines": [ + { + "bbox": [ + 194, + 461, + 414, + 481 + ], + "spans": [ + { + "bbox": [ + 194, + 461, + 414, + 481 + ], + "score": 0.9, + "content": "\\underset { s , a } { \\mathbf { E } } \\left( Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } \\right) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ,", + "type": "interline_equation", + "image_path": "b4bd1d16ce41646eeb573f099ce4dcd79f2e617b025b09104f5691feccf06159.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 194, + 461, + 414, + 481 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 505, + 566 + ], + "lines": [ + { + "bbox": [ + 105, + 484, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 284, + 501 + ], + "score": 1.0, + "content": "where we have absorbed all constants into", + "type": "text" + }, + { + "bbox": [ + 284, + 486, + 324, + 498 + ], + "score": 0.95, + "content": "c \\in \\mathbb { R } ^ { | s | }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 484, + 388, + 501 + ], + "score": 1.0, + "content": ". Any solution", + "type": "text" + }, + { + "bbox": [ + 388, + 490, + 396, + 497 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 484, + 506, + 501 + ], + "score": 1.0, + "content": "to this equation is strictly", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "positive element-wise since it must lie in the domain of the entropy function. In the tabular case", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 508, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 511, + 114, + 519 + ], + "score": 0.73, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 508, + 505, + 523 + ], + "score": 1.0, + "content": "is represented by a single number for each state and action pair and the gradient of the policy", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 104, + 519, + 507, + 536 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 345, + 536 + ], + "score": 1.0, + "content": "with respect to the parameters is the indicator function, i.e.,", + "type": "text" + }, + { + "bbox": [ + 345, + 520, + 461, + 533 + ], + "score": 0.92, + "content": "\\nabla _ { \\boldsymbol { \\theta } ( t , b ) } \\pi ( s , a ) = \\bar { \\mathbf { 1 } } _ { ( t , b ) = ( s , a ) } .", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 519, + 507, + 536 + ], + "score": 1.0, + "content": ". From this", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 150, + 546 + ], + "score": 1.0, + "content": "we obtain", + "type": "text" + }, + { + "bbox": [ + 150, + 532, + 293, + 545 + ], + "score": 0.91, + "content": "Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 532, + 330, + 546 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 331, + 535, + 337, + 542 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 532, + 453, + 546 + ], + "score": 1.0, + "content": "(assuming that the measure", + "type": "text" + }, + { + "bbox": [ + 453, + 532, + 500, + 545 + ], + "score": 0.9, + "content": "d ^ { \\pi } ( s ) > 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 532, + 505, + 546 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 542, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 169, + 557 + ], + "score": 1.0, + "content": "Multiplying by", + "type": "text" + }, + { + "bbox": [ + 169, + 544, + 198, + 555 + ], + "score": 0.91, + "content": "\\pi ( \\boldsymbol { a } , \\boldsymbol { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 542, + 275, + 557 + ], + "score": 1.0, + "content": "and summing over", + "type": "text" + }, + { + "bbox": [ + 276, + 544, + 302, + 554 + ], + "score": 0.89, + "content": "a \\in { \\mathcal { A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 542, + 332, + 557 + ], + "score": 1.0, + "content": "we get", + "type": "text" + }, + { + "bbox": [ + 332, + 543, + 426, + 555 + ], + "score": 0.93, + "content": "c _ { s } = \\alpha H ^ { \\pi } \\bar { ( } s ) + V ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 542, + 480, + 557 + ], + "score": 1.0, + "content": ". Substituting", + "type": "text" + }, + { + "bbox": [ + 480, + 546, + 486, + 553 + ], + "score": 0.75, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 542, + 506, + 557 + ], + "score": 1.0, + "content": "into", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 553, + 357, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 357, + 569 + ], + "score": 1.0, + "content": "equation (3) we have the following formulation for the policy:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 484, + 507, + 569 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 227, + 570, + 382, + 584 + ], + "lines": [ + { + "bbox": [ + 227, + 570, + 382, + 584 + ], + "spans": [ + { + "bbox": [ + 227, + 570, + 382, + 584 + ], + "score": 0.92, + "content": "\\pi ( s , a ) = \\exp ( A ^ { \\pi } ( s , a ) / \\alpha - H ^ { \\pi } ( s ) ) ,", + "type": "interline_equation", + "image_path": "65fc6d3f60c14f4b6a14fe36da642afb0f86cb66b4835c24ba143948531ad4fa.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 227, + 570, + 382, + 584 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 588, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 136, + 601 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 136, + 589, + 166, + 599 + ], + "score": 0.9, + "content": "s \\in \\mathcal { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 588, + 186, + 601 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 187, + 589, + 218, + 599 + ], + "score": 0.9, + "content": "a \\in \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 588, + 505, + 601 + ], + "score": 1.0, + "content": ". In other words, the policy at the fixed point is a softmax over the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 600, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 421, + 612 + ], + "score": 1.0, + "content": "advantage function induced by that policy, where the regularization parameter", + "type": "text" + }, + { + "bbox": [ + 422, + 602, + 429, + 610 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 600, + 505, + 612 + ], + "score": 1.0, + "content": "can be interpreted", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 611, + 468, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 468, + 623 + ], + "score": 1.0, + "content": "as the temperature. Therefore, we can use the policy to derive an estimate of the Q-values,", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 588, + 505, + 623 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 627, + 443, + 642 + ], + "lines": [ + { + "bbox": [ + 168, + 627, + 443, + 642 + ], + "spans": [ + { + "bbox": [ + 168, + 627, + 443, + 642 + ], + "score": 0.89, + "content": "\\tilde { Q } ^ { \\pi } ( s , a ) = \\tilde { A } ^ { \\pi } ( s , a ) + V ^ { \\pi } ( s ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ^ { \\pi } ( s ) .", + "type": "interline_equation", + "image_path": "f37d5d09a8d8a767cad08c6747baaba978d164c4fbaefc513696c0c2e48cad50.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 168, + 627, + 443, + 642 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 646, + 309, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 311, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 311, + 661 + ], + "score": 1.0, + "content": "With this we can rewrite the gradient update (2) as", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 644, + 311, + 661 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 662, + 399, + 683 + ], + "lines": [ + { + "bbox": [ + 209, + 662, + 399, + 683 + ], + "spans": [ + { + "bbox": [ + 209, + 662, + 399, + 683 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( Q ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , } \\end{array}", + "type": "interline_equation", + "image_path": "2b204108af980c7affb3147aead9ea14b91e514a96bda710227d4941ea0673d1.jpg" + } + ] + } + ], + "index": 41, + "virtual_lines": [ + { + "bbox": [ + 209, + 662, + 399, + 683 + ], + "spans": [], + "index": 41 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "since the update is unchanged by per-state constant offsets. When the policy is parameterized as a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 698, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 162, + 713 + ], + "score": 1.0, + "content": "softmax, i.e.,", + "type": "text" + }, + { + "bbox": [ + 162, + 698, + 335, + 711 + ], + "score": 0.9, + "content": "\\pi ( s , a ) = \\bar { \\exp ( W ( s , a ) ) } / \\sum _ { b } \\exp W ( s , b )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 698, + 390, + 713 + ], + "score": 1.0, + "content": ", the quantity", + "type": "text" + }, + { + "bbox": [ + 391, + 699, + 403, + 709 + ], + "score": 0.81, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 698, + 506, + 713 + ], + "score": 1.0, + "content": "is sometimes referred to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "as the action-preferences of the policy (Sutton & Barto, 1998, Chapter 6.6). Equation (4) states that", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 721, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 338, + 734 + ], + "score": 1.0, + "content": "the action preferences are equal to the Q-values scaled by", + "type": "text" + }, + { + "bbox": [ + 338, + 721, + 356, + 732 + ], + "score": 0.89, + "content": "1 / \\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 721, + 504, + 734 + ], + "score": 1.0, + "content": ", up to an additive per-state constant.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 687, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 199, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 200, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 200, + 95 + ], + "score": 1.0, + "content": "3.2 GENERAL CASE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 291, + 114 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 292, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 292, + 116 + ], + "score": 1.0, + "content": "Consider the following optimization problem:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 117, + 391, + 142 + ], + "lines": [ + { + "bbox": [ + 225, + 117, + 391, + 142 + ], + "spans": [ + { + "bbox": [ + 225, + 117, + 391, + 142 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\mathrm { n i n i m i z e } } & { \\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) ) ^ { 2 } } \\\\ { \\mathrm { u b j e c t ~ t o } } & { \\sum _ { a } \\pi ( s , a ) = 1 , \\quad s \\in S } \\end{array}", + "type": "interline_equation", + "image_path": "b8ec3bc0a89d6f3f2c5a232374e342c51b5b96c164bca2692a0bc9ea447d15ec.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 225, + 117, + 391, + 142 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 144, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 161, + 156 + ], + "score": 1.0, + "content": "over variable", + "type": "text" + }, + { + "bbox": [ + 161, + 145, + 168, + 154 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 144, + 254, + 156 + ], + "score": 1.0, + "content": "which parameterizes", + "type": "text" + }, + { + "bbox": [ + 254, + 146, + 261, + 154 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 144, + 505, + 156 + ], + "score": 1.0, + "content": ", where we consider both the measure in the expectation and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 155, + 451, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 149, + 168 + ], + "score": 1.0, + "content": "the values", + "type": "text" + }, + { + "bbox": [ + 149, + 155, + 177, + 167 + ], + "score": 0.94, + "content": "\\boldsymbol { q } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 155, + 262, + 168 + ], + "score": 1.0, + "content": "to be independent of", + "type": "text" + }, + { + "bbox": [ + 263, + 156, + 268, + 165 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 155, + 451, + 168 + ], + "score": 1.0, + "content": ". The optimality condition for this problem is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 168, + 409, + 188 + ], + "lines": [ + { + "bbox": [ + 200, + 168, + 409, + 188 + ], + "spans": [ + { + "bbox": [ + 200, + 168, + 409, + 188 + ], + "score": 0.9, + "content": "\\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) + c _ { s } ) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ,", + "type": "interline_equation", + "image_path": "71811626b9c67f3aab3a467b4bb4500e85ac3b261c64dcb064a74df947c8c254.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 200, + 168, + 409, + 188 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 191, + 506, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 190, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 133, + 205 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 191, + 168, + 202 + ], + "score": 0.92, + "content": "c \\in \\mathbb { R } ^ { | S | }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 190, + 506, + 205 + ], + "score": 1.0, + "content": "is the Lagrange multiplier associated with the constraint that the policy sum to one at", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 332, + 215 + ], + "score": 1.0, + "content": "each state. Comparing this to equation (3), we see that if", + "type": "text" + }, + { + "bbox": [ + 332, + 203, + 364, + 214 + ], + "score": 0.92, + "content": "q = Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 204, + 505, + 215 + ], + "score": 1.0, + "content": "and the measure in the expectation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 214, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 226 + ], + "score": 1.0, + "content": "is the same then they describe the same set of fixed points. This suggests an interpretation of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "fixed points of the regularized policy gradient as a regression of the log-policy onto the Q-values. In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "score": 1.0, + "content": "the general case of using an approximation architecture we can interpret equation (3) as indicating", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 198, + 262 + ], + "score": 1.0, + "content": "that the error between", + "type": "text" + }, + { + "bbox": [ + 198, + 248, + 212, + 259 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 247, + 231, + 262 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 232, + 246, + 246, + 260 + ], + "score": 0.91, + "content": "{ \\bf \\bar { \\cal Q } } ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 247, + 314, + 262 + ], + "score": 1.0, + "content": "is orthogonal to", + "type": "text" + }, + { + "bbox": [ + 315, + 248, + 354, + 260 + ], + "score": 0.89, + "content": "\\nabla _ { \\theta _ { i } } \\log \\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 247, + 390, + 262 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 391, + 249, + 396, + 258 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 247, + 506, + 262 + ], + "score": 1.0, + "content": ", and so cannot be reduced", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "further by changing the parameters, at least locally. In this case equation (4) is unlikely to hold at a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "solution to (3), however with a good approximation architecture it may hold approximately, so that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "the we can derive an estimate of the Q-values from the policy using equation (5). We will use this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 293, + 284, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 284, + 304 + ], + "score": 1.0, + "content": "estimate of the Q-values in the next section.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 317, + 316, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 317, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 317, + 329 + ], + "score": 1.0, + "content": "3.3 CONNECTION TO ACTION-VALUE METHODS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "The previous section made a connection between regularized policy gradient and a regression onto", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "the Q-values at the fixed point. In this section we go one step further, showing that actor-critic", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "methods can be interpreted as action-value fitting methods, where the exact method depends on the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 370, + 171, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 171, + 381 + ], + "score": 1.0, + "content": "choice of critic.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 479, + 405 + ], + "score": 1.0, + "content": "Actor-critic methods. Consider an agent using an actor-critic method to learn both a policy", + "type": "text" + }, + { + "bbox": [ + 480, + 395, + 487, + 403 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 104, + 402, + 174, + 417 + ], + "score": 1.0, + "content": "a value function", + "type": "text" + }, + { + "bbox": [ + 174, + 405, + 183, + 414 + ], + "score": 0.8, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 402, + 254, + 417 + ], + "score": 1.0, + "content": ". At any iteration", + "type": "text" + }, + { + "bbox": [ + 254, + 405, + 261, + 414 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 402, + 340, + 417 + ], + "score": 1.0, + "content": ", the value function", + "type": "text" + }, + { + "bbox": [ + 341, + 403, + 354, + 414 + ], + "score": 0.89, + "content": "V ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 402, + 418, + 417 + ], + "score": 1.0, + "content": "has parameters", + "type": "text" + }, + { + "bbox": [ + 419, + 403, + 432, + 414 + ], + "score": 0.89, + "content": "w ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 402, + 506, + 417 + ], + "score": 1.0, + "content": ", and the policy is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 414, + 155, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 155, + 427 + ], + "score": 1.0, + "content": "of the form", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 421, + 413, + 448 + ], + "lines": [ + { + "bbox": [ + 195, + 421, + 413, + 448 + ], + "spans": [ + { + "bbox": [ + 195, + 421, + 413, + 448 + ], + "score": 0.94, + "content": "\\pi ^ { k } ( s , a ) = \\exp ( W ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( W ^ { k } ( s , b ) / \\alpha ) ,", + "type": "interline_equation", + "image_path": "92b743844a1e0c6fad7e6baa8d6d6e796deff3ffefb2b5a7307617b4e601b73d.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 195, + 421, + 413, + 434.5 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 195, + 434.5, + 413, + 448.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 134, + 464 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 450, + 151, + 460 + ], + "score": 0.89, + "content": "W ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 447, + 237, + 464 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 237, + 450, + 248, + 460 + ], + "score": 0.87, + "content": "\\theta ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 447, + 268, + 464 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 451, + 298, + 461 + ], + "score": 0.89, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 447, + 505, + 464 + ], + "score": 1.0, + "content": "is the entropy regularization penalty. In this case", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 459, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 371, + 474 + ], + "score": 0.86, + "content": "\\begin{array} { r l } { \\nabla _ { \\theta } \\log \\pi ^ { k } ( s , \\dot { a _ { ) } } = ( 1 / \\alpha ) ( \\nabla _ { \\theta } \\dot { W } ^ { k } ( s , a ) - \\sum _ { b } \\pi ( s , b ) \\nabla _ { \\theta } W ^ { k } ( \\dot { s } , b ) \\overset { \\sim } { ) } } & { { } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 459, + 505, + 475 + ], + "score": 1.0, + "content": ". Using equation (6) the parame-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 472, + 184, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 184, + 485 + ], + "score": 1.0, + "content": "ters are updated as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 486, + 470, + 513 + ], + "lines": [ + { + "bbox": [ + 140, + 486, + 470, + 513 + ], + "spans": [ + { + "bbox": [ + 140, + 486, + 470, + 513 + ], + "score": 0.91, + "content": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } ( \\nabla _ { \\theta } W ^ { k } ( s , a ) - \\sum _ { b } \\pi ^ { k } ( s , b ) \\nabla _ { \\theta } W ^ { k } ( s , b ) ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } \\nabla _ { w } V ^ { k } ( s )", + "type": "interline_equation", + "image_path": "a084497eec69e9a1bbd7592b459cfa6df321cf02ac6389ce6e8ec1c459c3af30.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 140, + 486, + 470, + 495.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 140, + 495.0, + 470, + 504.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 140, + 504.0, + 470, + 513.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 506, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 133, + 527 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 515, + 147, + 525 + ], + "score": 0.9, + "content": "\\delta _ { \\mathrm { a c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "is the critic minus baseline term, which depends on the variant of actor-critic being used", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 526, + 203, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 203, + 537 + ], + "score": 1.0, + "content": "(see the remark below).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 504, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 504, + 561 + ], + "score": 1.0, + "content": "Action-value methods. Compare this to the case where an agent is learning Q-values with a du-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 560, + 385, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 332, + 572 + ], + "score": 1.0, + "content": "eling architecture (Wang et al., 2016), which at iteration", + "type": "text" + }, + { + "bbox": [ + 332, + 560, + 339, + 569 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 560, + 385, + 572 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 573, + 412, + 600 + ], + "lines": [ + { + "bbox": [ + 198, + 573, + 412, + 600 + ], + "spans": [ + { + "bbox": [ + 198, + 573, + 412, + 600 + ], + "score": 0.92, + "content": "Q ^ { k } ( s , a ) = Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) Y ^ { k } ( s , b ) + V ^ { k } ( s ) ,", + "type": "interline_equation", + "image_path": "f3ab42ee27bdb68053dd6071ee1d7589cf03d6df769f582d7826f68e591321e6.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 573, + 412, + 586.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 198, + 586.5, + 412, + 600.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 504, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 133, + 617 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 606, + 141, + 615 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 601, + 258, + 617 + ], + "score": 1.0, + "content": "is a probability distribution,", + "type": "text" + }, + { + "bbox": [ + 258, + 603, + 272, + 614 + ], + "score": 0.89, + "content": "Y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 601, + 356, + 617 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 357, + 602, + 386, + 614 + ], + "score": 0.33, + "content": "\\theta ^ { k } , V ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 601, + 470, + 617 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 470, + 603, + 483, + 613 + ], + "score": 0.89, + "content": "w ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 601, + 506, + 617 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 351, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 321, + 627 + ], + "score": 1.0, + "content": "the exploration policy is Boltzmann with temperature", + "type": "text" + }, + { + "bbox": [ + 322, + 616, + 329, + 624 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 613, + 351, + 627 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 628, + 412, + 654 + ], + "lines": [ + { + "bbox": [ + 199, + 628, + 412, + 654 + ], + "spans": [ + { + "bbox": [ + 199, + 628, + 412, + 654 + ], + "score": 0.92, + "content": "\\pi ^ { k } ( s , a ) = \\exp ( Y ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Y ^ { k } ( s , b ) / \\alpha ) .", + "type": "interline_equation", + "image_path": "36275287a983b3ad3d278fc55b2ee0e400f4b06c3b7663c253387c82d581edbd.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 199, + 628, + 412, + 654 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 656, + 503, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 670 + ], + "score": 1.0, + "content": "In action value fitting methods at each iteration the parameters are updated to reduce some error,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 223, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 223, + 681 + ], + "score": 1.0, + "content": "where the update is given by", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 681, + 466, + 707 + ], + "lines": [ + { + "bbox": [ + 145, + 681, + 466, + 707 + ], + "spans": [ + { + "bbox": [ + 145, + 681, + 466, + 707 + ], + "score": 0.91, + "content": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\bigl ( \\nabla _ { \\theta } Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) \\nabla _ { \\theta } Y ^ { k } ( s , b ) \\bigr ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\nabla _ { w } V ^ { k } ( s )", + "type": "interline_equation", + "image_path": "8be47ac6cf2dc0fc76c19e838a6c168b7d9e1fe9990f08d1d79f89a87cd240c1.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 145, + 681, + 466, + 707 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 134, + 723 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 710, + 149, + 721 + ], + "score": 0.9, + "content": "\\delta _ { \\mathrm { a v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "is the action-value error term and depends on which algorithm is being used (see the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 169, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 169, + 732 + ], + "score": 1.0, + "content": "remark below).", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 293, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 199, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 200, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 200, + 95 + ], + "score": 1.0, + "content": "3.2 GENERAL CASE", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 291, + 114 + ], + "lines": [ + { + "bbox": [ + 106, + 102, + 292, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 292, + 116 + ], + "score": 1.0, + "content": "Consider the following optimization problem:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 102, + 292, + 116 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 117, + 391, + 142 + ], + "lines": [ + { + "bbox": [ + 225, + 117, + 391, + 142 + ], + "spans": [ + { + "bbox": [ + 225, + 117, + 391, + 142 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\mathrm { n i n i m i z e } } & { \\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) ) ^ { 2 } } \\\\ { \\mathrm { u b j e c t ~ t o } } & { \\sum _ { a } \\pi ( s , a ) = 1 , \\quad s \\in S } \\end{array}", + "type": "interline_equation", + "image_path": "b8ec3bc0a89d6f3f2c5a232374e342c51b5b96c164bca2692a0bc9ea447d15ec.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 225, + 117, + 391, + 142 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 144, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 106, + 144, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 161, + 156 + ], + "score": 1.0, + "content": "over variable", + "type": "text" + }, + { + "bbox": [ + 161, + 145, + 168, + 154 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 144, + 254, + 156 + ], + "score": 1.0, + "content": "which parameterizes", + "type": "text" + }, + { + "bbox": [ + 254, + 146, + 261, + 154 + ], + "score": 0.79, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 144, + 505, + 156 + ], + "score": 1.0, + "content": ", where we consider both the measure in the expectation and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 155, + 451, + 168 + ], + "spans": [ + { + "bbox": [ + 106, + 155, + 149, + 168 + ], + "score": 1.0, + "content": "the values", + "type": "text" + }, + { + "bbox": [ + 149, + 155, + 177, + 167 + ], + "score": 0.94, + "content": "\\boldsymbol { q } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 155, + 262, + 168 + ], + "score": 1.0, + "content": "to be independent of", + "type": "text" + }, + { + "bbox": [ + 263, + 156, + 268, + 165 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 155, + 451, + 168 + ], + "score": 1.0, + "content": ". The optimality condition for this problem is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 144, + 505, + 168 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 168, + 409, + 188 + ], + "lines": [ + { + "bbox": [ + 200, + 168, + 409, + 188 + ], + "spans": [ + { + "bbox": [ + 200, + 168, + 409, + 188 + ], + "score": 0.9, + "content": "\\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) + c _ { s } ) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ,", + "type": "interline_equation", + "image_path": "71811626b9c67f3aab3a467b4bb4500e85ac3b261c64dcb064a74df947c8c254.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 200, + 168, + 409, + 188 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 191, + 506, + 304 + ], + "lines": [ + { + "bbox": [ + 106, + 190, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 190, + 133, + 205 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 191, + 168, + 202 + ], + "score": 0.92, + "content": "c \\in \\mathbb { R } ^ { | S | }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 190, + 506, + 205 + ], + "score": 1.0, + "content": "is the Lagrange multiplier associated with the constraint that the policy sum to one at", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 332, + 215 + ], + "score": 1.0, + "content": "each state. Comparing this to equation (3), we see that if", + "type": "text" + }, + { + "bbox": [ + 332, + 203, + 364, + 214 + ], + "score": 0.92, + "content": "q = Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 204, + 505, + 215 + ], + "score": 1.0, + "content": "and the measure in the expectation", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 214, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 226 + ], + "score": 1.0, + "content": "is the same then they describe the same set of fixed points. This suggests an interpretation of the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 506, + 239 + ], + "score": 1.0, + "content": "fixed points of the regularized policy gradient as a regression of the log-policy onto the Q-values. In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 506, + 250 + ], + "score": 1.0, + "content": "the general case of using an approximation architecture we can interpret equation (3) as indicating", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 198, + 262 + ], + "score": 1.0, + "content": "that the error between", + "type": "text" + }, + { + "bbox": [ + 198, + 248, + 212, + 259 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 247, + 231, + 262 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 232, + 246, + 246, + 260 + ], + "score": 0.91, + "content": "{ \\bf \\bar { \\cal Q } } ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 247, + 314, + 262 + ], + "score": 1.0, + "content": "is orthogonal to", + "type": "text" + }, + { + "bbox": [ + 315, + 248, + 354, + 260 + ], + "score": 0.89, + "content": "\\nabla _ { \\theta _ { i } } \\log \\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 247, + 390, + 262 + ], + "score": 1.0, + "content": "for each", + "type": "text" + }, + { + "bbox": [ + 391, + 249, + 396, + 258 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 247, + 506, + 262 + ], + "score": 1.0, + "content": ", and so cannot be reduced", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 259, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 506, + 272 + ], + "score": 1.0, + "content": "further by changing the parameters, at least locally. In this case equation (4) is unlikely to hold at a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 505, + 282 + ], + "score": 1.0, + "content": "solution to (3), however with a good approximation architecture it may hold approximately, so that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 294 + ], + "score": 1.0, + "content": "the we can derive an estimate of the Q-values from the policy using equation (5). We will use this", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 293, + 284, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 284, + 304 + ], + "score": 1.0, + "content": "estimate of the Q-values in the next section.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 190, + 506, + 304 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 317, + 316, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 317, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 317, + 329 + ], + "score": 1.0, + "content": "3.3 CONNECTION TO ACTION-VALUE METHODS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 505, + 349 + ], + "score": 1.0, + "content": "The previous section made a connection between regularized policy gradient and a regression onto", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 505, + 361 + ], + "score": 1.0, + "content": "the Q-values at the fixed point. In this section we go one step further, showing that actor-critic", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "methods can be interpreted as action-value fitting methods, where the exact method depends on the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 370, + 171, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 171, + 381 + ], + "score": 1.0, + "content": "choice of critic.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 336, + 505, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 392, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 479, + 405 + ], + "score": 1.0, + "content": "Actor-critic methods. Consider an agent using an actor-critic method to learn both a policy", + "type": "text" + }, + { + "bbox": [ + 480, + 395, + 487, + 403 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 393, + 505, + 405 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 104, + 402, + 174, + 417 + ], + "score": 1.0, + "content": "a value function", + "type": "text" + }, + { + "bbox": [ + 174, + 405, + 183, + 414 + ], + "score": 0.8, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 402, + 254, + 417 + ], + "score": 1.0, + "content": ". At any iteration", + "type": "text" + }, + { + "bbox": [ + 254, + 405, + 261, + 414 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 402, + 340, + 417 + ], + "score": 1.0, + "content": ", the value function", + "type": "text" + }, + { + "bbox": [ + 341, + 403, + 354, + 414 + ], + "score": 0.89, + "content": "V ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 402, + 418, + 417 + ], + "score": 1.0, + "content": "has parameters", + "type": "text" + }, + { + "bbox": [ + 419, + 403, + 432, + 414 + ], + "score": 0.89, + "content": "w ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 402, + 506, + 417 + ], + "score": 1.0, + "content": ", and the policy is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 414, + 155, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 155, + 427 + ], + "score": 1.0, + "content": "of the form", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 393, + 506, + 427 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 195, + 421, + 413, + 448 + ], + "lines": [ + { + "bbox": [ + 195, + 421, + 413, + 448 + ], + "spans": [ + { + "bbox": [ + 195, + 421, + 413, + 448 + ], + "score": 0.94, + "content": "\\pi ^ { k } ( s , a ) = \\exp ( W ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( W ^ { k } ( s , b ) / \\alpha ) ,", + "type": "interline_equation", + "image_path": "92b743844a1e0c6fad7e6baa8d6d6e796deff3ffefb2b5a7307617b4e601b73d.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 195, + 421, + 413, + 434.5 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 195, + 434.5, + 413, + 448.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 450, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 134, + 464 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 450, + 151, + 460 + ], + "score": 0.89, + "content": "W ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 447, + 237, + 464 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 237, + 450, + 248, + 460 + ], + "score": 0.87, + "content": "\\theta ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 447, + 268, + 464 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 268, + 451, + 298, + 461 + ], + "score": 0.89, + "content": "\\alpha > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 447, + 505, + 464 + ], + "score": 1.0, + "content": "is the entropy regularization penalty. In this case", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 459, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 371, + 474 + ], + "score": 0.86, + "content": "\\begin{array} { r l } { \\nabla _ { \\theta } \\log \\pi ^ { k } ( s , \\dot { a _ { ) } } = ( 1 / \\alpha ) ( \\nabla _ { \\theta } \\dot { W } ^ { k } ( s , a ) - \\sum _ { b } \\pi ( s , b ) \\nabla _ { \\theta } W ^ { k } ( \\dot { s } , b ) \\overset { \\sim } { ) } } & { { } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 459, + 505, + 475 + ], + "score": 1.0, + "content": ". Using equation (6) the parame-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 472, + 184, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 184, + 485 + ], + "score": 1.0, + "content": "ters are updated as", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 447, + 505, + 485 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 140, + 486, + 470, + 513 + ], + "lines": [ + { + "bbox": [ + 140, + 486, + 470, + 513 + ], + "spans": [ + { + "bbox": [ + 140, + 486, + 470, + 513 + ], + "score": 0.91, + "content": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } ( \\nabla _ { \\theta } W ^ { k } ( s , a ) - \\sum _ { b } \\pi ^ { k } ( s , b ) \\nabla _ { \\theta } W ^ { k } ( s , b ) ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } \\nabla _ { w } V ^ { k } ( s )", + "type": "interline_equation", + "image_path": "a084497eec69e9a1bbd7592b459cfa6df321cf02ac6389ce6e8ec1c459c3af30.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 140, + 486, + 470, + 495.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 140, + 495.0, + 470, + 504.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 140, + 504.0, + 470, + 513.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 506, + 537 + ], + "lines": [ + { + "bbox": [ + 106, + 514, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 133, + 527 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 515, + 147, + 525 + ], + "score": 0.9, + "content": "\\delta _ { \\mathrm { a c } }", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 514, + 505, + 527 + ], + "score": 1.0, + "content": "is the critic minus baseline term, which depends on the variant of actor-critic being used", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 526, + 203, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 203, + 537 + ], + "score": 1.0, + "content": "(see the remark below).", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 514, + 505, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 548, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 547, + 504, + 561 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 504, + 561 + ], + "score": 1.0, + "content": "Action-value methods. Compare this to the case where an agent is learning Q-values with a du-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 560, + 385, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 332, + 572 + ], + "score": 1.0, + "content": "eling architecture (Wang et al., 2016), which at iteration", + "type": "text" + }, + { + "bbox": [ + 332, + 560, + 339, + 569 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 560, + 385, + 572 + ], + "score": 1.0, + "content": "is given by", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 547, + 504, + 572 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 573, + 412, + 600 + ], + "lines": [ + { + "bbox": [ + 198, + 573, + 412, + 600 + ], + "spans": [ + { + "bbox": [ + 198, + 573, + 412, + 600 + ], + "score": 0.92, + "content": "Q ^ { k } ( s , a ) = Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) Y ^ { k } ( s , b ) + V ^ { k } ( s ) ,", + "type": "interline_equation", + "image_path": "f3ab42ee27bdb68053dd6071ee1d7589cf03d6df769f582d7826f68e591321e6.jpg" + } + ] + } + ], + "index": 36.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 573, + 412, + 586.5 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 198, + 586.5, + 412, + 600.0 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 504, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 133, + 617 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 606, + 141, + 615 + ], + "score": 0.82, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 601, + 258, + 617 + ], + "score": 1.0, + "content": "is a probability distribution,", + "type": "text" + }, + { + "bbox": [ + 258, + 603, + 272, + 614 + ], + "score": 0.89, + "content": "Y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 601, + 356, + 617 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 357, + 602, + 386, + 614 + ], + "score": 0.33, + "content": "\\theta ^ { k } , V ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 601, + 470, + 617 + ], + "score": 1.0, + "content": "is parameterized by", + "type": "text" + }, + { + "bbox": [ + 470, + 603, + 483, + 613 + ], + "score": 0.89, + "content": "w ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 601, + 506, + 617 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 351, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 321, + 627 + ], + "score": 1.0, + "content": "the exploration policy is Boltzmann with temperature", + "type": "text" + }, + { + "bbox": [ + 322, + 616, + 329, + 624 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 613, + 351, + 627 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 601, + 506, + 627 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 628, + 412, + 654 + ], + "lines": [ + { + "bbox": [ + 199, + 628, + 412, + 654 + ], + "spans": [ + { + "bbox": [ + 199, + 628, + 412, + 654 + ], + "score": 0.92, + "content": "\\pi ^ { k } ( s , a ) = \\exp ( Y ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Y ^ { k } ( s , b ) / \\alpha ) .", + "type": "interline_equation", + "image_path": "36275287a983b3ad3d278fc55b2ee0e400f4b06c3b7663c253387c82d581edbd.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 199, + 628, + 412, + 654 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 656, + 503, + 679 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 670 + ], + "score": 1.0, + "content": "In action value fitting methods at each iteration the parameters are updated to reduce some error,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 667, + 223, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 223, + 681 + ], + "score": 1.0, + "content": "where the update is given by", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 654, + 505, + 681 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 681, + 466, + 707 + ], + "lines": [ + { + "bbox": [ + 145, + 681, + 466, + 707 + ], + "spans": [ + { + "bbox": [ + 145, + 681, + 466, + 707 + ], + "score": 0.91, + "content": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\bigl ( \\nabla _ { \\theta } Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) \\nabla _ { \\theta } Y ^ { k } ( s , b ) \\bigr ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\nabla _ { w } V ^ { k } ( s )", + "type": "interline_equation", + "image_path": "8be47ac6cf2dc0fc76c19e838a6c168b7d9e1fe9990f08d1d79f89a87cd240c1.jpg" + } + ] + } + ], + "index": 43, + "virtual_lines": [ + { + "bbox": [ + 145, + 681, + 466, + 707 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 134, + 723 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 710, + 149, + 721 + ], + "score": 0.9, + "content": "\\delta _ { \\mathrm { a v } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "is the action-value error term and depends on which algorithm is being used (see the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 169, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 169, + 732 + ], + "score": 1.0, + "content": "remark below).", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 708, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 356, + 95 + ], + "score": 1.0, + "content": "Equivalence. The two policies (8) and (10) are identical if", + "type": "text" + }, + { + "bbox": [ + 357, + 81, + 402, + 93 + ], + "score": 0.92, + "content": "W ^ { k } = Y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 81, + 432, + 95 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 433, + 83, + 439, + 92 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 81, + 471, + 95 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 471, + 82, + 486, + 93 + ], + "score": 0.88, + "content": "X ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 120, + 104 + ], + "score": 0.86, + "content": "Y ^ { \\tilde { 0 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "can be initialized and parameterized in the same way, and assuming the two value function", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "estimates are initialized and parameterized in the same way, all that remains is to show that the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 504, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 461, + 129 + ], + "score": 1.0, + "content": "updates in equations (11) and (9) are identical. Comparing the two, and assuming that", + "type": "text" + }, + { + "bbox": [ + 461, + 115, + 504, + 127 + ], + "score": 0.92, + "content": "\\delta _ { \\mathrm { a c } } = \\delta _ { \\mathrm { a v } }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "(see remark), we see that the only difference is that the measure is not fixed in (9), but is equal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 402, + 150 + ], + "score": 1.0, + "content": "to the current policy and therefore changes after each update. Replacing", + "type": "text" + }, + { + "bbox": [ + 403, + 139, + 411, + 149 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 136, + 463, + 150 + ], + "score": 1.0, + "content": "in (11) with", + "type": "text" + }, + { + "bbox": [ + 463, + 137, + 475, + 147 + ], + "score": 0.88, + "content": "\\pi ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "makes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 145, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 104, + 145, + 255, + 162 + ], + "score": 1.0, + "content": "the updates identical, in which case", + "type": "text" + }, + { + "bbox": [ + 255, + 147, + 302, + 158 + ], + "score": 0.92, + "content": "W ^ { \\widetilde { k } } = Y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 145, + 506, + 162 + ], + "score": 1.0, + "content": "at all iterations and the two policies (8) and (10)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "are always the same. In other words, the slightly modified action-value method is equivalent to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "an actor-critic policy gradient method, and vice-versa (modulo using the non-discounted distribu-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 504, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 225, + 193 + ], + "score": 1.0, + "content": "tion of states, as discussed in", + "type": "text" + }, + { + "bbox": [ + 226, + 181, + 246, + 192 + ], + "score": 0.72, + "content": "\\ S 2 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 182, + 504, + 193 + ], + "score": 1.0, + "content": ". In particular, regularized policy gradient methods can be inter-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "preted as advantage function learning techniques (Baird III, 1993), since at the optimum the quantity", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 202, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 342, + 216 + ], + "score": 0.85, + "content": "\\begin{array} { r } { W ( s , a ) - \\sum _ { b } \\pi ( s , b ) W ( s , b ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 202, + 505, + 217 + ], + "score": 1.0, + "content": "will be equal to the advantage function", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 214, + 211, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 211, + 226 + ], + "score": 1.0, + "content": "values in the tabular case.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 352, + 251 + ], + "score": 1.0, + "content": "Remark. In SARSA (Rummery & Niranjan, 1994) we set", + "type": "text" + }, + { + "bbox": [ + 352, + 237, + 501, + 250 + ], + "score": 0.93, + "content": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) - Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 237, + 505, + 251 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 248, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 133, + 262 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 249, + 140, + 259 + ], + "score": 0.68, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 248, + 261, + 262 + ], + "score": 1.0, + "content": "is the action selected at state", + "type": "text" + }, + { + "bbox": [ + 262, + 249, + 270, + 259 + ], + "score": 0.84, + "content": "s ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 248, + 506, + 262 + ], + "score": 1.0, + "content": ", which would be equivalent to using a bootstrap critic in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 186, + 273 + ], + "score": 1.0, + "content": "equation (6) where", + "type": "text" + }, + { + "bbox": [ + 187, + 260, + 316, + 273 + ], + "score": 0.91, + "content": "Q ^ { \\pi } ( s , a ) = r ( s , a ) + \\gamma \\tilde { Q } ( s ^ { \\prime } , b )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 261, + 505, + 273 + ], + "score": 1.0, + "content": ". In expected-SARSA (Sutton & Barto, 1998,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "Exercise 6.10), (Van Seijen et al., 2009)) we take the expectation over the Q-values at the next state,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 118, + 296 + ], + "score": 1.0, + "content": "so", + "type": "text" + }, + { + "bbox": [ + 118, + 283, + 249, + 295 + ], + "score": 0.9, + "content": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma V ( \\bar { s ^ { \\prime } } ) - Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 282, + 506, + 296 + ], + "score": 1.0, + "content": ". This is equivalent to TD-actor-critic (Konda & Tsitsiklis, 2003)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 394, + 306 + ], + "score": 1.0, + "content": "where we use the value function to provide the critic, which is given by", + "type": "text" + }, + { + "bbox": [ + 394, + 294, + 490, + 306 + ], + "score": 0.92, + "content": "Q ^ { \\pi } = r ( s , a ) + \\gamma V ( s ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 293, + 506, + 306 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 218, + 318 + ], + "score": 1.0, + "content": "Q-learning (Watkins, 1989)", + "type": "text" + }, + { + "bbox": [ + 218, + 305, + 392, + 317 + ], + "score": 0.92, + "content": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) - Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 304, + 506, + 318 + ], + "score": 1.0, + "content": ", which would be equivalent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 456, + 329 + ], + "score": 1.0, + "content": "to using an optimizing critic that bootstraps using the max Q-value at the next state, i.e.,", + "type": "text" + }, + { + "bbox": [ + 457, + 316, + 505, + 328 + ], + "score": 0.91, + "content": "Q ^ { \\pi } ( s , a ) =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 216, + 340 + ], + "score": 0.87, + "content": "r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } \\tilde { Q } ^ { \\pi } ( s ^ { \\prime } , b )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 327, + 506, + 342 + ], + "score": 1.0, + "content": ". In REINFORCE the critic is the Monte Carlo return from that state on,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 102, + 333, + 509, + 357 + ], + "spans": [ + { + "bbox": [ + 102, + 333, + 124, + 357 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 125, + 340, + 300, + 352 + ], + "score": 0.87, + "content": "\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 333, + 509, + 357 + ], + "score": 1.0, + "content": ". If the return trace is truncated and a bootstrap is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 171, + 363 + ], + "score": 1.0, + "content": "performed after", + "type": "text" + }, + { + "bbox": [ + 171, + 353, + 178, + 360 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 351, + 285, + 363 + ], + "score": 1.0, + "content": "-steps, this is equivalent to", + "type": "text" + }, + { + "bbox": [ + 285, + 353, + 292, + 360 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 351, + 358, + 363 + ], + "score": 1.0, + "content": "-step SARSA or", + "type": "text" + }, + { + "bbox": [ + 358, + 352, + 365, + 360 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "-step Q-learning, depending on the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 362, + 299, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 299, + 374 + ], + "score": 1.0, + "content": "form of the bootstrap (Peng & Williams, 1996).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 387, + 219, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 222, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 222, + 399 + ], + "score": 1.0, + "content": "3.4 BELLMAN RESIDUAL", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 219, + 420 + ], + "score": 1.0, + "content": "In this section we show that", + "type": "text" + }, + { + "bbox": [ + 220, + 407, + 311, + 419 + ], + "score": 0.91, + "content": "\\| \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 406, + 466, + 420 + ], + "score": 1.0, + "content": "with decreasing regularization penalty", + "type": "text" + }, + { + "bbox": [ + 467, + 410, + 474, + 417 + ], + "score": 0.73, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 406, + 506, + 420 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 107, + 420, + 119, + 429 + ], + "score": 0.84, + "content": "\\pi _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 417, + 252, + 431 + ], + "score": 1.0, + "content": "is the policy defined by (4) and", + "type": "text" + }, + { + "bbox": [ + 252, + 419, + 270, + 429 + ], + "score": 0.89, + "content": "Q ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 417, + 357, + 431 + ], + "score": 1.0, + "content": "is the corresponding", + "type": "text" + }, + { + "bbox": [ + 357, + 419, + 366, + 430 + ], + "score": 0.33, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "-value function, both of which are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 158, + 442 + ], + "score": 1.0, + "content": "functions of", + "type": "text" + }, + { + "bbox": [ + 158, + 431, + 166, + 439 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 429, + 505, + 442 + ], + "score": 1.0, + "content": ". We shall show that it converges to zero by bounding the sequence below by zero", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 387, + 453 + ], + "score": 1.0, + "content": "and above with a sequence that converges to zero. First, we have that", + "type": "text" + }, + { + "bbox": [ + 387, + 440, + 501, + 451 + ], + "score": 0.92, + "content": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } \\geq { \\mathcal { T } } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 439, + 505, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 129, + 464 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 451, + 143, + 461 + ], + "score": 0.86, + "content": "\\mathcal { T } ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 450, + 312, + 464 + ], + "score": 1.0, + "content": "is greedy with respect to the Q-values. So", + "type": "text" + }, + { + "bbox": [ + 313, + 451, + 392, + 462 + ], + "score": 0.89, + "content": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 450, + 506, + 464 + ], + "score": 1.0, + "content": ". Now, to bound from above", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 462, + 504, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 193, + 475 + ], + "score": 1.0, + "content": "we need the fact that", + "type": "text" + }, + { + "bbox": [ + 194, + 462, + 504, + 475 + ], + "score": 0.74, + "content": "\\begin{array} { r } { \\pi _ { \\alpha } ( s , a ) = \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , b ) / \\alpha ) \\leq \\exp ( ( Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( a , b ) ) ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 473, + 274, + 486 + ], + "spans": [ + { + "bbox": [ + 107, + 473, + 190, + 485 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s , c ) ) / \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 473, + 274, + 486 + ], + "score": 1.0, + "content": ". Using this we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29 + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 489, + 475, + 560 + ], + "lines": [ + { + "bbox": [ + 134, + 489, + 475, + 560 + ], + "spans": [ + { + "bbox": [ + 134, + 489, + 475, + 560 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { 0 } & { \\leq } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - \\mathcal { T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { \\leq } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\exp \\big ( ( Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ^ { \\star } ) \\big ) / \\alpha \\big ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } f _ { \\alpha } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "7df8b01741f5ce01faac5dec9f633b4b91d9897ec26cb87118a55e0aef31be37.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 134, + 489, + 475, + 512.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 134, + 512.6666666666666, + 475, + 536.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 134, + 536.3333333333333, + 475, + 559.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 178, + 578 + ], + "score": 1.0, + "content": "where we define", + "type": "text" + }, + { + "bbox": [ + 178, + 565, + 276, + 577 + ], + "score": 0.91, + "content": "f _ { \\alpha } ( x ) = x \\exp ( - x / \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 563, + 466, + 578 + ], + "score": 1.0, + "content": ". To conclude our proof we use the fact that", + "type": "text" + }, + { + "bbox": [ + 466, + 565, + 505, + 577 + ], + "score": 0.9, + "content": "f _ { \\alpha } ( x ) \\ \\leq", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 574, + 284, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 226, + 588 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\operatorname* { s u p } _ { x } f _ { \\alpha } ( x ) = f _ { \\alpha } ( \\alpha ) \\stackrel { \\cdot } { = } \\alpha \\mathrm { e } ^ { - 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 574, + 284, + 588 + ], + "score": 1.0, + "content": ", which yields", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 592, + 392, + 608 + ], + "lines": [ + { + "bbox": [ + 217, + 592, + 392, + 608 + ], + "spans": [ + { + "bbox": [ + 217, + 592, + 392, + 608 + ], + "score": 0.9, + "content": "0 \\leq \\mathcal T ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) \\leq | { \\mathcal A } | \\alpha \\mathrm { e } ^ { - 1 }", + "type": "interline_equation", + "image_path": "f58c7f6d417a2f168a8790e6e40b2e0953a36d847bbef3c13d3477a807c0390b.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 217, + 592, + 392, + 608 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 134, + 625 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 134, + 613, + 156, + 625 + ], + "score": 0.91, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 612, + 414, + 625 + ], + "score": 1.0, + "content": ", and so the Bellman residual converges to zero with decreasing", + "type": "text" + }, + { + "bbox": [ + 415, + 616, + 422, + 623 + ], + "score": 0.74, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 612, + 505, + 625 + ], + "score": 1.0, + "content": ". In other words, for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 163, + 636 + ], + "score": 1.0, + "content": "small enough", + "type": "text" + }, + { + "bbox": [ + 164, + 626, + 172, + 634 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "(which is the regime we are interested in) the Q-values induced by the policy (4)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 366, + 648 + ], + "score": 1.0, + "content": "will have a small Bellman residual. Moreover, this implies that", + "type": "text" + }, + { + "bbox": [ + 366, + 635, + 446, + 646 + ], + "score": 0.92, + "content": "\\mathrm { l i m } _ { \\alpha \\to 0 } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 635, + 505, + 648 + ], + "score": 1.0, + "content": ", as one might", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 646, + 138, + 659 + ], + "spans": [ + { + "bbox": [ + 104, + 646, + 138, + 659 + ], + "score": 1.0, + "content": "expect.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 107, + 673, + 160, + 686 + ], + "lines": [ + { + "bbox": [ + 104, + 671, + 162, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 162, + 691 + ], + "score": 1.0, + "content": "4 PGQL", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 504, + 711 + ], + "score": 1.0, + "content": "In this section we introduce the main contribution of the paper, which is a technique to combine pol-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "icy gradient with Q-learning. We call our technique ‘PGQL’, for policy gradient and Q-learning. In", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "the previous section we showed that the Bellman residual is small at the fixed point of a regularized", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 226 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 356, + 95 + ], + "score": 1.0, + "content": "Equivalence. The two policies (8) and (10) are identical if", + "type": "text" + }, + { + "bbox": [ + 357, + 81, + 402, + 93 + ], + "score": 0.92, + "content": "W ^ { k } = Y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 81, + 432, + 95 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 433, + 83, + 439, + 92 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 81, + 471, + 95 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 471, + 82, + 486, + 93 + ], + "score": 0.88, + "content": "X ^ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 120, + 104 + ], + "score": 0.86, + "content": "Y ^ { \\tilde { 0 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 92, + 506, + 106 + ], + "score": 1.0, + "content": "can be initialized and parameterized in the same way, and assuming the two value function", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "estimates are initialized and parameterized in the same way, all that remains is to show that the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 504, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 461, + 129 + ], + "score": 1.0, + "content": "updates in equations (11) and (9) are identical. Comparing the two, and assuming that", + "type": "text" + }, + { + "bbox": [ + 461, + 115, + 504, + 127 + ], + "score": 0.92, + "content": "\\delta _ { \\mathrm { a c } } = \\delta _ { \\mathrm { a v } }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 505, + 138 + ], + "score": 1.0, + "content": "(see remark), we see that the only difference is that the measure is not fixed in (9), but is equal", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 402, + 150 + ], + "score": 1.0, + "content": "to the current policy and therefore changes after each update. Replacing", + "type": "text" + }, + { + "bbox": [ + 403, + 139, + 411, + 149 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 136, + 463, + 150 + ], + "score": 1.0, + "content": "in (11) with", + "type": "text" + }, + { + "bbox": [ + 463, + 137, + 475, + 147 + ], + "score": 0.88, + "content": "\\pi ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "makes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 145, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 104, + 145, + 255, + 162 + ], + "score": 1.0, + "content": "the updates identical, in which case", + "type": "text" + }, + { + "bbox": [ + 255, + 147, + 302, + 158 + ], + "score": 0.92, + "content": "W ^ { \\widetilde { k } } = Y ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 145, + 506, + 162 + ], + "score": 1.0, + "content": "at all iterations and the two policies (8) and (10)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 173 + ], + "score": 1.0, + "content": "are always the same. In other words, the slightly modified action-value method is equivalent to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "an actor-critic policy gradient method, and vice-versa (modulo using the non-discounted distribu-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 504, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 225, + 193 + ], + "score": 1.0, + "content": "tion of states, as discussed in", + "type": "text" + }, + { + "bbox": [ + 226, + 181, + 246, + 192 + ], + "score": 0.72, + "content": "\\ S 2 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 182, + 504, + 193 + ], + "score": 1.0, + "content": ". In particular, regularized policy gradient methods can be inter-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "preted as advantage function learning techniques (Baird III, 1993), since at the optimum the quantity", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 202, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 342, + 216 + ], + "score": 0.85, + "content": "\\begin{array} { r } { W ( s , a ) - \\sum _ { b } \\pi ( s , b ) W ( s , b ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 202, + 505, + 217 + ], + "score": 1.0, + "content": "will be equal to the advantage function", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 214, + 211, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 211, + 226 + ], + "score": 1.0, + "content": "values in the tabular case.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6, + "bbox_fs": [ + 104, + 81, + 506, + 226 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 236, + 505, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 237, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 352, + 251 + ], + "score": 1.0, + "content": "Remark. In SARSA (Rummery & Niranjan, 1994) we set", + "type": "text" + }, + { + "bbox": [ + 352, + 237, + 501, + 250 + ], + "score": 0.93, + "content": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) - Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 237, + 505, + 251 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 248, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 133, + 262 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 249, + 140, + 259 + ], + "score": 0.68, + "content": "b", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 248, + 261, + 262 + ], + "score": 1.0, + "content": "is the action selected at state", + "type": "text" + }, + { + "bbox": [ + 262, + 249, + 270, + 259 + ], + "score": 0.84, + "content": "s ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 248, + 506, + 262 + ], + "score": 1.0, + "content": ", which would be equivalent to using a bootstrap critic in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 260, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 261, + 186, + 273 + ], + "score": 1.0, + "content": "equation (6) where", + "type": "text" + }, + { + "bbox": [ + 187, + 260, + 316, + 273 + ], + "score": 0.91, + "content": "Q ^ { \\pi } ( s , a ) = r ( s , a ) + \\gamma \\tilde { Q } ( s ^ { \\prime } , b )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 261, + 505, + 273 + ], + "score": 1.0, + "content": ". In expected-SARSA (Sutton & Barto, 1998,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "Exercise 6.10), (Van Seijen et al., 2009)) we take the expectation over the Q-values at the next state,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 282, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 118, + 296 + ], + "score": 1.0, + "content": "so", + "type": "text" + }, + { + "bbox": [ + 118, + 283, + 249, + 295 + ], + "score": 0.9, + "content": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma V ( \\bar { s ^ { \\prime } } ) - Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 282, + 506, + 296 + ], + "score": 1.0, + "content": ". This is equivalent to TD-actor-critic (Konda & Tsitsiklis, 2003)", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 293, + 506, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 394, + 306 + ], + "score": 1.0, + "content": "where we use the value function to provide the critic, which is given by", + "type": "text" + }, + { + "bbox": [ + 394, + 294, + 490, + 306 + ], + "score": 0.92, + "content": "Q ^ { \\pi } = r ( s , a ) + \\gamma V ( s ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 293, + 506, + 306 + ], + "score": 1.0, + "content": ". In", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 218, + 318 + ], + "score": 1.0, + "content": "Q-learning (Watkins, 1989)", + "type": "text" + }, + { + "bbox": [ + 218, + 305, + 392, + 317 + ], + "score": 0.92, + "content": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) - Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 304, + 506, + 318 + ], + "score": 1.0, + "content": ", which would be equivalent", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 456, + 329 + ], + "score": 1.0, + "content": "to using an optimizing critic that bootstraps using the max Q-value at the next state, i.e.,", + "type": "text" + }, + { + "bbox": [ + 457, + 316, + 505, + 328 + ], + "score": 0.91, + "content": "Q ^ { \\pi } ( s , a ) =", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 327, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 216, + 340 + ], + "score": 0.87, + "content": "r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } \\tilde { Q } ^ { \\pi } ( s ^ { \\prime } , b )", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 327, + 506, + 342 + ], + "score": 1.0, + "content": ". In REINFORCE the critic is the Monte Carlo return from that state on,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 102, + 333, + 509, + 357 + ], + "spans": [ + { + "bbox": [ + 102, + 333, + 124, + 357 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 125, + 340, + 300, + 352 + ], + "score": 0.87, + "content": "\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = a ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 333, + 509, + 357 + ], + "score": 1.0, + "content": ". If the return trace is truncated and a bootstrap is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 171, + 363 + ], + "score": 1.0, + "content": "performed after", + "type": "text" + }, + { + "bbox": [ + 171, + 353, + 178, + 360 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 351, + 285, + 363 + ], + "score": 1.0, + "content": "-steps, this is equivalent to", + "type": "text" + }, + { + "bbox": [ + 285, + 353, + 292, + 360 + ], + "score": 0.73, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 351, + 358, + 363 + ], + "score": 1.0, + "content": "-step SARSA or", + "type": "text" + }, + { + "bbox": [ + 358, + 352, + 365, + 360 + ], + "score": 0.76, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "-step Q-learning, depending on the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 362, + 299, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 299, + 374 + ], + "score": 1.0, + "content": "form of the bootstrap (Peng & Williams, 1996).", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18.5, + "bbox_fs": [ + 102, + 237, + 509, + 374 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 387, + 219, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 386, + 222, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 222, + 399 + ], + "score": 1.0, + "content": "3.4 BELLMAN RESIDUAL", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 505, + 485 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 219, + 420 + ], + "score": 1.0, + "content": "In this section we show that", + "type": "text" + }, + { + "bbox": [ + 220, + 407, + 311, + 419 + ], + "score": 0.91, + "content": "\\| \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 406, + 466, + 420 + ], + "score": 1.0, + "content": "with decreasing regularization penalty", + "type": "text" + }, + { + "bbox": [ + 467, + 410, + 474, + 417 + ], + "score": 0.73, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 406, + 506, + 420 + ], + "score": 1.0, + "content": ", where", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 107, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 107, + 420, + 119, + 429 + ], + "score": 0.84, + "content": "\\pi _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 417, + 252, + 431 + ], + "score": 1.0, + "content": "is the policy defined by (4) and", + "type": "text" + }, + { + "bbox": [ + 252, + 419, + 270, + 429 + ], + "score": 0.89, + "content": "Q ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 417, + 357, + 431 + ], + "score": 1.0, + "content": "is the corresponding", + "type": "text" + }, + { + "bbox": [ + 357, + 419, + 366, + 430 + ], + "score": 0.33, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 417, + 506, + 431 + ], + "score": 1.0, + "content": "-value function, both of which are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 158, + 442 + ], + "score": 1.0, + "content": "functions of", + "type": "text" + }, + { + "bbox": [ + 158, + 431, + 166, + 439 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 429, + 505, + 442 + ], + "score": 1.0, + "content": ". We shall show that it converges to zero by bounding the sequence below by zero", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 439, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 387, + 453 + ], + "score": 1.0, + "content": "and above with a sequence that converges to zero. First, we have that", + "type": "text" + }, + { + "bbox": [ + 387, + 440, + 501, + 451 + ], + "score": 0.92, + "content": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } \\geq { \\mathcal { T } } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 439, + 505, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 129, + 464 + ], + "score": 1.0, + "content": "since", + "type": "text" + }, + { + "bbox": [ + 129, + 451, + 143, + 461 + ], + "score": 0.86, + "content": "\\mathcal { T } ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 450, + 312, + 464 + ], + "score": 1.0, + "content": "is greedy with respect to the Q-values. So", + "type": "text" + }, + { + "bbox": [ + 313, + 451, + 392, + 462 + ], + "score": 0.89, + "content": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 450, + 506, + 464 + ], + "score": 1.0, + "content": ". Now, to bound from above", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 462, + 504, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 193, + 475 + ], + "score": 1.0, + "content": "we need the fact that", + "type": "text" + }, + { + "bbox": [ + 194, + 462, + 504, + 475 + ], + "score": 0.74, + "content": "\\begin{array} { r } { \\pi _ { \\alpha } ( s , a ) = \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , b ) / \\alpha ) \\leq \\exp ( ( Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( a , b ) ) ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 473, + 274, + 486 + ], + "spans": [ + { + "bbox": [ + 107, + 473, + 190, + 485 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s , c ) ) / \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 473, + 274, + 486 + ], + "score": 1.0, + "content": ". Using this we have", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 406, + 506, + 486 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 134, + 489, + 475, + 560 + ], + "lines": [ + { + "bbox": [ + 134, + 489, + 475, + 560 + ], + "spans": [ + { + "bbox": [ + 134, + 489, + 475, + 560 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { 0 } & { \\leq } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - \\mathcal { T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { \\leq } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\exp \\big ( ( Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ^ { \\star } ) \\big ) / \\alpha \\big ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } f _ { \\alpha } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) , } \\end{array}", + "type": "interline_equation", + "image_path": "7df8b01741f5ce01faac5dec9f633b4b91d9897ec26cb87118a55e0aef31be37.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 134, + 489, + 475, + 512.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 134, + 512.6666666666666, + 475, + 536.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 134, + 536.3333333333333, + 475, + 559.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 505, + 587 + ], + "lines": [ + { + "bbox": [ + 106, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 563, + 178, + 578 + ], + "score": 1.0, + "content": "where we define", + "type": "text" + }, + { + "bbox": [ + 178, + 565, + 276, + 577 + ], + "score": 0.91, + "content": "f _ { \\alpha } ( x ) = x \\exp ( - x / \\alpha )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 563, + 466, + 578 + ], + "score": 1.0, + "content": ". To conclude our proof we use the fact that", + "type": "text" + }, + { + "bbox": [ + 466, + 565, + 505, + 577 + ], + "score": 0.9, + "content": "f _ { \\alpha } ( x ) \\ \\leq", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 574, + 284, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 226, + 588 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\operatorname* { s u p } _ { x } f _ { \\alpha } ( x ) = f _ { \\alpha } ( \\alpha ) \\stackrel { \\cdot } { = } \\alpha \\mathrm { e } ^ { - 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 574, + 284, + 588 + ], + "score": 1.0, + "content": ", which yields", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 106, + 563, + 505, + 588 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 217, + 592, + 392, + 608 + ], + "lines": [ + { + "bbox": [ + 217, + 592, + 392, + 608 + ], + "spans": [ + { + "bbox": [ + 217, + 592, + 392, + 608 + ], + "score": 0.9, + "content": "0 \\leq \\mathcal T ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) \\leq | { \\mathcal A } | \\alpha \\mathrm { e } ^ { - 1 }", + "type": "interline_equation", + "image_path": "f58c7f6d417a2f168a8790e6e40b2e0953a36d847bbef3c13d3477a807c0390b.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 217, + 592, + 392, + 608 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 106, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 134, + 625 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 134, + 613, + 156, + 625 + ], + "score": 0.91, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 612, + 414, + 625 + ], + "score": 1.0, + "content": ", and so the Bellman residual converges to zero with decreasing", + "type": "text" + }, + { + "bbox": [ + 415, + 616, + 422, + 623 + ], + "score": 0.74, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 612, + 505, + 625 + ], + "score": 1.0, + "content": ". In other words, for", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 624, + 505, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 163, + 636 + ], + "score": 1.0, + "content": "small enough", + "type": "text" + }, + { + "bbox": [ + 164, + 626, + 172, + 634 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 624, + 505, + 636 + ], + "score": 1.0, + "content": "(which is the regime we are interested in) the Q-values induced by the policy (4)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 366, + 648 + ], + "score": 1.0, + "content": "will have a small Bellman residual. Moreover, this implies that", + "type": "text" + }, + { + "bbox": [ + 366, + 635, + 446, + 646 + ], + "score": 0.92, + "content": "\\mathrm { l i m } _ { \\alpha \\to 0 } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\star }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 635, + 505, + 648 + ], + "score": 1.0, + "content": ", as one might", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 646, + 138, + 659 + ], + "spans": [ + { + "bbox": [ + 104, + 646, + 138, + 659 + ], + "score": 1.0, + "content": "expect.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 612, + 505, + 659 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 673, + 160, + 686 + ], + "lines": [ + { + "bbox": [ + 104, + 671, + 162, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 162, + 691 + ], + "score": 1.0, + "content": "4 PGQL", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 504, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 504, + 711 + ], + "score": 1.0, + "content": "In this section we introduce the main contribution of the paper, which is a technique to combine pol-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "icy gradient with Q-learning. We call our technique ‘PGQL’, for policy gradient and Q-learning. In", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "the previous section we showed that the Bellman residual is small at the fixed point of a regularized", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "policy gradient algorithm when the regularization penalty is sufficiently small. This suggests adding", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "an auxiliary update where we explicitly attempt to reduce the Bellman residual as estimated from", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 366, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 366, + 118 + ], + "score": 1.0, + "content": "the policy, i.e., a hybrid between policy gradient and Q-learning.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 699, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "policy gradient algorithm when the regularization penalty is sufficiently small. This suggests adding", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "an auxiliary update where we explicitly attempt to reduce the Bellman residual as estimated from", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 366, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 366, + 118 + ], + "score": 1.0, + "content": "the policy, i.e., a hybrid between policy gradient and Q-learning.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 459, + 134 + ], + "score": 1.0, + "content": "We first present the technique in a batch update setting, with a perfect knowledge of", + "type": "text" + }, + { + "bbox": [ + 460, + 122, + 474, + 133 + ], + "score": 0.88, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "(i.e., a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "perfect critic). Later we discuss the practical implementation of the technique in a reinforcement", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 157 + ], + "score": 1.0, + "content": "learning setting with function approximation, where the agent generates experience from interacting", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 438, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 438, + 168 + ], + "score": 1.0, + "content": "with the environment and needs to estimate a critic simultaneously with the policy.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 196, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 197, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 197, + 192 + ], + "score": 1.0, + "content": "4.1 PGQL UPDATE", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 108, + 199, + 284, + 211 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 285, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 197, + 214 + ], + "score": 1.0, + "content": "Define the estimate of", + "type": "text" + }, + { + "bbox": [ + 197, + 200, + 206, + 211 + ], + "score": 0.87, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 197, + 285, + 214 + ], + "score": 1.0, + "content": "using the policy as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 215, + 396, + 231 + ], + "lines": [ + { + "bbox": [ + 213, + 215, + 396, + 231 + ], + "spans": [ + { + "bbox": [ + 213, + 215, + 396, + 231 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } ( s , a ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ( s ) , } \\end{array}", + "type": "interline_equation", + "image_path": "a4b2553e5624564873e14bde82117af28625f68067f1c1b14121f849a0446789.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 213, + 215, + 396, + 231 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 133, + 248 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 235, + 142, + 245 + ], + "score": 0.78, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 234, + 205, + 248 + ], + "score": 1.0, + "content": "has parameters", + "type": "text" + }, + { + "bbox": [ + 205, + 237, + 214, + 245 + ], + "score": 0.79, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 234, + 302, + 248 + ], + "score": 1.0, + "content": "and is not necessarily", + "type": "text" + }, + { + "bbox": [ + 302, + 235, + 316, + 245 + ], + "score": 0.88, + "content": "V ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "as it was in equation (5). In (2) it was unneces-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "sary to estimate the constant since the update was invariant to constant offsets, although in practice", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 256, + 503, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 503, + 268 + ], + "score": 1.0, + "content": "it is often estimated for use in a variance reduction technique (Williams, 1992; Sutton et al., 1999).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 504, + 296 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 428, + 285 + ], + "score": 1.0, + "content": "Since we know that at the fixed point the Bellman residual will be small for small", + "type": "text" + }, + { + "bbox": [ + 428, + 276, + 435, + 283 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 273, + 505, + 285 + ], + "score": 1.0, + "content": ", we can consider", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 284, + 484, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 484, + 298 + ], + "score": 1.0, + "content": "updating the parameters to reduce the Bellman residual in a fashion similar to Q-learning, i.e.,", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 299, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 111, + 299, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 111, + 299, + 504, + 320 + ], + "score": 0.89, + "content": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { w } V ( s ) .", + "type": "interline_equation", + "image_path": "6b0da3b50b6d6c82a40eb7d00c901dd632bca611e84fb0a1c81d7dc1e95f9b6e.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 111, + 299, + 504, + 320 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 330, + 503, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 326, + 343 + ], + "score": 1.0, + "content": "This is Q-learning applied to a particular form of the", + "type": "text" + }, + { + "bbox": [ + 326, + 330, + 335, + 341 + ], + "score": 0.26, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 328, + 505, + 343 + ], + "score": 1.0, + "content": "-values, and can also be interpreted as an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 340, + 387, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 387, + 353 + ], + "score": 1.0, + "content": "actor-critic algorithm with an optimizing (and therefore biased) critic.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 108, + 357, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "The full scheme simply combines two updates to the policy, the regularized policy gradient update", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 368, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 486, + 382 + ], + "score": 1.0, + "content": "(2) and the Q-learning update (13). Assuming we have an architecture that provides a policy", + "type": "text" + }, + { + "bbox": [ + 487, + 371, + 493, + 379 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 368, + 506, + 382 + ], + "score": 1.0, + "content": ", a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 379, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 201, + 393 + ], + "score": 1.0, + "content": "value function estimate", + "type": "text" + }, + { + "bbox": [ + 202, + 380, + 211, + 389 + ], + "score": 0.81, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 379, + 318, + 393 + ], + "score": 1.0, + "content": ", and an action-value critic", + "type": "text" + }, + { + "bbox": [ + 318, + 380, + 332, + 391 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 379, + 506, + 393 + ], + "score": 1.0, + "content": ", then the parameter updates can be written", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 391, + 248, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 185, + 403 + ], + "score": 1.0, + "content": "as (suppressing the", + "type": "text" + }, + { + "bbox": [ + 185, + 391, + 208, + 403 + ], + "score": 0.92, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 391, + 248, + 403 + ], + "score": 1.0, + "content": "notation)", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 405, + 454, + 447 + ], + "lines": [ + { + "bbox": [ + 162, + 405, + 454, + 447 + ], + "spans": [ + { + "bbox": [ + 162, + 405, + 454, + 447 + ], + "score": 0.55, + "content": "\\begin{array} { r l } & { \\begin{array} { r l } & { \\beth \\theta \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi , } \\end{array} } \\\\ & { \\begin{array} { r l } & { \\Delta w \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V , } \\end{array} } \\end{array}", + "type": "interline_equation", + "image_path": "b345ca8e54f6043dc612b6ed55dee1eb6653c65dab9fc0c9be26f32cf3c5d0b9.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 157, + 405, + 454, + 419.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 157, + 419.0, + 454, + 433.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 157, + 433.0, + 454, + 447.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 127, + 462 + ], + "score": 1.0, + "content": "here", + "type": "text" + }, + { + "bbox": [ + 127, + 450, + 168, + 462 + ], + "score": 0.91, + "content": "\\eta \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 451, + 505, + 462 + ], + "score": 1.0, + "content": "is a weighting parameter that controls how much of each update we apply. In the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 153, + 473 + ], + "score": 1.0, + "content": "case where", + "type": "text" + }, + { + "bbox": [ + 154, + 462, + 180, + 473 + ], + "score": 0.91, + "content": "\\eta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 460, + 457, + 473 + ], + "score": 1.0, + "content": "the above scheme reduces to entropy regularized policy gradient. If", + "type": "text" + }, + { + "bbox": [ + 457, + 461, + 484, + 473 + ], + "score": 0.92, + "content": "\\eta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "it becomes a variant of (batch) Q-learning with an architecture similar to the dueling architecture", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 287, + 496 + ], + "score": 1.0, + "content": "(Wang et al., 2016). Intermediate values of", + "type": "text" + }, + { + "bbox": [ + 287, + 485, + 294, + 495 + ], + "score": 0.79, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "produce a hybrid between the two. Examining the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "update we see that two error terms are trading off. The first term encourages consistency with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "critic, and the second term encourages optimality over time. However, since we know that under", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "score": 1.0, + "content": "standard policy gradient the Bellman residual will be small, then it follows that adding a term that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "reduces that error should not make much difference at the fixed point. That is, the updates should", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "be complementary, pointing in the same general direction, at least far away from a fixed point.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "This update can also be interpreted as an actor-critic update where the critic is given by a weighted", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "combination of a standard critic and an optimizing critic. Yet another interpretation of the update", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "is a combination of expected-SARSA and Q-learning, where the Q-values are parameterized as the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 581, + 313, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 313, + 595 + ], + "score": 1.0, + "content": "sum of an advantage function and a value function.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 260, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 262, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 262, + 618 + ], + "score": 1.0, + "content": "4.2 PRACTICAL IMPLEMENTATION", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 389, + 640 + ], + "score": 1.0, + "content": "The updates presented in (14) are batch updates, with an exact critic", + "type": "text" + }, + { + "bbox": [ + 390, + 627, + 404, + 639 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 626, + 506, + 640 + ], + "score": 1.0, + "content": ". In practice we want to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "run this scheme online, with an estimate of the critic, where we don’t necessarily apply the policy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 444, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 444, + 662 + ], + "score": 1.0, + "content": "gradient update at the same time or from same data source as the Q-learning update.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "Our proposal scheme is as follows. One or more agents interact with an environment, encountering", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "states and rewards and performing on-policy updates of (shared) parameters using an actor-critic", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "algorithm where both the policy and the critic are being updated online. Each time an agent receives", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "new data from the environment it writes it to a shared replay memory buffer. Periodically a separate", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "learner process samples from the replay buffer and performs a step of Q-learning on the parameters", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "of the policy using (13). This scheme has several advantages. The critic can accumulate the Monte", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5 + } + ], + "page_idx": 6, + "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 2017", + "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": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 118 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 121, + 505, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 459, + 134 + ], + "score": 1.0, + "content": "We first present the technique in a batch update setting, with a perfect knowledge of", + "type": "text" + }, + { + "bbox": [ + 460, + 122, + 474, + 133 + ], + "score": 0.88, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "(i.e., a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 145 + ], + "score": 1.0, + "content": "perfect critic). Later we discuss the practical implementation of the technique in a reinforcement", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 157 + ], + "score": 1.0, + "content": "learning setting with function approximation, where the agent generates experience from interacting", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 153, + 438, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 438, + 168 + ], + "score": 1.0, + "content": "with the environment and needs to estimate a critic simultaneously with the policy.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 120, + 506, + 168 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 178, + 196, + 190 + ], + "lines": [ + { + "bbox": [ + 105, + 177, + 197, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 197, + 192 + ], + "score": 1.0, + "content": "4.1 PGQL UPDATE", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 108, + 199, + 284, + 211 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 285, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 197, + 214 + ], + "score": 1.0, + "content": "Define the estimate of", + "type": "text" + }, + { + "bbox": [ + 197, + 200, + 206, + 211 + ], + "score": 0.87, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 197, + 285, + 214 + ], + "score": 1.0, + "content": "using the policy as", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 197, + 285, + 214 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 215, + 396, + 231 + ], + "lines": [ + { + "bbox": [ + 213, + 215, + 396, + 231 + ], + "spans": [ + { + "bbox": [ + 213, + 215, + 396, + 231 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } ( s , a ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ( s ) , } \\end{array}", + "type": "interline_equation", + "image_path": "a4b2553e5624564873e14bde82117af28625f68067f1c1b14121f849a0446789.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 213, + 215, + 396, + 231 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 133, + 248 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 235, + 142, + 245 + ], + "score": 0.78, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 234, + 205, + 248 + ], + "score": 1.0, + "content": "has parameters", + "type": "text" + }, + { + "bbox": [ + 205, + 237, + 214, + 245 + ], + "score": 0.79, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 234, + 302, + 248 + ], + "score": 1.0, + "content": "and is not necessarily", + "type": "text" + }, + { + "bbox": [ + 302, + 235, + 316, + 245 + ], + "score": 0.88, + "content": "V ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "as it was in equation (5). In (2) it was unneces-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "sary to estimate the constant since the update was invariant to constant offsets, although in practice", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 256, + 503, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 503, + 268 + ], + "score": 1.0, + "content": "it is often estimated for use in a variance reduction technique (Williams, 1992; Sutton et al., 1999).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 234, + 506, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 273, + 504, + 296 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 428, + 285 + ], + "score": 1.0, + "content": "Since we know that at the fixed point the Bellman residual will be small for small", + "type": "text" + }, + { + "bbox": [ + 428, + 276, + 435, + 283 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 273, + 505, + 285 + ], + "score": 1.0, + "content": ", we can consider", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 284, + 484, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 484, + 298 + ], + "score": 1.0, + "content": "updating the parameters to reduce the Bellman residual in a fashion similar to Q-learning, i.e.,", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 273, + 505, + 298 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 299, + 504, + 320 + ], + "lines": [ + { + "bbox": [ + 111, + 299, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 111, + 299, + 504, + 320 + ], + "score": 0.89, + "content": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { w } V ( s ) .", + "type": "interline_equation", + "image_path": "6b0da3b50b6d6c82a40eb7d00c901dd632bca611e84fb0a1c81d7dc1e95f9b6e.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 111, + 299, + 504, + 320 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 330, + 503, + 352 + ], + "lines": [ + { + "bbox": [ + 105, + 328, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 326, + 343 + ], + "score": 1.0, + "content": "This is Q-learning applied to a particular form of the", + "type": "text" + }, + { + "bbox": [ + 326, + 330, + 335, + 341 + ], + "score": 0.26, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 328, + 505, + 343 + ], + "score": 1.0, + "content": "-values, and can also be interpreted as an", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 340, + 387, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 387, + 353 + ], + "score": 1.0, + "content": "actor-critic algorithm with an optimizing (and therefore biased) critic.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 328, + 505, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 357, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "The full scheme simply combines two updates to the policy, the regularized policy gradient update", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 368, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 486, + 382 + ], + "score": 1.0, + "content": "(2) and the Q-learning update (13). Assuming we have an architecture that provides a policy", + "type": "text" + }, + { + "bbox": [ + 487, + 371, + 493, + 379 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 368, + 506, + 382 + ], + "score": 1.0, + "content": ", a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 379, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 201, + 393 + ], + "score": 1.0, + "content": "value function estimate", + "type": "text" + }, + { + "bbox": [ + 202, + 380, + 211, + 389 + ], + "score": 0.81, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 379, + 318, + 393 + ], + "score": 1.0, + "content": ", and an action-value critic", + "type": "text" + }, + { + "bbox": [ + 318, + 380, + 332, + 391 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 379, + 506, + 393 + ], + "score": 1.0, + "content": ", then the parameter updates can be written", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 391, + 248, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 185, + 403 + ], + "score": 1.0, + "content": "as (suppressing the", + "type": "text" + }, + { + "bbox": [ + 185, + 391, + 208, + 403 + ], + "score": 0.92, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 391, + 248, + 403 + ], + "score": 1.0, + "content": "notation)", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 357, + 506, + 403 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 157, + 405, + 454, + 447 + ], + "lines": [ + { + "bbox": [ + 162, + 405, + 454, + 447 + ], + "spans": [ + { + "bbox": [ + 162, + 405, + 454, + 447 + ], + "score": 0.55, + "content": "\\begin{array} { r l } & { \\begin{array} { r l } & { \\beth \\theta \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi , } \\end{array} } \\\\ & { \\begin{array} { r l } & { \\Delta w \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V , } \\end{array} } \\end{array}", + "type": "interline_equation", + "image_path": "b345ca8e54f6043dc612b6ed55dee1eb6653c65dab9fc0c9be26f32cf3c5d0b9.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 157, + 405, + 454, + 419.0 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 157, + 419.0, + 454, + 433.0 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 157, + 433.0, + 454, + 447.0 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 450, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 127, + 462 + ], + "score": 1.0, + "content": "here", + "type": "text" + }, + { + "bbox": [ + 127, + 450, + 168, + 462 + ], + "score": 0.91, + "content": "\\eta \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 451, + 505, + 462 + ], + "score": 1.0, + "content": "is a weighting parameter that controls how much of each update we apply. In the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 460, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 153, + 473 + ], + "score": 1.0, + "content": "case where", + "type": "text" + }, + { + "bbox": [ + 154, + 462, + 180, + 473 + ], + "score": 0.91, + "content": "\\eta = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 460, + 457, + 473 + ], + "score": 1.0, + "content": "the above scheme reduces to entropy regularized policy gradient. If", + "type": "text" + }, + { + "bbox": [ + 457, + 461, + 484, + 473 + ], + "score": 0.92, + "content": "\\eta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 460, + 505, + 473 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "it becomes a variant of (batch) Q-learning with an architecture similar to the dueling architecture", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 287, + 496 + ], + "score": 1.0, + "content": "(Wang et al., 2016). Intermediate values of", + "type": "text" + }, + { + "bbox": [ + 287, + 485, + 294, + 495 + ], + "score": 0.79, + "content": "\\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "produce a hybrid between the two. Examining the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "update we see that two error terms are trading off. The first term encourages consistency with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "critic, and the second term encourages optimality over time. However, since we know that under", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 527 + ], + "score": 1.0, + "content": "standard policy gradient the Bellman residual will be small, then it follows that adding a term that", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 505, + 538 + ], + "score": 1.0, + "content": "reduces that error should not make much difference at the fixed point. That is, the updates should", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "be complementary, pointing in the same general direction, at least far away from a fixed point.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 548, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 506, + 562 + ], + "score": 1.0, + "content": "This update can also be interpreted as an actor-critic update where the critic is given by a weighted", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "combination of a standard critic and an optimizing critic. Yet another interpretation of the update", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "is a combination of expected-SARSA and Q-learning, where the Q-values are parameterized as the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 581, + 313, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 313, + 595 + ], + "score": 1.0, + "content": "sum of an advantage function and a value function.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 450, + 506, + 595 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 260, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 262, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 262, + 618 + ], + "score": 1.0, + "content": "4.2 PRACTICAL IMPLEMENTATION", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 626, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 389, + 640 + ], + "score": 1.0, + "content": "The updates presented in (14) are batch updates, with an exact critic", + "type": "text" + }, + { + "bbox": [ + 390, + 627, + 404, + 639 + ], + "score": 0.89, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 626, + 506, + 640 + ], + "score": 1.0, + "content": ". In practice we want to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "score": 1.0, + "content": "run this scheme online, with an estimate of the critic, where we don’t necessarily apply the policy", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 444, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 444, + 662 + ], + "score": 1.0, + "content": "gradient update at the same time or from same data source as the Q-learning update.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 626, + 506, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "Our proposal scheme is as follows. One or more agents interact with an environment, encountering", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "states and rewards and performing on-policy updates of (shared) parameters using an actor-critic", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "algorithm where both the policy and the critic are being updated online. Each time an agent receives", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "new data from the environment it writes it to a shared replay memory buffer. Periodically a separate", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "learner process samples from the replay buffer and performs a step of Q-learning on the parameters", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "of the policy using (13). This scheme has several advantages. The critic can accumulate the Monte", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 665, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 159, + 88, + 448, + 233 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 159, + 88, + 448, + 233 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 88, + 448, + 233 + ], + "spans": [ + { + "bbox": [ + 159, + 88, + 448, + 233 + ], + "score": 0.968, + "type": "image", + "image_path": "60dbc9368380e17724e2be00298c93faa9fcae8bd176f729054dbc954cf8e87e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 159, + 88, + 448, + 136.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 159, + 136.33333333333334, + 448, + 184.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 159, + 184.66666666666669, + 448, + 233.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 236, + 242, + 371, + 254 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 236, + 241, + 372, + 255 + ], + "spans": [ + { + "bbox": [ + 236, + 241, + 372, + 255 + ], + "score": 1.0, + "content": "Figure 1: Grid world experiment.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "Carlo return over many time periods, allowing us to spread the influence of a reward received in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 289, + 504, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 504, + 302 + ], + "score": 1.0, + "content": "future backwards in time. Furthermore, the replay buffer can be used to store and replay ‘important’", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "past experiences by prioritizing those samples (Schaul et al., 2015). The use of the replay buffer can", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "score": 1.0, + "content": "help to reduce problems associated with correlated training data, as generated by an agent explor-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 322, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 506, + 335 + ], + "score": 1.0, + "content": "ing an environment where the states are likely to be similar from one time step to the next. Also", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "score": 1.0, + "content": "the use of replay can act as a kind of regularizer, preventing the policy from moving too far from", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "satisfying the Bellman equation, thereby improving stability, in a similar sense to that of a policy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "‘trust-region’ (Schulman et al., 2015). Moreover, by batching up replay samples to update the net-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "work we can leverage GPUs to perform the updates quickly, this is in comparison to pure policy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 377, + 437, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 437, + 390 + ], + "score": 1.0, + "content": "gradient techniques which are generally implemented on CPU (Mnih et al., 2016).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "score": 1.0, + "content": "Since we perform Q-learning using samples from a replay buffer that were generated by a old policy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "we are performing (slightly) off-policy learning. However, Q-learning is known to converge to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "optimal Q-values in the off-policy tabular case (under certain conditions) (Sutton & Barto, 1998),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "and has shown good performance off-policy in the function approximation case (Mnih et al., 2013).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 232, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 234, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 234, + 463 + ], + "score": 1.0, + "content": "4.3 MODIFIED FIXED POINT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "The PGQL updates in equation (14) have modified the fixed point of the algorithm, so the analysis", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 482, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 118, + 496 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 483, + 128, + 494 + ], + "score": 0.65, + "content": "\\ S 3", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 482, + 505, + 496 + ], + "score": 1.0, + "content": "is no longer valid. Considering the tabular case once again, it is still the case that the policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 493, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 175, + 507 + ], + "score": 0.92, + "content": "\\pi \\propto \\exp ( \\tilde { Q } ^ { \\pi } / \\bar { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 495, + 245, + 508 + ], + "score": 1.0, + "content": "as before, where", + "type": "text" + }, + { + "bbox": [ + 245, + 493, + 259, + 507 + ], + "score": 0.91, + "content": "{ \\tilde { Q } } ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "is defined by (12), however where previously the fixed point", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 507, + 457, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 141, + 521 + ], + "score": 1.0, + "content": "satisfied", + "type": "text" + }, + { + "bbox": [ + 142, + 507, + 182, + 519 + ], + "score": 0.91, + "content": "\\tilde { Q } ^ { \\pi } = Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 507, + 207, + 521 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 207, + 508, + 221, + 519 + ], + "score": 0.9, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 507, + 391, + 521 + ], + "score": 1.0, + "content": "corresponding to the Q-values induced by", + "type": "text" + }, + { + "bbox": [ + 392, + 510, + 399, + 518 + ], + "score": 0.78, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 507, + 457, + 521 + ], + "score": 1.0, + "content": ", now we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 522, + 363, + 537 + ], + "lines": [ + { + "bbox": [ + 245, + 522, + 363, + 537 + ], + "spans": [ + { + "bbox": [ + 245, + 522, + 363, + 537 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) Q ^ { \\pi } + \\eta T ^ { \\star } \\tilde { Q } ^ { \\pi } , } \\end{array}", + "type": "interline_equation", + "image_path": "4abc4c43bfe622748b501f6e7d6dfac73f7efca681ab4ddd9a46ecae8232f526.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 245, + 522, + 363, + 537 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 103, + 537, + 509, + 558 + ], + "spans": [ + { + "bbox": [ + 103, + 537, + 181, + 558 + ], + "score": 1.0, + "content": "Or equivalently, if", + "type": "text" + }, + { + "bbox": [ + 181, + 542, + 206, + 553 + ], + "score": 0.9, + "content": "\\eta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 537, + 245, + 558 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 245, + 540, + 381, + 555 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) \\sum _ { k = 0 } ^ { \\infty } \\eta ^ { k } ( \\mathcal { T } ^ { \\star } ) ^ { k } Q ^ { \\pi } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 537, + 509, + 558 + ], + "score": 1.0, + "content": ". In the appendix we show that", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 179, + 567 + ], + "score": 0.92, + "content": "\\lVert \\tilde { Q } ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 554, + 216, + 568 + ], + "score": 1.0, + "content": "and that", + "type": "text" + }, + { + "bbox": [ + 216, + 555, + 301, + 567 + ], + "score": 0.91, + "content": "\\lVert \\mathcal { T } ^ { \\star } Q ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 554, + 368, + 568 + ], + "score": 1.0, + "content": "with decreasing", + "type": "text" + }, + { + "bbox": [ + 369, + 557, + 376, + 565 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "in the tabular case. That is, for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 130, + 578 + ], + "score": 1.0, + "content": "small", + "type": "text" + }, + { + "bbox": [ + 131, + 568, + 138, + 576 + ], + "score": 0.8, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 566, + 187, + 578 + ], + "score": 1.0, + "content": "the induced", + "type": "text" + }, + { + "bbox": [ + 187, + 567, + 196, + 577 + ], + "score": 0.38, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 566, + 255, + 578 + ], + "score": 1.0, + "content": "-values and the", + "type": "text" + }, + { + "bbox": [ + 256, + 567, + 264, + 577 + ], + "score": 0.41, + "content": "\\mathbf { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "-values estimated from the policy are close, and we still have", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 243, + 589 + ], + "score": 1.0, + "content": "the guarantee that in the limit the", + "type": "text" + }, + { + "bbox": [ + 243, + 577, + 252, + 588 + ], + "score": 0.26, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "-values are optimal. In other words, we have not perturbed the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 587, + 336, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 336, + 600 + ], + "score": 1.0, + "content": "policy very much by the addition of the auxiliary update.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 108, + 615, + 265, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 267, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 267, + 629 + ], + "score": 1.0, + "content": "5 NUMERICAL EXPERIMENTS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 107, + 639, + 189, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 190, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 190, + 653 + ], + "score": 1.0, + "content": "5.1 GRID WORLD", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "In this section we discuss the results of running PGQL on a toy 4 by 6 grid world, as shown in Figure", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 309, + 682 + ], + "score": 1.0, + "content": "1a. The agent always begins in the square marked", + "type": "text" + }, + { + "bbox": [ + 309, + 671, + 322, + 681 + ], + "score": 0.68, + "content": "\\mathbf { \\partial } ^ { \\bullet } \\mathbf { S } ^ { \\bullet }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "and the episode continues until it reaches the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "square marked ‘T’, upon which it receives a reward of 1. All other times it receives no reward. For", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 693, + 474, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 309, + 705 + ], + "score": 1.0, + "content": "this experiment we chose regularization parameter", + "type": "text" + }, + { + "bbox": [ + 310, + 693, + 353, + 703 + ], + "score": 0.88, + "content": "\\alpha = 0 . 0 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 693, + 433, + 705 + ], + "score": 1.0, + "content": "and discount factor", + "type": "text" + }, + { + "bbox": [ + 433, + 693, + 471, + 704 + ], + "score": 0.9, + "content": "\\gamma = 0 . 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 693, + 474, + 705 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Figure 1b shows the performance traces of three different agents learning in the grid world, running", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 719, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 504, + 734 + ], + "score": 1.0, + "content": "from the same initial random seed. The lines show the true expected performance of the policy", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + } + ], + "page_idx": 7, + "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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 159, + 88, + 448, + 233 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 159, + 88, + 448, + 233 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 159, + 88, + 448, + 233 + ], + "spans": [ + { + "bbox": [ + 159, + 88, + 448, + 233 + ], + "score": 0.968, + "type": "image", + "image_path": "60dbc9368380e17724e2be00298c93faa9fcae8bd176f729054dbc954cf8e87e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 159, + 88, + 448, + 136.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 159, + 136.33333333333334, + 448, + 184.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 159, + 184.66666666666669, + 448, + 233.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 236, + 242, + 371, + 254 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 236, + 241, + 372, + 255 + ], + "spans": [ + { + "bbox": [ + 236, + 241, + 372, + 255 + ], + "score": 1.0, + "content": "Figure 1: Grid world experiment.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 277, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 290 + ], + "score": 1.0, + "content": "Carlo return over many time periods, allowing us to spread the influence of a reward received in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 289, + 504, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 504, + 302 + ], + "score": 1.0, + "content": "future backwards in time. Furthermore, the replay buffer can be used to store and replay ‘important’", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "past experiences by prioritizing those samples (Schaul et al., 2015). The use of the replay buffer can", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 312, + 504, + 324 + ], + "score": 1.0, + "content": "help to reduce problems associated with correlated training data, as generated by an agent explor-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 322, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 506, + 335 + ], + "score": 1.0, + "content": "ing an environment where the states are likely to be similar from one time step to the next. Also", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 505, + 346 + ], + "score": 1.0, + "content": "the use of replay can act as a kind of regularizer, preventing the policy from moving too far from", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 358 + ], + "score": 1.0, + "content": "satisfying the Bellman equation, thereby improving stability, in a similar sense to that of a policy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "‘trust-region’ (Schulman et al., 2015). Moreover, by batching up replay samples to update the net-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "score": 1.0, + "content": "work we can leverage GPUs to perform the updates quickly, this is in comparison to pure policy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 377, + 437, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 437, + 390 + ], + "score": 1.0, + "content": "gradient techniques which are generally implemented on CPU (Mnih et al., 2016).", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 278, + 506, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 394, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 505, + 407 + ], + "score": 1.0, + "content": "Since we perform Q-learning using samples from a replay buffer that were generated by a old policy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 405, + 506, + 418 + ], + "score": 1.0, + "content": "we are performing (slightly) off-policy learning. However, Q-learning is known to converge to the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "optimal Q-values in the off-policy tabular case (under certain conditions) (Sutton & Barto, 1998),", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 505, + 439 + ], + "score": 1.0, + "content": "and has shown good performance off-policy in the function approximation case (Mnih et al., 2013).", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 393, + 506, + 439 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 451, + 232, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 234, + 463 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 234, + 463 + ], + "score": 1.0, + "content": "4.3 MODIFIED FIXED POINT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 505, + 484 + ], + "score": 1.0, + "content": "The PGQL updates in equation (14) have modified the fixed point of the algorithm, so the analysis", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 482, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 118, + 496 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 483, + 128, + 494 + ], + "score": 0.65, + "content": "\\ S 3", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 482, + 505, + 496 + ], + "score": 1.0, + "content": "is no longer valid. Considering the tabular case once again, it is still the case that the policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 493, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 175, + 507 + ], + "score": 0.92, + "content": "\\pi \\propto \\exp ( \\tilde { Q } ^ { \\pi } / \\bar { \\alpha } )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 495, + 245, + 508 + ], + "score": 1.0, + "content": "as before, where", + "type": "text" + }, + { + "bbox": [ + 245, + 493, + 259, + 507 + ], + "score": 0.91, + "content": "{ \\tilde { Q } } ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 495, + 506, + 508 + ], + "score": 1.0, + "content": "is defined by (12), however where previously the fixed point", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 507, + 457, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 141, + 521 + ], + "score": 1.0, + "content": "satisfied", + "type": "text" + }, + { + "bbox": [ + 142, + 507, + 182, + 519 + ], + "score": 0.91, + "content": "\\tilde { Q } ^ { \\pi } = Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 507, + 207, + 521 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 207, + 508, + 221, + 519 + ], + "score": 0.9, + "content": "Q ^ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 507, + 391, + 521 + ], + "score": 1.0, + "content": "corresponding to the Q-values induced by", + "type": "text" + }, + { + "bbox": [ + 392, + 510, + 399, + 518 + ], + "score": 0.78, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 507, + 457, + 521 + ], + "score": 1.0, + "content": ", now we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 472, + 506, + 521 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 522, + 363, + 537 + ], + "lines": [ + { + "bbox": [ + 245, + 522, + 363, + 537 + ], + "spans": [ + { + "bbox": [ + 245, + 522, + 363, + 537 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) Q ^ { \\pi } + \\eta T ^ { \\star } \\tilde { Q } ^ { \\pi } , } \\end{array}", + "type": "interline_equation", + "image_path": "4abc4c43bfe622748b501f6e7d6dfac73f7efca681ab4ddd9a46ecae8232f526.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 245, + 522, + 363, + 537 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 540, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 103, + 537, + 509, + 558 + ], + "spans": [ + { + "bbox": [ + 103, + 537, + 181, + 558 + ], + "score": 1.0, + "content": "Or equivalently, if", + "type": "text" + }, + { + "bbox": [ + 181, + 542, + 206, + 553 + ], + "score": 0.9, + "content": "\\eta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 537, + 245, + 558 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 245, + 540, + 381, + 555 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) \\sum _ { k = 0 } ^ { \\infty } \\eta ^ { k } ( \\mathcal { T } ^ { \\star } ) ^ { k } Q ^ { \\pi } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 537, + 509, + 558 + ], + "score": 1.0, + "content": ". In the appendix we show that", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 107, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 179, + 567 + ], + "score": 0.92, + "content": "\\lVert \\tilde { Q } ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 554, + 216, + 568 + ], + "score": 1.0, + "content": "and that", + "type": "text" + }, + { + "bbox": [ + 216, + 555, + 301, + 567 + ], + "score": 0.91, + "content": "\\lVert \\mathcal { T } ^ { \\star } Q ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 554, + 368, + 568 + ], + "score": 1.0, + "content": "with decreasing", + "type": "text" + }, + { + "bbox": [ + 369, + 557, + 376, + 565 + ], + "score": 0.76, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 554, + 505, + 568 + ], + "score": 1.0, + "content": "in the tabular case. That is, for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 130, + 578 + ], + "score": 1.0, + "content": "small", + "type": "text" + }, + { + "bbox": [ + 131, + 568, + 138, + 576 + ], + "score": 0.8, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 566, + 187, + 578 + ], + "score": 1.0, + "content": "the induced", + "type": "text" + }, + { + "bbox": [ + 187, + 567, + 196, + 577 + ], + "score": 0.38, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 566, + 255, + 578 + ], + "score": 1.0, + "content": "-values and the", + "type": "text" + }, + { + "bbox": [ + 256, + 567, + 264, + 577 + ], + "score": 0.41, + "content": "\\mathbf { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "-values estimated from the policy are close, and we still have", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 243, + 589 + ], + "score": 1.0, + "content": "the guarantee that in the limit the", + "type": "text" + }, + { + "bbox": [ + 243, + 577, + 252, + 588 + ], + "score": 0.26, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "-values are optimal. In other words, we have not perturbed the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 587, + 336, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 336, + 600 + ], + "score": 1.0, + "content": "policy very much by the addition of the auxiliary update.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 103, + 537, + 509, + 600 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 615, + 265, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 267, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 267, + 629 + ], + "score": 1.0, + "content": "5 NUMERICAL EXPERIMENTS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 107, + 639, + 189, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 190, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 190, + 653 + ], + "score": 1.0, + "content": "5.1 GRID WORLD", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "In this section we discuss the results of running PGQL on a toy 4 by 6 grid world, as shown in Figure", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 671, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 309, + 682 + ], + "score": 1.0, + "content": "1a. The agent always begins in the square marked", + "type": "text" + }, + { + "bbox": [ + 309, + 671, + 322, + 681 + ], + "score": 0.68, + "content": "\\mathbf { \\partial } ^ { \\bullet } \\mathbf { S } ^ { \\bullet }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 671, + 505, + 682 + ], + "score": 1.0, + "content": "and the episode continues until it reaches the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "square marked ‘T’, upon which it receives a reward of 1. All other times it receives no reward. For", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 693, + 474, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 309, + 705 + ], + "score": 1.0, + "content": "this experiment we chose regularization parameter", + "type": "text" + }, + { + "bbox": [ + 310, + 693, + 353, + 703 + ], + "score": 0.88, + "content": "\\alpha = 0 . 0 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 693, + 433, + 705 + ], + "score": 1.0, + "content": "and discount factor", + "type": "text" + }, + { + "bbox": [ + 433, + 693, + 471, + 704 + ], + "score": 0.9, + "content": "\\gamma = 0 . 9 5", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 693, + 474, + 705 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 659, + 505, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "Figure 1b shows the performance traces of three different agents learning in the grid world, running", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 719, + 504, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 504, + 734 + ], + "score": 1.0, + "content": "from the same initial random seed. The lines show the true expected performance of the policy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "from the start state, as calculated by value iteration after each update. The blue-line is standard", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "TD-actor-critic (Konda & Tsitsiklis, 2003), where we maintain an estimate of the value function and", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 263, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 278 + ], + "score": 1.0, + "content": "use that to generate an estimate of the Q-values for use as the critic. The green line is Q-learning", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 274, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 289 + ], + "score": 1.0, + "content": "where at each step an update is performed using data drawn from a replay buffer of prior experience", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "and where the Q-values are parameterized as in equation (12). The policy is a softmax over the", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 252, + 310 + ], + "score": 1.0, + "content": "Q-value estimates with temperature", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 252, + 299, + 259, + 307 + ], + "score": 0.64, + "content": "\\alpha", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 260, + 297, + 505, + 310 + ], + "score": 1.0, + "content": ". The red line is PGQL, which at each step first performs the", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 308, + 390, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 390, + 321 + ], + "score": 1.0, + "content": "TD-actor-critic update, then performs the Q-learning update as in (14).", + "type": "text", + "cross_page": true + } + ], + "index": 15 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 708, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 218, + 82, + 386, + 193 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 218, + 82, + 386, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 218, + 82, + 386, + 193 + ], + "spans": [ + { + "bbox": [ + 218, + 82, + 386, + 193 + ], + "score": 0.97, + "type": "image", + "image_path": "0c1e17e8c806eefd3b1a2e103e5cc5f50b177953f93920598bd008882d3512cc.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 82, + 386, + 95.875 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 218, + 95.875, + 386, + 109.75 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 218, + 109.75, + 386, + 123.625 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 218, + 123.625, + 386, + 137.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 218, + 137.5, + 386, + 151.375 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 218, + 151.375, + 386, + 165.25 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 218, + 165.25, + 386, + 179.125 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 218, + 179.125, + 386, + 193.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 223, + 201, + 384, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 222, + 200, + 385, + 216 + ], + "spans": [ + { + "bbox": [ + 222, + 200, + 385, + 216 + ], + "score": 1.0, + "content": "Figure 2: PGQL network augmentation.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 5.75 + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "from the start state, as calculated by value iteration after each update. The blue-line is standard", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "TD-actor-critic (Konda & Tsitsiklis, 2003), where we maintain an estimate of the value function and", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 263, + 505, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 278 + ], + "score": 1.0, + "content": "use that to generate an estimate of the Q-values for use as the critic. The green line is Q-learning", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 274, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 506, + 289 + ], + "score": 1.0, + "content": "where at each step an update is performed using data drawn from a replay buffer of prior experience", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "and where the Q-values are parameterized as in equation (12). The policy is a softmax over the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 252, + 310 + ], + "score": 1.0, + "content": "Q-value estimates with temperature", + "type": "text" + }, + { + "bbox": [ + 252, + 299, + 259, + 307 + ], + "score": 0.64, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 297, + 505, + 310 + ], + "score": 1.0, + "content": ". The red line is PGQL, which at each step first performs the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 308, + 390, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 390, + 321 + ], + "score": 1.0, + "content": "TD-actor-critic update, then performs the Q-learning update as in (14).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "The grid world was totally deterministic, so the step size could be large and was chosen to be 1.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "A step-size any larger than this made the pure actor-critic agent fail to learn, but both PGQL and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "score": 1.0, + "content": "Q-learning could handle some increase in the step-size, possibly due to the stabilizing effect of using", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 356, + 138, + 373 + ], + "spans": [ + { + "bbox": [ + 104, + 356, + 138, + 373 + ], + "score": 1.0, + "content": "replay.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 393, + 388 + ], + "score": 1.0, + "content": "It is clear that PGQL outperforms the other two. At any point along the", + "type": "text" + }, + { + "bbox": [ + 394, + 377, + 400, + 385 + ], + "score": 0.29, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "-axis the agents have seen", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "the same amount of data, which would indicate that PGQL is more data efficient than either of the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 397, + 421, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 421, + 409 + ], + "score": 1.0, + "content": "vanilla methods since it has the highest performance at practically every point.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 107, + 424, + 158, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 160, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 160, + 437 + ], + "score": 1.0, + "content": "5.2 ATARI", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "We tested our algorithm on the full suite of Atari benchmarks (Bellemare et al., 2012), using a neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "network to parameterize the policy. In figure 2 we show how a policy network can be augmented", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "with a parameterless additional layer which outputs the Q-value estimate. With the exception of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "score": 1.0, + "content": "the extra layer, the architecture and parameters were chosen to exactly match the asynchronous", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 488, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 503 + ], + "score": 1.0, + "content": "advantage actor-critic (A3C) algorithm presented in Mnih et al. (2016), which in turn reused many", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "of the settings from Mnih et al. (2015). Specifically we used the exact same learning rate, number of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "workers, entropy penalty, bootstrap horizon, and network architecture. This allows a fair comparison", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "score": 1.0, + "content": "between A3C and PGQL, since the only difference is the addition of the Q-learning step. Our", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "technique augmented A3C with the following change: After each actor-learner has accumulated the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "gradient for the policy update, it performs a single step of Q-learning from replay data as described", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "in equation (13), where the minibatch size was 32 and the Q-learning learning rate was chosen to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 564, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 104, + 564, + 497, + 580 + ], + "score": 1.0, + "content": "be 0.5 times the actor-critic learning rate (we mention learning rate ratios rather than choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 568, + 504, + 578 + ], + "score": 0.75, + "content": "\\eta", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "in (14) because the updates happen at different frequencies and from different data sources). Each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 339, + 600 + ], + "score": 1.0, + "content": "actor-learner thread maintained a replay buffer of the last", + "type": "text" + }, + { + "bbox": [ + 339, + 588, + 361, + 599 + ], + "score": 0.87, + "content": "1 0 0 k", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "transitions seen by that thread. We", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 599, + 487, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 487, + 612 + ], + "score": 1.0, + "content": "ran the learning for 50 million agent steps (200 million Atari frames), as in (Mnih et al., 2016).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "In the results we compare against both A3C and a variant of asynchronous deep Q-learning. The", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "changes we made to Q-learning are to make it similar to our method, with some tuning of the hyper-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "parameters for performance. We use the exact same network, the exploration policy is a softmax", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "over the Q-values with a temperature of 0.1, and the Q-values are parameterized as in equation (12)", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 379, + 672 + ], + "score": 1.0, + "content": "(i.e., similar to the dueling architecture (Wang et al., 2016)), where", + "type": "text" + }, + { + "bbox": [ + 379, + 660, + 414, + 671 + ], + "score": 0.89, + "content": "\\alpha = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 660, + 437, + 672 + ], + "score": 1.0, + "content": ". The", + "type": "text" + }, + { + "bbox": [ + 437, + 660, + 446, + 672 + ], + "score": 0.3, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "-value updates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "are performed every 4 steps with a minibatch of 32 (roughly 5 times more frequently than PGQL).", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 681, + 351, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 351, + 695 + ], + "score": 1.0, + "content": "For each method, all games used identical hyper-parameters.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "The results across all games are given in table 3 in the appendix. All scores have been normal-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "ized by subtracting the average score achieved by an agent that takes actions uniformly at random.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Each game was tested 5 times per method with the same hyper-parameters but with different ran-", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + } + ], + "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 2017", + "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": [ + 218, + 82, + 386, + 193 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 218, + 82, + 386, + 193 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 218, + 82, + 386, + 193 + ], + "spans": [ + { + "bbox": [ + 218, + 82, + 386, + 193 + ], + "score": 0.97, + "type": "image", + "image_path": "0c1e17e8c806eefd3b1a2e103e5cc5f50b177953f93920598bd008882d3512cc.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 82, + 386, + 95.875 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 218, + 95.875, + 386, + 109.75 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 218, + 109.75, + 386, + 123.625 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 218, + 123.625, + 386, + 137.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 218, + 137.5, + 386, + 151.375 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 218, + 151.375, + 386, + 165.25 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 218, + 165.25, + 386, + 179.125 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 218, + 179.125, + 386, + 193.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 223, + 201, + 384, + 213 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 222, + 200, + 385, + 216 + ], + "spans": [ + { + "bbox": [ + 222, + 200, + 385, + 216 + ], + "score": 1.0, + "content": "Figure 2: PGQL network augmentation.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + } + ], + "index": 5.75 + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 319 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 105, + 242, + 506, + 321 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 337 + ], + "score": 1.0, + "content": "The grid world was totally deterministic, so the step size could be large and was chosen to be 1.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "A step-size any larger than this made the pure actor-critic agent fail to learn, but both PGQL and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 505, + 360 + ], + "score": 1.0, + "content": "Q-learning could handle some increase in the step-size, possibly due to the stabilizing effect of using", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 356, + 138, + 373 + ], + "spans": [ + { + "bbox": [ + 104, + 356, + 138, + 373 + ], + "score": 1.0, + "content": "replay.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 324, + 506, + 373 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 393, + 388 + ], + "score": 1.0, + "content": "It is clear that PGQL outperforms the other two. At any point along the", + "type": "text" + }, + { + "bbox": [ + 394, + 377, + 400, + 385 + ], + "score": 0.29, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 374, + 505, + 388 + ], + "score": 1.0, + "content": "-axis the agents have seen", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "the same amount of data, which would indicate that PGQL is more data efficient than either of the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 397, + 421, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 421, + 409 + ], + "score": 1.0, + "content": "vanilla methods since it has the highest performance at practically every point.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 374, + 505, + 409 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 424, + 158, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 160, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 160, + 437 + ], + "score": 1.0, + "content": "5.2 ATARI", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 446, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "We tested our algorithm on the full suite of Atari benchmarks (Bellemare et al., 2012), using a neural", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 505, + 469 + ], + "score": 1.0, + "content": "network to parameterize the policy. In figure 2 we show how a policy network can be augmented", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "with a parameterless additional layer which outputs the Q-value estimate. With the exception of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 505, + 492 + ], + "score": 1.0, + "content": "the extra layer, the architecture and parameters were chosen to exactly match the asynchronous", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 488, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 503 + ], + "score": 1.0, + "content": "advantage actor-critic (A3C) algorithm presented in Mnih et al. (2016), which in turn reused many", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 513 + ], + "score": 1.0, + "content": "of the settings from Mnih et al. (2015). Specifically we used the exact same learning rate, number of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "workers, entropy penalty, bootstrap horizon, and network architecture. This allows a fair comparison", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 523, + 506, + 535 + ], + "score": 1.0, + "content": "between A3C and PGQL, since the only difference is the addition of the Q-learning step. Our", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 546 + ], + "score": 1.0, + "content": "technique augmented A3C with the following change: After each actor-learner has accumulated the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 506, + 557 + ], + "score": 1.0, + "content": "gradient for the policy update, it performs a single step of Q-learning from replay data as described", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "in equation (13), where the minibatch size was 32 and the Q-learning learning rate was chosen to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 564, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 104, + 564, + 497, + 580 + ], + "score": 1.0, + "content": "be 0.5 times the actor-critic learning rate (we mention learning rate ratios rather than choice of", + "type": "text" + }, + { + "bbox": [ + 497, + 568, + 504, + 578 + ], + "score": 0.75, + "content": "\\eta", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 589 + ], + "score": 1.0, + "content": "in (14) because the updates happen at different frequencies and from different data sources). Each", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 588, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 339, + 600 + ], + "score": 1.0, + "content": "actor-learner thread maintained a replay buffer of the last", + "type": "text" + }, + { + "bbox": [ + 339, + 588, + 361, + 599 + ], + "score": 0.87, + "content": "1 0 0 k", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 588, + 506, + 600 + ], + "score": 1.0, + "content": "transitions seen by that thread. We", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 599, + 487, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 487, + 612 + ], + "score": 1.0, + "content": "ran the learning for 50 million agent steps (200 million Atari frames), as in (Mnih et al., 2016).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 446, + 506, + 612 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 616, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 506, + 629 + ], + "score": 1.0, + "content": "In the results we compare against both A3C and a variant of asynchronous deep Q-learning. The", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "changes we made to Q-learning are to make it similar to our method, with some tuning of the hyper-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "parameters for performance. We use the exact same network, the exploration policy is a softmax", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "over the Q-values with a temperature of 0.1, and the Q-values are parameterized as in equation (12)", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 379, + 672 + ], + "score": 1.0, + "content": "(i.e., similar to the dueling architecture (Wang et al., 2016)), where", + "type": "text" + }, + { + "bbox": [ + 379, + 660, + 414, + 671 + ], + "score": 0.89, + "content": "\\alpha = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 660, + 437, + 672 + ], + "score": 1.0, + "content": ". The", + "type": "text" + }, + { + "bbox": [ + 437, + 660, + 446, + 672 + ], + "score": 0.3, + "content": "\\mathrm { Q }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "-value updates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 505, + 684 + ], + "score": 1.0, + "content": "are performed every 4 steps with a minibatch of 32 (roughly 5 times more frequently than PGQL).", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 681, + 351, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 351, + 695 + ], + "score": 1.0, + "content": "For each method, all games used identical hyper-parameters.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 615, + 506, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "The results across all games are given in table 3 in the appendix. All scores have been normal-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "ized by subtracting the average score achieved by an agent that takes actions uniformly at random.", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "Each game was tested 5 times per method with the same hyper-parameters but with different ran-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "dom seeds. The scores presented correspond to the best score obtained by any run from a random", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "start evaluation condition (Mnih et al., 2016). Overall, PGQL performed best in 34 games, A3C", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "performed best in 7 games, and Q-learning was best in 10 games. In 6 games two or more methods", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "tied. In tables 1 and 2 we give the mean and median normalized scores as percentage of an expert", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "human normalized score across all games for each tested algorithm from random and human-start", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "conditions respectively. In a human-start condition the agent takes over control of the game from", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 147, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 104, + 147, + 506, + 162 + ], + "score": 1.0, + "content": "randomly selected human-play starting points, which generally leads to lower performance since", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "the agent may not have found itself in that state during training. In both cases, PGQL has both the", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 501, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 334, + 182 + ], + "score": 1.0, + "content": "highest mean and median, and the median score exceeds", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 334, + 171, + 358, + 181 + ], + "score": 0.87, + "content": "100 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 358, + 171, + 501, + 182 + ], + "score": 1.0, + "content": ", the human performance threshold.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 698, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "dom seeds. The scores presented correspond to the best score obtained by any run from a random", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "start evaluation condition (Mnih et al., 2016). Overall, PGQL performed best in 34 games, A3C", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "performed best in 7 games, and Q-learning was best in 10 games. In 6 games two or more methods", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "tied. In tables 1 and 2 we give the mean and median normalized scores as percentage of an expert", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "human normalized score across all games for each tested algorithm from random and human-start", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "conditions respectively. In a human-start condition the agent takes over control of the game from", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 147, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 104, + 147, + 506, + 162 + ], + "score": 1.0, + "content": "randomly selected human-play starting points, which generally leads to lower performance since", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "the agent may not have found itself in that state during training. In both cases, PGQL has both the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 501, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 334, + 182 + ], + "score": 1.0, + "content": "highest mean and median, and the median score exceeds", + "type": "text" + }, + { + "bbox": [ + 334, + 171, + 358, + 181 + ], + "score": 0.87, + "content": "100 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 171, + 501, + 182 + ], + "score": 1.0, + "content": ", the human performance threshold.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "It is worth noting that PGQL was the worst performer in only one game, in cases where it was", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "not the outright winner it was generally somewhere in between the performance of the other two", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "algorithms. Figure 3 shows some sample traces of games where PGQL was the best performer. In", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "these cases PGQL has far better data efficiency than the other methods. In figure 4 we show some", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "of the games where PGQL under-performed. In practically every case where PGQL did not perform", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "well it had better data efficiency early on in the learning, but performance saturated or collapsed.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "We hypothesize that in these cases the policy has reached a local optimum, or over-fit to the early", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 389, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 389, + 277 + ], + "score": 1.0, + "content": "data, and might perform better were the hyper-parameters to be tuned.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5 + }, + { + "type": "table", + "bbox": [ + 218, + 289, + 392, + 324 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 218, + 289, + 392, + 324 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 218, + 289, + 392, + 324 + ], + "spans": [ + { + "bbox": [ + 218, + 289, + 392, + 324 + ], + "score": 0.964, + "html": "
A3CQ-learningPGQL
Mean636.8756.3877.2
Median107.358.9145.6
", + "type": "table", + "image_path": "9b1b13e6c877947094e474d6c824c611559f2e92b9da3d64581156b53df44d0e.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 289, + 392, + 306.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 218, + 306.5, + 392, + 324.0 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 337, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 351 + ], + "score": 1.0, + "content": "Table 1: Mean and median normalized scores for the Atari suite from random starts, as a percentage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 348, + 220, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 220, + 360 + ], + "score": 1.0, + "content": "of human normalized score.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "table", + "bbox": [ + 218, + 383, + 392, + 419 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 218, + 383, + 392, + 419 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 218, + 383, + 392, + 419 + ], + "spans": [ + { + "bbox": [ + 218, + 383, + 392, + 419 + ], + "score": 0.966, + "html": "
A3CQ-learningPGQL
Mean266.6246.6416.7
Median58.330.5103.3
", + "type": "table", + "image_path": "7819070b3d0344e3cd5ce6ab833f4b0d319bb1cf0d0e65c1351d216567ef26c0.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 383, + 392, + 401.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 218, + 401.0, + 392, + 419.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 105, + 432, + 504, + 455 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 430, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 446 + ], + "score": 1.0, + "content": "Table 2: Mean and median normalized scores for the Atari suite from human starts, as a percentage", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 220, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 220, + 455 + ], + "score": 1.0, + "content": "of human normalized score.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + } + ], + "index": 22.5 + }, + { + "type": "image", + "bbox": [ + 145, + 482, + 452, + 699 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 482, + 452, + 699 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 482, + 452, + 699 + ], + "spans": [ + { + "bbox": [ + 145, + 482, + 452, + 699 + ], + "score": 0.971, + "type": "image", + "image_path": "3da9915f0a0cf23f3d913c2a8ab571f5e5141f16c16785449e05122d43a1a9d3.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 145, + 482, + 452, + 554.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 145, + 554.3333333333334, + 452, + 626.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 145, + 626.6666666666667, + 452, + 699.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 190, + 708, + 418, + 720 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 189, + 707, + 418, + 721 + ], + "spans": [ + { + "bbox": [ + 189, + 707, + 418, + 721 + ], + "score": 1.0, + "content": "Figure 3: Some Atari runs where PGQL performed well.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + } + ], + "index": 27.0 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 182 + ], + "lines": [], + "index": 4, + "bbox_fs": [ + 104, + 83, + 506, + 182 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 187, + 505, + 276 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "It is worth noting that PGQL was the worst performer in only one game, in cases where it was", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "not the outright winner it was generally somewhere in between the performance of the other two", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "algorithms. Figure 3 shows some sample traces of games where PGQL was the best performer. In", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "these cases PGQL has far better data efficiency than the other methods. In figure 4 we show some", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "of the games where PGQL under-performed. In practically every case where PGQL did not perform", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "well it had better data efficiency early on in the learning, but performance saturated or collapsed.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "We hypothesize that in these cases the policy has reached a local optimum, or over-fit to the early", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 389, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 389, + 277 + ], + "score": 1.0, + "content": "data, and might perform better were the hyper-parameters to be tuned.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 187, + 506, + 277 + ] + }, + { + "type": "table", + "bbox": [ + 218, + 289, + 392, + 324 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 218, + 289, + 392, + 324 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 218, + 289, + 392, + 324 + ], + "spans": [ + { + "bbox": [ + 218, + 289, + 392, + 324 + ], + "score": 0.964, + "html": "
A3CQ-learningPGQL
Mean636.8756.3877.2
Median107.358.9145.6
", + "type": "table", + "image_path": "9b1b13e6c877947094e474d6c824c611559f2e92b9da3d64581156b53df44d0e.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 289, + 392, + 306.5 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 218, + 306.5, + 392, + 324.0 + ], + "spans": [], + "index": 18 + } + ] + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 337, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 335, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 351 + ], + "score": 1.0, + "content": "Table 1: Mean and median normalized scores for the Atari suite from random starts, as a percentage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 348, + 220, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 220, + 360 + ], + "score": 1.0, + "content": "of human normalized score.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 335, + 505, + 360 + ] + }, + { + "type": "table", + "bbox": [ + 218, + 383, + 392, + 419 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 218, + 383, + 392, + 419 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 218, + 383, + 392, + 419 + ], + "spans": [ + { + "bbox": [ + 218, + 383, + 392, + 419 + ], + "score": 0.966, + "html": "
A3CQ-learningPGQL
Mean266.6246.6416.7
Median58.330.5103.3
", + "type": "table", + "image_path": "7819070b3d0344e3cd5ce6ab833f4b0d319bb1cf0d0e65c1351d216567ef26c0.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 218, + 383, + 392, + 401.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 218, + 401.0, + 392, + 419.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 105, + 432, + 504, + 455 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 430, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 446 + ], + "score": 1.0, + "content": "Table 2: Mean and median normalized scores for the Atari suite from human starts, as a percentage", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 443, + 220, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 220, + 455 + ], + "score": 1.0, + "content": "of human normalized score.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + } + ], + "index": 22.5 + }, + { + "type": "image", + "bbox": [ + 145, + 482, + 452, + 699 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 145, + 482, + 452, + 699 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 482, + 452, + 699 + ], + "spans": [ + { + "bbox": [ + 145, + 482, + 452, + 699 + ], + "score": 0.971, + "type": "image", + "image_path": "3da9915f0a0cf23f3d913c2a8ab571f5e5141f16c16785449e05122d43a1a9d3.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 145, + 482, + 452, + 554.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 145, + 554.3333333333334, + 452, + 626.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 145, + 626.6666666666667, + 452, + 699.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 190, + 708, + 418, + 720 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 189, + 707, + 418, + 721 + ], + "spans": [ + { + "bbox": [ + 189, + 707, + 418, + 721 + ], + "score": 1.0, + "content": "Figure 3: Some Atari runs where PGQL performed well.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + } + ], + "index": 27.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 84, + 452, + 300 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 84, + 452, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 84, + 452, + 300 + ], + "spans": [ + { + "bbox": [ + 146, + 84, + 452, + 300 + ], + "score": 0.974, + "type": "image", + "image_path": "b3fd759a9cc8a345d3e3d9621f8f8b6c24cca20c40c9e706bcca7d1ae73da696.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 84, + 452, + 156.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 156.0, + 452, + 228.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 228.0, + 452, + 300.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 185, + 309, + 422, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 306, + 423, + 324 + ], + "spans": [ + { + "bbox": [ + 184, + 306, + 423, + 324 + ], + "score": 1.0, + "content": "Figure 4: Some Atari runs where PGQL performed poorly.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 108, + 340, + 201, + 353 + ], + "lines": [ + { + "bbox": [ + 104, + 338, + 203, + 356 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 203, + 356 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "We have made a connection between the fixed point of regularized policy gradient techniques and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "the Q-values of the resulting policy. For small regularization (the usual case) we have shown that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "score": 1.0, + "content": "the Bellman residual of the induced Q-values must be small. This leads us to consider adding", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 398, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 412 + ], + "score": 1.0, + "content": "an auxiliary update to the policy gradient which is related to the Bellman residual evaluated on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "a transformation of the policy. This update can be performed off-policy, using stored experience.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 420, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 434 + ], + "score": 1.0, + "content": "We call the resulting method ‘PGQL’, for policy gradient and Q-learning. Empirically, we observe", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "better data efficiency and stability of PGQL when compared to actor-critic or Q-learning alone. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "score": 1.0, + "content": "verified the performance of PGQL on a suite of Atari games, where we parameterize the policy using", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 453, + 462, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 462, + 467 + ], + "score": 1.0, + "content": "a neural network, and achieved performance exceeding that of both A3C and Q-learning.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 108, + 481, + 237, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 238, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 238, + 496 + ], + "score": 1.0, + "content": "7 ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "We thank Joseph Modayil for many comments and suggestions on the paper, and Hubert Soyer for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "help with performance evaluation. We would also like to thank the anonymous reviewers for their", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 528, + 198, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 198, + 538 + ], + "score": 1.0, + "content": "constructive feedback.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + } + ], + "page_idx": 10, + "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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 146, + 84, + 452, + 300 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 146, + 84, + 452, + 300 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 146, + 84, + 452, + 300 + ], + "spans": [ + { + "bbox": [ + 146, + 84, + 452, + 300 + ], + "score": 0.974, + "type": "image", + "image_path": "b3fd759a9cc8a345d3e3d9621f8f8b6c24cca20c40c9e706bcca7d1ae73da696.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 146, + 84, + 452, + 156.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 146, + 156.0, + 452, + 228.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 146, + 228.0, + 452, + 300.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 185, + 309, + 422, + 321 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 306, + 423, + 324 + ], + "spans": [ + { + "bbox": [ + 184, + 306, + 423, + 324 + ], + "score": 1.0, + "content": "Figure 4: Some Atari runs where PGQL performed poorly.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "title", + "bbox": [ + 108, + 340, + 201, + 353 + ], + "lines": [ + { + "bbox": [ + 104, + 338, + 203, + 356 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 203, + 356 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 366, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "We have made a connection between the fixed point of regularized policy gradient techniques and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "the Q-values of the resulting policy. For small regularization (the usual case) we have shown that", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "score": 1.0, + "content": "the Bellman residual of the induced Q-values must be small. This leads us to consider adding", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 398, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 505, + 412 + ], + "score": 1.0, + "content": "an auxiliary update to the policy gradient which is related to the Bellman residual evaluated on", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 410, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 104, + 410, + 505, + 423 + ], + "score": 1.0, + "content": "a transformation of the policy. This update can be performed off-policy, using stored experience.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 420, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 505, + 434 + ], + "score": 1.0, + "content": "We call the resulting method ‘PGQL’, for policy gradient and Q-learning. Empirically, we observe", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 445 + ], + "score": 1.0, + "content": "better data efficiency and stability of PGQL when compared to actor-critic or Q-learning alone. We", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "score": 1.0, + "content": "verified the performance of PGQL on a suite of Atari games, where we parameterize the policy using", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 453, + 462, + 467 + ], + "spans": [ + { + "bbox": [ + 104, + 453, + 462, + 467 + ], + "score": 1.0, + "content": "a neural network, and achieved performance exceeding that of both A3C and Q-learning.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 366, + 506, + 467 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 481, + 237, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 480, + 238, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 238, + 496 + ], + "score": 1.0, + "content": "7 ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 506, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 505, + 518 + ], + "score": 1.0, + "content": "We thank Joseph Modayil for many comments and suggestions on the paper, and Hubert Soyer for", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "help with performance evaluation. We would also like to thank the anonymous reviewers for their", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 528, + 198, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 198, + 538 + ], + "score": 1.0, + "content": "constructive feedback.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 506, + 505, + 538 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 504, + 122 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "score": 1.0, + "content": "Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251–", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 162, + 122 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 162, + 122 + ], + "score": 1.0, + "content": "276, 1998.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 503, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 143 + ], + "score": 1.0, + "content": "Mohammad Gheshlaghi Azar, Vicenc¸ Gomez, and Hilbert J Kappen. Dynamic policy programming. ´", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 139, + 389, + 152 + ], + "spans": [ + { + "bbox": [ + 116, + 139, + 389, + 152 + ], + "score": 1.0, + "content": "Journal of Machine Learning Research, 13(Nov):3207–3245, 2012.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 156, + 425, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 425, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 425, + 171 + ], + "score": 1.0, + "content": "J Andrew Bagnell and Jeff Schneider. Covariant policy search. In IJCAI, 2003.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 174, + 501, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 175, + 503, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 503, + 188 + ], + "score": 1.0, + "content": "Leemon C Baird III. Advantage updating. Technical Report WL-TR-93-1146, Wright-Patterson Air", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 186, + 293, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 293, + 199 + ], + "score": 1.0, + "content": "Force Base Ohio: Wright Laboratory, 1993.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "Marc G Bellemare, Yavar Naddaf, Joel Veness, and Michael Bowling. The arcade learning envi-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "ronment: An evaluation platform for general agents. Journal of Artificial Intelligence Research,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 225, + 142, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 142, + 237 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 415, + 256 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 415, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 415, + 257 + ], + "score": 1.0, + "content": "Richard Bellman. Dynamic programming. Princeton University Press, 1957.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 105, + 261, + 503, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "score": 1.0, + "content": "Dimitri P Bertsekas. Dynamic programming and optimal control, volume 1. Athena Scientific,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 114, + 272, + 143, + 285 + ], + "spans": [ + { + "bbox": [ + 114, + 272, + 143, + 285 + ], + "score": 1.0, + "content": "2005.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "Dimitri P. Bertsekas and John N. Tsitsiklis. Neuro-Dynamic Programming. Athena Scientific, 1996.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 446, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 443, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 443, + 322 + ], + "score": 1.0, + "content": "Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. 2012.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "Roy Fox, Ari Pakman, and Naftali Tishby. Taming the noise in reinforcement learning via soft", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 338, + 310, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 310, + 349 + ], + "score": 1.0, + "content": "updates. arXiv preprint arXiv:1207.4708, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 355, + 504, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "score": 1.0, + "content": "Matthew Hausknecht and Peter Stone. On-policy vs. off-policy updates for deep reinforcement", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 115, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "learning. Deep Reinforcement Learning: Frontiers and Challenges, IJCAI 2016 Workshop, 2016.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 399 + ], + "score": 1.0, + "content": "Nicolas Heess, David Silver, and Yee Whye Teh. Actor-critic reinforcement learning with energy-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 395, + 463, + 407 + ], + "spans": [ + { + "bbox": [ + 116, + 395, + 463, + 407 + ], + "score": 1.0, + "content": "based policies. In JMLR: Workshop and Conference Proceedings 24, pp. 43–57, 2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "score": 1.0, + "content": "Sham Kakade. A natural policy gradient. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 424, + 253, + 436 + ], + "spans": [ + { + "bbox": [ + 117, + 424, + 253, + 436 + ], + "score": 1.0, + "content": "volume 14, pp. 1531–1538, 2001.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "Vijay R Konda and John N Tsitsiklis. On actor-critic algorithms. SIAM Journal on Control and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 453, + 273, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 453, + 273, + 465 + ], + "score": 1.0, + "content": "Optimization, 42(4):1143–1166, 2003.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 105, + 470, + 504, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "score": 1.0, + "content": "Lucas Lehnert and Doina Precup. Policy gradient methods for off-policy control. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 482, + 219, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 482, + 219, + 493 + ], + "score": 1.0, + "content": "arXiv:1512.04105, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 512 + ], + "score": 1.0, + "content": "Sergey Levine and Vladlen Koltun. Guided policy search. In Proceedings of the 30th International", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 510, + 349, + 523 + ], + "spans": [ + { + "bbox": [ + 116, + 510, + 349, + 523 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), pp. 1–9, 2013.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 105, + 528, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "Sergey Levine, Chelsea Finn, Trevor Darrell, and Pieter Abbeel. End-to-end training of deep visuo-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 539, + 342, + 551 + ], + "spans": [ + { + "bbox": [ + 116, + 539, + 342, + 551 + ], + "score": 1.0, + "content": "motor policies. arXiv preprint arXiv:1504.00702, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "score": 1.0, + "content": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 568, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 116, + 568, + 504, + 580 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 579, + 253, + 591 + ], + "spans": [ + { + "bbox": [ + 115, + 579, + 253, + 591 + ], + "score": 1.0, + "content": "preprint arXiv:1509.02971, 2015.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 104, + 596, + 504, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "score": 1.0, + "content": "Long-Ji Lin. Reinforcement learning for robots using neural networks. Technical report, DTIC", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 608, + 188, + 620 + ], + "spans": [ + { + "bbox": [ + 116, + 608, + 188, + 620 + ], + "score": 1.0, + "content": "Document, 1993.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 503, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 504, + 638 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wier-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "stra, and Martin Riedmiller. Playing atari with deep reinforcement learning. In NIPS Deep Learn-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 647, + 201, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 201, + 660 + ], + "score": 1.0, + "content": "ing Workshop. 2013.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Pe-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "tersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 116, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "learning. Nature, 518(7540):529–533, 02 2015. URL http://dx.doi.org/10.1038/", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 721, + 188, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 188, + 732 + ], + "score": 1.0, + "content": "nature14236.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + } + ], + "page_idx": 11, + "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 2017", + "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, + 176, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 176, + 95 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 99, + 504, + 122 + ], + "lines": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 504, + 111 + ], + "score": 1.0, + "content": "Shun-Ichi Amari. Natural gradient works efficiently in learning. Neural computation, 10(2):251–", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 162, + 122 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 162, + 122 + ], + "score": 1.0, + "content": "276, 1998.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 106, + 99, + 504, + 122 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 503, + 151 + ], + "lines": [ + { + "bbox": [ + 105, + 127, + 505, + 143 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 505, + 143 + ], + "score": 1.0, + "content": "Mohammad Gheshlaghi Azar, Vicenc¸ Gomez, and Hilbert J Kappen. Dynamic policy programming. ´", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 139, + 389, + 152 + ], + "spans": [ + { + "bbox": [ + 116, + 139, + 389, + 152 + ], + "score": 1.0, + "content": "Journal of Machine Learning Research, 13(Nov):3207–3245, 2012.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 127, + 505, + 152 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 156, + 425, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 156, + 425, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 425, + 171 + ], + "score": 1.0, + "content": "J Andrew Bagnell and Jeff Schneider. Covariant policy search. In IJCAI, 2003.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 156, + 425, + 171 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 174, + 501, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 175, + 503, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 175, + 503, + 188 + ], + "score": 1.0, + "content": "Leemon C Baird III. Advantage updating. Technical Report WL-TR-93-1146, Wright-Patterson Air", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 186, + 293, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 293, + 199 + ], + "score": 1.0, + "content": "Force Base Ohio: Wright Laboratory, 1993.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 175, + 503, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "Marc G Bellemare, Yavar Naddaf, Joel Veness, and Michael Bowling. The arcade learning envi-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 115, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "ronment: An evaluation platform for general agents. Journal of Artificial Intelligence Research,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 225, + 142, + 237 + ], + "spans": [ + { + "bbox": [ + 115, + 225, + 142, + 237 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 203, + 505, + 237 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 415, + 256 + ], + "lines": [ + { + "bbox": [ + 106, + 243, + 415, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 415, + 257 + ], + "score": 1.0, + "content": "Richard Bellman. Dynamic programming. Princeton University Press, 1957.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 243, + 415, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 261, + 503, + 285 + ], + "lines": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 505, + 275 + ], + "score": 1.0, + "content": "Dimitri P Bertsekas. Dynamic programming and optimal control, volume 1. Athena Scientific,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 114, + 272, + 143, + 285 + ], + "spans": [ + { + "bbox": [ + 114, + 272, + 143, + 285 + ], + "score": 1.0, + "content": "2005.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 260, + 505, + 285 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 290, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "Dimitri P. Bertsekas and John N. Tsitsiklis. Neuro-Dynamic Programming. Athena Scientific, 1996.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 106, + 290, + 505, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 308, + 446, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 307, + 443, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 443, + 322 + ], + "score": 1.0, + "content": "Thomas Degris, Martha White, and Richard S Sutton. Off-policy actor-critic. 2012.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 307, + 443, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 326, + 504, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 339 + ], + "score": 1.0, + "content": "Roy Fox, Ari Pakman, and Naftali Tishby. Taming the noise in reinforcement learning via soft", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 338, + 310, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 310, + 349 + ], + "score": 1.0, + "content": "updates. arXiv preprint arXiv:1207.4708, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 326, + 505, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 355, + 504, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 368 + ], + "score": 1.0, + "content": "Matthew Hausknecht and Peter Stone. On-policy vs. off-policy updates for deep reinforcement", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 115, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "learning. Deep Reinforcement Learning: Frontiers and Challenges, IJCAI 2016 Workshop, 2016.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 354, + 505, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 505, + 399 + ], + "score": 1.0, + "content": "Nicolas Heess, David Silver, and Yee Whye Teh. Actor-critic reinforcement learning with energy-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 395, + 463, + 407 + ], + "spans": [ + { + "bbox": [ + 116, + 395, + 463, + 407 + ], + "score": 1.0, + "content": "based policies. In JMLR: Workshop and Conference Proceedings 24, pp. 43–57, 2012.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 382, + 505, + 407 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 412, + 505, + 436 + ], + "lines": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 506, + 426 + ], + "score": 1.0, + "content": "Sham Kakade. A natural policy gradient. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 117, + 424, + 253, + 436 + ], + "spans": [ + { + "bbox": [ + 117, + 424, + 253, + 436 + ], + "score": 1.0, + "content": "volume 14, pp. 1531–1538, 2001.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 411, + 506, + 436 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 441, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 506, + 455 + ], + "score": 1.0, + "content": "Vijay R Konda and John N Tsitsiklis. On actor-critic algorithms. SIAM Journal on Control and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 453, + 273, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 453, + 273, + 465 + ], + "score": 1.0, + "content": "Optimization, 42(4):1143–1166, 2003.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 441, + 506, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 470, + 504, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 505, + 484 + ], + "score": 1.0, + "content": "Lucas Lehnert and Doina Precup. Policy gradient methods for off-policy control. arXiv preprint", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 482, + 219, + 493 + ], + "spans": [ + { + "bbox": [ + 115, + 482, + 219, + 493 + ], + "score": 1.0, + "content": "arXiv:1512.04105, 2015.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 469, + 505, + 493 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 499, + 504, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 512 + ], + "score": 1.0, + "content": "Sergey Levine and Vladlen Koltun. Guided policy search. In Proceedings of the 30th International", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 510, + 349, + 523 + ], + "spans": [ + { + "bbox": [ + 116, + 510, + 349, + 523 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), pp. 1–9, 2013.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 499, + 505, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 528, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 505, + 542 + ], + "score": 1.0, + "content": "Sergey Levine, Chelsea Finn, Trevor Darrell, and Pieter Abbeel. End-to-end training of deep visuo-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 539, + 342, + 551 + ], + "spans": [ + { + "bbox": [ + 116, + 539, + 342, + 551 + ], + "score": 1.0, + "content": "motor policies. arXiv preprint arXiv:1504.00702, 2015.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 527, + 505, + 551 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 505, + 570 + ], + "score": 1.0, + "content": "Timothy P Lillicrap, Jonathan J Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 568, + 504, + 580 + ], + "spans": [ + { + "bbox": [ + 116, + 568, + 504, + 580 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. arXiv", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 579, + 253, + 591 + ], + "spans": [ + { + "bbox": [ + 115, + 579, + 253, + 591 + ], + "score": 1.0, + "content": "preprint arXiv:1509.02971, 2015.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 556, + 505, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 596, + 504, + 620 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "score": 1.0, + "content": "Long-Ji Lin. Reinforcement learning for robots using neural networks. Technical report, DTIC", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 608, + 188, + 620 + ], + "spans": [ + { + "bbox": [ + 116, + 608, + 188, + 620 + ], + "score": 1.0, + "content": "Document, 1993.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 596, + 505, + 620 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 626, + 503, + 659 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 504, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 504, + 638 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wier-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 115, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "stra, and Martin Riedmiller. Playing atari with deep reinforcement learning. In NIPS Deep Learn-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 647, + 201, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 647, + 201, + 660 + ], + "score": 1.0, + "content": "ing Workshop. 2013.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 626, + 505, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 665, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A. Rusu, Joel Veness, Marc G.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "Bellemare, Alex Graves, Martin Riedmiller, Andreas K. Fidjeland, Georg Ostrovski, Stig Pe-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "tersen, Charles Beattie, Amir Sadik, Ioannis Antonoglou, Helen King, Dharshan Kumaran, Daan", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 116, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "Wierstra, Shane Legg, and Demis Hassabis. Human-level control through deep reinforcement", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 504, + 722 + ], + "score": 1.0, + "content": "learning. Nature, 518(7540):529–533, 02 2015. URL http://dx.doi.org/10.1038/", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 721, + 188, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 188, + 732 + ], + "score": 1.0, + "content": "nature14236.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 664, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy P Lillicrap, Tim", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 317, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 317, + 117 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1602.01783, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 503, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Mohammad Norouzi, Samy Bengio, Zhifeng Chen, Navdeep Jaitly, Mike Schuster, Yonghui Wu,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "and Dale Schuurmans. Reward augmented maximum likelihood for neural structured prediction.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 146, + 278, + 158 + ], + "spans": [ + { + "bbox": [ + 117, + 146, + 278, + 158 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1609.00150, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 105, + 165, + 503, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 504, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 504, + 178 + ], + "score": 1.0, + "content": "Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 176, + 214, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 214, + 187 + ], + "score": 1.0, + "content": "arXiv:1301.3584, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 209 + ], + "score": 1.0, + "content": "Edwin Pednault, Naoki Abe, and Bianca Zadrozny. Sequential cost-sensitive decision making with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "reinforcement learning. In Proceedings of the eighth ACM SIGKDD international conference on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 381, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 381, + 230 + ], + "score": 1.0, + "content": "Knowledge discovery and data mining, pp. 259–268. ACM, 2002.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 503, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "score": 1.0, + "content": "Jing Peng and Ronald J Williams. Incremental multi-step Q-learning. Machine Learning, 22(1-3):", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 248, + 181, + 260 + ], + "spans": [ + { + "bbox": [ + 116, + 248, + 181, + 260 + ], + "score": 1.0, + "content": "283–290, 1996.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "Jan Peters, Katharina Mulling, and Yasemin Altun. Relative entropy policy search. In ¨ AAAI. Atlanta,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 278, + 143, + 291 + ], + "spans": [ + { + "bbox": [ + 114, + 278, + 143, + 291 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 502, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 504, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 504, + 312 + ], + "score": 1.0, + "content": "Martin Riedmiller. Neural fitted Q iteration–first experiences with a data efficient neural reinforce-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 309, + 504, + 322 + ], + "spans": [ + { + "bbox": [ + 116, + 309, + 504, + 322 + ], + "score": 1.0, + "content": "ment learning method. In Machine Learning: ECML 2005, pp. 317–328. Springer Berlin Heidel-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 165, + 334 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 165, + 334 + ], + "score": 1.0, + "content": "berg, 2005.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 105, + 339, + 503, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 503, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 503, + 354 + ], + "score": 1.0, + "content": "Gavin A Rummery and Mahesan Niranjan. On-line Q-learning using connectionist systems. 1994.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 104, + 359, + 503, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 504, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 504, + 372 + ], + "score": 1.0, + "content": "Brian Sallans and Geoffrey E Hinton. Reinforcement learning with factored states and actions.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 371, + 384, + 383 + ], + "spans": [ + { + "bbox": [ + 116, + 371, + 384, + 383 + ], + "score": 1.0, + "content": "Journal of Machine Learning Research, 5(Aug):1063–1088, 2004.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 105, + 390, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "score": 1.0, + "content": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 402, + 253, + 413 + ], + "spans": [ + { + "bbox": [ + 115, + 402, + 253, + 413 + ], + "score": 1.0, + "content": "preprint arXiv:1511.05952, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 432, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 506, + 445 + ], + "score": 1.0, + "content": "policy optimization. In Proceedings of The 32nd International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 443, + 207, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 207, + 455 + ], + "score": 1.0, + "content": "pp. 1889–1897, 2015.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "Deterministic policy gradient algorithms. In Proceedings of the 31st International Conference on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 485, + 308, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 308, + 497 + ], + "score": 1.0, + "content": "Machine Learning (ICML), pp. 387–395, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 514, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 115, + 514, + 506, + 529 + ], + "score": 1.0, + "content": "Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 526, + 493, + 538 + ], + "spans": [ + { + "bbox": [ + 117, + 526, + 493, + 538 + ], + "score": 1.0, + "content": "the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 446, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 447, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 447, + 558 + ], + "score": 1.0, + "content": "R. Sutton and A. Barto. Reinforcement Learning: an Introduction. MIT Press, 1998.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "score": 1.0, + "content": "Richard S Sutton. Learning to predict by the methods of temporal differences. Machine learning, 3", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 181, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 181, + 588 + ], + "score": 1.0, + "content": "(1):9–44, 1988.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "score": 1.0, + "content": "Richard S Sutton, David A McAllester, Satinder P Singh, Yishay Mansour, et al. Policy gradient", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "methods for reinforcement learning with function approximation. In Advances in Neural Infor-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 618, + 366, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 366, + 630 + ], + "score": 1.0, + "content": "mation Processing Systems, volume 99, pp. 1057–1063, 1999.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Gerald Tesauro. Temporal difference learning and TD-Gammon. Communications of the ACM, 38", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 648, + 186, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 186, + 660 + ], + "score": 1.0, + "content": "(3):58–68, 1995.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 105, + 668, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Philip Thomas. Bias in natural actor-critic algorithms. In Proceedings of The 31st International", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 679, + 336, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 336, + 691 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pp. 441–448, 2014.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Hado Van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double Q-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "learning. In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence (AAAI-16),", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 206, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 206, + 732 + ], + "score": 1.0, + "content": "pp. 2094–2100, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 12, + "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 2017", + "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, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Adria Puigdomenech Badia, Mehdi Mirza, Alex Graves, Timothy P Lillicrap, Tim", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "Harley, David Silver, and Koray Kavukcuoglu. Asynchronous methods for deep reinforcement", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 317, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 317, + 117 + ], + "score": 1.0, + "content": "learning. arXiv preprint arXiv:1602.01783, 2016.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 81, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 503, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "Mohammad Norouzi, Samy Bengio, Zhifeng Chen, Navdeep Jaitly, Mike Schuster, Yonghui Wu,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "and Dale Schuurmans. Reward augmented maximum likelihood for neural structured prediction.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 146, + 278, + 158 + ], + "spans": [ + { + "bbox": [ + 117, + 146, + 278, + 158 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1609.00150, 2016.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 123, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 165, + 503, + 188 + ], + "lines": [ + { + "bbox": [ + 106, + 165, + 504, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 504, + 178 + ], + "score": 1.0, + "content": "Razvan Pascanu and Yoshua Bengio. Revisiting natural gradient for deep networks. arXiv preprint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 176, + 214, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 176, + 214, + 187 + ], + "score": 1.0, + "content": "arXiv:1301.3584, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 165, + 504, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 506, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 195, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 209 + ], + "score": 1.0, + "content": "Edwin Pednault, Naoki Abe, and Bianca Zadrozny. Sequential cost-sensitive decision making with", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 115, + 207, + 505, + 219 + ], + "score": 1.0, + "content": "reinforcement learning. In Proceedings of the eighth ACM SIGKDD international conference on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 381, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 381, + 230 + ], + "score": 1.0, + "content": "Knowledge discovery and data mining, pp. 259–268. ACM, 2002.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 195, + 506, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 503, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 505, + 251 + ], + "score": 1.0, + "content": "Jing Peng and Ronald J Williams. Incremental multi-step Q-learning. Machine Learning, 22(1-3):", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 248, + 181, + 260 + ], + "spans": [ + { + "bbox": [ + 116, + 248, + 181, + 260 + ], + "score": 1.0, + "content": "283–290, 1996.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 236, + 505, + 260 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 504, + 291 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 506, + 281 + ], + "score": 1.0, + "content": "Jan Peters, Katharina Mulling, and Yasemin Altun. Relative entropy policy search. In ¨ AAAI. Atlanta,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 114, + 278, + 143, + 291 + ], + "spans": [ + { + "bbox": [ + 114, + 278, + 143, + 291 + ], + "score": 1.0, + "content": "2010.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 267, + 506, + 291 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 298, + 502, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 297, + 504, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 504, + 312 + ], + "score": 1.0, + "content": "Martin Riedmiller. Neural fitted Q iteration–first experiences with a data efficient neural reinforce-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 309, + 504, + 322 + ], + "spans": [ + { + "bbox": [ + 116, + 309, + 504, + 322 + ], + "score": 1.0, + "content": "ment learning method. In Machine Learning: ECML 2005, pp. 317–328. Springer Berlin Heidel-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 165, + 334 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 165, + 334 + ], + "score": 1.0, + "content": "berg, 2005.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 297, + 504, + 334 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 339, + 503, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 338, + 503, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 503, + 354 + ], + "score": 1.0, + "content": "Gavin A Rummery and Mahesan Niranjan. On-line Q-learning using connectionist systems. 1994.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 338, + 503, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 359, + 503, + 383 + ], + "lines": [ + { + "bbox": [ + 105, + 360, + 504, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 504, + 372 + ], + "score": 1.0, + "content": "Brian Sallans and Geoffrey E Hinton. Reinforcement learning with factored states and actions.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 371, + 384, + 383 + ], + "spans": [ + { + "bbox": [ + 116, + 371, + 384, + 383 + ], + "score": 1.0, + "content": "Journal of Machine Learning Research, 5(Aug):1063–1088, 2004.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 360, + 504, + 383 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 390, + 504, + 413 + ], + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 404 + ], + "score": 1.0, + "content": "Tom Schaul, John Quan, Ioannis Antonoglou, and David Silver. Prioritized experience replay. arXiv", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 402, + 253, + 413 + ], + "spans": [ + { + "bbox": [ + 115, + 402, + 253, + 413 + ], + "score": 1.0, + "content": "preprint arXiv:1511.05952, 2015.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 389, + 505, + 413 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 505, + 434 + ], + "score": 1.0, + "content": "John Schulman, Sergey Levine, Pieter Abbeel, Michael Jordan, and Philipp Moritz. Trust region", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 432, + 506, + 445 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 506, + 445 + ], + "score": 1.0, + "content": "policy optimization. In Proceedings of The 32nd International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 443, + 207, + 455 + ], + "spans": [ + { + "bbox": [ + 115, + 443, + 207, + 455 + ], + "score": 1.0, + "content": "pp. 1889–1897, 2015.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 420, + 506, + 455 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "David Silver, Guy Lever, Nicolas Heess, Thomas Degris, Daan Wierstra, and Martin Riedmiller.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "Deterministic policy gradient algorithms. In Proceedings of the 31st International Conference on", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 485, + 308, + 497 + ], + "spans": [ + { + "bbox": [ + 115, + 485, + 308, + 497 + ], + "score": 1.0, + "content": "Machine Learning (ICML), pp. 387–395, 2014.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 462, + 505, + 497 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 503, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 505, + 516 + ], + "score": 1.0, + "content": "David Silver, Aja Huang, Chris J Maddison, Arthur Guez, Laurent Sifre, George Van Den Driessche,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 514, + 506, + 529 + ], + "spans": [ + { + "bbox": [ + 115, + 514, + 506, + 529 + ], + "score": 1.0, + "content": "Julian Schrittwieser, Ioannis Antonoglou, Veda Panneershelvam, Marc Lanctot, et al. Mastering", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 526, + 493, + 538 + ], + "spans": [ + { + "bbox": [ + 117, + 526, + 493, + 538 + ], + "score": 1.0, + "content": "the game of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 503, + 506, + 538 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 446, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 447, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 447, + 558 + ], + "score": 1.0, + "content": "R. Sutton and A. Barto. Reinforcement Learning: an Introduction. MIT Press, 1998.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 545, + 447, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 565, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 578 + ], + "score": 1.0, + "content": "Richard S Sutton. Learning to predict by the methods of temporal differences. Machine learning, 3", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 181, + 588 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 181, + 588 + ], + "score": 1.0, + "content": "(1):9–44, 1988.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 563, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 595, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 505, + 609 + ], + "score": 1.0, + "content": "Richard S Sutton, David A McAllester, Satinder P Singh, Yishay Mansour, et al. Policy gradient", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "methods for reinforcement learning with function approximation. In Advances in Neural Infor-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 618, + 366, + 630 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 366, + 630 + ], + "score": 1.0, + "content": "mation Processing Systems, volume 99, pp. 1057–1063, 1999.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 594, + 505, + 630 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Gerald Tesauro. Temporal difference learning and TD-Gammon. Communications of the ACM, 38", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 648, + 186, + 660 + ], + "spans": [ + { + "bbox": [ + 116, + 648, + 186, + 660 + ], + "score": 1.0, + "content": "(3):58–68, 1995.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 637, + 505, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 668, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Philip Thomas. Bias in natural actor-critic algorithms. In Proceedings of The 31st International", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 679, + 336, + 691 + ], + "spans": [ + { + "bbox": [ + 116, + 679, + 336, + 691 + ], + "score": 1.0, + "content": "Conference on Machine Learning, pp. 441–448, 2014.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 668, + 505, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "Hado Van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double Q-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 708, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 708, + 505, + 723 + ], + "score": 1.0, + "content": "learning. In Proceedings of the Thirtieth AAAI Conference on Artificial Intelligence (AAAI-16),", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 721, + 206, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 206, + 732 + ], + "score": 1.0, + "content": "pp. 2094–2100, 2016.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 697, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "score": 1.0, + "content": "Harm Van Seijen, Hado Van Hasselt, Shimon Whiteson, and Marco Wiering. A theoretical and em-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "pirical analysis of expected sarsa. In 2009 IEEE Symposium on Adaptive Dynamic Programming", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 342, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 342, + 117 + ], + "score": 1.0, + "content": "and Reinforcement Learning, pp. 177–184. IEEE, 2009.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 506, + 137 + ], + "score": 1.0, + "content": "Yin-Hao Wang, Tzuu-Hseng S Li, and Chih-Jui Lin. Backward q-learning: The combination of sarsa", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "score": 1.0, + "content": "algorithm and q-learning. Engineering Applications of Artificial Intelligence, 26(9):2184–2193,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 144, + 143, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 144, + 143, + 157 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 506, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 175, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 175, + 505, + 187 + ], + "score": 1.0, + "content": "Dueling network architectures for deep reinforcement learning. In Proceedings of the 33rd Inter-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 414, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 414, + 199 + ], + "score": 1.0, + "content": "national Conference on Machine Learning (ICML), pp. 1995–2003, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 108, + 204, + 503, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "Christopher John Cornish Hellaby Watkins. Learning from delayed rewards. PhD thesis, University", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 238, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 238, + 228 + ], + "score": 1.0, + "content": "of Cambridge England, 1989.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 245, + 324, + 258 + ], + "spans": [ + { + "bbox": [ + 116, + 245, + 324, + 258 + ], + "score": 1.0, + "content": "learning. Machine learning, 8(3-4):229–256, 1992.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 108, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 279 + ], + "score": 1.0, + "content": "Ronald J Williams and Jing Peng. Function optimization using connectionist reinforcement learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 276, + 333, + 287 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 333, + 287 + ], + "score": 1.0, + "content": "algorithms. Connection Science, 3(3):241–268, 1991.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 308, + 272, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 274, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 274, + 324 + ], + "score": 1.0, + "content": "A PGQL BELLMAN RESIDUAL", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 504, + 344 + ], + "score": 1.0, + "content": "Here we demonstrate that in the tabular case the Bellman residual of the induced Q-values for the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 344, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 340, + 357 + ], + "score": 1.0, + "content": "PGQL updates of (14) converges to zero as the temperature", + "type": "text" + }, + { + "bbox": [ + 341, + 346, + 349, + 354 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 344, + 506, + 357 + ], + "score": 1.0, + "content": "decreases, which is the same guarantee", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 392, + 368 + ], + "score": 1.0, + "content": "as vanilla regularized policy gradient (2). We will use the notation that", + "type": "text" + }, + { + "bbox": [ + 392, + 357, + 405, + 366 + ], + "score": 0.87, + "content": "\\pi _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "is the policy at the fixed", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 258, + 380 + ], + "score": 1.0, + "content": "point of PGQL updates (14) for some", + "type": "text" + }, + { + "bbox": [ + 258, + 370, + 266, + 378 + ], + "score": 0.7, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 367, + 286, + 380 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 287, + 366, + 353, + 380 + ], + "score": 0.93, + "content": "\\pi _ { \\alpha } \\propto \\exp ( \\tilde { Q } ^ { \\pi _ { \\alpha } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 367, + 482, + 380 + ], + "score": 1.0, + "content": ", with induced Q-value function", + "type": "text" + }, + { + "bbox": [ + 482, + 368, + 500, + 379 + ], + "score": 0.9, + "content": "Q ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 367, + 505, + 380 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 108, + 385, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 104, + 384, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 384, + 343, + 400 + ], + "score": 1.0, + "content": "First, note that we can apply the same argument as in", + "type": "text" + }, + { + "bbox": [ + 344, + 387, + 362, + 398 + ], + "score": 0.75, + "content": "\\ S 3 . 4", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 384, + 422, + 400 + ], + "score": 1.0, + "content": "to show that", + "type": "text" + }, + { + "bbox": [ + 422, + 384, + 505, + 398 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 397, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 107, + 397, + 172, + 411 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| \\ = \\ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 397, + 397, + 412 + ], + "score": 1.0, + "content": "(the only difference is that we lack the property that", + "type": "text" + }, + { + "bbox": [ + 398, + 397, + 416, + 410 + ], + "score": 0.89, + "content": "{ \\tilde { Q } } ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 397, + 506, + 412 + ], + "score": 1.0, + "content": "is the fixed point of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 409, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 128, + 423 + ], + "score": 0.83, + "content": "\\mathcal { T } ^ { \\pi _ { \\alpha } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 409, + 312, + 425 + ], + "score": 1.0, + "content": ". Secondly, from equation (15) we can write", + "type": "text" + }, + { + "bbox": [ + 312, + 410, + 452, + 424 + ], + "score": 0.92, + "content": "\\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } = \\eta ( { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 409, + 505, + 425 + ], + "score": 1.0, + "content": ". Combining", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 421, + 204, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 204, + 434 + ], + "score": 1.0, + "content": "these two facts we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 436, + 455, + 504 + ], + "lines": [ + { + "bbox": [ + 155, + 436, + 455, + 504 + ], + "spans": [ + { + "bbox": [ + 155, + 436, + 455, + 504 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } + { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\gamma \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta / ( 1 - \\eta \\gamma ) \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}", + "type": "interline_equation", + "image_path": "3401d7823da43b77ffdfd473b449a54b8bf631edeb037ac9ef5730864fb77e4e.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 155, + 436, + 455, + 458.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 155, + 458.6666666666667, + 455, + 481.33333333333337 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 481.33333333333337, + 455, + 504.00000000000006 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 354, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 356, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 135, + 524 + ], + "score": 1.0, + "content": "and so", + "type": "text" + }, + { + "bbox": [ + 135, + 509, + 215, + 522 + ], + "score": 0.94, + "content": "\\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 508, + 227, + 524 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 227, + 511, + 255, + 520 + ], + "score": 0.9, + "content": "\\alpha 0", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 508, + 356, + 524 + ], + "score": 1.0, + "content": ". Using this fact we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 526, + 490, + 581 + ], + "lines": [ + { + "bbox": [ + 120, + 526, + 490, + 581 + ], + "spans": [ + { + "bbox": [ + 120, + 526, + 490, + 581 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - \\hat { Q } ^ { \\pi _ { \\alpha } } \\| } & { = \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } + { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } + { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { < 3 / ( 1 - \\eta \\gamma ) \\| { T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}", + "type": "interline_equation", + "image_path": "e86475be731502fcb8a5c74301d36420f3032ff0da3603324184247dc4550b7b.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 120, + 526, + 490, + 544.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 120, + 544.3333333333334, + 490, + 562.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 120, + 562.6666666666667, + 490, + 581.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 384, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 384, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 384, + 598 + ], + "score": 1.0, + "content": "which therefore also converges to zero in the limit. Finally we obtain", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 601, + 476, + 643 + ], + "lines": [ + { + "bbox": [ + 135, + 601, + 476, + 643 + ], + "spans": [ + { + "bbox": [ + 135, + 601, + 476, + 643 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } + T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } + \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}", + "type": "interline_equation", + "image_path": "79e091ad9e6d12f27956f429c937fccf9e8bdc14dc68f2d2b430161b06a02d86.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 135, + 601, + 476, + 615.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 135, + 615.0, + 476, + 629.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 135, + 629.0, + 476, + 643.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 648, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 339, + 662 + ], + "score": 1.0, + "content": "which combined with the two previous results implies that", + "type": "text" + }, + { + "bbox": [ + 339, + 648, + 461, + 660 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 646, + 505, + 662 + ], + "score": 1.0, + "content": ", as before.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + } + ], + "page_idx": 13, + "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 2017", + "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": "text", + "bbox": [ + 107, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "score": 1.0, + "content": "Harm Van Seijen, Hado Van Hasselt, Shimon Whiteson, and Marco Wiering. A theoretical and em-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "pirical analysis of expected sarsa. In 2009 IEEE Symposium on Adaptive Dynamic Programming", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 342, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 342, + 117 + ], + "score": 1.0, + "content": "and Reinforcement Learning, pp. 177–184. IEEE, 2009.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 122, + 506, + 137 + ], + "spans": [ + { + "bbox": [ + 106, + 122, + 506, + 137 + ], + "score": 1.0, + "content": "Yin-Hao Wang, Tzuu-Hseng S Li, and Chih-Jui Lin. Backward q-learning: The combination of sarsa", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "score": 1.0, + "content": "algorithm and q-learning. Engineering Applications of Artificial Intelligence, 26(9):2184–2193,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 144, + 143, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 144, + 143, + 157 + ], + "score": 1.0, + "content": "2013.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 122, + 506, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 164, + 506, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 175, + 505, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 175, + 505, + 187 + ], + "score": 1.0, + "content": "Dueling network architectures for deep reinforcement learning. In Proceedings of the 33rd Inter-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 414, + 199 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 414, + 199 + ], + "score": 1.0, + "content": "national Conference on Machine Learning (ICML), pp. 1995–2003, 2016.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 163, + 505, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 204, + 503, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 218 + ], + "score": 1.0, + "content": "Christopher John Cornish Hellaby Watkins. Learning from delayed rewards. PhD thesis, University", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 238, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 238, + 228 + ], + "score": 1.0, + "content": "of Cambridge England, 1989.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 203, + 505, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 503, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "Ronald J Williams. Simple statistical gradient-following algorithms for connectionist reinforcement", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 245, + 324, + 258 + ], + "spans": [ + { + "bbox": [ + 116, + 245, + 324, + 258 + ], + "score": 1.0, + "content": "learning. Machine learning, 8(3-4):229–256, 1992.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 234, + 506, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 264, + 504, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 279 + ], + "score": 1.0, + "content": "Ronald J Williams and Jing Peng. Function optimization using connectionist reinforcement learning", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 276, + 333, + 287 + ], + "spans": [ + { + "bbox": [ + 116, + 276, + 333, + 287 + ], + "score": 1.0, + "content": "algorithms. Connection Science, 3(3):241–268, 1991.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 263, + 506, + 287 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 308, + 272, + 321 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 274, + 324 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 274, + 324 + ], + "score": 1.0, + "content": "A PGQL BELLMAN RESIDUAL", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 504, + 344 + ], + "score": 1.0, + "content": "Here we demonstrate that in the tabular case the Bellman residual of the induced Q-values for the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 344, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 340, + 357 + ], + "score": 1.0, + "content": "PGQL updates of (14) converges to zero as the temperature", + "type": "text" + }, + { + "bbox": [ + 341, + 346, + 349, + 354 + ], + "score": 0.75, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 344, + 506, + 357 + ], + "score": 1.0, + "content": "decreases, which is the same guarantee", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 392, + 368 + ], + "score": 1.0, + "content": "as vanilla regularized policy gradient (2). We will use the notation that", + "type": "text" + }, + { + "bbox": [ + 392, + 357, + 405, + 366 + ], + "score": 0.87, + "content": "\\pi _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "is the policy at the fixed", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 366, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 258, + 380 + ], + "score": 1.0, + "content": "point of PGQL updates (14) for some", + "type": "text" + }, + { + "bbox": [ + 258, + 370, + 266, + 378 + ], + "score": 0.7, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 367, + 286, + 380 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 287, + 366, + 353, + 380 + ], + "score": 0.93, + "content": "\\pi _ { \\alpha } \\propto \\exp ( \\tilde { Q } ^ { \\pi _ { \\alpha } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 367, + 482, + 380 + ], + "score": 1.0, + "content": ", with induced Q-value function", + "type": "text" + }, + { + "bbox": [ + 482, + 368, + 500, + 379 + ], + "score": 0.9, + "content": "Q ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 367, + 505, + 380 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 334, + 506, + 380 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 385, + 505, + 434 + ], + "lines": [ + { + "bbox": [ + 104, + 384, + 505, + 400 + ], + "spans": [ + { + "bbox": [ + 104, + 384, + 343, + 400 + ], + "score": 1.0, + "content": "First, note that we can apply the same argument as in", + "type": "text" + }, + { + "bbox": [ + 344, + 387, + 362, + 398 + ], + "score": 0.75, + "content": "\\ S 3 . 4", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 384, + 422, + 400 + ], + "score": 1.0, + "content": "to show that", + "type": "text" + }, + { + "bbox": [ + 422, + 384, + 505, + 398 + ], + "score": 0.91, + "content": "\\begin{array} { r l } { { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 397, + 506, + 412 + ], + "spans": [ + { + "bbox": [ + 107, + 397, + 172, + 411 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| \\ = \\ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 397, + 397, + 412 + ], + "score": 1.0, + "content": "(the only difference is that we lack the property that", + "type": "text" + }, + { + "bbox": [ + 398, + 397, + 416, + 410 + ], + "score": 0.89, + "content": "{ \\tilde { Q } } ^ { \\pi _ { \\alpha } }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 397, + 506, + 412 + ], + "score": 1.0, + "content": "is the fixed point of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 409, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 128, + 423 + ], + "score": 0.83, + "content": "\\mathcal { T } ^ { \\pi _ { \\alpha } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 409, + 312, + 425 + ], + "score": 1.0, + "content": ". Secondly, from equation (15) we can write", + "type": "text" + }, + { + "bbox": [ + 312, + 410, + 452, + 424 + ], + "score": 0.92, + "content": "\\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } = \\eta ( { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 409, + 505, + 425 + ], + "score": 1.0, + "content": ". Combining", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 421, + 204, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 204, + 434 + ], + "score": 1.0, + "content": "these two facts we have", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 384, + 506, + 434 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 436, + 455, + 504 + ], + "lines": [ + { + "bbox": [ + 155, + 436, + 455, + 504 + ], + "spans": [ + { + "bbox": [ + 155, + 436, + 455, + 504 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } + { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\gamma \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta / ( 1 - \\eta \\gamma ) \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}", + "type": "interline_equation", + "image_path": "3401d7823da43b77ffdfd473b449a54b8bf631edeb037ac9ef5730864fb77e4e.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 155, + 436, + 455, + 458.6666666666667 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 155, + 458.6666666666667, + 455, + 481.33333333333337 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 155, + 481.33333333333337, + 455, + 504.00000000000006 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 354, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 356, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 135, + 524 + ], + "score": 1.0, + "content": "and so", + "type": "text" + }, + { + "bbox": [ + 135, + 509, + 215, + 522 + ], + "score": 0.94, + "content": "\\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 508, + 227, + 524 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 227, + 511, + 255, + 520 + ], + "score": 0.9, + "content": "\\alpha 0", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 508, + 356, + 524 + ], + "score": 1.0, + "content": ". Using this fact we have", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 508, + 356, + 524 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 120, + 526, + 490, + 581 + ], + "lines": [ + { + "bbox": [ + 120, + 526, + 490, + 581 + ], + "spans": [ + { + "bbox": [ + 120, + 526, + 490, + 581 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - \\hat { Q } ^ { \\pi _ { \\alpha } } \\| } & { = \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } + { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } + { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { < 3 / ( 1 - \\eta \\gamma ) \\| { T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}", + "type": "interline_equation", + "image_path": "e86475be731502fcb8a5c74301d36420f3032ff0da3603324184247dc4550b7b.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 120, + 526, + 490, + 544.3333333333334 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 120, + 544.3333333333334, + 490, + 562.6666666666667 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 120, + 562.6666666666667, + 490, + 581.0000000000001 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 384, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 585, + 384, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 384, + 598 + ], + "score": 1.0, + "content": "which therefore also converges to zero in the limit. Finally we obtain", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 585, + 384, + 598 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 135, + 601, + 476, + 643 + ], + "lines": [ + { + "bbox": [ + 135, + 601, + 476, + 643 + ], + "spans": [ + { + "bbox": [ + 135, + 601, + 476, + 643 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } + T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } + \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}", + "type": "interline_equation", + "image_path": "79e091ad9e6d12f27956f429c937fccf9e8bdc14dc68f2d2b430161b06a02d86.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 135, + 601, + 476, + 615.0 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 135, + 615.0, + 476, + 629.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 135, + 629.0, + 476, + 643.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 648, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 646, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 339, + 662 + ], + "score": 1.0, + "content": "which combined with the two previous results implies that", + "type": "text" + }, + { + "bbox": [ + 339, + 648, + 461, + 660 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| = 0 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 646, + 505, + 662 + ], + "score": 1.0, + "content": ", as before.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 646, + 505, + 662 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 203, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 205, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 205, + 96 + ], + "score": 1.0, + "content": "B ATARI SCORES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 214, + 104, + 395, + 578 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 214, + 104, + 395, + 578 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 214, + 104, + 395, + 578 + ], + "spans": [ + { + "bbox": [ + 214, + 104, + 395, + 578 + ], + "score": 0.956, + "html": "
GameA3CQ-learningPGQL
25.53
alien38.43 68.6912.2946.70 71.00
amidar2802.87
assault854.641695.21
asterix191.6998.533790.08
asteroids24.375.3250.23
atlantis15496.0113635.8816217.49
bank heist210.2891.80212.15
battle zone21.632.8952.00
beam rider59.5579.94155.71
berzerk79.3855.5592.85
bowling2.70-7.093.85
boxing510.30299.49902.77
breakout2341.133291.222959.16
centipede50.22105.9873.88
chopper command61.1319.18162.93
crazy climber510.25189.01476.11
defender475.9358.94911.13
demon attack4027.573449.273994.49
double dunk1250.0091.351375.00
enduro9.949.949.94
fishing derby140.84-14.48145.57
freeway-0.26-0.13-0.13
frostbite5.8510.715.71
gopher429.769131.972060.41
gravitar0.711.351.74
hero145.7115.4792.88
ice hockey62.2521.5776.96
jamesbond133.90110.97142.08
kangaroo-0.94-0.94-0.75
krull736.303586.30557.44
kung fu master182.34260.14254.42
montezuma revenge-0.491.80-0.48
ms pacman17.9110.7125.76
name this game102.01113.89188.90
phoenix447.05812.991507.07
pitfall5.485.49 24.965.49 116.37
pong116.37 -0.880.03-0.04
private eye
qbert riverraid186.91159.71136.17
107.2565.01128.63
road runner robotank603.11 15.71179.69519.51
134.8771.50
seaquest3.813.715.88
skiing solaris54.2754.1054.16
space invaders27.0534.6128.66
188.65146.39608.44
star gunner756.60205.70977.99
surround28.29-1.5178.15
tennis145.58-15.35145.58
time pilot270.7491.59438.50
tutankham224.76110.11239.58
up n down1637.01148.101484.43
venture-1.76-1.76-1.76
video pinball3007.374325.024743.68
wizard of wor150.5288.07325.39
yars revenge81.5423.39252.83
zaxxon4.0144.11224.89
", + "type": "table", + "image_path": "7776eb2e4c22c69af78a0a2357fcfba07f4076d30f571b527e9dae04d85370e7.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 214, + 104, + 395, + 117.16666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 214, + 117.16666666666667, + 395, + 130.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 214, + 130.33333333333334, + 395, + 143.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 214, + 143.5, + 395, + 156.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 214, + 156.66666666666666, + 395, + 169.83333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 214, + 169.83333333333331, + 395, + 182.99999999999997 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 214, + 182.99999999999997, + 395, + 196.16666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 214, + 196.16666666666663, + 395, + 209.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 214, + 209.3333333333333, + 395, + 222.49999999999994 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 214, + 222.49999999999994, + 395, + 235.6666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 214, + 235.6666666666666, + 395, + 248.83333333333326 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 214, + 248.83333333333326, + 395, + 261.99999999999994 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 214, + 261.99999999999994, + 395, + 275.16666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 214, + 275.16666666666663, + 395, + 288.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 214, + 288.3333333333333, + 395, + 301.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 214, + 301.5, + 395, + 314.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 214, + 314.6666666666667, + 395, + 327.83333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 214, + 327.83333333333337, + 395, + 341.00000000000006 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 214, + 341.00000000000006, + 395, + 354.16666666666674 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 214, + 354.16666666666674, + 395, + 367.3333333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 214, + 367.3333333333334, + 395, + 380.5000000000001 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 214, + 380.5000000000001, + 395, + 393.6666666666668 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 214, + 393.6666666666668, + 395, + 406.8333333333335 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 214, + 406.8333333333335, + 395, + 420.00000000000017 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 214, + 420.00000000000017, + 395, + 433.16666666666686 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 214, + 433.16666666666686, + 395, + 446.33333333333354 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 214, + 446.33333333333354, + 395, + 459.5000000000002 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 214, + 459.5000000000002, + 395, + 472.6666666666669 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 214, + 472.6666666666669, + 395, + 485.8333333333336 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 214, + 485.8333333333336, + 395, + 499.0000000000003 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 214, + 499.0000000000003, + 395, + 512.166666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 214, + 512.166666666667, + 395, + 525.3333333333336 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 214, + 525.3333333333336, + 395, + 538.5000000000002 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 214, + 538.5000000000002, + 395, + 551.6666666666669 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 214, + 551.6666666666669, + 395, + 564.8333333333335 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 214, + 564.8333333333335, + 395, + 578.0000000000001 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 105, + 587, + 504, + 609 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "score": 1.0, + "content": "Table 3: Normalized scores for the Atari suite from random starts, as a percentage of human nor-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 597, + 166, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 166, + 610 + ], + "score": 1.0, + "content": "malized score.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "index": 28.0 + } + ], + "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 2017", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 203, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 79, + 205, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 205, + 96 + ], + "score": 1.0, + "content": "B ATARI SCORES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 79, + 205, + 96 + ] + }, + { + "type": "table", + "bbox": [ + 214, + 104, + 395, + 578 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 214, + 104, + 395, + 578 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 214, + 104, + 395, + 578 + ], + "spans": [ + { + "bbox": [ + 214, + 104, + 395, + 578 + ], + "score": 0.956, + "html": "
GameA3CQ-learningPGQL
25.53
alien38.43 68.6912.2946.70 71.00
amidar2802.87
assault854.641695.21
asterix191.6998.533790.08
asteroids24.375.3250.23
atlantis15496.0113635.8816217.49
bank heist210.2891.80212.15
battle zone21.632.8952.00
beam rider59.5579.94155.71
berzerk79.3855.5592.85
bowling2.70-7.093.85
boxing510.30299.49902.77
breakout2341.133291.222959.16
centipede50.22105.9873.88
chopper command61.1319.18162.93
crazy climber510.25189.01476.11
defender475.9358.94911.13
demon attack4027.573449.273994.49
double dunk1250.0091.351375.00
enduro9.949.949.94
fishing derby140.84-14.48145.57
freeway-0.26-0.13-0.13
frostbite5.8510.715.71
gopher429.769131.972060.41
gravitar0.711.351.74
hero145.7115.4792.88
ice hockey62.2521.5776.96
jamesbond133.90110.97142.08
kangaroo-0.94-0.94-0.75
krull736.303586.30557.44
kung fu master182.34260.14254.42
montezuma revenge-0.491.80-0.48
ms pacman17.9110.7125.76
name this game102.01113.89188.90
phoenix447.05812.991507.07
pitfall5.485.49 24.965.49 116.37
pong116.37 -0.880.03-0.04
private eye
qbert riverraid186.91159.71136.17
107.2565.01128.63
road runner robotank603.11 15.71179.69519.51
134.8771.50
seaquest3.813.715.88
skiing solaris54.2754.1054.16
space invaders27.0534.6128.66
188.65146.39608.44
star gunner756.60205.70977.99
surround28.29-1.5178.15
tennis145.58-15.35145.58
time pilot270.7491.59438.50
tutankham224.76110.11239.58
up n down1637.01148.101484.43
venture-1.76-1.76-1.76
video pinball3007.374325.024743.68
wizard of wor150.5288.07325.39
yars revenge81.5423.39252.83
zaxxon4.0144.11224.89
", + "type": "table", + "image_path": "7776eb2e4c22c69af78a0a2357fcfba07f4076d30f571b527e9dae04d85370e7.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 214, + 104, + 395, + 117.16666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 214, + 117.16666666666667, + 395, + 130.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 214, + 130.33333333333334, + 395, + 143.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 214, + 143.5, + 395, + 156.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 214, + 156.66666666666666, + 395, + 169.83333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 214, + 169.83333333333331, + 395, + 182.99999999999997 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 214, + 182.99999999999997, + 395, + 196.16666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 214, + 196.16666666666663, + 395, + 209.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 214, + 209.3333333333333, + 395, + 222.49999999999994 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 214, + 222.49999999999994, + 395, + 235.6666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 214, + 235.6666666666666, + 395, + 248.83333333333326 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 214, + 248.83333333333326, + 395, + 261.99999999999994 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 214, + 261.99999999999994, + 395, + 275.16666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 214, + 275.16666666666663, + 395, + 288.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 214, + 288.3333333333333, + 395, + 301.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 214, + 301.5, + 395, + 314.6666666666667 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 214, + 314.6666666666667, + 395, + 327.83333333333337 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 214, + 327.83333333333337, + 395, + 341.00000000000006 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 214, + 341.00000000000006, + 395, + 354.16666666666674 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 214, + 354.16666666666674, + 395, + 367.3333333333334 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 214, + 367.3333333333334, + 395, + 380.5000000000001 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 214, + 380.5000000000001, + 395, + 393.6666666666668 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 214, + 393.6666666666668, + 395, + 406.8333333333335 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 214, + 406.8333333333335, + 395, + 420.00000000000017 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 214, + 420.00000000000017, + 395, + 433.16666666666686 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 214, + 433.16666666666686, + 395, + 446.33333333333354 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 214, + 446.33333333333354, + 395, + 459.5000000000002 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 214, + 459.5000000000002, + 395, + 472.6666666666669 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 214, + 472.6666666666669, + 395, + 485.8333333333336 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 214, + 485.8333333333336, + 395, + 499.0000000000003 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 214, + 499.0000000000003, + 395, + 512.166666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 214, + 512.166666666667, + 395, + 525.3333333333336 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 214, + 525.3333333333336, + 395, + 538.5000000000002 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 214, + 538.5000000000002, + 395, + 551.6666666666669 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 214, + 551.6666666666669, + 395, + 564.8333333333335 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 214, + 564.8333333333335, + 395, + 578.0000000000001 + ], + "spans": [], + "index": 36 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 105, + 587, + 504, + 609 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 599 + ], + "score": 1.0, + "content": "Table 3: Normalized scores for the Atari suite from random starts, as a percentage of human nor-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 597, + 166, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 166, + 610 + ], + "score": 1.0, + "content": "malized score.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + } + ], + "index": 28.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/B1kJ6H9ex/B1kJ6H9ex_model.json b/parse/train/B1kJ6H9ex/B1kJ6H9ex_model.json new file mode 100644 index 0000000000000000000000000000000000000000..5aa8fe3d54c7ec79eebef171437278a849885d88 --- /dev/null +++ b/parse/train/B1kJ6H9ex/B1kJ6H9ex_model.json @@ -0,0 +1,22479 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1468, + 1403, + 1468, + 1403, + 1804, + 299, + 1804 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 398, + 576, + 1302, + 576, + 1302, + 1033, + 398, + 1033 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 299, + 1178, + 1404, + 1178, + 1404, + 1453, + 299, + 1453 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1402, + 1820, + 1402, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 313, + 327, + 1237, + 327, + 1237, + 423, + 313, + 423 + ], + "score": 0.964 + }, + { + "category_id": 0, + "poly": [ + 299, + 222, + 1322, + 222, + 1322, + 270, + 299, + 270 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 302, + 1104, + 573, + 1104, + 573, + 1139, + 302, + 1139 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 104, + 299, + 104 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 773, + 502, + 926, + 502, + 926, + 536, + 773, + 536 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.604 + }, + { + "category_id": 15, + "poly": [ + 292.0, + 215.0, + 1330.0, + 215.0, + 1330.0, + 282.0, + 292.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 579.0, + 1101.0, + 579.0, + 1148.0, + 294.0, + 1148.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, + 501.0, + 932.0, + 501.0, + 932.0, + 539.0, + 769.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 858.0, + 2088.0, + 858.0, + 2116.0, + 841.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1501.0, + 1403.0, + 1501.0, + 1403.0, + 1536.0, + 294.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 1407.0, + 1528.0, + 1407.0, + 1567.0, + 293.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1559.0, + 1405.0, + 1559.0, + 1405.0, + 1598.0, + 294.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 1403.0, + 1591.0, + 1403.0, + 1626.0, + 295.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1657.0, + 293.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1687.0, + 295.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1679.0, + 1408.0, + 1679.0, + 1408.0, + 1720.0, + 290.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1710.0, + 1404.0, + 1710.0, + 1404.0, + 1750.0, + 292.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1740.0, + 1405.0, + 1740.0, + 1405.0, + 1780.0, + 292.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1772.0, + 703.0, + 1772.0, + 703.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 575.0, + 1306.0, + 575.0, + 1306.0, + 613.0, + 393.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 607.0, + 1305.0, + 607.0, + 1305.0, + 642.0, + 393.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 638.0, + 1306.0, + 638.0, + 1306.0, + 672.0, + 394.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 668.0, + 1307.0, + 668.0, + 1307.0, + 703.0, + 394.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 699.0, + 1306.0, + 699.0, + 1306.0, + 732.0, + 393.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 727.0, + 1306.0, + 727.0, + 1306.0, + 765.0, + 393.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 758.0, + 1305.0, + 758.0, + 1305.0, + 794.0, + 394.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 788.0, + 1306.0, + 788.0, + 1306.0, + 826.0, + 393.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 820.0, + 1306.0, + 820.0, + 1306.0, + 857.0, + 392.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 852.0, + 1304.0, + 852.0, + 1304.0, + 886.0, + 394.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 880.0, + 1306.0, + 880.0, + 1306.0, + 918.0, + 393.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 913.0, + 1304.0, + 913.0, + 1304.0, + 945.0, + 395.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 943.0, + 1306.0, + 943.0, + 1306.0, + 978.0, + 394.0, + 978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 973.0, + 1304.0, + 973.0, + 1304.0, + 1005.0, + 395.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1001.0, + 1060.0, + 1001.0, + 1060.0, + 1041.0, + 393.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1180.0, + 1404.0, + 1180.0, + 1404.0, + 1213.0, + 297.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1206.0, + 1404.0, + 1206.0, + 1404.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1236.0, + 1406.0, + 1236.0, + 1406.0, + 1276.0, + 292.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1267.0, + 1405.0, + 1267.0, + 1405.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1336.0, + 293.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1328.0, + 1404.0, + 1328.0, + 1404.0, + 1368.0, + 293.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1362.0, + 1404.0, + 1362.0, + 1404.0, + 1395.0, + 297.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 1405.0, + 1391.0, + 1405.0, + 1427.0, + 295.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1422.0, + 603.0, + 1422.0, + 603.0, + 1459.0, + 294.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1818.0, + 1404.0, + 1818.0, + 1404.0, + 1857.0, + 293.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1884.0, + 293.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1879.0, + 1406.0, + 1879.0, + 1406.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1355.0, + 2004.0, + 1355.0, + 2035.0, + 296.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 327.0, + 1238.0, + 327.0, + 1238.0, + 364.0, + 310.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 361.0, + 438.0, + 361.0, + 438.0, + 393.0, + 311.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 390.0, + 1014.0, + 390.0, + 1014.0, + 426.0, + 313.0, + 426.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 612, + 1404, + 612, + 1404, + 1435, + 298, + 1435 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1758, + 1404, + 1758, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 506, + 298, + 506 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1559, + 1403, + 1559, + 1403, + 1745, + 299, + 1745 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 302, + 1486, + 759, + 1486, + 759, + 1520, + 302, + 1520 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 550, + 521, + 550, + 521, + 581, + 300, + 581 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.706 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.163 + }, + { + "category_id": 13, + "poly": [ + 651, + 1650, + 872, + 1650, + 872, + 1687, + 651, + 1687 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\sum _ { a \\in \\mathcal { A } } \\pi ( s , a ) = 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 962, + 1712, + 1105, + 1712, + 1105, + 1746, + 962, + 1746 + ], + "score": 0.93, + "latex": "d ^ { \\pi } ( s ) \\pi ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1087, + 1910, + 1394, + 1910, + 1394, + 1946, + 1087, + 1946 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { J ( \\pi ) = \\mathbf { \\bar { E } } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ \\pi ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 583, + 1973, + 696, + 1973, + 696, + 2006, + 583, + 2006 + ], + "score": 0.93, + "latex": "\\gamma \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1820, + 1329, + 1820, + 1329, + 1853, + 1211, + 1853 + ], + "score": 0.93, + "latex": "P ( s ^ { \\prime } , s , a )" + }, + { + "category_id": 13, + "poly": [ + 897, + 1820, + 1119, + 1820, + 1119, + 1853, + 897, + 1853 + ], + "score": 0.92, + "latex": "s _ { t + 1 } \\sim P ( \\cdot , s _ { t } , a _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1591, + 1283, + 1591, + 1283, + 1621, + 1197, + 1621 + ], + "score": 0.92, + "latex": "r _ { t } \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1030, + 1652, + 1109, + 1652, + 1109, + 1680, + 1030, + 1680 + ], + "score": 0.91, + "latex": "s \\in { \\mathcal { S } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1621, + 531, + 1621, + 531, + 1653, + 297, + 1653 + ], + "score": 0.91, + "latex": "\\pi : S \\times A \\to \\mathbb { R } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 760, + 1713, + 932, + 1713, + 932, + 1746, + 760, + 1746 + ], + "score": 0.89, + "latex": "( s , a ) \\in S \\times A" + }, + { + "category_id": 13, + "poly": [ + 770, + 1683, + 925, + 1683, + 925, + 1714, + 770, + 1714 + ], + "score": 0.87, + "latex": "d ^ { \\pi } : S \\to \\mathbb { R } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1852, + 839, + 1852, + 839, + 1878, + 816, + 1878 + ], + "score": 0.86, + "latex": "s ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 757, + 1794, + 783, + 1794, + 783, + 1820, + 757, + 1820 + ], + "score": 0.85, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1794, + 1224, + 1794, + 1224, + 1820, + 1197, + 1820 + ], + "score": 0.84, + "latex": "a _ { t }" + }, + { + "category_id": 13, + "poly": [ + 934, + 1793, + 960, + 1793, + 960, + 1820, + 934, + 1820 + ], + "score": 0.83, + "latex": "r _ { t }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1826, + 325, + 1826, + 325, + 1851, + 297, + 1851 + ], + "score": 0.82, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1657, + 1285, + 1657, + 1285, + 1680, + 1264, + 1680 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 714, + 1857, + 730, + 1857, + 730, + 1878, + 714, + 1878 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 475, + 1916, + 497, + 1916, + 497, + 1940, + 475, + 1940 + ], + "score": 0.75, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1047, + 1859, + 1064, + 1859, + 1064, + 1878, + 1047, + 1878 + ], + "score": 0.75, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 666, + 1592, + 692, + 1592, + 692, + 1619, + 666, + 1619 + ], + "score": 0.74, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 484, + 1592, + 507, + 1592, + 507, + 1619, + 484, + 1619 + ], + "score": 0.74, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 461, + 1792, + 476, + 1792, + 476, + 1817, + 461, + 1817 + ], + "score": 0.67, + "latex": "t" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1481.0, + 766.0, + 1481.0, + 766.0, + 1526.0, + 291.0, + 1526.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": [ + 296.0, + 548.0, + 527.0, + 548.0, + 527.0, + 584.0, + 296.0, + 584.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": [ + 293.0, + 608.0, + 1406.0, + 608.0, + 1406.0, + 646.0, + 293.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 640.0, + 1405.0, + 640.0, + 1405.0, + 680.0, + 292.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 669.0, + 1407.0, + 669.0, + 1407.0, + 709.0, + 292.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 701.0, + 1404.0, + 701.0, + 1404.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 733.0, + 1405.0, + 733.0, + 1405.0, + 768.0, + 294.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 761.0, + 1404.0, + 761.0, + 1404.0, + 800.0, + 293.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 793.0, + 1404.0, + 793.0, + 1404.0, + 828.0, + 293.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 822.0, + 1404.0, + 822.0, + 1404.0, + 859.0, + 293.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 853.0, + 1405.0, + 853.0, + 1405.0, + 891.0, + 293.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 883.0, + 1404.0, + 883.0, + 1404.0, + 921.0, + 293.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 913.0, + 1404.0, + 913.0, + 1404.0, + 952.0, + 293.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 944.0, + 1404.0, + 944.0, + 1404.0, + 980.0, + 294.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 1405.0, + 976.0, + 1405.0, + 1011.0, + 294.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1007.0, + 1405.0, + 1007.0, + 1405.0, + 1042.0, + 294.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1037.0, + 1404.0, + 1037.0, + 1404.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1066.0, + 1406.0, + 1066.0, + 1406.0, + 1105.0, + 293.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1092.0, + 1406.0, + 1092.0, + 1406.0, + 1136.0, + 292.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1164.0, + 294.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1158.0, + 1404.0, + 1158.0, + 1404.0, + 1193.0, + 293.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1189.0, + 1402.0, + 1189.0, + 1402.0, + 1224.0, + 294.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1218.0, + 1405.0, + 1218.0, + 1405.0, + 1255.0, + 292.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1250.0, + 1404.0, + 1250.0, + 1404.0, + 1286.0, + 294.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1277.0, + 1405.0, + 1277.0, + 1405.0, + 1319.0, + 292.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1313.0, + 1405.0, + 1313.0, + 1405.0, + 1345.0, + 294.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1341.0, + 1404.0, + 1341.0, + 1404.0, + 1376.0, + 294.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1372.0, + 1404.0, + 1372.0, + 1404.0, + 1407.0, + 293.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1402.0, + 365.0, + 1402.0, + 365.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1793.0, + 296.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1788.0, + 460.0, + 1788.0, + 460.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1788.0, + 756.0, + 1788.0, + 756.0, + 1826.0, + 477.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1788.0, + 933.0, + 1788.0, + 933.0, + 1826.0, + 784.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1788.0, + 1196.0, + 1788.0, + 1196.0, + 1826.0, + 961.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1788.0, + 1404.0, + 1788.0, + 1404.0, + 1826.0, + 1225.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1819.0, + 296.0, + 1819.0, + 296.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1819.0, + 896.0, + 1819.0, + 896.0, + 1857.0, + 326.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1819.0, + 1210.0, + 1819.0, + 1210.0, + 1857.0, + 1120.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 1819.0, + 1407.0, + 1819.0, + 1407.0, + 1857.0, + 1330.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 713.0, + 1848.0, + 713.0, + 1888.0, + 293.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1848.0, + 815.0, + 1848.0, + 815.0, + 1888.0, + 731.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1848.0, + 1046.0, + 1848.0, + 1046.0, + 1888.0, + 840.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 1848.0, + 1408.0, + 1848.0, + 1408.0, + 1888.0, + 1065.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1882.0, + 474.0, + 1882.0, + 474.0, + 1978.0, + 284.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1882.0, + 1086.0, + 1882.0, + 1086.0, + 1978.0, + 498.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1882.0, + 1415.0, + 1882.0, + 1415.0, + 1978.0, + 1395.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 582.0, + 1972.0, + 582.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 697.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 288.0, + 1405.0, + 288.0, + 1405.0, + 330.0, + 293.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 319.0, + 1407.0, + 319.0, + 1407.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1407.0, + 350.0, + 1407.0, + 390.0, + 293.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 413.0, + 1405.0, + 413.0, + 1405.0, + 450.0, + 293.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 443.0, + 1405.0, + 443.0, + 1405.0, + 480.0, + 294.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 471.0, + 1081.0, + 471.0, + 1081.0, + 513.0, + 292.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1556.0, + 1407.0, + 1556.0, + 1407.0, + 1596.0, + 295.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1587.0, + 483.0, + 1587.0, + 483.0, + 1626.0, + 294.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1587.0, + 665.0, + 1587.0, + 665.0, + 1626.0, + 508.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1587.0, + 1196.0, + 1587.0, + 1196.0, + 1626.0, + 693.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1587.0, + 1405.0, + 1587.0, + 1405.0, + 1626.0, + 1284.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1620.0, + 296.0, + 1620.0, + 296.0, + 1656.0, + 293.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1656.0, + 532.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1647.0, + 650.0, + 1647.0, + 650.0, + 1693.0, + 289.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1647.0, + 1029.0, + 1647.0, + 1029.0, + 1693.0, + 873.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1647.0, + 1263.0, + 1647.0, + 1263.0, + 1693.0, + 1110.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1647.0, + 1412.0, + 1647.0, + 1412.0, + 1693.0, + 1286.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 769.0, + 1680.0, + 769.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1680.0, + 1407.0, + 1680.0, + 1407.0, + 1716.0, + 926.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1712.0, + 759.0, + 1712.0, + 759.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1712.0, + 961.0, + 1712.0, + 961.0, + 1748.0, + 933.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1712.0, + 1116.0, + 1712.0, + 1116.0, + 1748.0, + 1106.0, + 1748.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1271, + 1405, + 1271, + 1405, + 1671, + 297, + 1671 + ], + "score": 0.986 + }, + { + "category_id": 1, + "poly": [ + 297, + 324, + 1405, + 324, + 1405, + 666, + 297, + 666 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 992, + 1404, + 992, + 1404, + 1181, + 298, + 1181 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 816, + 1402, + 816, + 1402, + 909, + 298, + 909 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1764, + 1405, + 1764, + 1405, + 1859, + 298, + 1859 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2038, + 299, + 2038 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 632, + 1872, + 1062, + 1872, + 1062, + 1921, + 632, + 1921 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 624, + 744, + 1076, + 744, + 1076, + 798, + 624, + 798 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1401, + 228, + 1401, + 293, + 295, + 293 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 604, + 923, + 1099, + 923, + 1099, + 975, + 604, + 975 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 293, + 697, + 1304, + 697, + 1304, + 732, + 293, + 732 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 300, + 1707, + 590, + 1707, + 590, + 1739, + 300, + 1739 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 300, + 1217, + 683, + 1217, + 683, + 1247, + 300, + 1247 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1878, + 1399, + 1878, + 1399, + 1907, + 1366, + 1907 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.68 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.311 + }, + { + "category_id": 14, + "poly": [ + 630, + 1872, + 1063, + 1872, + 1063, + 1925, + 630, + 1925 + ], + "score": 0.94, + "latex": "\\nabla _ { \\boldsymbol { \\theta } } J ( \\pi ) = \\mathbf { \\underline { { E } } } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\boldsymbol { \\theta } } \\log \\pi ( s , a ) ," + }, + { + "category_id": 14, + "poly": [ + 599, + 923, + 1097, + 923, + 1097, + 977, + 599, + 977 + ], + "score": 0.93, + "latex": "\\mathcal { T } ^ { \\star } Q ( s , a ) = \\mathbf { E } _ { s ^ { \\prime } , r } ( r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) ) ," + }, + { + "category_id": 13, + "poly": [ + 800, + 994, + 971, + 994, + 971, + 1028, + 800, + 1028 + ], + "score": 0.93, + "latex": "s ^ { \\prime } \\sim P ( \\cdot , s , a )" + }, + { + "category_id": 13, + "poly": [ + 754, + 816, + 923, + 816, + 923, + 850, + 754, + 850 + ], + "score": 0.93, + "latex": "s ^ { \\prime } \\sim P ( \\cdot , s , a )" + }, + { + "category_id": 13, + "poly": [ + 749, + 1335, + 860, + 1335, + 860, + 1367, + 749, + 1367 + ], + "score": 0.93, + "latex": "Q ( s , a ; \\theta )" + }, + { + "category_id": 14, + "poly": [ + 621, + 745, + 1075, + 745, + 1075, + 799, + 621, + 799 + ], + "score": 0.92, + "latex": "\\mathcal { T } ^ { \\pi } Q ( s , a ) = \\mathrm { \\bf ~ E } _ { s ^ { \\prime } , r , b } ( r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) ) ," + }, + { + "category_id": 13, + "poly": [ + 1064, + 817, + 1141, + 817, + 1141, + 850, + 1064, + 850 + ], + "score": 0.92, + "latex": "r ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1219, + 1115, + 1400, + 1115, + 1400, + 1150, + 1219, + 1150 + ], + "score": 0.92, + "latex": "( T ^ { \\pi } ) ^ { k } Q Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 298, + 2001, + 739, + 2001, + 739, + 2040, + 298, + 2040 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { d _ { \\gamma } ^ { \\pi , \\overset { \\cdot } { s _ { 0 } } } ( s ) \\stackrel { \\cdot } { = } \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } P r \\{ s _ { t } = s \\mid \\overset { \\cdot } { s _ { 0 } } , \\pi \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1164, + 994, + 1240, + 994, + 1240, + 1026, + 1164, + 1026 + ], + "score": 0.92, + "latex": "r ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 346, + 1146, + 516, + 1146, + 516, + 1181, + 346, + 1181 + ], + "score": 0.92, + "latex": "( T ^ { \\star } ) ^ { \\bar { k } } Q Q ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 647, + 1942, + 710, + 1942, + 710, + 1975, + 647, + 1975 + ], + "score": 0.92, + "latex": "( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1131, + 1027, + 1281, + 1027, + 1281, + 1057, + 1131, + 1057 + ], + "score": 0.92, + "latex": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\star } = Q ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 910, + 1942, + 1054, + 1942, + 1054, + 1976, + 910, + 1976 + ], + "score": 0.92, + "latex": "d ^ { \\pi } ( s ) \\pi ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 959, + 572, + 1300, + 572, + 1300, + 608, + 959, + 608 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { V ^ { \\bar { \\pi } } ( s ) = \\sum _ { a } \\pi ( s , a ) Q ^ { \\pi } \\bar { ( } s , a ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 878, + 447, + 878, + 447, + 910, + 297, + 910 + ], + "score": 0.92, + "latex": "{ \\mathcal { T } } ^ { \\pi } Q ^ { \\pi } = Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 395, + 482, + 458, + 482, + 458, + 514, + 395, + 514 + ], + "score": 0.92, + "latex": "( s , a )" + }, + { + "category_id": 13, + "poly": [ + 433, + 603, + 713, + 603, + 713, + 638, + 433, + 638 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\sum _ { a } \\pi ( s , a ) A ^ { \\pi } ( s , a ) ^ { - } = 0 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 542, + 632, + 542, + 632, + 576, + 298, + 576 + ], + "score": 0.91, + "latex": "A ^ { \\pi } ( s , a ) = Q ^ { \\pi } ( \\bar { s _ { \\bf { \\Re } } } a ) - V ^ { \\pi } ( s )" + }, + { + "category_id": 13, + "poly": [ + 839, + 1085, + 1027, + 1085, + 1027, + 1119, + 839, + 1119 + ], + "score": 0.9, + "latex": "Q _ { 1 } , Q _ { 2 } \\in \\mathbb { R } ^ { S \\times A }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1086, + 744, + 1086, + 744, + 1120, + 347, + 1120 + ], + "score": 0.9, + "latex": "\\| T Q _ { 1 } - T Q _ { 2 } \\| _ { \\infty } \\leq \\gamma \\| Q _ { 1 } - Q _ { 2 } \\| _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 1090, + 451, + 1400, + 451, + 1400, + 485, + 1090, + 485 + ], + "score": 0.9, + "latex": "Q ^ { \\star } ( s , a ) = \\operatorname* { m a x } _ { \\pi } Q ^ { \\pi } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 297, + 421, + 700, + 421, + 700, + 456, + 297, + 456 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { V ^ { \\pi } ( s ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\mid s _ { 0 } = s , \\pi ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 902, + 452, + 940, + 452, + 940, + 483, + 902, + 483 + ], + "score": 0.89, + "latex": "Q ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 802, + 879, + 840, + 879, + 840, + 906, + 802, + 906 + ], + "score": 0.89, + "latex": "\\mathcal { T } ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 850, + 1398, + 1364, + 1398, + 1364, + 1429, + 850, + 1429 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { { \\bf E } _ { s , a } ( \\mathcal { T } ^ { \\pi } Q ( s , a ; \\theta ) - Q ( s , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1519, + 1394, + 1519, + 1394, + 1547, + 1319, + 1547 + ], + "score": 0.88, + "latex": "\\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 295, + 386, + 829, + 386, + 829, + 421, + 295, + 421 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\dot { Q } ^ { \\pi } ( s , a ) = \\mathbf { E } ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = \\overline { { \\ a } } , \\pi ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 891, + 1364, + 1401, + 1364, + 1401, + 1397, + 891, + 1397 + ], + "score": 0.88, + "latex": "\\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } Q ( s , a ; \\theta ) - Q ( \\bar { s } , a ; \\theta ) ) \\nabla _ { \\theta } Q ( s , a ; \\theta )" + }, + { + "category_id": 13, + "poly": [ + 791, + 701, + 829, + 701, + 829, + 728, + 791, + 728 + ], + "score": 0.88, + "latex": "\\mathcal { T } ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 298, + 513, + 335, + 513, + 335, + 540, + 298, + 540 + ], + "score": 0.86, + "latex": "V ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 1139, + 484, + 1171, + 484, + 1171, + 510, + 1139, + 510 + ], + "score": 0.85, + "latex": "\\pi ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 374, + 852, + 411, + 852, + 411, + 878, + 374, + 878 + ], + "score": 0.84, + "latex": "\\pi _ { s ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 700, + 1149, + 724, + 1149, + 724, + 1179, + 700, + 1179 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 295, + 1607, + 840, + 1607, + 840, + 1644, + 295, + 1644 + ], + "score": 0.83, + "latex": "\\pi ( s , a ) = \\mathrm { e x p } ( Q ( \\dot { s , } a ) / \\dot { T } ) / \\bar { \\sum _ { b } } \\mathrm { e x p } \\bar { ( } Q ( s , b ) / T )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1828, + 319, + 1828, + 319, + 1854, + 298, + 1854 + ], + "score": 0.8, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 944, + 1061, + 963, + 1061, + 963, + 1086, + 944, + 1086 + ], + "score": 0.79, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 791, + 854, + 812, + 854, + 812, + 875, + 791, + 875 + ], + "score": 0.78, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 523, + 1798, + 543, + 1798, + 543, + 1824, + 523, + 1824 + ], + "score": 0.78, + "latex": "J" + }, + { + "category_id": 13, + "poly": [ + 1137, + 706, + 1157, + 706, + 1157, + 727, + 1137, + 727 + ], + "score": 0.77, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1323, + 819, + 1338, + 819, + 1338, + 845, + 1323, + 845 + ], + "score": 0.77, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 1254, + 333, + 1276, + 333, + 1276, + 354, + 1254, + 354 + ], + "score": 0.77, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1123, + 611, + 1144, + 611, + 1144, + 631, + 1123, + 631 + ], + "score": 0.77, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 298, + 1060, + 317, + 1060, + 317, + 1084, + 298, + 1084 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1210, + 362, + 1231, + 362, + 1231, + 385, + 1210, + 385 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1580, + 1341, + 1580, + 1341, + 1607, + 1318, + 1607 + ], + "score": 0.75, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1223, + 393, + 1243, + 393, + 1243, + 415, + 1223, + 415 + ], + "score": 0.75, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1328, + 549, + 1346, + 549, + 1346, + 570, + 1328, + 570 + ], + "score": 0.75, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 1320, + 426, + 1340, + 426, + 1340, + 448, + 1320, + 448 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1326, + 856, + 1345, + 856, + 1345, + 875, + 1326, + 875 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1377, + 1335, + 1393, + 1335, + 1393, + 1363, + 1377, + 1363 + ], + "score": 0.72, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1054, + 393, + 1071, + 393, + 1071, + 416, + 1054, + 416 + ], + "score": 0.68, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 356, + 458, + 373, + 458, + 373, + 479, + 356, + 479 + ], + "score": 0.66, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 375, + 1554, + 393, + 1554, + 393, + 1575, + 375, + 1575 + ], + "score": 0.64, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 855, + 579, + 871, + 579, + 871, + 601, + 855, + 601 + ], + "score": 0.63, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1018, + 1488, + 1044, + 1488, + 1044, + 1518, + 1018, + 1518 + ], + "score": 0.33, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 13, + "poly": [ + 571, + 1397, + 597, + 1397, + 597, + 1427, + 571, + 1427 + ], + "score": 0.32, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 13, + "poly": [ + 950, + 1275, + 975, + 1275, + 975, + 1305, + 950, + 1305 + ], + "score": 0.29, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1707.0, + 593.0, + 1707.0, + 593.0, + 1743.0, + 295.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1216.0, + 686.0, + 1216.0, + 686.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1269.0, + 949.0, + 1269.0, + 949.0, + 1311.0, + 294.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1269.0, + 1405.0, + 1269.0, + 1405.0, + 1311.0, + 976.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1302.0, + 1406.0, + 1302.0, + 1406.0, + 1340.0, + 294.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1333.0, + 748.0, + 1333.0, + 748.0, + 1371.0, + 292.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1333.0, + 1376.0, + 1333.0, + 1376.0, + 1371.0, + 861.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1333.0, + 1406.0, + 1333.0, + 1406.0, + 1371.0, + 1394.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1362.0, + 890.0, + 1362.0, + 890.0, + 1401.0, + 294.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1362.0, + 1405.0, + 1362.0, + 1405.0, + 1401.0, + 1402.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1393.0, + 570.0, + 1393.0, + 570.0, + 1433.0, + 292.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 1393.0, + 849.0, + 1393.0, + 849.0, + 1433.0, + 598.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1393.0, + 1406.0, + 1393.0, + 1406.0, + 1433.0, + 1365.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1425.0, + 1403.0, + 1425.0, + 1403.0, + 1462.0, + 295.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1455.0, + 1406.0, + 1455.0, + 1406.0, + 1492.0, + 295.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 1017.0, + 1487.0, + 1017.0, + 1523.0, + 294.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 1487.0, + 1406.0, + 1487.0, + 1406.0, + 1523.0, + 1045.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1514.0, + 1318.0, + 1514.0, + 1318.0, + 1556.0, + 291.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1514.0, + 1407.0, + 1514.0, + 1407.0, + 1556.0, + 1395.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1549.0, + 374.0, + 1549.0, + 374.0, + 1582.0, + 296.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1549.0, + 1402.0, + 1549.0, + 1402.0, + 1582.0, + 394.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1578.0, + 1317.0, + 1578.0, + 1317.0, + 1614.0, + 294.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1578.0, + 1405.0, + 1578.0, + 1405.0, + 1614.0, + 1342.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1605.0, + 1406.0, + 1605.0, + 1406.0, + 1648.0, + 841.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1642.0, + 416.0, + 1642.0, + 416.0, + 1672.0, + 295.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 324.0, + 1253.0, + 324.0, + 1253.0, + 362.0, + 294.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 324.0, + 1405.0, + 324.0, + 1405.0, + 362.0, + 1277.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 356.0, + 294.0, + 356.0, + 294.0, + 440.0, + 283.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 356.0, + 1053.0, + 356.0, + 1053.0, + 440.0, + 830.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 356.0, + 1209.0, + 356.0, + 1209.0, + 440.0, + 1072.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 356.0, + 1415.0, + 356.0, + 1415.0, + 440.0, + 1244.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 411.0, + 296.0, + 411.0, + 296.0, + 469.0, + 287.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 411.0, + 1319.0, + 411.0, + 1319.0, + 469.0, + 701.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 411.0, + 1411.0, + 411.0, + 1411.0, + 469.0, + 1341.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 447.0, + 355.0, + 447.0, + 355.0, + 489.0, + 291.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 447.0, + 901.0, + 447.0, + 901.0, + 489.0, + 374.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 447.0, + 1089.0, + 447.0, + 1089.0, + 489.0, + 941.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 447.0, + 1406.0, + 447.0, + 1406.0, + 489.0, + 1401.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 477.0, + 394.0, + 477.0, + 394.0, + 519.0, + 292.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 477.0, + 1138.0, + 477.0, + 1138.0, + 519.0, + 459.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 477.0, + 1407.0, + 477.0, + 1407.0, + 519.0, + 1172.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 508.0, + 297.0, + 508.0, + 297.0, + 550.0, + 292.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 508.0, + 1407.0, + 508.0, + 1407.0, + 550.0, + 336.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 540.0, + 1327.0, + 540.0, + 1327.0, + 579.0, + 633.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 540.0, + 1407.0, + 540.0, + 1407.0, + 579.0, + 1347.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 572.0, + 854.0, + 572.0, + 854.0, + 611.0, + 292.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 572.0, + 958.0, + 572.0, + 958.0, + 611.0, + 872.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 572.0, + 1406.0, + 572.0, + 1406.0, + 611.0, + 1301.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 598.0, + 432.0, + 598.0, + 432.0, + 644.0, + 290.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 598.0, + 1122.0, + 598.0, + 1122.0, + 644.0, + 714.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 598.0, + 1408.0, + 598.0, + 1408.0, + 644.0, + 1145.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 629.0, + 369.0, + 629.0, + 369.0, + 667.0, + 290.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 992.0, + 799.0, + 992.0, + 799.0, + 1028.0, + 296.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 992.0, + 1163.0, + 992.0, + 1163.0, + 1028.0, + 972.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1028.0, + 1241.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1025.0, + 1130.0, + 1025.0, + 1130.0, + 1061.0, + 296.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1025.0, + 1404.0, + 1025.0, + 1404.0, + 1061.0, + 1282.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1053.0, + 297.0, + 1053.0, + 297.0, + 1092.0, + 292.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1053.0, + 943.0, + 1053.0, + 943.0, + 1092.0, + 318.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1053.0, + 1406.0, + 1053.0, + 1406.0, + 1092.0, + 964.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1081.0, + 346.0, + 1081.0, + 346.0, + 1121.0, + 291.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1081.0, + 838.0, + 1081.0, + 838.0, + 1121.0, + 745.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1081.0, + 1407.0, + 1081.0, + 1407.0, + 1121.0, + 1028.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1114.0, + 1218.0, + 1114.0, + 1218.0, + 1154.0, + 293.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1114.0, + 1404.0, + 1114.0, + 1404.0, + 1154.0, + 1401.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1145.0, + 345.0, + 1145.0, + 345.0, + 1185.0, + 293.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1145.0, + 699.0, + 1145.0, + 699.0, + 1185.0, + 517.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1145.0, + 946.0, + 1145.0, + 946.0, + 1185.0, + 725.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 814.0, + 753.0, + 814.0, + 753.0, + 852.0, + 294.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 814.0, + 1063.0, + 814.0, + 1063.0, + 852.0, + 924.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 814.0, + 1322.0, + 814.0, + 1322.0, + 852.0, + 1142.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 814.0, + 1406.0, + 814.0, + 1406.0, + 852.0, + 1339.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 844.0, + 373.0, + 844.0, + 373.0, + 884.0, + 292.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 844.0, + 790.0, + 844.0, + 790.0, + 884.0, + 412.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 844.0, + 1325.0, + 844.0, + 1325.0, + 884.0, + 813.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 844.0, + 1407.0, + 844.0, + 1407.0, + 884.0, + 1346.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 876.0, + 801.0, + 876.0, + 801.0, + 913.0, + 448.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 876.0, + 990.0, + 876.0, + 990.0, + 913.0, + 841.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1764.0, + 1406.0, + 1764.0, + 1406.0, + 1802.0, + 295.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1796.0, + 522.0, + 1796.0, + 522.0, + 1830.0, + 295.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1796.0, + 1406.0, + 1796.0, + 1406.0, + 1830.0, + 544.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1824.0, + 297.0, + 1824.0, + 297.0, + 1864.0, + 293.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1824.0, + 935.0, + 1824.0, + 935.0, + 1864.0, + 320.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 646.0, + 1940.0, + 646.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1940.0, + 909.0, + 1940.0, + 909.0, + 1978.0, + 711.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1940.0, + 1408.0, + 1940.0, + 1408.0, + 1978.0, + 1055.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1993.0, + 297.0, + 1993.0, + 297.0, + 2050.0, + 288.0, + 2050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1993.0, + 1409.0, + 1993.0, + 1409.0, + 2050.0, + 740.0, + 2050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 224.0, + 1405.0, + 224.0, + 1405.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 258.0, + 382.0, + 258.0, + 382.0, + 302.0, + 290.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 693.0, + 790.0, + 693.0, + 790.0, + 741.0, + 290.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 693.0, + 1136.0, + 693.0, + 1136.0, + 741.0, + 830.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 693.0, + 1309.0, + 693.0, + 1309.0, + 741.0, + 1158.0, + 741.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1351, + 1403, + 1351, + 1403, + 1574, + 297, + 1574 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 569, + 1405, + 569, + 1405, + 757, + 298, + 757 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 296, + 1086, + 1404, + 1086, + 1404, + 1271, + 296, + 1271 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 867, + 1404, + 867, + 1404, + 994, + 297, + 994 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 384, + 298, + 384 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1911, + 1403, + 1911, + 1403, + 2036, + 298, + 2036 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1635, + 1404, + 1635, + 1404, + 1729, + 298, + 1729 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 398, + 1403, + 398, + 1403, + 492, + 297, + 492 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 583, + 1844, + 1111, + 1844, + 1111, + 1894, + 583, + 1894 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 633, + 1586, + 1061, + 1586, + 1061, + 1625, + 633, + 1625 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 561, + 505, + 1132, + 505, + 1132, + 552, + 561, + 552 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 298, + 802, + 1017, + 802, + 1017, + 836, + 298, + 836 + ], + "score": 0.924 + }, + { + "category_id": 8, + "poly": [ + 466, + 1746, + 1229, + 1746, + 1229, + 1785, + 466, + 1785 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 299, + 1797, + 861, + 1797, + 861, + 1830, + 299, + 1830 + ], + "score": 0.923 + }, + { + "category_id": 8, + "poly": [ + 539, + 1284, + 1155, + 1284, + 1155, + 1331, + 539, + 1331 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.907 + }, + { + "category_id": 0, + "poly": [ + 299, + 1030, + 552, + 1030, + 552, + 1061, + 299, + 1061 + ], + "score": 0.905 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1289, + 1400, + 1289, + 1400, + 1318, + 1366, + 1318 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1591, + 1400, + 1591, + 1400, + 1620, + 1366, + 1620 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 509, + 1400, + 509, + 1400, + 539, + 1366, + 539 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1851, + 1400, + 1851, + 1400, + 1880, + 1366, + 1880 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1751, + 1400, + 1751, + 1400, + 1780, + 1365, + 1780 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.784 + }, + { + "category_id": 13, + "poly": [ + 791, + 1352, + 900, + 1352, + 900, + 1384, + 791, + 1384 + ], + "score": 0.95, + "latex": "c \\in \\mathbb { R } ^ { | s | }" + }, + { + "category_id": 13, + "poly": [ + 916, + 1179, + 1045, + 1179, + 1045, + 1212, + 916, + 1212 + ], + "score": 0.93, + "latex": "\\{ \\dot { \\nabla _ { \\theta } } g _ { s } ( \\pi ) \\}" + }, + { + "category_id": 13, + "poly": [ + 924, + 1510, + 1184, + 1510, + 1184, + 1544, + 924, + 1544 + ], + "score": 0.93, + "latex": "c _ { s } = \\alpha H ^ { \\pi } \\bar { ( } s ) + V ^ { \\pi } ( s )" + }, + { + "category_id": 13, + "poly": [ + 374, + 570, + 771, + 570, + 771, + 607, + 374, + 607 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { H ^ { \\pi } ( s ) = - \\sum _ { a } \\pi ( s , a ) \\log \\pi ( s , a ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 583, + 1841, + 1111, + 1841, + 1111, + 1898, + 583, + 1898 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( Q ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 960, + 1446, + 1281, + 1446, + 1281, + 1483, + 960, + 1483 + ], + "score": 0.92, + "latex": "\\nabla _ { \\boldsymbol { \\theta } ( t , b ) } \\pi ( s , a ) = \\bar { \\mathbf { 1 } } _ { ( t , b ) = ( s , a ) } ." + }, + { + "category_id": 14, + "poly": [ + 631, + 1585, + 1062, + 1585, + 1062, + 1624, + 631, + 1624 + ], + "score": 0.92, + "latex": "\\pi ( s , a ) = \\exp ( A ^ { \\pi } ( s , a ) / \\alpha - H ^ { \\pi } ( s ) ) ," + }, + { + "category_id": 13, + "poly": [ + 298, + 1239, + 414, + 1239, + 414, + 1273, + 298, + 1273 + ], + "score": 0.92, + "latex": "g _ { s } ( \\pi ) = 1" + }, + { + "category_id": 13, + "poly": [ + 871, + 1117, + 1099, + 1117, + 1099, + 1152, + 871, + 1152 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\dot { g } _ { s } ( \\pi ) \\stackrel { - } { = } \\sum _ { a } \\pi ( \\stackrel { - } { s } , a ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 560, + 504, + 1132, + 504, + 1132, + 557, + 560, + 557 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\Delta \\theta \\propto \\underline { { \\mathbf { E } } } _ { a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\underline { { \\mathbf { E } } } _ { s } \\nabla _ { \\theta } H ^ { \\pi } ( s ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1210, + 1262, + 1210, + 1262, + 1240, + 1176, + 1240 + ], + "score": 0.91, + "latex": "\\lambda _ { s } \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 418, + 1479, + 814, + 1479, + 814, + 1514, + 418, + 1514 + ], + "score": 0.91, + "latex": "Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } = 0" + }, + { + "category_id": 13, + "poly": [ + 471, + 1513, + 551, + 1513, + 551, + 1543, + 471, + 1543 + ], + "score": 0.91, + "latex": "\\pi ( \\boldsymbol { a } , \\boldsymbol { s } )" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1480, + 1390, + 1480, + 1390, + 1514, + 1260, + 1514 + ], + "score": 0.9, + "latex": "d ^ { \\pi } ( s ) > 0 )" + }, + { + "category_id": 14, + "poly": [ + 540, + 1283, + 1152, + 1283, + 1152, + 1337, + 540, + 1337 + ], + "score": 0.9, + "latex": "\\underset { s , a } { \\mathbf { E } } \\left( Q ^ { \\pi } ( s , a ) - \\alpha \\log \\pi ( s , a ) - c _ { s } \\right) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ," + }, + { + "category_id": 13, + "poly": [ + 1198, + 575, + 1278, + 575, + 1278, + 601, + 1198, + 601 + ], + "score": 0.9, + "latex": "\\alpha > 0" + }, + { + "category_id": 13, + "poly": [ + 379, + 1637, + 462, + 1637, + 462, + 1666, + 379, + 1666 + ], + "score": 0.9, + "latex": "s \\in \\mathcal { S }" + }, + { + "category_id": 13, + "poly": [ + 440, + 1210, + 703, + 1210, + 703, + 1244, + 440, + 1244 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { f ( \\theta ) = \\sum _ { s } \\lambda _ { s } \\nabla _ { \\theta } g _ { s } ( \\pi ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 520, + 1637, + 608, + 1637, + 608, + 1666, + 520, + 1666 + ], + "score": 0.9, + "latex": "a \\in \\mathcal A" + }, + { + "category_id": 13, + "poly": [ + 297, + 1117, + 815, + 1117, + 815, + 1151, + 297, + 1151 + ], + "score": 0.9, + "latex": "\\mathbf { E } _ { s , a } Q ^ { \\pi } ( s , a ) \\nabla _ { \\theta } \\log \\pi ( s , a ) + \\alpha \\mathbf { E } _ { s } \\bar { \\nabla } _ { \\theta } H ( \\pi _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 548, + 1179, + 601, + 1179, + 601, + 1211, + 548, + 1211 + ], + "score": 0.9, + "latex": "f ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1317, + 1087, + 1405, + 1087, + 1405, + 1121, + 1317, + 1121 + ], + "score": 0.9, + "latex": "f ( \\theta ) =" + }, + { + "category_id": 13, + "poly": [ + 452, + 1941, + 932, + 1941, + 932, + 1977, + 452, + 1977 + ], + "score": 0.9, + "latex": "\\pi ( s , a ) = \\bar { \\exp ( W ( s , a ) ) } / \\sum _ { b } \\exp W ( s , b )" + }, + { + "category_id": 13, + "poly": [ + 767, + 1512, + 841, + 1512, + 841, + 1539, + 767, + 1539 + ], + "score": 0.89, + "latex": "a \\in { \\mathcal { A } }" + }, + { + "category_id": 13, + "poly": [ + 941, + 2004, + 989, + 2004, + 989, + 2036, + 941, + 2036 + ], + "score": 0.89, + "latex": "1 / \\alpha" + }, + { + "category_id": 14, + "poly": [ + 469, + 1742, + 1232, + 1742, + 1232, + 1785, + 469, + 1785 + ], + "score": 0.89, + "latex": "\\tilde { Q } ^ { \\pi } ( s , a ) = \\tilde { A } ^ { \\pi } ( s , a ) + V ^ { \\pi } ( s ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ^ { \\pi } ( s ) ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1178, + 414, + 1178, + 414, + 1212, + 298, + 1212 + ], + "score": 0.89, + "latex": "g _ { s } ( \\pi ) = 1" + }, + { + "category_id": 13, + "poly": [ + 1307, + 293, + 1346, + 293, + 1346, + 323, + 1307, + 323 + ], + "score": 0.89, + "latex": "Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 911, + 1150, + 964, + 1150, + 964, + 1180, + 911, + 1180 + ], + "score": 0.88, + "latex": "f ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1087, + 1944, + 1120, + 1944, + 1120, + 1970, + 1087, + 1970 + ], + "score": 0.81, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 690, + 1151, + 707, + 1151, + 707, + 1176, + 690, + 1176 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1173, + 1674, + 1194, + 1674, + 1194, + 1695, + 1173, + 1695 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1116, + 579, + 1136, + 579, + 1136, + 601, + 1116, + 601 + ], + "score": 0.77, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 920, + 1487, + 938, + 1487, + 938, + 1508, + 920, + 1508 + ], + "score": 0.76, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1362, + 1100, + 1362, + 1100, + 1383, + 1079, + 1383 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1518, + 1352, + 1518, + 1352, + 1538, + 1336, + 1538 + ], + "score": 0.75, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 887, + 1216, + 903, + 1216, + 903, + 1237, + 887, + 1237 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 298, + 1422, + 318, + 1422, + 318, + 1444, + 298, + 1444 + ], + "score": 0.73, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1200, + 1124, + 1215, + 1124, + 1215, + 1145, + 1200, + 1145 + ], + "score": 0.52, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 778, + 932, + 803, + 932, + 803, + 962, + 778, + 962 + ], + "score": 0.27, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 797.0, + 1019.0, + 797.0, + 1019.0, + 842.0, + 290.0, + 842.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": [ + 293.0, + 1027.0, + 555.0, + 1027.0, + 555.0, + 1065.0, + 293.0, + 1065.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": [ + 292.0, + 1346.0, + 790.0, + 1346.0, + 790.0, + 1393.0, + 292.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1346.0, + 1078.0, + 1346.0, + 1078.0, + 1393.0, + 901.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1346.0, + 1407.0, + 1346.0, + 1407.0, + 1393.0, + 1101.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1386.0, + 1406.0, + 1386.0, + 1406.0, + 1420.0, + 293.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1413.0, + 297.0, + 1413.0, + 297.0, + 1455.0, + 291.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1413.0, + 1404.0, + 1413.0, + 1404.0, + 1455.0, + 319.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1444.0, + 959.0, + 1444.0, + 959.0, + 1490.0, + 291.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1444.0, + 1409.0, + 1444.0, + 1409.0, + 1490.0, + 1282.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1478.0, + 417.0, + 1478.0, + 417.0, + 1517.0, + 293.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1478.0, + 919.0, + 1478.0, + 919.0, + 1517.0, + 815.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1478.0, + 1259.0, + 1478.0, + 1259.0, + 1517.0, + 939.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1391.0, + 1478.0, + 1405.0, + 1478.0, + 1405.0, + 1517.0, + 1391.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1507.0, + 470.0, + 1507.0, + 470.0, + 1548.0, + 292.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1507.0, + 766.0, + 1507.0, + 766.0, + 1548.0, + 552.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1507.0, + 923.0, + 1507.0, + 923.0, + 1548.0, + 842.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1507.0, + 1335.0, + 1507.0, + 1335.0, + 1548.0, + 1185.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1507.0, + 1407.0, + 1507.0, + 1407.0, + 1548.0, + 1353.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1538.0, + 994.0, + 1538.0, + 994.0, + 1581.0, + 292.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 568.0, + 373.0, + 568.0, + 373.0, + 612.0, + 293.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 568.0, + 1115.0, + 568.0, + 1115.0, + 612.0, + 772.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 568.0, + 1197.0, + 568.0, + 1197.0, + 612.0, + 1137.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 568.0, + 1405.0, + 568.0, + 1405.0, + 612.0, + 1279.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 603.0, + 1405.0, + 603.0, + 1405.0, + 639.0, + 295.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 631.0, + 1405.0, + 631.0, + 1405.0, + 669.0, + 292.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 662.0, + 1406.0, + 662.0, + 1406.0, + 700.0, + 292.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 693.0, + 1405.0, + 693.0, + 1405.0, + 731.0, + 293.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 723.0, + 1197.0, + 723.0, + 1197.0, + 759.0, + 297.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1082.0, + 1316.0, + 1082.0, + 1316.0, + 1124.0, + 294.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1112.0, + 296.0, + 1112.0, + 296.0, + 1158.0, + 290.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1112.0, + 870.0, + 1112.0, + 870.0, + 1158.0, + 816.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1112.0, + 1199.0, + 1112.0, + 1199.0, + 1158.0, + 1100.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1112.0, + 1409.0, + 1112.0, + 1409.0, + 1158.0, + 1216.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1148.0, + 689.0, + 1148.0, + 689.0, + 1182.0, + 293.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1148.0, + 910.0, + 1148.0, + 910.0, + 1182.0, + 708.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1148.0, + 1406.0, + 1148.0, + 1406.0, + 1182.0, + 965.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1175.0, + 297.0, + 1175.0, + 297.0, + 1215.0, + 291.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1175.0, + 547.0, + 1175.0, + 547.0, + 1215.0, + 415.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1175.0, + 915.0, + 1175.0, + 915.0, + 1215.0, + 602.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1175.0, + 1407.0, + 1175.0, + 1407.0, + 1215.0, + 1046.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1208.0, + 439.0, + 1208.0, + 439.0, + 1247.0, + 293.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1208.0, + 886.0, + 1208.0, + 886.0, + 1247.0, + 704.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1208.0, + 1175.0, + 1208.0, + 1175.0, + 1247.0, + 904.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1263.0, + 1208.0, + 1407.0, + 1208.0, + 1407.0, + 1247.0, + 1263.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1238.0, + 297.0, + 1238.0, + 297.0, + 1278.0, + 293.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1238.0, + 959.0, + 1238.0, + 959.0, + 1278.0, + 415.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 867.0, + 1406.0, + 867.0, + 1406.0, + 905.0, + 292.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 901.0, + 1404.0, + 901.0, + 1404.0, + 934.0, + 295.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 932.0, + 777.0, + 932.0, + 777.0, + 965.0, + 295.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 932.0, + 1404.0, + 932.0, + 1404.0, + 965.0, + 804.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 962.0, + 932.0, + 962.0, + 932.0, + 996.0, + 296.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 1405.0, + 258.0, + 1405.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 1306.0, + 291.0, + 1306.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 327.0, + 1347.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 318.0, + 1405.0, + 318.0, + 1405.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 404.0, + 350.0, + 404.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 451.0, + 1941.0, + 451.0, + 1981.0, + 293.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1941.0, + 1086.0, + 1941.0, + 1086.0, + 1981.0, + 933.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1941.0, + 1408.0, + 1941.0, + 1408.0, + 1981.0, + 1121.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2003.0, + 940.0, + 2003.0, + 940.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 2003.0, + 1400.0, + 2003.0, + 1400.0, + 2039.0, + 990.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1636.0, + 378.0, + 1636.0, + 378.0, + 1670.0, + 294.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1636.0, + 519.0, + 1636.0, + 519.0, + 1670.0, + 463.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1636.0, + 1404.0, + 1636.0, + 1404.0, + 1670.0, + 609.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1667.0, + 1172.0, + 1667.0, + 1172.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1667.0, + 1405.0, + 1667.0, + 1405.0, + 1700.0, + 1195.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 1302.0, + 1698.0, + 1302.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 398.0, + 1405.0, + 398.0, + 1405.0, + 435.0, + 292.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 430.0, + 1404.0, + 430.0, + 1404.0, + 464.0, + 295.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 458.0, + 567.0, + 458.0, + 567.0, + 496.0, + 295.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 864.0, + 1789.0, + 864.0, + 1838.0, + 294.0, + 1838.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 532, + 1406, + 532, + 1406, + 845, + 297, + 845 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 936, + 1405, + 936, + 1405, + 1061, + 297, + 1061 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1250, + 1404, + 1250, + 1404, + 1344, + 298, + 1344 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 1091, + 1404, + 1091, + 1404, + 1181, + 296, + 1181 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 298, + 1674, + 1401, + 1674, + 1401, + 1739, + 298, + 1739 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 296, + 1524, + 1400, + 1524, + 1400, + 1587, + 296, + 1587 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 550, + 1595, + 1148, + 1595, + 1148, + 1663, + 550, + 1663 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 301, + 402, + 1401, + 402, + 1401, + 464, + 301, + 464 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 543, + 1177, + 1148, + 1177, + 1148, + 1244, + 543, + 1244 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 295, + 1429, + 1406, + 1429, + 1406, + 1493, + 295, + 1493 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 300, + 1823, + 1399, + 1823, + 1399, + 1888, + 300, + 1888 + ], + "score": 0.949 + }, + { + "category_id": 8, + "poly": [ + 554, + 1746, + 1143, + 1746, + 1143, + 1816, + 554, + 1816 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1406, + 1971, + 1406, + 2034, + 298, + 2034 + ], + "score": 0.945 + }, + { + "category_id": 8, + "poly": [ + 609, + 327, + 1087, + 327, + 1087, + 396, + 609, + 396 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 560, + 472, + 1141, + 472, + 1141, + 520, + 560, + 520 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 403, + 1894, + 1293, + 1894, + 1293, + 1962, + 403, + 1962 + ], + "score": 0.936 + }, + { + "category_id": 8, + "poly": [ + 390, + 1352, + 1308, + 1352, + 1308, + 1421, + 390, + 1421 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 299, + 286, + 810, + 286, + 810, + 319, + 299, + 319 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 298, + 881, + 879, + 881, + 879, + 912, + 298, + 912 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 299, + 73, + 816, + 73, + 816, + 106, + 299, + 106 + ], + "score": 0.911 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1757, + 1400, + 1757, + 1400, + 1787, + 1352, + 1787 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 346, + 1400, + 346, + 1400, + 377, + 1366, + 377 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1903, + 1400, + 1903, + 1400, + 1935, + 1352, + 1935 + ], + "score": 0.877 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 555, + 229, + 555, + 261, + 299, + 261 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1185, + 1400, + 1185, + 1400, + 1215, + 1366, + 1215 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1362, + 1400, + 1362, + 1400, + 1392, + 1366, + 1392 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 840, + 2087, + 859, + 2087, + 859, + 2112, + 840, + 2112 + ], + "score": 0.768 + }, + { + "category_id": 14, + "poly": [ + 542, + 1172, + 1148, + 1172, + 1148, + 1246, + 542, + 1246 + ], + "score": 0.94, + "latex": "\\pi ^ { k } ( s , a ) = \\exp ( W ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( W ^ { k } ( s , b ) / \\alpha ) ," + }, + { + "category_id": 13, + "poly": [ + 416, + 433, + 492, + 433, + 492, + 466, + 416, + 466 + ], + "score": 0.94, + "latex": "\\boldsymbol { q } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 924, + 566, + 1013, + 566, + 1013, + 597, + 924, + 597 + ], + "score": 0.92, + "latex": "q = Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 371, + 531, + 468, + 531, + 468, + 563, + 371, + 563 + ], + "score": 0.92, + "latex": "c \\in \\mathbb { R } ^ { | S | }" + }, + { + "category_id": 14, + "poly": [ + 550, + 1593, + 1147, + 1593, + 1147, + 1667, + 550, + 1667 + ], + "score": 0.92, + "latex": "Q ^ { k } ( s , a ) = Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) Y ^ { k } ( s , b ) + V ^ { k } ( s ) ," + }, + { + "category_id": 14, + "poly": [ + 625, + 325, + 1088, + 325, + 1088, + 397, + 625, + 397 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { \\mathrm { n i n i m i z e } } & { \\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) ) ^ { 2 } } \\\\ { \\mathrm { u b j e c t ~ t o } } & { \\sum _ { a } \\pi ( s , a ) = 1 , \\quad s \\in S } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 554, + 1745, + 1145, + 1745, + 1145, + 1819, + 554, + 1819 + ], + "score": 0.92, + "latex": "\\pi ^ { k } ( s , a ) = \\exp ( Y ^ { k } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Y ^ { k } ( s , b ) / \\alpha ) ." + }, + { + "category_id": 14, + "poly": [ + 403, + 1892, + 1295, + 1892, + 1295, + 1966, + 403, + 1966 + ], + "score": 0.91, + "latex": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\bigl ( \\nabla _ { \\theta } Y ^ { k } ( s , a ) - \\sum _ { b } \\mu ( s , b ) \\nabla _ { \\theta } Y ^ { k } ( s , b ) \\bigr ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a v } } \\nabla _ { w } V ^ { k } ( s )" + }, + { + "category_id": 14, + "poly": [ + 390, + 1350, + 1308, + 1350, + 1308, + 1425, + 390, + 1425 + ], + "score": 0.91, + "latex": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } ( \\nabla _ { \\theta } W ^ { k } ( s , a ) - \\sum _ { b } \\pi ^ { k } ( s , b ) \\nabla _ { \\theta } W ^ { k } ( s , b ) ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } \\delta _ { \\mathrm { a c } } \\nabla _ { w } V ^ { k } ( s )" + }, + { + "category_id": 13, + "poly": [ + 645, + 686, + 684, + 686, + 684, + 723, + 645, + 723 + ], + "score": 0.91, + "latex": "{ \\bf \\bar { \\cal Q } } ^ { \\pi }" + }, + { + "category_id": 14, + "poly": [ + 558, + 469, + 1138, + 469, + 1138, + 523, + 558, + 523 + ], + "score": 0.9, + "latex": "\\mathbf { E } _ { s , a } ( q ( s , a ) - \\alpha \\log \\pi ( s , a ) + c _ { s } ) \\nabla _ { \\theta } \\log \\pi ( s , a ) = 0 ," + }, + { + "category_id": 13, + "poly": [ + 373, + 1432, + 410, + 1432, + 410, + 1461, + 373, + 1461 + ], + "score": 0.9, + "latex": "\\delta _ { \\mathrm { a c } }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1974, + 414, + 1974, + 414, + 2003, + 374, + 2003 + ], + "score": 0.9, + "latex": "\\delta _ { \\mathrm { a v } }" + }, + { + "category_id": 13, + "poly": [ + 948, + 1121, + 985, + 1121, + 985, + 1151, + 948, + 1151 + ], + "score": 0.89, + "latex": "V ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1676, + 1344, + 1676, + 1344, + 1705, + 1308, + 1705 + ], + "score": 0.89, + "latex": "w ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 746, + 1254, + 829, + 1254, + 829, + 1281, + 746, + 1281 + ], + "score": 0.89, + "latex": "\\alpha > 0" + }, + { + "category_id": 13, + "poly": [ + 719, + 1675, + 758, + 1675, + 758, + 1706, + 719, + 1706 + ], + "score": 0.89, + "latex": "Y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 875, + 690, + 984, + 690, + 984, + 723, + 875, + 723 + ], + "score": 0.89, + "latex": "\\nabla _ { \\theta _ { i } } \\log \\pi" + }, + { + "category_id": 13, + "poly": [ + 551, + 690, + 591, + 690, + 591, + 722, + 551, + 722 + ], + "score": 0.89, + "latex": "Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1164, + 1122, + 1200, + 1122, + 1200, + 1151, + 1164, + 1151 + ], + "score": 0.89, + "latex": "w ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1250, + 421, + 1250, + 421, + 1279, + 374, + 1279 + ], + "score": 0.89, + "latex": "W ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 660, + 1250, + 690, + 1250, + 690, + 1279, + 660, + 1279 + ], + "score": 0.87, + "latex": "\\theta ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1281, + 1032, + 1281, + 1032, + 1318, + 296, + 1318 + ], + "score": 0.86, + "latex": "\\begin{array} { r l } { \\nabla _ { \\theta } \\log \\pi ^ { k } ( s , \\dot { a _ { ) } } = ( 1 / \\alpha ) ( \\nabla _ { \\theta } \\dot { W } ^ { k } ( s , a ) - \\sum _ { b } \\pi ( s , b ) \\nabla _ { \\theta } W ^ { k } ( \\dot { s } , b ) \\overset { \\sim } { ) } } & { { } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 924, + 1557, + 942, + 1557, + 942, + 1583, + 924, + 1583 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 373, + 1684, + 394, + 1684, + 394, + 1710, + 373, + 1710 + ], + "score": 0.82, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 708, + 1125, + 726, + 1125, + 726, + 1151, + 708, + 1151 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 449, + 403, + 467, + 403, + 467, + 429, + 449, + 429 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 731, + 434, + 747, + 434, + 747, + 459, + 731, + 459 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 485, + 1125, + 510, + 1125, + 510, + 1151, + 485, + 1151 + ], + "score": 0.8, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 707, + 408, + 726, + 408, + 726, + 430, + 707, + 430 + ], + "score": 0.79, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 895, + 1713, + 916, + 1713, + 916, + 1736, + 895, + 1736 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1334, + 1099, + 1355, + 1099, + 1355, + 1120, + 1334, + 1120 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 992, + 1675, + 1021, + 1675, + 1021, + 1706, + 992, + 1706 + ], + "score": 0.67, + "latex": "\\theta ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1087, + 693, + 1101, + 693, + 1101, + 719, + 1087, + 719 + ], + "score": 0.67, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1675, + 1074, + 1675, + 1074, + 1706, + 1035, + 1706 + ], + "score": 0.65, + "latex": "V ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 992, + 1674, + 1073, + 1674, + 1073, + 1707, + 992, + 1707 + ], + "score": 0.33, + "latex": "\\theta ^ { k } , V ^ { k }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 877.0, + 882.0, + 877.0, + 882.0, + 916.0, + 294.0, + 916.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, + 226.0, + 558.0, + 226.0, + 558.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 839.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 530.0, + 370.0, + 530.0, + 370.0, + 571.0, + 295.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 530.0, + 1406.0, + 530.0, + 1406.0, + 571.0, + 469.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 567.0, + 923.0, + 567.0, + 923.0, + 599.0, + 296.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 567.0, + 1403.0, + 567.0, + 1403.0, + 599.0, + 1014.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 597.0, + 1404.0, + 597.0, + 1404.0, + 629.0, + 295.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 623.0, + 1406.0, + 623.0, + 1406.0, + 665.0, + 292.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 655.0, + 1407.0, + 655.0, + 1407.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 550.0, + 688.0, + 550.0, + 729.0, + 294.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 688.0, + 644.0, + 688.0, + 644.0, + 729.0, + 592.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 688.0, + 874.0, + 688.0, + 874.0, + 729.0, + 685.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 688.0, + 1086.0, + 688.0, + 1086.0, + 729.0, + 985.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 688.0, + 1407.0, + 688.0, + 1407.0, + 729.0, + 1102.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 721.0, + 1406.0, + 721.0, + 1406.0, + 757.0, + 295.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 753.0, + 1404.0, + 753.0, + 1404.0, + 785.0, + 295.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 783.0, + 1404.0, + 783.0, + 1404.0, + 819.0, + 295.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 814.0, + 789.0, + 814.0, + 789.0, + 846.0, + 296.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 936.0, + 1405.0, + 936.0, + 1405.0, + 972.0, + 295.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 966.0, + 1403.0, + 966.0, + 1403.0, + 1003.0, + 294.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 998.0, + 1405.0, + 998.0, + 1405.0, + 1035.0, + 294.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1030.0, + 476.0, + 1030.0, + 476.0, + 1059.0, + 296.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1244.0, + 373.0, + 1244.0, + 373.0, + 1291.0, + 292.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1244.0, + 659.0, + 1244.0, + 659.0, + 1291.0, + 422.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1244.0, + 745.0, + 1244.0, + 745.0, + 1291.0, + 691.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1291.0, + 830.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1276.0, + 1405.0, + 1276.0, + 1405.0, + 1321.0, + 1033.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1313.0, + 512.0, + 1313.0, + 512.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1092.0, + 1333.0, + 1092.0, + 1333.0, + 1125.0, + 296.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1092.0, + 1405.0, + 1092.0, + 1405.0, + 1125.0, + 1356.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1119.0, + 484.0, + 1119.0, + 484.0, + 1159.0, + 290.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1119.0, + 707.0, + 1119.0, + 707.0, + 1159.0, + 511.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1119.0, + 947.0, + 1119.0, + 947.0, + 1159.0, + 727.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1119.0, + 1163.0, + 1119.0, + 1163.0, + 1159.0, + 986.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1119.0, + 1406.0, + 1119.0, + 1406.0, + 1159.0, + 1201.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1150.0, + 431.0, + 1150.0, + 431.0, + 1187.0, + 293.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1670.0, + 372.0, + 1670.0, + 372.0, + 1714.0, + 294.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1670.0, + 718.0, + 1670.0, + 718.0, + 1714.0, + 395.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1670.0, + 991.0, + 1670.0, + 991.0, + 1714.0, + 759.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1670.0, + 1307.0, + 1670.0, + 1307.0, + 1714.0, + 1075.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1714.0, + 1345.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1705.0, + 894.0, + 1705.0, + 894.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1705.0, + 975.0, + 1705.0, + 975.0, + 1744.0, + 917.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1522.0, + 1402.0, + 1522.0, + 1402.0, + 1559.0, + 295.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1556.0, + 923.0, + 1556.0, + 923.0, + 1591.0, + 296.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 1556.0, + 1072.0, + 1556.0, + 1072.0, + 1591.0, + 943.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 400.0, + 448.0, + 400.0, + 448.0, + 436.0, + 296.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 400.0, + 706.0, + 400.0, + 706.0, + 436.0, + 468.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 400.0, + 1405.0, + 400.0, + 1405.0, + 436.0, + 727.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 432.0, + 415.0, + 432.0, + 415.0, + 467.0, + 297.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 432.0, + 730.0, + 432.0, + 730.0, + 467.0, + 493.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 432.0, + 1254.0, + 432.0, + 1254.0, + 467.0, + 748.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1429.0, + 372.0, + 1429.0, + 372.0, + 1465.0, + 295.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1429.0, + 1404.0, + 1429.0, + 1404.0, + 1465.0, + 411.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1462.0, + 564.0, + 1462.0, + 564.0, + 1494.0, + 297.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1819.0, + 1405.0, + 1819.0, + 1405.0, + 1862.0, + 293.0, + 1862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1855.0, + 620.0, + 1855.0, + 620.0, + 1892.0, + 295.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1968.0, + 373.0, + 1968.0, + 373.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1968.0, + 1404.0, + 1968.0, + 1404.0, + 2009.0, + 415.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 472.0, + 2001.0, + 472.0, + 2034.0, + 293.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 284.0, + 812.0, + 284.0, + 812.0, + 324.0, + 295.0, + 324.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 227, + 1404, + 227, + 1404, + 628, + 297, + 628 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 658, + 1405, + 658, + 1405, + 1037, + 296, + 1037 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1130, + 1405, + 1130, + 1405, + 1348, + 297, + 1348 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1703, + 1404, + 1703, + 1404, + 1828, + 297, + 1828 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1942, + 1402, + 1942, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 378, + 1362, + 1320, + 1362, + 1320, + 1555, + 378, + 1555 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 297, + 1569, + 1404, + 1569, + 1404, + 1633, + 297, + 1633 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 607, + 1650, + 1087, + 1650, + 1087, + 1690, + 607, + 1690 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 299, + 1871, + 445, + 1871, + 445, + 1908, + 299, + 1908 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 300, + 1075, + 611, + 1075, + 611, + 1105, + 300, + 1105 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 814, + 75, + 814, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.789 + }, + { + "category_id": 14, + "poly": [ + 373, + 1361, + 1322, + 1361, + 1322, + 1557, + 373, + 1557 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { 0 } & { \\leq } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - \\mathcal { T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } ( s , a ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\pi _ { \\alpha } ( s ^ { \\prime } , b ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { \\leq } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } \\exp \\big ( ( Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ^ { \\star } ) \\big ) / \\alpha \\big ) \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) } \\\\ & { = } & { { \\bf E } _ { s ^ { \\prime } } \\sum _ { b } f _ { \\alpha } \\big ( \\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , c ) - Q ^ { \\pi _ { \\alpha } } ( s ^ { \\prime } , b ) \\big ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 980, + 661, + 1394, + 661, + 1394, + 695, + 980, + 695 + ], + "score": 0.93, + "latex": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma Q ( s ^ { \\prime } , b ) - Q ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1765, + 1240, + 1765, + 1240, + 1797, + 1019, + 1797 + ], + "score": 0.92, + "latex": "\\mathrm { l i m } _ { \\alpha \\to 0 } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 992, + 227, + 1119, + 227, + 1119, + 259, + 992, + 259 + ], + "score": 0.92, + "latex": "W ^ { k } = Y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1283, + 322, + 1401, + 322, + 1401, + 354, + 1283, + 354 + ], + "score": 0.92, + "latex": "\\delta _ { \\mathrm { a c } } = \\delta _ { \\mathrm { a v } }" + }, + { + "category_id": 13, + "poly": [ + 608, + 848, + 1089, + 848, + 1089, + 882, + 608, + 882 + ], + "score": 0.92, + "latex": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } Q ( s ^ { \\prime } , b ) - Q ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 710, + 410, + 839, + 410, + 839, + 441, + 710, + 441 + ], + "score": 0.92, + "latex": "W ^ { \\widetilde { k } } = Y ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 817, + 1362, + 817, + 1362, + 851, + 1096, + 851 + ], + "score": 0.92, + "latex": "Q ^ { \\pi } = r ( s , a ) + \\gamma V ( s ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1224, + 1393, + 1224, + 1393, + 1255, + 1077, + 1255 + ], + "score": 0.92, + "latex": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } \\geq { \\mathcal { T } } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } = Q ^ { \\pi _ { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1314, + 529, + 1314, + 529, + 1348, + 298, + 1348 + ], + "score": 0.92, + "latex": "\\operatorname* { m a x } _ { c } Q ^ { \\pi _ { \\alpha } } ( s , c ) ) / \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 1270, + 878, + 1405, + 878, + 1405, + 912, + 1270, + 912 + ], + "score": 0.91, + "latex": "Q ^ { \\pi } ( s , a ) =" + }, + { + "category_id": 13, + "poly": [ + 612, + 1132, + 866, + 1132, + 866, + 1165, + 612, + 1165 + ], + "score": 0.91, + "latex": "\\| \\mathcal { T } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0" + }, + { + "category_id": 13, + "poly": [ + 374, + 1705, + 436, + 1705, + 436, + 1737, + 374, + 1737 + ], + "score": 0.91, + "latex": "( s , a )" + }, + { + "category_id": 13, + "poly": [ + 496, + 1570, + 768, + 1570, + 768, + 1604, + 496, + 1604 + ], + "score": 0.91, + "latex": "f _ { \\alpha } ( x ) = x \\exp ( - x / \\alpha )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1600, + 628, + 1600, + 628, + 1634, + 297, + 1634 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\operatorname* { s u p } _ { x } f _ { \\alpha } ( x ) = f _ { \\alpha } ( \\alpha ) \\stackrel { \\cdot } { = } \\alpha \\mathrm { e } ^ { - 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 520, + 723, + 880, + 723, + 880, + 759, + 520, + 759 + ], + "score": 0.91, + "latex": "Q ^ { \\pi } ( s , a ) = r ( s , a ) + \\gamma \\tilde { Q } ( s ^ { \\prime } , b )" + }, + { + "category_id": 13, + "poly": [ + 329, + 787, + 692, + 787, + 692, + 821, + 329, + 821 + ], + "score": 0.9, + "latex": "\\delta _ { \\mathrm { a v } } = r ( s , a ) + \\gamma V ( \\bar { s ^ { \\prime } } ) - Q ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1570, + 1403, + 1570, + 1403, + 1605, + 1296, + 1605 + ], + "score": 0.9, + "latex": "f _ { \\alpha } ( x ) \\ \\leq" + }, + { + "category_id": 14, + "poly": [ + 605, + 1647, + 1091, + 1647, + 1091, + 1689, + 605, + 1689 + ], + "score": 0.9, + "latex": "0 \\leq \\mathcal T ^ { \\star } Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( s , a ) \\leq | { \\mathcal A } | \\alpha \\mathrm { e } ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 870, + 1254, + 1091, + 1254, + 1091, + 1285, + 870, + 1285 + ], + "score": 0.89, + "latex": "{ \\mathcal { T } } ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 701, + 1165, + 752, + 1165, + 752, + 1194, + 701, + 1194 + ], + "score": 0.89, + "latex": "Q ^ { \\pi _ { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 1311, + 229, + 1352, + 229, + 1352, + 259, + 1311, + 259 + ], + "score": 0.88, + "latex": "X ^ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1288, + 381, + 1322, + 381, + 1322, + 411, + 1288, + 411 + ], + "score": 0.88, + "latex": "\\pi ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 297, + 910, + 600, + 910, + 600, + 946, + 297, + 946 + ], + "score": 0.87, + "latex": "r ( s , a ) + \\gamma \\operatorname* { m a x } _ { b } \\tilde { Q } ^ { \\pi } ( s ^ { \\prime } , b )" + }, + { + "category_id": 13, + "poly": [ + 348, + 945, + 835, + 945, + 835, + 979, + 348, + 979 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = ( \\sum _ { t = 0 } ^ { \\infty } \\gamma ^ { t } r _ { t } \\ | \\ s _ { 0 } = s , a _ { 0 } = a ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 361, + 1255, + 398, + 1255, + 398, + 1283, + 361, + 1283 + ], + "score": 0.86, + "latex": "\\mathcal { T } ^ { \\star }" + }, + { + "category_id": 13, + "poly": [ + 297, + 259, + 336, + 259, + 336, + 290, + 297, + 290 + ], + "score": 0.86, + "latex": "Y ^ { \\tilde { 0 } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 564, + 951, + 564, + 951, + 600, + 297, + 600 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { W ( s , a ) - \\sum _ { b } \\pi ( s , b ) W ( s , b ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 728, + 693, + 751, + 693, + 751, + 720, + 728, + 720 + ], + "score": 0.84, + "latex": "s ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1167, + 332, + 1167, + 332, + 1193, + 298, + 1193 + ], + "score": 0.84, + "latex": "\\pi _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 1120, + 388, + 1142, + 388, + 1142, + 415, + 1120, + 415 + ], + "score": 0.81, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1203, + 231, + 1222, + 231, + 1222, + 258, + 1203, + 258 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 456, + 1739, + 478, + 1739, + 478, + 1762, + 456, + 1762 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 996, + 980, + 1016, + 980, + 1016, + 1002, + 996, + 1002 + ], + "score": 0.76, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 441, + 1199, + 462, + 1199, + 462, + 1221, + 441, + 1221 + ], + "score": 0.76, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 477, + 982, + 496, + 982, + 496, + 1002, + 477, + 1002 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 539, + 1284, + 1401, + 1284, + 1401, + 1320, + 539, + 1320 + ], + "score": 0.74, + "latex": "\\begin{array} { r } { \\pi _ { \\alpha } ( s , a ) = \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , a ) / \\alpha ) / \\sum _ { b } \\exp ( Q ^ { \\pi _ { \\alpha } } ( s , b ) / \\alpha ) \\leq \\exp ( ( Q ^ { \\pi _ { \\alpha } } ( s , a ) - Q ^ { \\pi _ { \\alpha } } ( a , b ) ) ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1153, + 1712, + 1173, + 1712, + 1173, + 1732, + 1153, + 1732 + ], + "score": 0.74, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1139, + 1319, + 1139, + 1319, + 1160, + 1298, + 1160 + ], + "score": 0.73, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 793, + 981, + 812, + 981, + 812, + 1002, + 793, + 1002 + ], + "score": 0.73, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 628, + 505, + 684, + 505, + 684, + 536, + 628, + 536 + ], + "score": 0.72, + "latex": "\\ S 2 . 2 )" + }, + { + "category_id": 13, + "poly": [ + 373, + 694, + 390, + 694, + 390, + 720, + 373, + 720 + ], + "score": 0.68, + "latex": "b" + }, + { + "category_id": 13, + "poly": [ + 994, + 1164, + 1019, + 1164, + 1019, + 1195, + 994, + 1195 + ], + "score": 0.33, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1866.0, + 452.0, + 1866.0, + 452.0, + 1922.0, + 290.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1074.0, + 618.0, + 1074.0, + 618.0, + 1109.0, + 294.0, + 1109.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": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 991.0, + 225.0, + 991.0, + 264.0, + 292.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 225.0, + 1202.0, + 225.0, + 1202.0, + 264.0, + 1120.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 225.0, + 1310.0, + 225.0, + 1310.0, + 264.0, + 1223.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 225.0, + 1406.0, + 225.0, + 1406.0, + 264.0, + 1353.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 296.0, + 257.0, + 296.0, + 297.0, + 292.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 257.0, + 1406.0, + 257.0, + 1406.0, + 297.0, + 337.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1282.0, + 321.0, + 1282.0, + 361.0, + 294.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 361.0, + 1402.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 353.0, + 1405.0, + 353.0, + 1405.0, + 386.0, + 295.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 379.0, + 1119.0, + 379.0, + 1119.0, + 418.0, + 290.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 379.0, + 1287.0, + 379.0, + 1287.0, + 418.0, + 1143.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 379.0, + 1407.0, + 379.0, + 1407.0, + 418.0, + 1323.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 405.0, + 709.0, + 405.0, + 709.0, + 452.0, + 290.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 405.0, + 1407.0, + 405.0, + 1407.0, + 452.0, + 840.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 441.0, + 1406.0, + 441.0, + 1406.0, + 481.0, + 292.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 476.0, + 1404.0, + 476.0, + 1404.0, + 508.0, + 294.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 506.0, + 627.0, + 506.0, + 627.0, + 538.0, + 295.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 506.0, + 1402.0, + 506.0, + 1402.0, + 538.0, + 685.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 532.0, + 1404.0, + 532.0, + 1404.0, + 572.0, + 292.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 563.0, + 1405.0, + 563.0, + 1405.0, + 604.0, + 952.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 596.0, + 588.0, + 596.0, + 588.0, + 630.0, + 295.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 659.0, + 979.0, + 659.0, + 979.0, + 698.0, + 294.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 659.0, + 1403.0, + 659.0, + 1403.0, + 698.0, + 1395.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 372.0, + 690.0, + 372.0, + 728.0, + 294.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 690.0, + 727.0, + 690.0, + 727.0, + 728.0, + 391.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 690.0, + 1406.0, + 690.0, + 1406.0, + 728.0, + 752.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 727.0, + 519.0, + 727.0, + 519.0, + 761.0, + 296.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 727.0, + 1403.0, + 727.0, + 1403.0, + 761.0, + 881.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 785.0, + 328.0, + 785.0, + 328.0, + 824.0, + 293.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 785.0, + 1406.0, + 785.0, + 1406.0, + 824.0, + 693.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 815.0, + 1095.0, + 815.0, + 1095.0, + 852.0, + 293.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 815.0, + 1406.0, + 815.0, + 1406.0, + 852.0, + 1363.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 845.0, + 607.0, + 845.0, + 607.0, + 886.0, + 293.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 845.0, + 1406.0, + 845.0, + 1406.0, + 886.0, + 1090.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 876.0, + 1269.0, + 876.0, + 1269.0, + 915.0, + 293.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 911.0, + 1406.0, + 911.0, + 1406.0, + 950.0, + 601.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 927.0, + 347.0, + 927.0, + 347.0, + 993.0, + 284.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 927.0, + 1415.0, + 927.0, + 1415.0, + 993.0, + 836.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 975.0, + 476.0, + 975.0, + 476.0, + 1010.0, + 295.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 975.0, + 792.0, + 975.0, + 792.0, + 1010.0, + 497.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 975.0, + 995.0, + 975.0, + 995.0, + 1010.0, + 813.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 975.0, + 1405.0, + 975.0, + 1405.0, + 1010.0, + 1017.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1006.0, + 833.0, + 1006.0, + 833.0, + 1041.0, + 295.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1130.0, + 611.0, + 1130.0, + 611.0, + 1168.0, + 294.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1130.0, + 1297.0, + 1130.0, + 1297.0, + 1168.0, + 867.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1320.0, + 1130.0, + 1406.0, + 1130.0, + 1406.0, + 1168.0, + 1320.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 297.0, + 1161.0, + 297.0, + 1199.0, + 294.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1161.0, + 700.0, + 1161.0, + 700.0, + 1199.0, + 333.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 1161.0, + 993.0, + 1161.0, + 993.0, + 1199.0, + 753.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 1161.0, + 1406.0, + 1161.0, + 1406.0, + 1199.0, + 1020.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 440.0, + 1192.0, + 440.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1229.0, + 463.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1222.0, + 1076.0, + 1222.0, + 1076.0, + 1260.0, + 294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1222.0, + 1403.0, + 1222.0, + 1403.0, + 1260.0, + 1394.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1251.0, + 360.0, + 1251.0, + 360.0, + 1290.0, + 294.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 1251.0, + 869.0, + 1251.0, + 869.0, + 1290.0, + 399.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1251.0, + 1406.0, + 1251.0, + 1406.0, + 1290.0, + 1092.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 538.0, + 1284.0, + 538.0, + 1322.0, + 294.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1314.0, + 297.0, + 1314.0, + 297.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1314.0, + 762.0, + 1314.0, + 762.0, + 1352.0, + 530.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1702.0, + 373.0, + 1702.0, + 373.0, + 1737.0, + 295.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1702.0, + 1152.0, + 1702.0, + 1152.0, + 1737.0, + 437.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1702.0, + 1404.0, + 1702.0, + 1404.0, + 1737.0, + 1174.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1735.0, + 455.0, + 1735.0, + 455.0, + 1768.0, + 295.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1735.0, + 1404.0, + 1735.0, + 1404.0, + 1768.0, + 479.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1764.0, + 1018.0, + 1764.0, + 1018.0, + 1801.0, + 295.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1764.0, + 1405.0, + 1764.0, + 1405.0, + 1801.0, + 1241.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1796.0, + 386.0, + 1796.0, + 386.0, + 1832.0, + 289.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1402.0, + 1942.0, + 1402.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1564.0, + 495.0, + 1564.0, + 495.0, + 1607.0, + 295.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1564.0, + 1295.0, + 1564.0, + 1295.0, + 1607.0, + 769.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1597.0, + 296.0, + 1597.0, + 296.0, + 1636.0, + 292.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1597.0, + 790.0, + 1597.0, + 790.0, + 1636.0, + 629.0, + 1636.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1251, + 1405, + 1251, + 1405, + 1648, + 297, + 1648 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1850, + 1403, + 1850, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 338, + 1404, + 338, + 1404, + 461, + 298, + 461 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 652, + 1403, + 652, + 1403, + 745, + 298, + 745 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 993, + 1401, + 993, + 1401, + 1118, + 300, + 1118 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 301, + 1741, + 1402, + 1741, + 1402, + 1835, + 301, + 1835 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1401, + 229, + 1401, + 324, + 299, + 324 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 299, + 759, + 1400, + 759, + 1400, + 824, + 299, + 824 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 594, + 602, + 1100, + 602, + 1100, + 642, + 594, + 642 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 294, + 917, + 1399, + 917, + 1399, + 980, + 294, + 980 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 301, + 554, + 789, + 554, + 789, + 588, + 301, + 588 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 298, + 497, + 545, + 497, + 545, + 529, + 298, + 529 + ], + "score": 0.909 + }, + { + "category_id": 9, + "poly": [ + 1352, + 606, + 1399, + 606, + 1399, + 637, + 1352, + 637 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1169, + 1400, + 1169, + 1400, + 1199, + 1352, + 1199 + ], + "score": 0.897 + }, + { + "category_id": 8, + "poly": [ + 298, + 834, + 1390, + 834, + 1390, + 890, + 298, + 890 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 302, + 1686, + 723, + 1686, + 723, + 1716, + 302, + 1716 + ], + "score": 0.889 + }, + { + "category_id": 9, + "poly": [ + 1352, + 888, + 1399, + 888, + 1399, + 916, + 1352, + 916 + ], + "score": 0.881 + }, + { + "category_id": 8, + "poly": [ + 437, + 1131, + 1261, + 1131, + 1261, + 1240, + 437, + 1240 + ], + "score": 0.816 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 858, + 2087, + 858, + 2111, + 842, + 2111 + ], + "score": 0.65 + }, + { + "category_id": 8, + "poly": [ + 439, + 1131, + 1261, + 1131, + 1261, + 1174, + 439, + 1174 + ], + "score": 0.495 + }, + { + "category_id": 8, + "poly": [ + 469, + 1194, + 1237, + 1194, + 1237, + 1240, + 469, + 1240 + ], + "score": 0.415 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 859, + 2087, + 859, + 2111, + 842, + 2111 + ], + "score": 0.255 + }, + { + "category_id": 8, + "poly": [ + 439, + 1131, + 1260, + 1131, + 1260, + 1174, + 439, + 1174 + ], + "score": 0.093 + }, + { + "category_id": 14, + "poly": [ + 594, + 599, + 1100, + 599, + 1100, + 642, + 594, + 642 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } ( s , a ) = \\alpha ( \\log \\pi ( s , a ) + H ^ { \\pi } ( s ) ) + V ( s ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 516, + 1087, + 579, + 1087, + 579, + 1120, + 516, + 1120 + ], + "score": 0.92, + "latex": "( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1272, + 1283, + 1345, + 1283, + 1345, + 1314, + 1272, + 1314 + ], + "score": 0.92, + "latex": "\\eta = 1" + }, + { + "category_id": 13, + "poly": [ + 354, + 1251, + 468, + 1251, + 468, + 1284, + 354, + 1284 + ], + "score": 0.91, + "latex": "\\eta \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 428, + 1284, + 502, + 1284, + 502, + 1314, + 428, + 1314 + ], + "score": 0.91, + "latex": "\\eta = 0" + }, + { + "category_id": 13, + "poly": [ + 885, + 1056, + 924, + 1056, + 924, + 1087, + 885, + 1087 + ], + "score": 0.89, + "latex": "Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1084, + 1744, + 1123, + 1744, + 1123, + 1775, + 1084, + 1775 + ], + "score": 0.89, + "latex": "Q ^ { \\pi }" + }, + { + "category_id": 14, + "poly": [ + 310, + 833, + 1401, + 833, + 1401, + 891, + 310, + 891 + ], + "score": 0.89, + "latex": "\\Delta \\theta \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { \\theta } \\log \\pi ( s , a ) , \\quad \\Delta w \\propto \\underset { s , a } { \\mathbf { E } } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } ( s , a ) - \\tilde { Q } ^ { \\pi } ( s , a ) ) \\nabla _ { w } V ( s ) ." + }, + { + "category_id": 13, + "poly": [ + 1278, + 339, + 1318, + 339, + 1318, + 371, + 1278, + 371 + ], + "score": 0.88, + "latex": "Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 840, + 654, + 880, + 654, + 880, + 682, + 840, + 682 + ], + "score": 0.88, + "latex": "V ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 549, + 557, + 573, + 557, + 573, + 588, + 549, + 588 + ], + "score": 0.87, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 562, + 1057, + 587, + 1057, + 587, + 1083, + 562, + 1083 + ], + "score": 0.81, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 799, + 1348, + 819, + 1348, + 819, + 1375, + 799, + 1375 + ], + "score": 0.79, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 571, + 660, + 595, + 660, + 595, + 681, + 571, + 681 + ], + "score": 0.79, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 371, + 655, + 396, + 655, + 396, + 681, + 371, + 681 + ], + "score": 0.78, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1191, + 768, + 1211, + 768, + 1211, + 788, + 1191, + 788 + ], + "score": 0.75, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1353, + 1032, + 1372, + 1032, + 1372, + 1054, + 1353, + 1054 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 14, + "poly": [ + 437, + 1129, + 1263, + 1129, + 1263, + 1174, + 437, + 1174 + ], + "score": 0.61, + "latex": "\\Delta \\theta \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi ," + }, + { + "category_id": 14, + "poly": [ + 471, + 1192, + 1247, + 1192, + 1247, + 1239, + 471, + 1239 + ], + "score": 0.56, + "latex": "\\Delta w \\propto ( 1 - \\eta ) { \\bf E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V + \\eta { \\bf E } _ { s , a } ( T ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V ," + }, + { + "category_id": 14, + "poly": [ + 452, + 1126, + 1262, + 1126, + 1262, + 1243, + 452, + 1243 + ], + "score": 0.55, + "latex": "\\begin{array} { r l } & { \\begin{array} { r l } & { \\beth \\theta \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { \\theta } \\log \\pi , } \\end{array} } \\\\ & { \\begin{array} { r l } & { \\Delta w \\propto ( 1 - \\eta ) \\mathbf { E } _ { s , a } ( Q ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V + \\eta \\mathbf { E } _ { s , a } ( \\mathcal { T } ^ { \\star } \\tilde { Q } ^ { \\pi } - \\tilde { Q } ^ { \\pi } ) \\nabla _ { w } V , } \\end{array} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 907, + 919, + 932, + 919, + 932, + 949, + 907, + 949 + ], + "score": 0.26, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 493.0, + 549.0, + 493.0, + 549.0, + 536.0, + 293.0, + 536.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": [ + 297.0, + 1686.0, + 728.0, + 1686.0, + 728.0, + 1718.0, + 297.0, + 1718.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": [ + 840.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1253.0, + 353.0, + 1253.0, + 353.0, + 1285.0, + 295.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1253.0, + 1403.0, + 1253.0, + 1403.0, + 1285.0, + 469.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 427.0, + 1280.0, + 427.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1280.0, + 1271.0, + 1280.0, + 1271.0, + 1316.0, + 503.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1346.0, + 1280.0, + 1403.0, + 1280.0, + 1403.0, + 1316.0, + 1346.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1346.0, + 295.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1342.0, + 798.0, + 1342.0, + 798.0, + 1378.0, + 295.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 1342.0, + 1405.0, + 1342.0, + 1405.0, + 1378.0, + 820.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1373.0, + 1405.0, + 1373.0, + 1405.0, + 1409.0, + 295.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1403.0, + 1406.0, + 1403.0, + 1406.0, + 1439.0, + 295.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1434.0, + 1403.0, + 1434.0, + 1403.0, + 1466.0, + 295.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1465.0, + 1403.0, + 1465.0, + 1403.0, + 1497.0, + 295.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1493.0, + 1405.0, + 1493.0, + 1405.0, + 1531.0, + 292.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1523.0, + 1407.0, + 1523.0, + 1407.0, + 1563.0, + 294.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1556.0, + 1405.0, + 1556.0, + 1405.0, + 1592.0, + 295.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1587.0, + 1405.0, + 1587.0, + 1405.0, + 1623.0, + 294.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1616.0, + 870.0, + 1616.0, + 870.0, + 1653.0, + 295.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 1405.0, + 1848.0, + 1405.0, + 1888.0, + 294.0, + 1888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1405.0, + 1941.0, + 1405.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, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 336.0, + 1277.0, + 336.0, + 1277.0, + 374.0, + 293.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 336.0, + 1408.0, + 336.0, + 1408.0, + 374.0, + 1319.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 370.0, + 1405.0, + 370.0, + 1405.0, + 403.0, + 294.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 398.0, + 1404.0, + 398.0, + 1404.0, + 437.0, + 292.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 426.0, + 1219.0, + 426.0, + 1219.0, + 467.0, + 292.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 650.0, + 370.0, + 650.0, + 370.0, + 689.0, + 293.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 650.0, + 570.0, + 650.0, + 570.0, + 689.0, + 397.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 650.0, + 839.0, + 650.0, + 839.0, + 689.0, + 596.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 650.0, + 1407.0, + 650.0, + 1407.0, + 689.0, + 881.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 684.0, + 1405.0, + 684.0, + 1405.0, + 718.0, + 294.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 712.0, + 1398.0, + 712.0, + 1398.0, + 747.0, + 292.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 993.0, + 1405.0, + 993.0, + 1405.0, + 1030.0, + 295.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1023.0, + 1352.0, + 1023.0, + 1352.0, + 1063.0, + 294.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1023.0, + 1406.0, + 1023.0, + 1406.0, + 1063.0, + 1373.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1055.0, + 561.0, + 1055.0, + 561.0, + 1092.0, + 295.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1055.0, + 884.0, + 1055.0, + 884.0, + 1092.0, + 588.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1055.0, + 1406.0, + 1055.0, + 1406.0, + 1092.0, + 925.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1088.0, + 515.0, + 1088.0, + 515.0, + 1121.0, + 296.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 1088.0, + 689.0, + 1088.0, + 689.0, + 1121.0, + 580.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 1083.0, + 1741.0, + 1083.0, + 1778.0, + 295.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1778.0, + 1124.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1770.0, + 1405.0, + 1770.0, + 1405.0, + 1811.0, + 294.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1803.0, + 1236.0, + 1803.0, + 1236.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1407.0, + 228.0, + 1407.0, + 269.0, + 294.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 290.0, + 1017.0, + 290.0, + 1017.0, + 330.0, + 293.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 761.0, + 1190.0, + 761.0, + 1190.0, + 793.0, + 297.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 761.0, + 1404.0, + 761.0, + 1404.0, + 793.0, + 1212.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 789.0, + 1345.0, + 789.0, + 1345.0, + 829.0, + 295.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 913.0, + 906.0, + 913.0, + 906.0, + 955.0, + 293.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 913.0, + 1405.0, + 913.0, + 1405.0, + 955.0, + 933.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 947.0, + 1075.0, + 947.0, + 1075.0, + 982.0, + 294.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 548.0, + 548.0, + 548.0, + 548.0, + 595.0, + 294.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 548.0, + 792.0, + 548.0, + 792.0, + 595.0, + 574.0, + 595.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 772, + 1404, + 772, + 1404, + 1081, + 297, + 1081 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1501, + 1403, + 1501, + 1403, + 1666, + 298, + 1666 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1833, + 1403, + 1833, + 1403, + 1957, + 299, + 1957 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1095, + 1403, + 1095, + 1403, + 1219, + 298, + 1219 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1311, + 1403, + 1311, + 1403, + 1444, + 297, + 1444 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 442, + 246, + 1246, + 246, + 1246, + 648, + 442, + 648 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 682, + 1452, + 1010, + 1452, + 1010, + 1494, + 682, + 1494 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1400, + 1971, + 1400, + 2034, + 298, + 2034 + ], + "score": 0.94 + }, + { + "category_id": 4, + "poly": [ + 658, + 674, + 1032, + 674, + 1032, + 707, + 658, + 707 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1776, + 527, + 1776, + 527, + 1808, + 299, + 1808 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 299, + 1255, + 647, + 1255, + 647, + 1286, + 299, + 1286 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 301, + 1709, + 738, + 1709, + 738, + 1744, + 301, + 1744 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1459, + 1399, + 1459, + 1399, + 1489, + 1353, + 1489 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.798 + }, + { + "category_id": 13, + "poly": [ + 299, + 1538, + 498, + 1538, + 498, + 1576, + 299, + 1576 + ], + "score": 0.92, + "latex": "\\lVert \\tilde { Q } ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 1372, + 487, + 1372, + 487, + 1409, + 297, + 1409 + ], + "score": 0.92, + "latex": "\\pi \\propto \\exp ( \\tilde { Q } ^ { \\pi } / \\bar { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 395, + 1409, + 507, + 1409, + 507, + 1443, + 395, + 1443 + ], + "score": 0.91, + "latex": "\\tilde { Q } ^ { \\pi } = Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1372, + 722, + 1372, + 722, + 1409, + 683, + 1409 + ], + "score": 0.91, + "latex": "{ \\tilde { Q } } ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 602, + 1542, + 837, + 1542, + 837, + 1576, + 602, + 1576 + ], + "score": 0.91, + "latex": "\\lVert \\mathcal { T } ^ { \\star } Q ^ { \\pi } - Q ^ { \\pi } \\rVert \\to 0" + }, + { + "category_id": 13, + "poly": [ + 683, + 1501, + 1060, + 1501, + 1060, + 1542, + 683, + 1542 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) \\sum _ { k = 0 } ^ { \\infty } \\eta ^ { k } ( \\mathcal { T } ^ { \\star } ) ^ { k } Q ^ { \\pi } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 505, + 1507, + 573, + 1507, + 573, + 1538, + 505, + 1538 + ], + "score": 0.9, + "latex": "\\eta < 1" + }, + { + "category_id": 14, + "poly": [ + 682, + 1450, + 1009, + 1450, + 1009, + 1493, + 682, + 1493 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\tilde { Q } ^ { \\pi } = ( 1 - \\eta ) Q ^ { \\pi } + \\eta T ^ { \\star } \\tilde { Q } ^ { \\pi } , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 576, + 1412, + 615, + 1412, + 615, + 1443, + 576, + 1443 + ], + "score": 0.9, + "latex": "Q ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1926, + 1311, + 1926, + 1311, + 1958, + 1205, + 1958 + ], + "score": 0.9, + "latex": "\\gamma = 0 . 9 5" + }, + { + "category_id": 13, + "poly": [ + 862, + 1926, + 983, + 1926, + 983, + 1955, + 862, + 1955 + ], + "score": 0.88, + "latex": "\\alpha = 0 . 0 0 1" + }, + { + "category_id": 13, + "poly": [ + 364, + 1579, + 385, + 1579, + 385, + 1600, + 364, + 1600 + ], + "score": 0.8, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1089, + 1417, + 1109, + 1417, + 1109, + 1439, + 1089, + 1439 + ], + "score": 0.78, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1549, + 1047, + 1549, + 1047, + 1570, + 1025, + 1570 + ], + "score": 0.76, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 861, + 1866, + 895, + 1866, + 895, + 1893, + 861, + 1893 + ], + "score": 0.68, + "latex": "\\mathbf { \\partial } ^ { \\bullet } \\mathbf { S } ^ { \\bullet }" + }, + { + "category_id": 13, + "poly": [ + 329, + 1343, + 358, + 1343, + 358, + 1374, + 329, + 1374 + ], + "score": 0.65, + "latex": "\\ S 3" + }, + { + "category_id": 13, + "poly": [ + 712, + 1576, + 736, + 1576, + 736, + 1604, + 712, + 1604 + ], + "score": 0.41, + "latex": "\\mathbf { Q }" + }, + { + "category_id": 13, + "poly": [ + 521, + 1575, + 545, + 1575, + 545, + 1604, + 521, + 1604 + ], + "score": 0.38, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 13, + "poly": [ + 676, + 1605, + 701, + 1605, + 701, + 1635, + 676, + 1635 + ], + "score": 0.26, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 247.0, + 816.0, + 247.0, + 816.0, + 280.0, + 773.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 265.0, + 784.0, + 265.0, + 784.0, + 567.0, + 753.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 299.0, + 813.0, + 299.0, + 813.0, + 329.0, + 775.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 349.0, + 812.0, + 349.0, + 812.0, + 379.0, + 775.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 393.0, + 495.0, + 393.0, + 495.0, + 444.0, + 443.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 399.0, + 812.0, + 399.0, + 812.0, + 430.0, + 775.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 449.0, + 812.0, + 449.0, + 812.0, + 479.0, + 775.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 477.0, + 1230.0, + 477.0, + 1230.0, + 507.0, + 1135.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 504.0, + 809.0, + 504.0, + 809.0, + 526.0, + 778.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 500.0, + 1232.0, + 500.0, + 1232.0, + 536.0, + 1133.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 524.0, + 660.0, + 524.0, + 660.0, + 566.0, + 613.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 525.0, + 1198.0, + 525.0, + 1198.0, + 559.0, + 1132.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 554.0, + 811.0, + 554.0, + 811.0, + 576.0, + 777.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 571.0, + 820.0, + 571.0, + 820.0, + 589.0, + 805.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 564.0, + 1237.0, + 564.0, + 1237.0, + 595.0, + 847.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 590.0, + 1075.0, + 590.0, + 1075.0, + 612.0, + 975.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 615.0, + 652.0, + 615.0, + 652.0, + 649.0, + 489.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 617.0, + 1251.0, + 617.0, + 1251.0, + 651.0, + 768.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 540.5, + 840.0, + 540.5, + 840.0, + 547.5, + 822.0, + 547.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 672.0, + 1034.0, + 672.0, + 1034.0, + 711.0, + 656.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1772.0, + 530.0, + 1772.0, + 530.0, + 1814.0, + 292.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1255.0, + 650.0, + 1255.0, + 650.0, + 1288.0, + 296.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1706.0, + 743.0, + 1706.0, + 743.0, + 1749.0, + 293.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 860.0, + 2085.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 773.0, + 1405.0, + 773.0, + 1405.0, + 808.0, + 294.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1402.0, + 805.0, + 1402.0, + 841.0, + 294.0, + 841.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 836.0, + 1404.0, + 836.0, + 1404.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 868.0, + 1402.0, + 868.0, + 1402.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 897.0, + 1406.0, + 897.0, + 1406.0, + 933.0, + 294.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 925.0, + 1405.0, + 925.0, + 1405.0, + 962.0, + 292.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 953.0, + 1405.0, + 953.0, + 1405.0, + 996.0, + 292.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 987.0, + 1405.0, + 987.0, + 1405.0, + 1026.0, + 296.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 1404.0, + 1017.0, + 1404.0, + 1056.0, + 294.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1048.0, + 1215.0, + 1048.0, + 1215.0, + 1084.0, + 294.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1492.0, + 504.0, + 1492.0, + 504.0, + 1552.0, + 288.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1492.0, + 682.0, + 1492.0, + 682.0, + 1552.0, + 574.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1492.0, + 1414.0, + 1492.0, + 1414.0, + 1552.0, + 1061.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 1539.0, + 601.0, + 1539.0, + 601.0, + 1578.0, + 499.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1539.0, + 1024.0, + 1539.0, + 1024.0, + 1578.0, + 838.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1539.0, + 1405.0, + 1539.0, + 1405.0, + 1578.0, + 1048.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1573.0, + 363.0, + 1573.0, + 363.0, + 1606.0, + 294.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1573.0, + 520.0, + 1573.0, + 520.0, + 1606.0, + 386.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1573.0, + 711.0, + 1573.0, + 711.0, + 1606.0, + 546.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1573.0, + 1405.0, + 1573.0, + 1405.0, + 1606.0, + 737.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 675.0, + 1604.0, + 675.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1604.0, + 1403.0, + 1604.0, + 1403.0, + 1637.0, + 702.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1633.0, + 936.0, + 1633.0, + 936.0, + 1669.0, + 293.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1832.0, + 1405.0, + 1832.0, + 1405.0, + 1869.0, + 292.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1865.0, + 860.0, + 1865.0, + 860.0, + 1897.0, + 297.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1865.0, + 1405.0, + 1865.0, + 1405.0, + 1897.0, + 896.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 1405.0, + 1895.0, + 1405.0, + 1928.0, + 294.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1927.0, + 861.0, + 1927.0, + 861.0, + 1959.0, + 295.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1927.0, + 1204.0, + 1927.0, + 1204.0, + 1959.0, + 984.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1927.0, + 1319.0, + 1927.0, + 1319.0, + 1959.0, + 1312.0, + 1959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1094.0, + 1404.0, + 1094.0, + 1404.0, + 1133.0, + 293.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1127.0, + 1407.0, + 1127.0, + 1407.0, + 1163.0, + 294.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1157.0, + 1407.0, + 1157.0, + 1407.0, + 1193.0, + 294.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1187.0, + 1403.0, + 1187.0, + 1403.0, + 1220.0, + 296.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1312.0, + 1405.0, + 1312.0, + 1405.0, + 1346.0, + 295.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1340.0, + 328.0, + 1340.0, + 328.0, + 1380.0, + 292.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1340.0, + 1404.0, + 1340.0, + 1404.0, + 1380.0, + 359.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 296.0, + 1375.0, + 296.0, + 1413.0, + 293.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1375.0, + 682.0, + 1375.0, + 682.0, + 1413.0, + 488.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1375.0, + 1407.0, + 1375.0, + 1407.0, + 1413.0, + 723.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1410.0, + 394.0, + 1410.0, + 394.0, + 1448.0, + 295.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1410.0, + 575.0, + 1410.0, + 575.0, + 1448.0, + 508.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1410.0, + 1088.0, + 1410.0, + 1088.0, + 1448.0, + 616.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1410.0, + 1272.0, + 1410.0, + 1272.0, + 1448.0, + 1110.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1968.0, + 1405.0, + 1968.0, + 1405.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 1402.0, + 1999.0, + 1402.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1239, + 1404, + 1239, + 1404, + 1696, + 298, + 1696 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1712, + 1402, + 1712, + 1402, + 1926, + 298, + 1926 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 673, + 1404, + 673, + 1404, + 888, + 298, + 888 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1042, + 1403, + 1042, + 1403, + 1134, + 299, + 1134 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 903, + 1403, + 903, + 1403, + 1027, + 299, + 1027 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1401, + 1942, + 1401, + 2034, + 300, + 2034 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 608, + 229, + 1074, + 229, + 1074, + 537, + 608, + 537 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 621, + 561, + 1067, + 561, + 1067, + 594, + 621, + 594 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 814, + 76, + 814, + 104, + 299, + 104 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 299, + 1179, + 440, + 1179, + 440, + 1210, + 299, + 1210 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.788 + }, + { + "category_id": 13, + "poly": [ + 1054, + 1835, + 1150, + 1835, + 1150, + 1864, + 1054, + 1864 + ], + "score": 0.89, + "latex": "\\alpha = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 944, + 1635, + 1005, + 1635, + 1005, + 1664, + 944, + 1664 + ], + "score": 0.87, + "latex": "1 0 0 k" + }, + { + "category_id": 13, + "poly": [ + 1382, + 1578, + 1402, + 1578, + 1402, + 1606, + 1382, + 1606 + ], + "score": 0.75, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 701, + 832, + 722, + 832, + 722, + 854, + 701, + 854 + ], + "score": 0.64, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1216, + 1836, + 1241, + 1836, + 1241, + 1867, + 1216, + 1867 + ], + "score": 0.3, + "latex": "\\mathrm { Q }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1048, + 1113, + 1048, + 1113, + 1071, + 1095, + 1071 + ], + "score": 0.29, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 225.0, + 793.0, + 225.0, + 793.0, + 262.0, + 694.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 268.0, + 670.0, + 268.0, + 670.0, + 301.0, + 605.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 258.0, + 859.0, + 258.0, + 859.0, + 290.0, + 830.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 275.0, + 1078.0, + 275.0, + 1078.0, + 310.0, + 969.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 295.0, + 685.0, + 295.0, + 685.0, + 321.0, + 605.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 343.0, + 814.0, + 343.0, + 814.0, + 383.0, + 746.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 510.0, + 864.0, + 510.0, + 864.0, + 541.0, + 808.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 556.0, + 1072.0, + 556.0, + 1072.0, + 600.0, + 617.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1175.0, + 446.0, + 1175.0, + 446.0, + 1215.0, + 293.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1274.0, + 296.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1270.0, + 1405.0, + 1270.0, + 1405.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1300.0, + 1405.0, + 1300.0, + 1405.0, + 1334.0, + 294.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1367.0, + 293.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1358.0, + 1405.0, + 1358.0, + 1405.0, + 1398.0, + 292.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1406.0, + 1392.0, + 1406.0, + 1426.0, + 294.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1420.0, + 1406.0, + 1420.0, + 1406.0, + 1458.0, + 292.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1453.0, + 1406.0, + 1453.0, + 1406.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1482.0, + 1404.0, + 1482.0, + 1404.0, + 1517.0, + 294.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1512.0, + 1406.0, + 1512.0, + 1406.0, + 1548.0, + 292.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 1406.0, + 1543.0, + 1406.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1568.0, + 1381.0, + 1568.0, + 1381.0, + 1612.0, + 291.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1568.0, + 1408.0, + 1568.0, + 1408.0, + 1612.0, + 1403.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1638.0, + 292.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1634.0, + 943.0, + 1634.0, + 943.0, + 1668.0, + 292.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1634.0, + 1406.0, + 1634.0, + 1406.0, + 1668.0, + 1006.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1665.0, + 1355.0, + 1665.0, + 1355.0, + 1700.0, + 293.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1711.0, + 1406.0, + 1711.0, + 1406.0, + 1749.0, + 293.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1740.0, + 1404.0, + 1740.0, + 1404.0, + 1780.0, + 292.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1772.0, + 1407.0, + 1772.0, + 1407.0, + 1809.0, + 292.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1803.0, + 1404.0, + 1803.0, + 1404.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 1053.0, + 1835.0, + 1053.0, + 1869.0, + 294.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1835.0, + 1215.0, + 1835.0, + 1215.0, + 1869.0, + 1151.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1835.0, + 1404.0, + 1835.0, + 1404.0, + 1869.0, + 1242.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 1404.0, + 1864.0, + 1404.0, + 1902.0, + 293.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1894.0, + 975.0, + 1894.0, + 975.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 707.0, + 293.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 704.0, + 1405.0, + 704.0, + 1405.0, + 739.0, + 296.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 731.0, + 1405.0, + 731.0, + 1405.0, + 773.0, + 292.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 763.0, + 1406.0, + 763.0, + 1406.0, + 803.0, + 295.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 796.0, + 1404.0, + 796.0, + 1404.0, + 831.0, + 294.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 827.0, + 700.0, + 827.0, + 700.0, + 862.0, + 294.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 827.0, + 1404.0, + 827.0, + 1404.0, + 862.0, + 723.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 858.0, + 1086.0, + 858.0, + 1086.0, + 892.0, + 296.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1041.0, + 1094.0, + 1041.0, + 1094.0, + 1078.0, + 293.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1041.0, + 1405.0, + 1041.0, + 1405.0, + 1078.0, + 1114.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1072.0, + 1405.0, + 1072.0, + 1405.0, + 1106.0, + 295.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1104.0, + 1170.0, + 1104.0, + 1170.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 901.0, + 1404.0, + 901.0, + 1404.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 933.0, + 1407.0, + 933.0, + 1407.0, + 970.0, + 293.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 963.0, + 1404.0, + 963.0, + 1404.0, + 1001.0, + 293.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 990.0, + 384.0, + 990.0, + 384.0, + 1037.0, + 289.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 295.0, + 1978.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": [ + 294.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 229, + 1404, + 229, + 1404, + 507, + 297, + 507 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 520, + 1404, + 520, + 1404, + 767, + 297, + 767 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 404, + 1340, + 1258, + 1340, + 1258, + 1944, + 404, + 1944 + ], + "score": 0.971 + }, + { + "category_id": 5, + "poly": [ + 607, + 1066, + 1091, + 1066, + 1091, + 1166, + 607, + 1166 + ], + "score": 0.966, + "html": "
A3CQ-learningPGQL
Mean266.6246.6416.7
Median58.330.5103.3
" + }, + { + "category_id": 5, + "poly": [ + 607, + 803, + 1091, + 803, + 1091, + 902, + 607, + 902 + ], + "score": 0.964, + "html": "
A3CQ-learningPGQL
Mean636.8756.3877.2
Median107.358.9145.6
" + }, + { + "category_id": 4, + "poly": [ + 528, + 1967, + 1163, + 1967, + 1163, + 2001, + 528, + 2001 + ], + "score": 0.931 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.865 + }, + { + "category_id": 1, + "poly": [ + 296, + 937, + 1403, + 937, + 1403, + 1000, + 296, + 1000 + ], + "score": 0.596 + }, + { + "category_id": 6, + "poly": [ + 296, + 937, + 1403, + 937, + 1403, + 1000, + 296, + 1000 + ], + "score": 0.462 + }, + { + "category_id": 6, + "poly": [ + 294, + 1201, + 1402, + 1201, + 1402, + 1264, + 294, + 1264 + ], + "score": 0.314 + }, + { + "category_id": 13, + "poly": [ + 930, + 475, + 996, + 475, + 996, + 504, + 930, + 504 + ], + "score": 0.87, + "latex": "100 \\%" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1352.0, + 461.0, + 1352.0, + 461.0, + 1375.0, + 408.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1345.0, + 662.0, + 1345.0, + 662.0, + 1368.0, + 602.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1351.0, + 909.0, + 1351.0, + 909.0, + 1376.0, + 855.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1346.0, + 1121.0, + 1346.0, + 1121.0, + 1366.0, + 1037.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1370.0, + 547.0, + 1370.0, + 547.0, + 1395.0, + 503.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1370.0, + 994.0, + 1370.0, + 994.0, + 1395.0, + 950.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1391.0, + 461.0, + 1391.0, + 461.0, + 1413.0, + 406.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1388.0, + 591.0, + 1388.0, + 591.0, + 1417.0, + 506.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1382.0, + 909.0, + 1382.0, + 909.0, + 1405.0, + 854.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1390.0, + 1036.0, + 1390.0, + 1036.0, + 1416.0, + 953.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1410.0, + 556.0, + 1410.0, + 556.0, + 1437.0, + 506.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1411.0, + 909.0, + 1411.0, + 909.0, + 1435.0, + 854.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1406.0, + 1004.0, + 1406.0, + 1004.0, + 1439.0, + 952.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1430.0, + 461.0, + 1430.0, + 461.0, + 1454.0, + 416.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 1441.0, + 909.0, + 1441.0, + 909.0, + 1464.0, + 855.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1469.0, + 461.0, + 1469.0, + 461.0, + 1493.0, + 416.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1471.0, + 908.0, + 1471.0, + 908.0, + 1492.0, + 864.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1508.0, + 461.0, + 1508.0, + 461.0, + 1532.0, + 416.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1499.0, + 909.0, + 1499.0, + 909.0, + 1523.0, + 863.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1547.0, + 461.0, + 1547.0, + 461.0, + 1571.0, + 416.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1528.0, + 909.0, + 1528.0, + 909.0, + 1552.0, + 863.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 1530.0, + 1212.0, + 1530.0, + 1212.0, + 1565.0, + 1083.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1560.0, + 555.0, + 1560.0, + 555.0, + 1568.0, + 542.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 1557.0, + 910.0, + 1557.0, + 910.0, + 1581.0, + 863.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1566.0, + 687.0, + 1566.0, + 687.0, + 1579.0, + 660.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1589.0, + 462.0, + 1589.0, + 462.0, + 1608.0, + 445.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1589.0, + 908.0, + 1589.0, + 908.0, + 1608.0, + 891.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1600.0, + 469.0, + 1600.0, + 469.0, + 1620.0, + 453.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1602.0, + 537.0, + 1602.0, + 537.0, + 1620.0, + 522.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1600.0, + 607.0, + 1600.0, + 607.0, + 1622.0, + 589.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1601.0, + 674.0, + 1601.0, + 674.0, + 1620.0, + 658.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1601.0, + 743.0, + 1601.0, + 743.0, + 1620.0, + 726.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1601.0, + 810.0, + 1601.0, + 810.0, + 1620.0, + 793.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1601.0, + 916.0, + 1601.0, + 916.0, + 1620.0, + 900.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1602.0, + 984.0, + 1602.0, + 984.0, + 1620.0, + 969.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1601.0, + 1053.0, + 1601.0, + 1053.0, + 1620.0, + 1037.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1601.0, + 1121.0, + 1601.0, + 1121.0, + 1620.0, + 1105.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1601.0, + 1256.0, + 1601.0, + 1256.0, + 1620.0, + 1240.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1618.0, + 678.0, + 1618.0, + 678.0, + 1640.0, + 587.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1615.0, + 808.0, + 1615.0, + 808.0, + 1637.0, + 771.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 1618.0, + 1124.0, + 1618.0, + 1124.0, + 1640.0, + 1033.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1615.0, + 1254.0, + 1615.0, + 1254.0, + 1637.0, + 1219.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1659.0, + 460.0, + 1659.0, + 460.0, + 1679.0, + 409.0, + 1679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1651.0, + 701.0, + 1651.0, + 701.0, + 1673.0, + 564.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1658.0, + 909.0, + 1658.0, + 909.0, + 1681.0, + 847.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1029.0, + 1652.0, + 1127.0, + 1652.0, + 1127.0, + 1671.0, + 1029.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1676.0, + 547.0, + 1676.0, + 547.0, + 1701.0, + 505.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1676.0, + 994.0, + 1676.0, + 994.0, + 1701.0, + 952.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1697.0, + 461.0, + 1697.0, + 461.0, + 1720.0, + 409.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1694.0, + 591.0, + 1694.0, + 591.0, + 1722.0, + 506.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1704.0, + 909.0, + 1704.0, + 909.0, + 1728.0, + 854.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1695.0, + 1037.0, + 1695.0, + 1037.0, + 1720.0, + 953.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1717.0, + 555.0, + 1717.0, + 555.0, + 1741.0, + 506.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1715.0, + 1001.0, + 1715.0, + 1001.0, + 1742.0, + 953.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1735.0, + 461.0, + 1735.0, + 461.0, + 1760.0, + 416.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1751.0, + 909.0, + 1751.0, + 909.0, + 1775.0, + 854.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1774.0, + 460.0, + 1774.0, + 460.0, + 1797.0, + 414.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1798.0, + 908.0, + 1798.0, + 908.0, + 1822.0, + 854.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1813.0, + 461.0, + 1813.0, + 461.0, + 1837.0, + 416.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1853.0, + 461.0, + 1853.0, + 461.0, + 1877.0, + 416.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1845.0, + 909.0, + 1845.0, + 909.0, + 1868.0, + 854.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1884.0, + 795.0, + 1884.0, + 795.0, + 1897.0, + 767.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1894.0, + 461.0, + 1894.0, + 461.0, + 1913.0, + 444.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1895.0, + 908.0, + 1895.0, + 908.0, + 1913.0, + 892.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1906.0, + 469.0, + 1906.0, + 469.0, + 1925.0, + 453.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1906.0, + 537.0, + 1906.0, + 537.0, + 1925.0, + 522.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1906.0, + 606.0, + 1906.0, + 606.0, + 1925.0, + 590.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1905.0, + 676.0, + 1905.0, + 676.0, + 1927.0, + 657.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1907.0, + 743.0, + 1907.0, + 743.0, + 1925.0, + 726.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1906.0, + 810.0, + 1906.0, + 810.0, + 1925.0, + 794.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1907.0, + 916.0, + 1907.0, + 916.0, + 1925.0, + 901.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1907.0, + 985.0, + 1907.0, + 985.0, + 1925.0, + 969.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1906.0, + 1053.0, + 1906.0, + 1053.0, + 1925.0, + 1037.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1906.0, + 1121.0, + 1906.0, + 1121.0, + 1926.0, + 1105.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1907.0, + 1190.0, + 1907.0, + 1190.0, + 1925.0, + 1173.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1906.0, + 1257.0, + 1906.0, + 1257.0, + 1925.0, + 1241.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1923.0, + 677.0, + 1923.0, + 677.0, + 1945.0, + 587.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 1920.0, + 808.0, + 1920.0, + 808.0, + 1942.0, + 771.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1923.0, + 1124.0, + 1923.0, + 1124.0, + 1945.0, + 1034.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1920.0, + 1254.0, + 1920.0, + 1254.0, + 1942.0, + 1220.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1417.5, + 1267.0, + 1417.5, + 1267.0, + 1482.0, + 961.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1466.0, + 750.0, + 1466.0, + 750.0, + 1527.0, + 473.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.75, + 1521.0, + 987.75, + 1521.0, + 987.75, + 1547.0, + 983.75, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1548.5, + 805.0, + 1548.5, + 805.0, + 1578.5, + 708.0, + 1578.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1600.0, + 1192.0, + 1600.0, + 1192.0, + 1619.0, + 1170.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1712.5, + 1219.0, + 1712.5, + 1219.0, + 1764.5, + 1009.0, + 1764.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1784.0, + 1025.0, + 1784.0, + 1025.0, + 1803.0, + 952.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1964.0, + 1163.0, + 1964.0, + 1163.0, + 2004.0, + 527.0, + 2004.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, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 932.0, + 1405.0, + 932.0, + 1405.0, + 977.0, + 293.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 967.0, + 612.0, + 967.0, + 612.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1196.0, + 1406.0, + 1196.0, + 1406.0, + 1241.0, + 292.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 613.0, + 1231.0, + 613.0, + 1266.0, + 294.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 232.0, + 1404.0, + 232.0, + 1404.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 1405.0, + 293.0, + 1405.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 381.0, + 1405.0, + 381.0, + 1405.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 410.0, + 1406.0, + 410.0, + 1406.0, + 452.0, + 291.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 443.0, + 1405.0, + 443.0, + 1405.0, + 480.0, + 295.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 476.0, + 929.0, + 476.0, + 929.0, + 508.0, + 296.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 476.0, + 1392.0, + 476.0, + 1392.0, + 508.0, + 997.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 522.0, + 1404.0, + 522.0, + 1404.0, + 556.0, + 294.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 1405.0, + 554.0, + 1405.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 583.0, + 1405.0, + 583.0, + 1405.0, + 617.0, + 295.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 610.0, + 1406.0, + 610.0, + 1406.0, + 650.0, + 292.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 640.0, + 1404.0, + 640.0, + 1404.0, + 677.0, + 294.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 710.0, + 294.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 701.0, + 1405.0, + 701.0, + 1405.0, + 740.0, + 294.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 731.0, + 1081.0, + 731.0, + 1081.0, + 770.0, + 292.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 932.0, + 1405.0, + 932.0, + 1405.0, + 977.0, + 293.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 967.0, + 612.0, + 967.0, + 612.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1017, + 1405, + 1017, + 1405, + 1293, + 297, + 1293 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 406, + 234, + 1256, + 234, + 1256, + 835, + 406, + 835 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 299, + 1407, + 1403, + 1407, + 1403, + 1497, + 299, + 1497 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 516, + 859, + 1173, + 859, + 1173, + 892, + 516, + 892 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 947, + 560, + 947, + 560, + 982, + 300, + 982 + ], + "score": 0.895 + }, + { + "category_id": 0, + "poly": [ + 301, + 1338, + 660, + 1338, + 660, + 1372, + 301, + 1372 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 814, + 76, + 814, + 104, + 300, + 104 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.84 + }, + { + "category_id": 15, + "poly": [ + 424.0, + 244.0, + 463.0, + 244.0, + 463.0, + 269.0, + 424.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 238.0, + 667.0, + 238.0, + 667.0, + 258.0, + 597.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 245.0, + 909.0, + 245.0, + 909.0, + 268.0, + 854.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 234.0, + 1101.0, + 234.0, + 1101.0, + 261.0, + 1058.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 271.0, + 464.0, + 271.0, + 464.0, + 300.0, + 423.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 261.0, + 591.0, + 261.0, + 591.0, + 310.0, + 504.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 278.0, + 909.0, + 278.0, + 909.0, + 301.0, + 854.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 263.0, + 1036.0, + 263.0, + 1036.0, + 309.0, + 953.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 302.0, + 462.0, + 302.0, + 462.0, + 327.0, + 424.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 301.0, + 556.0, + 301.0, + 556.0, + 329.0, + 504.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 311.0, + 909.0, + 311.0, + 909.0, + 335.0, + 854.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 301.0, + 1003.0, + 301.0, + 1003.0, + 328.0, + 953.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 331.0, + 463.0, + 331.0, + 463.0, + 357.0, + 424.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 331.0, + 1066.0, + 331.0, + 1066.0, + 341.0, + 1059.0, + 341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 350.0, + 463.0, + 350.0, + 463.0, + 398.0, + 409.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 344.0, + 908.0, + 344.0, + 908.0, + 368.0, + 854.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 390.0, + 462.0, + 390.0, + 462.0, + 415.0, + 424.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 394.0, + 600.0, + 394.0, + 600.0, + 406.0, + 585.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 378.0, + 908.0, + 378.0, + 908.0, + 402.0, + 855.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 387.0, + 1135.0, + 387.0, + 1135.0, + 398.0, + 1121.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 419.0, + 462.0, + 419.0, + 462.0, + 445.0, + 424.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 431.0, + 581.0, + 431.0, + 581.0, + 443.0, + 566.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 412.0, + 909.0, + 412.0, + 909.0, + 435.0, + 855.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 449.0, + 463.0, + 449.0, + 463.0, + 474.0, + 424.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 466.0, + 548.0, + 466.0, + 548.0, + 478.0, + 535.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 445.0, + 909.0, + 445.0, + 909.0, + 470.0, + 863.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 476.0, + 980.0, + 476.0, + 980.0, + 486.0, + 951.0, + 486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 480.0, + 462.0, + 480.0, + 462.0, + 503.0, + 442.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 481.0, + 907.0, + 481.0, + 907.0, + 499.0, + 891.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 483.0, + 948.0, + 483.0, + 948.0, + 493.0, + 926.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 491.0, + 471.0, + 491.0, + 471.0, + 513.0, + 452.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 494.0, + 537.0, + 494.0, + 537.0, + 513.0, + 522.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 494.0, + 606.0, + 494.0, + 606.0, + 513.0, + 590.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 492.0, + 676.0, + 492.0, + 676.0, + 514.0, + 657.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 494.0, + 742.0, + 494.0, + 742.0, + 512.0, + 726.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 494.0, + 810.0, + 494.0, + 810.0, + 513.0, + 793.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 494.0, + 916.0, + 494.0, + 916.0, + 512.0, + 901.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 494.0, + 984.0, + 494.0, + 984.0, + 513.0, + 969.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 494.0, + 1053.0, + 494.0, + 1053.0, + 513.0, + 1037.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 494.0, + 1122.0, + 494.0, + 1122.0, + 513.0, + 1105.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 494.0, + 1189.0, + 494.0, + 1189.0, + 513.0, + 1173.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 494.0, + 1258.0, + 494.0, + 1258.0, + 513.0, + 1242.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 510.0, + 678.0, + 510.0, + 678.0, + 533.0, + 587.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 506.0, + 809.0, + 506.0, + 809.0, + 531.0, + 771.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 510.0, + 1125.0, + 510.0, + 1125.0, + 533.0, + 1033.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 506.0, + 1257.0, + 506.0, + 1257.0, + 531.0, + 1218.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 549.0, + 462.0, + 549.0, + 462.0, + 573.0, + 407.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 542.0, + 656.0, + 542.0, + 656.0, + 566.0, + 606.0, + 566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 549.0, + 909.0, + 549.0, + 909.0, + 573.0, + 855.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 542.0, + 1120.0, + 542.0, + 1120.0, + 565.0, + 1036.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 596.0, + 462.0, + 596.0, + 462.0, + 620.0, + 406.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 565.0, + 591.0, + 565.0, + 591.0, + 614.0, + 503.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 578.0, + 909.0, + 578.0, + 909.0, + 602.0, + 855.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 567.0, + 1038.0, + 567.0, + 1038.0, + 616.0, + 952.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 607.0, + 557.0, + 607.0, + 557.0, + 635.0, + 504.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 608.0, + 909.0, + 608.0, + 909.0, + 632.0, + 854.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 606.0, + 1003.0, + 606.0, + 1003.0, + 634.0, + 951.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 643.0, + 462.0, + 643.0, + 462.0, + 667.0, + 407.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 637.0, + 908.0, + 637.0, + 908.0, + 661.0, + 854.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 666.0, + 546.0, + 666.0, + 546.0, + 682.0, + 519.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 669.0, + 719.0, + 669.0, + 719.0, + 680.0, + 706.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 667.0, + 908.0, + 667.0, + 908.0, + 691.0, + 854.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 690.0, + 462.0, + 690.0, + 462.0, + 714.0, + 407.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 689.0, + 570.0, + 689.0, + 570.0, + 705.0, + 549.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 696.0, + 908.0, + 696.0, + 908.0, + 720.0, + 855.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 737.0, + 462.0, + 737.0, + 462.0, + 761.0, + 415.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 726.0, + 908.0, + 726.0, + 908.0, + 750.0, + 854.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 734.0, + 977.0, + 734.0, + 977.0, + 749.0, + 956.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 755.0, + 909.0, + 755.0, + 909.0, + 778.0, + 855.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 761.0, + 945.0, + 761.0, + 945.0, + 773.0, + 932.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 786.0, + 461.0, + 786.0, + 461.0, + 804.0, + 444.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 786.0, + 907.0, + 786.0, + 907.0, + 804.0, + 891.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 798.0, + 470.0, + 798.0, + 470.0, + 816.0, + 454.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 798.0, + 537.0, + 798.0, + 537.0, + 817.0, + 522.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 798.0, + 606.0, + 798.0, + 606.0, + 817.0, + 590.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 796.0, + 676.0, + 796.0, + 676.0, + 818.0, + 657.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 798.0, + 742.0, + 798.0, + 742.0, + 816.0, + 726.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 798.0, + 810.0, + 798.0, + 810.0, + 817.0, + 793.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 799.0, + 917.0, + 799.0, + 917.0, + 816.0, + 901.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 798.0, + 984.0, + 798.0, + 984.0, + 817.0, + 970.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 797.0, + 1053.0, + 797.0, + 1053.0, + 817.0, + 1037.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 796.0, + 1123.0, + 796.0, + 1123.0, + 819.0, + 1104.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 798.0, + 1189.0, + 798.0, + 1189.0, + 817.0, + 1172.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 797.0, + 1258.0, + 797.0, + 1258.0, + 819.0, + 1240.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 814.0, + 678.0, + 814.0, + 678.0, + 837.0, + 587.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 810.0, + 809.0, + 810.0, + 809.0, + 835.0, + 771.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 815.0, + 1125.0, + 815.0, + 1125.0, + 837.0, + 1034.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 810.0, + 1257.0, + 810.0, + 1257.0, + 835.0, + 1218.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 258.0, + 1227.0, + 258.0, + 1227.0, + 274.0, + 1167.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 261.0, + 1173.0, + 261.0, + 1173.0, + 291.0, + 1087.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.75, + 301.0, + 1112.75, + 301.0, + 1112.75, + 318.0, + 1052.75, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 367.0, + 1118.0, + 367.0, + 1118.0, + 388.0, + 1090.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.25, + 373.5, + 574.25, + 373.5, + 574.25, + 395.5, + 530.25, + 395.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 385.5, + 1179.0, + 385.5, + 1179.0, + 409.5, + 1134.0, + 409.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 433.0, + 959.0, + 433.0, + 959.0, + 449.5, + 921.0, + 449.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 616.5, + 796.0, + 616.5, + 796.0, + 646.5, + 693.0, + 646.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 636.0, + 710.0, + 636.0, + 710.0, + 667.0, + 627.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 852.0, + 1176.0, + 852.0, + 1176.0, + 902.0, + 513.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 941.0, + 566.0, + 941.0, + 566.0, + 991.0, + 291.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1334.0, + 663.0, + 1334.0, + 663.0, + 1378.0, + 293.0, + 1378.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, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1017.0, + 1403.0, + 1017.0, + 1403.0, + 1052.0, + 296.0, + 1052.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1045.0, + 1406.0, + 1045.0, + 1406.0, + 1083.0, + 292.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1073.0, + 1407.0, + 1073.0, + 1407.0, + 1117.0, + 291.0, + 1117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1108.0, + 1403.0, + 1108.0, + 1403.0, + 1145.0, + 292.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1139.0, + 1403.0, + 1139.0, + 1403.0, + 1176.0, + 291.0, + 1176.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1169.0, + 1405.0, + 1169.0, + 1405.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1237.0, + 294.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1227.0, + 1406.0, + 1227.0, + 1406.0, + 1270.0, + 292.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1259.0, + 1286.0, + 1259.0, + 1286.0, + 1299.0, + 291.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1406.0, + 1404.0, + 1406.0, + 1404.0, + 1441.0, + 294.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1438.0, + 1404.0, + 1438.0, + 1404.0, + 1471.0, + 294.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1469.0, + 552.0, + 1469.0, + 552.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 294, + 727, + 1399, + 727, + 1399, + 792, + 294, + 792 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 298, + 486, + 1394, + 486, + 1394, + 551, + 298, + 551 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 296, + 357, + 1399, + 357, + 1399, + 420, + 296, + 420 + ], + "score": 0.866 + }, + { + "category_id": 1, + "poly": [ + 297, + 677, + 1154, + 677, + 1154, + 713, + 297, + 713 + ], + "score": 0.865 + }, + { + "category_id": 1, + "poly": [ + 298, + 277, + 1400, + 277, + 1400, + 340, + 298, + 340 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 297, + 436, + 1183, + 436, + 1183, + 471, + 297, + 471 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 298, + 987, + 1401, + 987, + 1401, + 1051, + 298, + 1051 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 298, + 907, + 1401, + 907, + 1401, + 971, + 298, + 971 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 296, + 1066, + 1403, + 1066, + 1403, + 1133, + 296, + 1133 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 294, + 1306, + 1402, + 1306, + 1402, + 1372, + 294, + 1372 + ], + "score": 0.843 + }, + { + "category_id": 1, + "poly": [ + 296, + 806, + 1401, + 806, + 1401, + 842, + 296, + 842 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 298, + 1227, + 1403, + 1227, + 1403, + 1292, + 298, + 1292 + ], + "score": 0.839 + }, + { + "category_id": 1, + "poly": [ + 299, + 1739, + 1399, + 1739, + 1399, + 1833, + 299, + 1833 + ], + "score": 0.832 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 291, + 1658, + 1401, + 1658, + 1401, + 1723, + 291, + 1723 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 297, + 856, + 1239, + 856, + 1239, + 892, + 297, + 892 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 295, + 1388, + 1402, + 1388, + 1402, + 1453, + 295, + 1453 + ], + "score": 0.822 + }, + { + "category_id": 1, + "poly": [ + 294, + 1467, + 1401, + 1467, + 1401, + 1532, + 294, + 1532 + ], + "score": 0.808 + }, + { + "category_id": 1, + "poly": [ + 297, + 1147, + 1403, + 1147, + 1403, + 1212, + 297, + 1212 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 298, + 567, + 1404, + 567, + 1404, + 661, + 298, + 661 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 298, + 1849, + 1404, + 1849, + 1404, + 2033, + 298, + 2033 + ], + "score": 0.788 + }, + { + "category_id": 1, + "poly": [ + 299, + 1548, + 1402, + 1548, + 1402, + 1643, + 299, + 1643 + ], + "score": 0.785 + }, + { + "category_id": 0, + "poly": [ + 299, + 227, + 489, + 227, + 489, + 261, + 299, + 261 + ], + "score": 0.651 + }, + { + "category_id": 1, + "poly": [ + 299, + 227, + 489, + 227, + 489, + 261, + 299, + 261 + ], + "score": 0.215 + }, + { + "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, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 491.0, + 228.0, + 491.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 723.0, + 1405.0, + 723.0, + 1405.0, + 765.0, + 292.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 756.0, + 398.0, + 756.0, + 398.0, + 794.0, + 319.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 488.0, + 1399.0, + 488.0, + 1399.0, + 524.0, + 295.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 517.0, + 815.0, + 517.0, + 815.0, + 553.0, + 323.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 353.0, + 1404.0, + 353.0, + 1404.0, + 399.0, + 292.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 387.0, + 1083.0, + 387.0, + 1083.0, + 423.0, + 324.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 677.0, + 1153.0, + 677.0, + 1153.0, + 716.0, + 295.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 275.0, + 1402.0, + 275.0, + 1402.0, + 311.0, + 296.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 307.0, + 451.0, + 307.0, + 451.0, + 340.0, + 322.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 436.0, + 1182.0, + 436.0, + 1182.0, + 475.0, + 292.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 986.0, + 1405.0, + 986.0, + 1405.0, + 1023.0, + 293.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1018.0, + 1403.0, + 1018.0, + 1403.0, + 1054.0, + 322.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 907.0, + 1405.0, + 907.0, + 1405.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 939.0, + 863.0, + 939.0, + 863.0, + 972.0, + 322.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1062.0, + 1404.0, + 1062.0, + 1404.0, + 1109.0, + 293.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1098.0, + 1288.0, + 1098.0, + 1288.0, + 1133.0, + 323.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1305.0, + 1404.0, + 1305.0, + 1404.0, + 1345.0, + 293.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1339.0, + 610.0, + 1339.0, + 610.0, + 1370.0, + 322.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 806.0, + 1403.0, + 806.0, + 1403.0, + 845.0, + 295.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1225.0, + 1408.0, + 1225.0, + 1408.0, + 1265.0, + 296.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1260.0, + 759.0, + 1260.0, + 759.0, + 1293.0, + 323.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1740.0, + 1402.0, + 1740.0, + 1402.0, + 1774.0, + 296.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1769.0, + 1403.0, + 1769.0, + 1403.0, + 1805.0, + 322.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1799.0, + 560.0, + 1799.0, + 560.0, + 1834.0, + 323.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1656.0, + 1404.0, + 1656.0, + 1404.0, + 1696.0, + 293.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1689.0, + 523.0, + 1689.0, + 523.0, + 1723.0, + 323.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 855.0, + 1231.0, + 855.0, + 1231.0, + 895.0, + 296.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1388.0, + 1405.0, + 1388.0, + 1405.0, + 1424.0, + 295.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1418.0, + 970.0, + 1418.0, + 970.0, + 1453.0, + 323.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1466.0, + 1404.0, + 1466.0, + 1404.0, + 1507.0, + 293.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1498.0, + 951.0, + 1498.0, + 951.0, + 1533.0, + 323.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1143.0, + 1407.0, + 1143.0, + 1407.0, + 1186.0, + 294.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1178.0, + 704.0, + 1178.0, + 704.0, + 1212.0, + 325.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 565.0, + 1404.0, + 565.0, + 1404.0, + 603.0, + 293.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 599.0, + 1404.0, + 599.0, + 1404.0, + 633.0, + 321.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 627.0, + 396.0, + 627.0, + 396.0, + 661.0, + 321.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1847.0, + 1404.0, + 1847.0, + 1404.0, + 1885.0, + 295.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1879.0, + 1403.0, + 1879.0, + 1403.0, + 1917.0, + 321.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1946.0, + 322.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1978.0, + 323.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1971.0, + 1402.0, + 1971.0, + 1402.0, + 2007.0, + 322.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2004.0, + 524.0, + 2004.0, + 524.0, + 2036.0, + 322.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1546.0, + 1404.0, + 1546.0, + 1404.0, + 1586.0, + 294.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1578.0, + 1402.0, + 1578.0, + 1402.0, + 1613.0, + 323.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1611.0, + 704.0, + 1611.0, + 704.0, + 1642.0, + 322.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 491.0, + 228.0, + 491.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 294, + 1084, + 1401, + 1084, + 1401, + 1149, + 294, + 1149 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 295, + 1570, + 1401, + 1570, + 1401, + 1635, + 295, + 1635 + ], + "score": 0.785 + }, + { + "category_id": 1, + "poly": [ + 295, + 1516, + 1241, + 1516, + 1241, + 1550, + 295, + 1550 + ], + "score": 0.782 + }, + { + "category_id": 1, + "poly": [ + 290, + 999, + 1398, + 999, + 1398, + 1065, + 290, + 1065 + ], + "score": 0.777 + }, + { + "category_id": 1, + "poly": [ + 298, + 1285, + 1405, + 1285, + 1405, + 1381, + 298, + 1381 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 293, + 1770, + 1401, + 1770, + 1401, + 1835, + 293, + 1835 + ], + "score": 0.766 + }, + { + "category_id": 1, + "poly": [ + 294, + 1856, + 1403, + 1856, + 1403, + 1920, + 294, + 1920 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 297, + 1654, + 1401, + 1654, + 1401, + 1751, + 297, + 1751 + ], + "score": 0.751 + }, + { + "category_id": 1, + "poly": [ + 298, + 1399, + 1405, + 1399, + 1405, + 1495, + 298, + 1495 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 296, + 744, + 1401, + 744, + 1401, + 809, + 296, + 809 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 297, + 659, + 1398, + 659, + 1398, + 724, + 297, + 724 + ], + "score": 0.73 + }, + { + "category_id": 1, + "poly": [ + 294, + 459, + 1398, + 459, + 1398, + 524, + 294, + 524 + ], + "score": 0.715 + }, + { + "category_id": 1, + "poly": [ + 297, + 1169, + 1404, + 1169, + 1404, + 1264, + 297, + 1264 + ], + "score": 0.715 + }, + { + "category_id": 1, + "poly": [ + 298, + 830, + 1397, + 830, + 1397, + 924, + 298, + 924 + ], + "score": 0.707 + }, + { + "category_id": 1, + "poly": [ + 298, + 1941, + 1403, + 1941, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.699 + }, + { + "category_id": 1, + "poly": [ + 293, + 944, + 1398, + 944, + 1398, + 981, + 293, + 981 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 302, + 228, + 1401, + 228, + 1401, + 324, + 302, + 324 + ], + "score": 0.656 + }, + { + "category_id": 1, + "poly": [ + 299, + 343, + 1399, + 343, + 1399, + 438, + 299, + 438 + ], + "score": 0.647 + }, + { + "category_id": 1, + "poly": [ + 295, + 544, + 1406, + 544, + 1406, + 640, + 295, + 640 + ], + "score": 0.555 + }, + { + "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, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1082.0, + 1404.0, + 1082.0, + 1404.0, + 1123.0, + 293.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1117.0, + 704.0, + 1117.0, + 704.0, + 1149.0, + 322.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1566.0, + 1403.0, + 1566.0, + 1403.0, + 1606.0, + 293.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1600.0, + 503.0, + 1600.0, + 503.0, + 1635.0, + 321.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1516.0, + 1242.0, + 1516.0, + 1242.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1000.0, + 1401.0, + 1000.0, + 1401.0, + 1035.0, + 294.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1032.0, + 1068.0, + 1032.0, + 1068.0, + 1064.0, + 324.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1285.0, + 1403.0, + 1285.0, + 1403.0, + 1320.0, + 296.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1318.0, + 1405.0, + 1318.0, + 1405.0, + 1353.0, + 322.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1348.0, + 857.0, + 1348.0, + 857.0, + 1382.0, + 322.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1770.0, + 1403.0, + 1770.0, + 1403.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1801.0, + 517.0, + 1801.0, + 517.0, + 1836.0, + 323.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1856.0, + 1405.0, + 1856.0, + 1405.0, + 1892.0, + 296.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1887.0, + 934.0, + 1887.0, + 934.0, + 1921.0, + 323.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1693.0, + 293.0, + 1693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1688.0, + 1403.0, + 1688.0, + 1403.0, + 1722.0, + 324.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1717.0, + 1018.0, + 1717.0, + 1018.0, + 1750.0, + 322.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1399.0, + 1403.0, + 1399.0, + 1403.0, + 1436.0, + 293.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1429.0, + 1406.0, + 1429.0, + 1406.0, + 1470.0, + 320.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1463.0, + 1372.0, + 1463.0, + 1372.0, + 1497.0, + 325.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 743.0, + 1406.0, + 743.0, + 1406.0, + 783.0, + 292.0, + 783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 773.0, + 398.0, + 773.0, + 398.0, + 811.0, + 319.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 657.0, + 1403.0, + 657.0, + 1403.0, + 698.0, + 292.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 691.0, + 505.0, + 691.0, + 505.0, + 724.0, + 323.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 461.0, + 1402.0, + 461.0, + 1402.0, + 497.0, + 295.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 490.0, + 596.0, + 490.0, + 596.0, + 521.0, + 322.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1168.0, + 1404.0, + 1168.0, + 1404.0, + 1207.0, + 292.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1201.0, + 1407.0, + 1201.0, + 1407.0, + 1238.0, + 322.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1231.0, + 576.0, + 1231.0, + 576.0, + 1265.0, + 320.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 827.0, + 1402.0, + 827.0, + 1402.0, + 867.0, + 293.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 861.0, + 1402.0, + 861.0, + 1402.0, + 895.0, + 323.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 889.0, + 459.0, + 889.0, + 459.0, + 928.0, + 320.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1938.0, + 1403.0, + 1938.0, + 1403.0, + 1978.0, + 292.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1969.0, + 1405.0, + 1969.0, + 1405.0, + 2009.0, + 321.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2003.0, + 574.0, + 2003.0, + 574.0, + 2034.0, + 321.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 940.0, + 1398.0, + 940.0, + 1398.0, + 985.0, + 292.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 266.0, + 297.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 296.0, + 322.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 292.0, + 883.0, + 292.0, + 883.0, + 326.0, + 324.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 342.0, + 1404.0, + 342.0, + 1404.0, + 382.0, + 293.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 377.0, + 1403.0, + 377.0, + 1403.0, + 411.0, + 324.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 406.0, + 773.0, + 406.0, + 773.0, + 440.0, + 325.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 543.0, + 1406.0, + 543.0, + 1406.0, + 582.0, + 293.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 576.0, + 1403.0, + 576.0, + 1403.0, + 610.0, + 322.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 607.0, + 1061.0, + 607.0, + 1061.0, + 641.0, + 324.0, + 641.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 301, + 1071, + 1403, + 1071, + 1403, + 1206, + 301, + 1206 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 296, + 925, + 1405, + 925, + 1405, + 1056, + 296, + 1056 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 379, + 1672, + 1321, + 1672, + 1321, + 1787, + 379, + 1787 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 340, + 1464, + 1360, + 1464, + 1360, + 1612, + 340, + 1612 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 434, + 1216, + 1263, + 1216, + 1263, + 1399, + 434, + 1399 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 1625, + 1067, + 1625, + 1067, + 1659, + 297, + 1659 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 295, + 1415, + 986, + 1415, + 986, + 1452, + 295, + 1452 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 293, + 1800, + 1400, + 1800, + 1400, + 1836, + 293, + 1836 + ], + "score": 0.922 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 1, + "poly": [ + 300, + 736, + 1402, + 736, + 1402, + 800, + 300, + 800 + ], + "score": 0.865 + }, + { + "category_id": 0, + "poly": [ + 302, + 856, + 756, + 856, + 756, + 894, + 302, + 894 + ], + "score": 0.844 + }, + { + "category_id": 1, + "poly": [ + 299, + 652, + 1398, + 652, + 1398, + 717, + 299, + 717 + ], + "score": 0.801 + }, + { + "category_id": 1, + "poly": [ + 300, + 568, + 1398, + 568, + 1398, + 634, + 300, + 634 + ], + "score": 0.767 + }, + { + "category_id": 1, + "poly": [ + 301, + 342, + 1401, + 342, + 1401, + 436, + 301, + 436 + ], + "score": 0.74 + }, + { + "category_id": 1, + "poly": [ + 299, + 228, + 1399, + 228, + 1399, + 324, + 299, + 324 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 295, + 456, + 1406, + 456, + 1406, + 551, + 295, + 551 + ], + "score": 0.662 + }, + { + "category_id": 14, + "poly": [ + 432, + 1213, + 1265, + 1213, + 1265, + 1400, + 432, + 1400 + ], + "score": 0.94, + "latex": "\\begin{array} { r c l } { \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { = } & { \\eta \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } + { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta ( \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\gamma \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| ) } \\\\ & { \\leq } & { \\eta / ( 1 - \\eta \\gamma ) \\| { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\cal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 336, + 1462, + 1363, + 1462, + 1363, + 1614, + 336, + 1614 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } { \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - \\hat { Q } ^ { \\pi _ { \\alpha } } \\| } & { = \\| T ^ { \\star } \\hat { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } + { \\mathcal T } ^ { \\pi _ { \\alpha } } \\hat { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } + { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } { Q } ^ { \\pi _ { \\alpha } } \\| + \\| { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq \\| { \\mathcal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - { Q } ^ { \\pi _ { \\alpha } } \\| } \\\\ & { < 3 / ( 1 - \\eta \\gamma ) \\| { T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - { \\mathcal T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 377, + 1414, + 598, + 1414, + 598, + 1452, + 377, + 1452 + ], + "score": 0.94, + "latex": "\\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| \\to 0" + }, + { + "category_id": 14, + "poly": [ + 376, + 1672, + 1324, + 1672, + 1324, + 1788, + 376, + 1788 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } & { = } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } + T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } + \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| + \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| } \\\\ & { \\leq } & { ( 1 + \\gamma ) \\| \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| + \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 798, + 1018, + 983, + 1018, + 983, + 1056, + 798, + 1056 + ], + "score": 0.93, + "latex": "\\pi _ { \\alpha } \\propto \\exp ( \\tilde { Q } ^ { \\pi _ { \\alpha } } )" + }, + { + "category_id": 13, + "poly": [ + 944, + 1800, + 1281, + 1800, + 1281, + 1835, + 944, + 1835 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } Q ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } \\| = 0 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1105, + 480, + 1105, + 480, + 1143, + 298, + 1143 + ], + "score": 0.92, + "latex": "\\mathcal { T } ^ { \\pi _ { \\alpha } } \\tilde { Q } ^ { \\pi _ { \\alpha } } \\| \\ = \\ 0" + }, + { + "category_id": 13, + "poly": [ + 868, + 1141, + 1256, + 1141, + 1256, + 1178, + 868, + 1178 + ], + "score": 0.92, + "latex": "\\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } = \\eta ( { \\cal T } ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - Q ^ { \\pi _ { \\alpha } } )" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1069, + 1405, + 1069, + 1405, + 1108, + 1174, + 1108 + ], + "score": 0.91, + "latex": "\\begin{array} { r l } { { \\operatorname* { l i m } _ { \\alpha \\to 0 } \\| T ^ { \\star } \\tilde { Q } ^ { \\pi _ { \\alpha } } - } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1023, + 1391, + 1023, + 1391, + 1055, + 1340, + 1055 + ], + "score": 0.9, + "latex": "Q ^ { \\pi _ { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 632, + 1420, + 709, + 1420, + 709, + 1446, + 632, + 1446 + ], + "score": 0.9, + "latex": "\\alpha 0" + }, + { + "category_id": 13, + "poly": [ + 1106, + 1105, + 1158, + 1105, + 1158, + 1141, + 1106, + 1141 + ], + "score": 0.89, + "latex": "{ \\tilde { Q } } ^ { \\pi _ { \\alpha } }" + }, + { + "category_id": 13, + "poly": [ + 1091, + 993, + 1126, + 993, + 1126, + 1019, + 1091, + 1019 + ], + "score": 0.87, + "latex": "\\pi _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1145, + 358, + 1145, + 358, + 1176, + 297, + 1176 + ], + "score": 0.83, + "latex": "\\mathcal { T } ^ { \\pi _ { \\alpha } } )" + }, + { + "category_id": 13, + "poly": [ + 956, + 1075, + 1008, + 1075, + 1008, + 1107, + 956, + 1107 + ], + "score": 0.75, + "latex": "\\ S 3 . 4" + }, + { + "category_id": 13, + "poly": [ + 948, + 963, + 970, + 963, + 970, + 985, + 948, + 985 + ], + "score": 0.75, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 719, + 1029, + 740, + 1029, + 740, + 1051, + 719, + 1051 + ], + "score": 0.7, + "latex": "\\alpha" + }, + { + "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": [ + 295.0, + 856.0, + 763.0, + 856.0, + 763.0, + 900.0, + 295.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1069.0, + 955.0, + 1069.0, + 955.0, + 1112.0, + 291.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1069.0, + 1173.0, + 1069.0, + 1173.0, + 1112.0, + 1009.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1103.0, + 297.0, + 1103.0, + 297.0, + 1147.0, + 294.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1103.0, + 1105.0, + 1103.0, + 1105.0, + 1147.0, + 481.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1103.0, + 1408.0, + 1103.0, + 1408.0, + 1147.0, + 1159.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1137.0, + 867.0, + 1137.0, + 867.0, + 1183.0, + 359.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1137.0, + 1405.0, + 1137.0, + 1405.0, + 1183.0, + 1257.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1171.0, + 567.0, + 1171.0, + 567.0, + 1208.0, + 295.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 928.0, + 1402.0, + 928.0, + 1402.0, + 958.0, + 296.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 947.0, + 956.0, + 947.0, + 992.0, + 294.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 956.0, + 1406.0, + 956.0, + 1406.0, + 992.0, + 971.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 989.0, + 1090.0, + 989.0, + 1090.0, + 1023.0, + 294.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 989.0, + 1405.0, + 989.0, + 1405.0, + 1023.0, + 1127.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1021.0, + 718.0, + 1021.0, + 718.0, + 1058.0, + 293.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1021.0, + 797.0, + 1021.0, + 797.0, + 1058.0, + 741.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 1021.0, + 1339.0, + 1021.0, + 1339.0, + 1058.0, + 984.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 1021.0, + 1403.0, + 1021.0, + 1403.0, + 1058.0, + 1392.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1625.0, + 1067.0, + 1625.0, + 1067.0, + 1662.0, + 295.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 376.0, + 1412.0, + 376.0, + 1456.0, + 294.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 1412.0, + 631.0, + 1412.0, + 631.0, + 1456.0, + 599.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1412.0, + 989.0, + 1412.0, + 989.0, + 1456.0, + 710.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1795.0, + 943.0, + 1795.0, + 943.0, + 1839.0, + 295.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1795.0, + 1405.0, + 1795.0, + 1405.0, + 1839.0, + 1282.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 731.0, + 1406.0, + 731.0, + 1406.0, + 776.0, + 293.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 769.0, + 926.0, + 769.0, + 926.0, + 799.0, + 323.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 651.0, + 1406.0, + 651.0, + 1406.0, + 691.0, + 294.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 683.0, + 901.0, + 683.0, + 901.0, + 718.0, + 323.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 566.0, + 1403.0, + 566.0, + 1403.0, + 608.0, + 294.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 601.0, + 662.0, + 601.0, + 662.0, + 636.0, + 321.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 340.0, + 1406.0, + 340.0, + 1406.0, + 381.0, + 295.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 373.0, + 1406.0, + 373.0, + 1406.0, + 411.0, + 321.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 401.0, + 399.0, + 401.0, + 399.0, + 438.0, + 320.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1402.0, + 227.0, + 1402.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 299.0, + 322.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 292.0, + 950.0, + 292.0, + 950.0, + 326.0, + 324.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 455.0, + 1404.0, + 455.0, + 1404.0, + 494.0, + 293.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 488.0, + 1404.0, + 488.0, + 1404.0, + 522.0, + 323.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 517.0, + 1152.0, + 517.0, + 1152.0, + 553.0, + 321.0, + 553.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 597, + 291, + 1099, + 291, + 1099, + 1607, + 597, + 1607 + ], + "score": 0.956, + "html": "
GameA3CQ-learningPGQL
25.53
alien38.43 68.6912.2946.70 71.00
amidar2802.87
assault854.641695.21
asterix191.6998.533790.08
asteroids24.375.3250.23
atlantis15496.0113635.8816217.49
bank heist210.2891.80212.15
battle zone21.632.8952.00
beam rider59.5579.94155.71
berzerk79.3855.5592.85
bowling2.70-7.093.85
boxing510.30299.49902.77
breakout2341.133291.222959.16
centipede50.22105.9873.88
chopper command61.1319.18162.93
crazy climber510.25189.01476.11
defender475.9358.94911.13
demon attack4027.573449.273994.49
double dunk1250.0091.351375.00
enduro9.949.949.94
fishing derby140.84-14.48145.57
freeway-0.26-0.13-0.13
frostbite5.8510.715.71
gopher429.769131.972060.41
gravitar0.711.351.74
hero145.7115.4792.88
ice hockey62.2521.5776.96
jamesbond133.90110.97142.08
kangaroo-0.94-0.94-0.75
krull736.303586.30557.44
kung fu master182.34260.14254.42
montezuma revenge-0.491.80-0.48
ms pacman17.9110.7125.76
name this game102.01113.89188.90
phoenix447.05812.991507.07
pitfall5.485.49 24.965.49 116.37
pong116.37 -0.880.03-0.04
private eye
qbert riverraid186.91159.71136.17
107.2565.01128.63
road runner robotank603.11 15.71179.69519.51
134.8771.50
seaquest3.813.715.88
skiing solaris54.2754.1054.16
space invaders27.0534.6128.66
188.65146.39608.44
star gunner756.60205.70977.99
surround28.29-1.5178.15
tennis145.58-15.35145.58
time pilot270.7491.59438.50
tutankham224.76110.11239.58
up n down1637.01148.101484.43
venture-1.76-1.76-1.76
video pinball3007.374325.024743.68
wizard of wor150.5288.07325.39
yars revenge81.5423.39252.83
zaxxon4.0144.11224.89
" + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.843 + }, + { + "category_id": 1, + "poly": [ + 300, + 228, + 564, + 228, + 564, + 260, + 300, + 260 + ], + "score": 0.42 + }, + { + "category_id": 0, + "poly": [ + 300, + 228, + 564, + 228, + 564, + 260, + 300, + 260 + ], + "score": 0.326 + }, + { + "category_id": 6, + "poly": [ + 293, + 1631, + 1401, + 1631, + 1401, + 1694, + 293, + 1694 + ], + "score": 0.287 + }, + { + "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, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 222.0, + 570.0, + 222.0, + 570.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1628.0, + 1403.0, + 1628.0, + 1403.0, + 1666.0, + 293.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1660.0, + 463.0, + 1660.0, + 463.0, + 1696.0, + 294.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 222.0, + 570.0, + 222.0, + 570.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/BkMWx309FX/BkMWx309FX.md b/parse/train/BkMWx309FX/BkMWx309FX.md new file mode 100644 index 0000000000000000000000000000000000000000..8ebadf0f2a295c82b4e55969b7813126920f2cba --- /dev/null +++ b/parse/train/BkMWx309FX/BkMWx309FX.md @@ -0,0 +1,730 @@ +# REINFORCEMENT LEARNING WITH PERTURBED REWARDS + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +Recent studies have shown that reinforcement learning (RL) models can be vulnerable in various scenarios, where noises from different sources could appear. For instance, the observed reward channel is often subject to noise in practice (e.g., when observed rewards are collected through sensors), and thus observed rewards may not be credible. Also, in applications such as robotics, a deep reinforcement learning (DRL) algorithm can be manipulated to produce arbitrary errors. In this paper, we consider noisy RL problems where observed rewards by RL agents are generated with a reward confusion matrix. We call such observed rewards as perturbed rewards. We develop an unbiased reward estimator aided robust RL framework that enables RL agents to learn in noisy environments while observing only perturbed rewards. Our framework draws upon approaches for supervised learning with noisy data. The core ideas of our solution include estimating a reward confusion matrix and defining a set of unbiased surrogate rewards. We prove the convergence and sample complexity of our approach. Extensive experiments on different DRL platforms show that policies based on our estimated surrogate reward can achieve higher expected rewards, and converge faster than existing baselines. For instance, the state-of-the-art PPO algorithm is able to obtain $6 7 . 5 \%$ and $4 6 . 7 \%$ improvements in average on five Atari games, when the error rates are $10 \%$ and $30 \%$ respectively. + +# 1 INTRODUCTION + +Designing a suitable reward function plays a critical role in building reinforcement learning models for real-world applications. Ideally, one would want to customize reward functions to achieve application-specific goals (Hadfield-Menell et al., 2017). In practice, however, it is difficult to design a function that produces credible rewards in the presence of noise. This is because the output from any reward function is subject to multiple kinds of randomness: + +• Inherent Noise. For instance, sensors on a robot will be affected by physical conditions such as temperature and lighting, and therefore will report back noisy observed rewards. +• Application-Specific Noise. In machine teaching tasks (Thomaz et al., 2006; Loftin et al., 2014), when an RL agent receives feedback/instructions from people, different human instructors might provide drastically different feedback due to their personal styles and capabilities. This way the RL agent (machine) will obtain reward with bias. +• Adversarial Noise. Adversarial perturbation has been widely explored in different learning tasks and shows strong attack power against different machine learning models. For instance, Huang et al. (2017) has shown that by adding adversarial perturbation to each frame of the game, they can mislead RL policies arbitrarily. + +Assuming an arbitrary noise model makes solving this noisy RL problem extremely challenging. Instead, we focus on a specific noisy reward model which we call perturbed rewards, where the observed rewards by RL agents are generated according to a reward confusion matrix. This is not a very restrictive setting to start with, even considering that the noise could be adversarial: Given that arbitrary pixel value manipulation attack in RL is not very practical, adversaries in the real-world have high incentives to inject adversarial perturbation to the reward value by slightly modifying it. For instance, adversaries can manipulate sensors via reversing the reward value. + +In this paper, we develop an unbiased reward estimator aided robust framework that enables an RL agent to learn in a noisy environment with observing only perturbed rewards. Our solution framework builds on existing reinforcement learning algorithms, including the recently developed DRL ones ( $Q$ -Learning (Watkins, 1989; Watkins & Dayan, 1992), Cross-Entropy Method (CEM) (Szita & Lorincz, 2006), Deep SARSA (Sutton & Barto, 1998), Deep ¨ $Q$ -Network (DQN) (Mnih et al., 2013; 2015; van Hasselt et al., 2016), Dueling DQN (DDQN) (Wang et al., 2016), Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu et al., 2016) and Proximal Policy Optimization (PPO) (Schulman et al., 2017) algorithms). + +The main challenge is that the observed rewards are likely to be biased, and in RL or DRL the accumulated errors could amplify the reward estimation error over time. We do not require any assumption on knowing the true distribution of reward or adversarial strategies, other than the fact that the generation of noises follow an unknown reward confusion matrix. Instead, we address the issue of estimating the reward confusion matrices by proposing an efficient and flexible estimation module. Everitt et al. (2017) provided preliminary studies for the noisy reward problem and gave some general negative results. The authors proved a No Free Lunch theorem, which is, without any assumption about what the reward corruption is, all agents can be misled. Our results do not contradict with the results therein, as we consider a specific noise generation model (that leads to a set of perturbed rewards). We analyze the convergence and sample complexity for the policy trained based on our proposed method using surrogate rewards in RL, using $Q$ -Learning as an example. + +We conduct extensive experiments on OpenAI Gym (Brockman et al., 2016) (AirRaid, Alien, Carnival, MsPacman, Pong, Phoenix, Seaquest) and show that the proposed reward robust RL method achieves comparable performance with the policy trained using the true rewards. In some cases, our method even achieves higher cumulative reward - this is surprising to us at first, but we conjecture that the inserted noise together with our noisy-removal unbiased estimator adds another layer of exploration, which proves to be beneficial in some settings. This merits a future study. + +Our contributions are summarized as follows: (1) We adapt and generalize the idea of defining a simple but effective unbiased estimator for true rewards using observed and perturbed rewards to the reinforcement learning setting. The proposed estimator helps guarantee the convergence to the optimal policy even when the RL agents only have noisy observations of the rewards. (2) We analyze the convergence to the optimal policy and finite sample complexity of our reward robust RL methods, using $Q$ -Learning as the running example. (3) Extensive experiments on OpenAI Gym show that our proposed algorithms perform robustly even at high noise rates. + +# 1.1 RELATED WORK + +Robust Reinforcement Learning It is known that RL algorithms are vulnerable to noisy environments (Irpan, 2018). Recent studies (Huang et al., 2017; Kos & Song, 2017; Lin et al., 2017) show that learned RL policies can be easily misled with small perturbations in observations. The presence of noise is very common in real-world environments, especially in robotics-relevant applications. Consequently, robust (adversarial) reinforcement learning (RRL/RARL) algorithms have been widely studied, aiming to train a robust policy which is capable of withstanding perturbed observations (Teh et al., 2017; Pinto et al., 2017; Gu et al., 2018) or transferring to unseen environments (Rajeswaran et al., 2016; Fu et al., 2017). However, these robust RL algorithms mainly focus on noisy vision observations, instead of the observed rewards. A couple of recent works (Lim et al., 2016; Roy et al., 2017) have also looked into a rather parallel question of training robust RL algorithms with uncertainty in models. + +Learning with Noisy Data Learning appropriately with biased data has received quite a bit of attention in recent machine learning studies Natarajan et al. (2013); Scott et al. (2013); Scott (2015); Sukhbaatar & Fergus (2014); van Rooyen & Williamson (2015); Menon et al. (2015). The idea of above line of works is to define unbiased surrogate loss function to recover the true loss using the knowledge of the noises. We adapt these approaches to reinforcement learning. Though intuitively the idea should apply in our RL settings, our work is the first one to formally establish this extension both theoretically and empirically. Our quantitative understandings will provide practical insights when implementing reinforcement learning algorithms in noisy environments. + +# 2 PROBLEM FORMULATION AND PRELIMINARIES + +In this section, we define our problem of learning from perturbed rewards in reinforcement learning. Throughout this paper, we will use perturbed reward and noisy reward interchangeably, as each time step of our sequential decision making setting is similar to the “learning with noisy data” setting in supervised learning (Natarajan et al., 2013; Scott et al., 2013; Scott, 2015; Sukhbaatar & Fergus, 2014). In what follows, we formulate our Markov Decision Process (MDP) problem and the reinforcement learning (RL) problem with perturbed (noisy) rewards. + +2.1 REINFORCEMENT LEARNING: THE NOISE-FREE SETTING + +Our RL agent interacts with an unknown environment and attempts to maximize the total of his collected reward. The environment is formalized as a Markov Decision Process (MDP), denoting as $\mathcal { M } = \langle \boldsymbol { S } , \mathcal { A } , \mathcal { R } , \mathcal { P } , \boldsymbol { \gamma } \rangle$ . At each time $t$ , the agent in state $s _ { t } ~ \in ~ S$ takes an action $a _ { t } \in \mathcal A$ , which returns a reward $r ( s _ { t } , a _ { t } , s _ { t + 1 } ) \ \in \ \mathcal { R }$ (which we will also shorthand as $r _ { t }$ ), and leads to the next state $s _ { t + 1 } \in S$ according to a transition probability kernel $\mathcal { P }$ , which encodes the probability $\mathbb { P } _ { a } \big ( s _ { t } , s _ { t + 1 } \big )$ . Commonly $\mathcal { P }$ is unknown to the agent. The agent’s goal is to learn the optimal policy, a conditional distribution $\pi ( a | s )$ that maximizes the state’s value function. The value function calculates the cumulative reward the agent is expected to receive given he would follow the current policy $\pi$ after observing the current state $s _ { t }$ : $V ^ { \pi } ( s ) = \mathbb { E } _ { \pi } \left[ \bar { \sum _ { k = 1 } ^ { \infty } } \gamma ^ { k } r _ { t + k } \ : | \ : s _ { t } = s \right] ,$ , where $0 ~ \leq ~ \gamma ~ \leq ~ 1 ^ { 1 }$ is a discount factor. Intuitively, the agent evaluates how preferable each state is given the current policy. From the Bellman Equation, the optimal value function is given by $\begin{array} { r } { V ^ { * } ( s ) \ = \ \operatorname* { m a x } _ { a \in \mathcal { A } } \sum _ { s _ { t + 1 } \in \mathcal { S } } \mathbb { P } _ { a } \left( s _ { t } , s _ { t + 1 } \right) \left[ r _ { t } + \gamma V ^ { * } \left( s _ { t + 1 } \right) \right] } \end{array}$ . It is a standard practice for RL algorithms to learn a state-action value function, also called the $Q$ -function. $Q$ -function denotes the expected cumulative reward if agent chooses $a$ in the current state and follows $\pi$ thereafter: $\begin{array} { r } { Q ^ { \pi } ( s , a ) = \mathbb { E } _ { \pi } \left[ r ( s _ { t } , a _ { t } , s _ { t + 1 } ) + \gamma V ^ { \pi } ( s _ { t + 1 } ) \ | \ s _ { t } = s , a _ { t } = a \right] . } \end{array}$ . + +# 2.2 PERTURBED REWARD IN RL + +In many practical settings, our RL agent does not observe the reward feedback perfectly. We consider the following MDP with perturbed reward, denoting as $\tilde { \mathcal { M } } = \langle \mathcal { S } , \mathcal { A } , \mathcal { R } , C , \mathcal { P } , \gamma \rangle ^ { 2 }$ : instead of observing $\boldsymbol { r } _ { t } \in \mathcal { R }$ at each time $t$ directly (following his action), our RL agent only observes a perturbed version of $r _ { t }$ , denoting as $\tilde { r } _ { t } \in \tilde { \mathcal { R } }$ . For most of our presentations, we focus on the cases where $\mathcal { R }$ , $\tilde { \mathcal { R } }$ are finite sets; but our results generalize to the continuous reward settings. + +The generation of $\tilde { r }$ follows a certain function $C : \mathcal { S } \times \mathcal { R } \tilde { \mathcal { R } }$ . To let our presentation stay focused, we consider the following simple state-independent3 flipping error rates model: if the rewards are binary (consider $r _ { + }$ and $r _ { - }$ ), $\bar { \tilde { r } } \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) \ ( \tilde { r } _ { t } )$ can be characterized by the following noise rate parameters $e _ { + } , e _ { - }$ : e $\mathbf { \Phi } _ { + } \ = \ \mathbb { P } \big ( \tilde { r } \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) \ = \ r _ { - } \big | r \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) \ = \ r _ { + } \big )$ , $e _ { - } ~ = ~ \mathbb { P } ( \tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) ~ =$ $r _ { + } | r ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } )$ . When the signal levels are beyond binary, suppose there are $M$ outcomes in total, denoting as $[ R _ { 0 } , R _ { 1 } , \cdot \cdot \cdot , R _ { M - 1 } ]$ . $\tilde { r } _ { t }$ will be generated according to the following confusion matrix $\mathbf { C } _ { M \times M }$ where each entry $c _ { j , k }$ indicates the flipping probability for generating a perturbed outcome: $c _ { j , k } = \mathbb { P } ( \tilde { r } _ { t } = R _ { k } | r _ { t } = \tilde { R _ { j } } )$ . Again we’d like to note that we focus on settings with finite reward levels for most of our paper, but we provide discussions in Section 3.1 on how to handle continuous rewards with discretizations. + +In the paper, we do not assume knowing the noise rates (i.e., the reward confusion matrices), which is different from the assumption of knowing them as adopted in many supervised learning works Natarajan et al. (2013). Instead we will estimate the confusion matrices (Section 3.3). + +# 3 LEARNING WITH PERTURBED REWARDS + +In this section, we first introduce an unbiased estimator for binary rewards in our reinforcement learning setting when the error rates are known. This idea is inspired by Natarajan et al. (2013), but we will extend the method to the multi-outcome, as well as the continuous reward settings. + +# 3.1 UNBIASED ESTIMATOR FOR TRUE REWARD + +With the knowledge of noise rates (reward confusion matrices), we are able to establish an unbiased approximation of the true reward in a similar way as done in Natarajan et al. (2013). We will call such a constructed unbiased reward as a surrogate reward. To give an intuition, we start with replicating the results for binary reward $\mathcal { R } = \{ r _ { - } , r _ { + } \}$ in our RL setting: + +Lemma 1. Let r be bounded. Then, if we define, + +$$ +\hat { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) : = \left\{ \begin{array} { l l } { \frac { ( 1 - e _ { - } ) \cdot r _ { + } - e _ { + } \cdot r _ { - } } { 1 - e _ { + } - e _ { - } } } & { \left( \tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { + } \right) } \\ { \frac { ( 1 - e _ { + } ) \cdot r _ { - } - e _ { - } \cdot r _ { + } } { 1 - e _ { + } - e _ { - } } } & { \left( \tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } \right) } \end{array} \right. +$$ + +we have for any $r \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) , \mathbb { E } _ { \tilde { r } \mid r } \big [ \hat { r } \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) \big ] = r \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) .$ + +In the standard supervised learning setting, the above property guarantees convergence - as more training data are collected, the empirical surrogate risk converges to its expectation, which is the same as the expectation of the true risk (due to unbiased estimators). This is also the intuition why we would like to replace the reward terms with surrogate rewards in our RL algorithms. + +The above idea can be generalized to the multi-outcome setting in a fairly straight-forward way. Define $\hat { \mathbf { R } } : = [ \hat { r } ( \tilde { r } = R _ { 0 } ) , \hat { r } ( \tilde { r } = R _ { 1 } ) , . . . , \hat { r } ( \tilde { r } = R _ { M - 1 } ) ]$ , where $\hat { r } ( \tilde { r } = R _ { m } )$ denotes the value of the surrogate reward when the observed reward is $R _ { k }$ . Let ${ \bf R } = [ R _ { 0 } ; R _ { 1 } ; \cdot \cdot \cdot ; R _ { M - 1 } ]$ be the bounded reward matrix with $M$ values. We have the following results: + +Lemma 2. Suppose $\mathbf { C } _ { M \times M }$ is invertible. With defining: + +$$ +\begin{array} { r } { \hat { \bf R } = { \bf C } ^ { - 1 } \cdot { \bf R } . } \end{array} +$$ + +we have for any $r \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) , \mathbb { E } _ { \tilde { r } \mid r } \big [ \hat { r } \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) \big ] = r \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) .$ + +Continuous reward When the reward signal is continuous, we discretize it into $M$ intervals and view each interval as a reward level, with its value approximated by its middle point. With increasing $M$ , this quantization error can be made arbitrarily small. Our method is then the same as the solution for the multi-outcome setting, except for replacing rewards with discretized ones. Note that the finerdegree quantization we take, the smaller the quantization error - but we would suffer from learning a bigger reward confusion matrix. This is a trade-off question that can be addressed empirically. + +So far we have assumed knowing the confusion matrices, but we will address this additional estimation issue in Section 3.3, and present our complete algorithm therein. + +# 3.2 CONVERGENCE AND SAMPLE COMPLEXITY: $Q$ -LEARNING + +We now analyze the convergence and sample complexity of our surrogate reward based RL algorithms (with assuming knowing $\mathbf { C }$ ), taking $Q$ -Learning as an example. + +Convergence guarantee First, the convergence guarantee is stated in the following theorem: + +Theorem 1. Given a finite MDP, denoting as $\hat { \mathcal { M } } = \langle S , \mathcal { A } , \hat { \mathcal { R } } , \mathcal { P } , \gamma \rangle$ , the $Q$ -learning algorithm with surrogate rewards, given by the update rule, + +$$ +Q _ { t + 1 } ( s _ { t } , a _ { t } ) = ( 1 - \alpha _ { t } ) Q ( s _ { t } , a _ { t } ) + \alpha _ { t } \left[ \hat { r } _ { t } + \gamma \operatorname* { m a x } _ { b \in \cal A } Q ( { s } _ { t + 1 } , b ) \right] , +$$ + +converges w.p.1 to the optimal $Q$ -function as long as $\textstyle \sum _ { t } \alpha _ { t } = \infty$ and $\textstyle \sum _ { t } \alpha _ { t } ^ { 2 } < \infty$ + +Note that the term on the right hand of Eqn. (3) includes surrogate reward $\hat { r }$ estimated using Eqn. (1) and Eqn. (2). Theorem 1 states that that agents will converge to the optimal policy $w . p . I$ with replacing the rewards with surrogate rewards, despite of the noises in observing rewards. This result is not surprising - though the surrogate rewards introduce larger variance, we are grateful of their unbiasedness, which grants us the convergence. In other words, the addition of the perturbed reward does not destroy the convergence guarantees of $Q$ -Learning. + +Sample complexity To establish our sample complexity results, we first introduce a generative model following previous literature (Kearns & Singh, 1998; 2000; Kearns et al., 1999). This is a practical MDP setting to simplify the analysis. + +Definition 1. A generative model $G ( \mathcal { M } )$ for an MDP $\mathcal { M }$ is a sampling model which takes a stateaction pair $\left( { { s _ { t } } , { a _ { t } } } \right)$ as input, and outputs the corresponding reward $r ( s _ { t } , a _ { t } )$ and the next state $s _ { t + 1 }$ randomly with the probability of $\mathbb { P } _ { a } \left( s _ { t } , s _ { t + 1 } \right)$ , i.e., $s _ { t + 1 } \sim \mathbb { P } ( \cdot | s , a )$ . + +Exact value iteration is impractical if the agents follow the generative models above exactly (Kakade, 2003). Consequently, we introduce a phased $Q$ -Learning which is similar to the ones presented in Kakade (2003); Kearns & Singh (1998) for the convenience of proving our sample complexity results. We briefly outline phased $Q$ -Learning as follows - the complete description (Algorithm 2) can be found in Appendix A. + +Definition 2. Phased $Q$ -Learning algorithm takes m samples per phase by calling generative model $G ( \mathcal { M } )$ . It uses the collected m samples to estimate the transition probability $\mathcal { P }$ and update the estimated value function per phase. Calling generative model $G ( \hat { \mathcal { M } } )$ means that surrogate rewards are returned and used to update value function per phase. + +The sample complexity of Phased $Q$ -Learning is given as follows: + +Theorem 2. (Upper Bound) Let $r ~ \in ~ [ 0 , R _ { \mathrm { m a x } } ]$ be bounded reward, $\mathbf { C }$ be an invertible reward confusion matrix with $\operatorname* { d e t } ( \mathbf { C } )$ denoting its determinant. For an appropriate choice of $m$ , the Phased $Q$ -Learning algorithm calls the generative model $\begin{array} { r } { G ( \hat { \mathcal { M } } ) \hat { \textbf { \textit { O } } } \left( \frac { | \mathcal { S } | | \mathcal { A } | T } { \epsilon ^ { 2 } ( 1 - \gamma ) ^ { 2 } \operatorname* { d e t } ( \mathbf { C } ) ^ { 2 } } \log \frac { | \mathcal { S } | | \mathcal { A } | T } { \delta } \right) } \end{array}$ times in $T$ epochs, and returns a policy such that for all state $s \in S$ , $| V _ { \pi } ( s ) - V ^ { * } ( s ) | \le \epsilon$ , $\epsilon > 0$ , w.p. $\geq 1 - \delta$ , $0 < \delta < 1$ . + +Theorem 2 states that, to guarantee the convergence to the optimal policy, the number of samples needed is no more than $\bar { O ( 1 / \mathrm { d e t } ( \mathbf { C } ) ^ { 2 } ) }$ times of the one needed when the RL agent observes true rewards perfectly. This additional constant is the price we pay for the noise presented in our learning environment. When the noise level is high, we expect to see a much higher $1 / \mathrm { d e t } ( \mathbf { C } ) ^ { 2 }$ ; otherwise when we are in a low-noise regime , $Q$ -Learning can be very efficient with surrogate reward (Kearns & Singh, 2000). Note that Theorem 2 gives the upper bound in discounted MDP setting; for undiscounted setting $( \gamma = 1 )$ ), the upper bound is at the order of $\begin{array} { r } { O \left( \frac { | \mathcal { S } | | \boldsymbol { A } | T ^ { 3 } } { \epsilon ^ { 2 } \operatorname* { d e t } ( \mathbf { C } ) ^ { 2 } } \log \frac { | \mathcal { S } | | \boldsymbol { A } | T } { \delta } \right) } \end{array}$ . Lower bound result is omitted due to the lack of space. The idea of constructing MDP in which learning is difficult and the algorithm must make $\left( \frac { | \mathcal { S } | | \bar { \mathcal { A } } | T } { \epsilon } \log \frac { 1 } { \delta } \right)$ calls to $G ( \hat { \mathcal { M } } )$ , is similar to Kakade (2003). + +While the surrogate reward guarantees the unbiasedness, we sacrifice the variance at each of our learning steps, and this in turn delays the convergence (as also evidenced in the sample complexity bound). It can be verified that the variance of surrogate reward is bounded when $\mathbf { C }$ is invertible, and it is always higher than the variance of true reward. This is summarized in the following theorem: + +Theorem 3. Let $r \in [ 0 , R _ { \mathrm { m a x } } ]$ be bounded reward and confusion matrix $\mathbf { C }$ is invertible. Then, the variance of surrogate reward $\hat { r }$ is bounded as follows: $\begin{array} { r } { \mathbf { V a r } ( r ) \le \mathbf { V a r } ( \hat { r } ) \le \frac { M ^ { 2 } } { \operatorname* { d e t } ( \mathbf { C } ) ^ { 2 } } \cdot R _ { \operatorname* { m a x } } ^ { 2 } } \end{array}$ . + +To give an intuition of the bound, when we have binary reward, the variance for surrogate reward bounds as follows: $\begin{array} { r } { \mathbf { V a r } ( r ) \leq \mathbf { V a r } ( \hat { r } ) \leq \frac { 4 R _ { \operatorname* { m a x } } ^ { 2 } } { ( 1 - e _ { + } - e _ { - } ) ^ { 2 } } } \end{array}$ . As $e _ { - } + e _ { + } \to 1$ , the variance becomes unbounded and the proposed estimator is no longer effective, nor will it be well-defined. In practice, there is a trade-off question between bias and variance by tuning a linear combination of $\mathbf { R }$ and $\hat { \mathbf { R } }$ , i.e., $\mathbf { R } _ { p r o x y } = \eta \mathbf { R } + ( 1 - \eta ) \hat { \mathbf { R } }$ , and choosing an appropriate $\eta \in [ 0 , 1 ]$ . + +# 3.3 ESTIMATION OF CONFUSION MATRICES + +In Section 3.1 we have assumed the knowledge of reward confusion matrices, in order to compute the surrogate reward. This knowledge is often not available in practice. Estimating these confusion matrices is challenging without knowing any ground truth reward information; but we’d like to note that efficient algorithms have been developed to estimate the confusion matrices in supervised learning settings (Bekker & Goldberger, 2016; Liu & Liu, 2017; Khetan et al., 2017; Hendrycks et al., 2018). The idea in these algorithms is to dynamically refine the error rates based on aggregated rewards. Note this approach is not different from the inference methods in aggregating crowdsourcing labels, as referred in the literature (Dawid & Skene, 1979; Karger et al., 2011; Liu et al., 2012). We adapt this idea to our reinforcement learning setting, which is detailed as follows. + +At each training step, the RL agent collects the noisy reward and the current state-action pair. Then, for each pair in $\mathcal { S } \times \mathcal { A }$ , the agent predicts the true reward based on accumulated historical observations of reward for the corresponding state-action pair via, e.g., averaging (majority voting). Finally, with the predicted true reward and the accuracy (error rate) for each state-action pair, the estimated reward confusion matrices $\tilde { \mathbf { C } }$ are given by + +$$ +\tilde { c } _ { i , j } = \frac { \sum _ { ( s , a ) \in \mathcal { S } \times \mathcal { A } } \# \left[ \tilde { r } ( s , a ) = R _ { j } | \bar { r } ( s , a ) = R _ { i } \right] } { \sum _ { ( s , a ) \in \mathcal { S } \times \mathcal { A } } \# [ \bar { r } ( s , a ) = R _ { i } ] } , +$$ + +where in above $\# \left[ \cdot \right]$ denotes the number of state-action pair that satisfies the condition $[ \cdot ]$ in the set of observed rewards $\tilde { R } ( s , a )$ (see Algorithm 1 and 3); ${ \bar { r } } ( s , a )$ and $\tilde { r } ( s , a )$ denote predicted true rewards (using majority voting) and observed rewards when the state-action pair is $( s , a )$ . The above procedure of updating $\tilde { c } _ { i , j }$ continues indefinitely as more observation arrives. + +Our final definition of surrogate reward replaces a known reward confusion $\mathbf { C }$ in Eqn. (2) with our estimated one $\tilde { \mathbf { C } }$ . We denote this estimated surrogate reward as $\dot { r }$ . + +We present (Reward Robust RL) in Algorithm $1 ^ { 4 }$ . Note that the algorithm is rather generic, and we can plug in any exisitng RL algorithm into our reward robust one, with only changes in replacing the rewards with our estimated surrogate rewards. + +# Algorithm 1 Reward Robust RL (sketch) + +Input: $\tilde { \mathcal { M } } , \alpha , \beta , \tilde { R } ( s , a )$ +Output: $Q ( s ) , \pi ( s , t )$ Initialize value function $Q ( s , a )$ arbitrarily. while $Q$ is not converged do Initialize state $s \in S$ while $s$ is not terminal do Choose $a$ from $s$ using policy derived from $Q$ Take action $a$ , observe $s ^ { \prime }$ and noisy reward $\tilde { r }$ if collecting enough $\tilde { r }$ for every $\boldsymbol { s } \times \boldsymbol { A }$ pair then Get predicted true reward $\bar { r }$ using majority voting Estimate confusion matrix $\tilde { \mathbf { C } }$ based on $\tilde { r }$ and $\bar { r }$ (Eqn. 4) Obtain surrogate reward $\dot { r }$ $( \hat { \mathbf { R } } = ( 1 - \eta ) \cdot \mathbf { R } + \eta \cdot \mathbf { C } ^ { - 1 } \mathbf { R } )$ Update $Q$ using surrogate reward $s \gets s ^ { \prime }$ return $Q ( s )$ and $\pi ( s )$ + +# 4 EXPERIMENTS + +In this section, reward robust RL is tested in different games, with different noise settings. Due to space limit, more experimental results can be found in Appendix D. + +# 4.1 EXPERIMENTAL SETUP + +Environments and RL Algorithms To fully test the performance under different environments, we evaluate the proposed robust reward RL method on two classic control games (CartPole, Pendulum) and seven Atari 2600 games (AirRaid, Alien, Carnival, MsPacman, Pong, Phoenix, Seaquest), which encompass a large variety of environments, as well as rewards. Specifically, the rewards could be unary (CartPole), binary (most of Atari games), multivariate (Pong) and even continuous (Pendulum). A set of state-of-the-art reinforcement learning algorithms are experimented with while training under different amounts of noise (See Table 3)5. For each game and algorithm, three policies are trained based on different random initialization to decrease the variance. + +Reward Post-Processing For each game and RL algorithm, we test the performances for learning with true rewards, learning with noisy rewards and learning with surrogate rewards. Both symmetric and asymmetric noise settings with different noise levels are tested. For symmetric noise, the confusion matrices are symmetric. As for asymmetric noise, two types of random noise are tested: 1) rand-one, each reward level can only be perturbed into another reward; 2) rand-all, each reward could be perturbed to any other reward, via adding a random noise matrix. To measure the amount of noise w.r.t confusion matrices, we define the weight of noise $\omega$ in Appendix B.2. The larger $\omega$ is, the higher the noise rates are. + +# 4.2 ROBUSTNESS EVALUATION + +CartPole The goal in CartPole is to prevent the pole from falling by controlling the cart’s direction and velocity. The reward is $+ 1$ for every step taken, including the termination step. When the cart or pole deviates too much or the episode length is longer than 200, the episode terminates. Due to the unary reward $\{ + 1 \}$ in CartPole, a corrupted reward $- 1$ is added as the unexpected error $( e _ { - } = 0 )$ ). As a result, the reward space $\mathcal { R }$ is extended to $\{ + 1 , - 1 \}$ . Five algorithms $Q$ -Learning (1992), CEM (2006), SARSA (1998), DQN (2016) and DDQN (2016) are evaluated. + +![](images/773df94c8cbedc6b09e7efd3947033cf50e6fa007f6394f58545dd7c8f0bf193.jpg) +Figure 1: Learning curves from five RL algorithms on CartPole game with true rewards $( r ) \mathsf { l } .$ , noisy rewards $( \tilde { r } )$ and estimated surrogate rewards $( \dot { r } )$ $( \eta = 1 )$ ) . Note that reward confusion matrices C are unknown to the agents here. Full results are in Appendix D.2 (Figure 6). + +In Figure 1, we show that our estimator successfully produces meaningful surrogate rewards that adapt the underlying RL algorithms to the noisy settings, without any assumption of the true distribution of rewards. With the noise rate increasing (from 0.1 to 0.9), the models with noisy rewards converge slower due to larger biases. However, we observe that the models always converge to the best score 200 with the help of surrogate rewards. + +In some circumstances (slight noise - see Figure 6a, 6b, 6c, 6d), the surrogate rewards even lead to faster convergence. This points out an interesting observation: learning with surrogate reward even outperforms the case with observing the true reward. We conjecture that the way of adding noise and then removing the bias introduces implicit exploration. This implies that for settings even with true reward, we might consider manually adding noise and then remove it in expectation. + +Pendulum The goal in Pendulum is to keep a frictionless pendulum standing up. Different from the CartPole setting, the rewards in pendulum are continuous: $r \in ( - 1 6 . 2 8 , 0 . 0 ]$ . The closer the reward is to zero, the better performance the model achieves. Following our extension (see Section 3.1), the $( - 1 7 , 0 ]$ is firstly discretized into 17 intervals: $( - 1 7 , - 1 6 ] , \bar { ( - 1 6 , - 1 5 ] } , \cdot \cdot \cdot , ( - 1 , 0 ]$ , with its value approximated using its maximum point. After the quantization step, the surrogate rewards can be estimated using multi-outcome extensions presented in Section 3.1. + +Table 1: Average scores of various RL algorithms on CartPole and Pendulum with noisy rewards $( \tilde { r } )$ and surrogate rewards under known $( \hat { r } )$ or estimated $( \dot { r } )$ noise rates. Note that the results for last two algorithms DDPG (rand-one) $\&$ NAF (rand-all) are on Pendulum, but the others are on CartPole. + +
Noise RateRewardQ-LearnCEMSARSADQNDDQNDDPGNAF
w=0.1r170.098.1165.2187.2187.8-1.03-4.48
165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
w= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.182.2159.6186.7200.0 -1.05-1.36
+ +We experiment two popular algorithms, DDPG (2015) and NAF (2016) in this game. In Figure 2, both algorithms perform well with surrogate rewards under different amounts of noise. In most cases, the biases were corrected in the long-term, even when the amount of noise is extensive (e.g., $\omega ~ = ~ 0 . 7 )$ ). The quantitative scores on CartPole and Pendulum are given in Table 1, where the scores are averaged based on the last thirty episodes. The full results $\left( \omega > 0 . 5 \right)$ ) can be found in Appendix D.1, so does Table 2. Our reward robust RL method is able to achieve consistently good scores. + +![](images/451aa49fb9cf8dc3251270bf181057baeed34713b0cc897c0ce4258ff7329b11.jpg) +Figure 2: Learning curves from DDPG and NAF on Pendulum game with true rewards $( r ) \mathsf { l }$ , noisy rewards $( \tilde { r } )$ and surrogate rewards $( \hat { r } )$ $( \eta = 1$ ) . Both symmetric and asymmetric noise are conduced in the experiments. Full results are in Appendix D.2 (Figure 8). + +Atari We validate our algorithm on seven Atari 2600 games using the state-of-the-art algorithm PPO (Schulman et al., 2017). The games are chosen to cover a variety of environments. The rewards in the Atari games are clipped into $\{ - 1 , 0 , 1 \}$ . We leave the detailed settings to Appendix B. + +![](images/38cb45e4b166d635c44b6c36d861be0128e5f1445e49d09a112bea51194f8e04.jpg) +Figure 3: Learning curves from PPO on Pong-v4 game with true rewards $( r ) \mathsf { l } ,$ , noisy rewards $( \tilde { r } )$ and surrogate rewards $( \eta = 1$ ) $( \hat { r } ) \mathbf { l }$ . The noise rates increase from 0.1 to 0.9, with a step of 0.1. + +Results for PPO on Pong-v4 in symmetric noise setting are presented in Figure 3. Due to limited space, more results on other Atari games and noise settings are given in Appendix D.3. Similar to previous results, our surrogate estimator performs consistently well and helps PPO converge to the optimal policy. Table 2 shows the average scores of PPO on five selected Atari games with different amounts of noise (symmetric $\&$ asymmetric). In particular, when the noise rates $e _ { + } = e _ { - } > 0 . 3 .$ , agents with surrogate rewards obtain significant amounts of improvements in average scores. We do not present the results for the case with unknown $\mathbf { C }$ because the state-space (image-input) is very large for Atari games, which is difficult to handle with the solution given in Section 3.3. + +# 5 CONCLUSION + +Only an underwhelming amount of reinforcement learning studies have focused on the settings with perturbed and noisy rewards, despite the fact that such noises are common when exploring a realworld scenario, that faces sensor errors or adversarial examples. We adapt the ideas from supervised learning with noisy examples (Natarajan et al., 2013), and propose a simple but effective RL framework for dealing with noisy rewards. The convergence guarantee and finite sample complexity of $Q$ -Learning (or its variant) with estimated surrogate rewards are given. To validate the effectiveness of our approach, extensive experiments are conducted on OpenAI Gym, showing that surrogate rewards successfully rescue models from misleading rewards even at high noise rates. + +Table 2: Average scores of PPO on five selected games with noisy rewards $( \tilde { r } )$ and surrogate rewards $( \hat { r } )$ . The experiments are repeated three times with different random seeds. + +
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_=e+=0.1-2044.21814.81239.24608.91709.1849.2
67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.3r-770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+ =0.3r-1180.1543.1919.82600.31109.6727.8
46.7%个1730.81637.7966.14171.51470.2408.6
+ +# REFERENCES + +Alan Joseph Bekker and Jacob Goldberger. Training deep neural-networks based on unreliable labels. In ICASSP, pp. 2682–2686. IEEE, 2016. +Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym, 2016. +Alexander Philip Dawid and Allan M Skene. Maximum likelihood estimation of observer error-rates using the em algorithm. Applied statistics, pp. 20–28, 1979. +Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, and Yuhuai Wu. Openai baselines. https://github.com/ openai/baselines, 2017. +Tom Everitt, Victoria Krakovna, Laurent Orseau, and Shane Legg. Reinforcement learning with a corrupted reward channel. In IJCAI, pp. 4705–4713. ijcai.org, 2017. +Justin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adversarial inverse reinforcement learning. CoRR, abs/1710.11248, 2017. +Shixiang Gu, Timothy P. Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In ICML, volume 48 of JMLR Workshop and Conference Proceedings, pp. 2829–2838. JMLR.org, 2016. +Zhaoyuan Gu, Zhenzhong Jia, and Howie Choset. Adversary a3c for robust reinforcement learning, 2018. URL https://openreview.net/forum?id $=$ SJvrXqvaZ. +Dylan Hadfield-Menell, Smitha Milli, Pieter Abbeel, Stuart J Russell, and Anca Dragan. Inverse reward design. In Advances in Neural Information Processing Systems, pp. 6765–6774, 2017. +Dan Hendrycks, Mantas Mazeika, Duncan Wilson, and Kevin Gimpel. Using trusted data to train deep networks on labels corrupted by severe noise. CoRR, abs/1802.05300, 2018. +Sandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks on neural network policies. arXiv preprint arXiv:1702.02284, 2017. +Alex Irpan. Deep reinforcement learning doesn’t work yet. https://www.alexirpan.com/ 2018/02/14/rl-hard.html, 2018. +Tommi S. Jaakkola, Michael I. Jordan, and Satinder P. Singh. Convergence of stochastic iterative dynamic programming algorithms. In NIPS, pp. 703–710. Morgan Kaufmann, 1993. + +Sham Machandranath Kakade. On the Sample Complexity of Reinforcement Learning. PhD thesis, University of London, 2003. + +David R Karger, Sewoong Oh, and Devavrat Shah. Iterative learning for reliable crowdsourcing systems. In Advances in neural information processing systems, pp. 1953–1961, 2011. + +Michael J. Kearns and Satinder P. Singh. Finite-sample convergence rates for q-learning and indirect algorithms. In NIPS, pp. 996–1002. The MIT Press, 1998. + +Michael J. Kearns and Satinder P. Singh. Bias-variance error bounds for temporal difference updates. In COLT, pp. 142–147. Morgan Kaufmann, 2000. + +Michael J. Kearns, Yishay Mansour, and Andrew Y. Ng. A sparse sampling algorithm for nearoptimal planning in large markov decision processes. In IJCAI, pp. 1324–1231. Morgan Kaufmann, 1999. + +Ashish Khetan, Zachary C. Lipton, and Anima Anandkumar. Learning from noisy singly-labeled data. CoRR, abs/1712.04577, 2017. + +Jernej Kos and Dawn Song. Delving into adversarial attacks on deep policies. CoRR, abs/1705.06452, 2017. + +Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. CoRR, abs/1509.02971, 2015. + +Shiau Hong Lim, Huan Xu, and Shie Mannor. Reinforcement learning in robust markov decision processes. Math. Oper. Res., 41(4):1325–1353, 2016. + +Yen-Chen Lin, Zhang-Wei Hong, Yuan-Hong Liao, Meng-Li Shih, Ming-Yu Liu, and Min Sun. Tactics of adversarial attack on deep reinforcement learning agents. In IJCAI, pp. 3756–3762. ijcai.org, 2017. + +Qiang Liu, Jian Peng, and Alexander T Ihler. Variational inference for crowdsourcing. In Proc. of NIPS, 2012. + +Yang Liu and Mingyan Liu. An online learning approach to improving the quality of crowdsourcing. IEEE/ACM Transactions on Networking, 25(4):2166–2179, Aug 2017. + +R. Loftin, B. Peng, J. MacGlashan, M. L. Littman, M. E. Taylor, J. Huang, and D. L. Roberts. Learning something from nothing: Leveraging implicit human feedback strategies. In The 23rd IEEE International Symposium on Robot and Human Interactive Communication, pp. 607–612, Aug 2014. + +Aditya Menon, Brendan Van Rooyen, Cheng Soon Ong, and Bob Williamson. Learning from corrupted binary labels via class-probability estimation. In International Conference on Machine Learning, pp. 125–134, 2015. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin A. Riedmiller. Playing atari with deep reinforcement learning. CoRR, abs/1312.5602, 2013. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529, 2015. + +Nagarajan Natarajan, Inderjit S Dhillon, Pradeep K Ravikumar, and Ambuj Tewari. Learning with noisy labels. In Advances in neural information processing systems, pp. 1196–1204, 2013. + +Lerrel Pinto, James Davidson, Rahul Sukthankar, and Abhinav Gupta. Robust adversarial reinforcement learning. In ICML, volume 70 of Proceedings of Machine Learning Research, pp. 2817–2826. PMLR, 2017. + +Matthias Plappert. keras-rl. https://github.com/keras-rl/keras-rl, 2016. + +Aravind Rajeswaran, Sarvjeet Ghotra, Sergey Levine, and Balaraman Ravindran. Epopt: Learning robust neural network policies using model ensembles. CoRR, abs/1610.01283, 2016. + +Joshua Romoff, Alexandre Piche, Peter Henderson, Vincent Franc¸ois-Lavet, and Joelle Pineau. Re- ´ ward estimation for variance reduction in deep reinforcement learning. CoRR, abs/1805.03359, 2018. + +Aurko Roy, Huan Xu, and Sebastian Pokutta. Reinforcement learning under model mismatch. CoRR, abs/1706.04711, 2017. + +John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. CoRR, abs/1707.06347, 2017. + +Anton Schwartz. A reinforcement learning method for maximizing undiscounted rewards. In ICML, pp. 298–305. Morgan Kaufmann, 1993. + +Clayton Scott. A rate of convergence for mixture proportion estimation, with application to learning from noisy labels. In AISTATS, 2015. + +Clayton Scott, Gilles Blanchard, Gregory Handy, Sara Pozzi, and Marek Flaska. Classification with asymmetric label noise: Consistency and maximal denoising. In COLT, pp. 489–511, 2013. + +Matthew J. Sobel. Mean-variance tradeoffs in an undiscounted MDP. Operations Research, 42(1): 175–183, 1994. + +Sainbayar Sukhbaatar and Rob Fergus. Learning from noisy labels with deep neural networks. arXiv preprint arXiv:1406.2080, 2(3):4, 2014. + +Richard S. Sutton and Andrew G. Barto. Reinforcement learning - an introduction. Adaptive computation and machine learning. MIT Press, 1998. + +Istvan Szita and Andras L ´ orincz. Learning tetris using the noisy cross-entropy method. ¨ Neural Computation, 18(12):2936–2941, 2006. + +Yee Whye Teh, Victor Bapst, Wojciech M. Czarnecki, John Quan, James Kirkpatrick, Raia Hadsell, Nicolas Heess, and Razvan Pascanu. Distral: Robust multitask reinforcement learning. In NIPS, pp. 4499–4509, 2017. + +Andrea Lockerd Thomaz, Cynthia Breazeal, et al. Reinforcement learning with human teachers: Evidence of feedback and guidance with implications for learning performance. 2006. + +John N. Tsitsiklis. Asynchronous stochastic approximation and q-learning. Machine Learning, 16 (3):185–202, 1994. + +Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double qlearning. In AAAI, pp. 2094–2100. AAAI Press, 2016. + +Brendan van Rooyen and Robert C Williamson. Learning in the presence of corruption. arXiv preprint arXiv:1504.00091, 2015. + +Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas. Dueling network architectures for deep reinforcement learning. In ICML, volume 48 of JMLR Workshop and Conference Proceedings, pp. 1995–2003. JMLR.org, 2016. + +Christopher J. C. H. Watkins and Peter Dayan. Q-learning. In Machine Learning, pp. 279–292, 1992. + +Christopher John Cornish Hellaby Watkins. Learning from Delayed Rewards. PhD thesis, King’s College, Cambridge, UK, May 1989. + +Yuchen Zhang, Xi Chen, Denny Zhou, and Michael I Jordan. Spectral methods meet em: A provably optimal algorithm for crowdsourcing. In Advances in neural information processing systems, pp. 1260–1268, 2014. + +# A PROOFS + +Proof of Lemma $^ { l }$ . For simplicity, we shorthand $\hat { r } \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) , \tilde { r } \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) , r \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big )$ as ${ \hat { r } } , { \tilde { r } } , r$ , and let $r _ { + } , r _ { - } , \hat { r } _ { + } , \hat { r } _ { - }$ denote the general reward levels and corresponding surrogate ones: + +$$ +\begin{array} { r } { \mathbb { E } _ { \tilde { r } | r } ( \hat { r } ) = \mathbb { P } _ { \tilde { r } | r } ( \hat { r } = \hat { r } _ { - } ) \hat { r } _ { - } + \mathbb { P } _ { \tilde { r } | r } ( \hat { r } = \hat { r } _ { + } ) \hat { r } _ { + } . } \end{array} +$$ + +When $r = r _ { + }$ , from the definition in Lemma 1: + +$$ +\mathbb { P } _ { \tilde { r } | r } ( \hat { r } = \hat { r } _ { - } ) = e _ { + } , \mathbb { P } _ { \tilde { r } | r } ( \hat { r } = \hat { r } _ { + } ) = 1 - e _ { + } . +$$ + +Taking the definition of surrogate rewards Eqn. (1) into Eqn. (5), we have + +$$ +\begin{array} { r l } & { \mathbb { E } _ { \tilde { r } | r } ( \hat { r } ) = e _ { + } \cdot \hat { r } _ { - } + ( 1 - e _ { + } ) \cdot \hat { r } _ { + } } \\ & { \qquad = e _ { + } \cdot \frac { ( 1 - e _ { + } ) r _ { - } - e _ { - } r _ { + } } { 1 - e _ { - } - e _ { + } } + ( 1 - e _ { + } ) \cdot \frac { ( 1 - e _ { - } ) r _ { + } - e _ { + } r _ { - } } { 1 - e _ { - } - e _ { + } } = r _ { + } . } \end{array} +$$ + +Similarly, when $r = r _ { - }$ , it also verifies $\mathbb { E } _ { \tilde { r } | r } \big [ \hat { r } \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big ) \big ] = r \big ( s _ { t } , a _ { t } , s _ { t + 1 } \big )$ . + +Proof of Lemma 2. The idea of constructing unbiased estimator is easily adapted to multi-outcome reward settings via writing out the conditions for the unbiasedness property (s.t. $\mathbb { E } _ { \tilde { r } | r } [ \hat { r } ] = r .$ ). For simplicity, we shorthand $\hat { r } ( \tilde { r } = R _ { i } )$ as $\hat { R } _ { i }$ in the following proofs. Similar to Lemma 1, we need to solve the following set of functions to obtain $\hat { r }$ : + +$$ +\left\{ \begin{array} { r l } & { R _ { 0 } = c _ { 0 , 0 } \cdot \hat { R } _ { 0 } + c _ { 0 , 1 } \cdot \hat { R } _ { 1 } + \dots + c _ { 0 , M - 1 } \cdot \hat { R } _ { M - 1 } } \\ & { R _ { 1 } = c _ { 1 , 0 } \cdot \hat { R } _ { 0 } + c _ { 1 , 1 } \cdot \hat { R } _ { 1 } + \dots + c _ { 1 , M - 1 } \cdot \hat { R } _ { M - 1 } } \\ & { \qquad \dots } \\ & { R _ { M - 1 } = c _ { M - 1 , 0 } \cdot \hat { R } _ { 0 } + c _ { M - 1 , 1 } \cdot \hat { R } _ { 1 } + \dots + c _ { M - 1 , M - 1 } \cdot \hat { R } _ { M - 1 } } \end{array} \right. +$$ + +where $\hat { R } _ { i }$ denotes the value of the surrogate reward when the observed reward is $R _ { i }$ . Define $\mathbf { R } : =$ $[ R _ { 0 } ; R _ { 1 } ; \cdot \cdot \cdot ; R _ { M - 1 } ]$ , and $\hat { \mathbf { R } } : = [ \hat { R } _ { 0 } , \hat { R } _ { 1 } , . . . , \hat { R } _ { M - 1 } ]$ , then the above equations are equivalent to: $\mathbf { R } = \mathbf { C } \cdot { \hat { \mathbf { R } } }$ . If the confusion matrix $\mathbf { C }$ is invertible, we obtain the surrogate reward: + +$$ +\begin{array} { r } { \hat { \bf R } = { \bf C } ^ { - 1 } \cdot { \bf R } . } \end{array} +$$ + +According to above definition, for any true reward level $R _ { i } , { i = 0 } , 1 , \cdots , M - 1$ , we have + +$$ +\mathbb { E } _ { \tilde { r } | r = R _ { i } } [ \hat { r } ] = c _ { i , 0 } \cdot \hat { R } _ { 0 } + c _ { i , 1 } \cdot \hat { R } _ { 1 } + \dots + c _ { i , M - 1 } \cdot \hat { R } _ { M - 1 } = R _ { i } . +$$ + +Furthermore, the probabilities for observing surrogate rewards can be written as follows: + +$$ +\hat { \bf P } = [ \hat { p } _ { 1 } , \hat { p } _ { 2 } , \cdots , \hat { p } _ { M } ] = \left[ \sum _ { j } p _ { j } c _ { j , 1 } , \sum _ { j } p _ { j } c _ { j , 2 } , \cdots , \sum _ { j } p _ { j } c _ { j , M } \right] , +$$ + +where $\begin{array} { r } { \hat { p } _ { i } = \sum _ { j } p _ { j } c _ { j , i } } \end{array}$ , and $\hat { p } _ { i }$ , $p _ { i }$ represent the probabilities of occurrence for surrogate reward $\hat { R } _ { i }$ and true reward $R _ { i }$ respectively. + +Corollary 1. Let $\hat { p } _ { i }$ and $p _ { i }$ denote the probabilities of occurrence for surrogate reward $\hat { r } ( \tilde { r } = R _ { i } )$ and true reward $R _ { i }$ . Then the surrogate reward satisfies, + +$$ +\sum _ { s ^ { \prime } \in S } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \sum _ { j } p _ { j } R _ { j } = \sum _ { j } \hat { p } _ { j } \hat { R } _ { j } . +$$ + +Proof of Corollary $^ { l }$ . From Lemma 2, we have, + +$$ +\begin{array} { r l r } & { } & { \displaystyle \sum _ { s _ { t } \in S } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \sum _ { s _ { t + 1 } \in S ; R _ { j } \in { \mathcal R } } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , R _ { j } ) R _ { j } } \\ & { } & { \displaystyle = \sum _ { R _ { j } \in { \mathcal R } } \sum _ { s _ { t + 1 } \in S } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) R _ { j } = \sum _ { R _ { j } \in { \mathcal R } } p _ { j } R _ { j } = \sum _ { j } p _ { j } R _ { j } . } \end{array} +$$ + +Consequently, + +$$ +\begin{array} { l } { { \displaystyle \sum _ { j } \hat { p } _ { j } \hat { R } _ { j } = \sum _ { j } \sum _ { k } p _ { k } c _ { k , j } \hat { R } _ { j } = \sum _ { k } p _ { k } \sum _ { j } c _ { k , j } \hat { R } _ { j } } } \\ { { \displaystyle \qquad = \sum _ { k } p _ { k } R _ { k } = \sum _ { s _ { t } \in S } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) . } } \end{array} +$$ + +To establish Theorem 1, we need an auxiliary result (Lemma 3) from stochastic process approximation, which is widely adopted for the convergence proof for $Q$ -Learning (Jaakkola et al., 1993; Tsitsiklis, 1994). + +Lemma 3. The random process $\{ \Delta _ { t } \}$ taking values in $\mathbb { R } ^ { n }$ and defined as + +$$ +\Delta _ { t + 1 } ( x ) = ( 1 - \alpha _ { t } ( x ) ) \Delta _ { t } ( x ) + \alpha _ { t } ( x ) F _ { t } ( x ) +$$ + +converges to zero w.p.1 under the following assumptions: + +• $\begin{array} { r } { 0 \leq \alpha _ { t } \leq 1 , \sum _ { t } \alpha _ { t } ( x ) = \infty a n d \sum _ { t } \alpha _ { t } ( x ) ^ { 2 } < \infty ; } \end{array}$ • $| | \mathbb { E } \left[ F _ { t } ( x ) | \mathcal { F } _ { t } \right] | | _ { W } \leq \gamma | | \Delta _ { t } | | , w i t h \gamma < 1 ;$ • var $[ F _ { t } ( x ) | \mathcal { F } _ { t } ] \leq C ( 1 + | | \Delta _ { t } | | _ { W } ^ { 2 } ) ,$ , for $C > 0$ . + +Here $\mathcal { F } _ { t } = \{ \Delta _ { t } , \Delta _ { t - 1 } , \cdot \cdot \cdot , F _ { t - 1 } \cdot \cdot \cdot , \alpha _ { t } , \cdot \cdot \cdot \}$ stands for the past at step $t$ , $\alpha _ { t } ( x )$ is allowed to depend on the past insofar as the above conditions remain valid. The notation $| | \cdot | | _ { W }$ refers to some weighted maximum norm. + +Proof of Lemma 3. See previous literature (Jaakkola et al., 1993; Tsitsiklis, 1994). + +Proof of Theorem $^ { l }$ . For simplicity, we abbreviate $s _ { t } , s _ { t + 1 } , Q _ { t } , Q _ { t + 1 } , r _ { t } , \hat { r } _ { t }$ and $\alpha _ { t }$ as $s , s ^ { \prime } , Q , Q ^ { \prime }$ , $r , \hat { r }$ , and $\alpha$ , respectively. + +Subtracting from both sides the quantity $Q ^ { * } ( s , a )$ in Eqn. (3): + +$$ +Q ^ { \prime } ( s , a ) - Q ^ { * } ( s , a ) = ( 1 - \alpha ) \left( Q ( s , a ) - Q ^ { * } ( s , a ) \right) + \alpha \left[ \hat { r } + \gamma \operatorname* { m a x } _ { b \in A } Q ( { s ^ { \prime } } , b ) - Q ^ { * } ( s , a ) \right] . +$$ + +Let $\Delta _ { t } ( s , a ) = Q ( s , a ) - Q ^ { * } ( s , a )$ and $\begin{array} { r } { F _ { t } ( s , a ) = \hat { r } + \gamma \operatorname* { m a x } _ { b \in \mathcal { A } } Q ( s ^ { \prime } , b ) - Q ^ { * } ( s , a ) . } \end{array}$ + +$$ +\Delta _ { t + 1 } ( s ^ { \prime } , a ) = ( 1 - \alpha ) \Delta _ { t } ( s , a ) + \alpha F _ { t } ( s , a ) . +$$ + +In consequence, + +$$ +\begin{array} { r l } { \mathbb { E } \{ | F _ { 1 } ( x ) | , T _ { \ell } \} } & { = \displaystyle \sum _ { \nu \leq \nu \leq \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , s , \ell ^ { \prime } , \hat { \nu } ) [ \ell + \gamma \frac { \operatorname* { m a x } } { \nu ( s , \alpha ) ^ { 2 } } A ( \nu , \ell ^ { \prime } , s ) ] - Q ^ { * } ( s , \alpha ) } \\ & { = \displaystyle \sum _ { \nu \leq \nu \leq \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } , \hat { \nu } ) + \sum _ { \nu \leq \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } ) [ \frac { \gamma } { s } \log A ( s , \ell ^ { \prime } , s ) - \gamma - \frac { \operatorname* { m a x } } { \nu ( s , \alpha ) ^ { 2 } } A ^ { 2 } ( \nu , \ell ^ { \prime } , s ) ] } \\ & { = \displaystyle \sum _ { \nu \leq \nu \leq \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } , s ^ { \prime } ) \hat { \nu } - \sum _ { \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } ) { \bf r } + \sum _ { \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , s ^ { \prime } ) [ \frac { \operatorname* { m a x } } { s } \log ( \ell ^ { \prime } , \ell ) - \frac { \operatorname* { m a x } } { \nu s ^ { \prime } } Q ^ { * } ( s , \alpha ) ] } \\ & { = \displaystyle \sum _ { \nu \leq \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } ) { \bf r } - \sum _ { \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } ) { \bf r } + \sum _ { \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } ) [ \frac { \operatorname* { m a x } } { s } \log ( \ell ^ { \prime } , \ell ) - \frac { \operatorname* { m a x } } { \nu s ^ { \prime } } Q ^ { * } ( s , \alpha ) ] } \\ & = \displaystyle \sum _ { \nu \leq \nu \leq \nu } \sum _ { \nu \leq \nu } \mathbb { E } _ { \alpha } ( s , \ell ^ { \prime } ) + \sum _ { \nu \leq \nu } Q ^ { * } ( s , \ell ^ { \prime } ) [ \frac \operatorname* \end{array} +$$ + +Finally, + +$$ +\begin{array} { r l } & { \mathbf { V a r } \left[ F _ { t } ( x ) | \mathcal { F } _ { t } \right] = \mathbb { E } \left[ \left( \hat { r } + \gamma \displaystyle \operatorname* { m a x } _ { b \in \mathcal { A } } Q ( s ^ { \prime } , b ) - \sum _ { s ^ { \prime } \in S : \mathcal { \hat { r } } \in \mathbb { R } } \mathbb { P } ^ { \prime } ( s , s ^ { \prime } , \hat { r } ) \left[ \hat { r } + \gamma \operatorname* { m a x } _ { b \in \mathcal { A } } Q ( s ^ { \prime } , b ) \right] \right) ^ { 2 } \right] } \\ & { \quad \quad \quad = \mathbf { V a r } \left[ \hat { r } + \gamma \displaystyle \operatorname* { m a x } _ { b \in \mathcal { A } } Q ( s ^ { \prime } , b ) | \mathcal { F } _ { t } \right] } \end{array} +$$ + +Because $\hat { r }$ is bounded, it can be clearly verified that + +$$ +\mathbf { V a r } \left[ F _ { t } ( x ) | \mathcal { F } _ { t } \right] \leq C ( 1 + \vert \vert \Delta _ { t } \vert \vert _ { W } ^ { 2 } ) +$$ + +for some constant $C$ . Then, due to the Lemma 3, $\Delta _ { t }$ converges to zero w.p.1, i.e., $Q ^ { \prime } ( s , a )$ converges to $Q ^ { * } ( s , a )$ . + +The procedure of Phased $Q$ -Learning is described as Algorithm 2: + +# Algorithm 2 Phased $Q$ -Learning + +Input: $G ( \mathcal { M } )$ : generative model of $\mathcal { M } = ( \mathcal { S } , \mathcal { A } , \mathcal { R } , \mathcal { P } , \gamma ) , T$ : number of iterations. + +Output: $\hat { V } ( s )$ : value function, $\boldsymbol { \hat { \pi } } ( s , t )$ : policy function. 1: Set $\hat { V } _ { T } ( s ) = 0$ +2: for $t = T - 1 , \cdots , 0$ do + +1. Calling $G ( \mathcal { M } ) \ : m$ times for each state-action pair. + +$$ +\hat { \mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) = { \frac { \# [ ( s _ { t } , a _ { t } ) \to s _ { t + 1 } ] } { m } } +$$ + +2. Set + +$$ +\begin{array} { r l } & { \hat { V } ( s ) = \displaystyle \operatorname* { m a x } _ { a \in \mathcal { A } } \sum _ { \tiny { s + 1 \in \mathcal { S } } \atop { a \in \mathcal { A } } } \hat { \mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) \left[ r _ { t } + \gamma \hat { V } ( s _ { t + 1 } ) \right] } \\ & { } \\ & { \hat { \pi } ( s , t ) = \displaystyle \operatorname* { a r g m a x } _ { a \in \mathcal { A } } \hat { V } ( s ) } \end{array} +$$ + +3: return $\hat { V } ( s )$ and $\boldsymbol { \hat { \pi } } ( s , t )$ + +Note that $\hat { \mathbb { P } }$ here is the estimated transition probability, which is different from $\mathbb { P }$ in Eqn. (6). + +To obtain the sample complexity results, the range of our surrogate reward needs to be known. Assuming reward $r$ is bounded in $[ 0 , R _ { \mathrm { m a x } } ]$ , Lemma 4 below states that the surrogate reward is also bounded, when the confusion matrices are invertible: + +Lemma 4. Let $r \in [ 0 , R _ { \mathrm { m a x } } ]$ be bounded, where $R _ { \mathrm { m a x } }$ is a constant; suppose $\mathbf { C } _ { M \times M }$ , the confusion matrix, is invertible with its determinant denoting as det(C). Then the surrogate reward satisfies + +$$ +0 \leq | \hat { r } | \leq \frac { M } { \operatorname* { d e t } ( \mathbf { C } ) } R _ { \mathrm { { m a x } } } . +$$ + +Proof of Lemma 4. From Eqn. (2), we have, + +$$ +{ \hat { \mathbf { R } } } = \mathbf { C } ^ { - 1 } \cdot \mathbf { R } = { \frac { \mathrm { a d j } ( \mathbf { C } ) } { \mathrm { d e t } ( \mathbf { C } ) } } \cdot \mathbf { R } , +$$ + +where $\operatorname { a d j } ( \mathbf { C } )$ is the adjugate matrix of $\mathbf { C }$ ; $\operatorname* { d e t } ( \mathbf { C } )$ is the determinant of $\mathbf { C }$ . It is known from linear algebra that, + +$$ +\operatorname { a d j } ( \mathbf { C } ) _ { i j } = ( - 1 ) ^ { i + j } \cdot \mathbf { M } _ { j i } , +$$ + +where $\mathbf { M } _ { j i }$ is the determinant of the $\left( M - 1 \right) \times \left( M - 1 \right)$ matrix that results from deleting row $j$ and column $i$ of $\mathbf { C }$ . Therefore, $\mathbf { M } _ { j i }$ is also bounded: + +$$ +\mathbf { M } _ { j i } \leq \sum _ { \sigma \in S _ { n } } \left( | \operatorname { s g n } ( \sigma ) | \prod _ { m = 1 } c _ { m , \sigma _ { n } } ^ { \prime } \right) \leq \prod _ { m = 0 } ^ { M - 1 } \left( \sum _ { n = 0 } ^ { M - 1 } c _ { m , n } \right) = 1 ^ { M } = 1 , +$$ + +where the sum is computed over all permutations $\sigma$ of the set $\{ 0 , 1 , \cdots , M - 2 \}$ ; $c ^ { \prime }$ is the element of $\mathbf { M } _ { j i }$ ; $\operatorname { s g n } ( \sigma )$ returns a value that is $+ 1$ whenever the reordering given by $\sigma$ can be achieved by successively interchanging two entries an even number of times, and $- 1$ whenever it can not. + +Consequently, + +$$ +\Big | \hat { R } _ { i } \Big | = \frac { \sum _ { j } | \mathrm { a d j } ( \mathbf { C } ) _ { i j } | \cdot | R _ { j } | } { \operatorname* { d e t } ( \mathbf { C } ) } \leq \frac { M } { \operatorname* { d e t } ( \mathbf { C } ) } \cdot R _ { \operatorname* { m a x } } . +$$ + +Proof of Theorem 2. From Hoeffding’s inequality, we obtain: + +$$ +\begin{array} { r l r } & { } & { P \left( \left| \displaystyle \sum _ { s _ { t + 1 } \in S } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \displaystyle \sum _ { s _ { t + 1 } \in S } \hat { \mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \right| \geq \epsilon \right) } \\ & { } & { \leq 2 \exp \left( \displaystyle \frac { - 2 m \epsilon ^ { 2 } ( 1 - \gamma ) ^ { 2 } } { R _ { \operatorname* { m a x } } ^ { 2 } } \right) , } \end{array} +$$ + +because $V _ { t } ( s _ { t } )$ is bounded within $\frac { R _ { \mathrm { m a x } } } { 1 - \gamma }$ . In the same way, $\hat { r } _ { t }$ is bounded by $\begin{array} { r } { \frac { M } { \operatorname* { d e t } ( \mathbf { C } ) } \cdot R _ { \mathrm { m a x } } } \end{array}$ from Lemma 4. We then have, + +$$ +P \left( \left| \sum _ { \stackrel { s _ { t + 1 } \in \mathcal { S } } { \hat { r } _ { t } \in \mathcal { \hat { K } } } } \mathbb { P } _ { a } \big ( s _ { t } , s _ { t + 1 } , \hat { r } _ { t } \big ) \hat { r } _ { t } - \sum _ { \stackrel { s _ { t + 1 } \in \mathcal { S } } { \hat { r } _ { t } \in \mathcal { \hat { K } } } } \hat { \mathbb { P } } _ { a } \big ( s _ { t } , s _ { t + 1 } , \hat { r } _ { t } \big ) \hat { r } _ { t } \right| \geq \epsilon \right) \leq 2 \exp \left( \frac { - 2 m \epsilon ^ { 2 } \mathrm { d e t } ( { \bf C } ) ^ { 2 } } { M ^ { 2 } R _ { \operatorname* { m a x } } ^ { 2 } } \right) . +$$ + +Further, due to the unbiasedness of surrogate rewards, we have + +$$ +\sum _ { s _ { t + 1 } \in S } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r _ { t } = \sum _ { s _ { t + 1 } \in S ; \hat { r } _ { t } \in \hat { \mathcal { R } } } \mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , \hat { r } _ { t } ) \hat { r } _ { t } . +$$ + +As a result, + +$$ +\begin{array} { r l } { V _ { t } ^ { * } ( s ) - \hat { V } _ { t } ( s ) \Big | = \displaystyle \operatorname* { m a x } _ { \alpha \in A } \displaystyle \sum _ { s _ { t + 1 } \in S } \mathbb { P } _ { \alpha } ( s _ { t } , s _ { t + 1 } ) \left[ \tau _ { t } + \gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \right] } & { } \\ { - \displaystyle \operatorname* { m a x } _ { \alpha \in A } \displaystyle \sum _ { s _ { t + 1 } \in S } \hat { P } _ { \alpha } ( s _ { t } , s _ { t + 1 } ) \left[ \hat { \gamma } _ { t } + \gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \right] } & { } \\ { \leq \alpha _ { 1 } + \gamma \displaystyle \operatorname* { m a x } _ { \alpha \in A } \displaystyle \Bigg | \sum _ { s _ { t + 1 } \in S } \mathbb { P } _ { \alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \displaystyle \sum _ { s _ { t + 1 } \in S } \hat { P } _ { \alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \Bigg | } & { } \\ { + \displaystyle \operatorname* { m a x } _ { \alpha \in A } \displaystyle \Bigg | \sum _ { s _ { t + 1 } \in S } \mathbb { P } _ { \alpha } ( s _ { t } , s _ { t + 1 } ) { r _ { t } - \sum _ { s _ { t + 1 } \in S } \hat { P } _ { \alpha } } ( s _ { t } , s _ { t + 1 } , \hat { r } _ { t } ) \hat { r } _ { t } \Bigg | } & { } \\ { \leq \gamma \displaystyle \operatorname* { m a x } _ { \alpha \in S } \left| V _ { t + 1 } ^ { * } ( s ) - \hat { V } _ { t + 1 } ( s ) \right| + \epsilon _ { 1 } + \gamma \epsilon _ { 2 } } & { \mathrm { ~ s _ { t + 1 } ~ } + \gamma \epsilon _ { 2 } } \end{array} +$$ + +In the same way, + +$$ +\left| V _ { t } ( s ) - \hat { V } _ { t } ( s ) \right| \le \gamma \operatorname* { m a x } _ { s \in \cal S } \left| V _ { t + 1 } ^ { * } ( s ) - \hat { V } _ { t + 1 } ( s ) \right| + \epsilon _ { 1 } + \gamma \epsilon _ { 2 } +$$ + +Recursing the two equations in two directions $[ 0 \right. T _ { \left. }$ ), we get + +$$ +\begin{array} { l } { \displaystyle \underset { s \in \mathcal { S } } { \operatorname* { m a x } } \left| V ^ { * } ( s ) - \hat { V } ( s ) \right| \leq ( \epsilon _ { 1 } + \gamma \epsilon _ { 2 } ) + \gamma ( \epsilon _ { 1 } + \gamma \epsilon _ { 2 } ) + \dots + \gamma ^ { T - 1 } ( \epsilon _ { 1 } + \gamma \epsilon _ { 2 } ) } \\ { = \displaystyle \frac { ( \epsilon _ { 1 } + \gamma \epsilon _ { 2 } ) ( 1 - \gamma ^ { T } ) } { 1 - \gamma } } \\ { \displaystyle \underset { s \in \mathcal { S } } { \operatorname* { m a x } } \left| V ( s ) - \hat { V } ( s ) \right| \leq \displaystyle \frac { ( \epsilon _ { 1 } + \gamma \epsilon _ { 2 } ) ( 1 - \gamma ^ { T } ) } { 1 - \gamma } } \end{array} +$$ + +Combining these two inequalities above we have: + +$$ +\operatorname* { m a x } _ { s \in S } | V ^ { * } ( s ) - V ( s ) | \leq 2 \frac { ( \epsilon _ { 1 } + \gamma \epsilon _ { 2 } ) ( 1 - \gamma ^ { T } ) } { 1 - \gamma } \leq 2 \frac { ( \epsilon _ { 1 } + \gamma \epsilon _ { 2 } ) } { 1 - \gamma } . +$$ + +Let $\epsilon _ { 1 } = \epsilon _ { 2 }$ , $\begin{array} { r } { \operatorname * { s o } \operatorname* { m a x } _ { s \in \mathcal { S } } | V ^ { * } ( s ) - V ( s ) | \le \epsilon } \end{array}$ as long as + +$$ +\epsilon _ { 1 } = \epsilon _ { 2 } \leq \frac { ( 1 - \gamma ) \epsilon } { 2 ( 1 + \gamma ) } . +$$ + +For arbitrarily small $\epsilon$ , by choosing $m$ appropriately, there always exists $\begin{array} { r } { \epsilon _ { 1 } = \epsilon _ { 2 } = \frac { ( 1 - \gamma ) \epsilon } { 2 ( 1 + \gamma ) } } \end{array}$ such that the policy error is bounded within $\epsilon$ . That is to say, the Phased $Q$ -Learning algorithm can converge to the near optimal policy within finite steps using our proposed surrogate rewards. + +Finally, there are $| { \cal S } | | { \cal A } | T$ transitions under which these conditions must hold, where $| \cdot |$ represent the number of elements in a specific set. Using a union bound, the probability of failure in any condition is smaller than + +$$ +2 | S | | A | T \cdot \exp \left( - m \frac { \epsilon ^ { 2 } ( 1 - \gamma ) ^ { 2 } } { 2 ( 1 + \gamma ) ^ { 2 } } \cdot \operatorname * { m i n } \{ ( 1 - \gamma ) ^ { 2 } , \frac { \operatorname * { d e t } ( \mathbf { C } ) ^ { 2 } } { M ^ { 2 } } \} \right) . +$$ + +We set the error rate less than $\delta$ , and $m$ should satisfy that + +$$ +m = { \cal O } \left( \frac { 1 } { \epsilon ^ { 2 } ( 1 - \gamma ) ^ { 2 } \mathrm { d e t } ( { \bf C } ) ^ { 2 } } \log \frac { | { \cal S } | | { \cal A } | T } { \delta } \right) . +$$ + +In consequence, after $m | { \cal S } | | { \cal A } | T$ calls, which is, $\begin{array} { r } { O \left( \frac { | \cal S | | \boldsymbol { A } | T } { \epsilon ^ { 2 } ( 1 - \gamma ) ^ { 2 } \operatorname* { d e t } ( \mathbf { C } ) ^ { 2 } } \log \frac { | \cal S | | \boldsymbol { A } | T } { \delta } \right) } \end{array}$ , the value function converges to the optimal one for every state $s$ , with probability greater than $1 - \delta$ . □ + +The above bound is for discounted MDP setting with $0 \leq \gamma < 1$ . For undiscounted setting $\gamma = 1$ , since the total error (for entire trajectory of $T$ time-steps) has to be bounded by $\epsilon$ , therefore, the error for each time step has to be bounded by $\frac { \epsilon } { T }$ . Repeating our anayslis, we obtain the following upper bound: + +$$ +O \left( \frac { | \mathcal { S } | | \mathcal { A } | T ^ { 3 } } { \epsilon ^ { 2 } \mathrm { d e t } ( \mathbf { C } ) ^ { 2 } } \log \frac { | \mathcal { S } | | \mathcal { A } | T } { \delta } \right) . +$$ + +Proof of Theorem 3. + +$$ +\begin{array} { r l } { \mathbf { V a r } ( \vec { r } ) - \mathbf { V a r } ( r ) = \mathbf { E } \left[ ( \hat { r } - \mathbf { E } [ \hat { r } ] ) ^ { 2 } \right] - \mathbf { E } \left[ ( r - \mathbf { E } [ r ] ) ^ { 2 } \right] } & { } \\ { = \mathbb { E } [ \vec { r } ^ { 2 } ] - \mathbb { E } [ \vec { r } ] ^ { 2 } + \mathbb { E } [ r ^ { 2 } ] - \mathbb { E } [ r ] ^ { 2 } } & { } \\ { = \sum _ { j } \hat { p } _ { j } \hat { R } _ { j } ^ { 2 } - \left( \underset { j } { \sum } \hat { p } _ { j } \hat { R } _ { j } \right) ^ { 2 } - \left[ \underset { j } { \sum } p _ { j } R _ { j } ^ { 2 } - \left( \underset { j } { \sum } p _ { j } R _ { j } \right) ^ { 2 } \right] } & { } \\ { = \underset { j } { \sum } \hat { p } _ { j } \hat { R } _ { j } ^ { 2 } - \sum _ { j } p _ { j } R _ { j } ^ { 2 } = \underset { j } { \sum } \sum _ { j } p _ { i } c _ { i , j } \hat { R } _ { j } ^ { 2 } - \underset { j } { \sum } p _ { j } \left( \underset { i } { \sum } c _ { j , i } \hat { R } _ { i } \right) ^ { 2 } } & { } \\ { = \underset { j } { \sum } p _ { j } \left( \underset { i } { \sum } c _ { j , i } \hat { R } _ { i } ^ { 2 } - \left( \underset { j } { \sum } c _ { j , i } \hat { R } _ { i } \right) ^ { 2 } \right) . } & { } \end{array} +$$ + +Using the CauchySchwarz inequality, + +$$ +\sum _ { i } c _ { j , i } \hat { \boldsymbol { R _ { i } } } ^ { 2 } = \sum _ { i } \sqrt { c _ { j , i } } ^ { 2 } \cdot \sum _ { i } \left( \sqrt { c _ { j , i } } \hat { R } _ { i } \right) ^ { 2 } \ge \left( \sum _ { i } c _ { j , i } \hat { R } _ { i } \right) ^ { 2 } . +$$ + +So we get, + +$$ +\mathbf { V a r } ( { \hat { r } } ) - \mathbf { V a r } ( r ) \geq 0 . +$$ + +In addition, + +$$ +\begin{array} { r l r } { { \mathbf { V a r } ( \hat { r } ) = \sum _ { j } \hat { p } _ { j } \hat { R _ { j } } ^ { 2 } - ( \sum _ { j } \hat { p } _ { j } \hat { R } _ { j } ) ^ { 2 } \leq \sum _ { j } \hat { p } _ { j } \hat { R _ { j } } ^ { 2 } } } \\ & { } & { \leq \sum _ { j } \hat { p } _ { j } \frac { M ^ { 2 } } { \operatorname* { d e t } ( { \mathbf { C } } ) ^ { 2 } } \cdot R _ { \operatorname* { m a x } } ^ { 2 } = \frac { M ^ { 2 } } { \operatorname* { d e t } ( { \mathbf { C } } ) ^ { 2 } } \cdot R _ { \operatorname* { m a x } } ^ { 2 } . } \end{array} +$$ + +# B EXPERIMENTAL SETUP + +We set up our experiments within the popular OpenAI baselines (Dhariwal et al., 2017) and kerasrl (Plappert, 2016) framework. Specifically, we integrate the algorithms and interact with OpenAI Gym (Brockman et al., 2016) environments (Table 3). + +# B.1 RL ALGORITHMS + +A set of state-of-the-art reinforcement learning algorithms are experimented with while training under different amounts of noise, including $Q$ -Learning (Watkins, 1989; Watkins & Dayan, 1992), Cross-Entropy Method (CEM) (Szita & Lorincz, 2006), Deep ¨ SARSA (Sutton & Barto, 1998), Deep $Q$ -Network (DQN) (Mnih et al., 2013; 2015; van Hasselt et al., 2016), Dueling DQN (DDQN) (Wang et al., 2016), Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu et al., 2016) and Proximal Policy Optimization (PPO) (Schulman et al., 2017) algorithms. For each game and algorithm, three policies are trained based on different random initialization to decrease the variance in experiments. + +Table 3: RL algorithms utilized in the robustness evaluation. + +
EnvironmentRL Algorithm
CartPoleQ-Learning (1989) CEM (2006) SARSA (1998) DQN (2013; 2015)
PendulumDDQN (2016) DDPG (2015)
Atari GamesNAF (2016) PPO (2017)
+ +# B.2 POST-PROCESSING REWARDS + +We explore both symmetric and asymmetric noise of different noise levels. For symmetric noise, the confusion matrices are symmetric, which means the probabilities of corruption for each reward choice are equivalent. For instance, a confusion matrix + +$$ +\mathbf { C } = \left[ \begin{array} { l l } { 0 . 8 } & { 0 . 2 } \\ { 0 . 2 } & { 0 . 8 } \end{array} \right] +$$ + +says that $r _ { 1 }$ could be corrupted into $r _ { 2 }$ with a probability of 0.2 and so does $r _ { 2 }$ $( \mathrm { w e i g h t } = 0 . 2 )$ . + +As for asymmetric noise, two types of random noise are tested: 1) rand-one, each reward level can only be perturbed into another reward; 2) rand-all, each reward could be perturbed to any other reward. To measure the amount of noise w.r.t confusion matrices, we define the weight of noise as follows: + +$$ +\mathbf { C } = ( 1 - \omega ) \cdot \mathbf { I } + \omega \cdot \mathbf { N } , \omega \in [ 0 , 1 ] , +$$ + +where $\omega$ controls the weight of noise; $\mathbf { I }$ and $\mathbf { N }$ denote the identity and noise matrix respectively. Suppose there are $M$ outcomes for true rewards, $\mathbf { N }$ writes as: + +$$ +\mathbf { N } = \left[ \begin{array} { c c c c } { n _ { 0 , 0 } } & { n _ { 0 , 1 } } & { \cdots } & { n _ { 0 , M - 1 } } \\ { \cdots } & { \ddots } & { \ddots } & { \ddots } \\ { n _ { M - 1 , 0 } } & { n _ { M - 1 , 1 } } & { \ddots } & { n _ { M - 1 , M - 1 } } \end{array} \right] , +$$ + +where for each row $i , 1$ ) rand-one: randomly choose $j$ , s.t $n _ { i , j } = 1$ and $n _ { i , k } \neq 0$ if $k \neq j ; 2 ,$ ) randall: generate $M$ random numbers that sum to 1, i.e., $\textstyle \sum _ { j } n _ { i , j } = 1$ . For the simplicity, for symmetric noise, we choose $\mathbf { N }$ as an anti-identity matrix. As a result, $c _ { i , j } = 0$ , if $i \neq j$ or $i + j \neq M$ . + +# B.3 PERTURBED-REWARD MDP EXAMPLE + +To obtain an intuitive view of the reward perturbation model, where the observed rewards are generated based on a reward confusion matrix, we constructed a simple MDP and evaluated the performance of robust reward $Q$ -Learning (Algorithm 1) on different noise ratios (both symmetric and asymmetric). The finite MDP is formulated as Figure 4a: when the agent reaches state 5, it gets an instant reward of $r _ { + } = 1$ , otherwise a zero reward $r _ { - } = 0$ . During the explorations, the rewards are perturbed according to the confusion matrix $\mathbf { C } _ { 2 \times 2 } = [ 1 - e _ { - } , e _ { - } ; e _ { + } , 1 - e _ { + } ]$ . + +![](images/492e3ac77697ffbf044dc807fae9f7c5e0798dffd186faef0167aef911367691.jpg) +Figure 4: Perturbed-Reward MDP Example + +There are two experiments conducted in this setting: 1) performance of $Q$ -Learning under different noise rates (Table 4); 2) robustness of estimation module in time-variant noise (Figure 4b). As shown in Table 4, $Q$ -Learning achieved better results consistently with the guidance of surrogate rewards and the confusion matrix estimation algorithm. For time-variant noise, we generated varying amount of noise at different training stages: 1) $e _ { - } = 0 . 1 , e _ { + } = 0 . 3$ (0 to $1 e ^ { 4 }$ steps); 2) $e _ { - } = 0 . 2 , e _ { + } = 0 . 1$ ( $1 e ^ { 4 }$ to $3 e ^ { 4 }$ steps); 3) $e _ { - } = 0 . 3 , e _ { + } = 0 . 2$ ( $3 e ^ { 4 }$ to $5 e ^ { 4 }$ steps); 4) $e _ { - } = 0 . 1 , e _ { + } = 0 . 2$ $5 e ^ { 4 }$ to $7 e ^ { 4 }$ steps). In Figure 4b, we show that Algorithm 1 is robust against time-variant noise, which dynamically adjusts the estimated $\tilde { \mathbf { C } }$ after the noise distribution changes. Note that we set a maximum memory size for collected noisy rewards to let the agents only learn with recent observations. + +Table 4: Average performance of $Q$ -Learning on Perturbed MDP example (Figure 4a) with noisy rewards $( \tilde { r } )$ , surrogate rewards under known $( \hat { r } )$ or estimated $( \dot { r } )$ noise rates. Note that the success means the agents can find the optimal policy at every initial state according to learned $Q$ -function. We repeated the experiments 1,000 times to calculate the successful rate for each noisy setting. + +
Noise RateRewardLift (↑)SuccessNoise RateRewardLift (↑)Success
e_=e+=0.1r-93.4%e_ = 0.1,e+ = 0.3r 部189.5%
广2.7%个96.1%3.4% 个92.9%
r3.2% 个96.6%?2.9% 个92.4%
e_=e+ =0.3r185.5%e_ = 0.3,e+ = 0.1r ?190.3%
r1.4% 个86.9%0.9%个91.2%
?0.9% 个86.4%r1.2%个91.5%
+ +# B.4 TRAINING DETAILS + +CartPole and Pendulum The policies use the default network from keras-rl framework. which is a five-layer fully connected network6. There are three hidden layers, each of which has 16 units and followed by a rectified nonlinearity. The last output layer is activated by the linear function. For + +CartPole, We trained the models using Adam optimizer with the learning rate of $1 e ^ { - 3 }$ for 10,000 steps. The exploration strategy is Boltzmann policy. For DQN and Dueling-DQN, the update rate of target model and the memory size are $1 e ^ { - 2 }$ and 50, 000. For Pendulum, We trained DDPG and NAF using Adam optimizer with the learning rate of $5 e ^ { - 4 }$ for $1 5 0 , 0 0 0$ steps. the update rate of target model and the memory size are $1 e ^ { - 3 }$ and $1 0 0 , 0 0 0$ . + +Atari Games We adopt the pre-processing steps as well as the network architecture from Mnih et al. (2015). Specifically, the input to the network is $8 4 \times 8 4 \times 4$ , which is a concatenation of the last 4 frames and converted into $8 4 \times 8 4$ gray-scale. The network comprises three convolutional layers and two fully connected layers7. The kernel size of three convolutional layer are $8 \times 8$ with stride 4 (32 filters), $4 \times 4$ with stride 2 (64 filters) and $3 \times 3$ with stride 1 (64 filters), respectively. Each hidden layer is followed by a rectified nonlinearity. Except for Pong where we train the policies for $3 e ^ { 7 }$ steps, all the games are trained for $5 e ^ { 7 }$ steps with the learning rate of $3 e ^ { - 4 }$ . Note that the rewards in the Atari games are discrete and clipped into $\{ - 1 , 0 , 1 \}$ . Except for Pong game, in which $r = - 1$ means missing the ball hit by the adversary, the agents in other games attempt to get higher scores in the episode with binary rewards 0 and 1. + +# C ESTIMATION OF CONFUSION MATRICES + +# C.1 REWARD ROBUST RL ALGORITHMS + +As stated in Section 3.3, the confusion matrix can be estimated dynamically based on the aggregated answers, similar to previous literature in supervised learning (Khetan et al., 2017). To get a concrete view, we take $Q$ -Learning for an example, and the algorithm is called Reward Robust $Q$ -Learning (Algorithm 3). Note that is can be extended to other RL algorithms by plugging confusion matrix estimation steps and the computed surrogate rewards, as shown in the experiments (Figure 6). + +# Algorithm 3 Reward Robust $Q$ -Learning + +# + +$\tilde { \mathcal { M } } = ( S , \mathcal { A } , \tilde { \mathcal { R } } , \mathcal { P } , \gamma )$ : MDP with corrupted reward channel +$T$ : transition function $T : S \times \mathcal { A } S$ +$N \in \mathbb N$ : upper bound of collected noisy rewards +$\alpha \in ( 0 , 1 )$ : learning rate in the update rule +$\eta \in ( 0 , 1 )$ : weight of unbiased surrogate reward +$\tilde { R } ( s , a )$ : set of observed rewards when the state-action pair is $( s , a )$ + +Output: $Q ( s )$ : value function; $\pi ( s , t )$ : policy function Initialize $Q$ : $S \times \mathcal { A } \mathbb { R }$ arbitrarily Set confusion matrix $\tilde { \mathbf { C } }$ as zero while $Q$ is not converged do Start in state $s \in S$ while $s$ is not terminal do Calculate $\pi$ according to $Q$ and exploration strategy $\begin{array} { l } { { a \pi ( s ) } } \\ { { s ^ { \prime } T ( s , a ) } } \end{array}$ Observe noisy reward $\tilde { r } ( s , a )$ and add it to $\tilde { R } ( s , a )$ if $\begin{array} { r } { \sum _ { ( s , a ) } | \tilde { R } ( s , a ) | \geq N } \end{array}$ then Get predicted true reward ${ \bar { r } } ( s , a )$ using majority voting in every $\tilde { R } ( s , a )$ Estimate confusion matrix $\tilde { \mathbf { C } }$ based on $\tilde { r } ( s , a )$ and ${ \bar { r } } ( s , a )$ (Eqn. (4)) Empty all the sets of observed rewards $\tilde { R } ( s , a )$ Obtain surrogate reward ${ \dot { r } } ( s , a )$ using ${ \bf R } _ { p r o x y } = ( 1 - \eta ) \cdot { \bf R } + \eta \cdot { \bf C } ^ { - 1 } { \bf R }$ $Q ( s ^ { \prime } , a ) \gets ( 1 - \alpha ) \cdot Q ( s , a ) + \alpha \cdot ( \hat { r } ( s , a ) + \gamma \cdot \operatorname* { m a x } _ { a ^ { \prime } } Q ( s ^ { \prime } , a ^ { \prime } ) )$ ) s ← s 0 return $Q ( s )$ and $\pi ( s )$ + +# C.2 EXPECTATION-MAXIMIZATION IN ESTIMATION + +In Algorithm 3, the predicted true reward ${ \bar { r } } ( s , a )$ is derived from majority voting in collected noisy sets $\tilde { R } ( s , a )$ for every state-action pair $( s , a ) \in \mathcal { S } \times \mathcal { A }$ , which is a simple but efficient way of leveraging the expectation of aggregated rewards without assumptions on prior distribution of noise. In the following, we adopt standard Expectation-Maximization (EM) idea in the our estimation framework (arguably a simple version of it), inspired by previous works (Zhang et al., 2014). + +Assuming the observed noisy rewards are independent conditional on the true reward, we can compute the posterior probability of true reward from the Bayes’ theorem: + +$$ +{ \begin{array} { r l } { ^ { \mathfrak { p } } ( r = R _ { i } | { \tilde { r } } ( 1 ) = R _ { 1 } , \cdots , { \tilde { r } } ( n ) = R _ { n } ) = } & { { \frac { \mathbb { P } ( { \tilde { r } } ( 1 ) = R _ { 1 } , \cdots , { \tilde { r } } ( n ) = R _ { n } | r = R _ { i } ) \cdot \mathbb { P } ( r = R _ { i } ) } { \sum _ { j } \mathbb { P } ( { \tilde { r } } ( 1 ) = R _ { 1 } , \cdots , { \tilde { r } } ( n ) = R _ { n } | r = R _ { j } ) \cdot \mathbb { P } ( r = R _ { j } ) } } } \\ & { = { \frac { \mathbb { P } ( r = R _ { i } ) \cdot \prod _ { k = 1 } ^ { n } \mathbb { P } ( { \tilde { r } } ( k ) = R _ { k } | r = R _ { i } ) } { \sum _ { j } \left[ \mathbb { P } ( r = R _ { j } ) \cdot \prod _ { k = 1 } ^ { n } \mathbb { P } ( { \tilde { r } } ( k ) = R _ { k } | r = R _ { j } ) \right] } } \qquad ( 8 ) } \end{array} } +$$ + +where $\mathbb { P } ( r = R _ { j } )$ is the prior of true rewards, and $\mathbb { P } ( \tilde { r } = R _ { k } | r = R _ { j } )$ is estimated by current estimated confusion matrix $\tilde { \mathbf { C } }$ $\vdots \Psi ( \tilde { r } = R _ { k } | r = R _ { j } ) = \tilde { c } _ { j , i }$ . Note that the inference should be conducted for each state-action pair $( s , a ) \in \mathcal S \times \mathcal A$ in every iteration, i.e., $\mathbb { P } ( r ( s , a ) = R _ { i } | \tilde { r } ( s , a , 1 ) =$ $R _ { 1 } , \cdot \cdot \cdot , \tilde { r } ( s , a , n ) = R _ { n } )$ , abbreviated as $\mathbb { P } ( \bar { r } ( s , a ) = R _ { i } )$ ), which requires relatively greater computation costs compared to the majority voting policy. It also points out an interesting direction to check online EM algorithms for our perturbed- $. R L$ problem. + +After the inference steps in Eqn. (8), the confusion matrix $\tilde { \mathbf { C } }$ is then updated based on the posterior probabilities: + +$$ +\tilde { c } _ { i , j } = \frac { \sum _ { ( s , a ) } \mathbb { P } ( \bar { r } ( s , a ) = R _ { i } ) \cdot \# \left[ \tilde { r } ( s , a ) = R _ { j } | \bar { r } ( s , a ) = R _ { i } \right] } { \sum _ { ( s , a ) } \mathbb { P } ( \bar { r } ( s , a ) = R _ { i } ) \cdot \# [ \bar { r } ( s , a ) = R _ { i } ] } , +$$ + +where $\mathbb { P } ( \bar { r } ( s , a ) = R _ { i }$ ) denotes the inference probabilities of true rewards based on collected noisy rewards sets $\tilde { R } ( s , a )$ . To utilize EM algorithms in the robust reward algorithms (e.g., Algorithm 3), we need to replace Eqn. (4) by Eqn. (9) for the estimation of reward confusion matrix. + +# C.3 STATE-DEPENDENT PERTURBED REWARD + +In previous sections, to let our presentation stay focused, we consider the state-independent perturbed reward environments, which share the same confusion matrix for all states. In other words, the noise for different states is generated within the same distribution. More generally, the generation of $\tilde { r }$ follows a certain function $C : S \times \mathcal { R } \to \tilde { R }$ , where different states may correspond to varied noise distributions (also varied confusion matrices). However, our algorithm is still applicable except for maintaining different confusion matrices $\mathbf { C } _ { s }$ for different states. It is worthy to notice that Theorem 1 holds because the surrogate rewards produce an unbiased estimation of true rewards for each state, i.e., $\mathbb { E } _ { { \tilde { r } } | r , s _ { t } } [ { \hat { r } } ( s _ { t } , a _ { t } , s _ { t + 1 } { \bar { ) } } ] = r ( s _ { t } , a _ { t } , s _ { t + 1 } )$ . Furthermore, Theorem 2 and 3 can be revised as: + +Theorem 4. (Upper bound) Let $r \in [ 0 , R _ { \mathrm { m a x } } ]$ be bounded reward, $\mathbf { C } _ { s }$ be invertible reward confusion matrices with $\operatorname* { d e t } ( \mathbf { C } _ { s } )$ denoting its determinant. For an appropriate choice of $m$ , the Phased $Q$ -Learning algorithm calls the generative model $G ( \hat { \mathcal { M } } )$ + +$$ +O \left( \frac { | \mathcal { S } | | \boldsymbol { A } | T } { \epsilon ^ { 2 } ( 1 - \gamma ) ^ { 2 } \operatorname* { m i n } _ { s \in \mathcal { S } } \{ \operatorname* { d e t } ( \mathbf { C } _ { s } ) \} ^ { 2 } } \log \frac { | \mathcal { S } | | \boldsymbol { A } | T } { \delta } \right) +$$ + +times in $T$ epochs, and returns a policy such that for all state $s \in S$ $\rangle , | V _ { \pi } ( s ) - V ^ { * } ( s ) | \leq \epsilon , \epsilon > 0$ $w . p . \geq 1 - \delta$ , $0 < \delta < 1$ . + +Theorem 5. Let $r \in [ 0 , R _ { \mathrm { m a x } } ]$ be bounded reward and all confusion matrices $\mathbf { C } _ { s }$ are invertible. Then, the variance of surrogate reward $\hat { r }$ is bounded as follows: + +$$ +\mathbf { V a r } ( r ) \leq \mathbf { V a r } ( \hat { r } ) \leq \frac { M ^ { 2 } } { \operatorname* { m i n } _ { s \in \mathcal { S } } \{ \operatorname* { d e t } ( \mathbf { C } _ { s } ) \} ^ { 2 } } \cdot R _ { \operatorname* { m a x } } ^ { 2 } . +$$ + +# C.4 VARIANCE REDUCTION IN ESTIMATION + +As illustrated in Theorem 3, our surrogate rewards introduce larger variance while conducting unbiased estimation which are likely to decrease the stability of RL algorithms. Apart from the linear combination idea (appropriate trade-off), some variance reduction techniques in statistics (e.g., correlated sampling) can also be applied into our surrogate rewards. Specially, Romoff et al. (2018) proposed to a reward estimator to compensate for stochastic corrupted reward signals. It is worthy to notice that their method is designed for variance reduction under stochastic (zero-mean) noise, which is no longer efficacious in more general perturbed-reward setting. However, it is potential to integrate their method with our robust-reward RL framework because surrogate rewards guarantee unbiasedness in reward expectation. + +To verify this idea, we repeated the experiments of Cartpole in Section 4.2 but included variance reduction step for estimated surrogate rewards. Following Romoff et al. (2018), we adopted sample mean as a simple approximator during the training and set sequence length as 100. As shown in Figure 5, the models with only variance reduction technique (red lines) suffer from huge biases when the noise is large, and cannot converge to the optimal policies like those under noisy rewards. Nevertheless, they benefits from variance reduction for surrogate rewards (purple lines), which achieve faster convergence or better performance in many cases (e.g., Figure 5a $\langle \omega = 0 . 7 $ ), 5b $\langle \omega = 0 . 3 )$ ). It is also not surprising that the integrated algorithm (purple lines) outperforms better as the noise rate increases (indicating larger variance from Theorem 3, e.g., $\omega = 0 . 9$ ). Similarly, Table 5 provides quantitative results which show that our surrogate benefits from variance reduction techniques (“ours $+ { \mathrm { V R T } } ^ { { \mathsf { V } } } ,$ ), especially when the noise rate is large. + +![](images/70beaea72e9c00d1c10de6475df19fe4340ed51e1fed407fc97632ce1d4420c8.jpg) +Figure 5: Learning curves from five reward robust RL algorithms (see Algorithm 3) on CartPole game with true rewards $( r ) \mathsf { l } .$ , noisy rewards $( \tilde { r } )$ $( \eta = 1 )$ ) , sample-mean noisy rewards $( \eta = 1 )$ ) estimated surrogate rewards $( { \dot { r } } ) \mathbf { \Psi } $ and sample-mean estimated surrogate rewards $\cdot$ . Note that confusion matrices $\mathbf { C }$ are unknown to the agents here. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with different random seeds and plotted $10 \%$ to $90 \%$ percentile area with its mean highlighted. + +# C.5 EXPERIMENTAL RESULTS + +To validate the effectiveness of robust reward algorithms (like Algorithm 3), where the noise rates are unknown to the agents, we conduct extensive experiments in CartPole. It is worthwhile to notice that the noisy rates are unknown in the explorations of RL agents. Besides, we discretize the observation (velocity, angle, etc.) to construct a set of states and implement like Algorithm 3. The $\eta$ is set 1.0 in the experiments. + +Table 5: Average scores of various RL algorithms on CartPole with sample-mean reward using variance reduction technique (VRT), surrogate rewards (ours) and the combination of them (ours $^ +$ VRT). Note that the reward confusion matrices are unknown to the agents and the experiments are repeated three times with different random seeds. + +
Noise RateRewardQ-LearnCEMSARSADQNDDQN
ε=0.1VRT173.599.7167.3181.9187.4
ours (r)181.999.3171.5200.0185.6
ours + VRT184.598.2174.2199.3186.5
w= 0.3VRT140.443.9149.8182.7177.6
ours (r)161.181.8159.6186.7200.0
ours + VRT161.682.2159.8188.4198.2
ω=0.7VRT71.116.113.215.614.7
ours (r)172.183.0174.4189.3191.3
ours + VRT182.379.5178.9195.9194.2
+ +Figure 6 provides learning curves from five algorithms with different kinds of rewards. The proposed estimation algorithms successfully obtain the approximate confusion matrices, and are robust in the unknown noise environments. From Figure 7, we can observe that the estimation of confusion matrices converges very fast. The results are inspiring because we don’t assume any additional knowledge about noise or true reward distribution in the implementation. + +![](images/00e0fa5c53bdd423861056c4fc78ee26bf6a690df1fef3c4f6262b3c82507f6c.jpg) +Figure 6: Complete learning curves from five reward robust RL algorithms (see Algorithm 3) on CartPole game with true rewards $( r ) \lfloor$ , noisy rewards $( \tilde { r } )$ $\mathit { \Pi } _ { \eta } = \mathit { \Pi } 1 $ ) and estimated surrogate rewards $( { \bar { \dot { r } } } ) \boxed { \boxdot { \bigtriangledown } }$ . Note that confusion matrices $\mathbf { C }$ are unknown to the agents here. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with different random seeds and plotted $10 \%$ to $90 \%$ percentile area with its mean highlighted. + +![](images/3c31bc892d4fb3888117fce17dbd7d8d1ec5cc0783d06451ffb78a6d4f61de53.jpg) +Figure 7: Estimation analysis from five reward robust RL algorithms (see Algorithm 3) on CartPole game. The upper figures are the convergence curves of estimated error rates (from 0.1 to 0.9), where the solid and dashed lines are ground truth and estimation, respectively; The lower figures are the absolute difference between the estimation and ground truth of confusion matrix $\mathbf { C }$ (normalized matrix norm). + +# D SUPPLEMENTARY EXPERIMENTAL RESULTS + +# D.1 SUPPLEMENTARY QUANTITATIVE RESULTS + +Table 6: Complete average scores of various RL algorithms on CartPole and Pendulum with noisy rewards $( \tilde { r } )$ and surrogate rewards under known $( \hat { r } )$ or estimated $( \dot { r } )$ confusion matrices. Note that the results for last two algorithms DDPG (rand-one) $\&$ NAF (rand-all) are on Pendulum, but the others are on CartPole. The experiments are repeated three times with different random seeds. + +
Noise Rate丨RewardQ-LearnCEMSARSADQNDDQNDDPGNAF
ε=0.1r170.098.1165.2187.2187.8-1.03-4.48
?165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
ε= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.181.8159.6186.7200.0 -1.05-1.36
ε=0.756.619.212.617.211.8-8.76-7.35
?177.687.1151.4185.8195.2-1.09-2.26
r172.183.0174.4189.3191.31
+ +Table 7: Complete average scores of PPO on five selected Atari games with noisy rewards $( \tilde { r } )$ and surrogate rewards $( \hat { r } )$ . The experiments are repeated three times with different random seeds. + +
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_ =e+ =0.1r12044.21814.81239.24608.91709.1849.2
?67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.31770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+=0.311180.1543.1919.82600.31109.6727.8
?46.7%个1730.81637.7966.14171.51470.2408.6
e_ =e+ =0.7r1296.8485.4380.3126.5491.50.0
?557.3%个1951.01799.21045.24970.41447.8492.5
e_ = 0.9,e+ = 0.7382.6410.267.0174.1620.1641.7
?106.9%个791.5693.5918.1298.91312.0735.1
e_ =e+=0.9r1588.8540.66.31410.8535.4588.8
?482.3%个3428.81901.34261.76758.62515.11707.1
+ +![](images/56cf4b1866b0e0ae41fa728a9db15d7c21b37c6c8b7439f3ea38e0efebdb1a5d.jpg) +Figure 8: Complete learning curves from DDPG and NAF on Pendulum game with true rewards $( r )$ noisy rewards $( \tilde { r } )$ and surrogate rewards $( \hat { r } )$ $( \eta = 1 ) \mathbb { \frac { \ d H } { \ d t } }$ . Both symmetric and asymmetric noise are conduced in the experiments. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9, respectively. Here we repeated each experiment 6 times with different random seeds and plotted $10 \%$ to $90 \%$ percentile area with its mean highlighted. + +# D.3 VISUALIZATIONS ON ATARI GAMES8 + +# D.3.1 PONG + +![](images/2eca74f5435d07594efb179f169aec1e7428ca249146a6f151793e67576987cc.jpg) + +![](images/bf42aa71d5dd9cde0b2208d610c62a8714a734f6ef5bcde1074fc9fc3a628647.jpg) +D.3.2 AIRRAID + +![](images/85094ab825ca6e44979caac1f4c19807a1f21d6d7dc62408868753eead8a07cb.jpg) +D.3.3 ALIEN + +![](images/48e351ba6ebf8b95c44d9513e147b787b491b7a86b340b2151c2328c07b0f6d3.jpg) + +# D.3.4 CARNIVAL + +![](images/cb7bdbc58244c72eb7f96087d8f99c212538bc8d2a6838fcedd0908fdda963f4.jpg) + +# D.3.5 MSPACMAN + +![](images/a5abc9581c689cca51328a312effb4d1315aa6f79fc6d88bdcb7026ba4103cf6.jpg) + +# D.3.6 PHOENIX + +![](images/cf49c149bb345b5c547c2f7a014571840c0801ce73383a87f4d4f7cef1e2e3b3.jpg) + +# D.3.7 SEAQUEST + +![](images/1d24dc2bcfc04cc0bcd6821de6a30c5b669dfedf1ac61a7d39ef506aaae133e5.jpg) \ No newline at end of file diff --git a/parse/train/BkMWx309FX/BkMWx309FX_content_list.json b/parse/train/BkMWx309FX/BkMWx309FX_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..dea73d3966af1ad9fa00c1c1bc262238a66b11f8 --- /dev/null +++ b/parse/train/BkMWx309FX/BkMWx309FX_content_list.json @@ -0,0 +1,3504 @@ +[ + { + "type": "text", + "text": "REINFORCEMENT LEARNING WITH PERTURBED REWARDS ", + "text_level": 1, + "bbox": [ + 174, + 99, + 593, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 170, + 398, + 198 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 234, + 544, + 251 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent studies have shown that reinforcement learning (RL) models can be vulnerable in various scenarios, where noises from different sources could appear. For instance, the observed reward channel is often subject to noise in practice (e.g., when observed rewards are collected through sensors), and thus observed rewards may not be credible. Also, in applications such as robotics, a deep reinforcement learning (DRL) algorithm can be manipulated to produce arbitrary errors. In this paper, we consider noisy RL problems where observed rewards by RL agents are generated with a reward confusion matrix. We call such observed rewards as perturbed rewards. We develop an unbiased reward estimator aided robust RL framework that enables RL agents to learn in noisy environments while observing only perturbed rewards. Our framework draws upon approaches for supervised learning with noisy data. The core ideas of our solution include estimating a reward confusion matrix and defining a set of unbiased surrogate rewards. We prove the convergence and sample complexity of our approach. Extensive experiments on different DRL platforms show that policies based on our estimated surrogate reward can achieve higher expected rewards, and converge faster than existing baselines. For instance, the state-of-the-art PPO algorithm is able to obtain $6 7 . 5 \\%$ and $4 6 . 7 \\%$ improvements in average on five Atari games, when the error rates are $10 \\%$ and $30 \\%$ respectively. ", + "bbox": [ + 233, + 265, + 764, + 529 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 554, + 336, + 570 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Designing a suitable reward function plays a critical role in building reinforcement learning models for real-world applications. Ideally, one would want to customize reward functions to achieve application-specific goals (Hadfield-Menell et al., 2017). In practice, however, it is difficult to design a function that produces credible rewards in the presence of noise. This is because the output from any reward function is subject to multiple kinds of randomness: ", + "bbox": [ + 173, + 585, + 823, + 655 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "• Inherent Noise. For instance, sensors on a robot will be affected by physical conditions such as temperature and lighting, and therefore will report back noisy observed rewards. \n• Application-Specific Noise. In machine teaching tasks (Thomaz et al., 2006; Loftin et al., 2014), when an RL agent receives feedback/instructions from people, different human instructors might provide drastically different feedback due to their personal styles and capabilities. This way the RL agent (machine) will obtain reward with bias. \n• Adversarial Noise. Adversarial perturbation has been widely explored in different learning tasks and shows strong attack power against different machine learning models. For instance, Huang et al. (2017) has shown that by adding adversarial perturbation to each frame of the game, they can mislead RL policies arbitrarily. ", + "bbox": [ + 173, + 666, + 825, + 815 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Assuming an arbitrary noise model makes solving this noisy RL problem extremely challenging. Instead, we focus on a specific noisy reward model which we call perturbed rewards, where the observed rewards by RL agents are generated according to a reward confusion matrix. This is not a very restrictive setting to start with, even considering that the noise could be adversarial: Given that arbitrary pixel value manipulation attack in RL is not very practical, adversaries in the real-world have high incentives to inject adversarial perturbation to the reward value by slightly modifying it. For instance, adversaries can manipulate sensors via reversing the reward value. ", + "bbox": [ + 174, + 827, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we develop an unbiased reward estimator aided robust framework that enables an RL agent to learn in a noisy environment with observing only perturbed rewards. Our solution framework builds on existing reinforcement learning algorithms, including the recently developed DRL ones ( $Q$ -Learning (Watkins, 1989; Watkins & Dayan, 1992), Cross-Entropy Method (CEM) (Szita & Lorincz, 2006), Deep SARSA (Sutton & Barto, 1998), Deep ¨ $Q$ -Network (DQN) (Mnih et al., 2013; 2015; van Hasselt et al., 2016), Dueling DQN (DDQN) (Wang et al., 2016), Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu et al., 2016) and Proximal Policy Optimization (PPO) (Schulman et al., 2017) algorithms). ", + "bbox": [ + 174, + 103, + 825, + 215 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The main challenge is that the observed rewards are likely to be biased, and in RL or DRL the accumulated errors could amplify the reward estimation error over time. We do not require any assumption on knowing the true distribution of reward or adversarial strategies, other than the fact that the generation of noises follow an unknown reward confusion matrix. Instead, we address the issue of estimating the reward confusion matrices by proposing an efficient and flexible estimation module. Everitt et al. (2017) provided preliminary studies for the noisy reward problem and gave some general negative results. The authors proved a No Free Lunch theorem, which is, without any assumption about what the reward corruption is, all agents can be misled. Our results do not contradict with the results therein, as we consider a specific noise generation model (that leads to a set of perturbed rewards). We analyze the convergence and sample complexity for the policy trained based on our proposed method using surrogate rewards in RL, using $Q$ -Learning as an example. ", + "bbox": [ + 174, + 222, + 825, + 375 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We conduct extensive experiments on OpenAI Gym (Brockman et al., 2016) (AirRaid, Alien, Carnival, MsPacman, Pong, Phoenix, Seaquest) and show that the proposed reward robust RL method achieves comparable performance with the policy trained using the true rewards. In some cases, our method even achieves higher cumulative reward - this is surprising to us at first, but we conjecture that the inserted noise together with our noisy-removal unbiased estimator adds another layer of exploration, which proves to be beneficial in some settings. This merits a future study. ", + "bbox": [ + 174, + 381, + 825, + 465 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our contributions are summarized as follows: (1) We adapt and generalize the idea of defining a simple but effective unbiased estimator for true rewards using observed and perturbed rewards to the reinforcement learning setting. The proposed estimator helps guarantee the convergence to the optimal policy even when the RL agents only have noisy observations of the rewards. (2) We analyze the convergence to the optimal policy and finite sample complexity of our reward robust RL methods, using $Q$ -Learning as the running example. (3) Extensive experiments on OpenAI Gym show that our proposed algorithms perform robustly even at high noise rates. ", + "bbox": [ + 174, + 472, + 825, + 570 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1.1 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 614, + 330, + 630 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Robust Reinforcement Learning It is known that RL algorithms are vulnerable to noisy environments (Irpan, 2018). Recent studies (Huang et al., 2017; Kos & Song, 2017; Lin et al., 2017) show that learned RL policies can be easily misled with small perturbations in observations. The presence of noise is very common in real-world environments, especially in robotics-relevant applications. Consequently, robust (adversarial) reinforcement learning (RRL/RARL) algorithms have been widely studied, aiming to train a robust policy which is capable of withstanding perturbed observations (Teh et al., 2017; Pinto et al., 2017; Gu et al., 2018) or transferring to unseen environments (Rajeswaran et al., 2016; Fu et al., 2017). However, these robust RL algorithms mainly focus on noisy vision observations, instead of the observed rewards. A couple of recent works (Lim et al., 2016; Roy et al., 2017) have also looked into a rather parallel question of training robust RL algorithms with uncertainty in models. ", + "bbox": [ + 174, + 652, + 825, + 805 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Learning with Noisy Data Learning appropriately with biased data has received quite a bit of attention in recent machine learning studies Natarajan et al. (2013); Scott et al. (2013); Scott (2015); Sukhbaatar & Fergus (2014); van Rooyen & Williamson (2015); Menon et al. (2015). The idea of above line of works is to define unbiased surrogate loss function to recover the true loss using the knowledge of the noises. We adapt these approaches to reinforcement learning. Though intuitively the idea should apply in our RL settings, our work is the first one to formally establish this extension both theoretically and empirically. Our quantitative understandings will provide practical insights when implementing reinforcement learning algorithms in noisy environments. ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PROBLEM FORMULATION AND PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 174, + 103, + 593, + 117 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In this section, we define our problem of learning from perturbed rewards in reinforcement learning. Throughout this paper, we will use perturbed reward and noisy reward interchangeably, as each time step of our sequential decision making setting is similar to the “learning with noisy data” setting in supervised learning (Natarajan et al., 2013; Scott et al., 2013; Scott, 2015; Sukhbaatar & Fergus, 2014). In what follows, we formulate our Markov Decision Process (MDP) problem and the reinforcement learning (RL) problem with perturbed (noisy) rewards. ", + "bbox": [ + 174, + 142, + 825, + 226 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.1 REINFORCEMENT LEARNING: THE NOISE-FREE SETTING ", + "bbox": [ + 174, + 256, + 612, + 270 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our RL agent interacts with an unknown environment and attempts to maximize the total of his collected reward. The environment is formalized as a Markov Decision Process (MDP), denoting as $\\mathcal { M } = \\langle \\boldsymbol { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\boldsymbol { \\gamma } \\rangle$ . At each time $t$ , the agent in state $s _ { t } ~ \\in ~ S$ takes an action $a _ { t } \\in \\mathcal A$ , which returns a reward $r ( s _ { t } , a _ { t } , s _ { t + 1 } ) \\ \\in \\ \\mathcal { R }$ (which we will also shorthand as $r _ { t }$ ), and leads to the next state $s _ { t + 1 } \\in S$ according to a transition probability kernel $\\mathcal { P }$ , which encodes the probability $\\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } \\big )$ . Commonly $\\mathcal { P }$ is unknown to the agent. The agent’s goal is to learn the optimal policy, a conditional distribution $\\pi ( a | s )$ that maximizes the state’s value function. The value function calculates the cumulative reward the agent is expected to receive given he would follow the current policy $\\pi$ after observing the current state $s _ { t }$ : $V ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\bar { \\sum _ { k = 1 } ^ { \\infty } } \\gamma ^ { k } r _ { t + k } \\ : | \\ : s _ { t } = s \\right] ,$ , where $0 ~ \\leq ~ \\gamma ~ \\leq ~ 1 ^ { 1 }$ is a discount factor. Intuitively, the agent evaluates how preferable each state is given the current policy. From the Bellman Equation, the optimal value function is given by $\\begin{array} { r } { V ^ { * } ( s ) \\ = \\ \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { s _ { t + 1 } \\in \\mathcal { S } } \\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right) \\left[ r _ { t } + \\gamma V ^ { * } \\left( s _ { t + 1 } \\right) \\right] } \\end{array}$ . It is a standard practice for RL algorithms to learn a state-action value function, also called the $Q$ -function. $Q$ -function denotes the expected cumulative reward if agent chooses $a$ in the current state and follows $\\pi$ thereafter: $\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi } \\left[ r ( s _ { t } , a _ { t } , s _ { t + 1 } ) + \\gamma V ^ { \\pi } ( s _ { t + 1 } ) \\ | \\ s _ { t } = s , a _ { t } = a \\right] . } \\end{array}$ . ", + "bbox": [ + 173, + 287, + 825, + 500 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 PERTURBED REWARD IN RL ", + "text_level": 1, + "bbox": [ + 176, + 530, + 410, + 544 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In many practical settings, our RL agent does not observe the reward feedback perfectly. We consider the following MDP with perturbed reward, denoting as $\\tilde { \\mathcal { M } } = \\langle \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , C , \\mathcal { P } , \\gamma \\rangle ^ { 2 }$ : instead of observing $\\boldsymbol { r } _ { t } \\in \\mathcal { R }$ at each time $t$ directly (following his action), our RL agent only observes a perturbed version of $r _ { t }$ , denoting as $\\tilde { r } _ { t } \\in \\tilde { \\mathcal { R } }$ . For most of our presentations, we focus on the cases where $\\mathcal { R }$ , $\\tilde { \\mathcal { R } }$ are finite sets; but our results generalize to the continuous reward settings. ", + "bbox": [ + 174, + 560, + 825, + 636 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The generation of $\\tilde { r }$ follows a certain function $C : \\mathcal { S } \\times \\mathcal { R } \\tilde { \\mathcal { R } }$ . To let our presentation stay focused, we consider the following simple state-independent3 flipping error rates model: if the rewards are binary (consider $r _ { + }$ and $r _ { - }$ ), $\\bar { \\tilde { r } } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ ( \\tilde { r } _ { t } )$ can be characterized by the following noise rate parameters $e _ { + } , e _ { - }$ : e $\\mathbf { \\Phi } _ { + } \\ = \\ \\mathbb { P } \\big ( \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { - } \\big | r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { + } \\big )$ , $e _ { - } ~ = ~ \\mathbb { P } ( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) ~ =$ $r _ { + } | r ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } )$ . When the signal levels are beyond binary, suppose there are $M$ outcomes in total, denoting as $[ R _ { 0 } , R _ { 1 } , \\cdot \\cdot \\cdot , R _ { M - 1 } ]$ . $\\tilde { r } _ { t }$ will be generated according to the following confusion matrix $\\mathbf { C } _ { M \\times M }$ where each entry $c _ { j , k }$ indicates the flipping probability for generating a perturbed outcome: $c _ { j , k } = \\mathbb { P } ( \\tilde { r } _ { t } = R _ { k } | r _ { t } = \\tilde { R _ { j } } )$ . Again we’d like to note that we focus on settings with finite reward levels for most of our paper, but we provide discussions in Section 3.1 on how to handle continuous rewards with discretizations. ", + "bbox": [ + 174, + 643, + 825, + 784 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In the paper, we do not assume knowing the noise rates (i.e., the reward confusion matrices), which is different from the assumption of knowing them as adopted in many supervised learning works Natarajan et al. (2013). Instead we will estimate the confusion matrices (Section 3.3). ", + "bbox": [ + 176, + 791, + 823, + 833 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 LEARNING WITH PERTURBED REWARDS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 540, + 118 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this section, we first introduce an unbiased estimator for binary rewards in our reinforcement learning setting when the error rates are known. This idea is inspired by Natarajan et al. (2013), but we will extend the method to the multi-outcome, as well as the continuous reward settings. ", + "bbox": [ + 173, + 132, + 825, + 175 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 UNBIASED ESTIMATOR FOR TRUE REWARD ", + "text_level": 1, + "bbox": [ + 176, + 190, + 516, + 205 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "With the knowledge of noise rates (reward confusion matrices), we are able to establish an unbiased approximation of the true reward in a similar way as done in Natarajan et al. (2013). We will call such a constructed unbiased reward as a surrogate reward. To give an intuition, we start with replicating the results for binary reward $\\mathcal { R } = \\{ r _ { - } , r _ { + } \\}$ in our RL setting: ", + "bbox": [ + 173, + 217, + 825, + 273 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Lemma 1. Let r be bounded. Then, if we define, ", + "bbox": [ + 174, + 275, + 495, + 290 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/3442e546a812b4988d1a10bb9f4501a9741b0683ad438c7e6ad05c023707d4ce.jpg", + "text": "$$\n\\hat { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) : = \\left\\{ \\begin{array} { l l } { \\frac { ( 1 - e _ { - } ) \\cdot r _ { + } - e _ { + } \\cdot r _ { - } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { + } \\right) } \\\\ { \\frac { ( 1 - e _ { + } ) \\cdot r _ { - } - e _ { - } \\cdot r _ { + } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } \\right) } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 305, + 292, + 689, + 333 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "we have for any $r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) .$ ", + "bbox": [ + 178, + 335, + 637, + 353 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In the standard supervised learning setting, the above property guarantees convergence - as more training data are collected, the empirical surrogate risk converges to its expectation, which is the same as the expectation of the true risk (due to unbiased estimators). This is also the intuition why we would like to replace the reward terms with surrogate rewards in our RL algorithms. ", + "bbox": [ + 174, + 361, + 823, + 417 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The above idea can be generalized to the multi-outcome setting in a fairly straight-forward way. Define $\\hat { \\mathbf { R } } : = [ \\hat { r } ( \\tilde { r } = R _ { 0 } ) , \\hat { r } ( \\tilde { r } = R _ { 1 } ) , . . . , \\hat { r } ( \\tilde { r } = R _ { M - 1 } ) ]$ , where $\\hat { r } ( \\tilde { r } = R _ { m } )$ denotes the value of the surrogate reward when the observed reward is $R _ { k }$ . Let ${ \\bf R } = [ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]$ be the bounded reward matrix with $M$ values. We have the following results: ", + "bbox": [ + 173, + 422, + 825, + 482 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Lemma 2. Suppose $\\mathbf { C } _ { M \\times M }$ is invertible. With defining: ", + "bbox": [ + 173, + 483, + 545, + 500 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/20f06c62fe8ec2cf7e4eca1d19504b5273bad9f6fc050ffd06f8932149585713.jpg", + "text": "$$\n\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 450, + 502, + 544, + 518 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "we have for any $r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) .$ ", + "bbox": [ + 178, + 522, + 638, + 540 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Continuous reward When the reward signal is continuous, we discretize it into $M$ intervals and view each interval as a reward level, with its value approximated by its middle point. With increasing $M$ , this quantization error can be made arbitrarily small. Our method is then the same as the solution for the multi-outcome setting, except for replacing rewards with discretized ones. Note that the finerdegree quantization we take, the smaller the quantization error - but we would suffer from learning a bigger reward confusion matrix. This is a trade-off question that can be addressed empirically. ", + "bbox": [ + 173, + 545, + 825, + 628 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "So far we have assumed knowing the confusion matrices, but we will address this additional estimation issue in Section 3.3, and present our complete algorithm therein. ", + "bbox": [ + 173, + 635, + 821, + 665 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 CONVERGENCE AND SAMPLE COMPLEXITY: $Q$ -LEARNING ", + "text_level": 1, + "bbox": [ + 174, + 679, + 622, + 695 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We now analyze the convergence and sample complexity of our surrogate reward based RL algorithms (with assuming knowing $\\mathbf { C }$ ), taking $Q$ -Learning as an example. ", + "bbox": [ + 171, + 705, + 823, + 734 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Convergence guarantee First, the convergence guarantee is stated in the following theorem: ", + "bbox": [ + 178, + 738, + 795, + 753 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1. Given a finite MDP, denoting as $\\hat { \\mathcal { M } } = \\langle S , \\mathcal { A } , \\hat { \\mathcal { R } } , \\mathcal { P } , \\gamma \\rangle$ , the $Q$ -learning algorithm with surrogate rewards, given by the update rule, ", + "bbox": [ + 173, + 756, + 823, + 785 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/a2abed8b6905718eec7d2586af14bcbc5a9bc860e6cc9b0612ae2ac639baa1a7.jpg", + "text": "$$\nQ _ { t + 1 } ( s _ { t } , a _ { t } ) = ( 1 - \\alpha _ { t } ) Q ( s _ { t } , a _ { t } ) + \\alpha _ { t } \\left[ \\hat { r } _ { t } + \\gamma \\operatorname* { m a x } _ { b \\in \\cal A } Q ( { s } _ { t + 1 } , b ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 295, + 787, + 700, + 819 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "converges w.p.1 to the optimal $Q$ -function as long as $\\textstyle \\sum _ { t } \\alpha _ { t } = \\infty$ and $\\textstyle \\sum _ { t } \\alpha _ { t } ^ { 2 } < \\infty$ ", + "bbox": [ + 176, + 821, + 723, + 839 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Note that the term on the right hand of Eqn. (3) includes surrogate reward $\\hat { r }$ estimated using Eqn. (1) and Eqn. (2). Theorem 1 states that that agents will converge to the optimal policy $w . p . I$ with replacing the rewards with surrogate rewards, despite of the noises in observing rewards. This result is not surprising - though the surrogate rewards introduce larger variance, we are grateful of their unbiasedness, which grants us the convergence. In other words, the addition of the perturbed reward does not destroy the convergence guarantees of $Q$ -Learning. ", + "bbox": [ + 173, + 847, + 825, + 933 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Sample complexity To establish our sample complexity results, we first introduce a generative model following previous literature (Kearns & Singh, 1998; 2000; Kearns et al., 1999). This is a practical MDP setting to simplify the analysis. ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 1. A generative model $G ( \\mathcal { M } )$ for an MDP $\\mathcal { M }$ is a sampling model which takes a stateaction pair $\\left( { { s _ { t } } , { a _ { t } } } \\right)$ as input, and outputs the corresponding reward $r ( s _ { t } , a _ { t } )$ and the next state $s _ { t + 1 }$ randomly with the probability of $\\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right)$ , i.e., $s _ { t + 1 } \\sim \\mathbb { P } ( \\cdot | s , a )$ . ", + "bbox": [ + 173, + 148, + 825, + 193 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Exact value iteration is impractical if the agents follow the generative models above exactly (Kakade, 2003). Consequently, we introduce a phased $Q$ -Learning which is similar to the ones presented in Kakade (2003); Kearns & Singh (1998) for the convenience of proving our sample complexity results. We briefly outline phased $Q$ -Learning as follows - the complete description (Algorithm 2) can be found in Appendix A. ", + "bbox": [ + 174, + 200, + 825, + 271 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Definition 2. Phased $Q$ -Learning algorithm takes m samples per phase by calling generative model $G ( \\mathcal { M } )$ . It uses the collected m samples to estimate the transition probability $\\mathcal { P }$ and update the estimated value function per phase. Calling generative model $G ( \\hat { \\mathcal { M } } )$ means that surrogate rewards are returned and used to update value function per phase. ", + "bbox": [ + 173, + 273, + 825, + 333 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The sample complexity of Phased $Q$ -Learning is given as follows: ", + "bbox": [ + 173, + 343, + 611, + 358 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 2. (Upper Bound) Let $r ~ \\in ~ [ 0 , R _ { \\mathrm { m a x } } ]$ be bounded reward, $\\mathbf { C }$ be an invertible reward confusion matrix with $\\operatorname* { d e t } ( \\mathbf { C } )$ denoting its determinant. For an appropriate choice of $m$ , the Phased $Q$ -Learning algorithm calls the generative model $\\begin{array} { r } { G ( \\hat { \\mathcal { M } } ) \\hat { \\textbf { \\textit { O } } } \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) } \\end{array}$ times in $T$ epochs, and returns a policy such that for all state $s \\in S$ , $| V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\le \\epsilon$ , $\\epsilon > 0$ , w.p. $\\geq 1 - \\delta$ , $0 < \\delta < 1$ . ", + "bbox": [ + 174, + 361, + 825, + 439 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 2 states that, to guarantee the convergence to the optimal policy, the number of samples needed is no more than $\\bar { O ( 1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } ) }$ times of the one needed when the RL agent observes true rewards perfectly. This additional constant is the price we pay for the noise presented in our learning environment. When the noise level is high, we expect to see a much higher $1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 }$ ; otherwise when we are in a low-noise regime , $Q$ -Learning can be very efficient with surrogate reward (Kearns & Singh, 2000). Note that Theorem 2 gives the upper bound in discounted MDP setting; for undiscounted setting $( \\gamma = 1 )$ ), the upper bound is at the order of $\\begin{array} { r } { O \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}$ . Lower bound result is omitted due to the lack of space. The idea of constructing MDP in which learning is difficult and the algorithm must make $\\left( \\frac { | \\mathcal { S } | | \\bar { \\mathcal { A } } | T } { \\epsilon } \\log \\frac { 1 } { \\delta } \\right)$ calls to $G ( \\hat { \\mathcal { M } } )$ , is similar to Kakade (2003). ", + "bbox": [ + 173, + 449, + 825, + 593 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "While the surrogate reward guarantees the unbiasedness, we sacrifice the variance at each of our learning steps, and this in turn delays the convergence (as also evidenced in the sample complexity bound). It can be verified that the variance of surrogate reward is bounded when $\\mathbf { C }$ is invertible, and it is always higher than the variance of true reward. This is summarized in the following theorem: ", + "bbox": [ + 173, + 598, + 825, + 655 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 3. Let $r \\in [ 0 , R _ { \\mathrm { m a x } } ]$ be bounded reward and confusion matrix $\\mathbf { C }$ is invertible. Then, the variance of surrogate reward $\\hat { r }$ is bounded as follows: $\\begin{array} { r } { \\mathbf { V a r } ( r ) \\le \\mathbf { V a r } ( \\hat { r } ) \\le \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } } \\end{array}$ . ", + "bbox": [ + 173, + 657, + 820, + 693 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To give an intuition of the bound, when we have binary reward, the variance for surrogate reward bounds as follows: $\\begin{array} { r } { \\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { 4 R _ { \\operatorname* { m a x } } ^ { 2 } } { ( 1 - e _ { + } - e _ { - } ) ^ { 2 } } } \\end{array}$ . As $e _ { - } + e _ { + } \\to 1$ , the variance becomes unbounded and the proposed estimator is no longer effective, nor will it be well-defined. In practice, there is a trade-off question between bias and variance by tuning a linear combination of $\\mathbf { R }$ and $\\hat { \\mathbf { R } }$ , i.e., $\\mathbf { R } _ { p r o x y } = \\eta \\mathbf { R } + ( 1 - \\eta ) \\hat { \\mathbf { R } }$ , and choosing an appropriate $\\eta \\in [ 0 , 1 ]$ . ", + "bbox": [ + 173, + 702, + 825, + 785 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 ESTIMATION OF CONFUSION MATRICES ", + "text_level": 1, + "bbox": [ + 176, + 800, + 491, + 815 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In Section 3.1 we have assumed the knowledge of reward confusion matrices, in order to compute the surrogate reward. This knowledge is often not available in practice. Estimating these confusion matrices is challenging without knowing any ground truth reward information; but we’d like to note that efficient algorithms have been developed to estimate the confusion matrices in supervised learning settings (Bekker & Goldberger, 2016; Liu & Liu, 2017; Khetan et al., 2017; Hendrycks et al., 2018). The idea in these algorithms is to dynamically refine the error rates based on aggregated rewards. Note this approach is not different from the inference methods in aggregating crowdsourcing labels, as referred in the literature (Dawid & Skene, 1979; Karger et al., 2011; Liu et al., 2012). We adapt this idea to our reinforcement learning setting, which is detailed as follows. ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "At each training step, the RL agent collects the noisy reward and the current state-action pair. Then, for each pair in $\\mathcal { S } \\times \\mathcal { A }$ , the agent predicts the true reward based on accumulated historical observations of reward for the corresponding state-action pair via, e.g., averaging (majority voting). Finally, with the predicted true reward and the accuracy (error rate) for each state-action pair, the estimated reward confusion matrices $\\tilde { \\mathbf { C } }$ are given by ", + "bbox": [ + 174, + 137, + 823, + 205 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/61266d14679393cd61f298501f883762b84409708e06eb7928ce61d58020f780.jpg", + "text": "$$\n\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ,\n$$", + "text_format": "latex", + "bbox": [ + 339, + 213, + 655, + 250 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where in above $\\# \\left[ \\cdot \\right]$ denotes the number of state-action pair that satisfies the condition $[ \\cdot ]$ in the set of observed rewards $\\tilde { R } ( s , a )$ (see Algorithm 1 and 3); ${ \\bar { r } } ( s , a )$ and $\\tilde { r } ( s , a )$ denote predicted true rewards (using majority voting) and observed rewards when the state-action pair is $( s , a )$ . The above procedure of updating $\\tilde { c } _ { i , j }$ continues indefinitely as more observation arrives. ", + "bbox": [ + 176, + 257, + 825, + 316 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our final definition of surrogate reward replaces a known reward confusion $\\mathbf { C }$ in Eqn. (2) with our estimated one $\\tilde { \\mathbf { C } }$ . We denote this estimated surrogate reward as $\\dot { r }$ . ", + "bbox": [ + 173, + 323, + 387, + 395 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We present (Reward Robust RL) in Algorithm $1 ^ { 4 }$ . Note that the algorithm is rather generic, and we can plug in any exisitng RL algorithm into our reward robust one, with only changes in replacing the rewards with our estimated surrogate rewards. ", + "bbox": [ + 173, + 401, + 387, + 512 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Algorithm 1 Reward Robust RL (sketch) ", + "text_level": 1, + "bbox": [ + 406, + 327, + 653, + 342 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Input: $\\tilde { \\mathcal { M } } , \\alpha , \\beta , \\tilde { R } ( s , a )$ \nOutput: $Q ( s ) , \\pi ( s , t )$ Initialize value function $Q ( s , a )$ arbitrarily. while $Q$ is not converged do Initialize state $s \\in S$ while $s$ is not terminal do Choose $a$ from $s$ using policy derived from $Q$ Take action $a$ , observe $s ^ { \\prime }$ and noisy reward $\\tilde { r }$ if collecting enough $\\tilde { r }$ for every $\\boldsymbol { s } \\times \\boldsymbol { A }$ pair then Get predicted true reward $\\bar { r }$ using majority voting Estimate confusion matrix $\\tilde { \\mathbf { C } }$ based on $\\tilde { r }$ and $\\bar { r }$ (Eqn. 4) Obtain surrogate reward $\\dot { r }$ $( \\hat { \\mathbf { R } } = ( 1 - \\eta ) \\cdot \\mathbf { R } + \\eta \\cdot \\mathbf { C } ^ { - 1 } \\mathbf { R } )$ Update $Q$ using surrogate reward $s \\gets s ^ { \\prime }$ return $Q ( s )$ and $\\pi ( s )$ ", + "bbox": [ + 405, + 345, + 818, + 547 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 535, + 326, + 551 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "In this section, reward robust RL is tested in different games, with different noise settings. Due to space limit, more experimental results can be found in Appendix D. ", + "bbox": [ + 171, + 568, + 823, + 597 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 174, + 616, + 375, + 630 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Environments and RL Algorithms To fully test the performance under different environments, we evaluate the proposed robust reward RL method on two classic control games (CartPole, Pendulum) and seven Atari 2600 games (AirRaid, Alien, Carnival, MsPacman, Pong, Phoenix, Seaquest), which encompass a large variety of environments, as well as rewards. Specifically, the rewards could be unary (CartPole), binary (most of Atari games), multivariate (Pong) and even continuous (Pendulum). A set of state-of-the-art reinforcement learning algorithms are experimented with while training under different amounts of noise (See Table 3)5. For each game and algorithm, three policies are trained based on different random initialization to decrease the variance. ", + "bbox": [ + 173, + 642, + 825, + 753 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Reward Post-Processing For each game and RL algorithm, we test the performances for learning with true rewards, learning with noisy rewards and learning with surrogate rewards. Both symmetric and asymmetric noise settings with different noise levels are tested. For symmetric noise, the confusion matrices are symmetric. As for asymmetric noise, two types of random noise are tested: 1) rand-one, each reward level can only be perturbed into another reward; 2) rand-all, each reward could be perturbed to any other reward, via adding a random noise matrix. To measure the amount of noise w.r.t confusion matrices, we define the weight of noise $\\omega$ in Appendix B.2. The larger $\\omega$ is, the higher the noise rates are. ", + "bbox": [ + 173, + 770, + 826, + 882 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 ROBUSTNESS EVALUATION ", + "text_level": 1, + "bbox": [ + 176, + 103, + 401, + 117 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "CartPole The goal in CartPole is to prevent the pole from falling by controlling the cart’s direction and velocity. The reward is $+ 1$ for every step taken, including the termination step. When the cart or pole deviates too much or the episode length is longer than 200, the episode terminates. Due to the unary reward $\\{ + 1 \\}$ in CartPole, a corrupted reward $- 1$ is added as the unexpected error $( e _ { - } = 0 )$ ). As a result, the reward space $\\mathcal { R }$ is extended to $\\{ + 1 , - 1 \\}$ . Five algorithms $Q$ -Learning (1992), CEM (2006), SARSA (1998), DQN (2016) and DDQN (2016) are evaluated. ", + "bbox": [ + 173, + 132, + 825, + 217 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/773df94c8cbedc6b09e7efd3947033cf50e6fa007f6394f58545dd7c8f0bf193.jpg", + "image_caption": [ + "Figure 1: Learning curves from five RL algorithms on CartPole game with true rewards $( r ) \\mathsf { l } .$ , noisy rewards $( \\tilde { r } )$ and estimated surrogate rewards $( \\dot { r } )$ $( \\eta = 1 )$ ) . Note that reward confusion matrices C are unknown to the agents here. Full results are in Appendix D.2 (Figure 6). " + ], + "image_footnote": [], + "bbox": [ + 173, + 223, + 816, + 392 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In Figure 1, we show that our estimator successfully produces meaningful surrogate rewards that adapt the underlying RL algorithms to the noisy settings, without any assumption of the true distribution of rewards. With the noise rate increasing (from 0.1 to 0.9), the models with noisy rewards converge slower due to larger biases. However, we observe that the models always converge to the best score 200 with the help of surrogate rewards. ", + "bbox": [ + 173, + 453, + 825, + 523 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In some circumstances (slight noise - see Figure 6a, 6b, 6c, 6d), the surrogate rewards even lead to faster convergence. This points out an interesting observation: learning with surrogate reward even outperforms the case with observing the true reward. We conjecture that the way of adding noise and then removing the bias introduces implicit exploration. This implies that for settings even with true reward, we might consider manually adding noise and then remove it in expectation. ", + "bbox": [ + 173, + 530, + 825, + 601 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Pendulum The goal in Pendulum is to keep a frictionless pendulum standing up. Different from the CartPole setting, the rewards in pendulum are continuous: $r \\in ( - 1 6 . 2 8 , 0 . 0 ]$ . The closer the reward is to zero, the better performance the model achieves. Following our extension (see Section 3.1), the $( - 1 7 , 0 ]$ is firstly discretized into 17 intervals: $( - 1 7 , - 1 6 ] , \\bar { ( - 1 6 , - 1 5 ] } , \\cdot \\cdot \\cdot , ( - 1 , 0 ]$ , with its value approximated using its maximum point. After the quantization step, the surrogate rewards can be estimated using multi-outcome extensions presented in Section 3.1. ", + "bbox": [ + 173, + 612, + 825, + 695 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/1ae76c6ed973b4b8597898a128e369a80dbf7ecc08deae09f7f1703b8c96470d.jpg", + "table_caption": [ + "Table 1: Average scores of various RL algorithms on CartPole and Pendulum with noisy rewards $( \\tilde { r } )$ and surrogate rewards under known $( \\hat { r } )$ or estimated $( \\dot { r } )$ noise rates. Note that the results for last two algorithms DDPG (rand-one) $\\&$ NAF (rand-all) are on Pendulum, but the others are on CartPole. " + ], + "table_footnote": [], + "table_body": "
Noise RateRewardQ-LearnCEMSARSADQNDDQNDDPGNAF
w=0.1r170.098.1165.2187.2187.8-1.03-4.48
165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
w= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.182.2159.6186.7200.0 -1.05-1.36
", + "bbox": [ + 223, + 753, + 779, + 862 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We experiment two popular algorithms, DDPG (2015) and NAF (2016) in this game. In Figure 2, both algorithms perform well with surrogate rewards under different amounts of noise. In most cases, the biases were corrected in the long-term, even when the amount of noise is extensive (e.g., $\\omega ~ = ~ 0 . 7 )$ ). The quantitative scores on CartPole and Pendulum are given in Table 1, where the scores are averaged based on the last thirty episodes. The full results $\\left( \\omega > 0 . 5 \\right)$ ) can be found in Appendix D.1, so does Table 2. Our reward robust RL method is able to achieve consistently good scores. ", + "bbox": [ + 173, + 867, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/451aa49fb9cf8dc3251270bf181057baeed34713b0cc897c0ce4258ff7329b11.jpg", + "image_caption": [ + "Figure 2: Learning curves from DDPG and NAF on Pendulum game with true rewards $( r ) \\mathsf { l }$ , noisy rewards $( \\tilde { r } )$ and surrogate rewards $( \\hat { r } )$ $( \\eta = 1$ ) . Both symmetric and asymmetric noise are conduced in the experiments. Full results are in Appendix D.2 (Figure 8). " + ], + "image_footnote": [], + "bbox": [ + 186, + 103, + 805, + 303 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 386, + 825, + 428 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Atari We validate our algorithm on seven Atari 2600 games using the state-of-the-art algorithm PPO (Schulman et al., 2017). The games are chosen to cover a variety of environments. The rewards in the Atari games are clipped into $\\{ - 1 , 0 , 1 \\}$ . We leave the detailed settings to Appendix B. ", + "bbox": [ + 174, + 433, + 825, + 474 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/38cb45e4b166d635c44b6c36d861be0128e5f1445e49d09a112bea51194f8e04.jpg", + "image_caption": [ + "Figure 3: Learning curves from PPO on Pong-v4 game with true rewards $( r ) \\mathsf { l } ,$ , noisy rewards $( \\tilde { r } )$ and surrogate rewards $( \\eta = 1$ ) $( \\hat { r } ) \\mathbf { l }$ . The noise rates increase from 0.1 to 0.9, with a step of 0.1. " + ], + "image_footnote": [], + "bbox": [ + 207, + 481, + 789, + 666 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Results for PPO on Pong-v4 in symmetric noise setting are presented in Figure 3. Due to limited space, more results on other Atari games and noise settings are given in Appendix D.3. Similar to previous results, our surrogate estimator performs consistently well and helps PPO converge to the optimal policy. Table 2 shows the average scores of PPO on five selected Atari games with different amounts of noise (symmetric $\\&$ asymmetric). In particular, when the noise rates $e _ { + } = e _ { - } > 0 . 3 .$ , agents with surrogate rewards obtain significant amounts of improvements in average scores. We do not present the results for the case with unknown $\\mathbf { C }$ because the state-space (image-input) is very large for Atari games, which is difficult to handle with the solution given in Section 3.3. ", + "bbox": [ + 174, + 714, + 825, + 825 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 848, + 318, + 864 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Only an underwhelming amount of reinforcement learning studies have focused on the settings with perturbed and noisy rewards, despite the fact that such noises are common when exploring a realworld scenario, that faces sensor errors or adversarial examples. We adapt the ideas from supervised learning with noisy examples (Natarajan et al., 2013), and propose a simple but effective RL framework for dealing with noisy rewards. The convergence guarantee and finite sample complexity of $Q$ -Learning (or its variant) with estimated surrogate rewards are given. To validate the effectiveness of our approach, extensive experiments are conducted on OpenAI Gym, showing that surrogate rewards successfully rescue models from misleading rewards even at high noise rates. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/98e28db6578a3264d9b29693372c638330a3d66b67e56d60e4c93fcd1089878d.jpg", + "table_caption": [ + "Table 2: Average scores of PPO on five selected games with noisy rewards $( \\tilde { r } )$ and surrogate rewards $( \\hat { r } )$ . The experiments are repeated three times with different random seeds. " + ], + "table_footnote": [], + "table_body": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_=e+=0.1-2044.21814.81239.24608.91709.1849.2
67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.3r-770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+ =0.3r-1180.1543.1919.82600.31109.6727.8
46.7%个1730.81637.7966.14171.51470.2408.6
", + "bbox": [ + 192, + 147, + 807, + 255 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 280, + 825, + 351 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 372, + 287, + 387 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Alan Joseph Bekker and Jacob Goldberger. Training deep neural-networks based on unreliable labels. In ICASSP, pp. 2682–2686. IEEE, 2016. \nGreg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and Wojciech Zaremba. Openai gym, 2016. \nAlexander Philip Dawid and Allan M Skene. Maximum likelihood estimation of observer error-rates using the em algorithm. Applied statistics, pp. 20–28, 1979. \nPrafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford, John Schulman, Szymon Sidor, and Yuhuai Wu. Openai baselines. https://github.com/ openai/baselines, 2017. \nTom Everitt, Victoria Krakovna, Laurent Orseau, and Shane Legg. Reinforcement learning with a corrupted reward channel. In IJCAI, pp. 4705–4713. ijcai.org, 2017. \nJustin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adversarial inverse reinforcement learning. CoRR, abs/1710.11248, 2017. \nShixiang Gu, Timothy P. Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning with model-based acceleration. In ICML, volume 48 of JMLR Workshop and Conference Proceedings, pp. 2829–2838. JMLR.org, 2016. \nZhaoyuan Gu, Zhenzhong Jia, and Howie Choset. Adversary a3c for robust reinforcement learning, 2018. URL https://openreview.net/forum?id $=$ SJvrXqvaZ. \nDylan Hadfield-Menell, Smitha Milli, Pieter Abbeel, Stuart J Russell, and Anca Dragan. Inverse reward design. In Advances in Neural Information Processing Systems, pp. 6765–6774, 2017. \nDan Hendrycks, Mantas Mazeika, Duncan Wilson, and Kevin Gimpel. Using trusted data to train deep networks on labels corrupted by severe noise. CoRR, abs/1802.05300, 2018. \nSandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks on neural network policies. arXiv preprint arXiv:1702.02284, 2017. \nAlex Irpan. Deep reinforcement learning doesn’t work yet. https://www.alexirpan.com/ 2018/02/14/rl-hard.html, 2018. \nTommi S. Jaakkola, Michael I. Jordan, and Satinder P. Singh. Convergence of stochastic iterative dynamic programming algorithms. In NIPS, pp. 703–710. Morgan Kaufmann, 1993. ", + "bbox": [ + 169, + 387, + 826, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Sham Machandranath Kakade. On the Sample Complexity of Reinforcement Learning. PhD thesis, University of London, 2003. ", + "bbox": [ + 174, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David R Karger, Sewoong Oh, and Devavrat Shah. Iterative learning for reliable crowdsourcing systems. In Advances in neural information processing systems, pp. 1953–1961, 2011. ", + "bbox": [ + 174, + 140, + 823, + 171 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael J. Kearns and Satinder P. Singh. Finite-sample convergence rates for q-learning and indirect algorithms. In NIPS, pp. 996–1002. The MIT Press, 1998. ", + "bbox": [ + 173, + 179, + 823, + 208 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael J. Kearns and Satinder P. Singh. Bias-variance error bounds for temporal difference updates. In COLT, pp. 142–147. Morgan Kaufmann, 2000. ", + "bbox": [ + 171, + 217, + 823, + 246 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Michael J. Kearns, Yishay Mansour, and Andrew Y. Ng. A sparse sampling algorithm for nearoptimal planning in large markov decision processes. In IJCAI, pp. 1324–1231. Morgan Kaufmann, 1999. ", + "bbox": [ + 173, + 255, + 823, + 297 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ashish Khetan, Zachary C. Lipton, and Anima Anandkumar. Learning from noisy singly-labeled data. CoRR, abs/1712.04577, 2017. ", + "bbox": [ + 169, + 306, + 823, + 335 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jernej Kos and Dawn Song. Delving into adversarial attacks on deep policies. CoRR, abs/1705.06452, 2017. ", + "bbox": [ + 171, + 343, + 823, + 373 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa, David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. CoRR, abs/1509.02971, 2015. ", + "bbox": [ + 173, + 381, + 825, + 425 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Shiau Hong Lim, Huan Xu, and Shie Mannor. Reinforcement learning in robust markov decision processes. Math. Oper. Res., 41(4):1325–1353, 2016. ", + "bbox": [ + 174, + 433, + 821, + 463 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yen-Chen Lin, Zhang-Wei Hong, Yuan-Hong Liao, Meng-Li Shih, Ming-Yu Liu, and Min Sun. Tactics of adversarial attack on deep reinforcement learning agents. In IJCAI, pp. 3756–3762. ijcai.org, 2017. ", + "bbox": [ + 173, + 470, + 825, + 515 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Qiang Liu, Jian Peng, and Alexander T Ihler. Variational inference for crowdsourcing. In Proc. of NIPS, 2012. ", + "bbox": [ + 173, + 522, + 823, + 551 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yang Liu and Mingyan Liu. An online learning approach to improving the quality of crowdsourcing. IEEE/ACM Transactions on Networking, 25(4):2166–2179, Aug 2017. ", + "bbox": [ + 173, + 560, + 823, + 590 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "R. Loftin, B. Peng, J. MacGlashan, M. L. Littman, M. E. Taylor, J. Huang, and D. L. Roberts. Learning something from nothing: Leveraging implicit human feedback strategies. In The 23rd IEEE International Symposium on Robot and Human Interactive Communication, pp. 607–612, Aug 2014. ", + "bbox": [ + 173, + 598, + 825, + 656 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Aditya Menon, Brendan Van Rooyen, Cheng Soon Ong, and Bob Williamson. Learning from corrupted binary labels via class-probability estimation. In International Conference on Machine Learning, pp. 125–134, 2015. ", + "bbox": [ + 173, + 664, + 823, + 707 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan Wierstra, and Martin A. Riedmiller. Playing atari with deep reinforcement learning. CoRR, abs/1312.5602, 2013. ", + "bbox": [ + 174, + 715, + 825, + 758 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529, 2015. ", + "bbox": [ + 173, + 767, + 823, + 811 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nagarajan Natarajan, Inderjit S Dhillon, Pradeep K Ravikumar, and Ambuj Tewari. Learning with noisy labels. In Advances in neural information processing systems, pp. 1196–1204, 2013. ", + "bbox": [ + 173, + 819, + 823, + 849 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Lerrel Pinto, James Davidson, Rahul Sukthankar, and Abhinav Gupta. Robust adversarial reinforcement learning. In ICML, volume 70 of Proceedings of Machine Learning Research, pp. 2817–2826. PMLR, 2017. ", + "bbox": [ + 173, + 857, + 825, + 900 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Matthias Plappert. keras-rl. https://github.com/keras-rl/keras-rl, 2016. ", + "bbox": [ + 169, + 909, + 759, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Aravind Rajeswaran, Sarvjeet Ghotra, Sergey Levine, and Balaraman Ravindran. Epopt: Learning robust neural network policies using model ensembles. CoRR, abs/1610.01283, 2016. ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Joshua Romoff, Alexandre Piche, Peter Henderson, Vincent Franc¸ois-Lavet, and Joelle Pineau. Re- ´ ward estimation for variance reduction in deep reinforcement learning. CoRR, abs/1805.03359, 2018. ", + "bbox": [ + 174, + 141, + 823, + 184 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aurko Roy, Huan Xu, and Sebastian Pokutta. Reinforcement learning under model mismatch. CoRR, abs/1706.04711, 2017. ", + "bbox": [ + 174, + 193, + 821, + 222 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy optimization algorithms. CoRR, abs/1707.06347, 2017. ", + "bbox": [ + 173, + 229, + 823, + 260 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Anton Schwartz. A reinforcement learning method for maximizing undiscounted rewards. In ICML, pp. 298–305. Morgan Kaufmann, 1993. ", + "bbox": [ + 173, + 267, + 823, + 297 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Clayton Scott. A rate of convergence for mixture proportion estimation, with application to learning from noisy labels. In AISTATS, 2015. ", + "bbox": [ + 173, + 306, + 823, + 335 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Clayton Scott, Gilles Blanchard, Gregory Handy, Sara Pozzi, and Marek Flaska. Classification with asymmetric label noise: Consistency and maximal denoising. In COLT, pp. 489–511, 2013. ", + "bbox": [ + 169, + 343, + 825, + 373 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Matthew J. Sobel. Mean-variance tradeoffs in an undiscounted MDP. Operations Research, 42(1): 175–183, 1994. ", + "bbox": [ + 173, + 381, + 821, + 410 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sainbayar Sukhbaatar and Rob Fergus. Learning from noisy labels with deep neural networks. arXiv preprint arXiv:1406.2080, 2(3):4, 2014. ", + "bbox": [ + 173, + 419, + 821, + 448 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Richard S. Sutton and Andrew G. Barto. Reinforcement learning - an introduction. Adaptive computation and machine learning. MIT Press, 1998. ", + "bbox": [ + 173, + 457, + 820, + 486 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Istvan Szita and Andras L ´ orincz. Learning tetris using the noisy cross-entropy method. ¨ Neural Computation, 18(12):2936–2941, 2006. ", + "bbox": [ + 174, + 494, + 823, + 523 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yee Whye Teh, Victor Bapst, Wojciech M. Czarnecki, John Quan, James Kirkpatrick, Raia Hadsell, Nicolas Heess, and Razvan Pascanu. Distral: Robust multitask reinforcement learning. In NIPS, pp. 4499–4509, 2017. ", + "bbox": [ + 173, + 531, + 823, + 575 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrea Lockerd Thomaz, Cynthia Breazeal, et al. Reinforcement learning with human teachers: Evidence of feedback and guidance with implications for learning performance. 2006. ", + "bbox": [ + 173, + 583, + 823, + 613 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "John N. Tsitsiklis. Asynchronous stochastic approximation and q-learning. Machine Learning, 16 (3):185–202, 1994. ", + "bbox": [ + 173, + 621, + 823, + 651 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double qlearning. In AAAI, pp. 2094–2100. AAAI Press, 2016. ", + "bbox": [ + 174, + 659, + 821, + 689 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Brendan van Rooyen and Robert C Williamson. Learning in the presence of corruption. arXiv preprint arXiv:1504.00091, 2015. ", + "bbox": [ + 173, + 696, + 823, + 727 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas. Dueling network architectures for deep reinforcement learning. In ICML, volume 48 of JMLR Workshop and Conference Proceedings, pp. 1995–2003. JMLR.org, 2016. ", + "bbox": [ + 174, + 734, + 823, + 779 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christopher J. C. H. Watkins and Peter Dayan. Q-learning. In Machine Learning, pp. 279–292, 1992. ", + "bbox": [ + 174, + 786, + 823, + 815 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Christopher John Cornish Hellaby Watkins. Learning from Delayed Rewards. PhD thesis, King’s College, Cambridge, UK, May 1989. ", + "bbox": [ + 173, + 824, + 823, + 853 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yuchen Zhang, Xi Chen, Denny Zhou, and Michael I Jordan. Spectral methods meet em: A provably optimal algorithm for crowdsourcing. In Advances in neural information processing systems, pp. 1260–1268, 2014. ", + "bbox": [ + 173, + 862, + 823, + 905 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A PROOFS ", + "text_level": 1, + "bbox": [ + 174, + 102, + 277, + 117 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof of Lemma $^ { l }$ . For simplicity, we shorthand $\\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )$ as ${ \\hat { r } } , { \\tilde { r } } , r$ , and let $r _ { + } , r _ { - } , \\hat { r } _ { + } , \\hat { r } _ { - }$ denote the general reward levels and corresponding surrogate ones: ", + "bbox": [ + 173, + 132, + 823, + 161 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/ffded2179fc99e63e5d6e6235b3eb6befb42e1212144b59912a08c44a71d637b.jpg", + "text": "$$\n\\begin{array} { r } { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) \\hat { r } _ { - } + \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) \\hat { r } _ { + } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 343, + 166, + 653, + 184 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "When $r = r _ { + }$ , from the definition in Lemma 1: ", + "bbox": [ + 173, + 188, + 485, + 203 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/ee6c0e6581d123ec30c6ef939129f51720e633f8215a48d0ce83f79886a54133.jpg", + "text": "$$\n\\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) = e _ { + } , \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) = 1 - e _ { + } .\n$$", + "text_format": "latex", + "bbox": [ + 346, + 207, + 648, + 226 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Taking the definition of surrogate rewards Eqn. (1) into Eqn. (5), we have ", + "bbox": [ + 171, + 228, + 655, + 244 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/5b541bf67df10f09298b971dbebb8968ca53ce9b6cd164f52ace582e2cce137f.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = e _ { + } \\cdot \\hat { r } _ { - } + ( 1 - e _ { + } ) \\cdot \\hat { r } _ { + } } \\\\ & { \\qquad = e _ { + } \\cdot \\frac { ( 1 - e _ { + } ) r _ { - } - e _ { - } r _ { + } } { 1 - e _ { - } - e _ { + } } + ( 1 - e _ { + } ) \\cdot \\frac { ( 1 - e _ { - } ) r _ { + } - e _ { + } r _ { - } } { 1 - e _ { - } - e _ { + } } = r _ { + } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 238, + 247, + 758, + 301 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Similarly, when $r = r _ { - }$ , it also verifies $\\mathbb { E } _ { \\tilde { r } | r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )$ . ", + "bbox": [ + 174, + 304, + 684, + 321 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof of Lemma 2. The idea of constructing unbiased estimator is easily adapted to multi-outcome reward settings via writing out the conditions for the unbiasedness property (s.t. $\\mathbb { E } _ { \\tilde { r } | r } [ \\hat { r } ] = r .$ ). For simplicity, we shorthand $\\hat { r } ( \\tilde { r } = R _ { i } )$ as $\\hat { R } _ { i }$ in the following proofs. Similar to Lemma 1, we need to solve the following set of functions to obtain $\\hat { r }$ : ", + "bbox": [ + 174, + 334, + 825, + 395 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/6386e7b2c8883f002491f6eb2e05eea145f8e9f3d5d1be3cf2572c0f6a63bb3a.jpg", + "text": "$$\n\\left\\{ \\begin{array} { r l } & { R _ { 0 } = c _ { 0 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 0 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 0 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { R _ { 1 } = c _ { 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { \\qquad \\dots } \\\\ & { R _ { M - 1 } = c _ { M - 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { M - 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { M - 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 263, + 398, + 717, + 479 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where $\\hat { R } _ { i }$ denotes the value of the surrogate reward when the observed reward is $R _ { i }$ . Define $\\mathbf { R } : =$ $[ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]$ , and $\\hat { \\mathbf { R } } : = [ \\hat { R } _ { 0 } , \\hat { R } _ { 1 } , . . . , \\hat { R } _ { M - 1 } ]$ , then the above equations are equivalent to: $\\mathbf { R } = \\mathbf { C } \\cdot { \\hat { \\mathbf { R } } }$ . If the confusion matrix $\\mathbf { C }$ is invertible, we obtain the surrogate reward: ", + "bbox": [ + 176, + 483, + 820, + 531 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/48ec697a3d70b6ade5e52510058ba94a569a7d8e001b7f3085acd252db19a216.jpg", + "text": "$$\n\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 447, + 535, + 549, + 553 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "According to above definition, for any true reward level $R _ { i } , { i = 0 } , 1 , \\cdots , M - 1$ , we have ", + "bbox": [ + 171, + 559, + 764, + 575 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/21b89b547c1d9a0fb58d00c233213f5cecb41fa1d250375c1da0628d73a9d528.jpg", + "text": "$$\n\\mathbb { E } _ { \\tilde { r } | r = R _ { i } } [ \\hat { r } ] = c _ { i , 0 } \\cdot \\hat { R } _ { 0 } + c _ { i , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { i , M - 1 } \\cdot \\hat { R } _ { M - 1 } = R _ { i } .\n$$", + "text_format": "latex", + "bbox": [ + 284, + 579, + 712, + 598 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Furthermore, the probabilities for observing surrogate rewards can be written as follows: ", + "bbox": [ + 173, + 638, + 754, + 655 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/bc92c3712e29bce102666ed054cb956b503b157b90da565811a8d269016c4b47.jpg", + "text": "$$\n\\hat { \\bf P } = [ \\hat { p } _ { 1 } , \\hat { p } _ { 2 } , \\cdots , \\hat { p } _ { M } ] = \\left[ \\sum _ { j } p _ { j } c _ { j , 1 } , \\sum _ { j } p _ { j } c _ { j , 2 } , \\cdots , \\sum _ { j } p _ { j } c _ { j , M } \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 274, + 659, + 722, + 708 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "where $\\begin{array} { r } { \\hat { p } _ { i } = \\sum _ { j } p _ { j } c _ { j , i } } \\end{array}$ , and $\\hat { p } _ { i }$ , $p _ { i }$ represent the probabilities of occurrence for surrogate reward $\\hat { R } _ { i }$ and true reward $R _ { i }$ respectively. ", + "bbox": [ + 171, + 715, + 823, + 746 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Corollary 1. Let $\\hat { p } _ { i }$ and $p _ { i }$ denote the probabilities of occurrence for surrogate reward $\\hat { r } ( \\tilde { r } = R _ { i } )$ and true reward $R _ { i }$ . Then the surrogate reward satisfies, ", + "bbox": [ + 173, + 748, + 823, + 777 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/35533407f878646a1710b370b93cf76346c9672c7163ea857607a6d29a244643.jpg", + "text": "$$\n\\sum _ { s ^ { \\prime } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { j } p _ { j } R _ { j } = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } .\n$$", + "text_format": "latex", + "bbox": [ + 312, + 781, + 684, + 816 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Proof of Corollary $^ { l }$ . From Lemma 2, we have, ", + "bbox": [ + 173, + 829, + 490, + 844 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/0e78dab249ef536eb3f5534efcb435edb0e10de0b13642824607b60df9b2fde7.jpg", + "text": "$$\n\\begin{array} { r l r } & { } & { \\displaystyle \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { s _ { t + 1 } \\in S ; R _ { j } \\in { \\mathcal R } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , R _ { j } ) R _ { j } } \\\\ & { } & { \\displaystyle = \\sum _ { R _ { j } \\in { \\mathcal R } } \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) R _ { j } = \\sum _ { R _ { j } \\in { \\mathcal R } } p _ { j } R _ { j } = \\sum _ { j } p _ { j } R _ { j } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 279, + 848, + 717, + 922 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Consequently, ", + "bbox": [ + 173, + 103, + 269, + 118 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/96996e1e259b17d9a6711482fe2b0769239deca31ef3530af5957693657877d5.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } = \\sum _ { j } \\sum _ { k } p _ { k } c _ { k , j } \\hat { R } _ { j } = \\sum _ { k } p _ { k } \\sum _ { j } c _ { k , j } \\hat { R } _ { j } } } \\\\ { { \\displaystyle \\qquad = \\sum _ { k } p _ { k } R _ { k } = \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) . } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 308, + 122, + 687, + 194 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "To establish Theorem 1, we need an auxiliary result (Lemma 3) from stochastic process approximation, which is widely adopted for the convergence proof for $Q$ -Learning (Jaakkola et al., 1993; Tsitsiklis, 1994). ", + "bbox": [ + 176, + 227, + 825, + 270 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lemma 3. The random process $\\{ \\Delta _ { t } \\}$ taking values in $\\mathbb { R } ^ { n }$ and defined as ", + "bbox": [ + 174, + 271, + 658, + 287 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/c78ab8daf795e6a98765c4bb71877bcc768d2bb501fb82a0b59594b0c812d83f.jpg", + "text": "$$\n\\Delta _ { t + 1 } ( x ) = ( 1 - \\alpha _ { t } ( x ) ) \\Delta _ { t } ( x ) + \\alpha _ { t } ( x ) F _ { t } ( x )\n$$", + "text_format": "latex", + "bbox": [ + 348, + 291, + 648, + 309 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "converges to zero w.p.1 under the following assumptions: ", + "bbox": [ + 173, + 313, + 549, + 328 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "• $\\begin{array} { r } { 0 \\leq \\alpha _ { t } \\leq 1 , \\sum _ { t } \\alpha _ { t } ( x ) = \\infty a n d \\sum _ { t } \\alpha _ { t } ( x ) ^ { 2 } < \\infty ; } \\end{array}$ • $| | \\mathbb { E } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] | | _ { W } \\leq \\gamma | | \\Delta _ { t } | | , w i t h \\gamma < 1 ;$ • var $[ F _ { t } ( x ) | \\mathcal { F } _ { t } ] \\leq C ( 1 + | | \\Delta _ { t } | | _ { W } ^ { 2 } ) ,$ , for $C > 0$ . ", + "bbox": [ + 173, + 337, + 527, + 402 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Here $\\mathcal { F } _ { t } = \\{ \\Delta _ { t } , \\Delta _ { t - 1 } , \\cdot \\cdot \\cdot , F _ { t - 1 } \\cdot \\cdot \\cdot , \\alpha _ { t } , \\cdot \\cdot \\cdot \\}$ stands for the past at step $t$ , $\\alpha _ { t } ( x )$ is allowed to depend on the past insofar as the above conditions remain valid. The notation $| | \\cdot | | _ { W }$ refers to some weighted maximum norm. ", + "bbox": [ + 173, + 410, + 820, + 454 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of Lemma 3. See previous literature (Jaakkola et al., 1993; Tsitsiklis, 1994). ", + "bbox": [ + 174, + 468, + 714, + 484 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of Theorem $^ { l }$ . For simplicity, we abbreviate $s _ { t } , s _ { t + 1 } , Q _ { t } , Q _ { t + 1 } , r _ { t } , \\hat { r } _ { t }$ and $\\alpha _ { t }$ as $s , s ^ { \\prime } , Q , Q ^ { \\prime }$ , $r , \\hat { r }$ , and $\\alpha$ , respectively. ", + "bbox": [ + 173, + 497, + 828, + 527 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Subtracting from both sides the quantity $Q ^ { * } ( s , a )$ in Eqn. (3): ", + "bbox": [ + 173, + 532, + 578, + 549 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b3f62db63c1c2e24956367a209e6e2befad4e6abb3bd1e91d15d9cc5a6d8ad7d.jpg", + "text": "$$\nQ ^ { \\prime } ( s , a ) - Q ^ { * } ( s , a ) = ( 1 - \\alpha ) \\left( Q ( s , a ) - Q ^ { * } ( s , a ) \\right) + \\alpha \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in A } Q ( { s ^ { \\prime } } , b ) - Q ^ { * } ( s , a ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 194, + 553, + 802, + 588 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Let $\\Delta _ { t } ( s , a ) = Q ( s , a ) - Q ^ { * } ( s , a )$ and $\\begin{array} { r } { F _ { t } ( s , a ) = \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - Q ^ { * } ( s , a ) . } \\end{array}$ ", + "bbox": [ + 173, + 590, + 745, + 608 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/f7c19234b09d6e666ff2df066b2846c51d4d256a6d1ace4b80beb8a2f9df8ec0.jpg", + "text": "$$\n\\Delta _ { t + 1 } ( s ^ { \\prime } , a ) = ( 1 - \\alpha ) \\Delta _ { t } ( s , a ) + \\alpha F _ { t } ( s , a ) .\n$$", + "text_format": "latex", + "bbox": [ + 349, + 611, + 642, + 628 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In consequence, ", + "bbox": [ + 173, + 632, + 282, + 647 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/4c1fd2fcf222936f8ee176d731223ad739e23094b993f066702d6ca0d9103590.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathbb { E } \\{ | F _ { 1 } ( x ) | , T _ { \\ell } \\} } & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s , \\ell ^ { \\prime } , \\hat { \\nu } ) [ \\ell + \\gamma \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ( \\nu , \\ell ^ { \\prime } , s ) ] - Q ^ { * } ( s , \\alpha ) } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , \\hat { \\nu } ) + \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\gamma } { s } \\log A ( s , \\ell ^ { \\prime } , s ) - \\gamma - \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ^ { 2 } ( \\nu , \\ell ^ { \\prime } , s ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , s ^ { \\prime } ) \\hat { \\nu } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) + \\sum _ { \\nu \\leq \\nu } Q ^ { * } ( s , \\ell ^ { \\prime } ) [ \\frac \\operatorname* \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 651, + 839, + 931 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Finally, ", + "bbox": [ + 173, + 103, + 225, + 118 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/8d5559220416f57164827976728d51b251d6a30dac0e7d43bdb50c2580b30a78.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] = \\mathbb { E } \\left[ \\left( \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - \\sum _ { s ^ { \\prime } \\in S : \\mathcal { \\hat { r } } \\in \\mathbb { R } } \\mathbb { P } ^ { \\prime } ( s , s ^ { \\prime } , \\hat { r } ) \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) \\right] \\right) ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\mathbf { V a r } \\left[ \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) | \\mathcal { F } _ { t } \\right] } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 187, + 127, + 807, + 220 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Because $\\hat { r }$ is bounded, it can be clearly verified that ", + "bbox": [ + 173, + 246, + 513, + 261 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/d254e53e028aa37bc4c47c80d08cabd5167eaeed1d7f42d8d452acc54fde1325.jpg", + "text": "$$\n\\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] \\leq C ( 1 + \\vert \\vert \\Delta _ { t } \\vert \\vert _ { W } ^ { 2 } )\n$$", + "text_format": "latex", + "bbox": [ + 382, + 267, + 616, + 287 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "for some constant $C$ . Then, due to the Lemma 3, $\\Delta _ { t }$ converges to zero w.p.1, i.e., $Q ^ { \\prime } ( s , a )$ converges to $Q ^ { * } ( s , a )$ . ", + "bbox": [ + 174, + 295, + 823, + 324 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The procedure of Phased $Q$ -Learning is described as Algorithm 2: ", + "bbox": [ + 173, + 344, + 611, + 361 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Algorithm 2 Phased $Q$ -Learning ", + "text_level": 1, + "bbox": [ + 174, + 366, + 392, + 381 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Input: $G ( \\mathcal { M } )$ : generative model of $\\mathcal { M } = ( \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\gamma ) , T$ : number of iterations. ", + "bbox": [ + 176, + 386, + 723, + 402 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Output: $\\hat { V } ( s )$ : value function, $\\boldsymbol { \\hat { \\pi } } ( s , t )$ : policy function. 1: Set $\\hat { V } _ { T } ( s ) = 0$ \n2: for $t = T - 1 , \\cdots , 0$ do ", + "bbox": [ + 176, + 404, + 544, + 446 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "1. Calling $G ( \\mathcal { M } ) \\ : m$ times for each state-action pair. ", + "bbox": [ + 214, + 449, + 560, + 464 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/e25929f104e5e518b359962f769f1838e3660e8de6ef7e946cb7e654f13ceb09.jpg", + "text": "$$\n\\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) = { \\frac { \\# [ ( s _ { t } , a _ { t } ) \\to s _ { t + 1 } ] } { m } }\n$$", + "text_format": "latex", + "bbox": [ + 410, + 470, + 647, + 502 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "2. Set ", + "bbox": [ + 214, + 510, + 259, + 523 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/b173fbbc4ed28b2174618bcfb9233961750e14b9502ed5250d9503e5160ec1cb.jpg", + "text": "$$\n\\begin{array} { r l } & { \\hat { V } ( s ) = \\displaystyle \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { \\tiny { s + 1 \\in \\mathcal { S } } \\atop { a \\in \\mathcal { A } } } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) \\left[ r _ { t } + \\gamma \\hat { V } ( s _ { t + 1 } ) \\right] } \\\\ & { } \\\\ & { \\hat { \\pi } ( s , t ) = \\displaystyle \\operatorname* { a r g m a x } _ { a \\in \\mathcal { A } } \\hat { V } ( s ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 357, + 527, + 700, + 595 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "3: return $\\hat { V } ( s )$ and $\\boldsymbol { \\hat { \\pi } } ( s , t )$ ", + "bbox": [ + 181, + 604, + 361, + 621 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Note that $\\hat { \\mathbb { P } }$ here is the estimated transition probability, which is different from $\\mathbb { P }$ in Eqn. (6). ", + "bbox": [ + 171, + 640, + 779, + 656 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To obtain the sample complexity results, the range of our surrogate reward needs to be known. Assuming reward $r$ is bounded in $[ 0 , R _ { \\mathrm { m a x } } ]$ , Lemma 4 below states that the surrogate reward is also bounded, when the confusion matrices are invertible: ", + "bbox": [ + 174, + 662, + 823, + 705 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Lemma 4. Let $r \\in [ 0 , R _ { \\mathrm { m a x } } ]$ be bounded, where $R _ { \\mathrm { m a x } }$ is a constant; suppose $\\mathbf { C } _ { M \\times M }$ , the confusion matrix, is invertible with its determinant denoting as det(C). Then the surrogate reward satisfies ", + "bbox": [ + 171, + 710, + 825, + 739 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/72e520e43e5632c264840c61519eea2e16d275eb2ba452b66a5b580e808b3b38.jpg", + "text": "$$\n0 \\leq | \\hat { r } | \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } R _ { \\mathrm { { m a x } } } .\n$$", + "text_format": "latex", + "bbox": [ + 415, + 747, + 583, + 781 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof of Lemma 4. From Eqn. (2), we have, ", + "bbox": [ + 174, + 800, + 465, + 815 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/344d8e37427dbe074728f3442c692ee38f70e0105c28fd33267074e3f5bb3bf9.jpg", + "text": "$$\n{ \\hat { \\mathbf { R } } } = \\mathbf { C } ^ { - 1 } \\cdot \\mathbf { R } = { \\frac { \\mathrm { a d j } ( \\mathbf { C } ) } { \\mathrm { d e t } ( \\mathbf { C } ) } } \\cdot \\mathbf { R } ,\n$$", + "text_format": "latex", + "bbox": [ + 398, + 824, + 598, + 858 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $\\operatorname { a d j } ( \\mathbf { C } )$ is the adjugate matrix of $\\mathbf { C }$ ; $\\operatorname* { d e t } ( \\mathbf { C } )$ is the determinant of $\\mathbf { C }$ . It is known from linear algebra that, ", + "bbox": [ + 173, + 866, + 825, + 896 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/2ede6ff0d7f2560792151886a3a86014711f1aae734e2769316b698fdd99d7e6.jpg", + "text": "$$\n\\operatorname { a d j } ( \\mathbf { C } ) _ { i j } = ( - 1 ) ^ { i + j } \\cdot \\mathbf { M } _ { j i } ,\n$$", + "text_format": "latex", + "bbox": [ + 405, + 902, + 589, + 921 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $\\mathbf { M } _ { j i }$ is the determinant of the $\\left( M - 1 \\right) \\times \\left( M - 1 \\right)$ matrix that results from deleting row $j$ and column $i$ of $\\mathbf { C }$ . Therefore, $\\mathbf { M } _ { j i }$ is also bounded: ", + "bbox": [ + 171, + 102, + 825, + 133 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e706e175678bb50f4b515b20b8502f7a42d02319ef8d5fec1ec5ee59ac826b3c.jpg", + "text": "$$\n\\mathbf { M } _ { j i } \\leq \\sum _ { \\sigma \\in S _ { n } } \\left( | \\operatorname { s g n } ( \\sigma ) | \\prod _ { m = 1 } c _ { m , \\sigma _ { n } } ^ { \\prime } \\right) \\leq \\prod _ { m = 0 } ^ { M - 1 } \\left( \\sum _ { n = 0 } ^ { M - 1 } c _ { m , n } \\right) = 1 ^ { M } = 1 ,\n$$", + "text_format": "latex", + "bbox": [ + 264, + 138, + 732, + 184 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where the sum is computed over all permutations $\\sigma$ of the set $\\{ 0 , 1 , \\cdots , M - 2 \\}$ ; $c ^ { \\prime }$ is the element of $\\mathbf { M } _ { j i }$ ; $\\operatorname { s g n } ( \\sigma )$ returns a value that is $+ 1$ whenever the reordering given by $\\sigma$ can be achieved by successively interchanging two entries an even number of times, and $- 1$ whenever it can not. ", + "bbox": [ + 174, + 189, + 826, + 233 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Consequently, ", + "bbox": [ + 173, + 239, + 269, + 255 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/b23f561b6ecbdfe79174e4a809e53cb66f1b38f4af213f3fa94351f8e954dcc9.jpg", + "text": "$$\n\\Big | \\hat { R } _ { i } \\Big | = \\frac { \\sum _ { j } | \\mathrm { a d j } ( \\mathbf { C } ) _ { i j } | \\cdot | R _ { j } | } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\operatorname* { m a x } } .\n$$", + "text_format": "latex", + "bbox": [ + 336, + 258, + 660, + 296 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Proof of Theorem 2. From Hoeffding’s inequality, we obtain: ", + "bbox": [ + 173, + 338, + 576, + 354 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/90ca855571861eda9de28504a1dca5112e4abcb8c67afd1ff2ef0054b09e4fcb.jpg", + "text": "$$\n\\begin{array} { r l r } & { } & { P \\left( \\left| \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right| \\geq \\epsilon \\right) } \\\\ & { } & { \\leq 2 \\exp \\left( \\displaystyle \\frac { - 2 m \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 243, + 359, + 753, + 446 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "because $V _ { t } ( s _ { t } )$ is bounded within $\\frac { R _ { \\mathrm { m a x } } } { 1 - \\gamma }$ . In the same way, $\\hat { r } _ { t }$ is bounded by $\\begin{array} { r } { \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\mathrm { m a x } } } \\end{array}$ from Lemma 4. We then have, ", + "bbox": [ + 171, + 450, + 825, + 484 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/8ff3e6e6631ca3b561fc04acf4af06fd3bbfa47f4819ec5fb559600770a4d46b.jpg", + "text": "$$\nP \\left( \\left| \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } - \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\hat { \\mathbb { P } } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } \\right| \\geq \\epsilon \\right) \\leq 2 \\exp \\left( \\frac { - 2 m \\epsilon ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } { M ^ { 2 } R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 186, + 488, + 810, + 556 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Further, due to the unbiasedness of surrogate rewards, we have ", + "bbox": [ + 173, + 569, + 586, + 584 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/8df764766310a8d1dbdef5e233340afc5d1ab26820bfc36c974d9d77ceb37562.jpg", + "text": "$$\n\\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r _ { t } = \\sum _ { s _ { t + 1 } \\in S ; \\hat { r } _ { t } \\in \\hat { \\mathcal { R } } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } .\n$$", + "text_format": "latex", + "bbox": [ + 315, + 589, + 681, + 627 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "As a result, ", + "bbox": [ + 173, + 641, + 250, + 656 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/f9183208d19f8f5902708a5bb35163948ddef63954c3ecbcf2ddf905e9a4ca25.jpg", + "text": "$$\n\\begin{array} { r l } { V _ { t } ^ { * } ( s ) - \\hat { V } _ { t } ( s ) \\Big | = \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\tau _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { - \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\hat { \\gamma } _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { \\leq \\alpha _ { 1 } + \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\Bigg | } & { } \\\\ { + \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) { r _ { t } - \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } \\Bigg | } & { } \\\\ { \\leq \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } } & { \\mathrm { ~ s _ { t + 1 } ~ } + \\gamma \\epsilon _ { 2 } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 181, + 661, + 826, + 868 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In the same way, ", + "bbox": [ + 173, + 872, + 285, + 887 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e357f3c3c224d90b942b6feabc1d9041d69a6d6111f1bcd05129c8b314c7a94e.jpg", + "text": "$$\n\\left| V _ { t } ( s ) - \\hat { V } _ { t } ( s ) \\right| \\le \\gamma \\operatorname* { m a x } _ { s \\in \\cal S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 305, + 895, + 691, + 920 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Recursing the two equations in two directions $[ 0 \\right. T _ { \\left. }$ ), we get ", + "bbox": [ + 173, + 103, + 588, + 118 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/ca1e4ff6c3bf868245e312301e3c8b7ed08226bc4c443300f76462cfc6cc5f59.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ^ { * } ( s ) - \\hat { V } ( s ) \\right| \\leq ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\gamma ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\dots + \\gamma ^ { T - 1 } ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } \\\\ { = \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\\\ { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ( s ) - \\hat { V } ( s ) \\right| \\leq \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 248, + 121, + 748, + 222 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Combining these two inequalities above we have: ", + "bbox": [ + 174, + 229, + 500, + 244 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/f404ab279712b778e1549d090484c153ae0a4f40e60694d07c5bc0bce233b05a.jpg", + "text": "$$\n\\operatorname* { m a x } _ { s \\in S } | V ^ { * } ( s ) - V ( s ) | \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } { 1 - \\gamma } .\n$$", + "text_format": "latex", + "bbox": [ + 290, + 247, + 705, + 281 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Let $\\epsilon _ { 1 } = \\epsilon _ { 2 }$ , $\\begin{array} { r } { \\operatorname * { s o } \\operatorname* { m a x } _ { s \\in \\mathcal { S } } | V ^ { * } ( s ) - V ( s ) | \\le \\epsilon } \\end{array}$ as long as ", + "bbox": [ + 173, + 290, + 537, + 308 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/e4223c391cf6835444f665a0fdb81ca1cc4828ecd77088463fdb840e79cbd865.jpg", + "text": "$$\n\\epsilon _ { 1 } = \\epsilon _ { 2 } \\leq \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } .\n$$", + "text_format": "latex", + "bbox": [ + 428, + 309, + 570, + 343 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "For arbitrarily small $\\epsilon$ , by choosing $m$ appropriately, there always exists $\\begin{array} { r } { \\epsilon _ { 1 } = \\epsilon _ { 2 } = \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } } \\end{array}$ such that the policy error is bounded within $\\epsilon$ . That is to say, the Phased $Q$ -Learning algorithm can converge to the near optimal policy within finite steps using our proposed surrogate rewards. ", + "bbox": [ + 173, + 354, + 825, + 402 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Finally, there are $| { \\cal S } | | { \\cal A } | T$ transitions under which these conditions must hold, where $| \\cdot |$ represent the number of elements in a specific set. Using a union bound, the probability of failure in any condition is smaller than ", + "bbox": [ + 173, + 409, + 825, + 450 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/b8e4546cc0e6748aa920f8419bfb4f400f5faf3a370eba5edab71a9121350381.jpg", + "text": "$$\n2 | S | | A | T \\cdot \\exp \\left( - m \\frac { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { 2 ( 1 + \\gamma ) ^ { 2 } } \\cdot \\operatorname * { m i n } \\{ ( 1 - \\gamma ) ^ { 2 } , \\frac { \\operatorname * { d e t } ( \\mathbf { C } ) ^ { 2 } } { M ^ { 2 } } \\} \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 289, + 450, + 709, + 486 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We set the error rate less than $\\delta$ , and $m$ should satisfy that ", + "bbox": [ + 176, + 494, + 555, + 510 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/584572a97da68510af76bd03717f640b8fdba7bb22095a013ac04b9511801943.jpg", + "text": "$$\nm = { \\cal O } \\left( \\frac { 1 } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } \\log \\frac { | { \\cal S } | | { \\cal A } | T } { \\delta } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 348, + 512, + 648, + 546 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In consequence, after $m | { \\cal S } | | { \\cal A } | T$ calls, which is, $\\begin{array} { r } { O \\left( \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}$ , the value function converges to the optimal one for every state $s$ , with probability greater than $1 - \\delta$ . □ ", + "bbox": [ + 176, + 551, + 823, + 588 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "The above bound is for discounted MDP setting with $0 \\leq \\gamma < 1$ . For undiscounted setting $\\gamma = 1$ , since the total error (for entire trajectory of $T$ time-steps) has to be bounded by $\\epsilon$ , therefore, the error for each time step has to be bounded by $\\frac { \\epsilon } { T }$ . Repeating our anayslis, we obtain the following upper bound: ", + "bbox": [ + 173, + 602, + 826, + 657 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/56eb0f1cec4732f10de1fbefebfb108ee690363bd22f026e4f7bac44fceb6671.jpg", + "text": "$$\nO \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 393, + 654, + 602, + 689 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof of Theorem 3. ", + "bbox": [ + 173, + 702, + 305, + 717 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/dbd62ff24cd111a322ee0f39aec0cb617f473a45552192763490d7f890b4d9fb.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathbf { V a r } ( \\vec { r } ) - \\mathbf { V a r } ( r ) = \\mathbf { E } \\left[ ( \\hat { r } - \\mathbf { E } [ \\hat { r } ] ) ^ { 2 } \\right] - \\mathbf { E } \\left[ ( r - \\mathbf { E } [ r ] ) ^ { 2 } \\right] } & { } \\\\ { = \\mathbb { E } [ \\vec { r } ^ { 2 } ] - \\mathbb { E } [ \\vec { r } ] ^ { 2 } + \\mathbb { E } [ r ^ { 2 } ] - \\mathbb { E } [ r ] ^ { 2 } } & { } \\\\ { = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } \\right) ^ { 2 } - \\left[ \\underset { j } { \\sum } p _ { j } R _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } p _ { j } R _ { j } \\right) ^ { 2 } \\right] } & { } \\\\ { = \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\sum _ { j } p _ { j } R _ { j } ^ { 2 } = \\underset { j } { \\sum } \\sum _ { j } p _ { i } c _ { i , j } \\hat { R } _ { j } ^ { 2 } - \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } } & { } \\\\ { = \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } ^ { 2 } - \\left( \\underset { j } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } \\right) . } & { } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 199, + 718, + 802, + 924 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Using the CauchySchwarz inequality, ", + "bbox": [ + 174, + 103, + 421, + 118 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/d94be785edb771fae165e78110c3e25e6ff97496e37f3a30cc4231a0d747036f.jpg", + "text": "$$\n\\sum _ { i } c _ { j , i } \\hat { \\boldsymbol { R _ { i } } } ^ { 2 } = \\sum _ { i } \\sqrt { c _ { j , i } } ^ { 2 } \\cdot \\sum _ { i } \\left( \\sqrt { c _ { j , i } } \\hat { R } _ { i } \\right) ^ { 2 } \\ge \\left( \\sum _ { i } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 290, + 122, + 704, + 165 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "So we get, ", + "bbox": [ + 173, + 166, + 245, + 181 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/e28b9c1e6b9c1fe63f710a4dcbb1b97248f41ddbc351ff4556f577270753ed58.jpg", + "text": "$$\n\\mathbf { V a r } ( { \\hat { r } } ) - \\mathbf { V a r } ( r ) \\geq 0 .\n$$", + "text_format": "latex", + "bbox": [ + 419, + 183, + 576, + 200 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In addition, ", + "bbox": [ + 173, + 202, + 251, + 217 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/dbcd94cbd6d980c41eb02602c98c810a520e09018998f47a15c126ee3d0db243.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\mathbf { V a r } ( \\hat { r } ) = \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } - ( \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ) ^ { 2 } \\leq \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } } } \\\\ & { } & { \\leq \\sum _ { j } \\hat { p } _ { j } \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } = \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 316, + 219, + 678, + 313 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B EXPERIMENTAL SETUP ", + "text_level": 1, + "bbox": [ + 176, + 354, + 401, + 371 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We set up our experiments within the popular OpenAI baselines (Dhariwal et al., 2017) and kerasrl (Plappert, 2016) framework. Specifically, we integrate the algorithms and interact with OpenAI Gym (Brockman et al., 2016) environments (Table 3). ", + "bbox": [ + 174, + 386, + 825, + 428 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.1 RL ALGORITHMS ", + "text_level": 1, + "bbox": [ + 174, + 444, + 339, + 458 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "A set of state-of-the-art reinforcement learning algorithms are experimented with while training under different amounts of noise, including $Q$ -Learning (Watkins, 1989; Watkins & Dayan, 1992), Cross-Entropy Method (CEM) (Szita & Lorincz, 2006), Deep ¨ SARSA (Sutton & Barto, 1998), Deep $Q$ -Network (DQN) (Mnih et al., 2013; 2015; van Hasselt et al., 2016), Dueling DQN (DDQN) (Wang et al., 2016), Deep Deterministic Policy Gradient (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu et al., 2016) and Proximal Policy Optimization (PPO) (Schulman et al., 2017) algorithms. For each game and algorithm, three policies are trained based on different random initialization to decrease the variance in experiments. ", + "bbox": [ + 174, + 469, + 601, + 637 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/6a03bbc190d32de2c1e7977462eccbba2abb0409cad69396df67cc0795dff3fa.jpg", + "table_caption": [ + "Table 3: RL algorithms utilized in the robustness evaluation. " + ], + "table_footnote": [], + "table_body": "
EnvironmentRL Algorithm
CartPoleQ-Learning (1989) CEM (2006) SARSA (1998) DQN (2013; 2015)
PendulumDDQN (2016) DDPG (2015)
Atari GamesNAF (2016) PPO (2017)
", + "bbox": [ + 616, + 507, + 821, + 632 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "B.2 POST-PROCESSING REWARDS ", + "text_level": 1, + "bbox": [ + 176, + 652, + 421, + 667 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We explore both symmetric and asymmetric noise of different noise levels. For symmetric noise, the confusion matrices are symmetric, which means the probabilities of corruption for each reward choice are equivalent. For instance, a confusion matrix ", + "bbox": [ + 174, + 679, + 823, + 720 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/9734c179eaaf47b185d101991b5e0625296060e841a0cf6b04bc636bad9787d4.jpg", + "text": "$$\n\\mathbf { C } = \\left[ \\begin{array} { l l } { 0 . 8 } & { 0 . 2 } \\\\ { 0 . 2 } & { 0 . 8 } \\end{array} \\right]\n$$", + "text_format": "latex", + "bbox": [ + 441, + 723, + 555, + 758 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "says that $r _ { 1 }$ could be corrupted into $r _ { 2 }$ with a probability of 0.2 and so does $r _ { 2 }$ $( \\mathrm { w e i g h t } = 0 . 2 )$ . ", + "bbox": [ + 171, + 758, + 787, + 775 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "As for asymmetric noise, two types of random noise are tested: 1) rand-one, each reward level can only be perturbed into another reward; 2) rand-all, each reward could be perturbed to any other reward. To measure the amount of noise w.r.t confusion matrices, we define the weight of noise as follows: ", + "bbox": [ + 173, + 780, + 825, + 835 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/6c422ca4bb6b53063fb6c345cfb3396e571c15b9f1221833502d2111271749fe.jpg", + "text": "$$\n\\mathbf { C } = ( 1 - \\omega ) \\cdot \\mathbf { I } + \\omega \\cdot \\mathbf { N } , \\omega \\in [ 0 , 1 ] ,\n$$", + "text_format": "latex", + "bbox": [ + 375, + 835, + 619, + 852 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where $\\omega$ controls the weight of noise; $\\mathbf { I }$ and $\\mathbf { N }$ denote the identity and noise matrix respectively. Suppose there are $M$ outcomes for true rewards, $\\mathbf { N }$ writes as: ", + "bbox": [ + 169, + 852, + 820, + 880 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/73e1b162231308ace067c9bb45d53a639a734df6dd70e6b6fb273f9ce3f63cd8.jpg", + "text": "$$\n\\mathbf { N } = \\left[ \\begin{array} { c c c c } { n _ { 0 , 0 } } & { n _ { 0 , 1 } } & { \\cdots } & { n _ { 0 , M - 1 } } \\\\ { \\cdots } & { \\ddots } & { \\ddots } & { \\ddots } \\\\ { n _ { M - 1 , 0 } } & { n _ { M - 1 , 1 } } & { \\ddots } & { n _ { M - 1 , M - 1 } } \\end{array} \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 341, + 883, + 653, + 928 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where for each row $i , 1$ ) rand-one: randomly choose $j$ , s.t $n _ { i , j } = 1$ and $n _ { i , k } \\neq 0$ if $k \\neq j ; 2 ,$ ) randall: generate $M$ random numbers that sum to 1, i.e., $\\textstyle \\sum _ { j } n _ { i , j } = 1$ . For the simplicity, for symmetric noise, we choose $\\mathbf { N }$ as an anti-identity matrix. As a result, $c _ { i , j } = 0$ , if $i \\neq j$ or $i + j \\neq M$ . ", + "bbox": [ + 174, + 103, + 825, + 148 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "B.3 PERTURBED-REWARD MDP EXAMPLE ", + "text_level": 1, + "bbox": [ + 176, + 165, + 485, + 180 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "To obtain an intuitive view of the reward perturbation model, where the observed rewards are generated based on a reward confusion matrix, we constructed a simple MDP and evaluated the performance of robust reward $Q$ -Learning (Algorithm 1) on different noise ratios (both symmetric and asymmetric). The finite MDP is formulated as Figure 4a: when the agent reaches state 5, it gets an instant reward of $r _ { + } = 1$ , otherwise a zero reward $r _ { - } = 0$ . During the explorations, the rewards are perturbed according to the confusion matrix $\\mathbf { C } _ { 2 \\times 2 } = [ 1 - e _ { - } , e _ { - } ; e _ { + } , 1 - e _ { + } ]$ . ", + "bbox": [ + 173, + 191, + 826, + 276 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/492e3ac77697ffbf044dc807fae9f7c5e0798dffd186faef0167aef911367691.jpg", + "image_caption": [ + "Figure 4: Perturbed-Reward MDP Example " + ], + "image_footnote": [], + "bbox": [ + 230, + 289, + 761, + 455 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "There are two experiments conducted in this setting: 1) performance of $Q$ -Learning under different noise rates (Table 4); 2) robustness of estimation module in time-variant noise (Figure 4b). As shown in Table 4, $Q$ -Learning achieved better results consistently with the guidance of surrogate rewards and the confusion matrix estimation algorithm. For time-variant noise, we generated varying amount of noise at different training stages: 1) $e _ { - } = 0 . 1 , e _ { + } = 0 . 3$ (0 to $1 e ^ { 4 }$ steps); 2) $e _ { - } = 0 . 2 , e _ { + } = 0 . 1$ ( $1 e ^ { 4 }$ to $3 e ^ { 4 }$ steps); 3) $e _ { - } = 0 . 3 , e _ { + } = 0 . 2$ ( $3 e ^ { 4 }$ to $5 e ^ { 4 }$ steps); 4) $e _ { - } = 0 . 1 , e _ { + } = 0 . 2$ $5 e ^ { 4 }$ to $7 e ^ { 4 }$ steps). In Figure 4b, we show that Algorithm 1 is robust against time-variant noise, which dynamically adjusts the estimated $\\tilde { \\mathbf { C } }$ after the noise distribution changes. Note that we set a maximum memory size for collected noisy rewards to let the agents only learn with recent observations. ", + "bbox": [ + 173, + 498, + 825, + 626 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/1234742a85a47bab32bb56e132a80d1642507b73c251651041c115b98cbd5d1c.jpg", + "table_caption": [ + "Table 4: Average performance of $Q$ -Learning on Perturbed MDP example (Figure 4a) with noisy rewards $( \\tilde { r } )$ , surrogate rewards under known $( \\hat { r } )$ or estimated $( \\dot { r } )$ noise rates. Note that the success means the agents can find the optimal policy at every initial state according to learned $Q$ -function. We repeated the experiments 1,000 times to calculate the successful rate for each noisy setting. " + ], + "table_footnote": [], + "table_body": "
Noise RateRewardLift (↑)SuccessNoise RateRewardLift (↑)Success
e_=e+=0.1r-93.4%e_ = 0.1,e+ = 0.3r 部189.5%
广2.7%个96.1%3.4% 个92.9%
r3.2% 个96.6%?2.9% 个92.4%
e_=e+ =0.3r185.5%e_ = 0.3,e+ = 0.1r ?190.3%
r1.4% 个86.9%0.9%个91.2%
?0.9% 个86.4%r1.2%个91.5%
", + "bbox": [ + 192, + 704, + 807, + 813 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "B.4 TRAINING DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 829, + 354, + 843 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "CartPole and Pendulum The policies use the default network from keras-rl framework. which is a five-layer fully connected network6. There are three hidden layers, each of which has 16 units and followed by a rectified nonlinearity. The last output layer is activated by the linear function. For ", + "bbox": [ + 174, + 856, + 825, + 898 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "CartPole, We trained the models using Adam optimizer with the learning rate of $1 e ^ { - 3 }$ for 10,000 steps. The exploration strategy is Boltzmann policy. For DQN and Dueling-DQN, the update rate of target model and the memory size are $1 e ^ { - 2 }$ and 50, 000. For Pendulum, We trained DDPG and NAF using Adam optimizer with the learning rate of $5 e ^ { - 4 }$ for $1 5 0 , 0 0 0$ steps. the update rate of target model and the memory size are $1 e ^ { - 3 }$ and $1 0 0 , 0 0 0$ . ", + "bbox": [ + 174, + 103, + 825, + 172 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Atari Games We adopt the pre-processing steps as well as the network architecture from Mnih et al. (2015). Specifically, the input to the network is $8 4 \\times 8 4 \\times 4$ , which is a concatenation of the last 4 frames and converted into $8 4 \\times 8 4$ gray-scale. The network comprises three convolutional layers and two fully connected layers7. The kernel size of three convolutional layer are $8 \\times 8$ with stride 4 (32 filters), $4 \\times 4$ with stride 2 (64 filters) and $3 \\times 3$ with stride 1 (64 filters), respectively. Each hidden layer is followed by a rectified nonlinearity. Except for Pong where we train the policies for $3 e ^ { 7 }$ steps, all the games are trained for $5 e ^ { 7 }$ steps with the learning rate of $3 e ^ { - 4 }$ . Note that the rewards in the Atari games are discrete and clipped into $\\{ - 1 , 0 , 1 \\}$ . Except for Pong game, in which $r = - 1$ means missing the ball hit by the adversary, the agents in other games attempt to get higher scores in the episode with binary rewards 0 and 1. ", + "bbox": [ + 173, + 194, + 825, + 333 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "C ESTIMATION OF CONFUSION MATRICES ", + "text_level": 1, + "bbox": [ + 174, + 358, + 540, + 375 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "C.1 REWARD ROBUST RL ALGORITHMS ", + "text_level": 1, + "bbox": [ + 176, + 392, + 467, + 407 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "As stated in Section 3.3, the confusion matrix can be estimated dynamically based on the aggregated answers, similar to previous literature in supervised learning (Khetan et al., 2017). To get a concrete view, we take $Q$ -Learning for an example, and the algorithm is called Reward Robust $Q$ -Learning (Algorithm 3). Note that is can be extended to other RL algorithms by plugging confusion matrix estimation steps and the computed surrogate rewards, as shown in the experiments (Figure 6). ", + "bbox": [ + 174, + 421, + 825, + 491 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Algorithm 3 Reward Robust $Q$ -Learning ", + "text_level": 1, + "bbox": [ + 176, + 498, + 446, + 512 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "", + "text_level": 1, + "bbox": [ + 174, + 518, + 220, + 531 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "$\\tilde { \\mathcal { M } } = ( S , \\mathcal { A } , \\tilde { \\mathcal { R } } , \\mathcal { P } , \\gamma )$ : MDP with corrupted reward channel \n$T$ : transition function $T : S \\times \\mathcal { A } S$ \n$N \\in \\mathbb N$ : upper bound of collected noisy rewards \n$\\alpha \\in ( 0 , 1 )$ : learning rate in the update rule \n$\\eta \\in ( 0 , 1 )$ : weight of unbiased surrogate reward \n$\\tilde { R } ( s , a )$ : set of observed rewards when the state-action pair is $( s , a )$ ", + "bbox": [ + 200, + 531, + 638, + 617 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Output: $Q ( s )$ : value function; $\\pi ( s , t )$ : policy function Initialize $Q$ : $S \\times \\mathcal { A } \\mathbb { R }$ arbitrarily Set confusion matrix $\\tilde { \\mathbf { C } }$ as zero while $Q$ is not converged do Start in state $s \\in S$ while $s$ is not terminal do Calculate $\\pi$ according to $Q$ and exploration strategy $\\begin{array} { l } { { a \\pi ( s ) } } \\\\ { { s ^ { \\prime } T ( s , a ) } } \\end{array}$ Observe noisy reward $\\tilde { r } ( s , a )$ and add it to $\\tilde { R } ( s , a )$ if $\\begin{array} { r } { \\sum _ { ( s , a ) } | \\tilde { R } ( s , a ) | \\geq N } \\end{array}$ then Get predicted true reward ${ \\bar { r } } ( s , a )$ using majority voting in every $\\tilde { R } ( s , a )$ Estimate confusion matrix $\\tilde { \\mathbf { C } }$ based on $\\tilde { r } ( s , a )$ and ${ \\bar { r } } ( s , a )$ (Eqn. (4)) Empty all the sets of observed rewards $\\tilde { R } ( s , a )$ Obtain surrogate reward ${ \\dot { r } } ( s , a )$ using ${ \\bf R } _ { p r o x y } = ( 1 - \\eta ) \\cdot { \\bf R } + \\eta \\cdot { \\bf C } ^ { - 1 } { \\bf R }$ $Q ( s ^ { \\prime } , a ) \\gets ( 1 - \\alpha ) \\cdot Q ( s , a ) + \\alpha \\cdot ( \\hat { r } ( s , a ) + \\gamma \\cdot \\operatorname* { m a x } _ { a ^ { \\prime } } Q ( s ^ { \\prime } , a ^ { \\prime } ) )$ ) s ← s 0 return $Q ( s )$ and $\\pi ( s )$ ", + "bbox": [ + 183, + 618, + 748, + 888 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "C.2 EXPECTATION-MAXIMIZATION IN ESTIMATION ", + "text_level": 1, + "bbox": [ + 173, + 103, + 545, + 118 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In Algorithm 3, the predicted true reward ${ \\bar { r } } ( s , a )$ is derived from majority voting in collected noisy sets $\\tilde { R } ( s , a )$ for every state-action pair $( s , a ) \\in \\mathcal { S } \\times \\mathcal { A }$ , which is a simple but efficient way of leveraging the expectation of aggregated rewards without assumptions on prior distribution of noise. In the following, we adopt standard Expectation-Maximization (EM) idea in the our estimation framework (arguably a simple version of it), inspired by previous works (Zhang et al., 2014). ", + "bbox": [ + 173, + 128, + 825, + 203 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Assuming the observed noisy rewards are independent conditional on the true reward, we can compute the posterior probability of true reward from the Bayes’ theorem: ", + "bbox": [ + 173, + 208, + 820, + 238 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/41c26828c9be187c15b157f7f019fb0cf35c70332e85bde3b30f11bff9c73284.jpg", + "text": "$$\n{ \\begin{array} { r l } { ^ { \\mathfrak { p } } ( r = R _ { i } | { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } ) = } & { { \\frac { \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { i } ) \\cdot \\mathbb { P } ( r = R _ { i } ) } { \\sum _ { j } \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { j } ) \\cdot \\mathbb { P } ( r = R _ { j } ) } } } \\\\ & { = { \\frac { \\mathbb { P } ( r = R _ { i } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { i } ) } { \\sum _ { j } \\left[ \\mathbb { P } ( r = R _ { j } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { j } ) \\right] } } \\qquad ( 8 ) } \\end{array} }\n$$", + "text_format": "latex", + "bbox": [ + 181, + 244, + 828, + 323 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "where $\\mathbb { P } ( r = R _ { j } )$ is the prior of true rewards, and $\\mathbb { P } ( \\tilde { r } = R _ { k } | r = R _ { j } )$ is estimated by current estimated confusion matrix $\\tilde { \\mathbf { C } }$ $\\vdots \\Psi ( \\tilde { r } = R _ { k } | r = R _ { j } ) = \\tilde { c } _ { j , i }$ . Note that the inference should be conducted for each state-action pair $( s , a ) \\in \\mathcal S \\times \\mathcal A$ in every iteration, i.e., $\\mathbb { P } ( r ( s , a ) = R _ { i } | \\tilde { r } ( s , a , 1 ) =$ $R _ { 1 } , \\cdot \\cdot \\cdot , \\tilde { r } ( s , a , n ) = R _ { n } )$ , abbreviated as $\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } )$ ), which requires relatively greater computation costs compared to the majority voting policy. It also points out an interesting direction to check online EM algorithms for our perturbed- $. R L$ problem. ", + "bbox": [ + 173, + 327, + 825, + 415 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "After the inference steps in Eqn. (8), the confusion matrix $\\tilde { \\mathbf { C } }$ is then updated based on the posterior probabilities: ", + "bbox": [ + 174, + 421, + 823, + 452 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/a64137fc7ff684373b60659f3ef6f180a292855ed4887ed713f8e61787b3dd7b.jpg", + "text": "$$\n\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ,\n$$", + "text_format": "latex", + "bbox": [ + 287, + 458, + 709, + 500 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "where $\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i }$ ) denotes the inference probabilities of true rewards based on collected noisy rewards sets $\\tilde { R } ( s , a )$ . To utilize EM algorithms in the robust reward algorithms (e.g., Algorithm 3), we need to replace Eqn. (4) by Eqn. (9) for the estimation of reward confusion matrix. ", + "bbox": [ + 174, + 506, + 825, + 551 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "C.3 STATE-DEPENDENT PERTURBED REWARD ", + "text_level": 1, + "bbox": [ + 173, + 569, + 509, + 584 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "In previous sections, to let our presentation stay focused, we consider the state-independent perturbed reward environments, which share the same confusion matrix for all states. In other words, the noise for different states is generated within the same distribution. More generally, the generation of $\\tilde { r }$ follows a certain function $C : S \\times \\mathcal { R } \\to \\tilde { R }$ , where different states may correspond to varied noise distributions (also varied confusion matrices). However, our algorithm is still applicable except for maintaining different confusion matrices $\\mathbf { C } _ { s }$ for different states. It is worthy to notice that Theorem 1 holds because the surrogate rewards produce an unbiased estimation of true rewards for each state, i.e., $\\mathbb { E } _ { { \\tilde { r } } | r , s _ { t } } [ { \\hat { r } } ( s _ { t } , a _ { t } , s _ { t + 1 } { \\bar { ) } } ] = r ( s _ { t } , a _ { t } , s _ { t + 1 } )$ . Furthermore, Theorem 2 and 3 can be revised as: ", + "bbox": [ + 173, + 594, + 825, + 723 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Theorem 4. (Upper bound) Let $r \\in [ 0 , R _ { \\mathrm { m a x } } ]$ be bounded reward, $\\mathbf { C } _ { s }$ be invertible reward confusion matrices with $\\operatorname* { d e t } ( \\mathbf { C } _ { s } )$ denoting its determinant. For an appropriate choice of $m$ , the Phased $Q$ -Learning algorithm calls the generative model $G ( \\hat { \\mathcal { M } } )$ ", + "bbox": [ + 173, + 727, + 825, + 773 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/c808c7e02afbac424935a2a6fbdc2a8bb2055dae8fb52dbd3b8c5e167a032e71.jpg", + "text": "$$\nO \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 330, + 781, + 666, + 815 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "times in $T$ epochs, and returns a policy such that for all state $s \\in S$ $\\rangle , | V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\leq \\epsilon , \\epsilon > 0$ $w . p . \\geq 1 - \\delta$ , $0 < \\delta < 1$ . ", + "bbox": [ + 174, + 823, + 823, + 853 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Theorem 5. Let $r \\in [ 0 , R _ { \\mathrm { m a x } } ]$ be bounded reward and all confusion matrices $\\mathbf { C } _ { s }$ are invertible. Then, the variance of surrogate reward $\\hat { r }$ is bounded as follows: ", + "bbox": [ + 173, + 856, + 820, + 886 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/7b7d12fb4288e0b4fe00ee90a42ccca0c73b09b46180a1f68e088056eda85a21.jpg", + "text": "$$\n\\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { M ^ { 2 } } { \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 330, + 895, + 666, + 928 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "C.4 VARIANCE REDUCTION IN ESTIMATION ", + "text_level": 1, + "bbox": [ + 176, + 103, + 491, + 117 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "As illustrated in Theorem 3, our surrogate rewards introduce larger variance while conducting unbiased estimation which are likely to decrease the stability of RL algorithms. Apart from the linear combination idea (appropriate trade-off), some variance reduction techniques in statistics (e.g., correlated sampling) can also be applied into our surrogate rewards. Specially, Romoff et al. (2018) proposed to a reward estimator to compensate for stochastic corrupted reward signals. It is worthy to notice that their method is designed for variance reduction under stochastic (zero-mean) noise, which is no longer efficacious in more general perturbed-reward setting. However, it is potential to integrate their method with our robust-reward RL framework because surrogate rewards guarantee unbiasedness in reward expectation. ", + "bbox": [ + 174, + 131, + 825, + 256 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "To verify this idea, we repeated the experiments of Cartpole in Section 4.2 but included variance reduction step for estimated surrogate rewards. Following Romoff et al. (2018), we adopted sample mean as a simple approximator during the training and set sequence length as 100. As shown in Figure 5, the models with only variance reduction technique (red lines) suffer from huge biases when the noise is large, and cannot converge to the optimal policies like those under noisy rewards. Nevertheless, they benefits from variance reduction for surrogate rewards (purple lines), which achieve faster convergence or better performance in many cases (e.g., Figure 5a $\\langle \\omega = 0 . 7 $ ), 5b $\\langle \\omega = 0 . 3 )$ ). It is also not surprising that the integrated algorithm (purple lines) outperforms better as the noise rate increases (indicating larger variance from Theorem 3, e.g., $\\omega = 0 . 9$ ). Similarly, Table 5 provides quantitative results which show that our surrogate benefits from variance reduction techniques (“ours $+ { \\mathrm { V R T } } ^ { { \\mathsf { V } } } ,$ ), especially when the noise rate is large. ", + "bbox": [ + 173, + 262, + 825, + 415 + ], + "page_idx": 20 + }, + { + "type": "image", + "img_path": "images/70beaea72e9c00d1c10de6475df19fe4340ed51e1fed407fc97632ce1d4420c8.jpg", + "image_caption": [ + "Figure 5: Learning curves from five reward robust RL algorithms (see Algorithm 3) on CartPole game with true rewards $( r ) \\mathsf { l } .$ , noisy rewards $( \\tilde { r } )$ $( \\eta = 1 )$ ) , sample-mean noisy rewards $( \\eta = 1 )$ ) estimated surrogate rewards $( { \\dot { r } } ) \\mathbf { \\Psi } $ and sample-mean estimated surrogate rewards $\\cdot$ . Note that confusion matrices $\\mathbf { C }$ are unknown to the agents here. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with different random seeds and plotted $10 \\%$ to $90 \\%$ percentile area with its mean highlighted. " + ], + "image_footnote": [], + "bbox": [ + 173, + 422, + 816, + 742 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "C.5 EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 854, + 395, + 868 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "To validate the effectiveness of robust reward algorithms (like Algorithm 3), where the noise rates are unknown to the agents, we conduct extensive experiments in CartPole. It is worthwhile to notice that the noisy rates are unknown in the explorations of RL agents. Besides, we discretize the observation (velocity, angle, etc.) to construct a set of states and implement like Algorithm 3. The $\\eta$ is set 1.0 in the experiments. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/94037bd4f77acff7f40ed66c73fee1e3f26a40ff269d52dc7c1aa6413873d92b.jpg", + "table_caption": [ + "Table 5: Average scores of various RL algorithms on CartPole with sample-mean reward using variance reduction technique (VRT), surrogate rewards (ours) and the combination of them (ours $^ +$ VRT). Note that the reward confusion matrices are unknown to the agents and the experiments are repeated three times with different random seeds. " + ], + "table_footnote": [], + "table_body": "
Noise RateRewardQ-LearnCEMSARSADQNDDQN
ε=0.1VRT173.599.7167.3181.9187.4
ours (r)181.999.3171.5200.0185.6
ours + VRT184.598.2174.2199.3186.5
w= 0.3VRT140.443.9149.8182.7177.6
ours (r)161.181.8159.6186.7200.0
ours + VRT161.682.2159.8188.4198.2
ω=0.7VRT71.116.113.215.614.7
ours (r)172.183.0174.4189.3191.3
ours + VRT182.379.5178.9195.9194.2
", + "bbox": [ + 256, + 167, + 746, + 325 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 398, + 823, + 426 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Figure 6 provides learning curves from five algorithms with different kinds of rewards. The proposed estimation algorithms successfully obtain the approximate confusion matrices, and are robust in the unknown noise environments. From Figure 7, we can observe that the estimation of confusion matrices converges very fast. The results are inspiring because we don’t assume any additional knowledge about noise or true reward distribution in the implementation. ", + "bbox": [ + 173, + 433, + 825, + 503 + ], + "page_idx": 21 + }, + { + "type": "image", + "img_path": "images/00e0fa5c53bdd423861056c4fc78ee26bf6a690df1fef3c4f6262b3c82507f6c.jpg", + "image_caption": [ + "Figure 6: Complete learning curves from five reward robust RL algorithms (see Algorithm 3) on CartPole game with true rewards $( r ) \\lfloor$ , noisy rewards $( \\tilde { r } )$ $\\mathit { \\Pi } _ { \\eta } = \\mathit { \\Pi } 1 $ ) and estimated surrogate rewards $( { \\bar { \\dot { r } } } ) \\boxed { \\boxdot { \\bigtriangledown } }$ . Note that confusion matrices $\\mathbf { C }$ are unknown to the agents here. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with different random seeds and plotted $10 \\%$ to $90 \\%$ percentile area with its mean highlighted. " + ], + "image_footnote": [], + "bbox": [ + 179, + 512, + 813, + 832 + ], + "page_idx": 21 + }, + { + "type": "image", + "img_path": "images/3c31bc892d4fb3888117fce17dbd7d8d1ec5cc0783d06451ffb78a6d4f61de53.jpg", + "image_caption": [ + "Figure 7: Estimation analysis from five reward robust RL algorithms (see Algorithm 3) on CartPole game. The upper figures are the convergence curves of estimated error rates (from 0.1 to 0.9), where the solid and dashed lines are ground truth and estimation, respectively; The lower figures are the absolute difference between the estimation and ground truth of confusion matrix $\\mathbf { C }$ (normalized matrix norm). " + ], + "image_footnote": [], + "bbox": [ + 183, + 103, + 815, + 270 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "D SUPPLEMENTARY EXPERIMENTAL RESULTS ", + "text_level": 1, + "bbox": [ + 173, + 385, + 575, + 401 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "D.1 SUPPLEMENTARY QUANTITATIVE RESULTS ", + "text_level": 1, + "bbox": [ + 174, + 421, + 517, + 436 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/fc0054f035cb62d6348c8765cf9a9d6d22d3668ff3f43117f32038727c5d6dd4.jpg", + "table_caption": [ + "Table 6: Complete average scores of various RL algorithms on CartPole and Pendulum with noisy rewards $( \\tilde { r } )$ and surrogate rewards under known $( \\hat { r } )$ or estimated $( \\dot { r } )$ confusion matrices. Note that the results for last two algorithms DDPG (rand-one) $\\&$ NAF (rand-all) are on Pendulum, but the others are on CartPole. The experiments are repeated three times with different random seeds. " + ], + "table_footnote": [], + "table_body": "
Noise Rate丨RewardQ-LearnCEMSARSADQNDDQNDDPGNAF
ε=0.1r170.098.1165.2187.2187.8-1.03-4.48
?165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
ε= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.181.8159.6186.7200.0 -1.05-1.36
ε=0.756.619.212.617.211.8-8.76-7.35
?177.687.1151.4185.8195.2-1.09-2.26
r172.183.0174.4189.3191.31
", + "bbox": [ + 215, + 517, + 789, + 674 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/bec1a95fe0fcc2b112b85b15fa8b31abe344cb7729276502f6d999564d8ac4e2.jpg", + "table_caption": [ + "Table 7: Complete average scores of PPO on five selected Atari games with noisy rewards $( \\tilde { r } )$ and surrogate rewards $( \\hat { r } )$ . The experiments are repeated three times with different random seeds. " + ], + "table_footnote": [], + "table_body": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_ =e+ =0.1r12044.21814.81239.24608.91709.1849.2
?67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.31770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+=0.311180.1543.1919.82600.31109.6727.8
?46.7%个1730.81637.7966.14171.51470.2408.6
e_ =e+ =0.7r1296.8485.4380.3126.5491.50.0
?557.3%个1951.01799.21045.24970.41447.8492.5
e_ = 0.9,e+ = 0.7382.6410.267.0174.1620.1641.7
?106.9%个791.5693.5918.1298.91312.0735.1
e_ =e+=0.9r1588.8540.66.31410.8535.4588.8
?482.3%个3428.81901.34261.76758.62515.11707.1
", + "bbox": [ + 181, + 727, + 815, + 921 + ], + "page_idx": 22 + }, + { + "type": "image", + "img_path": "images/56cf4b1866b0e0ae41fa728a9db15d7c21b37c6c8b7439f3ea38e0efebdb1a5d.jpg", + "image_caption": [ + "Figure 8: Complete learning curves from DDPG and NAF on Pendulum game with true rewards $( r )$ noisy rewards $( \\tilde { r } )$ and surrogate rewards $( \\hat { r } )$ $( \\eta = 1 ) \\mathbb { \\frac { \\ d H } { \\ d t } }$ . Both symmetric and asymmetric noise are conduced in the experiments. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9, respectively. Here we repeated each experiment 6 times with different random seeds and plotted $10 \\%$ to $90 \\%$ percentile area with its mean highlighted. " + ], + "image_footnote": [], + "bbox": [ + 218, + 133, + 776, + 481 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "D.3 VISUALIZATIONS ON ATARI GAMES8 ", + "text_level": 1, + "bbox": [ + 176, + 579, + 472, + 593 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "D.3.1 PONG ", + "text_level": 1, + "bbox": [ + 174, + 609, + 274, + 623 + ], + "page_idx": 23 + }, + { + "type": "image", + "img_path": "images/2eca74f5435d07594efb179f169aec1e7428ca249146a6f151793e67576987cc.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 176, + 635, + 820, + 868 + ], + "page_idx": 23 + }, + { + "type": "image", + "img_path": "images/bf42aa71d5dd9cde0b2208d610c62a8714a734f6ef5bcde1074fc9fc3a628647.jpg", + "image_caption": [ + "D.3.2 AIRRAID " + ], + "image_footnote": [], + "bbox": [ + 173, + 99, + 820, + 335 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/85094ab825ca6e44979caac1f4c19807a1f21d6d7dc62408868753eead8a07cb.jpg", + "image_caption": [ + "D.3.3 ALIEN " + ], + "image_footnote": [], + "bbox": [ + 173, + 424, + 807, + 627 + ], + "page_idx": 24 + }, + { + "type": "image", + "img_path": "images/48e351ba6ebf8b95c44d9513e147b787b491b7a86b340b2151c2328c07b0f6d3.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 173, + 717, + 807, + 920 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "D.3.4 CARNIVAL ", + "text_level": 1, + "bbox": [ + 173, + 103, + 307, + 117 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/cb7bdbc58244c72eb7f96087d8f99c212538bc8d2a6838fcedd0908fdda963f4.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 173, + 160, + 807, + 367 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "D.3.5 MSPACMAN ", + "text_level": 1, + "bbox": [ + 173, + 382, + 316, + 396 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/a5abc9581c689cca51328a312effb4d1315aa6f79fc6d88bdcb7026ba4103cf6.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 173, + 438, + 807, + 643 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "D.3.6 PHOENIX ", + "text_level": 1, + "bbox": [ + 174, + 660, + 297, + 674 + ], + "page_idx": 25 + }, + { + "type": "image", + "img_path": "images/cf49c149bb345b5c547c2f7a014571840c0801ce73383a87f4d4f7cef1e2e3b3.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 173, + 718, + 805, + 920 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "D.3.7 SEAQUEST ", + "text_level": 1, + "bbox": [ + 173, + 104, + 307, + 117 + ], + "page_idx": 26 + }, + { + "type": "image", + "img_path": "images/1d24dc2bcfc04cc0bcd6821de6a30c5b669dfedf1ac61a7d39ef506aaae133e5.jpg", + "image_caption": [], + "image_footnote": [], + "bbox": [ + 173, + 125, + 808, + 329 + ], + "page_idx": 26 + } +] \ No newline at end of file diff --git a/parse/train/BkMWx309FX/BkMWx309FX_middle.json b/parse/train/BkMWx309FX/BkMWx309FX_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..3e25991c32c617a63b5f8697073c2487df6f96df --- /dev/null +++ b/parse/train/BkMWx309FX/BkMWx309FX_middle.json @@ -0,0 +1,72154 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 363, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 365, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 365, + 96 + ], + "score": 1.0, + "content": "REINFORCEMENT LEARNING WITH", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 276, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 276, + 117 + ], + "score": 1.0, + "content": "PERTURBED REWARDS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 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, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 158 + ], + "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": [ + 277, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 210, + 468, + 419 + ], + "lines": [ + { + "bbox": [ + 142, + 211, + 469, + 222 + ], + "spans": [ + { + "bbox": [ + 142, + 211, + 469, + 222 + ], + "score": 1.0, + "content": "Recent studies have shown that reinforcement learning (RL) models can be vulner-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 221, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 469, + 234 + ], + "score": 1.0, + "content": "able in various scenarios, where noises from different sources could appear. For", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 231, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 469, + 246 + ], + "score": 1.0, + "content": "instance, the observed reward channel is often subject to noise in practice (e.g.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 244, + 469, + 256 + ], + "spans": [ + { + "bbox": [ + 142, + 244, + 469, + 256 + ], + "score": 1.0, + "content": "when observed rewards are collected through sensors), and thus observed rewards", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 267 + ], + "score": 1.0, + "content": "may not be credible. Also, in applications such as robotics, a deep reinforce-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "score": 1.0, + "content": "ment learning (DRL) algorithm can be manipulated to produce arbitrary errors. In", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 276, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 469, + 289 + ], + "score": 1.0, + "content": "this paper, we consider noisy RL problems where observed rewards by RL agents", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "score": 1.0, + "content": "are generated with a reward confusion matrix. We call such observed rewards as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 469, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 469, + 310 + ], + "score": 1.0, + "content": "perturbed rewards. We develop an unbiased reward estimator aided robust RL", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "score": 1.0, + "content": "framework that enables RL agents to learn in noisy environments while observing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "score": 1.0, + "content": "only perturbed rewards. Our framework draws upon approaches for supervised", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 344 + ], + "score": 1.0, + "content": "learning with noisy data. The core ideas of our solution include estimating a re-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "score": 1.0, + "content": "ward confusion matrix and defining a set of unbiased surrogate rewards. We prove", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "the convergence and sample complexity of our approach. Extensive experiments", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "score": 1.0, + "content": "on different DRL platforms show that policies based on our estimated surrogate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 470, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 470, + 388 + ], + "score": 1.0, + "content": "reward can achieve higher expected rewards, and converge faster than existing", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 386, + 468, + 397 + ], + "spans": [ + { + "bbox": [ + 142, + 387, + 441, + 397 + ], + "score": 1.0, + "content": "baselines. For instance, the state-of-the-art PPO algorithm is able to obtain", + "type": "text" + }, + { + "bbox": [ + 441, + 386, + 468, + 397 + ], + "score": 0.85, + "content": "6 7 . 5 \\%", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 397, + 470, + 410 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 159, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 397, + 186, + 407 + ], + "score": 0.88, + "content": "4 6 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 397, + 470, + 410 + ], + "score": 1.0, + "content": "improvements in average on five Atari games, when the error rates are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 407, + 253, + 421 + ], + "spans": [ + { + "bbox": [ + 142, + 408, + 162, + 419 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 407, + 180, + 421 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 180, + 408, + 200, + 419 + ], + "score": 0.85, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 407, + 253, + 421 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 439, + 206, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 208, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 208, + 455 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 504, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Designing a suitable reward function plays a critical role in building reinforcement learning mod-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "els for real-world applications. Ideally, one would want to customize reward functions to achieve", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "application-specific goals (Hadfield-Menell et al., 2017). In practice, however, it is difficult to de-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "sign a function that produces credible rewards in the presence of noise. This is because the output", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 508, + 384, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 384, + 520 + ], + "score": 1.0, + "content": "from any reward function is subject to multiple kinds of randomness:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 528, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "• Inherent Noise. For instance, sensors on a robot will be affected by physical conditions such as", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 540, + 438, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 540, + 438, + 552 + ], + "score": 1.0, + "content": "temperature and lighting, and therefore will report back noisy observed rewards.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 553, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 505, + 567 + ], + "score": 1.0, + "content": "• Application-Specific Noise. In machine teaching tasks (Thomaz et al., 2006; Loftin et al., 2014),", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 116, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "when an RL agent receives feedback/instructions from people, different human instructors might", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "provide drastically different feedback due to their personal styles and capabilities. This way the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 587, + 315, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 315, + 599 + ], + "score": 1.0, + "content": "RL agent (machine) will obtain reward with bias.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "• Adversarial Noise. Adversarial perturbation has been widely explored in different learning tasks", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 115, + 612, + 506, + 626 + ], + "score": 1.0, + "content": "and shows strong attack power against different machine learning models. For instance, Huang", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 622, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 622, + 505, + 637 + ], + "score": 1.0, + "content": "et al. (2017) has shown that by adding adversarial perturbation to each frame of the game, they", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 634, + 259, + 647 + ], + "spans": [ + { + "bbox": [ + 115, + 634, + 259, + 647 + ], + "score": 1.0, + "content": "can mislead RL policies arbitrarily.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "Assuming an arbitrary noise model makes solving this noisy RL problem extremely challenging.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "Instead, we focus on a specific noisy reward model which we call perturbed rewards, where the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "observed rewards by RL agents are generated according to a reward confusion matrix. This is not a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 699 + ], + "score": 1.0, + "content": "very restrictive setting to start with, even considering that the noise could be adversarial: Given that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "arbitrary pixel value manipulation attack in RL is not very practical, adversaries in the real-world", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "have high incentives to inject adversarial perturbation to the reward value by slightly modifying it.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 426, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 426, + 733 + ], + "score": 1.0, + "content": "For instance, adversaries can manipulate sensors via reversing the reward value.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43 + } + ], + "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": [ + 303, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 363, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 365, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 365, + 96 + ], + "score": 1.0, + "content": "REINFORCEMENT LEARNING WITH", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 276, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 276, + 117 + ], + "score": 1.0, + "content": "PERTURBED REWARDS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 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, + 158 + ], + "spans": [ + { + "bbox": [ + 112, + 146, + 245, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 112, + 136, + 245, + 158 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 210, + 468, + 419 + ], + "lines": [ + { + "bbox": [ + 142, + 211, + 469, + 222 + ], + "spans": [ + { + "bbox": [ + 142, + 211, + 469, + 222 + ], + "score": 1.0, + "content": "Recent studies have shown that reinforcement learning (RL) models can be vulner-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 221, + 469, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 221, + 469, + 234 + ], + "score": 1.0, + "content": "able in various scenarios, where noises from different sources could appear. For", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 231, + 469, + 246 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 469, + 246 + ], + "score": 1.0, + "content": "instance, the observed reward channel is often subject to noise in practice (e.g.,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 244, + 469, + 256 + ], + "spans": [ + { + "bbox": [ + 142, + 244, + 469, + 256 + ], + "score": 1.0, + "content": "when observed rewards are collected through sensors), and thus observed rewards", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 469, + 267 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 469, + 267 + ], + "score": 1.0, + "content": "may not be credible. Also, in applications such as robotics, a deep reinforce-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 277 + ], + "score": 1.0, + "content": "ment learning (DRL) algorithm can be manipulated to produce arbitrary errors. In", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 276, + 469, + 289 + ], + "spans": [ + { + "bbox": [ + 141, + 276, + 469, + 289 + ], + "score": 1.0, + "content": "this paper, we consider noisy RL problems where observed rewards by RL agents", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 299 + ], + "score": 1.0, + "content": "are generated with a reward confusion matrix. We call such observed rewards as", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 299, + 469, + 310 + ], + "spans": [ + { + "bbox": [ + 141, + 299, + 469, + 310 + ], + "score": 1.0, + "content": "perturbed rewards. We develop an unbiased reward estimator aided robust RL", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 141, + 309, + 470, + 322 + ], + "score": 1.0, + "content": "framework that enables RL agents to learn in noisy environments while observing", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "spans": [ + { + "bbox": [ + 141, + 320, + 470, + 333 + ], + "score": 1.0, + "content": "only perturbed rewards. Our framework draws upon approaches for supervised", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 469, + 344 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 344 + ], + "score": 1.0, + "content": "learning with noisy data. The core ideas of our solution include estimating a re-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "spans": [ + { + "bbox": [ + 141, + 342, + 469, + 354 + ], + "score": 1.0, + "content": "ward confusion matrix and defining a set of unbiased surrogate rewards. We prove", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 354, + 469, + 366 + ], + "score": 1.0, + "content": "the convergence and sample complexity of our approach. Extensive experiments", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "spans": [ + { + "bbox": [ + 141, + 364, + 470, + 376 + ], + "score": 1.0, + "content": "on different DRL platforms show that policies based on our estimated surrogate", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 375, + 470, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 375, + 470, + 388 + ], + "score": 1.0, + "content": "reward can achieve higher expected rewards, and converge faster than existing", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 142, + 386, + 468, + 397 + ], + "spans": [ + { + "bbox": [ + 142, + 387, + 441, + 397 + ], + "score": 1.0, + "content": "baselines. For instance, the state-of-the-art PPO algorithm is able to obtain", + "type": "text" + }, + { + "bbox": [ + 441, + 386, + 468, + 397 + ], + "score": 0.85, + "content": "6 7 . 5 \\%", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 397, + 470, + 410 + ], + "spans": [ + { + "bbox": [ + 141, + 397, + 159, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 159, + 397, + 186, + 407 + ], + "score": 0.88, + "content": "4 6 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 397, + 470, + 410 + ], + "score": 1.0, + "content": "improvements in average on five Atari games, when the error rates are", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 407, + 253, + 421 + ], + "spans": [ + { + "bbox": [ + 142, + 408, + 162, + 419 + ], + "score": 0.87, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 407, + 180, + 421 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 180, + 408, + 200, + 419 + ], + "score": 0.85, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 407, + 253, + 421 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 14, + "bbox_fs": [ + 141, + 211, + 470, + 421 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 439, + 206, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 438, + 208, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 208, + 455 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 504, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Designing a suitable reward function plays a critical role in building reinforcement learning mod-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "els for real-world applications. Ideally, one would want to customize reward functions to achieve", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "application-specific goals (Hadfield-Menell et al., 2017). In practice, however, it is difficult to de-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "sign a function that produces credible rewards in the presence of noise. This is because the output", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 508, + 384, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 384, + 520 + ], + "score": 1.0, + "content": "from any reward function is subject to multiple kinds of randomness:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 464, + 506, + 520 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 528, + 505, + 646 + ], + "lines": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "• Inherent Noise. For instance, sensors on a robot will be affected by physical conditions such as", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 540, + 438, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 540, + 438, + 552 + ], + "score": 1.0, + "content": "temperature and lighting, and therefore will report back noisy observed rewards.", + "type": "text" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 107, + 553, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 505, + 567 + ], + "score": 1.0, + "content": "• Application-Specific Noise. In machine teaching tasks (Thomaz et al., 2006; Loftin et al., 2014),", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 565, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 116, + 565, + 505, + 577 + ], + "score": 1.0, + "content": "when an RL agent receives feedback/instructions from people, different human instructors might", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 576, + 506, + 589 + ], + "spans": [ + { + "bbox": [ + 115, + 576, + 506, + 589 + ], + "score": 1.0, + "content": "provide drastically different feedback due to their personal styles and capabilities. This way the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 587, + 315, + 599 + ], + "spans": [ + { + "bbox": [ + 115, + 587, + 315, + 599 + ], + "score": 1.0, + "content": "RL agent (machine) will obtain reward with bias.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 614 + ], + "score": 1.0, + "content": "• Adversarial Noise. Adversarial perturbation has been widely explored in different learning tasks", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 612, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 115, + 612, + 506, + 626 + ], + "score": 1.0, + "content": "and shows strong attack power against different machine learning models. For instance, Huang", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 622, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 115, + 622, + 505, + 637 + ], + "score": 1.0, + "content": "et al. (2017) has shown that by adding adversarial perturbation to each frame of the game, they", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 634, + 259, + 647 + ], + "spans": [ + { + "bbox": [ + 115, + 634, + 259, + 647 + ], + "score": 1.0, + "content": "can mislead RL policies arbitrarily.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 528, + 506, + 647 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "Assuming an arbitrary noise model makes solving this noisy RL problem extremely challenging.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "Instead, we focus on a specific noisy reward model which we call perturbed rewards, where the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "observed rewards by RL agents are generated according to a reward confusion matrix. This is not a", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 689, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 505, + 699 + ], + "score": 1.0, + "content": "very restrictive setting to start with, even considering that the noise could be adversarial: Given that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "arbitrary pixel value manipulation attack in RL is not very practical, adversaries in the real-world", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "have high incentives to inject adversarial perturbation to the reward value by slightly modifying it.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 426, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 426, + 733 + ], + "score": 1.0, + "content": "For instance, adversaries can manipulate sensors via reversing the reward value.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 654, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "In this paper, we develop an unbiased reward estimator aided robust framework that enables an RL", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "agent to learn in a noisy environment with observing only perturbed rewards. Our solution frame-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "work builds on existing reinforcement learning algorithms, including the recently developed DRL", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 131, + 128 + ], + "score": 1.0, + "content": "ones (", + "type": "text" + }, + { + "bbox": [ + 131, + 116, + 140, + 127 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "-Learning (Watkins, 1989; Watkins & Dayan, 1992), Cross-Entropy Method (CEM) (Szita", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 370, + 140 + ], + "score": 1.0, + "content": "& Lorincz, 2006), Deep SARSA (Sutton & Barto, 1998), Deep ¨", + "type": "text" + }, + { + "bbox": [ + 370, + 127, + 379, + 138 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 126, + 505, + 140 + ], + "score": 1.0, + "content": "-Network (DQN) (Mnih et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "2013; 2015; van Hasselt et al., 2016), Dueling DQN (DDQN) (Wang et al., 2016), Deep Determin-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "istic Policy Gradient (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu et al., 2016) and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 402, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 402, + 173 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO) (Schulman et al., 2017) algorithms).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "The main challenge is that the observed rewards are likely to be biased, and in RL or DRL the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "score": 1.0, + "content": "accumulated errors could amplify the reward estimation error over time. We do not require any", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "assumption on knowing the true distribution of reward or adversarial strategies, other than the fact", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "score": 1.0, + "content": "that the generation of noises follow an unknown reward confusion matrix. Instead, we address the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "issue of estimating the reward confusion matrices by proposing an efficient and flexible estimation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "module. Everitt et al. (2017) provided preliminary studies for the noisy reward problem and gave", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "some general negative results. The authors proved a No Free Lunch theorem, which is, without", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 265 + ], + "score": 1.0, + "content": "any assumption about what the reward corruption is, all agents can be misled. Our results do not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "contradict with the results therein, as we consider a specific noise generation model (that leads to a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "set of perturbed rewards). We analyze the convergence and sample complexity for the policy trained", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 286, + 491, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 380, + 299 + ], + "score": 1.0, + "content": "based on our proposed method using surrogate rewards in RL, using", + "type": "text" + }, + { + "bbox": [ + 381, + 286, + 390, + 298 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 286, + 491, + 299 + ], + "score": 1.0, + "content": "-Learning as an example.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "We conduct extensive experiments on OpenAI Gym (Brockman et al., 2016) (AirRaid, Alien, Car-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "nival, MsPacman, Pong, Phoenix, Seaquest) and show that the proposed reward robust RL method", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "achieves comparable performance with the policy trained using the true rewards. In some cases, our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "method even achieves higher cumulative reward - this is surprising to us at first, but we conjecture", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "that the inserted noise together with our noisy-removal unbiased estimator adds another layer of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 452, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 452, + 370 + ], + "score": 1.0, + "content": "exploration, which proves to be beneficial in some settings. This merits a future study.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "Our contributions are summarized as follows: (1) We adapt and generalize the idea of defining", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "a simple but effective unbiased estimator for true rewards using observed and perturbed rewards", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "to the reinforcement learning setting. The proposed estimator helps guarantee the convergence to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "the optimal policy even when the RL agents only have noisy observations of the rewards. (2) We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "analyze the convergence to the optimal policy and finite sample complexity of our reward robust RL", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 171, + 442 + ], + "score": 1.0, + "content": "methods, using", + "type": "text" + }, + { + "bbox": [ + 171, + 430, + 180, + 441 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "-Learning as the running example. (3) Extensive experiments on OpenAI Gym", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 441, + 415, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 415, + 453 + ], + "score": 1.0, + "content": "show that our proposed algorithms perform robustly even at high noise rates.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "title", + "bbox": [ + 108, + 487, + 202, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 204, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 204, + 501 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 504, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 504, + 529 + ], + "score": 1.0, + "content": "Robust Reinforcement Learning It is known that RL algorithms are vulnerable to noisy envi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "ronments (Irpan, 2018). Recent studies (Huang et al., 2017; Kos & Song, 2017; Lin et al., 2017)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "show that learned RL policies can be easily misled with small perturbations in observations. The", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "presence of noise is very common in real-world environments, especially in robotics-relevant appli-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "cations. Consequently, robust (adversarial) reinforcement learning (RRL/RARL) algorithms have", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "been widely studied, aiming to train a robust policy which is capable of withstanding perturbed", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "observations (Teh et al., 2017; Pinto et al., 2017; Gu et al., 2018) or transferring to unseen envi-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "ronments (Rajeswaran et al., 2016; Fu et al., 2017). However, these robust RL algorithms mainly", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 504, + 617 + ], + "score": 1.0, + "content": "focus on noisy vision observations, instead of the observed rewards. A couple of recent works (Lim", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "et al., 2016; Roy et al., 2017) have also looked into a rather parallel question of training robust RL", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 263, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 263, + 639 + ], + "score": 1.0, + "content": "algorithms with uncertainty in models.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "Learning with Noisy Data Learning appropriately with biased data has received quite a bit of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "attention in recent machine learning studies Natarajan et al. (2013); Scott et al. (2013); Scott (2015);", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "Sukhbaatar & Fergus (2014); van Rooyen & Williamson (2015); Menon et al. (2015). The idea of", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "above line of works is to define unbiased surrogate loss function to recover the true loss using the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "knowledge of the noises. We adapt these approaches to reinforcement learning. Though intuitively", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "the idea should apply in our RL settings, our work is the first one to formally establish this extension", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "both theoretically and empirically. Our quantitative understandings will provide practical insights", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 420, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 420, + 732 + ], + "score": 1.0, + "content": "when implementing reinforcement learning algorithms in noisy environments.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 47.5 + } + ], + "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, + 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, + 171 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "In this paper, we develop an unbiased reward estimator aided robust framework that enables an RL", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "agent to learn in a noisy environment with observing only perturbed rewards. Our solution frame-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "work builds on existing reinforcement learning algorithms, including the recently developed DRL", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 131, + 128 + ], + "score": 1.0, + "content": "ones (", + "type": "text" + }, + { + "bbox": [ + 131, + 116, + 140, + 127 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "-Learning (Watkins, 1989; Watkins & Dayan, 1992), Cross-Entropy Method (CEM) (Szita", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 370, + 140 + ], + "score": 1.0, + "content": "& Lorincz, 2006), Deep SARSA (Sutton & Barto, 1998), Deep ¨", + "type": "text" + }, + { + "bbox": [ + 370, + 127, + 379, + 138 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 126, + 505, + 140 + ], + "score": 1.0, + "content": "-Network (DQN) (Mnih et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "2013; 2015; van Hasselt et al., 2016), Dueling DQN (DDQN) (Wang et al., 2016), Deep Determin-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "istic Policy Gradient (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu et al., 2016) and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 402, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 402, + 173 + ], + "score": 1.0, + "content": "Proximal Policy Optimization (PPO) (Schulman et al., 2017) algorithms).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 82, + 506, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 176, + 505, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 505, + 189 + ], + "score": 1.0, + "content": "The main challenge is that the observed rewards are likely to be biased, and in RL or DRL the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 201 + ], + "score": 1.0, + "content": "accumulated errors could amplify the reward estimation error over time. We do not require any", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "assumption on knowing the true distribution of reward or adversarial strategies, other than the fact", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 505, + 221 + ], + "score": 1.0, + "content": "that the generation of noises follow an unknown reward confusion matrix. Instead, we address the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "issue of estimating the reward confusion matrices by proposing an efficient and flexible estimation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "score": 1.0, + "content": "module. Everitt et al. (2017) provided preliminary studies for the noisy reward problem and gave", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 506, + 254 + ], + "score": 1.0, + "content": "some general negative results. The authors proved a No Free Lunch theorem, which is, without", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 265 + ], + "score": 1.0, + "content": "any assumption about what the reward corruption is, all agents can be misled. Our results do not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 277 + ], + "score": 1.0, + "content": "contradict with the results therein, as we consider a specific noise generation model (that leads to a", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 288 + ], + "score": 1.0, + "content": "set of perturbed rewards). We analyze the convergence and sample complexity for the policy trained", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 286, + 491, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 380, + 299 + ], + "score": 1.0, + "content": "based on our proposed method using surrogate rewards in RL, using", + "type": "text" + }, + { + "bbox": [ + 381, + 286, + 390, + 298 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 286, + 491, + 299 + ], + "score": 1.0, + "content": "-Learning as an example.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 176, + 506, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 302, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "score": 1.0, + "content": "We conduct extensive experiments on OpenAI Gym (Brockman et al., 2016) (AirRaid, Alien, Car-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "nival, MsPacman, Pong, Phoenix, Seaquest) and show that the proposed reward robust RL method", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "achieves comparable performance with the policy trained using the true rewards. In some cases, our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "method even achieves higher cumulative reward - this is surprising to us at first, but we conjecture", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 359 + ], + "score": 1.0, + "content": "that the inserted noise together with our noisy-removal unbiased estimator adds another layer of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 452, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 452, + 370 + ], + "score": 1.0, + "content": "exploration, which proves to be beneficial in some settings. This merits a future study.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 303, + 506, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "Our contributions are summarized as follows: (1) We adapt and generalize the idea of defining", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "a simple but effective unbiased estimator for true rewards using observed and perturbed rewards", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "to the reinforcement learning setting. The proposed estimator helps guarantee the convergence to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "the optimal policy even when the RL agents only have noisy observations of the rewards. (2) We", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "analyze the convergence to the optimal policy and finite sample complexity of our reward robust RL", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 171, + 442 + ], + "score": 1.0, + "content": "methods, using", + "type": "text" + }, + { + "bbox": [ + 171, + 430, + 180, + 441 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "-Learning as the running example. (3) Extensive experiments on OpenAI Gym", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 441, + 415, + 453 + ], + "spans": [ + { + "bbox": [ + 106, + 441, + 415, + 453 + ], + "score": 1.0, + "content": "show that our proposed algorithms perform robustly even at high noise rates.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 373, + 505, + 453 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 487, + 202, + 499 + ], + "lines": [ + { + "bbox": [ + 106, + 486, + 204, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 204, + 501 + ], + "score": 1.0, + "content": "1.1 RELATED WORK", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 106, + 518, + 504, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 504, + 529 + ], + "score": 1.0, + "content": "Robust Reinforcement Learning It is known that RL algorithms are vulnerable to noisy envi-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "ronments (Irpan, 2018). Recent studies (Huang et al., 2017; Kos & Song, 2017; Lin et al., 2017)", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "show that learned RL policies can be easily misled with small perturbations in observations. The", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "presence of noise is very common in real-world environments, especially in robotics-relevant appli-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "cations. Consequently, robust (adversarial) reinforcement learning (RRL/RARL) algorithms have", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "been widely studied, aiming to train a robust policy which is capable of withstanding perturbed", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "observations (Teh et al., 2017; Pinto et al., 2017; Gu et al., 2018) or transferring to unseen envi-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 505, + 607 + ], + "score": 1.0, + "content": "ronments (Rajeswaran et al., 2016; Fu et al., 2017). However, these robust RL algorithms mainly", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 605, + 504, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 504, + 617 + ], + "score": 1.0, + "content": "focus on noisy vision observations, instead of the observed rewards. A couple of recent works (Lim", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 629 + ], + "score": 1.0, + "content": "et al., 2016; Roy et al., 2017) have also looked into a rather parallel question of training robust RL", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 627, + 263, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 263, + 639 + ], + "score": 1.0, + "content": "algorithms with uncertainty in models.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 518, + 506, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 657 + ], + "score": 1.0, + "content": "Learning with Noisy Data Learning appropriately with biased data has received quite a bit of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "attention in recent machine learning studies Natarajan et al. (2013); Scott et al. (2013); Scott (2015);", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "Sukhbaatar & Fergus (2014); van Rooyen & Williamson (2015); Menon et al. (2015). The idea of", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "above line of works is to define unbiased surrogate loss function to recover the true loss using the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 504, + 700 + ], + "score": 1.0, + "content": "knowledge of the noises. We adapt these approaches to reinforcement learning. Though intuitively", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "the idea should apply in our RL settings, our work is the first one to formally establish this extension", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "both theoretically and empirically. Our quantitative understandings will provide practical insights", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 420, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 420, + 732 + ], + "score": 1.0, + "content": "when implementing reinforcement learning algorithms in noisy environments.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 47.5, + "bbox_fs": [ + 105, + 644, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 363, + 93 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 365, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 365, + 96 + ], + "score": 1.0, + "content": "2 PROBLEM FORMULATION AND PRELIMINARIES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 505, + 179 + ], + "lines": [ + { + "bbox": [ + 104, + 110, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 110, + 505, + 127 + ], + "score": 1.0, + "content": "In this section, we define our problem of learning from perturbed rewards in reinforcement learning.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Throughout this paper, we will use perturbed reward and noisy reward interchangeably, as each", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 134, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 506, + 147 + ], + "score": 1.0, + "content": "time step of our sequential decision making setting is similar to the “learning with noisy data”", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "setting in supervised learning (Natarajan et al., 2013; Scott et al., 2013; Scott, 2015; Sukhbaatar &", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "Fergus, 2014). In what follows, we formulate our Markov Decision Process (MDP) problem and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 168, + 385, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 385, + 180 + ], + "score": 1.0, + "content": "reinforcement learning (RL) problem with perturbed (noisy) rewards.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 203, + 375, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 377, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 377, + 216 + ], + "score": 1.0, + "content": "2.1 REINFORCEMENT LEARNING: THE NOISE-FREE SETTING", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "Our RL agent interacts with an unknown environment and attempts to maximize the total of his", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "collected reward. The environment is formalized as a Markov Decision Process (MDP), denot-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 135, + 263 + ], + "score": 1.0, + "content": "ing as", + "type": "text" + }, + { + "bbox": [ + 135, + 250, + 220, + 262 + ], + "score": 0.92, + "content": "\\mathcal { M } = \\langle \\boldsymbol { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\boldsymbol { \\gamma } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 249, + 284, + 263 + ], + "score": 1.0, + "content": ". At each time", + "type": "text" + }, + { + "bbox": [ + 284, + 251, + 289, + 260 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 249, + 367, + 263 + ], + "score": 1.0, + "content": ", the agent in state", + "type": "text" + }, + { + "bbox": [ + 368, + 250, + 401, + 261 + ], + "score": 0.91, + "content": "s _ { t } ~ \\in ~ S", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 249, + 467, + 263 + ], + "score": 1.0, + "content": "takes an action", + "type": "text" + }, + { + "bbox": [ + 468, + 250, + 501, + 261 + ], + "score": 0.92, + "content": "a _ { t } \\in \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 249, + 506, + 263 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 259, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 205, + 275 + ], + "score": 1.0, + "content": "which returns a reward", + "type": "text" + }, + { + "bbox": [ + 206, + 261, + 289, + 273 + ], + "score": 0.92, + "content": "r ( s _ { t } , a _ { t } , s _ { t + 1 } ) \\ \\in \\ \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 259, + 433, + 275 + ], + "score": 1.0, + "content": "(which we will also shorthand as", + "type": "text" + }, + { + "bbox": [ + 434, + 262, + 444, + 272 + ], + "score": 0.79, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 259, + 507, + 275 + ], + "score": 1.0, + "content": "), and leads to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 164, + 285 + ], + "score": 1.0, + "content": "the next state", + "type": "text" + }, + { + "bbox": [ + 164, + 272, + 205, + 284 + ], + "score": 0.9, + "content": "s _ { t + 1 } \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 271, + 384, + 285 + ], + "score": 1.0, + "content": "according to a transition probability kernel", + "type": "text" + }, + { + "bbox": [ + 384, + 272, + 393, + 282 + ], + "score": 0.8, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 271, + 505, + 285 + ], + "score": 1.0, + "content": ", which encodes the proba-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 281, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 281, + 131, + 296 + ], + "score": 1.0, + "content": "bility", + "type": "text" + }, + { + "bbox": [ + 131, + 283, + 178, + 294 + ], + "score": 0.92, + "content": "\\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 281, + 233, + 296 + ], + "score": 1.0, + "content": ". Commonly", + "type": "text" + }, + { + "bbox": [ + 234, + 283, + 243, + 293 + ], + "score": 0.83, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 281, + 505, + 296 + ], + "score": 1.0, + "content": "is unknown to the agent. The agent’s goal is to learn the opti-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 259, + 306 + ], + "score": 1.0, + "content": "mal policy, a conditional distribution", + "type": "text" + }, + { + "bbox": [ + 259, + 294, + 287, + 306 + ], + "score": 0.93, + "content": "\\pi ( a | s )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "that maximizes the state’s value function. The value", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "score": 1.0, + "content": "function calculates the cumulative reward the agent is expected to receive given he would follow", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 102, + 311, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 102, + 311, + 183, + 334 + ], + "score": 1.0, + "content": "the current policy", + "type": "text" + }, + { + "bbox": [ + 183, + 318, + 191, + 326 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 311, + 329, + 334 + ], + "score": 1.0, + "content": "after observing the current state", + "type": "text" + }, + { + "bbox": [ + 330, + 317, + 339, + 327 + ], + "score": 0.82, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 311, + 352, + 334 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 353, + 315, + 502, + 329 + ], + "score": 0.83, + "content": "V ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\bar { \\sum _ { k = 1 } ^ { \\infty } } \\gamma ^ { k } r _ { t + k } \\ : | \\ : s _ { t } = s \\right] ,", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 311, + 507, + 334 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 327, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 135, + 340 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 327, + 195, + 340 + ], + "score": 0.92, + "content": "0 ~ \\leq ~ \\gamma ~ \\leq ~ 1 ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 327, + 506, + 340 + ], + "score": 1.0, + "content": "is a discount factor. Intuitively, the agent evaluates how preferable each", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "state is given the current policy. From the Bellman Equation, the optimal value function is given", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 103, + 348, + 507, + 368 + ], + "spans": [ + { + "bbox": [ + 103, + 348, + 122, + 368 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 122, + 350, + 350, + 364 + ], + "score": 0.85, + "content": "\\begin{array} { r } { V ^ { * } ( s ) \\ = \\ \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { s _ { t + 1 } \\in \\mathcal { S } } \\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right) \\left[ r _ { t } + \\gamma V ^ { * } \\left( s _ { t + 1 } \\right) \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 348, + 507, + 368 + ], + "score": 1.0, + "content": ". It is a standard practice for RL al-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 362, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 369, + 375 + ], + "score": 1.0, + "content": "gorithms to learn a state-action value function, also called the", + "type": "text" + }, + { + "bbox": [ + 369, + 363, + 378, + 374 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 362, + 423, + 375 + ], + "score": 1.0, + "content": "-function.", + "type": "text" + }, + { + "bbox": [ + 424, + 363, + 433, + 374 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 362, + 506, + 375 + ], + "score": 1.0, + "content": "-function denotes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 374, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 310, + 385 + ], + "score": 1.0, + "content": "the expected cumulative reward if agent chooses", + "type": "text" + }, + { + "bbox": [ + 310, + 376, + 317, + 384 + ], + "score": 0.74, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 374, + 451, + 385 + ], + "score": 1.0, + "content": "in the current state and follows", + "type": "text" + }, + { + "bbox": [ + 452, + 376, + 460, + 384 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 374, + 504, + 385 + ], + "score": 1.0, + "content": "thereafter:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 385, + 343, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 340, + 397 + ], + "score": 0.83, + "content": "\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi } \\left[ r ( s _ { t } , a _ { t } , s _ { t + 1 } ) + \\gamma V ^ { \\pi } ( s _ { t + 1 } ) \\ | \\ s _ { t } = s , a _ { t } = a \\right] . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 385, + 343, + 397 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 251, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 253, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 253, + 432 + ], + "score": 1.0, + "content": "2.2 PERTURBED REWARD IN RL", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "In many practical settings, our RL agent does not observe the reward feedback perfectly. We con-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 359, + 470 + ], + "score": 1.0, + "content": "sider the following MDP with perturbed reward, denoting as", + "type": "text" + }, + { + "bbox": [ + 360, + 456, + 468, + 470 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { M } } = \\langle \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , C , \\mathcal { P } , \\gamma \\rangle ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 457, + 506, + 470 + ], + "score": 1.0, + "content": ": instead", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 160, + 482 + ], + "score": 1.0, + "content": "of observing", + "type": "text" + }, + { + "bbox": [ + 160, + 469, + 193, + 480 + ], + "score": 0.92, + "content": "\\boldsymbol { r } _ { t } \\in \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 468, + 247, + 482 + ], + "score": 1.0, + "content": "at each time", + "type": "text" + }, + { + "bbox": [ + 248, + 469, + 253, + 478 + ], + "score": 0.74, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "directly (following his action), our RL agent only observes a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 190, + 493 + ], + "score": 1.0, + "content": "perturbed version of", + "type": "text" + }, + { + "bbox": [ + 191, + 482, + 200, + 492 + ], + "score": 0.83, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 480, + 253, + 493 + ], + "score": 1.0, + "content": ", denoting as", + "type": "text" + }, + { + "bbox": [ + 253, + 479, + 285, + 492 + ], + "score": 0.93, + "content": "\\tilde { r } _ { t } \\in \\tilde { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 480, + 506, + 493 + ], + "score": 1.0, + "content": ". For most of our presentations, we focus on the cases", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 491, + 455, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 133, + 506 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 492, + 142, + 503 + ], + "score": 0.7, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 492, + 146, + 506 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 147, + 491, + 156, + 503 + ], + "score": 0.8, + "content": "\\tilde { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 492, + 455, + 506 + ], + "score": 1.0, + "content": "are finite sets; but our results generalize to the continuous reward settings.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 179, + 523 + ], + "score": 1.0, + "content": "The generation of", + "type": "text" + }, + { + "bbox": [ + 179, + 512, + 185, + 521 + ], + "score": 0.8, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 510, + 289, + 523 + ], + "score": 1.0, + "content": "follows a certain function", + "type": "text" + }, + { + "bbox": [ + 289, + 510, + 356, + 522 + ], + "score": 0.92, + "content": "C : \\mathcal { S } \\times \\mathcal { R } \\tilde { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 510, + 505, + 523 + ], + "score": 1.0, + "content": ". To let our presentation stay focused,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "we consider the following simple state-independent3 flipping error rates model: if the rewards are", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 175, + 546 + ], + "score": 1.0, + "content": "binary (consider", + "type": "text" + }, + { + "bbox": [ + 176, + 535, + 188, + 545 + ], + "score": 0.85, + "content": "r _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 532, + 208, + 546 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 534, + 220, + 545 + ], + "score": 0.8, + "content": "r _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 532, + 228, + 546 + ], + "score": 1.0, + "content": "),", + "type": "text" + }, + { + "bbox": [ + 229, + 533, + 305, + 545 + ], + "score": 0.89, + "content": "\\bar { \\tilde { r } } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ ( \\tilde { r } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "can be characterized by the following noise rate", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 154, + 557 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 154, + 546, + 182, + 556 + ], + "score": 0.74, + "content": "e _ { + } , e _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 545, + 195, + 557 + ], + "score": 1.0, + "content": ": e", + "type": "text" + }, + { + "bbox": [ + 195, + 545, + 394, + 556 + ], + "score": 0.67, + "content": "\\mathbf { \\Phi } _ { + } \\ = \\ \\mathbb { P } \\big ( \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { - } \\big | r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { + } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 545, + 401, + 557 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 401, + 545, + 505, + 556 + ], + "score": 0.87, + "content": "e _ { - } ~ = ~ \\mathbb { P } ( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) ~ =", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 554, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 199, + 567 + ], + "score": 0.91, + "content": "r _ { + } | r ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 554, + 451, + 568 + ], + "score": 1.0, + "content": ". When the signal levels are beyond binary, suppose there are", + "type": "text" + }, + { + "bbox": [ + 451, + 556, + 463, + 565 + ], + "score": 0.78, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 554, + 506, + 568 + ], + "score": 1.0, + "content": "outcomes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 187, + 579 + ], + "score": 1.0, + "content": "in total, denoting as", + "type": "text" + }, + { + "bbox": [ + 187, + 567, + 272, + 578 + ], + "score": 0.9, + "content": "[ R _ { 0 } , R _ { 1 } , \\cdot \\cdot \\cdot , R _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 567, + 276, + 579 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 276, + 567, + 285, + 577 + ], + "score": 0.81, + "content": "\\tilde { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "will be generated according to the following confusion", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 135, + 590 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 578, + 168, + 588 + ], + "score": 0.91, + "content": "\\mathbf { C } _ { M \\times M }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 577, + 243, + 590 + ], + "score": 1.0, + "content": "where each entry", + "type": "text" + }, + { + "bbox": [ + 244, + 579, + 259, + 589 + ], + "score": 0.85, + "content": "c _ { j , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "indicates the flipping probability for generating a perturbed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 146, + 600 + ], + "score": 1.0, + "content": "outcome:", + "type": "text" + }, + { + "bbox": [ + 147, + 588, + 259, + 601 + ], + "score": 0.91, + "content": "c _ { j , k } = \\mathbb { P } ( \\tilde { r } _ { t } = R _ { k } | r _ { t } = \\tilde { R _ { j } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 587, + 506, + 600 + ], + "score": 1.0, + "content": ". Again we’d like to note that we focus on settings with finite", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "reward levels for most of our paper, but we provide discussions in Section 3.1 on how to handle", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 610, + 268, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 268, + 622 + ], + "score": 1.0, + "content": "continuous rewards with discretizations.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 627, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "In the paper, we do not assume knowing the noise rates (i.e., the reward confusion matrices), which", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "is different from the assumption of knowing them as adopted in many supervised learning works", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 450, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 450, + 661 + ], + "score": 1.0, + "content": "Natarajan et al. (2013). Instead we will estimate the confusion matrices (Section 3.3).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 123, + 685, + 459, + 700 + ], + "spans": [ + { + "bbox": [ + 123, + 687, + 146, + 699 + ], + "score": 0.83, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 685, + 459, + 700 + ], + "score": 1.0, + "content": "indicates an undiscounted MDP setting (Schwartz, 1993; Sobel, 1994; Kakade, 2003).", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 697, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 117, + 697, + 377, + 711 + ], + "score": 1.0, + "content": "2The MDP with perturbed reward can equivalently be defined as a tuple", + "type": "text" + }, + { + "bbox": [ + 377, + 697, + 470, + 710 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { M } } = \\langle S , \\mathcal { A } , \\mathcal { R } , \\tilde { \\mathcal { R } } , \\mathcal { P } , \\gamma \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 697, + 506, + 711 + ], + "score": 1.0, + "content": ", with the", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 709, + 391, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 185, + 721 + ], + "score": 1.0, + "content": "perturbation function", + "type": "text" + }, + { + "bbox": [ + 185, + 711, + 193, + 720 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 710, + 353, + 721 + ], + "score": 1.0, + "content": "implicitly defined as the difference between", + "type": "text" + }, + { + "bbox": [ + 353, + 711, + 362, + 720 + ], + "score": 0.8, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 710, + 379, + 721 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 379, + 709, + 387, + 720 + ], + "score": 0.84, + "content": "\\tilde { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 710, + 391, + 721 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 719, + 395, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 395, + 734 + ], + "score": 1.0, + "content": "3The case of state-dependent perturbed reward is discussed in Appendix C.3", + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 363, + 93 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 365, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 365, + 96 + ], + "score": 1.0, + "content": "2 PROBLEM FORMULATION AND PRELIMINARIES", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 505, + 179 + ], + "lines": [ + { + "bbox": [ + 104, + 110, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 104, + 110, + 505, + 127 + ], + "score": 1.0, + "content": "In this section, we define our problem of learning from perturbed rewards in reinforcement learning.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Throughout this paper, we will use perturbed reward and noisy reward interchangeably, as each", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 134, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 506, + 147 + ], + "score": 1.0, + "content": "time step of our sequential decision making setting is similar to the “learning with noisy data”", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "setting in supervised learning (Natarajan et al., 2013; Scott et al., 2013; Scott, 2015; Sukhbaatar &", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 506, + 169 + ], + "score": 1.0, + "content": "Fergus, 2014). In what follows, we formulate our Markov Decision Process (MDP) problem and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 168, + 385, + 180 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 385, + 180 + ], + "score": 1.0, + "content": "reinforcement learning (RL) problem with perturbed (noisy) rewards.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 110, + 506, + 180 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 203, + 375, + 214 + ], + "lines": [ + { + "bbox": [ + 105, + 202, + 377, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 377, + 216 + ], + "score": 1.0, + "content": "2.1 REINFORCEMENT LEARNING: THE NOISE-FREE SETTING", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 202, + 377, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 505, + 239 + ], + "score": 1.0, + "content": "Our RL agent interacts with an unknown environment and attempts to maximize the total of his", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "spans": [ + { + "bbox": [ + 106, + 239, + 505, + 250 + ], + "score": 1.0, + "content": "collected reward. The environment is formalized as a Markov Decision Process (MDP), denot-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 104, + 249, + 135, + 263 + ], + "score": 1.0, + "content": "ing as", + "type": "text" + }, + { + "bbox": [ + 135, + 250, + 220, + 262 + ], + "score": 0.92, + "content": "\\mathcal { M } = \\langle \\boldsymbol { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\boldsymbol { \\gamma } \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 249, + 284, + 263 + ], + "score": 1.0, + "content": ". At each time", + "type": "text" + }, + { + "bbox": [ + 284, + 251, + 289, + 260 + ], + "score": 0.73, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 249, + 367, + 263 + ], + "score": 1.0, + "content": ", the agent in state", + "type": "text" + }, + { + "bbox": [ + 368, + 250, + 401, + 261 + ], + "score": 0.91, + "content": "s _ { t } ~ \\in ~ S", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 249, + 467, + 263 + ], + "score": 1.0, + "content": "takes an action", + "type": "text" + }, + { + "bbox": [ + 468, + 250, + 501, + 261 + ], + "score": 0.92, + "content": "a _ { t } \\in \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 249, + 506, + 263 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 259, + 507, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 205, + 275 + ], + "score": 1.0, + "content": "which returns a reward", + "type": "text" + }, + { + "bbox": [ + 206, + 261, + 289, + 273 + ], + "score": 0.92, + "content": "r ( s _ { t } , a _ { t } , s _ { t + 1 } ) \\ \\in \\ \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 259, + 433, + 275 + ], + "score": 1.0, + "content": "(which we will also shorthand as", + "type": "text" + }, + { + "bbox": [ + 434, + 262, + 444, + 272 + ], + "score": 0.79, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 259, + 507, + 275 + ], + "score": 1.0, + "content": "), and leads to", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 164, + 285 + ], + "score": 1.0, + "content": "the next state", + "type": "text" + }, + { + "bbox": [ + 164, + 272, + 205, + 284 + ], + "score": 0.9, + "content": "s _ { t + 1 } \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 271, + 384, + 285 + ], + "score": 1.0, + "content": "according to a transition probability kernel", + "type": "text" + }, + { + "bbox": [ + 384, + 272, + 393, + 282 + ], + "score": 0.8, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 271, + 505, + 285 + ], + "score": 1.0, + "content": ", which encodes the proba-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 281, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 104, + 281, + 131, + 296 + ], + "score": 1.0, + "content": "bility", + "type": "text" + }, + { + "bbox": [ + 131, + 283, + 178, + 294 + ], + "score": 0.92, + "content": "\\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 281, + 233, + 296 + ], + "score": 1.0, + "content": ". Commonly", + "type": "text" + }, + { + "bbox": [ + 234, + 283, + 243, + 293 + ], + "score": 0.83, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 281, + 505, + 296 + ], + "score": 1.0, + "content": "is unknown to the agent. The agent’s goal is to learn the opti-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 259, + 306 + ], + "score": 1.0, + "content": "mal policy, a conditional distribution", + "type": "text" + }, + { + "bbox": [ + 259, + 294, + 287, + 306 + ], + "score": 0.93, + "content": "\\pi ( a | s )", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 293, + 505, + 306 + ], + "score": 1.0, + "content": "that maximizes the state’s value function. The value", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 318 + ], + "score": 1.0, + "content": "function calculates the cumulative reward the agent is expected to receive given he would follow", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 102, + 311, + 507, + 334 + ], + "spans": [ + { + "bbox": [ + 102, + 311, + 183, + 334 + ], + "score": 1.0, + "content": "the current policy", + "type": "text" + }, + { + "bbox": [ + 183, + 318, + 191, + 326 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 311, + 329, + 334 + ], + "score": 1.0, + "content": "after observing the current state", + "type": "text" + }, + { + "bbox": [ + 330, + 317, + 339, + 327 + ], + "score": 0.82, + "content": "s _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 311, + 352, + 334 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 353, + 315, + 502, + 329 + ], + "score": 0.83, + "content": "V ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\bar { \\sum _ { k = 1 } ^ { \\infty } } \\gamma ^ { k } r _ { t + k } \\ : | \\ : s _ { t } = s \\right] ,", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 311, + 507, + 334 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 327, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 135, + 340 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 327, + 195, + 340 + ], + "score": 0.92, + "content": "0 ~ \\leq ~ \\gamma ~ \\leq ~ 1 ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 327, + 506, + 340 + ], + "score": 1.0, + "content": "is a discount factor. Intuitively, the agent evaluates how preferable each", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 505, + 351 + ], + "score": 1.0, + "content": "state is given the current policy. From the Bellman Equation, the optimal value function is given", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 103, + 348, + 507, + 368 + ], + "spans": [ + { + "bbox": [ + 103, + 348, + 122, + 368 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 122, + 350, + 350, + 364 + ], + "score": 0.85, + "content": "\\begin{array} { r } { V ^ { * } ( s ) \\ = \\ \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { s _ { t + 1 } \\in \\mathcal { S } } \\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right) \\left[ r _ { t } + \\gamma V ^ { * } \\left( s _ { t + 1 } \\right) \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 348, + 507, + 368 + ], + "score": 1.0, + "content": ". It is a standard practice for RL al-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 362, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 369, + 375 + ], + "score": 1.0, + "content": "gorithms to learn a state-action value function, also called the", + "type": "text" + }, + { + "bbox": [ + 369, + 363, + 378, + 374 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 362, + 423, + 375 + ], + "score": 1.0, + "content": "-function.", + "type": "text" + }, + { + "bbox": [ + 424, + 363, + 433, + 374 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 362, + 506, + 375 + ], + "score": 1.0, + "content": "-function denotes", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 374, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 310, + 385 + ], + "score": 1.0, + "content": "the expected cumulative reward if agent chooses", + "type": "text" + }, + { + "bbox": [ + 310, + 376, + 317, + 384 + ], + "score": 0.74, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 374, + 451, + 385 + ], + "score": 1.0, + "content": "in the current state and follows", + "type": "text" + }, + { + "bbox": [ + 452, + 376, + 460, + 384 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 374, + 504, + 385 + ], + "score": 1.0, + "content": "thereafter:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 385, + 343, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 340, + 397 + ], + "score": 0.83, + "content": "\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi } \\left[ r ( s _ { t } , a _ { t } , s _ { t + 1 } ) + \\gamma V ^ { \\pi } ( s _ { t + 1 } ) \\ | \\ s _ { t } = s , a _ { t } = a \\right] . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 385, + 343, + 397 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 15, + "bbox_fs": [ + 102, + 227, + 507, + 397 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 420, + 251, + 431 + ], + "lines": [ + { + "bbox": [ + 106, + 419, + 253, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 253, + 432 + ], + "score": 1.0, + "content": "2.2 PERTURBED REWARD IN RL", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 444, + 505, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "In many practical settings, our RL agent does not observe the reward feedback perfectly. We con-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 456, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 359, + 470 + ], + "score": 1.0, + "content": "sider the following MDP with perturbed reward, denoting as", + "type": "text" + }, + { + "bbox": [ + 360, + 456, + 468, + 470 + ], + "score": 0.91, + "content": "\\tilde { \\mathcal { M } } = \\langle \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , C , \\mathcal { P } , \\gamma \\rangle ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 457, + 506, + 470 + ], + "score": 1.0, + "content": ": instead", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 468, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 160, + 482 + ], + "score": 1.0, + "content": "of observing", + "type": "text" + }, + { + "bbox": [ + 160, + 469, + 193, + 480 + ], + "score": 0.92, + "content": "\\boldsymbol { r } _ { t } \\in \\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 468, + 247, + 482 + ], + "score": 1.0, + "content": "at each time", + "type": "text" + }, + { + "bbox": [ + 248, + 469, + 253, + 478 + ], + "score": 0.74, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 468, + 506, + 482 + ], + "score": 1.0, + "content": "directly (following his action), our RL agent only observes a", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 190, + 493 + ], + "score": 1.0, + "content": "perturbed version of", + "type": "text" + }, + { + "bbox": [ + 191, + 482, + 200, + 492 + ], + "score": 0.83, + "content": "r _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 480, + 253, + 493 + ], + "score": 1.0, + "content": ", denoting as", + "type": "text" + }, + { + "bbox": [ + 253, + 479, + 285, + 492 + ], + "score": 0.93, + "content": "\\tilde { r } _ { t } \\in \\tilde { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 480, + 506, + 493 + ], + "score": 1.0, + "content": ". For most of our presentations, we focus on the cases", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 491, + 455, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 133, + 506 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 492, + 142, + 503 + ], + "score": 0.7, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 492, + 146, + 506 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 147, + 491, + 156, + 503 + ], + "score": 0.8, + "content": "\\tilde { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 492, + 455, + 506 + ], + "score": 1.0, + "content": "are finite sets; but our results generalize to the continuous reward settings.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 445, + 506, + 506 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 510, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 179, + 523 + ], + "score": 1.0, + "content": "The generation of", + "type": "text" + }, + { + "bbox": [ + 179, + 512, + 185, + 521 + ], + "score": 0.8, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 510, + 289, + 523 + ], + "score": 1.0, + "content": "follows a certain function", + "type": "text" + }, + { + "bbox": [ + 289, + 510, + 356, + 522 + ], + "score": 0.92, + "content": "C : \\mathcal { S } \\times \\mathcal { R } \\tilde { \\mathcal { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 510, + 505, + 523 + ], + "score": 1.0, + "content": ". To let our presentation stay focused,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 535 + ], + "score": 1.0, + "content": "we consider the following simple state-independent3 flipping error rates model: if the rewards are", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 175, + 546 + ], + "score": 1.0, + "content": "binary (consider", + "type": "text" + }, + { + "bbox": [ + 176, + 535, + 188, + 545 + ], + "score": 0.85, + "content": "r _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 532, + 208, + 546 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 534, + 220, + 545 + ], + "score": 0.8, + "content": "r _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 532, + 228, + 546 + ], + "score": 1.0, + "content": "),", + "type": "text" + }, + { + "bbox": [ + 229, + 533, + 305, + 545 + ], + "score": 0.89, + "content": "\\bar { \\tilde { r } } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ ( \\tilde { r } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "can be characterized by the following noise rate", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 545, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 154, + 557 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 154, + 546, + 182, + 556 + ], + "score": 0.74, + "content": "e _ { + } , e _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 545, + 195, + 557 + ], + "score": 1.0, + "content": ": e", + "type": "text" + }, + { + "bbox": [ + 195, + 545, + 394, + 556 + ], + "score": 0.67, + "content": "\\mathbf { \\Phi } _ { + } \\ = \\ \\mathbb { P } \\big ( \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { - } \\big | r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { + } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 545, + 401, + 557 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 401, + 545, + 505, + 556 + ], + "score": 0.87, + "content": "e _ { - } ~ = ~ \\mathbb { P } ( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) ~ =", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 554, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 199, + 567 + ], + "score": 0.91, + "content": "r _ { + } | r ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 554, + 451, + 568 + ], + "score": 1.0, + "content": ". When the signal levels are beyond binary, suppose there are", + "type": "text" + }, + { + "bbox": [ + 451, + 556, + 463, + 565 + ], + "score": 0.78, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 554, + 506, + 568 + ], + "score": 1.0, + "content": "outcomes", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 187, + 579 + ], + "score": 1.0, + "content": "in total, denoting as", + "type": "text" + }, + { + "bbox": [ + 187, + 567, + 272, + 578 + ], + "score": 0.9, + "content": "[ R _ { 0 } , R _ { 1 } , \\cdot \\cdot \\cdot , R _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 567, + 276, + 579 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 276, + 567, + 285, + 577 + ], + "score": 0.81, + "content": "\\tilde { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "will be generated according to the following confusion", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 135, + 590 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 136, + 578, + 168, + 588 + ], + "score": 0.91, + "content": "\\mathbf { C } _ { M \\times M }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 577, + 243, + 590 + ], + "score": 1.0, + "content": "where each entry", + "type": "text" + }, + { + "bbox": [ + 244, + 579, + 259, + 589 + ], + "score": 0.85, + "content": "c _ { j , k }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "indicates the flipping probability for generating a perturbed", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 146, + 600 + ], + "score": 1.0, + "content": "outcome:", + "type": "text" + }, + { + "bbox": [ + 147, + 588, + 259, + 601 + ], + "score": 0.91, + "content": "c _ { j , k } = \\mathbb { P } ( \\tilde { r } _ { t } = R _ { k } | r _ { t } = \\tilde { R _ { j } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 587, + 506, + 600 + ], + "score": 1.0, + "content": ". Again we’d like to note that we focus on settings with finite", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "reward levels for most of our paper, but we provide discussions in Section 3.1 on how to handle", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 610, + 268, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 610, + 268, + 622 + ], + "score": 1.0, + "content": "continuous rewards with discretizations.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 510, + 506, + 622 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 627, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "In the paper, we do not assume knowing the noise rates (i.e., the reward confusion matrices), which", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "is different from the assumption of knowing them as adopted in many supervised learning works", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 649, + 450, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 450, + 661 + ], + "score": 1.0, + "content": "Natarajan et al. (2013). Instead we will estimate the confusion matrices (Section 3.3).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 627, + 505, + 661 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 331, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 332, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 332, + 96 + ], + "score": 1.0, + "content": "3 LEARNING WITH PERTURBED REWARDS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "In this section, we first introduce an unbiased estimator for binary rewards in our reinforcement", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "learning setting when the error rates are known. This idea is inspired by Natarajan et al. (2013), but", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 470, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 470, + 140 + ], + "score": 1.0, + "content": "we will extend the method to the multi-outcome, as well as the continuous reward settings.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 108, + 151, + 316, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 317, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 317, + 164 + ], + "score": 1.0, + "content": "3.1 UNBIASED ESTIMATOR FOR TRUE REWARD", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "With the knowledge of noise rates (reward confusion matrices), we are able to establish an unbiased", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "approximation of the true reward in a similar way as done in Natarajan et al. (2013). We will", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "call such a constructed unbiased reward as a surrogate reward. To give an intuition, we start with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 205, + 401, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 267, + 219 + ], + "score": 1.0, + "content": "replicating the results for binary reward", + "type": "text" + }, + { + "bbox": [ + 267, + 205, + 326, + 218 + ], + "score": 0.93, + "content": "\\mathcal { R } = \\{ r _ { - } , r _ { + } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 205, + 401, + 219 + ], + "score": 1.0, + "content": "in our RL setting:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 303, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 303, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 303, + 232 + ], + "score": 1.0, + "content": "Lemma 1. Let r be bounded. Then, if we define,", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 232, + 422, + 264 + ], + "lines": [ + { + "bbox": [ + 187, + 232, + 422, + 264 + ], + "spans": [ + { + "bbox": [ + 187, + 232, + 422, + 264 + ], + "score": 0.92, + "content": "\\hat { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) : = \\left\\{ \\begin{array} { l l } { \\frac { ( 1 - e _ { - } ) \\cdot r _ { + } - e _ { + } \\cdot r _ { - } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { + } \\right) } \\\\ { \\frac { ( 1 - e _ { + } ) \\cdot r _ { - } - e _ { - } \\cdot r _ { + } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } \\right) } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "3442e546a812b4988d1a10bb9f4501a9741b0683ad438c7e6ad05c023707d4ce.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 232, + 422, + 248.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 187, + 248.0, + 422, + 264.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 266, + 390, + 280 + ], + "lines": [ + { + "bbox": [ + 107, + 264, + 389, + 282 + ], + "spans": [ + { + "bbox": [ + 107, + 264, + 174, + 282 + ], + "score": 1.0, + "content": "we have for any", + "type": "text" + }, + { + "bbox": [ + 175, + 267, + 389, + 280 + ], + "score": 0.74, + "content": "r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) .", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "In the standard supervised learning setting, the above property guarantees convergence - as more", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "training data are collected, the empirical surrogate risk converges to its expectation, which is the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 309, + 504, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 504, + 321 + ], + "score": 1.0, + "content": "same as the expectation of the true risk (due to unbiased estimators). This is also the intuition why", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 459, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 459, + 332 + ], + "score": 1.0, + "content": "we would like to replace the reward terms with surrogate rewards in our RL algorithms.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 504, + 349 + ], + "score": 1.0, + "content": "The above idea can be generalized to the multi-outcome setting in a fairly straight-forward way.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 135, + 361 + ], + "score": 1.0, + "content": "Define", + "type": "text" + }, + { + "bbox": [ + 135, + 348, + 331, + 361 + ], + "score": 0.87, + "content": "\\hat { \\mathbf { R } } : = [ \\hat { r } ( \\tilde { r } = R _ { 0 } ) , \\hat { r } ( \\tilde { r } = R _ { 1 } ) , . . . , \\hat { r } ( \\tilde { r } = R _ { M - 1 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 348, + 361, + 361 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 361, + 348, + 408, + 361 + ], + "score": 0.89, + "content": "\\hat { r } ( \\tilde { r } = R _ { m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "denotes the value of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 294, + 372 + ], + "score": 1.0, + "content": "surrogate reward when the observed reward is", + "type": "text" + }, + { + "bbox": [ + 295, + 361, + 308, + 371 + ], + "score": 0.87, + "content": "R _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 360, + 330, + 372 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 330, + 361, + 439, + 372 + ], + "score": 0.91, + "content": "{ \\bf R } = [ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "be the bounded", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 371, + 352, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 185, + 383 + ], + "score": 1.0, + "content": "reward matrix with", + "type": "text" + }, + { + "bbox": [ + 185, + 371, + 197, + 381 + ], + "score": 0.8, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 371, + 352, + 383 + ], + "score": 1.0, + "content": "values. We have the following results:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 334, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 336, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 190, + 398 + ], + "score": 1.0, + "content": "Lemma 2. Suppose", + "type": "text" + }, + { + "bbox": [ + 190, + 384, + 222, + 396 + ], + "score": 0.91, + "content": "\\mathbf { C } _ { M \\times M }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 381, + 336, + 398 + ], + "score": 1.0, + "content": "is invertible. With defining:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 276, + 398, + 333, + 411 + ], + "lines": [ + { + "bbox": [ + 276, + 398, + 333, + 411 + ], + "spans": [ + { + "bbox": [ + 276, + 398, + 333, + 411 + ], + "score": 0.83, + "content": "\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}", + "type": "interline_equation", + "image_path": "20f06c62fe8ec2cf7e4eca1d19504b5273bad9f6fc050ffd06f8932149585713.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 276, + 398, + 333, + 411 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 414, + 391, + 428 + ], + "lines": [ + { + "bbox": [ + 108, + 413, + 390, + 429 + ], + "spans": [ + { + "bbox": [ + 108, + 413, + 174, + 429 + ], + "score": 1.0, + "content": "we have for any", + "type": "text" + }, + { + "bbox": [ + 175, + 414, + 390, + 428 + ], + "score": 0.79, + "content": "r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) .", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 438, + 444 + ], + "score": 1.0, + "content": "Continuous reward When the reward signal is continuous, we discretize it into", + "type": "text" + }, + { + "bbox": [ + 438, + 433, + 450, + 442 + ], + "score": 0.8, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "intervals and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "score": 1.0, + "content": "view each interval as a reward level, with its value approximated by its middle point. With increasing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 455, + 118, + 464 + ], + "score": 0.76, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 453, + 505, + 466 + ], + "score": 1.0, + "content": ", this quantization error can be made arbitrarily small. Our method is then the same as the solution", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "for the multi-outcome setting, except for replacing rewards with discretized ones. Note that the finer-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 475, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 490 + ], + "score": 1.0, + "content": "degree quantization we take, the smaller the quantization error - but we would suffer from learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 487, + 491, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 491, + 500 + ], + "score": 1.0, + "content": "a bigger reward confusion matrix. This is a trade-off question that can be addressed empirically.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 503, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "score": 1.0, + "content": "So far we have assumed knowing the confusion matrices, but we will address this additional estima-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 515, + 383, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 383, + 527 + ], + "score": 1.0, + "content": "tion issue in Section 3.3, and present our complete algorithm therein.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 107, + 538, + 381, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 537, + 382, + 554 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 321, + 554 + ], + "score": 1.0, + "content": "3.2 CONVERGENCE AND SAMPLE COMPLEXITY:", + "type": "text" + }, + { + "bbox": [ + 322, + 540, + 330, + 551 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 537, + 382, + 554 + ], + "score": 1.0, + "content": "-LEARNING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 105, + 559, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "We now analyze the convergence and sample complexity of our surrogate reward based RL algo-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 389, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 235, + 583 + ], + "score": 1.0, + "content": "rithms (with assuming knowing", + "type": "text" + }, + { + "bbox": [ + 235, + 571, + 245, + 581 + ], + "score": 0.54, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 570, + 279, + 583 + ], + "score": 1.0, + "content": "), taking", + "type": "text" + }, + { + "bbox": [ + 279, + 571, + 288, + 582 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 570, + 389, + 583 + ], + "score": 1.0, + "content": "-Learning as an example.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 109, + 585, + 487, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 584, + 486, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 486, + 599 + ], + "score": 1.0, + "content": "Convergence guarantee First, the convergence guarantee is stated in the following theorem:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 504, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 290, + 614 + ], + "score": 1.0, + "content": "Theorem 1. Given a finite MDP, denoting as", + "type": "text" + }, + { + "bbox": [ + 290, + 598, + 378, + 613 + ], + "score": 0.93, + "content": "\\hat { \\mathcal { M } } = \\langle S , \\mathcal { A } , \\hat { \\mathcal { R } } , \\mathcal { P } , \\gamma \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 598, + 396, + 614 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 396, + 601, + 405, + 612 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 598, + 506, + 614 + ], + "score": 1.0, + "content": "-learning algorithm with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 611, + 284, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 284, + 623 + ], + "score": 1.0, + "content": "surrogate rewards, given by the update rule,", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 624, + 429, + 649 + ], + "lines": [ + { + "bbox": [ + 181, + 624, + 429, + 649 + ], + "spans": [ + { + "bbox": [ + 181, + 624, + 429, + 649 + ], + "score": 0.93, + "content": "Q _ { t + 1 } ( s _ { t } , a _ { t } ) = ( 1 - \\alpha _ { t } ) Q ( s _ { t } , a _ { t } ) + \\alpha _ { t } \\left[ \\hat { r } _ { t } + \\gamma \\operatorname* { m a x } _ { b \\in \\cal A } Q ( { s } _ { t + 1 } , b ) \\right] ,", + "type": "interline_equation", + "image_path": "a2abed8b6905718eec7d2586af14bcbc5a9bc860e6cc9b0612ae2ac639baa1a7.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 181, + 624, + 429, + 649 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 651, + 443, + 665 + ], + "lines": [ + { + "bbox": [ + 107, + 650, + 441, + 666 + ], + "spans": [ + { + "bbox": [ + 107, + 650, + 232, + 666 + ], + "score": 1.0, + "content": "converges w.p.1 to the optimal", + "type": "text" + }, + { + "bbox": [ + 232, + 653, + 241, + 664 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 650, + 321, + 666 + ], + "score": 1.0, + "content": "-function as long as", + "type": "text" + }, + { + "bbox": [ + 322, + 652, + 372, + 665 + ], + "score": 0.9, + "content": "\\textstyle \\sum _ { t } \\alpha _ { t } = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 650, + 390, + 666 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 390, + 651, + 441, + 665 + ], + "score": 0.86, + "content": "\\textstyle \\sum _ { t } \\alpha _ { t } ^ { 2 } < \\infty", + "type": "inline_equation" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 671, + 505, + 739 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 399, + 685 + ], + "score": 1.0, + "content": "Note that the term on the right hand of Eqn. (3) includes surrogate reward", + "type": "text" + }, + { + "bbox": [ + 399, + 673, + 405, + 682 + ], + "score": 0.83, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 671, + 505, + 685 + ], + "score": 1.0, + "content": "estimated using Eqn. (1)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 460, + 695 + ], + "score": 1.0, + "content": "and Eqn. (2). Theorem 1 states that that agents will converge to the optimal policy", + "type": "text" + }, + { + "bbox": [ + 460, + 684, + 482, + 695 + ], + "score": 0.5, + "content": "w . p . I", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 694, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 707 + ], + "score": 1.0, + "content": "replacing the rewards with surrogate rewards, despite of the noises in observing rewards. This result", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 705, + 505, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 505, + 717 + ], + "score": 1.0, + "content": "is not surprising - though the surrogate rewards introduce larger variance, we are grateful of their", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 716, + 506, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 716, + 506, + 729 + ], + "score": 1.0, + "content": "unbiasedness, which grants us the convergence. In other words, the addition of the perturbed reward", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 726, + 349, + 740 + ], + "spans": [ + { + "bbox": [ + 105, + 726, + 297, + 740 + ], + "score": 1.0, + "content": "does not destroy the convergence guarantees of", + "type": "text" + }, + { + "bbox": [ + 297, + 728, + 306, + 739 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 726, + 349, + 740 + ], + "score": 1.0, + "content": "-Learning.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5 + } + ], + "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, + 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": "title", + "bbox": [ + 107, + 81, + 331, + 94 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 332, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 332, + 96 + ], + "score": 1.0, + "content": "3 LEARNING WITH PERTURBED REWARDS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 139 + ], + "lines": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "In this section, we first introduce an unbiased estimator for binary rewards in our reinforcement", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 506, + 129 + ], + "score": 1.0, + "content": "learning setting when the error rates are known. This idea is inspired by Natarajan et al. (2013), but", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 470, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 470, + 140 + ], + "score": 1.0, + "content": "we will extend the method to the multi-outcome, as well as the continuous reward settings.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 105, + 506, + 140 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 151, + 316, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 317, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 317, + 164 + ], + "score": 1.0, + "content": "3.1 UNBIASED ESTIMATOR FOR TRUE REWARD", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 172, + 505, + 217 + ], + "lines": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 171, + 505, + 185 + ], + "score": 1.0, + "content": "With the knowledge of noise rates (reward confusion matrices), we are able to establish an unbiased", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 183, + 505, + 196 + ], + "score": 1.0, + "content": "approximation of the true reward in a similar way as done in Natarajan et al. (2013). We will", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 194, + 505, + 207 + ], + "score": 1.0, + "content": "call such a constructed unbiased reward as a surrogate reward. To give an intuition, we start with", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 205, + 401, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 267, + 219 + ], + "score": 1.0, + "content": "replicating the results for binary reward", + "type": "text" + }, + { + "bbox": [ + 267, + 205, + 326, + 218 + ], + "score": 0.93, + "content": "\\mathcal { R } = \\{ r _ { - } , r _ { + } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 205, + 401, + 219 + ], + "score": 1.0, + "content": "in our RL setting:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 171, + 505, + 219 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 303, + 230 + ], + "lines": [ + { + "bbox": [ + 106, + 216, + 303, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 216, + 303, + 232 + ], + "score": 1.0, + "content": "Lemma 1. Let r be bounded. Then, if we define,", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 216, + 303, + 232 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 232, + 422, + 264 + ], + "lines": [ + { + "bbox": [ + 187, + 232, + 422, + 264 + ], + "spans": [ + { + "bbox": [ + 187, + 232, + 422, + 264 + ], + "score": 0.92, + "content": "\\hat { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) : = \\left\\{ \\begin{array} { l l } { \\frac { ( 1 - e _ { - } ) \\cdot r _ { + } - e _ { + } \\cdot r _ { - } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { + } \\right) } \\\\ { \\frac { ( 1 - e _ { + } ) \\cdot r _ { - } - e _ { - } \\cdot r _ { + } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } \\right) } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "3442e546a812b4988d1a10bb9f4501a9741b0683ad438c7e6ad05c023707d4ce.jpg" + } + ] + } + ], + "index": 10.5, + "virtual_lines": [ + { + "bbox": [ + 187, + 232, + 422, + 248.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 187, + 248.0, + 422, + 264.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 266, + 390, + 280 + ], + "lines": [ + { + "bbox": [ + 107, + 264, + 389, + 282 + ], + "spans": [ + { + "bbox": [ + 107, + 264, + 174, + 282 + ], + "score": 1.0, + "content": "we have for any", + "type": "text" + }, + { + "bbox": [ + 175, + 267, + 389, + 280 + ], + "score": 0.74, + "content": "r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) .", + "type": "inline_equation" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 107, + 264, + 389, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 504, + 331 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 300 + ], + "score": 1.0, + "content": "In the standard supervised learning setting, the above property guarantees convergence - as more", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "training data are collected, the empirical surrogate risk converges to its expectation, which is the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 309, + 504, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 309, + 504, + 321 + ], + "score": 1.0, + "content": "same as the expectation of the true risk (due to unbiased estimators). This is also the intuition why", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 320, + 459, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 459, + 332 + ], + "score": 1.0, + "content": "we would like to replace the reward terms with surrogate rewards in our RL algorithms.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 286, + 506, + 332 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 504, + 349 + ], + "score": 1.0, + "content": "The above idea can be generalized to the multi-outcome setting in a fairly straight-forward way.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 135, + 361 + ], + "score": 1.0, + "content": "Define", + "type": "text" + }, + { + "bbox": [ + 135, + 348, + 331, + 361 + ], + "score": 0.87, + "content": "\\hat { \\mathbf { R } } : = [ \\hat { r } ( \\tilde { r } = R _ { 0 } ) , \\hat { r } ( \\tilde { r } = R _ { 1 } ) , . . . , \\hat { r } ( \\tilde { r } = R _ { M - 1 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 348, + 361, + 361 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 361, + 348, + 408, + 361 + ], + "score": 0.89, + "content": "\\hat { r } ( \\tilde { r } = R _ { m } )", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "denotes the value of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 294, + 372 + ], + "score": 1.0, + "content": "surrogate reward when the observed reward is", + "type": "text" + }, + { + "bbox": [ + 295, + 361, + 308, + 371 + ], + "score": 0.87, + "content": "R _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 360, + 330, + 372 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 330, + 361, + 439, + 372 + ], + "score": 0.91, + "content": "{ \\bf R } = [ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "be the bounded", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 371, + 352, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 185, + 383 + ], + "score": 1.0, + "content": "reward matrix with", + "type": "text" + }, + { + "bbox": [ + 185, + 371, + 197, + 381 + ], + "score": 0.8, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 371, + 352, + 383 + ], + "score": 1.0, + "content": "values. We have the following results:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 335, + 505, + 383 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 383, + 334, + 396 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 336, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 190, + 398 + ], + "score": 1.0, + "content": "Lemma 2. Suppose", + "type": "text" + }, + { + "bbox": [ + 190, + 384, + 222, + 396 + ], + "score": 0.91, + "content": "\\mathbf { C } _ { M \\times M }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 381, + 336, + 398 + ], + "score": 1.0, + "content": "is invertible. With defining:", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 381, + 336, + 398 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 276, + 398, + 333, + 411 + ], + "lines": [ + { + "bbox": [ + 276, + 398, + 333, + 411 + ], + "spans": [ + { + "bbox": [ + 276, + 398, + 333, + 411 + ], + "score": 0.83, + "content": "\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}", + "type": "interline_equation", + "image_path": "20f06c62fe8ec2cf7e4eca1d19504b5273bad9f6fc050ffd06f8932149585713.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 276, + 398, + 333, + 411 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 109, + 414, + 391, + 428 + ], + "lines": [ + { + "bbox": [ + 108, + 413, + 390, + 429 + ], + "spans": [ + { + "bbox": [ + 108, + 413, + 174, + 429 + ], + "score": 1.0, + "content": "we have for any", + "type": "text" + }, + { + "bbox": [ + 175, + 414, + 390, + 428 + ], + "score": 0.79, + "content": "r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) .", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 108, + 413, + 390, + 429 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 431, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 438, + 444 + ], + "score": 1.0, + "content": "Continuous reward When the reward signal is continuous, we discretize it into", + "type": "text" + }, + { + "bbox": [ + 438, + 433, + 450, + 442 + ], + "score": 0.8, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 431, + 505, + 444 + ], + "score": 1.0, + "content": "intervals and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 457 + ], + "score": 1.0, + "content": "view each interval as a reward level, with its value approximated by its middle point. With increasing", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 455, + 118, + 464 + ], + "score": 0.76, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 453, + 505, + 466 + ], + "score": 1.0, + "content": ", this quantization error can be made arbitrarily small. Our method is then the same as the solution", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "for the multi-outcome setting, except for replacing rewards with discretized ones. Note that the finer-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 475, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 506, + 490 + ], + "score": 1.0, + "content": "degree quantization we take, the smaller the quantization error - but we would suffer from learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 487, + 491, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 491, + 500 + ], + "score": 1.0, + "content": "a bigger reward confusion matrix. This is a trade-off question that can be addressed empirically.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 431, + 506, + 500 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 503, + 527 + ], + "lines": [ + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 504, + 515 + ], + "score": 1.0, + "content": "So far we have assumed knowing the confusion matrices, but we will address this additional estima-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 515, + 383, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 515, + 383, + 527 + ], + "score": 1.0, + "content": "tion issue in Section 3.3, and present our complete algorithm therein.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 106, + 504, + 504, + 527 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 538, + 381, + 551 + ], + "lines": [ + { + "bbox": [ + 104, + 537, + 382, + 554 + ], + "spans": [ + { + "bbox": [ + 104, + 537, + 321, + 554 + ], + "score": 1.0, + "content": "3.2 CONVERGENCE AND SAMPLE COMPLEXITY:", + "type": "text" + }, + { + "bbox": [ + 322, + 540, + 330, + 551 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 537, + 382, + 554 + ], + "score": 1.0, + "content": "-LEARNING", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 105, + 559, + 504, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "We now analyze the convergence and sample complexity of our surrogate reward based RL algo-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 570, + 389, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 235, + 583 + ], + "score": 1.0, + "content": "rithms (with assuming knowing", + "type": "text" + }, + { + "bbox": [ + 235, + 571, + 245, + 581 + ], + "score": 0.54, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 570, + 279, + 583 + ], + "score": 1.0, + "content": "), taking", + "type": "text" + }, + { + "bbox": [ + 279, + 571, + 288, + 582 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 570, + 389, + 583 + ], + "score": 1.0, + "content": "-Learning as an example.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 559, + 505, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 585, + 487, + 597 + ], + "lines": [ + { + "bbox": [ + 106, + 584, + 486, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 486, + 599 + ], + "score": 1.0, + "content": "Convergence guarantee First, the convergence guarantee is stated in the following theorem:", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 584, + 486, + 599 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 504, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 290, + 614 + ], + "score": 1.0, + "content": "Theorem 1. Given a finite MDP, denoting as", + "type": "text" + }, + { + "bbox": [ + 290, + 598, + 378, + 613 + ], + "score": 0.93, + "content": "\\hat { \\mathcal { M } } = \\langle S , \\mathcal { A } , \\hat { \\mathcal { R } } , \\mathcal { P } , \\gamma \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 598, + 396, + 614 + ], + "score": 1.0, + "content": ", the", + "type": "text" + }, + { + "bbox": [ + 396, + 601, + 405, + 612 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 598, + 506, + 614 + ], + "score": 1.0, + "content": "-learning algorithm with", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 611, + 284, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 284, + 623 + ], + "score": 1.0, + "content": "surrogate rewards, given by the update rule,", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 598, + 506, + 623 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 624, + 429, + 649 + ], + "lines": [ + { + "bbox": [ + 181, + 624, + 429, + 649 + ], + "spans": [ + { + "bbox": [ + 181, + 624, + 429, + 649 + ], + "score": 0.93, + "content": "Q _ { t + 1 } ( s _ { t } , a _ { t } ) = ( 1 - \\alpha _ { t } ) Q ( s _ { t } , a _ { t } ) + \\alpha _ { t } \\left[ \\hat { r } _ { t } + \\gamma \\operatorname* { m a x } _ { b \\in \\cal A } Q ( { s } _ { t + 1 } , b ) \\right] ,", + "type": "interline_equation", + "image_path": "a2abed8b6905718eec7d2586af14bcbc5a9bc860e6cc9b0612ae2ac639baa1a7.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 181, + 624, + 429, + 649 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 651, + 443, + 665 + ], + "lines": [ + { + "bbox": [ + 107, + 650, + 441, + 666 + ], + "spans": [ + { + "bbox": [ + 107, + 650, + 232, + 666 + ], + "score": 1.0, + "content": "converges w.p.1 to the optimal", + "type": "text" + }, + { + "bbox": [ + 232, + 653, + 241, + 664 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 650, + 321, + 666 + ], + "score": 1.0, + "content": "-function as long as", + "type": "text" + }, + { + "bbox": [ + 322, + 652, + 372, + 665 + ], + "score": 0.9, + "content": "\\textstyle \\sum _ { t } \\alpha _ { t } = \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 650, + 390, + 666 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 390, + 651, + 441, + 665 + ], + "score": 0.86, + "content": "\\textstyle \\sum _ { t } \\alpha _ { t } ^ { 2 } < \\infty", + "type": "inline_equation" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 107, + 650, + 441, + 666 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 671, + 505, + 739 + ], + "lines": [ + { + "bbox": [ + 105, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 399, + 685 + ], + "score": 1.0, + "content": "Note that the term on the right hand of Eqn. (3) includes surrogate reward", + "type": "text" + }, + { + "bbox": [ + 399, + 673, + 405, + 682 + ], + "score": 0.83, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 671, + 505, + 685 + ], + "score": 1.0, + "content": "estimated using Eqn. (1)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 460, + 695 + ], + "score": 1.0, + "content": "and Eqn. (2). Theorem 1 states that that agents will converge to the optimal policy", + "type": "text" + }, + { + "bbox": [ + 460, + 684, + 482, + 695 + ], + "score": 0.5, + "content": "w . p . I", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 694, + 506, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 694, + 506, + 707 + ], + "score": 1.0, + "content": "replacing the rewards with surrogate rewards, despite of the noises in observing rewards. This result", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 705, + 505, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 505, + 717 + ], + "score": 1.0, + "content": "is not surprising - though the surrogate rewards introduce larger variance, we are grateful of their", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 716, + 506, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 716, + 506, + 729 + ], + "score": 1.0, + "content": "unbiasedness, which grants us the convergence. In other words, the addition of the perturbed reward", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 726, + 349, + 740 + ], + "spans": [ + { + "bbox": [ + 105, + 726, + 297, + 740 + ], + "score": 1.0, + "content": "does not destroy the convergence guarantees of", + "type": "text" + }, + { + "bbox": [ + 297, + 728, + 306, + 739 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 726, + 349, + 740 + ], + "score": 1.0, + "content": "-Learning.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 671, + 506, + 740 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Sample complexity To establish our sample complexity results, we first introduce a generative", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "model following previous literature (Kearns & Singh, 1998; 2000; Kearns et al., 1999). This is a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 294, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 294, + 117 + ], + "score": 1.0, + "content": "practical MDP setting to simplify the analysis.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 505, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 244, + 131 + ], + "score": 1.0, + "content": "Definition 1. A generative model", + "type": "text" + }, + { + "bbox": [ + 244, + 118, + 272, + 131 + ], + "score": 0.92, + "content": "G ( \\mathcal { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 117, + 325, + 131 + ], + "score": 1.0, + "content": "for an MDP", + "type": "text" + }, + { + "bbox": [ + 326, + 119, + 339, + 129 + ], + "score": 0.53, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "is a sampling model which takes a state-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 127, + 504, + 144 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 153, + 144 + ], + "score": 1.0, + "content": "action pair", + "type": "text" + }, + { + "bbox": [ + 154, + 129, + 183, + 141 + ], + "score": 0.92, + "content": "\\left( { { s _ { t } } , { a _ { t } } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 127, + 376, + 144 + ], + "score": 1.0, + "content": "as input, and outputs the corresponding reward", + "type": "text" + }, + { + "bbox": [ + 376, + 129, + 411, + 141 + ], + "score": 0.94, + "content": "r ( s _ { t } , a _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 127, + 484, + 144 + ], + "score": 1.0, + "content": "and the next state", + "type": "text" + }, + { + "bbox": [ + 484, + 132, + 504, + 141 + ], + "score": 0.88, + "content": "s _ { t + 1 }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 140, + 379, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 237, + 153 + ], + "score": 1.0, + "content": "randomly with the probability of", + "type": "text" + }, + { + "bbox": [ + 238, + 140, + 288, + 152 + ], + "score": 0.91, + "content": "\\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 140, + 309, + 153 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 310, + 140, + 375, + 152 + ], + "score": 0.93, + "content": "s _ { t + 1 } \\sim \\mathbb { P } ( \\cdot | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 140, + 379, + 153 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "Exact value iteration is impractical if the agents follow the generative models above exactly (Kakade,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 170, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 295, + 184 + ], + "score": 1.0, + "content": "2003). Consequently, we introduce a phased", + "type": "text" + }, + { + "bbox": [ + 295, + 172, + 304, + 182 + ], + "score": 0.72, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 170, + 505, + 184 + ], + "score": 1.0, + "content": "-Learning which is similar to the ones presented", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "score": 1.0, + "content": "in Kakade (2003); Kearns & Singh (1998) for the convenience of proving our sample complexity", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 245, + 207 + ], + "score": 1.0, + "content": "results. We briefly outline phased", + "type": "text" + }, + { + "bbox": [ + 246, + 194, + 254, + 204 + ], + "score": 0.71, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "-Learning as follows - the complete description (Algorithm 2)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 224, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 224, + 216 + ], + "score": 1.0, + "content": "can be found in Appendix A.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 194, + 230 + ], + "score": 1.0, + "content": "Definition 2. Phased", + "type": "text" + }, + { + "bbox": [ + 194, + 218, + 202, + 229 + ], + "score": 0.47, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "-Learning algorithm takes m samples per phase by calling generative model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 107, + 228, + 135, + 241 + ], + "score": 0.91, + "content": "G ( \\mathcal { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 228, + 429, + 241 + ], + "score": 1.0, + "content": ". It uses the collected m samples to estimate the transition probability", + "type": "text" + }, + { + "bbox": [ + 430, + 230, + 439, + 239 + ], + "score": 0.77, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "and update the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 354, + 255 + ], + "score": 1.0, + "content": "estimated value function per phase. Calling generative model", + "type": "text" + }, + { + "bbox": [ + 354, + 240, + 383, + 254 + ], + "score": 0.93, + "content": "G ( \\hat { \\mathcal { M } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "means that surrogate rewards", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 339, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 339, + 265 + ], + "score": 1.0, + "content": "are returned and used to update value function per phase.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 374, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 374, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 245, + 286 + ], + "score": 1.0, + "content": "The sample complexity of Phased", + "type": "text" + }, + { + "bbox": [ + 245, + 273, + 254, + 284 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 272, + 374, + 286 + ], + "score": 1.0, + "content": "-Learning is given as follows:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 245, + 299 + ], + "score": 1.0, + "content": "Theorem 2. (Upper Bound) Let", + "type": "text" + }, + { + "bbox": [ + 245, + 286, + 306, + 298 + ], + "score": 0.91, + "content": "r ~ \\in ~ [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 285, + 393, + 299 + ], + "score": 1.0, + "content": "be bounded reward,", + "type": "text" + }, + { + "bbox": [ + 394, + 286, + 404, + 297 + ], + "score": 0.59, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "be an invertible reward", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 195, + 310 + ], + "score": 1.0, + "content": "confusion matrix with", + "type": "text" + }, + { + "bbox": [ + 195, + 298, + 226, + 309 + ], + "score": 0.61, + "content": "\\operatorname* { d e t } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 297, + 445, + 310 + ], + "score": 1.0, + "content": "denoting its determinant. For an appropriate choice of", + "type": "text" + }, + { + "bbox": [ + 446, + 300, + 455, + 308 + ], + "score": 0.35, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 297, + 506, + 310 + ], + "score": 1.0, + "content": ", the Phased", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 308, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 107, + 311, + 115, + 323 + ], + "score": 0.78, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 308, + 310, + 326 + ], + "score": 1.0, + "content": "-Learning algorithm calls the generative model", + "type": "text" + }, + { + "bbox": [ + 310, + 309, + 466, + 326 + ], + "score": 0.91, + "content": "\\begin{array} { r } { G ( \\hat { \\mathcal { M } } ) \\hat { \\textbf { \\textit { O } } } \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 309, + 506, + 324 + ], + "score": 1.0, + "content": "times in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 324, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 115, + 335 + ], + "score": 0.67, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 324, + 327, + 339 + ], + "score": 1.0, + "content": "epochs, and returns a policy such that for all state", + "type": "text" + }, + { + "bbox": [ + 328, + 326, + 355, + 336 + ], + "score": 0.8, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 324, + 361, + 339 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 361, + 326, + 448, + 338 + ], + "score": 0.86, + "content": "| V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\le \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 324, + 454, + 339 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 326, + 482, + 337 + ], + "score": 0.64, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 324, + 505, + 339 + ], + "score": 1.0, + "content": ", w.p.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 336, + 192, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 140, + 348 + ], + "score": 0.61, + "content": "\\geq 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 336, + 145, + 348 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 145, + 336, + 187, + 347 + ], + "score": 0.66, + "content": "0 < \\delta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 336, + 192, + 348 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "Theorem 2 states that, to guarantee the convergence to the optimal policy, the number of samples", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 205, + 380 + ], + "score": 1.0, + "content": "needed is no more than", + "type": "text" + }, + { + "bbox": [ + 205, + 367, + 266, + 379 + ], + "score": 0.93, + "content": "\\bar { O ( 1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "times of the one needed when the RL agent observes true", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 377, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 104, + 377, + 506, + 392 + ], + "score": 1.0, + "content": "rewards perfectly. This additional constant is the price we pay for the noise presented in our learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 388, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 104, + 388, + 414, + 403 + ], + "score": 1.0, + "content": "environment. When the noise level is high, we expect to see a much higher", + "type": "text" + }, + { + "bbox": [ + 414, + 389, + 459, + 401 + ], + "score": 0.92, + "content": "1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 388, + 506, + 403 + ], + "score": 1.0, + "content": "; otherwise", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 251, + 413 + ], + "score": 1.0, + "content": "when we are in a low-noise regime ,", + "type": "text" + }, + { + "bbox": [ + 251, + 401, + 260, + 411 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "-Learning can be very efficient with surrogate reward (Kearns", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 425 + ], + "score": 1.0, + "content": "& Singh, 2000). Note that Theorem 2 gives the upper bound in discounted MDP setting; for undis-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 421, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 171, + 439 + ], + "score": 1.0, + "content": "counted setting", + "type": "text" + }, + { + "bbox": [ + 171, + 426, + 199, + 437 + ], + "score": 0.87, + "content": "( \\gamma = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 424, + 340, + 439 + ], + "score": 1.0, + "content": "), the upper bound is at the order of", + "type": "text" + }, + { + "bbox": [ + 340, + 422, + 445, + 441 + ], + "score": 0.93, + "content": "\\begin{array} { r } { O \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 421, + 506, + 440 + ], + "score": 1.0, + "content": ". Lower bound", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "result is omitted due to the lack of space. The idea of constructing MDP in which learning is difficult", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 447, + 472, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 226, + 467 + ], + "score": 1.0, + "content": "and the algorithm must make", + "type": "text" + }, + { + "bbox": [ + 226, + 451, + 290, + 471 + ], + "score": 0.93, + "content": "\\left( \\frac { | \\mathcal { S } | | \\bar { \\mathcal { A } } | T } { \\epsilon } \\log \\frac { 1 } { \\delta } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 447, + 322, + 474 + ], + "score": 1.0, + "content": "calls to", + "type": "text" + }, + { + "bbox": [ + 322, + 452, + 351, + 466 + ], + "score": 0.92, + "content": "G ( \\hat { \\mathcal { M } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 447, + 472, + 474 + ], + "score": 1.0, + "content": ", is similar to Kakade (2003).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "While the surrogate reward guarantees the unbiasedness, we sacrifice the variance at each of our", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "learning steps, and this in turn delays the convergence (as also evidenced in the sample complexity", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 497, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 426, + 509 + ], + "score": 1.0, + "content": "bound). It can be verified that the variance of surrogate reward is bounded when", + "type": "text" + }, + { + "bbox": [ + 426, + 497, + 436, + 507 + ], + "score": 0.49, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 497, + 504, + 509 + ], + "score": 1.0, + "content": "is invertible, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 508, + 498, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 498, + 520 + ], + "score": 1.0, + "content": "it is always higher than the variance of true reward. This is summarized in the following theorem:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 502, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 175, + 534 + ], + "score": 1.0, + "content": "Theorem 3. Let", + "type": "text" + }, + { + "bbox": [ + 176, + 521, + 232, + 534 + ], + "score": 0.92, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 520, + 401, + 534 + ], + "score": 1.0, + "content": "be bounded reward and confusion matrix", + "type": "text" + }, + { + "bbox": [ + 401, + 522, + 411, + 532 + ], + "score": 0.6, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 520, + 504, + 534 + ], + "score": 1.0, + "content": "is invertible. Then, the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 529, + 480, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 225, + 553 + ], + "score": 1.0, + "content": "variance of surrogate reward", + "type": "text" + }, + { + "bbox": [ + 225, + 536, + 231, + 545 + ], + "score": 0.77, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 529, + 325, + 553 + ], + "score": 1.0, + "content": "is bounded as follows:", + "type": "text" + }, + { + "bbox": [ + 325, + 533, + 474, + 550 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbf { V a r } ( r ) \\le \\mathbf { V a r } ( \\hat { r } ) \\le \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 529, + 480, + 553 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "To give an intuition of the bound, when we have binary reward, the variance for surrogate reward", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 102, + 567, + 508, + 591 + ], + "spans": [ + { + "bbox": [ + 102, + 567, + 187, + 591 + ], + "score": 1.0, + "content": "bounds as follows:", + "type": "text" + }, + { + "bbox": [ + 187, + 568, + 330, + 586 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { 4 R _ { \\operatorname* { m a x } } ^ { 2 } } { ( 1 - e _ { + } - e _ { - } ) ^ { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 567, + 349, + 591 + ], + "score": 1.0, + "content": ". As", + "type": "text" + }, + { + "bbox": [ + 350, + 572, + 410, + 583 + ], + "score": 0.91, + "content": "e _ { - } + e _ { + } \\to 1", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 567, + 508, + 591 + ], + "score": 1.0, + "content": ", the variance becomes", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "unbounded and the proposed estimator is no longer effective, nor will it be well-defined. In practice,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 463, + 609 + ], + "score": 1.0, + "content": "there is a trade-off question between bias and variance by tuning a linear combination of", + "type": "text" + }, + { + "bbox": [ + 464, + 597, + 473, + 608 + ], + "score": 0.67, + "content": "\\mathbf { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 597, + 491, + 609 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 492, + 595, + 501, + 608 + ], + "score": 0.79, + "content": "\\hat { \\mathbf { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 597, + 505, + 609 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 608, + 394, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 123, + 623 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 124, + 608, + 233, + 622 + ], + "score": 0.9, + "content": "\\mathbf { R } _ { p r o x y } = \\eta \\mathbf { R } + ( 1 - \\eta ) \\hat { \\mathbf { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 609, + 351, + 623 + ], + "score": 1.0, + "content": ", and choosing an appropriate", + "type": "text" + }, + { + "bbox": [ + 352, + 610, + 390, + 622 + ], + "score": 0.92, + "content": "\\eta \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 609, + 394, + 623 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 634, + 301, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 302, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 302, + 647 + ], + "score": 1.0, + "content": "3.3 ESTIMATION OF CONFUSION MATRICES", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "In Section 3.1 we have assumed the knowledge of reward confusion matrices, in order to compute", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "the surrogate reward. This knowledge is often not available in practice. Estimating these confusion", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "matrices is challenging without knowing any ground truth reward information; but we’d like to note", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "that efficient algorithms have been developed to estimate the confusion matrices in supervised learn-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "ing settings (Bekker & Goldberger, 2016; Liu & Liu, 2017; Khetan et al., 2017; Hendrycks et al.,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "2018). The idea in these algorithms is to dynamically refine the error rates based on aggregated re-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "wards. Note this approach is not different from the inference methods in aggregating crowdsourcing", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "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": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "Sample complexity To establish our sample complexity results, we first introduce a generative", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "model following previous literature (Kearns & Singh, 1998; 2000; Kearns et al., 1999). This is a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 294, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 294, + 117 + ], + "score": 1.0, + "content": "practical MDP setting to simplify the analysis.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 82, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 118, + 505, + 153 + ], + "lines": [ + { + "bbox": [ + 105, + 117, + 505, + 131 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 244, + 131 + ], + "score": 1.0, + "content": "Definition 1. A generative model", + "type": "text" + }, + { + "bbox": [ + 244, + 118, + 272, + 131 + ], + "score": 0.92, + "content": "G ( \\mathcal { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 117, + 325, + 131 + ], + "score": 1.0, + "content": "for an MDP", + "type": "text" + }, + { + "bbox": [ + 326, + 119, + 339, + 129 + ], + "score": 0.53, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 117, + 505, + 131 + ], + "score": 1.0, + "content": "is a sampling model which takes a state-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 127, + 504, + 144 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 153, + 144 + ], + "score": 1.0, + "content": "action pair", + "type": "text" + }, + { + "bbox": [ + 154, + 129, + 183, + 141 + ], + "score": 0.92, + "content": "\\left( { { s _ { t } } , { a _ { t } } } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 127, + 376, + 144 + ], + "score": 1.0, + "content": "as input, and outputs the corresponding reward", + "type": "text" + }, + { + "bbox": [ + 376, + 129, + 411, + 141 + ], + "score": 0.94, + "content": "r ( s _ { t } , a _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 127, + 484, + 144 + ], + "score": 1.0, + "content": "and the next state", + "type": "text" + }, + { + "bbox": [ + 484, + 132, + 504, + 141 + ], + "score": 0.88, + "content": "s _ { t + 1 }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 140, + 379, + 153 + ], + "spans": [ + { + "bbox": [ + 105, + 140, + 237, + 153 + ], + "score": 1.0, + "content": "randomly with the probability of", + "type": "text" + }, + { + "bbox": [ + 238, + 140, + 288, + 152 + ], + "score": 0.91, + "content": "\\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 140, + 309, + 153 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 310, + 140, + 375, + 152 + ], + "score": 0.93, + "content": "s _ { t + 1 } \\sim \\mathbb { P } ( \\cdot | s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 140, + 379, + 153 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 104, + 117, + 505, + 153 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 159, + 505, + 215 + ], + "lines": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 160, + 505, + 172 + ], + "score": 1.0, + "content": "Exact value iteration is impractical if the agents follow the generative models above exactly (Kakade,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 170, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 295, + 184 + ], + "score": 1.0, + "content": "2003). Consequently, we introduce a phased", + "type": "text" + }, + { + "bbox": [ + 295, + 172, + 304, + 182 + ], + "score": 0.72, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 170, + 505, + 184 + ], + "score": 1.0, + "content": "-Learning which is similar to the ones presented", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 195 + ], + "score": 1.0, + "content": "in Kakade (2003); Kearns & Singh (1998) for the convenience of proving our sample complexity", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 192, + 505, + 207 + ], + "spans": [ + { + "bbox": [ + 104, + 192, + 245, + 207 + ], + "score": 1.0, + "content": "results. We briefly outline phased", + "type": "text" + }, + { + "bbox": [ + 246, + 194, + 254, + 204 + ], + "score": 0.71, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 192, + 505, + 207 + ], + "score": 1.0, + "content": "-Learning as follows - the complete description (Algorithm 2)", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 224, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 224, + 216 + ], + "score": 1.0, + "content": "can be found in Appendix A.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 160, + 505, + 216 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 194, + 230 + ], + "score": 1.0, + "content": "Definition 2. Phased", + "type": "text" + }, + { + "bbox": [ + 194, + 218, + 202, + 229 + ], + "score": 0.47, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "-Learning algorithm takes m samples per phase by calling generative model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 228, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 107, + 228, + 135, + 241 + ], + "score": 0.91, + "content": "G ( \\mathcal { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 228, + 429, + 241 + ], + "score": 1.0, + "content": ". It uses the collected m samples to estimate the transition probability", + "type": "text" + }, + { + "bbox": [ + 430, + 230, + 439, + 239 + ], + "score": 0.77, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 228, + 505, + 241 + ], + "score": 1.0, + "content": "and update the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 240, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 354, + 255 + ], + "score": 1.0, + "content": "estimated value function per phase. Calling generative model", + "type": "text" + }, + { + "bbox": [ + 354, + 240, + 383, + 254 + ], + "score": 0.93, + "content": "G ( \\hat { \\mathcal { M } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "means that surrogate rewards", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 339, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 339, + 265 + ], + "score": 1.0, + "content": "are returned and used to update value function per phase.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 217, + 505, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 374, + 284 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 374, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 245, + 286 + ], + "score": 1.0, + "content": "The sample complexity of Phased", + "type": "text" + }, + { + "bbox": [ + 245, + 273, + 254, + 284 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 272, + 374, + 286 + ], + "score": 1.0, + "content": "-Learning is given as follows:", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 272, + 374, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 348 + ], + "lines": [ + { + "bbox": [ + 106, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 245, + 299 + ], + "score": 1.0, + "content": "Theorem 2. (Upper Bound) Let", + "type": "text" + }, + { + "bbox": [ + 245, + 286, + 306, + 298 + ], + "score": 0.91, + "content": "r ~ \\in ~ [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 285, + 393, + 299 + ], + "score": 1.0, + "content": "be bounded reward,", + "type": "text" + }, + { + "bbox": [ + 394, + 286, + 404, + 297 + ], + "score": 0.59, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "be an invertible reward", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 195, + 310 + ], + "score": 1.0, + "content": "confusion matrix with", + "type": "text" + }, + { + "bbox": [ + 195, + 298, + 226, + 309 + ], + "score": 0.61, + "content": "\\operatorname* { d e t } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 297, + 445, + 310 + ], + "score": 1.0, + "content": "denoting its determinant. For an appropriate choice of", + "type": "text" + }, + { + "bbox": [ + 446, + 300, + 455, + 308 + ], + "score": 0.35, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 297, + 506, + 310 + ], + "score": 1.0, + "content": ", the Phased", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 308, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 107, + 311, + 115, + 323 + ], + "score": 0.78, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 308, + 310, + 326 + ], + "score": 1.0, + "content": "-Learning algorithm calls the generative model", + "type": "text" + }, + { + "bbox": [ + 310, + 309, + 466, + 326 + ], + "score": 0.91, + "content": "\\begin{array} { r } { G ( \\hat { \\mathcal { M } } ) \\hat { \\textbf { \\textit { O } } } \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 309, + 506, + 324 + ], + "score": 1.0, + "content": "times in", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 324, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 106, + 326, + 115, + 335 + ], + "score": 0.67, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 324, + 327, + 339 + ], + "score": 1.0, + "content": "epochs, and returns a policy such that for all state", + "type": "text" + }, + { + "bbox": [ + 328, + 326, + 355, + 336 + ], + "score": 0.8, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 324, + 361, + 339 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 361, + 326, + 448, + 338 + ], + "score": 0.86, + "content": "| V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\le \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 324, + 454, + 339 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 326, + 482, + 337 + ], + "score": 0.64, + "content": "\\epsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 324, + 505, + 339 + ], + "score": 1.0, + "content": ", w.p.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 336, + 192, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 140, + 348 + ], + "score": 0.61, + "content": "\\geq 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 336, + 145, + 348 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 145, + 336, + 187, + 347 + ], + "score": 0.66, + "content": "0 < \\delta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 336, + 192, + 348 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 285, + 506, + 348 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 369 + ], + "score": 1.0, + "content": "Theorem 2 states that, to guarantee the convergence to the optimal policy, the number of samples", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 366, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 205, + 380 + ], + "score": 1.0, + "content": "needed is no more than", + "type": "text" + }, + { + "bbox": [ + 205, + 367, + 266, + 379 + ], + "score": 0.93, + "content": "\\bar { O ( 1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 366, + 506, + 380 + ], + "score": 1.0, + "content": "times of the one needed when the RL agent observes true", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 377, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 104, + 377, + 506, + 392 + ], + "score": 1.0, + "content": "rewards perfectly. This additional constant is the price we pay for the noise presented in our learning", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 388, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 104, + 388, + 414, + 403 + ], + "score": 1.0, + "content": "environment. When the noise level is high, we expect to see a much higher", + "type": "text" + }, + { + "bbox": [ + 414, + 389, + 459, + 401 + ], + "score": 0.92, + "content": "1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 388, + 506, + 403 + ], + "score": 1.0, + "content": "; otherwise", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 400, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 251, + 413 + ], + "score": 1.0, + "content": "when we are in a low-noise regime ,", + "type": "text" + }, + { + "bbox": [ + 251, + 401, + 260, + 411 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 400, + 505, + 413 + ], + "score": 1.0, + "content": "-Learning can be very efficient with surrogate reward (Kearns", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 410, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 425 + ], + "score": 1.0, + "content": "& Singh, 2000). Note that Theorem 2 gives the upper bound in discounted MDP setting; for undis-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 421, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 104, + 424, + 171, + 439 + ], + "score": 1.0, + "content": "counted setting", + "type": "text" + }, + { + "bbox": [ + 171, + 426, + 199, + 437 + ], + "score": 0.87, + "content": "( \\gamma = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 424, + 340, + 439 + ], + "score": 1.0, + "content": "), the upper bound is at the order of", + "type": "text" + }, + { + "bbox": [ + 340, + 422, + 445, + 441 + ], + "score": 0.93, + "content": "\\begin{array} { r } { O \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 421, + 506, + 440 + ], + "score": 1.0, + "content": ". Lower bound", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 505, + 452 + ], + "score": 1.0, + "content": "result is omitted due to the lack of space. The idea of constructing MDP in which learning is difficult", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 447, + 472, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 226, + 467 + ], + "score": 1.0, + "content": "and the algorithm must make", + "type": "text" + }, + { + "bbox": [ + 226, + 451, + 290, + 471 + ], + "score": 0.93, + "content": "\\left( \\frac { | \\mathcal { S } | | \\bar { \\mathcal { A } } | T } { \\epsilon } \\log \\frac { 1 } { \\delta } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 447, + 322, + 474 + ], + "score": 1.0, + "content": "calls to", + "type": "text" + }, + { + "bbox": [ + 322, + 452, + 351, + 466 + ], + "score": 0.92, + "content": "G ( \\hat { \\mathcal { M } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 447, + 472, + 474 + ], + "score": 1.0, + "content": ", is similar to Kakade (2003).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25, + "bbox_fs": [ + 104, + 355, + 506, + 474 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 519 + ], + "lines": [ + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 505, + 487 + ], + "score": 1.0, + "content": "While the surrogate reward guarantees the unbiasedness, we sacrifice the variance at each of our", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 498 + ], + "score": 1.0, + "content": "learning steps, and this in turn delays the convergence (as also evidenced in the sample complexity", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 497, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 426, + 509 + ], + "score": 1.0, + "content": "bound). It can be verified that the variance of surrogate reward is bounded when", + "type": "text" + }, + { + "bbox": [ + 426, + 497, + 436, + 507 + ], + "score": 0.49, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 497, + 504, + 509 + ], + "score": 1.0, + "content": "is invertible, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 508, + 498, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 498, + 520 + ], + "score": 1.0, + "content": "it is always higher than the variance of true reward. This is summarized in the following theorem:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 474, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 521, + 502, + 549 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 175, + 534 + ], + "score": 1.0, + "content": "Theorem 3. Let", + "type": "text" + }, + { + "bbox": [ + 176, + 521, + 232, + 534 + ], + "score": 0.92, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 520, + 401, + 534 + ], + "score": 1.0, + "content": "be bounded reward and confusion matrix", + "type": "text" + }, + { + "bbox": [ + 401, + 522, + 411, + 532 + ], + "score": 0.6, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 520, + 504, + 534 + ], + "score": 1.0, + "content": "is invertible. Then, the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 529, + 480, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 225, + 553 + ], + "score": 1.0, + "content": "variance of surrogate reward", + "type": "text" + }, + { + "bbox": [ + 225, + 536, + 231, + 545 + ], + "score": 0.77, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 529, + 325, + 553 + ], + "score": 1.0, + "content": "is bounded as follows:", + "type": "text" + }, + { + "bbox": [ + 325, + 533, + 474, + 550 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbf { V a r } ( r ) \\le \\mathbf { V a r } ( \\hat { r } ) \\le \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 529, + 480, + 553 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 520, + 504, + 553 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 505, + 622 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 505, + 569 + ], + "score": 1.0, + "content": "To give an intuition of the bound, when we have binary reward, the variance for surrogate reward", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 102, + 567, + 508, + 591 + ], + "spans": [ + { + "bbox": [ + 102, + 567, + 187, + 591 + ], + "score": 1.0, + "content": "bounds as follows:", + "type": "text" + }, + { + "bbox": [ + 187, + 568, + 330, + 586 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { 4 R _ { \\operatorname* { m a x } } ^ { 2 } } { ( 1 - e _ { + } - e _ { - } ) ^ { 2 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 567, + 349, + 591 + ], + "score": 1.0, + "content": ". As", + "type": "text" + }, + { + "bbox": [ + 350, + 572, + 410, + 583 + ], + "score": 0.91, + "content": "e _ { - } + e _ { + } \\to 1", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 567, + 508, + 591 + ], + "score": 1.0, + "content": ", the variance becomes", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 585, + 505, + 597 + ], + "score": 1.0, + "content": "unbounded and the proposed estimator is no longer effective, nor will it be well-defined. In practice,", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 463, + 609 + ], + "score": 1.0, + "content": "there is a trade-off question between bias and variance by tuning a linear combination of", + "type": "text" + }, + { + "bbox": [ + 464, + 597, + 473, + 608 + ], + "score": 0.67, + "content": "\\mathbf { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 597, + 491, + 609 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 492, + 595, + 501, + 608 + ], + "score": 0.79, + "content": "\\hat { \\mathbf { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 597, + 505, + 609 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 608, + 394, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 123, + 623 + ], + "score": 1.0, + "content": "i.e.,", + "type": "text" + }, + { + "bbox": [ + 124, + 608, + 233, + 622 + ], + "score": 0.9, + "content": "\\mathbf { R } _ { p r o x y } = \\eta \\mathbf { R } + ( 1 - \\eta ) \\hat { \\mathbf { R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 609, + 351, + 623 + ], + "score": 1.0, + "content": ", and choosing an appropriate", + "type": "text" + }, + { + "bbox": [ + 352, + 610, + 390, + 622 + ], + "score": 0.92, + "content": "\\eta \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 609, + 394, + 623 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 38, + "bbox_fs": [ + 102, + 557, + 508, + 623 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 634, + 301, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 633, + 302, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 302, + 647 + ], + "score": 1.0, + "content": "3.3 ESTIMATION OF CONFUSION MATRICES", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "In Section 3.1 we have assumed the knowledge of reward confusion matrices, in order to compute", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "the surrogate reward. This knowledge is often not available in practice. Estimating these confusion", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "matrices is challenging without knowing any ground truth reward information; but we’d like to note", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "that efficient algorithms have been developed to estimate the confusion matrices in supervised learn-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "ing settings (Bekker & Goldberger, 2016; Liu & Liu, 2017; Khetan et al., 2017; Hendrycks et al.,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "2018). The idea in these algorithms is to dynamically refine the error rates based on aggregated re-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "wards. Note this approach is not different from the inference methods in aggregating crowdsourcing", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "labels, as referred in the literature (Dawid & Skene, 1979; Karger et al., 2011; Liu et al., 2012). We", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 433, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 433, + 105 + ], + "score": 1.0, + "content": "adapt this idea to our reinforcement learning setting, which is detailed as follows.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 655, + 506, + 734 + ] + } + ] + }, + { + "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": "labels, as referred in the literature (Dawid & Skene, 1979; Karger et al., 2011; Liu et al., 2012). We", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 433, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 433, + 105 + ], + "score": 1.0, + "content": "adapt this idea to our reinforcement learning setting, which is detailed as follows.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 504, + 163 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 122 + ], + "score": 1.0, + "content": "At each training step, the RL agent collects the noisy reward and the current state-action pair. Then,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 170, + 132 + ], + "score": 1.0, + "content": "for each pair in", + "type": "text" + }, + { + "bbox": [ + 170, + 120, + 198, + 129 + ], + "score": 0.9, + "content": "\\mathcal { S } \\times \\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 118, + 506, + 132 + ], + "score": 1.0, + "content": ", the agent predicts the true reward based on accumulated historical observa-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "score": 1.0, + "content": "tions of reward for the corresponding state-action pair via, e.g., averaging (majority voting). Finally,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 140, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 505, + 151 + ], + "score": 1.0, + "content": "with the predicted true reward and the accuracy (error rate) for each state-action pair, the estimated", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 150, + 276, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 214, + 164 + ], + "score": 1.0, + "content": "reward confusion matrices", + "type": "text" + }, + { + "bbox": [ + 214, + 150, + 224, + 162 + ], + "score": 0.83, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 151, + 276, + 164 + ], + "score": 1.0, + "content": "are given by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 169, + 401, + 198 + ], + "lines": [ + { + "bbox": [ + 208, + 169, + 401, + 198 + ], + "spans": [ + { + "bbox": [ + 208, + 169, + 401, + 198 + ], + "score": 0.94, + "content": "\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ,", + "type": "interline_equation", + "image_path": "61266d14679393cd61f298501f883762b84409708e06eb7928ce61d58020f780.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 169, + 401, + 183.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 208, + 183.5, + 401, + 198.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 204, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 110, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 110, + 205, + 174, + 217 + ], + "score": 1.0, + "content": "where in above", + "type": "text" + }, + { + "bbox": [ + 175, + 205, + 195, + 217 + ], + "score": 0.87, + "content": "\\# \\left[ \\cdot \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 205, + 468, + 217 + ], + "score": 1.0, + "content": "denotes the number of state-action pair that satisfies the condition", + "type": "text" + }, + { + "bbox": [ + 468, + 205, + 478, + 217 + ], + "score": 0.76, + "content": "[ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 205, + 230 + ], + "score": 1.0, + "content": "set of observed rewards", + "type": "text" + }, + { + "bbox": [ + 205, + 216, + 236, + 230 + ], + "score": 0.94, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 217, + 340, + 230 + ], + "score": 1.0, + "content": "(see Algorithm 1 and 3);", + "type": "text" + }, + { + "bbox": [ + 340, + 217, + 369, + 230 + ], + "score": 0.93, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 217, + 387, + 230 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 388, + 217, + 416, + 230 + ], + "score": 0.93, + "content": "\\tilde { r } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "denote predicted true", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 434, + 241 + ], + "score": 1.0, + "content": "rewards (using majority voting) and observed rewards when the state-action pair is", + "type": "text" + }, + { + "bbox": [ + 434, + 229, + 457, + 241 + ], + "score": 0.91, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 229, + 505, + 241 + ], + "score": 1.0, + "content": ". The above", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 240, + 416, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 196, + 252 + ], + "score": 1.0, + "content": "procedure of updating", + "type": "text" + }, + { + "bbox": [ + 197, + 240, + 212, + 252 + ], + "score": 0.89, + "content": "\\tilde { c } _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 240, + 416, + 252 + ], + "score": 1.0, + "content": "continues indefinitely as more observation arrives.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 237, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 238, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 238, + 268 + ], + "score": 1.0, + "content": "Our final definition of surrogate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 237, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 237, + 279 + ], + "score": 1.0, + "content": "reward replaces a known reward", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 279, + 238, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 147, + 290 + ], + "score": 1.0, + "content": "confusion", + "type": "text" + }, + { + "bbox": [ + 148, + 279, + 158, + 289 + ], + "score": 0.39, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 279, + 238, + 290 + ], + "score": 1.0, + "content": "in Eqn. (2) with our", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 238, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 163, + 302 + ], + "score": 1.0, + "content": "estimated one", + "type": "text" + }, + { + "bbox": [ + 163, + 289, + 173, + 301 + ], + "score": 0.55, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 289, + 238, + 302 + ], + "score": 1.0, + "content": ". We denote this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 302, + 237, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 227, + 314 + ], + "score": 1.0, + "content": "estimated surrogate reward as", + "type": "text" + }, + { + "bbox": [ + 227, + 302, + 233, + 312 + ], + "score": 0.79, + "content": "\\dot { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 302, + 237, + 314 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 237, + 406 + ], + "lines": [ + { + "bbox": [ + 107, + 319, + 237, + 330 + ], + "spans": [ + { + "bbox": [ + 107, + 319, + 237, + 330 + ], + "score": 1.0, + "content": "We present (Reward Robust RL)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 329, + 237, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 163, + 340 + ], + "score": 1.0, + "content": "in Algorithm", + "type": "text" + }, + { + "bbox": [ + 163, + 329, + 173, + 340 + ], + "score": 0.4, + "content": "1 ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 329, + 237, + 340 + ], + "score": 1.0, + "content": ". Note that the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 341, + 238, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 238, + 352 + ], + "score": 1.0, + "content": "algorithm is rather generic, and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 352, + 238, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 238, + 363 + ], + "score": 1.0, + "content": "we can plug in any exisitng RL", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 363, + 238, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 238, + 374 + ], + "score": 1.0, + "content": "algorithm into our reward robust", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 372, + 238, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 238, + 385 + ], + "score": 1.0, + "content": "one, with only changes in re-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 237, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 237, + 396 + ], + "score": 1.0, + "content": "placing the rewards with our es-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 396, + 215, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 215, + 408 + ], + "score": 1.0, + "content": "timated surrogate rewards.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 249, + 259, + 400, + 271 + ], + "lines": [ + { + "bbox": [ + 247, + 259, + 400, + 272 + ], + "spans": [ + { + "bbox": [ + 247, + 259, + 400, + 272 + ], + "score": 1.0, + "content": "Algorithm 1 Reward Robust RL (sketch)", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 248, + 274, + 501, + 434 + ], + "lines": [ + { + "bbox": [ + 246, + 273, + 342, + 288 + ], + "spans": [ + { + "bbox": [ + 246, + 273, + 276, + 288 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 277, + 274, + 342, + 286 + ], + "score": 0.55, + "content": "\\tilde { \\mathcal { M } } , \\alpha , \\beta , \\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 246, + 285, + 338, + 298 + ], + "spans": [ + { + "bbox": [ + 246, + 285, + 281, + 298 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 281, + 286, + 338, + 297 + ], + "score": 0.34, + "content": "Q ( s ) , \\pi ( s , t )", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 254, + 294, + 415, + 308 + ], + "spans": [ + { + "bbox": [ + 254, + 294, + 345, + 308 + ], + "score": 1.0, + "content": "Initialize value function", + "type": "text" + }, + { + "bbox": [ + 345, + 296, + 374, + 307 + ], + "score": 0.91, + "content": "Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 294, + 415, + 308 + ], + "score": 1.0, + "content": "arbitrarily.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 256, + 306, + 363, + 317 + ], + "spans": [ + { + "bbox": [ + 256, + 306, + 279, + 317 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 279, + 306, + 288, + 317 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 306, + 363, + 317 + ], + "score": 1.0, + "content": "is not converged do", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 269, + 316, + 347, + 327 + ], + "spans": [ + { + "bbox": [ + 269, + 316, + 324, + 327 + ], + "score": 1.0, + "content": "Initialize state", + "type": "text" + }, + { + "bbox": [ + 324, + 317, + 347, + 325 + ], + "score": 0.88, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 31 + }, + { + "bbox": [ + 270, + 326, + 366, + 336 + ], + "spans": [ + { + "bbox": [ + 270, + 326, + 293, + 336 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 293, + 328, + 299, + 335 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 326, + 366, + 336 + ], + "score": 1.0, + "content": "is not terminal do", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 282, + 335, + 451, + 348 + ], + "spans": [ + { + "bbox": [ + 282, + 335, + 313, + 348 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 313, + 338, + 319, + 345 + ], + "score": 0.73, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 335, + 340, + 348 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 340, + 338, + 346, + 345 + ], + "score": 0.64, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 335, + 443, + 348 + ], + "score": 1.0, + "content": "using policy derived from", + "type": "text" + }, + { + "bbox": [ + 443, + 336, + 451, + 346 + ], + "score": 0.78, + "content": "Q", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 282, + 345, + 450, + 357 + ], + "spans": [ + { + "bbox": [ + 282, + 345, + 327, + 357 + ], + "score": 1.0, + "content": "Take action", + "type": "text" + }, + { + "bbox": [ + 328, + 348, + 334, + 355 + ], + "score": 0.72, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 345, + 367, + 357 + ], + "score": 1.0, + "content": ", observe", + "type": "text" + }, + { + "bbox": [ + 368, + 347, + 375, + 355 + ], + "score": 0.84, + "content": "s ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 345, + 441, + 357 + ], + "score": 1.0, + "content": "and noisy reward", + "type": "text" + }, + { + "bbox": [ + 442, + 347, + 447, + 355 + ], + "score": 0.67, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 345, + 450, + 357 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 282, + 355, + 464, + 367 + ], + "spans": [ + { + "bbox": [ + 282, + 355, + 358, + 367 + ], + "score": 1.0, + "content": "if collecting enough", + "type": "text" + }, + { + "bbox": [ + 359, + 357, + 364, + 365 + ], + "score": 0.81, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 355, + 400, + 367 + ], + "score": 1.0, + "content": "for every", + "type": "text" + }, + { + "bbox": [ + 400, + 356, + 426, + 366 + ], + "score": 0.9, + "content": "\\boldsymbol { s } \\times \\boldsymbol { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 355, + 464, + 367 + ], + "score": 1.0, + "content": "pair then", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 297, + 365, + 480, + 378 + ], + "spans": [ + { + "bbox": [ + 297, + 365, + 392, + 378 + ], + "score": 1.0, + "content": "Get predicted true reward", + "type": "text" + }, + { + "bbox": [ + 393, + 367, + 398, + 375 + ], + "score": 0.81, + "content": "\\bar { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 365, + 480, + 378 + ], + "score": 1.0, + "content": "using majority voting", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 296, + 375, + 501, + 389 + ], + "spans": [ + { + "bbox": [ + 296, + 375, + 396, + 389 + ], + "score": 1.0, + "content": "Estimate confusion matrix", + "type": "text" + }, + { + "bbox": [ + 396, + 376, + 405, + 387 + ], + "score": 0.83, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 375, + 439, + 389 + ], + "score": 1.0, + "content": "based on", + "type": "text" + }, + { + "bbox": [ + 440, + 378, + 446, + 387 + ], + "score": 0.8, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 375, + 462, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 462, + 378, + 468, + 387 + ], + "score": 0.75, + "content": "\\bar { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 375, + 501, + 389 + ], + "score": 1.0, + "content": "(Eqn. 4)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 282, + 387, + 498, + 401 + ], + "spans": [ + { + "bbox": [ + 282, + 387, + 374, + 401 + ], + "score": 1.0, + "content": "Obtain surrogate reward", + "type": "text" + }, + { + "bbox": [ + 374, + 389, + 380, + 398 + ], + "score": 0.57, + "content": "\\dot { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 388, + 498, + 400 + ], + "score": 0.88, + "content": "( \\hat { \\mathbf { R } } = ( 1 - \\eta ) \\cdot \\mathbf { R } + \\eta \\cdot \\mathbf { C } ^ { - 1 } \\mathbf { R } )", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 282, + 398, + 408, + 412 + ], + "spans": [ + { + "bbox": [ + 282, + 398, + 312, + 412 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 312, + 400, + 321, + 410 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 398, + 408, + 412 + ], + "score": 1.0, + "content": "using surrogate reward", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 284, + 409, + 310, + 419 + ], + "spans": [ + { + "bbox": [ + 284, + 409, + 310, + 419 + ], + "score": 0.49, + "content": "s \\gets s ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 255, + 418, + 338, + 432 + ], + "spans": [ + { + "bbox": [ + 255, + 418, + 283, + 432 + ], + "score": 1.0, + "content": "return", + "type": "text" + }, + { + "bbox": [ + 284, + 420, + 303, + 431 + ], + "score": 0.51, + "content": "Q ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 418, + 320, + 432 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 419, + 338, + 431 + ], + "score": 0.76, + "content": "\\pi ( s )", + "type": "inline_equation" + } + ], + "index": 42 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 108, + 424, + 200, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 201, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 201, + 439 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 105, + 450, + 504, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "score": 1.0, + "content": "In this section, reward robust RL is tested in different games, with different noise settings. Due to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 461, + 379, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 379, + 474 + ], + "score": 1.0, + "content": "space limit, more experimental results can be found in Appendix D.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 230, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 231, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 231, + 500 + ], + "score": 1.0, + "content": "4.1 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Environments and RL Algorithms To fully test the performance under different environments,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "we evaluate the proposed robust reward RL method on two classic control games (CartPole, Pendu-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 531, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 504, + 543 + ], + "score": 1.0, + "content": "lum) and seven Atari 2600 games (AirRaid, Alien, Carnival, MsPacman, Pong, Phoenix, Seaquest),", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "which encompass a large variety of environments, as well as rewards. Specifically, the rewards", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 553, + 504, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 504, + 565 + ], + "score": 1.0, + "content": "could be unary (CartPole), binary (most of Atari games), multivariate (Pong) and even continu-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "ous (Pendulum). A set of state-of-the-art reinforcement learning algorithms are experimented with", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "score": 1.0, + "content": "while training under different amounts of noise (See Table 3)5. For each game and algorithm, three", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 586, + 445, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 445, + 598 + ], + "score": 1.0, + "content": "policies are trained based on different random initialization to decrease the variance.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 49.5 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 506, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "Reward Post-Processing For each game and RL algorithm, we test the performances for learning", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "score": 1.0, + "content": "with true rewards, learning with noisy rewards and learning with surrogate rewards. Both symmet-", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "ric and asymmetric noise settings with different noise levels are tested. For symmetric noise, the", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "confusion matrices are symmetric. As for asymmetric noise, two types of random noise are tested:", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "1) rand-one, each reward level can only be perturbed into another reward; 2) rand-all, each reward", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "could be perturbed to any other reward, via adding a random noise matrix. To measure the amount", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 360, + 690 + ], + "score": 1.0, + "content": "of noise w.r.t confusion matrices, we define the weight of noise", + "type": "text" + }, + { + "bbox": [ + 360, + 679, + 368, + 687 + ], + "score": 0.75, + "content": "\\omega", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 677, + 484, + 690 + ], + "score": 1.0, + "content": "in Appendix B.2. The larger", + "type": "text" + }, + { + "bbox": [ + 484, + 679, + 492, + 687 + ], + "score": 0.75, + "content": "\\omega", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "is,", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 687, + 226, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 226, + 700 + ], + "score": 1.0, + "content": "the higher the noise rates are.", + "type": "text" + } + ], + "index": 61 + } + ], + "index": 57.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 710, + 436, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 708, + 437, + 723 + ], + "spans": [ + { + "bbox": [ + 118, + 708, + 175, + 723 + ], + "score": 1.0, + "content": "4One complete", + "type": "text" + }, + { + "bbox": [ + 175, + 711, + 183, + 721 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 708, + 437, + 723 + ], + "score": 1.0, + "content": "-Learning implementation (Algorithm 3) is provided in Appendix C.1.", + "type": "text" + } + ] + }, + { + "bbox": [ + 118, + 719, + 309, + 733 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 309, + 733 + ], + "score": 1.0, + "content": "5The detailed settings are accessible in Appendix B.", + "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" + } + ] + } + ] + }, + { + "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": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 105 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 504, + 163 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 505, + 122 + ], + "score": 1.0, + "content": "At each training step, the RL agent collects the noisy reward and the current state-action pair. Then,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 118, + 506, + 132 + ], + "spans": [ + { + "bbox": [ + 105, + 118, + 170, + 132 + ], + "score": 1.0, + "content": "for each pair in", + "type": "text" + }, + { + "bbox": [ + 170, + 120, + 198, + 129 + ], + "score": 0.9, + "content": "\\mathcal { S } \\times \\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 118, + 506, + 132 + ], + "score": 1.0, + "content": ", the agent predicts the true reward based on accumulated historical observa-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 505, + 142 + ], + "score": 1.0, + "content": "tions of reward for the corresponding state-action pair via, e.g., averaging (majority voting). Finally,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 140, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 106, + 140, + 505, + 151 + ], + "score": 1.0, + "content": "with the predicted true reward and the accuracy (error rate) for each state-action pair, the estimated", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 150, + 276, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 214, + 164 + ], + "score": 1.0, + "content": "reward confusion matrices", + "type": "text" + }, + { + "bbox": [ + 214, + 150, + 224, + 162 + ], + "score": 0.83, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 151, + 276, + 164 + ], + "score": 1.0, + "content": "are given by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 110, + 506, + 164 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 169, + 401, + 198 + ], + "lines": [ + { + "bbox": [ + 208, + 169, + 401, + 198 + ], + "spans": [ + { + "bbox": [ + 208, + 169, + 401, + 198 + ], + "score": 0.94, + "content": "\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ,", + "type": "interline_equation", + "image_path": "61266d14679393cd61f298501f883762b84409708e06eb7928ce61d58020f780.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 169, + 401, + 183.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 208, + 183.5, + 401, + 198.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 204, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 110, + 205, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 110, + 205, + 174, + 217 + ], + "score": 1.0, + "content": "where in above", + "type": "text" + }, + { + "bbox": [ + 175, + 205, + 195, + 217 + ], + "score": 0.87, + "content": "\\# \\left[ \\cdot \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 205, + 468, + 217 + ], + "score": 1.0, + "content": "denotes the number of state-action pair that satisfies the condition", + "type": "text" + }, + { + "bbox": [ + 468, + 205, + 478, + 217 + ], + "score": 0.76, + "content": "[ \\cdot ]", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 205, + 505, + 217 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 216, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 205, + 230 + ], + "score": 1.0, + "content": "set of observed rewards", + "type": "text" + }, + { + "bbox": [ + 205, + 216, + 236, + 230 + ], + "score": 0.94, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 217, + 340, + 230 + ], + "score": 1.0, + "content": "(see Algorithm 1 and 3);", + "type": "text" + }, + { + "bbox": [ + 340, + 217, + 369, + 230 + ], + "score": 0.93, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 217, + 387, + 230 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 388, + 217, + 416, + 230 + ], + "score": 0.93, + "content": "\\tilde { r } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 217, + 505, + 230 + ], + "score": 1.0, + "content": "denote predicted true", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 229, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 229, + 434, + 241 + ], + "score": 1.0, + "content": "rewards (using majority voting) and observed rewards when the state-action pair is", + "type": "text" + }, + { + "bbox": [ + 434, + 229, + 457, + 241 + ], + "score": 0.91, + "content": "( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 229, + 505, + 241 + ], + "score": 1.0, + "content": ". The above", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 240, + 416, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 196, + 252 + ], + "score": 1.0, + "content": "procedure of updating", + "type": "text" + }, + { + "bbox": [ + 197, + 240, + 212, + 252 + ], + "score": 0.89, + "content": "\\tilde { c } _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 240, + 416, + 252 + ], + "score": 1.0, + "content": "continues indefinitely as more observation arrives.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 205, + 505, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 237, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 255, + 238, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 238, + 268 + ], + "score": 1.0, + "content": "Our final definition of surrogate", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 268, + 237, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 268, + 237, + 279 + ], + "score": 1.0, + "content": "reward replaces a known reward", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 279, + 238, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 147, + 290 + ], + "score": 1.0, + "content": "confusion", + "type": "text" + }, + { + "bbox": [ + 148, + 279, + 158, + 289 + ], + "score": 0.39, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 279, + 238, + 290 + ], + "score": 1.0, + "content": "in Eqn. (2) with our", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 289, + 238, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 163, + 302 + ], + "score": 1.0, + "content": "estimated one", + "type": "text" + }, + { + "bbox": [ + 163, + 289, + 173, + 301 + ], + "score": 0.55, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 289, + 238, + 302 + ], + "score": 1.0, + "content": ". We denote this", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 302, + 237, + 314 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 227, + 314 + ], + "score": 1.0, + "content": "estimated surrogate reward as", + "type": "text" + }, + { + "bbox": [ + 227, + 302, + 233, + 312 + ], + "score": 0.79, + "content": "\\dot { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 302, + 237, + 314 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 255, + 238, + 314 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 237, + 406 + ], + "lines": [ + { + "bbox": [ + 107, + 319, + 237, + 330 + ], + "spans": [ + { + "bbox": [ + 107, + 319, + 237, + 330 + ], + "score": 1.0, + "content": "We present (Reward Robust RL)", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 329, + 237, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 163, + 340 + ], + "score": 1.0, + "content": "in Algorithm", + "type": "text" + }, + { + "bbox": [ + 163, + 329, + 173, + 340 + ], + "score": 0.4, + "content": "1 ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 329, + 237, + 340 + ], + "score": 1.0, + "content": ". Note that the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 341, + 238, + 352 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 238, + 352 + ], + "score": 1.0, + "content": "algorithm is rather generic, and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 352, + 238, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 238, + 363 + ], + "score": 1.0, + "content": "we can plug in any exisitng RL", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 363, + 238, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 238, + 374 + ], + "score": 1.0, + "content": "algorithm into our reward robust", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 372, + 238, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 372, + 238, + 385 + ], + "score": 1.0, + "content": "one, with only changes in re-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 384, + 237, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 237, + 396 + ], + "score": 1.0, + "content": "placing the rewards with our es-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 396, + 215, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 215, + 408 + ], + "score": 1.0, + "content": "timated surrogate rewards.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 319, + 238, + 408 + ] + }, + { + "type": "title", + "bbox": [ + 249, + 259, + 400, + 271 + ], + "lines": [ + { + "bbox": [ + 247, + 259, + 400, + 272 + ], + "spans": [ + { + "bbox": [ + 247, + 259, + 400, + 272 + ], + "score": 1.0, + "content": "Algorithm 1 Reward Robust RL (sketch)", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "list", + "bbox": [ + 248, + 274, + 501, + 434 + ], + "lines": [ + { + "bbox": [ + 246, + 273, + 342, + 288 + ], + "spans": [ + { + "bbox": [ + 246, + 273, + 276, + 288 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 277, + 274, + 342, + 286 + ], + "score": 0.55, + "content": "\\tilde { \\mathcal { M } } , \\alpha , \\beta , \\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 27, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 246, + 285, + 338, + 298 + ], + "spans": [ + { + "bbox": [ + 246, + 285, + 281, + 298 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 281, + 286, + 338, + 297 + ], + "score": 0.34, + "content": "Q ( s ) , \\pi ( s , t )", + "type": "inline_equation" + } + ], + "index": 28, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 254, + 294, + 415, + 308 + ], + "spans": [ + { + "bbox": [ + 254, + 294, + 345, + 308 + ], + "score": 1.0, + "content": "Initialize value function", + "type": "text" + }, + { + "bbox": [ + 345, + 296, + 374, + 307 + ], + "score": 0.91, + "content": "Q ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 294, + 415, + 308 + ], + "score": 1.0, + "content": "arbitrarily.", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + }, + { + "bbox": [ + 256, + 306, + 363, + 317 + ], + "spans": [ + { + "bbox": [ + 256, + 306, + 279, + 317 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 279, + 306, + 288, + 317 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 306, + 363, + 317 + ], + "score": 1.0, + "content": "is not converged do", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 269, + 316, + 347, + 327 + ], + "spans": [ + { + "bbox": [ + 269, + 316, + 324, + 327 + ], + "score": 1.0, + "content": "Initialize state", + "type": "text" + }, + { + "bbox": [ + 324, + 317, + 347, + 325 + ], + "score": 0.88, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 31, + "is_list_end_line": true + }, + { + "bbox": [ + 270, + 326, + 366, + 336 + ], + "spans": [ + { + "bbox": [ + 270, + 326, + 293, + 336 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 293, + 328, + 299, + 335 + ], + "score": 0.73, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 326, + 366, + 336 + ], + "score": 1.0, + "content": "is not terminal do", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 282, + 335, + 451, + 348 + ], + "spans": [ + { + "bbox": [ + 282, + 335, + 313, + 348 + ], + "score": 1.0, + "content": "Choose", + "type": "text" + }, + { + "bbox": [ + 313, + 338, + 319, + 345 + ], + "score": 0.73, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 335, + 340, + 348 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 340, + 338, + 346, + 345 + ], + "score": 0.64, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 335, + 443, + 348 + ], + "score": 1.0, + "content": "using policy derived from", + "type": "text" + }, + { + "bbox": [ + 443, + 336, + 451, + 346 + ], + "score": 0.78, + "content": "Q", + "type": "inline_equation" + } + ], + "index": 33, + "is_list_end_line": true + }, + { + "bbox": [ + 282, + 345, + 450, + 357 + ], + "spans": [ + { + "bbox": [ + 282, + 345, + 327, + 357 + ], + "score": 1.0, + "content": "Take action", + "type": "text" + }, + { + "bbox": [ + 328, + 348, + 334, + 355 + ], + "score": 0.72, + "content": "a", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 345, + 367, + 357 + ], + "score": 1.0, + "content": ", observe", + "type": "text" + }, + { + "bbox": [ + 368, + 347, + 375, + 355 + ], + "score": 0.84, + "content": "s ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 345, + 441, + 357 + ], + "score": 1.0, + "content": "and noisy reward", + "type": "text" + }, + { + "bbox": [ + 442, + 347, + 447, + 355 + ], + "score": 0.67, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 345, + 450, + 357 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 282, + 355, + 464, + 367 + ], + "spans": [ + { + "bbox": [ + 282, + 355, + 358, + 367 + ], + "score": 1.0, + "content": "if collecting enough", + "type": "text" + }, + { + "bbox": [ + 359, + 357, + 364, + 365 + ], + "score": 0.81, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 355, + 400, + 367 + ], + "score": 1.0, + "content": "for every", + "type": "text" + }, + { + "bbox": [ + 400, + 356, + 426, + 366 + ], + "score": 0.9, + "content": "\\boldsymbol { s } \\times \\boldsymbol { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 426, + 355, + 464, + 367 + ], + "score": 1.0, + "content": "pair then", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 297, + 365, + 480, + 378 + ], + "spans": [ + { + "bbox": [ + 297, + 365, + 392, + 378 + ], + "score": 1.0, + "content": "Get predicted true reward", + "type": "text" + }, + { + "bbox": [ + 393, + 367, + 398, + 375 + ], + "score": 0.81, + "content": "\\bar { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 365, + 480, + 378 + ], + "score": 1.0, + "content": "using majority voting", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 296, + 375, + 501, + 389 + ], + "spans": [ + { + "bbox": [ + 296, + 375, + 396, + 389 + ], + "score": 1.0, + "content": "Estimate confusion matrix", + "type": "text" + }, + { + "bbox": [ + 396, + 376, + 405, + 387 + ], + "score": 0.83, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 375, + 439, + 389 + ], + "score": 1.0, + "content": "based on", + "type": "text" + }, + { + "bbox": [ + 440, + 378, + 446, + 387 + ], + "score": 0.8, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 375, + 462, + 389 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 462, + 378, + 468, + 387 + ], + "score": 0.75, + "content": "\\bar { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 375, + 501, + 389 + ], + "score": 1.0, + "content": "(Eqn. 4)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 282, + 387, + 498, + 401 + ], + "spans": [ + { + "bbox": [ + 282, + 387, + 374, + 401 + ], + "score": 1.0, + "content": "Obtain surrogate reward", + "type": "text" + }, + { + "bbox": [ + 374, + 389, + 380, + 398 + ], + "score": 0.57, + "content": "\\dot { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 388, + 498, + 400 + ], + "score": 0.88, + "content": "( \\hat { \\mathbf { R } } = ( 1 - \\eta ) \\cdot \\mathbf { R } + \\eta \\cdot \\mathbf { C } ^ { - 1 } \\mathbf { R } )", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 282, + 398, + 408, + 412 + ], + "spans": [ + { + "bbox": [ + 282, + 398, + 312, + 412 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 312, + 400, + 321, + 410 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 398, + 408, + 412 + ], + "score": 1.0, + "content": "using surrogate reward", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 284, + 409, + 310, + 419 + ], + "spans": [ + { + "bbox": [ + 284, + 409, + 310, + 419 + ], + "score": 0.49, + "content": "s \\gets s ^ { \\prime }", + "type": "inline_equation" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 255, + 418, + 338, + 432 + ], + "spans": [ + { + "bbox": [ + 255, + 418, + 283, + 432 + ], + "score": 1.0, + "content": "return", + "type": "text" + }, + { + "bbox": [ + 284, + 420, + 303, + 431 + ], + "score": 0.51, + "content": "Q ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 418, + 320, + 432 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 419, + 338, + 431 + ], + "score": 0.76, + "content": "\\pi ( s )", + "type": "inline_equation" + } + ], + "index": 42, + "is_list_end_line": true + } + ], + "index": 34, + "bbox_fs": [ + 246, + 273, + 501, + 432 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 424, + 200, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 423, + 201, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 201, + 439 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 105, + 450, + 504, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 505, + 463 + ], + "score": 1.0, + "content": "In this section, reward robust RL is tested in different games, with different noise settings. Due to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 461, + 379, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 379, + 474 + ], + "score": 1.0, + "content": "space limit, more experimental results can be found in Appendix D.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 449, + 505, + 474 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 230, + 499 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 231, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 231, + 500 + ], + "score": 1.0, + "content": "4.1 EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 522 + ], + "score": 1.0, + "content": "Environments and RL Algorithms To fully test the performance under different environments,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 532 + ], + "score": 1.0, + "content": "we evaluate the proposed robust reward RL method on two classic control games (CartPole, Pendu-", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 531, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 504, + 543 + ], + "score": 1.0, + "content": "lum) and seven Atari 2600 games (AirRaid, Alien, Carnival, MsPacman, Pong, Phoenix, Seaquest),", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "which encompass a large variety of environments, as well as rewards. Specifically, the rewards", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 553, + 504, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 504, + 565 + ], + "score": 1.0, + "content": "could be unary (CartPole), binary (most of Atari games), multivariate (Pong) and even continu-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "ous (Pendulum). A set of state-of-the-art reinforcement learning algorithms are experimented with", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 588 + ], + "score": 1.0, + "content": "while training under different amounts of noise (See Table 3)5. For each game and algorithm, three", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 586, + 445, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 445, + 598 + ], + "score": 1.0, + "content": "policies are trained based on different random initialization to decrease the variance.", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 49.5, + "bbox_fs": [ + 105, + 508, + 505, + 598 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 506, + 699 + ], + "lines": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "Reward Post-Processing For each game and RL algorithm, we test the performances for learning", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 505, + 634 + ], + "score": 1.0, + "content": "with true rewards, learning with noisy rewards and learning with surrogate rewards. Both symmet-", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 634, + 505, + 645 + ], + "score": 1.0, + "content": "ric and asymmetric noise settings with different noise levels are tested. For symmetric noise, the", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "confusion matrices are symmetric. As for asymmetric noise, two types of random noise are tested:", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 506, + 667 + ], + "score": 1.0, + "content": "1) rand-one, each reward level can only be perturbed into another reward; 2) rand-all, each reward", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "could be perturbed to any other reward, via adding a random noise matrix. To measure the amount", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 360, + 690 + ], + "score": 1.0, + "content": "of noise w.r.t confusion matrices, we define the weight of noise", + "type": "text" + }, + { + "bbox": [ + 360, + 679, + 368, + 687 + ], + "score": 0.75, + "content": "\\omega", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 677, + 484, + 690 + ], + "score": 1.0, + "content": "in Appendix B.2. The larger", + "type": "text" + }, + { + "bbox": [ + 484, + 679, + 492, + 687 + ], + "score": 0.75, + "content": "\\omega", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "is,", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 106, + 687, + 226, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 226, + 700 + ], + "score": 1.0, + "content": "the higher the noise rates are.", + "type": "text" + } + ], + "index": 61 + } + ], + "index": 57.5, + "bbox_fs": [ + 105, + 610, + 506, + 700 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 246, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 247, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 247, + 94 + ], + "score": 1.0, + "content": "4.2 ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "CartPole The goal in CartPole is to prevent the pole from falling by controlling the cart’s direction", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 216, + 129 + ], + "score": 1.0, + "content": "and velocity. The reward is", + "type": "text" + }, + { + "bbox": [ + 216, + 117, + 230, + 127 + ], + "score": 0.84, + "content": "+ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "for every step taken, including the termination step. When the cart or", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "pole deviates too much or the episode length is longer than 200, the episode terminates. Due to the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 162, + 151 + ], + "score": 1.0, + "content": "unary reward", + "type": "text" + }, + { + "bbox": [ + 162, + 138, + 186, + 150 + ], + "score": 0.91, + "content": "\\{ + 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 138, + 316, + 151 + ], + "score": 1.0, + "content": "in CartPole, a corrupted reward", + "type": "text" + }, + { + "bbox": [ + 316, + 139, + 330, + 149 + ], + "score": 0.52, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 138, + 465, + 151 + ], + "score": 1.0, + "content": "is added as the unexpected error", + "type": "text" + }, + { + "bbox": [ + 465, + 139, + 499, + 150 + ], + "score": 0.87, + "content": "( e _ { - } = 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 138, + 505, + 151 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 231, + 162 + ], + "score": 1.0, + "content": "As a result, the reward space", + "type": "text" + }, + { + "bbox": [ + 231, + 150, + 241, + 159 + ], + "score": 0.79, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 149, + 305, + 162 + ], + "score": 1.0, + "content": "is extended to", + "type": "text" + }, + { + "bbox": [ + 306, + 149, + 346, + 161 + ], + "score": 0.93, + "content": "\\{ + 1 , - 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 149, + 422, + 162 + ], + "score": 1.0, + "content": ". Five algorithms", + "type": "text" + }, + { + "bbox": [ + 423, + 150, + 432, + 161 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "-Learning (1992),", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 416, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 416, + 172 + ], + "score": 1.0, + "content": "CEM (2006), SARSA (1998), DQN (2016) and DDQN (2016) are evaluated.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "image", + "bbox": [ + 106, + 177, + 500, + 311 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 177, + 500, + 311 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 177, + 500, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 500, + 311 + ], + "score": 0.973, + "type": "image", + "image_path": "773df94c8cbedc6b09e7efd3947033cf50e6fa007f6394f58545dd7c8f0bf193.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 177, + 500, + 221.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 221.66666666666666, + 500, + 266.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 266.3333333333333, + 500, + 311.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 320, + 504, + 354 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 453, + 333 + ], + "score": 1.0, + "content": "Figure 1: Learning curves from five RL algorithms on CartPole game with true rewards", + "type": "text" + }, + { + "bbox": [ + 454, + 319, + 478, + 332 + ], + "score": 0.74, + "content": "( r ) \\mathsf { l } .", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 319, + 505, + 333 + ], + "score": 1.0, + "content": ", noisy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 329, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 140, + 344 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 140, + 331, + 153, + 343 + ], + "score": 0.56, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 329, + 295, + 344 + ], + "score": 1.0, + "content": "and estimated surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 296, + 332, + 308, + 343 + ], + "score": 0.52, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 331, + 340, + 343 + ], + "score": 0.47, + "content": "( \\eta = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 329, + 506, + 344 + ], + "score": 1.0, + "content": ") . Note that reward confusion matrices", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 422, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 422, + 355 + ], + "score": 1.0, + "content": "C are unknown to the agents here. Full results are in Appendix D.2 (Figure 6).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 359, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "In Figure 1, we show that our estimator successfully produces meaningful surrogate rewards that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "score": 1.0, + "content": "adapt the underlying RL algorithms to the noisy settings, without any assumption of the true distri-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 381, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 395 + ], + "score": 1.0, + "content": "bution of rewards. With the noise rate increasing (from 0.1 to 0.9), the models with noisy rewards", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "converge slower due to larger biases. However, we observe that the models always converge to the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 403, + 307, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 307, + 417 + ], + "score": 1.0, + "content": "best score 200 with the help of surrogate rewards.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "In some circumstances (slight noise - see Figure 6a, 6b, 6c, 6d), the surrogate rewards even lead to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "faster convergence. This points out an interesting observation: learning with surrogate reward even", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "outperforms the case with observing the true reward. We conjecture that the way of adding noise", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "and then removing the bias introduces implicit exploration. This implies that for settings even with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 464, + 463, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 463, + 478 + ], + "score": 1.0, + "content": "true reward, we might consider manually adding noise and then remove it in expectation.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 485, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 504, + 497 + ], + "score": 1.0, + "content": "Pendulum The goal in Pendulum is to keep a frictionless pendulum standing up. Different from", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 362, + 509 + ], + "score": 1.0, + "content": "the CartPole setting, the rewards in pendulum are continuous:", + "type": "text" + }, + { + "bbox": [ + 363, + 496, + 437, + 508 + ], + "score": 0.89, + "content": "r \\in ( - 1 6 . 2 8 , 0 . 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 496, + 505, + 509 + ], + "score": 1.0, + "content": ". The closer the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "reward is to zero, the better performance the model achieves. Following our extension (see Sec-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 517, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 161, + 531 + ], + "score": 1.0, + "content": "tion 3.1), the", + "type": "text" + }, + { + "bbox": [ + 162, + 518, + 195, + 530 + ], + "score": 0.93, + "content": "( - 1 7 , 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 517, + 351, + 531 + ], + "score": 1.0, + "content": "is firstly discretized into 17 intervals:", + "type": "text" + }, + { + "bbox": [ + 352, + 518, + 501, + 530 + ], + "score": 0.79, + "content": "( - 1 7 , - 1 6 ] , \\bar { ( - 1 6 , - 1 5 ] } , \\cdot \\cdot \\cdot , ( - 1 , 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 517, + 505, + 531 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "with its value approximated using its maximum point. After the quantization step, the surrogate", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 540, + 440, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 440, + 553 + ], + "score": 1.0, + "content": "rewards can be estimated using multi-outcome extensions presented in Section 3.1.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "table", + "bbox": [ + 137, + 597, + 477, + 683 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 555, + 506, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 554, + 504, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 491, + 568 + ], + "score": 1.0, + "content": "Table 1: Average scores of various RL algorithms on CartPole and Pendulum with noisy rewards", + "type": "text" + }, + { + "bbox": [ + 492, + 555, + 504, + 566 + ], + "score": 0.6, + "content": "( \\tilde { r } )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 250, + 578 + ], + "score": 1.0, + "content": "and surrogate rewards under known", + "type": "text" + }, + { + "bbox": [ + 250, + 567, + 262, + 577 + ], + "score": 0.66, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 566, + 315, + 578 + ], + "score": 1.0, + "content": "or estimated", + "type": "text" + }, + { + "bbox": [ + 315, + 567, + 327, + 577 + ], + "score": 0.74, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "noise rates. Note that the results for last two", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 576, + 494, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 226, + 589 + ], + "score": 1.0, + "content": "algorithms DDPG (rand-one)", + "type": "text" + }, + { + "bbox": [ + 226, + 577, + 235, + 587 + ], + "score": 0.59, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 576, + 494, + 589 + ], + "score": 1.0, + "content": "NAF (rand-all) are on Pendulum, but the others are on CartPole.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "table_body", + "bbox": [ + 137, + 597, + 477, + 683 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 597, + 477, + 683 + ], + "spans": [ + { + "bbox": [ + 137, + 597, + 477, + 683 + ], + "score": 0.982, + "html": "
Noise RateRewardQ-LearnCEMSARSADQNDDQNDDPGNAF
w=0.1r170.098.1165.2187.2187.8-1.03-4.48
165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
w= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.182.2159.6186.7200.0 -1.05-1.36
", + "type": "table", + "image_path": "1ae76c6ed973b4b8597898a128e369a80dbf7ecc08deae09f7f1703b8c96470d.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 137, + 597, + 477, + 625.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 137, + 625.6666666666666, + 477, + 654.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 137, + 654.3333333333333, + 477, + 682.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "We experiment two popular algorithms, DDPG (2015) and NAF (2016) in this game. In Figure 2,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "both algorithms perform well with surrogate rewards under different amounts of noise. In most", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "cases, the biases were corrected in the long-term, even when the amount of noise is extensive (e.g.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 147, + 732 + ], + "score": 0.87, + "content": "\\omega ~ = ~ 0 . 7 )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "). The quantitative scores on CartPole and Pendulum are given in Table 1, where the", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.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, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 246, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 247, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 247, + 94 + ], + "score": 1.0, + "content": "4.2 ROBUSTNESS EVALUATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "CartPole The goal in CartPole is to prevent the pole from falling by controlling the cart’s direction", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 216, + 129 + ], + "score": 1.0, + "content": "and velocity. The reward is", + "type": "text" + }, + { + "bbox": [ + 216, + 117, + 230, + 127 + ], + "score": 0.84, + "content": "+ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 116, + 506, + 129 + ], + "score": 1.0, + "content": "for every step taken, including the termination step. When the cart or", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "pole deviates too much or the episode length is longer than 200, the episode terminates. Due to the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 162, + 151 + ], + "score": 1.0, + "content": "unary reward", + "type": "text" + }, + { + "bbox": [ + 162, + 138, + 186, + 150 + ], + "score": 0.91, + "content": "\\{ + 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 138, + 316, + 151 + ], + "score": 1.0, + "content": "in CartPole, a corrupted reward", + "type": "text" + }, + { + "bbox": [ + 316, + 139, + 330, + 149 + ], + "score": 0.52, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 138, + 465, + 151 + ], + "score": 1.0, + "content": "is added as the unexpected error", + "type": "text" + }, + { + "bbox": [ + 465, + 139, + 499, + 150 + ], + "score": 0.87, + "content": "( e _ { - } = 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 138, + 505, + 151 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 149, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 231, + 162 + ], + "score": 1.0, + "content": "As a result, the reward space", + "type": "text" + }, + { + "bbox": [ + 231, + 150, + 241, + 159 + ], + "score": 0.79, + "content": "\\mathcal { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 149, + 305, + 162 + ], + "score": 1.0, + "content": "is extended to", + "type": "text" + }, + { + "bbox": [ + 306, + 149, + 346, + 161 + ], + "score": 0.93, + "content": "\\{ + 1 , - 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 149, + 422, + 162 + ], + "score": 1.0, + "content": ". Five algorithms", + "type": "text" + }, + { + "bbox": [ + 423, + 150, + 432, + 161 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 149, + 505, + 162 + ], + "score": 1.0, + "content": "-Learning (1992),", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 161, + 416, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 161, + 416, + 172 + ], + "score": 1.0, + "content": "CEM (2006), SARSA (1998), DQN (2016) and DDQN (2016) are evaluated.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 104, + 506, + 172 + ] + }, + { + "type": "image", + "bbox": [ + 106, + 177, + 500, + 311 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 177, + 500, + 311 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 177, + 500, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 500, + 311 + ], + "score": 0.973, + "type": "image", + "image_path": "773df94c8cbedc6b09e7efd3947033cf50e6fa007f6394f58545dd7c8f0bf193.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 106, + 177, + 500, + 221.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 106, + 221.66666666666666, + 500, + 266.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 266.3333333333333, + 500, + 311.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 320, + 504, + 354 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 319, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 453, + 333 + ], + "score": 1.0, + "content": "Figure 1: Learning curves from five RL algorithms on CartPole game with true rewards", + "type": "text" + }, + { + "bbox": [ + 454, + 319, + 478, + 332 + ], + "score": 0.74, + "content": "( r ) \\mathsf { l } .", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 319, + 505, + 333 + ], + "score": 1.0, + "content": ", noisy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 329, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 140, + 344 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 140, + 331, + 153, + 343 + ], + "score": 0.56, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 329, + 295, + 344 + ], + "score": 1.0, + "content": "and estimated surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 296, + 332, + 308, + 343 + ], + "score": 0.52, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 331, + 340, + 343 + ], + "score": 0.47, + "content": "( \\eta = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 329, + 506, + 344 + ], + "score": 1.0, + "content": ") . Note that reward confusion matrices", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 422, + 355 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 422, + 355 + ], + "score": 1.0, + "content": "C are unknown to the agents here. Full results are in Appendix D.2 (Figure 6).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 359, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "In Figure 1, we show that our estimator successfully produces meaningful surrogate rewards that", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 504, + 383 + ], + "score": 1.0, + "content": "adapt the underlying RL algorithms to the noisy settings, without any assumption of the true distri-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 381, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 395 + ], + "score": 1.0, + "content": "bution of rewards. With the noise rate increasing (from 0.1 to 0.9), the models with noisy rewards", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "converge slower due to larger biases. However, we observe that the models always converge to the", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 403, + 307, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 307, + 417 + ], + "score": 1.0, + "content": "best score 200 with the help of surrogate rewards.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 360, + 505, + 417 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 505, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 506, + 434 + ], + "score": 1.0, + "content": "In some circumstances (slight noise - see Figure 6a, 6b, 6c, 6d), the surrogate rewards even lead to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "faster convergence. This points out an interesting observation: learning with surrogate reward even", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "outperforms the case with observing the true reward. We conjecture that the way of adding noise", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "and then removing the bias introduces implicit exploration. This implies that for settings even with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 464, + 463, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 463, + 478 + ], + "score": 1.0, + "content": "true reward, we might consider manually adding noise and then remove it in expectation.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 420, + 506, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 485, + 505, + 551 + ], + "lines": [ + { + "bbox": [ + 106, + 484, + 504, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 504, + 497 + ], + "score": 1.0, + "content": "Pendulum The goal in Pendulum is to keep a frictionless pendulum standing up. Different from", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 362, + 509 + ], + "score": 1.0, + "content": "the CartPole setting, the rewards in pendulum are continuous:", + "type": "text" + }, + { + "bbox": [ + 363, + 496, + 437, + 508 + ], + "score": 0.89, + "content": "r \\in ( - 1 6 . 2 8 , 0 . 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 496, + 505, + 509 + ], + "score": 1.0, + "content": ". The closer the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "reward is to zero, the better performance the model achieves. Following our extension (see Sec-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 517, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 161, + 531 + ], + "score": 1.0, + "content": "tion 3.1), the", + "type": "text" + }, + { + "bbox": [ + 162, + 518, + 195, + 530 + ], + "score": 0.93, + "content": "( - 1 7 , 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 517, + 351, + 531 + ], + "score": 1.0, + "content": "is firstly discretized into 17 intervals:", + "type": "text" + }, + { + "bbox": [ + 352, + 518, + 501, + 530 + ], + "score": 0.79, + "content": "( - 1 7 , - 1 6 ] , \\bar { ( - 1 6 , - 1 5 ] } , \\cdot \\cdot \\cdot , ( - 1 , 0 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 517, + 505, + 531 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 542 + ], + "score": 1.0, + "content": "with its value approximated using its maximum point. After the quantization step, the surrogate", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 540, + 440, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 440, + 553 + ], + "score": 1.0, + "content": "rewards can be estimated using multi-outcome extensions presented in Section 3.1.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 484, + 506, + 553 + ] + }, + { + "type": "table", + "bbox": [ + 137, + 597, + 477, + 683 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 555, + 506, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 554, + 504, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 491, + 568 + ], + "score": 1.0, + "content": "Table 1: Average scores of various RL algorithms on CartPole and Pendulum with noisy rewards", + "type": "text" + }, + { + "bbox": [ + 492, + 555, + 504, + 566 + ], + "score": 0.6, + "content": "( \\tilde { r } )", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 566, + 250, + 578 + ], + "score": 1.0, + "content": "and surrogate rewards under known", + "type": "text" + }, + { + "bbox": [ + 250, + 567, + 262, + 577 + ], + "score": 0.66, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 566, + 315, + 578 + ], + "score": 1.0, + "content": "or estimated", + "type": "text" + }, + { + "bbox": [ + 315, + 567, + 327, + 577 + ], + "score": 0.74, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "noise rates. Note that the results for last two", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 576, + 494, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 226, + 589 + ], + "score": 1.0, + "content": "algorithms DDPG (rand-one)", + "type": "text" + }, + { + "bbox": [ + 226, + 577, + 235, + 587 + ], + "score": 0.59, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 576, + 494, + 589 + ], + "score": 1.0, + "content": "NAF (rand-all) are on Pendulum, but the others are on CartPole.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "table_body", + "bbox": [ + 137, + 597, + 477, + 683 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 137, + 597, + 477, + 683 + ], + "spans": [ + { + "bbox": [ + 137, + 597, + 477, + 683 + ], + "score": 0.982, + "html": "
Noise RateRewardQ-LearnCEMSARSADQNDDQNDDPGNAF
w=0.1r170.098.1165.2187.2187.8-1.03-4.48
165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
w= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.182.2159.6186.7200.0 -1.05-1.36
", + "type": "table", + "image_path": "1ae76c6ed973b4b8597898a128e369a80dbf7ecc08deae09f7f1703b8c96470d.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 137, + 597, + 477, + 625.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 137, + 625.6666666666666, + 477, + 654.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 137, + 654.3333333333333, + 477, + 682.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "We experiment two popular algorithms, DDPG (2015) and NAF (2016) in this game. In Figure 2,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "both algorithms perform well with surrogate rewards under different amounts of noise. In most", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "cases, the biases were corrected in the long-term, even when the amount of noise is extensive (e.g.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 721, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 147, + 732 + ], + "score": 0.87, + "content": "\\omega ~ = ~ 0 . 7 )", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 721, + 506, + 733 + ], + "score": 1.0, + "content": "). The quantitative scores on CartPole and Pendulum are given in Table 1, where the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 395, + 318 + ], + "score": 1.0, + "content": "scores are averaged based on the last thirty episodes. The full results", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 396, + 307, + 435, + 317 + ], + "score": 0.83, + "content": "\\left( \\omega > 0 . 5 \\right)", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 435, + 306, + 505, + 318 + ], + "score": 1.0, + "content": ") can be found in", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "Appendix D.1, so does Table 2. Our reward robust RL method is able to achieve consistently good", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 329, + 137, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 137, + 340 + ], + "score": 1.0, + "content": "scores.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 82, + 493, + 240 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 82, + 493, + 240 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 82, + 493, + 240 + ], + "spans": [ + { + "bbox": [ + 114, + 82, + 493, + 240 + ], + "score": 0.974, + "type": "image", + "image_path": "451aa49fb9cf8dc3251270bf181057baeed34713b0cc897c0ce4258ff7329b11.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 82, + 493, + 134.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 134.66666666666666, + 493, + 187.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 187.33333333333331, + 493, + 239.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 505, + 283 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 247, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 453, + 263 + ], + "score": 1.0, + "content": "Figure 2: Learning curves from DDPG and NAF on Pendulum game with true rewards", + "type": "text" + }, + { + "bbox": [ + 454, + 248, + 478, + 261 + ], + "score": 0.87, + "content": "( r ) \\mathsf { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 247, + 505, + 263 + ], + "score": 1.0, + "content": ", noisy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 259, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 141, + 273 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 260, + 167, + 272 + ], + "score": 0.35, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 259, + 261, + 273 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 261, + 261, + 274, + 272 + ], + "score": 0.48, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 260, + 308, + 272 + ], + "score": 0.64, + "content": "( \\eta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 259, + 506, + 273 + ], + "score": 1.0, + "content": ") . Both symmetric and asymmetric noise are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 271, + 402, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 402, + 284 + ], + "score": 1.0, + "content": "conduced in the experiments. Full results are in Appendix D.2 (Figure 8).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 395, + 318 + ], + "score": 1.0, + "content": "scores are averaged based on the last thirty episodes. The full results", + "type": "text" + }, + { + "bbox": [ + 396, + 307, + 435, + 317 + ], + "score": 0.83, + "content": "\\left( \\omega > 0 . 5 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 306, + 505, + 318 + ], + "score": 1.0, + "content": ") can be found in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 505, + 330 + ], + "score": 1.0, + "content": "Appendix D.1, so does Table 2. Our reward robust RL method is able to achieve consistently good", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 329, + 137, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 137, + 340 + ], + "score": 1.0, + "content": "scores.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "Atari We validate our algorithm on seven Atari 2600 games using the state-of-the-art algorithm", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "PPO (Schulman et al., 2017). The games are chosen to cover a variety of environments. The rewards", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 364, + 478, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 247, + 378 + ], + "score": 1.0, + "content": "in the Atari games are clipped into", + "type": "text" + }, + { + "bbox": [ + 247, + 365, + 289, + 377 + ], + "score": 0.94, + "content": "\\{ - 1 , 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 364, + 478, + 378 + ], + "score": 1.0, + "content": ". We leave the detailed settings to Appendix B.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "image", + "bbox": [ + 127, + 381, + 483, + 528 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 381, + 483, + 528 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 127, + 381, + 483, + 528 + ], + "spans": [ + { + "bbox": [ + 127, + 381, + 483, + 528 + ], + "score": 0.975, + "type": "image", + "image_path": "38cb45e4b166d635c44b6c36d861be0128e5f1445e49d09a112bea51194f8e04.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 127, + 381, + 483, + 430.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 127, + 430.0, + 483, + 479.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 127, + 479.0, + 483, + 528.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 537, + 493, + 561 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 536, + 493, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 396, + 552 + ], + "score": 1.0, + "content": "Figure 3: Learning curves from PPO on Pong-v4 game with true rewards", + "type": "text" + }, + { + "bbox": [ + 397, + 537, + 421, + 550 + ], + "score": 0.81, + "content": "( r ) \\mathsf { l } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 536, + 480, + 552 + ], + "score": 1.0, + "content": ", noisy rewards", + "type": "text" + }, + { + "bbox": [ + 480, + 538, + 493, + 550 + ], + "score": 0.67, + "content": "( \\tilde { r } )", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 547, + 494, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 198, + 561 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 199, + 549, + 225, + 561 + ], + "score": 0.79, + "content": "( \\eta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 547, + 229, + 561 + ], + "score": 1.0, + "content": ")", + "type": "text" + }, + { + "bbox": [ + 229, + 549, + 253, + 561 + ], + "score": 0.43, + "content": "( \\hat { r } ) \\mathbf { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 547, + 494, + 561 + ], + "score": 1.0, + "content": ". The noise rates increase from 0.1 to 0.9, with a step of 0.1.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 14.25 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "Results for PPO on Pong-v4 in symmetric noise setting are presented in Figure 3. Due to limited", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "space, more results on other Atari games and noise settings are given in Appendix D.3. Similar to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "previous results, our surrogate estimator performs consistently well and helps PPO converge to the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "optimal policy. Table 2 shows the average scores of PPO on five selected Atari games with different", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 226, + 622 + ], + "score": 1.0, + "content": "amounts of noise (symmetric", + "type": "text" + }, + { + "bbox": [ + 227, + 610, + 236, + 620 + ], + "score": 0.58, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 610, + 434, + 622 + ], + "score": 1.0, + "content": "asymmetric). In particular, when the noise rates", + "type": "text" + }, + { + "bbox": [ + 435, + 610, + 502, + 622 + ], + "score": 0.9, + "content": "e _ { + } = e _ { - } > 0 . 3 .", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 610, + 505, + 622 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "agents with surrogate rewards obtain significant amounts of improvements in average scores. We do", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 309, + 645 + ], + "score": 1.0, + "content": "not present the results for the case with unknown", + "type": "text" + }, + { + "bbox": [ + 309, + 632, + 320, + 642 + ], + "score": 0.33, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "because the state-space (image-input) is very", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 643, + 459, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 459, + 655 + ], + "score": 1.0, + "content": "large for Atari games, which is difficult to handle with the solution given in Section 3.3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 108, + 672, + 195, + 685 + ], + "lines": [ + { + "bbox": [ + 104, + 670, + 197, + 688 + ], + "spans": [ + { + "bbox": [ + 104, + 670, + 197, + 688 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Only an underwhelming amount of reinforcement learning studies have focused on the settings with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "perturbed and noisy rewards, despite the fact that such noises are common when exploring a real-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "world scenario, that faces sensor errors or adversarial examples. We adapt the ideas from supervised", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + } + ], + "page_idx": 7, + "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": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 82, + 493, + 240 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 82, + 493, + 240 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 82, + 493, + 240 + ], + "spans": [ + { + "bbox": [ + 114, + 82, + 493, + 240 + ], + "score": 0.974, + "type": "image", + "image_path": "451aa49fb9cf8dc3251270bf181057baeed34713b0cc897c0ce4258ff7329b11.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 82, + 493, + 134.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 134.66666666666666, + 493, + 187.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 187.33333333333331, + 493, + 239.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 249, + 505, + 283 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 247, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 453, + 263 + ], + "score": 1.0, + "content": "Figure 2: Learning curves from DDPG and NAF on Pendulum game with true rewards", + "type": "text" + }, + { + "bbox": [ + 454, + 248, + 478, + 261 + ], + "score": 0.87, + "content": "( r ) \\mathsf { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 247, + 505, + 263 + ], + "score": 1.0, + "content": ", noisy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 259, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 141, + 273 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 260, + 167, + 272 + ], + "score": 0.35, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 259, + 261, + 273 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 261, + 261, + 274, + 272 + ], + "score": 0.48, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 260, + 308, + 272 + ], + "score": 0.64, + "content": "( \\eta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 259, + 506, + 273 + ], + "score": 1.0, + "content": ") . Both symmetric and asymmetric noise are", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 271, + 402, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 271, + 402, + 284 + ], + "score": 1.0, + "content": "conduced in the experiments. Full results are in Appendix D.2 (Figure 8).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 339 + ], + "lines": [], + "index": 7, + "bbox_fs": [ + 105, + 306, + 505, + 340 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 356 + ], + "score": 1.0, + "content": "Atari We validate our algorithm on seven Atari 2600 games using the state-of-the-art algorithm", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 505, + 367 + ], + "score": 1.0, + "content": "PPO (Schulman et al., 2017). The games are chosen to cover a variety of environments. The rewards", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 364, + 478, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 247, + 378 + ], + "score": 1.0, + "content": "in the Atari games are clipped into", + "type": "text" + }, + { + "bbox": [ + 247, + 365, + 289, + 377 + ], + "score": 0.94, + "content": "\\{ - 1 , 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 364, + 478, + 378 + ], + "score": 1.0, + "content": ". We leave the detailed settings to Appendix B.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 342, + 505, + 378 + ] + }, + { + "type": "image", + "bbox": [ + 127, + 381, + 483, + 528 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 127, + 381, + 483, + 528 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 127, + 381, + 483, + 528 + ], + "spans": [ + { + "bbox": [ + 127, + 381, + 483, + 528 + ], + "score": 0.975, + "type": "image", + "image_path": "38cb45e4b166d635c44b6c36d861be0128e5f1445e49d09a112bea51194f8e04.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 127, + 381, + 483, + 430.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 127, + 430.0, + 483, + 479.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 127, + 479.0, + 483, + 528.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 537, + 493, + 561 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 536, + 493, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 396, + 552 + ], + "score": 1.0, + "content": "Figure 3: Learning curves from PPO on Pong-v4 game with true rewards", + "type": "text" + }, + { + "bbox": [ + 397, + 537, + 421, + 550 + ], + "score": 0.81, + "content": "( r ) \\mathsf { l } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 536, + 480, + 552 + ], + "score": 1.0, + "content": ", noisy rewards", + "type": "text" + }, + { + "bbox": [ + 480, + 538, + 493, + 550 + ], + "score": 0.67, + "content": "( \\tilde { r } )", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 547, + 494, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 198, + 561 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 199, + 549, + 225, + 561 + ], + "score": 0.79, + "content": "( \\eta = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 547, + 229, + 561 + ], + "score": 1.0, + "content": ")", + "type": "text" + }, + { + "bbox": [ + 229, + 549, + 253, + 561 + ], + "score": 0.43, + "content": "( \\hat { r } ) \\mathbf { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 547, + 494, + 561 + ], + "score": 1.0, + "content": ". The noise rates increase from 0.1 to 0.9, with a step of 0.1.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + } + ], + "index": 14.25 + }, + { + "type": "text", + "bbox": [ + 107, + 566, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "Results for PPO on Pong-v4 in symmetric noise setting are presented in Figure 3. Due to limited", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "space, more results on other Atari games and noise settings are given in Appendix D.3. Similar to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "previous results, our surrogate estimator performs consistently well and helps PPO converge to the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 611 + ], + "score": 1.0, + "content": "optimal policy. Table 2 shows the average scores of PPO on five selected Atari games with different", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 610, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 226, + 622 + ], + "score": 1.0, + "content": "amounts of noise (symmetric", + "type": "text" + }, + { + "bbox": [ + 227, + 610, + 236, + 620 + ], + "score": 0.58, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 610, + 434, + 622 + ], + "score": 1.0, + "content": "asymmetric). In particular, when the noise rates", + "type": "text" + }, + { + "bbox": [ + 435, + 610, + 502, + 622 + ], + "score": 0.9, + "content": "e _ { + } = e _ { - } > 0 . 3 .", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 610, + 505, + 622 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "agents with surrogate rewards obtain significant amounts of improvements in average scores. We do", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 631, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 309, + 645 + ], + "score": 1.0, + "content": "not present the results for the case with unknown", + "type": "text" + }, + { + "bbox": [ + 309, + 632, + 320, + 642 + ], + "score": 0.33, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 631, + 505, + 645 + ], + "score": 1.0, + "content": "because the state-space (image-input) is very", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 643, + 459, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 459, + 655 + ], + "score": 1.0, + "content": "large for Atari games, which is difficult to handle with the solution given in Section 3.3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 565, + 506, + 655 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 672, + 195, + 685 + ], + "lines": [ + { + "bbox": [ + 104, + 670, + 197, + 688 + ], + "spans": [ + { + "bbox": [ + 104, + 670, + 197, + 688 + ], + "score": 1.0, + "content": "5 CONCLUSION", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Only an underwhelming amount of reinforcement learning studies have focused on the settings with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "perturbed and noisy rewards, despite the fact that such noises are common when exploring a real-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "world scenario, that faces sensor errors or adversarial examples. We adapt the ideas from supervised", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "learning with noisy examples (Natarajan et al., 2013), and propose a simple but effective RL frame-", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "work for dealing with noisy rewards. The convergence guarantee and finite sample complexity of", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 115, + 256 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 116, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "-Learning (or its variant) with estimated surrogate rewards are given. To validate the effective-", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "ness of our approach, extensive experiments are conducted on OpenAI Gym, showing that surrogate", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 267, + 450, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 450, + 279 + ], + "score": 1.0, + "content": "rewards successfully rescue models from misleading rewards even at high noise rates.", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 118, + 117, + 494, + 202 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 85, + 503, + 109 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 84, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 402, + 98 + ], + "score": 1.0, + "content": "Table 2: Average scores of PPO on five selected games with noisy rewards", + "type": "text" + }, + { + "bbox": [ + 402, + 86, + 415, + 97 + ], + "score": 0.7, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 84, + 505, + 98 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 97, + 406, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 97, + 119, + 108 + ], + "score": 0.77, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 97, + 406, + 109 + ], + "score": 1.0, + "content": ". The experiments are repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 118, + 117, + 494, + 202 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 117, + 494, + 202 + ], + "spans": [ + { + "bbox": [ + 118, + 117, + 494, + 202 + ], + "score": 0.982, + "html": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_=e+=0.1-2044.21814.81239.24608.91709.1849.2
67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.3r-770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+ =0.3r-1180.1543.1919.82600.31109.6727.8
46.7%个1730.81637.7966.14171.51470.2408.6
", + "type": "table", + "image_path": "98e28db6578a3264d9b29693372c638330a3d66b67e56d60e4c93fcd1089878d.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 118, + 117, + 494, + 145.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 118, + 145.33333333333334, + 494, + 173.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 118, + 173.66666666666669, + 494, + 202.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "learning with noisy examples (Natarajan et al., 2013), and propose a simple but effective RL frame-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "work for dealing with noisy rewards. The convergence guarantee and finite sample complexity of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 115, + 256 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "-Learning (or its variant) with estimated surrogate rewards are given. To validate the effective-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "ness of our approach, extensive experiments are conducted on OpenAI Gym, showing that surrogate", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 267, + 450, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 450, + 279 + ], + "score": 1.0, + "content": "rewards successfully rescue models from misleading rewards even at high noise rates.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 176, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 176, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 176, + 308 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 104, + 307, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "Alan Joseph Bekker and Jacob Goldberger. Training deep neural-networks based on unreliable", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 325, + 310, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 310, + 338 + ], + "score": 1.0, + "content": "labels. In ICASSP, pp. 2682–2686. IEEE, 2016.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 356, + 277, + 371 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 277, + 371 + ], + "score": 1.0, + "content": "Wojciech Zaremba. Openai gym, 2016.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 376, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 390 + ], + "score": 1.0, + "content": "Alexander Philip Dawid and Allan M Skene. Maximum likelihood estimation of observer error-rates", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 388, + 358, + 401 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 358, + 401 + ], + "score": 1.0, + "content": "using the em algorithm. Applied statistics, pp. 20–28, 1979.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "score": 1.0, + "content": "Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 418, + 504, + 432 + ], + "spans": [ + { + "bbox": [ + 115, + 418, + 504, + 432 + ], + "score": 1.0, + "content": "John Schulman, Szymon Sidor, and Yuhuai Wu. Openai baselines. https://github.com/", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 430, + 243, + 443 + ], + "spans": [ + { + "bbox": [ + 115, + 430, + 243, + 443 + ], + "score": 1.0, + "content": "openai/baselines, 2017.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 448, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 464 + ], + "score": 1.0, + "content": "Tom Everitt, Victoria Krakovna, Laurent Orseau, and Shane Legg. Reinforcement learning with a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 460, + 391, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 460, + 391, + 475 + ], + "score": 1.0, + "content": "corrupted reward channel. In IJCAI, pp. 4705–4713. ijcai.org, 2017.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "Justin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adversarial inverse rein-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 492, + 320, + 505 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 320, + 505 + ], + "score": 1.0, + "content": "forcement learning. CoRR, abs/1710.11248, 2017.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 511, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 527 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy P. Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 523, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 505, + 537 + ], + "score": 1.0, + "content": "with model-based acceleration. In ICML, volume 48 of JMLR Workshop and Conference Pro-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 534, + 293, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 534, + 293, + 549 + ], + "score": 1.0, + "content": "ceedings, pp. 2829–2838. JMLR.org, 2016.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 553, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 505, + 569 + ], + "score": 1.0, + "content": "Zhaoyuan Gu, Zhenzhong Jia, and Howie Choset. Adversary a3c for robust reinforcement learning,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 565, + 415, + 579 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 351, + 579 + ], + "score": 1.0, + "content": "2018. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 351, + 567, + 357, + 574 + ], + "score": 0.64, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 565, + 415, + 579 + ], + "score": 1.0, + "content": "SJvrXqvaZ.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 584, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 506, + 600 + ], + "score": 1.0, + "content": "Dylan Hadfield-Menell, Smitha Milli, Pieter Abbeel, Stuart J Russell, and Anca Dragan. Inverse", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 596, + 493, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 596, + 493, + 610 + ], + "score": 1.0, + "content": "reward design. In Advances in Neural Information Processing Systems, pp. 6765–6774, 2017.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "Dan Hendrycks, Mantas Mazeika, Duncan Wilson, and Kevin Gimpel. Using trusted data to train", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 627, + 446, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 627, + 446, + 642 + ], + "score": 1.0, + "content": "deep networks on labels corrupted by severe noise. CoRR, abs/1802.05300, 2018.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "score": 1.0, + "content": "Sandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 659, + 391, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 391, + 672 + ], + "score": 1.0, + "content": "on neural network policies. arXiv preprint arXiv:1702.02284, 2017.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 677, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 693 + ], + "score": 1.0, + "content": "Alex Irpan. Deep reinforcement learning doesn’t work yet. https://www.alexirpan.com/", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 690, + 285, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 285, + 703 + ], + "score": 1.0, + "content": "2018/02/14/rl-hard.html, 2018.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "score": 1.0, + "content": "Tommi S. Jaakkola, Michael I. Jordan, and Satinder P. Singh. Convergence of stochastic iterative", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 720, + 456, + 735 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 456, + 735 + ], + "score": 1.0, + "content": "dynamic programming algorithms. In NIPS, pp. 703–710. Morgan Kaufmann, 1993.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 24.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": "table", + "bbox": [ + 118, + 117, + 494, + 202 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 85, + 503, + 109 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 84, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 84, + 402, + 98 + ], + "score": 1.0, + "content": "Table 2: Average scores of PPO on five selected games with noisy rewards", + "type": "text" + }, + { + "bbox": [ + 402, + 86, + 415, + 97 + ], + "score": 0.7, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 84, + 505, + 98 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 97, + 406, + 109 + ], + "spans": [ + { + "bbox": [ + 107, + 97, + 119, + 108 + ], + "score": 0.77, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 97, + 406, + 109 + ], + "score": 1.0, + "content": ". The experiments are repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 118, + 117, + 494, + 202 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 117, + 494, + 202 + ], + "spans": [ + { + "bbox": [ + 118, + 117, + 494, + 202 + ], + "score": 0.982, + "html": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_=e+=0.1-2044.21814.81239.24608.91709.1849.2
67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.3r-770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+ =0.3r-1180.1543.1919.82600.31109.6727.8
46.7%个1730.81637.7966.14171.51470.2408.6
", + "type": "table", + "image_path": "98e28db6578a3264d9b29693372c638330a3d66b67e56d60e4c93fcd1089878d.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 118, + 117, + 494, + 145.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 118, + 145.33333333333334, + 494, + 173.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 118, + 173.66666666666669, + 494, + 202.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 505, + 278 + ], + "lines": [], + "index": 7, + "bbox_fs": [ + 105, + 222, + 505, + 279 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 295, + 176, + 307 + ], + "lines": [ + { + "bbox": [ + 106, + 295, + 176, + 308 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 176, + 308 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "list", + "bbox": [ + 104, + 307, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 328 + ], + "score": 1.0, + "content": "Alan Joseph Bekker and Jacob Goldberger. Training deep neural-networks based on unreliable", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 325, + 310, + 338 + ], + "spans": [ + { + "bbox": [ + 115, + 325, + 310, + 338 + ], + "score": 1.0, + "content": "labels. In ICASSP, pp. 2682–2686. IEEE, 2016.", + "type": "text" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 506, + 360 + ], + "score": 1.0, + "content": "Greg Brockman, Vicki Cheung, Ludwig Pettersson, Jonas Schneider, John Schulman, Jie Tang, and", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 356, + 277, + 371 + ], + "spans": [ + { + "bbox": [ + 115, + 356, + 277, + 371 + ], + "score": 1.0, + "content": "Wojciech Zaremba. Openai gym, 2016.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 376, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 505, + 390 + ], + "score": 1.0, + "content": "Alexander Philip Dawid and Allan M Skene. Maximum likelihood estimation of observer error-rates", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 388, + 358, + 401 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 358, + 401 + ], + "score": 1.0, + "content": "using the em algorithm. Applied statistics, pp. 20–28, 1979.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 421 + ], + "score": 1.0, + "content": "Prafulla Dhariwal, Christopher Hesse, Oleg Klimov, Alex Nichol, Matthias Plappert, Alec Radford,", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 418, + 504, + 432 + ], + "spans": [ + { + "bbox": [ + 115, + 418, + 504, + 432 + ], + "score": 1.0, + "content": "John Schulman, Szymon Sidor, and Yuhuai Wu. Openai baselines. https://github.com/", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 430, + 243, + 443 + ], + "spans": [ + { + "bbox": [ + 115, + 430, + 243, + 443 + ], + "score": 1.0, + "content": "openai/baselines, 2017.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 448, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 464 + ], + "score": 1.0, + "content": "Tom Everitt, Victoria Krakovna, Laurent Orseau, and Shane Legg. Reinforcement learning with a", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 460, + 391, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 460, + 391, + 475 + ], + "score": 1.0, + "content": "corrupted reward channel. In IJCAI, pp. 4705–4713. ijcai.org, 2017.", + "type": "text" + } + ], + "index": 21, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 505, + 494 + ], + "score": 1.0, + "content": "Justin Fu, Katie Luo, and Sergey Levine. Learning robust rewards with adversarial inverse rein-", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 492, + 320, + 505 + ], + "spans": [ + { + "bbox": [ + 115, + 492, + 320, + 505 + ], + "score": 1.0, + "content": "forcement learning. CoRR, abs/1710.11248, 2017.", + "type": "text" + } + ], + "index": 23, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 511, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 527 + ], + "score": 1.0, + "content": "Shixiang Gu, Timothy P. Lillicrap, Ilya Sutskever, and Sergey Levine. Continuous deep q-learning", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 116, + 523, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 505, + 537 + ], + "score": 1.0, + "content": "with model-based acceleration. In ICML, volume 48 of JMLR Workshop and Conference Pro-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 534, + 293, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 534, + 293, + 549 + ], + "score": 1.0, + "content": "ceedings, pp. 2829–2838. JMLR.org, 2016.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 553, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 505, + 569 + ], + "score": 1.0, + "content": "Zhaoyuan Gu, Zhenzhong Jia, and Howie Choset. Adversary a3c for robust reinforcement learning,", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 565, + 415, + 579 + ], + "spans": [ + { + "bbox": [ + 115, + 565, + 351, + 579 + ], + "score": 1.0, + "content": "2018. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 351, + 567, + 357, + 574 + ], + "score": 0.64, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 565, + 415, + 579 + ], + "score": 1.0, + "content": "SJvrXqvaZ.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 584, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 104, + 584, + 506, + 600 + ], + "score": 1.0, + "content": "Dylan Hadfield-Menell, Smitha Milli, Pieter Abbeel, Stuart J Russell, and Anca Dragan. Inverse", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 596, + 493, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 596, + 493, + 610 + ], + "score": 1.0, + "content": "reward design. In Advances in Neural Information Processing Systems, pp. 6765–6774, 2017.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 630 + ], + "score": 1.0, + "content": "Dan Hendrycks, Mantas Mazeika, Duncan Wilson, and Kevin Gimpel. Using trusted data to train", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 627, + 446, + 642 + ], + "spans": [ + { + "bbox": [ + 115, + 627, + 446, + 642 + ], + "score": 1.0, + "content": "deep networks on labels corrupted by severe noise. CoRR, abs/1802.05300, 2018.", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 662 + ], + "score": 1.0, + "content": "Sandy Huang, Nicolas Papernot, Ian Goodfellow, Yan Duan, and Pieter Abbeel. Adversarial attacks", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 659, + 391, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 391, + 672 + ], + "score": 1.0, + "content": "on neural network policies. arXiv preprint arXiv:1702.02284, 2017.", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 677, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 693 + ], + "score": 1.0, + "content": "Alex Irpan. Deep reinforcement learning doesn’t work yet. https://www.alexirpan.com/", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 690, + 285, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 285, + 703 + ], + "score": 1.0, + "content": "2018/02/14/rl-hard.html, 2018.", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 724 + ], + "score": 1.0, + "content": "Tommi S. Jaakkola, Michael I. Jordan, and Satinder P. Singh. Convergence of stochastic iterative", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 115, + 720, + 456, + 735 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 456, + 735 + ], + "score": 1.0, + "content": "dynamic programming algorithms. In NIPS, pp. 703–710. Morgan Kaufmann, 1993.", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 314, + 506, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Sham Machandranath Kakade. On the Sample Complexity of Reinforcement Learning. PhD thesis,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 93, + 232, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 93, + 232, + 106 + ], + "score": 1.0, + "content": "University of London, 2003.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "score": 1.0, + "content": "David R Karger, Sewoong Oh, and Devavrat Shah. Iterative learning for reliable crowdsourcing", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 464, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 464, + 136 + ], + "score": 1.0, + "content": "systems. In Advances in neural information processing systems, pp. 1953–1961, 2011.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "Michael J. Kearns and Satinder P. Singh. Finite-sample convergence rates for q-learning and indirect", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 154, + 351, + 164 + ], + "spans": [ + { + "bbox": [ + 117, + 154, + 351, + 164 + ], + "score": 1.0, + "content": "algorithms. In NIPS, pp. 996–1002. The MIT Press, 1998.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 105, + 172, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Michael J. Kearns and Satinder P. Singh. Bias-variance error bounds for temporal difference updates.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 183, + 317, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 183, + 317, + 196 + ], + "score": 1.0, + "content": "In COLT, pp. 142–147. Morgan Kaufmann, 2000.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 202, + 504, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 504, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 504, + 214 + ], + "score": 1.0, + "content": "Michael J. Kearns, Yishay Mansour, and Andrew Y. Ng. A sparse sampling algorithm for near-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 504, + 225 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 504, + 225 + ], + "score": 1.0, + "content": "optimal planning in large markov decision processes. In IJCAI, pp. 1324–1231. Morgan Kauf-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 224, + 169, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 169, + 236 + ], + "score": 1.0, + "content": "mann, 1999.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 104, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "Ashish Khetan, Zachary C. Lipton, and Anima Anandkumar. Learning from noisy singly-labeled", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 254, + 262, + 265 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 262, + 265 + ], + "score": 1.0, + "content": "data. CoRR, abs/1712.04577, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 105, + 272, + 504, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 288 + ], + "score": 1.0, + "content": "Jernej Kos and Dawn Song. Delving into adversarial attacks on deep policies. CoRR,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 283, + 210, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 210, + 295 + ], + "score": 1.0, + "content": "abs/1705.06452, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. CoRR,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 325, + 209, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 325, + 209, + 336 + ], + "score": 1.0, + "content": "abs/1509.02971, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 503, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Shiau Hong Lim, Huan Xu, and Shie Mannor. Reinforcement learning in robust markov decision", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 355, + 332, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 355, + 332, + 367 + ], + "score": 1.0, + "content": "processes. Math. Oper. Res., 41(4):1325–1353, 2016.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 373, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "Yen-Chen Lin, Zhang-Wei Hong, Yuan-Hong Liao, Meng-Li Shih, Ming-Yu Liu, and Min Sun.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Tactics of adversarial attack on deep reinforcement learning agents. In IJCAI, pp. 3756–3762.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 396, + 179, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 396, + 179, + 408 + ], + "score": 1.0, + "content": "ijcai.org, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 504, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "score": 1.0, + "content": "Qiang Liu, Jian Peng, and Alexander T Ihler. Variational inference for crowdsourcing. In Proc. of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 425, + 168, + 438 + ], + "spans": [ + { + "bbox": [ + 115, + 425, + 168, + 438 + ], + "score": 1.0, + "content": "NIPS, 2012.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 504, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 504, + 457 + ], + "score": 1.0, + "content": "Yang Liu and Mingyan Liu. An online learning approach to improving the quality of crowd-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 455, + 441, + 468 + ], + "spans": [ + { + "bbox": [ + 115, + 455, + 441, + 468 + ], + "score": 1.0, + "content": "sourcing. IEEE/ACM Transactions on Networking, 25(4):2166–2179, Aug 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "R. Loftin, B. Peng, J. MacGlashan, M. L. Littman, M. E. Taylor, J. Huang, and D. L. Roberts.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 116, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "Learning something from nothing: Leveraging implicit human feedback strategies. In The 23rd", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "IEEE International Symposium on Robot and Human Interactive Communication, pp. 607–612,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 507, + 162, + 521 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 162, + 521 + ], + "score": 1.0, + "content": "Aug 2014.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 504, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "Aditya Menon, Brendan Van Rooyen, Cheng Soon Ong, and Bob Williamson. Learning from cor-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 115, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "rupted binary labels via class-probability estimation. In International Conference on Machine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 549, + 238, + 561 + ], + "spans": [ + { + "bbox": [ + 115, + 549, + 238, + 561 + ], + "score": 1.0, + "content": "Learning, pp. 125–134, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 116, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "Wierstra, and Martin A. Riedmiller. Playing atari with deep reinforcement learning. CoRR,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 117, + 590, + 205, + 601 + ], + "spans": [ + { + "bbox": [ + 117, + 590, + 205, + 601 + ], + "score": 1.0, + "content": "abs/1312.5602, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Belle-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 116, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "mare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 631, + 420, + 644 + ], + "spans": [ + { + "bbox": [ + 116, + 631, + 420, + 644 + ], + "score": 1.0, + "content": "control through deep reinforcement learning. Nature, 518(7540):529, 2015.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 649, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "Nagarajan Natarajan, Inderjit S Dhillon, Pradeep K Ravikumar, and Ambuj Tewari. Learning with", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 660, + 481, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 481, + 673 + ], + "score": 1.0, + "content": "noisy labels. In Advances in neural information processing systems, pp. 1196–1204, 2013.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "Lerrel Pinto, James Davidson, Rahul Sukthankar, and Abhinav Gupta. Robust adversarial rein-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 689, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 505, + 704 + ], + "score": 1.0, + "content": "forcement learning. In ICML, volume 70 of Proceedings of Machine Learning Research, pp.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 702, + 223, + 713 + ], + "spans": [ + { + "bbox": [ + 116, + 702, + 223, + 713 + ], + "score": 1.0, + "content": "2817–2826. PMLR, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 104, + 720, + 465, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 720, + 466, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 466, + 733 + ], + "score": 1.0, + "content": "Matthias Plappert. keras-rl. https://github.com/keras-rl/keras-rl, 2016.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + } + ], + "page_idx": 9, + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Sham Machandranath Kakade. On the Sample Complexity of Reinforcement Learning. PhD thesis,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 117, + 93, + 232, + 106 + ], + "spans": [ + { + "bbox": [ + 117, + 93, + 232, + 106 + ], + "score": 1.0, + "content": "University of London, 2003.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 111, + 504, + 136 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 126 + ], + "score": 1.0, + "content": "David R Karger, Sewoong Oh, and Devavrat Shah. Iterative learning for reliable crowdsourcing", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 124, + 464, + 136 + ], + "spans": [ + { + "bbox": [ + 115, + 124, + 464, + 136 + ], + "score": 1.0, + "content": "systems. In Advances in neural information processing systems, pp. 1953–1961, 2011.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 110, + 506, + 136 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 142, + 504, + 165 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 505, + 155 + ], + "score": 1.0, + "content": "Michael J. Kearns and Satinder P. Singh. Finite-sample convergence rates for q-learning and indirect", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 117, + 154, + 351, + 164 + ], + "spans": [ + { + "bbox": [ + 117, + 154, + 351, + 164 + ], + "score": 1.0, + "content": "algorithms. In NIPS, pp. 996–1002. The MIT Press, 1998.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 142, + 505, + 164 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 172, + 504, + 195 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "Michael J. Kearns and Satinder P. Singh. Bias-variance error bounds for temporal difference updates.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 183, + 317, + 196 + ], + "spans": [ + { + "bbox": [ + 116, + 183, + 317, + 196 + ], + "score": 1.0, + "content": "In COLT, pp. 142–147. Morgan Kaufmann, 2000.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 172, + 505, + 196 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 202, + 504, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 202, + 504, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 504, + 214 + ], + "score": 1.0, + "content": "Michael J. Kearns, Yishay Mansour, and Andrew Y. Ng. A sparse sampling algorithm for near-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 213, + 504, + 225 + ], + "spans": [ + { + "bbox": [ + 115, + 213, + 504, + 225 + ], + "score": 1.0, + "content": "optimal planning in large markov decision processes. In IJCAI, pp. 1324–1231. Morgan Kauf-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 224, + 169, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 224, + 169, + 236 + ], + "score": 1.0, + "content": "mann, 1999.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 202, + 504, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 256 + ], + "score": 1.0, + "content": "Ashish Khetan, Zachary C. Lipton, and Anima Anandkumar. Learning from noisy singly-labeled", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 254, + 262, + 265 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 262, + 265 + ], + "score": 1.0, + "content": "data. CoRR, abs/1712.04577, 2017.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 242, + 505, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 272, + 504, + 296 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 288 + ], + "score": 1.0, + "content": "Jernej Kos and Dawn Song. Delving into adversarial attacks on deep policies. CoRR,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 283, + 210, + 295 + ], + "spans": [ + { + "bbox": [ + 115, + 283, + 210, + 295 + ], + "score": 1.0, + "content": "abs/1705.06452, 2017.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 272, + 506, + 295 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 505, + 337 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 316 + ], + "score": 1.0, + "content": "Timothy P. Lillicrap, Jonathan J. Hunt, Alexander Pritzel, Nicolas Heess, Tom Erez, Yuval Tassa,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 313, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 115, + 313, + 505, + 327 + ], + "score": 1.0, + "content": "David Silver, and Daan Wierstra. Continuous control with deep reinforcement learning. CoRR,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 325, + 209, + 336 + ], + "spans": [ + { + "bbox": [ + 116, + 325, + 209, + 336 + ], + "score": 1.0, + "content": "abs/1509.02971, 2015.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 302, + 505, + 336 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 343, + 503, + 367 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "Shiau Hong Lim, Huan Xu, and Shie Mannor. Reinforcement learning in robust markov decision", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 355, + 332, + 367 + ], + "spans": [ + { + "bbox": [ + 115, + 355, + 332, + 367 + ], + "score": 1.0, + "content": "processes. Math. Oper. Res., 41(4):1325–1353, 2016.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 344, + 505, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 373, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "Yen-Chen Lin, Zhang-Wei Hong, Yuan-Hong Liao, Meng-Li Shih, Ming-Yu Liu, and Min Sun.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Tactics of adversarial attack on deep reinforcement learning agents. In IJCAI, pp. 3756–3762.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 396, + 179, + 408 + ], + "spans": [ + { + "bbox": [ + 115, + 396, + 179, + 408 + ], + "score": 1.0, + "content": "ijcai.org, 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 373, + 505, + 408 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 414, + 504, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 506, + 429 + ], + "score": 1.0, + "content": "Qiang Liu, Jian Peng, and Alexander T Ihler. Variational inference for crowdsourcing. In Proc. of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 425, + 168, + 438 + ], + "spans": [ + { + "bbox": [ + 115, + 425, + 168, + 438 + ], + "score": 1.0, + "content": "NIPS, 2012.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 413, + 506, + 438 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 444, + 504, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 444, + 504, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 504, + 457 + ], + "score": 1.0, + "content": "Yang Liu and Mingyan Liu. An online learning approach to improving the quality of crowd-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 455, + 441, + 468 + ], + "spans": [ + { + "bbox": [ + 115, + 455, + 441, + 468 + ], + "score": 1.0, + "content": "sourcing. IEEE/ACM Transactions on Networking, 25(4):2166–2179, Aug 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 444, + 504, + 468 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 474, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "score": 1.0, + "content": "R. Loftin, B. Peng, J. MacGlashan, M. L. Littman, M. E. Taylor, J. Huang, and D. L. Roberts.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 486, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 116, + 486, + 506, + 498 + ], + "score": 1.0, + "content": "Learning something from nothing: Leveraging implicit human feedback strategies. In The 23rd", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 496, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 505, + 509 + ], + "score": 1.0, + "content": "IEEE International Symposium on Robot and Human Interactive Communication, pp. 607–612,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 507, + 162, + 521 + ], + "spans": [ + { + "bbox": [ + 115, + 507, + 162, + 521 + ], + "score": 1.0, + "content": "Aug 2014.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 475, + 506, + 521 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 504, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 540 + ], + "score": 1.0, + "content": "Aditya Menon, Brendan Van Rooyen, Cheng Soon Ong, and Bob Williamson. Learning from cor-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 538, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 115, + 538, + 505, + 551 + ], + "score": 1.0, + "content": "rupted binary labels via class-probability estimation. In International Conference on Machine", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 549, + 238, + 561 + ], + "spans": [ + { + "bbox": [ + 115, + 549, + 238, + 561 + ], + "score": 1.0, + "content": "Learning, pp. 125–134, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 525, + 505, + 561 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 505, + 581 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Alex Graves, Ioannis Antonoglou, Daan", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 116, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "Wierstra, and Martin A. Riedmiller. Playing atari with deep reinforcement learning. CoRR,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 117, + 590, + 205, + 601 + ], + "spans": [ + { + "bbox": [ + 117, + 590, + 205, + 601 + ], + "score": 1.0, + "content": "abs/1312.5602, 2013.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 567, + 505, + 601 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 608, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 621 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Belle-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 619, + 505, + 632 + ], + "spans": [ + { + "bbox": [ + 116, + 619, + 505, + 632 + ], + "score": 1.0, + "content": "mare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 631, + 420, + 644 + ], + "spans": [ + { + "bbox": [ + 116, + 631, + 420, + 644 + ], + "score": 1.0, + "content": "control through deep reinforcement learning. Nature, 518(7540):529, 2015.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 609, + 505, + 644 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 649, + 504, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 106, + 649, + 505, + 662 + ], + "score": 1.0, + "content": "Nagarajan Natarajan, Inderjit S Dhillon, Pradeep K Ravikumar, and Ambuj Tewari. Learning with", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 660, + 481, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 481, + 673 + ], + "score": 1.0, + "content": "noisy labels. In Advances in neural information processing systems, pp. 1196–1204, 2013.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 649, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 679, + 505, + 693 + ], + "score": 1.0, + "content": "Lerrel Pinto, James Davidson, Rahul Sukthankar, and Abhinav Gupta. Robust adversarial rein-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 689, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 505, + 704 + ], + "score": 1.0, + "content": "forcement learning. In ICML, volume 70 of Proceedings of Machine Learning Research, pp.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 702, + 223, + 713 + ], + "spans": [ + { + "bbox": [ + 116, + 702, + 223, + 713 + ], + "score": 1.0, + "content": "2817–2826. PMLR, 2017.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 679, + 505, + 713 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 720, + 465, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 720, + 466, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 466, + 733 + ], + "score": 1.0, + "content": "Matthias Plappert. keras-rl. https://github.com/keras-rl/keras-rl, 2016.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 720, + 466, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Sarvjeet Ghotra, Sergey Levine, and Balaraman Ravindran. Epopt: Learning", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 460, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 460, + 105 + ], + "score": 1.0, + "content": "robust neural network policies using model ensembles. CoRR, abs/1610.01283, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 112, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "Joshua Romoff, Alexandre Piche, Peter Henderson, Vincent Franc¸ois-Lavet, and Joelle Pineau. Re- ´", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 504, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 504, + 135 + ], + "score": 1.0, + "content": "ward estimation for variance reduction in deep reinforcement learning. CoRR, abs/1805.03359,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 132, + 143, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 132, + 143, + 147 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 503, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "score": 1.0, + "content": "Aurko Roy, Huan Xu, and Sebastian Pokutta. Reinforcement learning under model mismatch.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 239, + 175 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 239, + 175 + ], + "score": 1.0, + "content": "CoRR, abs/1706.04711, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 198 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 340, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 340, + 206 + ], + "score": 1.0, + "content": "optimization algorithms. CoRR, abs/1707.06347, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Anton Schwartz. A reinforcement learning method for maximizing undiscounted rewards. In ICML,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 278, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 278, + 236 + ], + "score": 1.0, + "content": "pp. 298–305. Morgan Kaufmann, 1993.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 258 + ], + "score": 1.0, + "content": "Clayton Scott. A rate of convergence for mixture proportion estimation, with application to learning", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 254, + 268, + 265 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 268, + 265 + ], + "score": 1.0, + "content": "from noisy labels. In AISTATS, 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 104, + 272, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "Clayton Scott, Gilles Blanchard, Gregory Handy, Sara Pozzi, and Marek Flaska. Classification with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 284, + 485, + 297 + ], + "spans": [ + { + "bbox": [ + 116, + 284, + 485, + 297 + ], + "score": 1.0, + "content": "asymmetric label noise: Consistency and maximal denoising. In COLT, pp. 489–511, 2013.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 503, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 505, + 316 + ], + "score": 1.0, + "content": "Matthew J. Sobel. Mean-variance tradeoffs in an undiscounted MDP. Operations Research, 42(1):", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 313, + 181, + 325 + ], + "spans": [ + { + "bbox": [ + 117, + 313, + 181, + 325 + ], + "score": 1.0, + "content": "175–183, 1994.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 503, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 504, + 344 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar and Rob Fergus. Learning from noisy labels with deep neural networks. arXiv", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 344, + 279, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 279, + 356 + ], + "score": 1.0, + "content": "preprint arXiv:1406.2080, 2(3):4, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 362, + 502, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 504, + 376 + ], + "score": 1.0, + "content": "Richard S. Sutton and Andrew G. Barto. Reinforcement learning - an introduction. Adaptive com-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 373, + 314, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 373, + 314, + 385 + ], + "score": 1.0, + "content": "putation and machine learning. MIT Press, 1998.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 504, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "score": 1.0, + "content": "Istvan Szita and Andras L ´ orincz. Learning tetris using the noisy cross-entropy method. ¨ Neural", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 403, + 277, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 403, + 277, + 415 + ], + "score": 1.0, + "content": "Computation, 18(12):2936–2941, 2006.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 504, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "Yee Whye Teh, Victor Bapst, Wojciech M. Czarnecki, John Quan, James Kirkpatrick, Raia Hadsell,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "Nicolas Heess, and Razvan Pascanu. Distral: Robust multitask reinforcement learning. In NIPS,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 444, + 207, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 207, + 456 + ], + "score": 1.0, + "content": "pp. 4499–4509, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 462, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "score": 1.0, + "content": "Andrea Lockerd Thomaz, Cynthia Breazeal, et al. Reinforcement learning with human teachers:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 474, + 463, + 486 + ], + "spans": [ + { + "bbox": [ + 116, + 474, + 463, + 486 + ], + "score": 1.0, + "content": "Evidence of feedback and guidance with implications for learning performance. 2006.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "John N. Tsitsiklis. Asynchronous stochastic approximation and q-learning. Machine Learning, 16", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 504, + 196, + 515 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 196, + 515 + ], + "score": 1.0, + "content": "(3):185–202, 1994.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 503, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 537 + ], + "score": 1.0, + "content": "Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double q-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 533, + 335, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 533, + 335, + 546 + ], + "score": 1.0, + "content": "learning. In AAAI, pp. 2094–2100. AAAI Press, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 504, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "Brendan van Rooyen and Robert C Williamson. Learning in the presence of corruption. arXiv", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "score": 1.0, + "content": "preprint arXiv:1504.00091, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 504, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 116, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "Dueling network architectures for deep reinforcement learning. In ICML, volume 48 of JMLR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 604, + 415, + 618 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 415, + 618 + ], + "score": 1.0, + "content": "Workshop and Conference Proceedings, pp. 1995–2003. JMLR.org, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 504, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 637 + ], + "score": 1.0, + "content": "Christopher J. C. H. Watkins and Peter Dayan. Q-learning. In Machine Learning, pp. 279–292,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 633, + 143, + 647 + ], + "spans": [ + { + "bbox": [ + 114, + 633, + 143, + 647 + ], + "score": 1.0, + "content": "1992.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 653, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 667 + ], + "score": 1.0, + "content": "Christopher John Cornish Hellaby Watkins. Learning from Delayed Rewards. PhD thesis, King’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 664, + 266, + 677 + ], + "spans": [ + { + "bbox": [ + 115, + 664, + 266, + 677 + ], + "score": 1.0, + "content": "College, Cambridge, UK, May 1989.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 504, + 717 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 696 + ], + "score": 1.0, + "content": "Yuchen Zhang, Xi Chen, Denny Zhou, and Michael I Jordan. Spectral methods meet em: A provably", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 693, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 115, + 693, + 505, + 708 + ], + "score": 1.0, + "content": "optimal algorithm for crowdsourcing. In Advances in neural information processing systems, pp.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 117, + 705, + 191, + 717 + ], + "spans": [ + { + "bbox": [ + 117, + 705, + 191, + 717 + ], + "score": 1.0, + "content": "1260–1268, 2014.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + } + ], + "page_idx": 10, + "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, + 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": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Sarvjeet Ghotra, Sergey Levine, and Balaraman Ravindran. Epopt: Learning", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 460, + 105 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 460, + 105 + ], + "score": 1.0, + "content": "robust neural network policies using model ensembles. CoRR, abs/1610.01283, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 506, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 112, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 124 + ], + "score": 1.0, + "content": "Joshua Romoff, Alexandre Piche, Peter Henderson, Vincent Franc¸ois-Lavet, and Joelle Pineau. Re- ´", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 124, + 504, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 124, + 504, + 135 + ], + "score": 1.0, + "content": "ward estimation for variance reduction in deep reinforcement learning. CoRR, abs/1805.03359,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 132, + 143, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 132, + 143, + 147 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 112, + 505, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 503, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 106, + 153, + 505, + 165 + ], + "score": 1.0, + "content": "Aurko Roy, Huan Xu, and Sebastian Pokutta. Reinforcement learning under model mismatch.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 239, + 175 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 239, + 175 + ], + "score": 1.0, + "content": "CoRR, abs/1706.04711, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 153, + 505, + 175 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 182, + 504, + 206 + ], + "lines": [ + { + "bbox": [ + 105, + 181, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 198 + ], + "score": 1.0, + "content": "John Schulman, Filip Wolski, Prafulla Dhariwal, Alec Radford, and Oleg Klimov. Proximal policy", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 194, + 340, + 206 + ], + "spans": [ + { + "bbox": [ + 115, + 194, + 340, + 206 + ], + "score": 1.0, + "content": "optimization algorithms. CoRR, abs/1707.06347, 2017.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 181, + 505, + 206 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 212, + 504, + 236 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 505, + 226 + ], + "score": 1.0, + "content": "Anton Schwartz. A reinforcement learning method for maximizing undiscounted rewards. In ICML,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 223, + 278, + 236 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 278, + 236 + ], + "score": 1.0, + "content": "pp. 298–305. Morgan Kaufmann, 1993.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 213, + 505, + 236 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 243, + 504, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 506, + 258 + ], + "score": 1.0, + "content": "Clayton Scott. A rate of convergence for mixture proportion estimation, with application to learning", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 254, + 268, + 265 + ], + "spans": [ + { + "bbox": [ + 116, + 254, + 268, + 265 + ], + "score": 1.0, + "content": "from noisy labels. In AISTATS, 2015.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 240, + 506, + 265 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 272, + 505, + 296 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 505, + 285 + ], + "score": 1.0, + "content": "Clayton Scott, Gilles Blanchard, Gregory Handy, Sara Pozzi, and Marek Flaska. Classification with", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 284, + 485, + 297 + ], + "spans": [ + { + "bbox": [ + 116, + 284, + 485, + 297 + ], + "score": 1.0, + "content": "asymmetric label noise: Consistency and maximal denoising. In COLT, pp. 489–511, 2013.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 272, + 505, + 297 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 302, + 503, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 505, + 316 + ], + "score": 1.0, + "content": "Matthew J. Sobel. Mean-variance tradeoffs in an undiscounted MDP. Operations Research, 42(1):", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 313, + 181, + 325 + ], + "spans": [ + { + "bbox": [ + 117, + 313, + 181, + 325 + ], + "score": 1.0, + "content": "175–183, 1994.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 301, + 505, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 332, + 503, + 355 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 504, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 504, + 344 + ], + "score": 1.0, + "content": "Sainbayar Sukhbaatar and Rob Fergus. Learning from noisy labels with deep neural networks. arXiv", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 344, + 279, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 344, + 279, + 356 + ], + "score": 1.0, + "content": "preprint arXiv:1406.2080, 2(3):4, 2014.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 333, + 504, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 362, + 502, + 385 + ], + "lines": [ + { + "bbox": [ + 105, + 361, + 504, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 504, + 376 + ], + "score": 1.0, + "content": "Richard S. Sutton and Andrew G. Barto. Reinforcement learning - an introduction. Adaptive com-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 373, + 314, + 385 + ], + "spans": [ + { + "bbox": [ + 115, + 373, + 314, + 385 + ], + "score": 1.0, + "content": "putation and machine learning. MIT Press, 1998.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 361, + 504, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 504, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "score": 1.0, + "content": "Istvan Szita and Andras L ´ orincz. Learning tetris using the noisy cross-entropy method. ¨ Neural", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 403, + 277, + 415 + ], + "spans": [ + { + "bbox": [ + 116, + 403, + 277, + 415 + ], + "score": 1.0, + "content": "Computation, 18(12):2936–2941, 2006.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 391, + 505, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 421, + 504, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "Yee Whye Teh, Victor Bapst, Wojciech M. Czarnecki, John Quan, James Kirkpatrick, Raia Hadsell,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 432, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 432, + 505, + 446 + ], + "score": 1.0, + "content": "Nicolas Heess, and Razvan Pascanu. Distral: Robust multitask reinforcement learning. In NIPS,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 444, + 207, + 456 + ], + "spans": [ + { + "bbox": [ + 115, + 444, + 207, + 456 + ], + "score": 1.0, + "content": "pp. 4499–4509, 2017.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 421, + 505, + 456 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 462, + 504, + 486 + ], + "lines": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 476 + ], + "score": 1.0, + "content": "Andrea Lockerd Thomaz, Cynthia Breazeal, et al. Reinforcement learning with human teachers:", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 474, + 463, + 486 + ], + "spans": [ + { + "bbox": [ + 116, + 474, + 463, + 486 + ], + "score": 1.0, + "content": "Evidence of feedback and guidance with implications for learning performance. 2006.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 462, + 505, + 486 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 492, + 504, + 516 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "John N. Tsitsiklis. Asynchronous stochastic approximation and q-learning. Machine Learning, 16", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 504, + 196, + 515 + ], + "spans": [ + { + "bbox": [ + 116, + 504, + 196, + 515 + ], + "score": 1.0, + "content": "(3):185–202, 1994.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 492, + 505, + 515 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 503, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 537 + ], + "score": 1.0, + "content": "Hado van Hasselt, Arthur Guez, and David Silver. Deep reinforcement learning with double q-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 533, + 335, + 546 + ], + "spans": [ + { + "bbox": [ + 115, + 533, + 335, + 546 + ], + "score": 1.0, + "content": "learning. In AAAI, pp. 2094–2100. AAAI Press, 2016.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 520, + 505, + 546 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 552, + 504, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 106, + 552, + 505, + 565 + ], + "score": 1.0, + "content": "Brendan van Rooyen and Robert C Williamson. Learning in the presence of corruption. arXiv", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 254, + 576 + ], + "score": 1.0, + "content": "preprint arXiv:1504.00091, 2015.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 552, + 505, + 576 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 504, + 617 + ], + "lines": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 595 + ], + "score": 1.0, + "content": "Ziyu Wang, Tom Schaul, Matteo Hessel, Hado van Hasselt, Marc Lanctot, and Nando de Freitas.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 116, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "Dueling network architectures for deep reinforcement learning. In ICML, volume 48 of JMLR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 604, + 415, + 618 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 415, + 618 + ], + "score": 1.0, + "content": "Workshop and Conference Proceedings, pp. 1995–2003. JMLR.org, 2016.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 582, + 506, + 618 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 623, + 504, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 622, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 637 + ], + "score": 1.0, + "content": "Christopher J. C. H. Watkins and Peter Dayan. Q-learning. In Machine Learning, pp. 279–292,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 114, + 633, + 143, + 647 + ], + "spans": [ + { + "bbox": [ + 114, + 633, + 143, + 647 + ], + "score": 1.0, + "content": "1992.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 622, + 505, + 647 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 653, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 505, + 667 + ], + "score": 1.0, + "content": "Christopher John Cornish Hellaby Watkins. Learning from Delayed Rewards. PhD thesis, King’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 664, + 266, + 677 + ], + "spans": [ + { + "bbox": [ + 115, + 664, + 266, + 677 + ], + "score": 1.0, + "content": "College, Cambridge, UK, May 1989.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 651, + 505, + 677 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 683, + 504, + 717 + ], + "lines": [ + { + "bbox": [ + 105, + 682, + 505, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 696 + ], + "score": 1.0, + "content": "Yuchen Zhang, Xi Chen, Denny Zhou, and Michael I Jordan. Spectral methods meet em: A provably", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 693, + 505, + 708 + ], + "spans": [ + { + "bbox": [ + 115, + 693, + 505, + 708 + ], + "score": 1.0, + "content": "optimal algorithm for crowdsourcing. In Advances in neural information processing systems, pp.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 117, + 705, + 191, + 717 + ], + "spans": [ + { + "bbox": [ + 117, + 705, + 191, + 717 + ], + "score": 1.0, + "content": "1260–1268, 2014.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 682, + 505, + 717 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 170, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 171, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 171, + 97 + ], + "score": 1.0, + "content": "A PROOFS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 504, + 128 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 173, + 119 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 174, + 107, + 179, + 116 + ], + "score": 0.41, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 104, + 311, + 119 + ], + "score": 1.0, + "content": ". For simplicity, we shorthand", + "type": "text" + }, + { + "bbox": [ + 311, + 106, + 491, + 118 + ], + "score": 0.92, + "content": "\\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 115, + 495, + 130 + ], + "spans": [ + { + "bbox": [ + 107, + 117, + 131, + 128 + ], + "score": 0.9, + "content": "{ \\hat { r } } , { \\tilde { r } } , r", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 115, + 164, + 130 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 164, + 117, + 223, + 128 + ], + "score": 0.93, + "content": "r _ { + } , r _ { - } , \\hat { r } _ { + } , \\hat { r } _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 115, + 495, + 130 + ], + "score": 1.0, + "content": "denote the general reward levels and corresponding surrogate ones:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 132, + 400, + 146 + ], + "lines": [ + { + "bbox": [ + 210, + 132, + 400, + 146 + ], + "spans": [ + { + "bbox": [ + 210, + 132, + 400, + 146 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) \\hat { r } _ { - } + \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) \\hat { r } _ { + } . } \\end{array}", + "type": "interline_equation", + "image_path": "ffded2179fc99e63e5d6e6235b3eb6befb42e1212144b59912a08c44a71d637b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 210, + 132, + 400, + 146 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 149, + 297, + 161 + ], + "lines": [ + { + "bbox": [ + 106, + 148, + 298, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 133, + 162 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 151, + 163, + 161 + ], + "score": 0.88, + "content": "r = r _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 148, + 298, + 162 + ], + "score": 1.0, + "content": ", from the definition in Lemma 1:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 164, + 397, + 179 + ], + "lines": [ + { + "bbox": [ + 212, + 164, + 397, + 179 + ], + "spans": [ + { + "bbox": [ + 212, + 164, + 397, + 179 + ], + "score": 0.91, + "content": "\\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) = e _ { + } , \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) = 1 - e _ { + } .", + "type": "interline_equation", + "image_path": "ee6c0e6581d123ec30c6ef939129f51720e633f8215a48d0ce83f79886a54133.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 164, + 397, + 179 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 401, + 194 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 402, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 402, + 195 + ], + "score": 1.0, + "content": "Taking the definition of surrogate rewards Eqn. (1) into Eqn. (5), we have", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 196, + 464, + 239 + ], + "lines": [ + { + "bbox": [ + 146, + 196, + 464, + 239 + ], + "spans": [ + { + "bbox": [ + 146, + 196, + 464, + 239 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = e _ { + } \\cdot \\hat { r } _ { - } + ( 1 - e _ { + } ) \\cdot \\hat { r } _ { + } } \\\\ & { \\qquad = e _ { + } \\cdot \\frac { ( 1 - e _ { + } ) r _ { - } - e _ { - } r _ { + } } { 1 - e _ { - } - e _ { + } } + ( 1 - e _ { + } ) \\cdot \\frac { ( 1 - e _ { - } ) r _ { + } - e _ { + } r _ { - } } { 1 - e _ { - } - e _ { + } } = r _ { + } . } \\end{array}", + "type": "interline_equation", + "image_path": "5b541bf67df10f09298b971dbebb8968ca53ce9b6cd164f52ace582e2cce137f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 146, + 196, + 464, + 210.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 146, + 210.33333333333334, + 464, + 224.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 146, + 224.66666666666669, + 464, + 239.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 419, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 419, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 172, + 257 + ], + "score": 1.0, + "content": "Similarly, when", + "type": "text" + }, + { + "bbox": [ + 172, + 244, + 202, + 254 + ], + "score": 0.89, + "content": "r = r _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 239, + 264, + 257 + ], + "score": 1.0, + "content": ", it also verifies", + "type": "text" + }, + { + "bbox": [ + 265, + 242, + 416, + 255 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { \\tilde { r } | r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 239, + 419, + 257 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 265, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "score": 1.0, + "content": "Proof of Lemma 2. The idea of constructing unbiased estimator is easily adapted to multi-outcome", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 276, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 430, + 291 + ], + "score": 1.0, + "content": "reward settings via writing out the conditions for the unbiasedness property (s.t.", + "type": "text" + }, + { + "bbox": [ + 430, + 277, + 480, + 290 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { \\tilde { r } | r } [ \\hat { r } ] = r .", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 276, + 506, + 291 + ], + "score": 1.0, + "content": "). For", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 207, + 304 + ], + "score": 1.0, + "content": "simplicity, we shorthand", + "type": "text" + }, + { + "bbox": [ + 207, + 290, + 250, + 303 + ], + "score": 0.9, + "content": "\\hat { r } ( \\tilde { r } = R _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 290, + 262, + 304 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 262, + 289, + 275, + 302 + ], + "score": 0.91, + "content": "\\hat { R } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "in the following proofs. Similar to Lemma 1, we need to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 302, + 298, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 287, + 313 + ], + "score": 1.0, + "content": "solve the following set of functions to obtain", + "type": "text" + }, + { + "bbox": [ + 287, + 303, + 293, + 312 + ], + "score": 0.81, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 302, + 298, + 313 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 316, + 439, + 380 + ], + "lines": [ + { + "bbox": [ + 161, + 316, + 439, + 380 + ], + "spans": [ + { + "bbox": [ + 161, + 316, + 439, + 380 + ], + "score": 0.94, + "content": "\\left\\{ \\begin{array} { r l } & { R _ { 0 } = c _ { 0 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 0 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 0 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { R _ { 1 } = c _ { 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { \\qquad \\dots } \\\\ & { R _ { M - 1 } = c _ { M - 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { M - 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { M - 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "6386e7b2c8883f002491f6eb2e05eea145f8e9f3d5d1be3cf2572c0f6a63bb3a.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 161, + 316, + 439, + 337.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 161, + 337.3333333333333, + 439, + 358.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 161, + 358.66666666666663, + 439, + 379.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 383, + 502, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 133, + 397 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 382, + 146, + 395 + ], + "score": 0.9, + "content": "\\hat { R } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 382, + 433, + 397 + ], + "score": 1.0, + "content": "denotes the value of the surrogate reward when the observed reward is", + "type": "text" + }, + { + "bbox": [ + 433, + 384, + 445, + 395 + ], + "score": 0.89, + "content": "R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 382, + 480, + 397 + ], + "score": 1.0, + "content": ". Define", + "type": "text" + }, + { + "bbox": [ + 480, + 384, + 505, + 395 + ], + "score": 0.84, + "content": "\\mathbf { R } : =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 394, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 107, + 396, + 192, + 408 + ], + "score": 0.89, + "content": "[ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 395, + 215, + 410 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 215, + 394, + 322, + 408 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { R } } : = [ \\hat { R } _ { 0 } , \\hat { R } _ { 1 } , . . . , \\hat { R } _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 395, + 504, + 410 + ], + "score": 1.0, + "content": ", then the above equations are equivalent to:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 408, + 443, + 422 + ], + "spans": [ + { + "bbox": [ + 107, + 408, + 154, + 420 + ], + "score": 0.88, + "content": "\\mathbf { R } = \\mathbf { C } \\cdot { \\hat { \\mathbf { R } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 408, + 252, + 422 + ], + "score": 1.0, + "content": ". If the confusion matrix", + "type": "text" + }, + { + "bbox": [ + 252, + 410, + 262, + 419 + ], + "score": 0.77, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 408, + 443, + 422 + ], + "score": 1.0, + "content": "is invertible, we obtain the surrogate reward:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 274, + 424, + 336, + 438 + ], + "lines": [ + { + "bbox": [ + 274, + 424, + 336, + 438 + ], + "spans": [ + { + "bbox": [ + 274, + 424, + 336, + 438 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}", + "type": "interline_equation", + "image_path": "48ec697a3d70b6ade5e52510058ba94a569a7d8e001b7f3085acd252db19a216.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 274, + 424, + 336, + 438 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 443, + 468, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 470, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 330, + 456 + ], + "score": 1.0, + "content": "According to above definition, for any true reward level", + "type": "text" + }, + { + "bbox": [ + 331, + 444, + 429, + 455 + ], + "score": 0.9, + "content": "R _ { i } , { i = 0 } , 1 , \\cdots , M - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 442, + 470, + 456 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 459, + 436, + 474 + ], + "lines": [ + { + "bbox": [ + 174, + 459, + 436, + 474 + ], + "spans": [ + { + "bbox": [ + 174, + 459, + 436, + 474 + ], + "score": 0.87, + "content": "\\mathbb { E } _ { \\tilde { r } | r = R _ { i } } [ \\hat { r } ] = c _ { i , 0 } \\cdot \\hat { R } _ { 0 } + c _ { i , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { i , M - 1 } \\cdot \\hat { R } _ { M - 1 } = R _ { i } .", + "type": "interline_equation", + "image_path": "21b89b547c1d9a0fb58d00c233213f5cecb41fa1d250375c1da0628d73a9d528.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 174, + 459, + 436, + 474 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 462, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 462, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 462, + 520 + ], + "score": 1.0, + "content": "Furthermore, the probabilities for observing surrogate rewards can be written as follows:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 522, + 442, + 561 + ], + "lines": [ + { + "bbox": [ + 168, + 522, + 442, + 561 + ], + "spans": [ + { + "bbox": [ + 168, + 522, + 442, + 561 + ], + "score": 0.94, + "content": "\\hat { \\bf P } = [ \\hat { p } _ { 1 } , \\hat { p } _ { 2 } , \\cdots , \\hat { p } _ { M } ] = \\left[ \\sum _ { j } p _ { j } c _ { j , 1 } , \\sum _ { j } p _ { j } c _ { j , 2 } , \\cdots , \\sum _ { j } p _ { j } c _ { j , M } \\right] ,", + "type": "interline_equation", + "image_path": "bc92c3712e29bce102666ed054cb956b503b157b90da565811a8d269016c4b47.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 168, + 522, + 442, + 535.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 168, + 535.0, + 442, + 548.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 168, + 548.0, + 442, + 561.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 567, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 133, + 581 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 567, + 196, + 581 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\hat { p } _ { i } = \\sum _ { j } p _ { j } c _ { j , i } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 565, + 217, + 581 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 218, + 568, + 227, + 579 + ], + "score": 0.73, + "content": "\\hat { p } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 565, + 231, + 581 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 569, + 241, + 579 + ], + "score": 0.74, + "content": "p _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 565, + 491, + 581 + ], + "score": 1.0, + "content": "represent the probabilities of occurrence for surrogate reward", + "type": "text" + }, + { + "bbox": [ + 492, + 565, + 504, + 578 + ], + "score": 0.89, + "content": "\\hat { R } _ { i }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 578, + 237, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 171, + 592 + ], + "score": 1.0, + "content": "and true reward", + "type": "text" + }, + { + "bbox": [ + 171, + 580, + 183, + 590 + ], + "score": 0.88, + "content": "R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 578, + 237, + 592 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 593, + 504, + 616 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 503, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 178, + 606 + ], + "score": 1.0, + "content": "Corollary 1. Let", + "type": "text" + }, + { + "bbox": [ + 179, + 594, + 188, + 605 + ], + "score": 0.86, + "content": "\\hat { p } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 592, + 207, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 595, + 217, + 605 + ], + "score": 0.84, + "content": "p _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 592, + 460, + 606 + ], + "score": 1.0, + "content": "denote the probabilities of occurrence for surrogate reward", + "type": "text" + }, + { + "bbox": [ + 460, + 593, + 503, + 605 + ], + "score": 0.89, + "content": "\\hat { r } ( \\tilde { r } = R _ { i } )", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 603, + 334, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 173, + 617 + ], + "score": 1.0, + "content": "and true reward", + "type": "text" + }, + { + "bbox": [ + 173, + 605, + 184, + 615 + ], + "score": 0.89, + "content": "R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 603, + 334, + 617 + ], + "score": 1.0, + "content": ". Then the surrogate reward satisfies,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 619, + 419, + 647 + ], + "lines": [ + { + "bbox": [ + 191, + 619, + 419, + 647 + ], + "spans": [ + { + "bbox": [ + 191, + 619, + 419, + 647 + ], + "score": 0.92, + "content": "\\sum _ { s ^ { \\prime } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { j } p _ { j } R _ { j } = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } .", + "type": "interline_equation", + "image_path": "35533407f878646a1710b370b93cf76346c9672c7163ea857607a6d29a244643.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 191, + 619, + 419, + 647 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 300, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 301, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 183, + 671 + ], + "score": 1.0, + "content": "Proof of Corollary", + "type": "text" + }, + { + "bbox": [ + 183, + 659, + 189, + 668 + ], + "score": 0.62, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 656, + 301, + 671 + ], + "score": 1.0, + "content": ". From Lemma 2, we have,", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 672, + 439, + 731 + ], + "lines": [ + { + "bbox": [ + 171, + 672, + 439, + 731 + ], + "spans": [ + { + "bbox": [ + 171, + 672, + 439, + 731 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } & { } & { \\displaystyle \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { s _ { t + 1 } \\in S ; R _ { j } \\in { \\mathcal R } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , R _ { j } ) R _ { j } } \\\\ & { } & { \\displaystyle = \\sum _ { R _ { j } \\in { \\mathcal R } } \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) R _ { j } = \\sum _ { R _ { j } \\in { \\mathcal R } } p _ { j } R _ { j } = \\sum _ { j } p _ { j } R _ { j } . } \\end{array}", + "type": "interline_equation", + "image_path": "0e78dab249ef536eb3f5534efcb435edb0e10de0b13642824607b60df9b2fde7.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 171, + 672, + 439, + 691.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 171, + 691.6666666666666, + 439, + 711.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 171, + 711.3333333333333, + 439, + 730.9999999999999 + ], + "spans": [], + "index": 36 + } + ] + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 483, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 496, + 485, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 496, + 485, + 505, + 495 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 242, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 495, + 244, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 495, + 244, + 505, + 254 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 81, + 170, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 171, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 171, + 97 + ], + "score": 1.0, + "content": "A PROOFS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 105, + 504, + 128 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 506, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 173, + 119 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 174, + 107, + 179, + 116 + ], + "score": 0.41, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 104, + 311, + 119 + ], + "score": 1.0, + "content": ". For simplicity, we shorthand", + "type": "text" + }, + { + "bbox": [ + 311, + 106, + 491, + 118 + ], + "score": 0.92, + "content": "\\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 104, + 506, + 119 + ], + "score": 1.0, + "content": "as", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 115, + 495, + 130 + ], + "spans": [ + { + "bbox": [ + 107, + 117, + 131, + 128 + ], + "score": 0.9, + "content": "{ \\hat { r } } , { \\tilde { r } } , r", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 115, + 164, + 130 + ], + "score": 1.0, + "content": ", and let", + "type": "text" + }, + { + "bbox": [ + 164, + 117, + 223, + 128 + ], + "score": 0.93, + "content": "r _ { + } , r _ { - } , \\hat { r } _ { + } , \\hat { r } _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 115, + 495, + 130 + ], + "score": 1.0, + "content": "denote the general reward levels and corresponding surrogate ones:", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 104, + 506, + 130 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 132, + 400, + 146 + ], + "lines": [ + { + "bbox": [ + 210, + 132, + 400, + 146 + ], + "spans": [ + { + "bbox": [ + 210, + 132, + 400, + 146 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) \\hat { r } _ { - } + \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) \\hat { r } _ { + } . } \\end{array}", + "type": "interline_equation", + "image_path": "ffded2179fc99e63e5d6e6235b3eb6befb42e1212144b59912a08c44a71d637b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 210, + 132, + 400, + 146 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 149, + 297, + 161 + ], + "lines": [ + { + "bbox": [ + 106, + 148, + 298, + 162 + ], + "spans": [ + { + "bbox": [ + 106, + 148, + 133, + 162 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 151, + 163, + 161 + ], + "score": 0.88, + "content": "r = r _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 148, + 298, + 162 + ], + "score": 1.0, + "content": ", from the definition in Lemma 1:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 148, + 298, + 162 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 164, + 397, + 179 + ], + "lines": [ + { + "bbox": [ + 212, + 164, + 397, + 179 + ], + "spans": [ + { + "bbox": [ + 212, + 164, + 397, + 179 + ], + "score": 0.91, + "content": "\\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) = e _ { + } , \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) = 1 - e _ { + } .", + "type": "interline_equation", + "image_path": "ee6c0e6581d123ec30c6ef939129f51720e633f8215a48d0ce83f79886a54133.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 164, + 397, + 179 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 181, + 401, + 194 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 402, + 195 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 402, + 195 + ], + "score": 1.0, + "content": "Taking the definition of surrogate rewards Eqn. (1) into Eqn. (5), we have", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 180, + 402, + 195 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 196, + 464, + 239 + ], + "lines": [ + { + "bbox": [ + 146, + 196, + 464, + 239 + ], + "spans": [ + { + "bbox": [ + 146, + 196, + 464, + 239 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = e _ { + } \\cdot \\hat { r } _ { - } + ( 1 - e _ { + } ) \\cdot \\hat { r } _ { + } } \\\\ & { \\qquad = e _ { + } \\cdot \\frac { ( 1 - e _ { + } ) r _ { - } - e _ { - } r _ { + } } { 1 - e _ { - } - e _ { + } } + ( 1 - e _ { + } ) \\cdot \\frac { ( 1 - e _ { - } ) r _ { + } - e _ { + } r _ { - } } { 1 - e _ { - } - e _ { + } } = r _ { + } . } \\end{array}", + "type": "interline_equation", + "image_path": "5b541bf67df10f09298b971dbebb8968ca53ce9b6cd164f52ace582e2cce137f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 146, + 196, + 464, + 210.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 146, + 210.33333333333334, + 464, + 224.66666666666669 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 146, + 224.66666666666669, + 464, + 239.00000000000003 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 419, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 239, + 419, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 239, + 172, + 257 + ], + "score": 1.0, + "content": "Similarly, when", + "type": "text" + }, + { + "bbox": [ + 172, + 244, + 202, + 254 + ], + "score": 0.89, + "content": "r = r _ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 239, + 264, + 257 + ], + "score": 1.0, + "content": ", it also verifies", + "type": "text" + }, + { + "bbox": [ + 265, + 242, + 416, + 255 + ], + "score": 0.91, + "content": "\\mathbb { E } _ { \\tilde { r } | r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 239, + 419, + 257 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 239, + 419, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 265, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 265, + 505, + 279 + ], + "score": 1.0, + "content": "Proof of Lemma 2. The idea of constructing unbiased estimator is easily adapted to multi-outcome", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 276, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 430, + 291 + ], + "score": 1.0, + "content": "reward settings via writing out the conditions for the unbiasedness property (s.t.", + "type": "text" + }, + { + "bbox": [ + 430, + 277, + 480, + 290 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { \\tilde { r } | r } [ \\hat { r } ] = r .", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 276, + 506, + 291 + ], + "score": 1.0, + "content": "). For", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 289, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 207, + 304 + ], + "score": 1.0, + "content": "simplicity, we shorthand", + "type": "text" + }, + { + "bbox": [ + 207, + 290, + 250, + 303 + ], + "score": 0.9, + "content": "\\hat { r } ( \\tilde { r } = R _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 290, + 262, + 304 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 262, + 289, + 275, + 302 + ], + "score": 0.91, + "content": "\\hat { R } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 290, + 505, + 304 + ], + "score": 1.0, + "content": "in the following proofs. Similar to Lemma 1, we need to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 302, + 298, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 287, + 313 + ], + "score": 1.0, + "content": "solve the following set of functions to obtain", + "type": "text" + }, + { + "bbox": [ + 287, + 303, + 293, + 312 + ], + "score": 0.81, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 302, + 298, + 313 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 265, + 506, + 313 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 161, + 316, + 439, + 380 + ], + "lines": [ + { + "bbox": [ + 161, + 316, + 439, + 380 + ], + "spans": [ + { + "bbox": [ + 161, + 316, + 439, + 380 + ], + "score": 0.94, + "content": "\\left\\{ \\begin{array} { r l } & { R _ { 0 } = c _ { 0 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 0 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 0 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { R _ { 1 } = c _ { 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { \\qquad \\dots } \\\\ & { R _ { M - 1 } = c _ { M - 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { M - 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { M - 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "6386e7b2c8883f002491f6eb2e05eea145f8e9f3d5d1be3cf2572c0f6a63bb3a.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 161, + 316, + 439, + 337.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 161, + 337.3333333333333, + 439, + 358.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 161, + 358.66666666666663, + 439, + 379.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 383, + 502, + 421 + ], + "lines": [ + { + "bbox": [ + 105, + 382, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 382, + 133, + 397 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 382, + 146, + 395 + ], + "score": 0.9, + "content": "\\hat { R } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 382, + 433, + 397 + ], + "score": 1.0, + "content": "denotes the value of the surrogate reward when the observed reward is", + "type": "text" + }, + { + "bbox": [ + 433, + 384, + 445, + 395 + ], + "score": 0.89, + "content": "R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 382, + 480, + 397 + ], + "score": 1.0, + "content": ". Define", + "type": "text" + }, + { + "bbox": [ + 480, + 384, + 505, + 395 + ], + "score": 0.84, + "content": "\\mathbf { R } : =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 394, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 107, + 396, + 192, + 408 + ], + "score": 0.89, + "content": "[ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 193, + 395, + 215, + 410 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 215, + 394, + 322, + 408 + ], + "score": 0.92, + "content": "\\hat { \\mathbf { R } } : = [ \\hat { R } _ { 0 } , \\hat { R } _ { 1 } , . . . , \\hat { R } _ { M - 1 } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 395, + 504, + 410 + ], + "score": 1.0, + "content": ", then the above equations are equivalent to:", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 408, + 443, + 422 + ], + "spans": [ + { + "bbox": [ + 107, + 408, + 154, + 420 + ], + "score": 0.88, + "content": "\\mathbf { R } = \\mathbf { C } \\cdot { \\hat { \\mathbf { R } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 408, + 252, + 422 + ], + "score": 1.0, + "content": ". If the confusion matrix", + "type": "text" + }, + { + "bbox": [ + 252, + 410, + 262, + 419 + ], + "score": 0.77, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 408, + 443, + 422 + ], + "score": 1.0, + "content": "is invertible, we obtain the surrogate reward:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 382, + 505, + 422 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 274, + 424, + 336, + 438 + ], + "lines": [ + { + "bbox": [ + 274, + 424, + 336, + 438 + ], + "spans": [ + { + "bbox": [ + 274, + 424, + 336, + 438 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}", + "type": "interline_equation", + "image_path": "48ec697a3d70b6ade5e52510058ba94a569a7d8e001b7f3085acd252db19a216.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 274, + 424, + 336, + 438 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 443, + 468, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 470, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 330, + 456 + ], + "score": 1.0, + "content": "According to above definition, for any true reward level", + "type": "text" + }, + { + "bbox": [ + 331, + 444, + 429, + 455 + ], + "score": 0.9, + "content": "R _ { i } , { i = 0 } , 1 , \\cdots , M - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 442, + 470, + 456 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 442, + 470, + 456 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 174, + 459, + 436, + 474 + ], + "lines": [ + { + "bbox": [ + 174, + 459, + 436, + 474 + ], + "spans": [ + { + "bbox": [ + 174, + 459, + 436, + 474 + ], + "score": 0.87, + "content": "\\mathbb { E } _ { \\tilde { r } | r = R _ { i } } [ \\hat { r } ] = c _ { i , 0 } \\cdot \\hat { R } _ { 0 } + c _ { i , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { i , M - 1 } \\cdot \\hat { R } _ { M - 1 } = R _ { i } .", + "type": "interline_equation", + "image_path": "21b89b547c1d9a0fb58d00c233213f5cecb41fa1d250375c1da0628d73a9d528.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 174, + 459, + 436, + 474 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 462, + 519 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 462, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 462, + 520 + ], + "score": 1.0, + "content": "Furthermore, the probabilities for observing surrogate rewards can be written as follows:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 506, + 462, + 520 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 522, + 442, + 561 + ], + "lines": [ + { + "bbox": [ + 168, + 522, + 442, + 561 + ], + "spans": [ + { + "bbox": [ + 168, + 522, + 442, + 561 + ], + "score": 0.94, + "content": "\\hat { \\bf P } = [ \\hat { p } _ { 1 } , \\hat { p } _ { 2 } , \\cdots , \\hat { p } _ { M } ] = \\left[ \\sum _ { j } p _ { j } c _ { j , 1 } , \\sum _ { j } p _ { j } c _ { j , 2 } , \\cdots , \\sum _ { j } p _ { j } c _ { j , M } \\right] ,", + "type": "interline_equation", + "image_path": "bc92c3712e29bce102666ed054cb956b503b157b90da565811a8d269016c4b47.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 168, + 522, + 442, + 535.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 168, + 535.0, + 442, + 548.0 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 168, + 548.0, + 442, + 561.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 567, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 504, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 133, + 581 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 567, + 196, + 581 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\hat { p } _ { i } = \\sum _ { j } p _ { j } c _ { j , i } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 565, + 217, + 581 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 218, + 568, + 227, + 579 + ], + "score": 0.73, + "content": "\\hat { p } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 565, + 231, + 581 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 231, + 569, + 241, + 579 + ], + "score": 0.74, + "content": "p _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 565, + 491, + 581 + ], + "score": 1.0, + "content": "represent the probabilities of occurrence for surrogate reward", + "type": "text" + }, + { + "bbox": [ + 492, + 565, + 504, + 578 + ], + "score": 0.89, + "content": "\\hat { R } _ { i }", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 578, + 237, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 171, + 592 + ], + "score": 1.0, + "content": "and true reward", + "type": "text" + }, + { + "bbox": [ + 171, + 580, + 183, + 590 + ], + "score": 0.88, + "content": "R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 578, + 237, + 592 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 565, + 504, + 592 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 593, + 504, + 616 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 503, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 178, + 606 + ], + "score": 1.0, + "content": "Corollary 1. Let", + "type": "text" + }, + { + "bbox": [ + 179, + 594, + 188, + 605 + ], + "score": 0.86, + "content": "\\hat { p } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 592, + 207, + 606 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 208, + 595, + 217, + 605 + ], + "score": 0.84, + "content": "p _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 592, + 460, + 606 + ], + "score": 1.0, + "content": "denote the probabilities of occurrence for surrogate reward", + "type": "text" + }, + { + "bbox": [ + 460, + 593, + 503, + 605 + ], + "score": 0.89, + "content": "\\hat { r } ( \\tilde { r } = R _ { i } )", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 603, + 334, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 173, + 617 + ], + "score": 1.0, + "content": "and true reward", + "type": "text" + }, + { + "bbox": [ + 173, + 605, + 184, + 615 + ], + "score": 0.89, + "content": "R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 603, + 334, + 617 + ], + "score": 1.0, + "content": ". Then the surrogate reward satisfies,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 592, + 503, + 617 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 191, + 619, + 419, + 647 + ], + "lines": [ + { + "bbox": [ + 191, + 619, + 419, + 647 + ], + "spans": [ + { + "bbox": [ + 191, + 619, + 419, + 647 + ], + "score": 0.92, + "content": "\\sum _ { s ^ { \\prime } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { j } p _ { j } R _ { j } = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } .", + "type": "interline_equation", + "image_path": "35533407f878646a1710b370b93cf76346c9672c7163ea857607a6d29a244643.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 191, + 619, + 419, + 647 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 657, + 300, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 656, + 301, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 183, + 671 + ], + "score": 1.0, + "content": "Proof of Corollary", + "type": "text" + }, + { + "bbox": [ + 183, + 659, + 189, + 668 + ], + "score": 0.62, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 656, + 301, + 671 + ], + "score": 1.0, + "content": ". From Lemma 2, we have,", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 656, + 301, + 671 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 672, + 439, + 731 + ], + "lines": [ + { + "bbox": [ + 171, + 672, + 439, + 731 + ], + "spans": [ + { + "bbox": [ + 171, + 672, + 439, + 731 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } & { } & { \\displaystyle \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { s _ { t + 1 } \\in S ; R _ { j } \\in { \\mathcal R } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , R _ { j } ) R _ { j } } \\\\ & { } & { \\displaystyle = \\sum _ { R _ { j } \\in { \\mathcal R } } \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) R _ { j } = \\sum _ { R _ { j } \\in { \\mathcal R } } p _ { j } R _ { j } = \\sum _ { j } p _ { j } R _ { j } . } \\end{array}", + "type": "interline_equation", + "image_path": "0e78dab249ef536eb3f5534efcb435edb0e10de0b13642824607b60df9b2fde7.jpg" + } + ] + } + ], + "index": 35, + "virtual_lines": [ + { + "bbox": [ + 171, + 672, + 439, + 691.6666666666666 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 171, + 691.6666666666666, + 439, + 711.3333333333333 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 171, + 711.3333333333333, + 439, + 730.9999999999999 + ], + "spans": [], + "index": 36 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 165, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 167, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 167, + 98 + ], + "score": 1.0, + "content": "Consequently,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 97, + 421, + 154 + ], + "lines": [ + { + "bbox": [ + 189, + 97, + 421, + 154 + ], + "spans": [ + { + "bbox": [ + 189, + 97, + 421, + 154 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } = \\sum _ { j } \\sum _ { k } p _ { k } c _ { k , j } \\hat { R } _ { j } = \\sum _ { k } p _ { k } \\sum _ { j } c _ { k , j } \\hat { R } _ { j } } } \\\\ { { \\displaystyle \\qquad = \\sum _ { k } p _ { k } R _ { k } = \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "96996e1e259b17d9a6711482fe2b0769239deca31ef3530af5957693657877d5.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 189, + 97, + 421, + 116.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 189, + 116.0, + 421, + 135.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 189, + 135.0, + 421, + 154.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 180, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 193 + ], + "score": 1.0, + "content": "To establish Theorem 1, we need an auxiliary result (Lemma 3) from stochastic process approxi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 363, + 204 + ], + "score": 1.0, + "content": "mation, which is widely adopted for the convergence proof for", + "type": "text" + }, + { + "bbox": [ + 363, + 192, + 372, + 203 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "-Learning (Jaakkola et al., 1993;", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 202, + 176, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 176, + 214 + ], + "score": 1.0, + "content": "Tsitsiklis, 1994).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 403, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 403, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 237, + 230 + ], + "score": 1.0, + "content": "Lemma 3. The random process", + "type": "text" + }, + { + "bbox": [ + 238, + 216, + 261, + 228 + ], + "score": 0.93, + "content": "\\{ \\Delta _ { t } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 214, + 327, + 230 + ], + "score": 1.0, + "content": "taking values in", + "type": "text" + }, + { + "bbox": [ + 327, + 217, + 341, + 226 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 214, + 403, + 230 + ], + "score": 1.0, + "content": "and defined as", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 231, + 397, + 245 + ], + "lines": [ + { + "bbox": [ + 213, + 231, + 397, + 245 + ], + "spans": [ + { + "bbox": [ + 213, + 231, + 397, + 245 + ], + "score": 0.92, + "content": "\\Delta _ { t + 1 } ( x ) = ( 1 - \\alpha _ { t } ( x ) ) \\Delta _ { t } ( x ) + \\alpha _ { t } ( x ) F _ { t } ( x )", + "type": "interline_equation", + "image_path": "c78ab8daf795e6a98765c4bb71877bcc768d2bb501fb82a0b59594b0c812d83f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 213, + 231, + 397, + 245 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 336, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 337, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 337, + 262 + ], + "score": 1.0, + "content": "converges to zero w.p.1 under the following assumptions:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 323, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 320, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 116, + 282 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 117, + 267, + 320, + 282 + ], + "score": 0.37, + "content": "\\begin{array} { r } { 0 \\leq \\alpha _ { t } \\leq 1 , \\sum _ { t } \\alpha _ { t } ( x ) = \\infty a n d \\sum _ { t } \\alpha _ { t } ( x ) ^ { 2 } < \\infty ; } \\end{array}", + "type": "inline_equation", + "image_path": "d079c152ab4b902a23c08c5e1be0e3d968e85b274598278f73bb7047d0dc9fe0.jpg" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 285, + 283, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 115, + 301 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 115, + 286, + 283, + 300 + ], + "score": 0.37, + "content": "| | \\mathbb { E } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] | | _ { W } \\leq \\gamma | | \\Delta _ { t } | | , w i t h \\gamma < 1 ;", + "type": "inline_equation", + "image_path": "581b49644241a04dc2629a502e7f0cb8f63f74a6d36ec23b4a10e6131116e82a.jpg" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 304, + 301, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 132, + 318 + ], + "score": 1.0, + "content": "• var", + "type": "text" + }, + { + "bbox": [ + 132, + 305, + 253, + 318 + ], + "score": 0.89, + "content": "[ F _ { t } ( x ) | \\mathcal { F } _ { t } ] \\leq C ( 1 + | | \\Delta _ { t } | | _ { W } ^ { 2 } ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 304, + 271, + 318 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 271, + 305, + 298, + 317 + ], + "score": 0.45, + "content": "C > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 304, + 301, + 318 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 502, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 130, + 339 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 130, + 326, + 300, + 338 + ], + "score": 0.92, + "content": "\\mathcal { F } _ { t } = \\{ \\Delta _ { t } , \\Delta _ { t - 1 } , \\cdot \\cdot \\cdot , F _ { t - 1 } \\cdot \\cdot \\cdot , \\alpha _ { t } , \\cdot \\cdot \\cdot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 324, + 413, + 339 + ], + "score": 1.0, + "content": "stands for the past at step", + "type": "text" + }, + { + "bbox": [ + 413, + 327, + 418, + 336 + ], + "score": 0.33, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 324, + 423, + 339 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 423, + 326, + 447, + 338 + ], + "score": 0.9, + "content": "\\alpha _ { t } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 324, + 505, + 339 + ], + "score": 1.0, + "content": "is allowed to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 337, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 418, + 349 + ], + "score": 1.0, + "content": "depend on the past insofar as the above conditions remain valid. The notation", + "type": "text" + }, + { + "bbox": [ + 419, + 338, + 445, + 349 + ], + "score": 0.9, + "content": "| | \\cdot | | _ { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 337, + 504, + 349 + ], + "score": 1.0, + "content": "refers to some", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 348, + 212, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 212, + 360 + ], + "score": 1.0, + "content": "weighted maximum norm.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 437, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 437, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 437, + 384 + ], + "score": 1.0, + "content": "Proof of Lemma 3. See previous literature (Jaakkola et al., 1993; Tsitsiklis, 1994).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 507, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 179, + 410 + ], + "score": 1.0, + "content": "Proof of Theorem", + "type": "text" + }, + { + "bbox": [ + 179, + 396, + 185, + 405 + ], + "score": 0.37, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 394, + 309, + 410 + ], + "score": 1.0, + "content": ". For simplicity, we abbreviate", + "type": "text" + }, + { + "bbox": [ + 309, + 396, + 413, + 407 + ], + "score": 0.32, + "content": "s _ { t } , s _ { t + 1 } , Q _ { t } , Q _ { t + 1 } , r _ { t } , \\hat { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 394, + 430, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 430, + 397, + 442, + 406 + ], + "score": 0.81, + "content": "\\alpha _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 394, + 455, + 410 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 455, + 395, + 501, + 407 + ], + "score": 0.67, + "content": "s , s ^ { \\prime } , Q , Q ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 394, + 506, + 410 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 406, + 207, + 419 + ], + "spans": [ + { + "bbox": [ + 107, + 407, + 123, + 417 + ], + "score": 0.54, + "content": "r , \\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 406, + 143, + 419 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 143, + 408, + 150, + 416 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 406, + 207, + 419 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 422, + 354, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 354, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 269, + 437 + ], + "score": 1.0, + "content": "Subtracting from both sides the quantity", + "type": "text" + }, + { + "bbox": [ + 270, + 423, + 305, + 435 + ], + "score": 0.93, + "content": "Q ^ { * } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 421, + 354, + 437 + ], + "score": 1.0, + "content": "in Eqn. (3):", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 438, + 491, + 466 + ], + "lines": [ + { + "bbox": [ + 119, + 438, + 491, + 466 + ], + "spans": [ + { + "bbox": [ + 119, + 438, + 491, + 466 + ], + "score": 0.91, + "content": "Q ^ { \\prime } ( s , a ) - Q ^ { * } ( s , a ) = ( 1 - \\alpha ) \\left( Q ( s , a ) - Q ^ { * } ( s , a ) \\right) + \\alpha \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in A } Q ( { s ^ { \\prime } } , b ) - Q ^ { * } ( s , a ) \\right] .", + "type": "interline_equation", + "image_path": "b3f62db63c1c2e24956367a209e6e2befad4e6abb3bd1e91d15d9cc5a6d8ad7d.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 119, + 438, + 491, + 466 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 456, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 452, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 122, + 483 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 469, + 247, + 481 + ], + "score": 0.92, + "content": "\\Delta _ { t } ( s , a ) = Q ( s , a ) - Q ^ { * } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 467, + 265, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 469, + 452, + 482 + ], + "score": 0.84, + "content": "\\begin{array} { r } { F _ { t } ( s , a ) = \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - Q ^ { * } ( s , a ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 484, + 393, + 498 + ], + "lines": [ + { + "bbox": [ + 214, + 484, + 393, + 498 + ], + "spans": [ + { + "bbox": [ + 214, + 484, + 393, + 498 + ], + "score": 0.83, + "content": "\\Delta _ { t + 1 } ( s ^ { \\prime } , a ) = ( 1 - \\alpha ) \\Delta _ { t } ( s , a ) + \\alpha F _ { t } ( s , a ) .", + "type": "interline_equation", + "image_path": "f7c19234b09d6e666ff2df066b2846c51d4d256a6d1ace4b80beb8a2f9df8ec0.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 214, + 484, + 393, + 498 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 501, + 173, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 174, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 174, + 515 + ], + "score": 1.0, + "content": "In consequence,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 516, + 514, + 738 + ], + "lines": [ + { + "bbox": [ + 111, + 516, + 514, + 738 + ], + "spans": [ + { + "bbox": [ + 111, + 516, + 514, + 738 + ], + "score": 0.9, + "content": "\\begin{array} { r l } { \\mathbb { E } \\{ | F _ { 1 } ( x ) | , T _ { \\ell } \\} } & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s , \\ell ^ { \\prime } , \\hat { \\nu } ) [ \\ell + \\gamma \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ( \\nu , \\ell ^ { \\prime } , s ) ] - Q ^ { * } ( s , \\alpha ) } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , \\hat { \\nu } ) + \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\gamma } { s } \\log A ( s , \\ell ^ { \\prime } , s ) - \\gamma - \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ^ { 2 } ( \\nu , \\ell ^ { \\prime } , s ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , s ^ { \\prime } ) \\hat { \\nu } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) + \\sum _ { \\nu \\leq \\nu } Q ^ { * } ( s , \\ell ^ { \\prime } ) [ \\frac \\operatorname* \\end{array}", + "type": "interline_equation", + "image_path": "4c1fd2fcf222936f8ee176d731223ad739e23094b993f066702d6ca0d9103590.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 111, + 516, + 514, + 590.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 590.0, + 514, + 664.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 111, + 664.0, + 514, + 738.0 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 371, + 504, + 382 + ], + "lines": [ + { + "bbox": [ + 496, + 374, + 504, + 381 + ], + "spans": [ + { + "bbox": [ + 496, + 374, + 504, + 381 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 156, + 505, + 167 + ], + "lines": [ + { + "bbox": [ + 496, + 158, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 496, + 158, + 505, + 167 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 165, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 167, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 167, + 98 + ], + "score": 1.0, + "content": "Consequently,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 167, + 98 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 189, + 97, + 421, + 154 + ], + "lines": [ + { + "bbox": [ + 189, + 97, + 421, + 154 + ], + "spans": [ + { + "bbox": [ + 189, + 97, + 421, + 154 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } = \\sum _ { j } \\sum _ { k } p _ { k } c _ { k , j } \\hat { R } _ { j } = \\sum _ { k } p _ { k } \\sum _ { j } c _ { k , j } \\hat { R } _ { j } } } \\\\ { { \\displaystyle \\qquad = \\sum _ { k } p _ { k } R _ { k } = \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) . } } \\end{array}", + "type": "interline_equation", + "image_path": "96996e1e259b17d9a6711482fe2b0769239deca31ef3530af5957693657877d5.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 189, + 97, + 421, + 116.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 189, + 116.0, + 421, + 135.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 189, + 135.0, + 421, + 154.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 180, + 505, + 214 + ], + "lines": [ + { + "bbox": [ + 106, + 180, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 505, + 193 + ], + "score": 1.0, + "content": "To establish Theorem 1, we need an auxiliary result (Lemma 3) from stochastic process approxi-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 191, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 363, + 204 + ], + "score": 1.0, + "content": "mation, which is widely adopted for the convergence proof for", + "type": "text" + }, + { + "bbox": [ + 363, + 192, + 372, + 203 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 191, + 505, + 204 + ], + "score": 1.0, + "content": "-Learning (Jaakkola et al., 1993;", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 202, + 176, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 176, + 214 + ], + "score": 1.0, + "content": "Tsitsiklis, 1994).", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 180, + 505, + 214 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 215, + 403, + 228 + ], + "lines": [ + { + "bbox": [ + 105, + 214, + 403, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 237, + 230 + ], + "score": 1.0, + "content": "Lemma 3. The random process", + "type": "text" + }, + { + "bbox": [ + 238, + 216, + 261, + 228 + ], + "score": 0.93, + "content": "\\{ \\Delta _ { t } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 214, + 327, + 230 + ], + "score": 1.0, + "content": "taking values in", + "type": "text" + }, + { + "bbox": [ + 327, + 217, + 341, + 226 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 214, + 403, + 230 + ], + "score": 1.0, + "content": "and defined as", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 214, + 403, + 230 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 231, + 397, + 245 + ], + "lines": [ + { + "bbox": [ + 213, + 231, + 397, + 245 + ], + "spans": [ + { + "bbox": [ + 213, + 231, + 397, + 245 + ], + "score": 0.92, + "content": "\\Delta _ { t + 1 } ( x ) = ( 1 - \\alpha _ { t } ( x ) ) \\Delta _ { t } ( x ) + \\alpha _ { t } ( x ) F _ { t } ( x )", + "type": "interline_equation", + "image_path": "c78ab8daf795e6a98765c4bb71877bcc768d2bb501fb82a0b59594b0c812d83f.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 213, + 231, + 397, + 245 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 248, + 336, + 260 + ], + "lines": [ + { + "bbox": [ + 106, + 248, + 337, + 262 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 337, + 262 + ], + "score": 1.0, + "content": "converges to zero w.p.1 under the following assumptions:", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 248, + 337, + 262 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 323, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 266, + 320, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 116, + 282 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 117, + 267, + 320, + 282 + ], + "score": 0.37, + "content": "\\begin{array} { r } { 0 \\leq \\alpha _ { t } \\leq 1 , \\sum _ { t } \\alpha _ { t } ( x ) = \\infty a n d \\sum _ { t } \\alpha _ { t } ( x ) ^ { 2 } < \\infty ; } \\end{array}", + "type": "inline_equation", + "image_path": "d079c152ab4b902a23c08c5e1be0e3d968e85b274598278f73bb7047d0dc9fe0.jpg" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 285, + 283, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 115, + 301 + ], + "score": 1.0, + "content": "•", + "type": "text" + }, + { + "bbox": [ + 115, + 286, + 283, + 300 + ], + "score": 0.37, + "content": "| | \\mathbb { E } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] | | _ { W } \\leq \\gamma | | \\Delta _ { t } | | , w i t h \\gamma < 1 ;", + "type": "inline_equation", + "image_path": "581b49644241a04dc2629a502e7f0cb8f63f74a6d36ec23b4a10e6131116e82a.jpg" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 304, + 301, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 304, + 132, + 318 + ], + "score": 1.0, + "content": "• var", + "type": "text" + }, + { + "bbox": [ + 132, + 305, + 253, + 318 + ], + "score": 0.89, + "content": "[ F _ { t } ( x ) | \\mathcal { F } _ { t } ] \\leq C ( 1 + | | \\Delta _ { t } | | _ { W } ^ { 2 } ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 304, + 271, + 318 + ], + "score": 1.0, + "content": ", for", + "type": "text" + }, + { + "bbox": [ + 271, + 305, + 298, + 317 + ], + "score": 0.45, + "content": "C > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 304, + 301, + 318 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 266, + 320, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 502, + 360 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 130, + 339 + ], + "score": 1.0, + "content": "Here", + "type": "text" + }, + { + "bbox": [ + 130, + 326, + 300, + 338 + ], + "score": 0.92, + "content": "\\mathcal { F } _ { t } = \\{ \\Delta _ { t } , \\Delta _ { t - 1 } , \\cdot \\cdot \\cdot , F _ { t - 1 } \\cdot \\cdot \\cdot , \\alpha _ { t } , \\cdot \\cdot \\cdot \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 324, + 413, + 339 + ], + "score": 1.0, + "content": "stands for the past at step", + "type": "text" + }, + { + "bbox": [ + 413, + 327, + 418, + 336 + ], + "score": 0.33, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 324, + 423, + 339 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 423, + 326, + 447, + 338 + ], + "score": 0.9, + "content": "\\alpha _ { t } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 324, + 505, + 339 + ], + "score": 1.0, + "content": "is allowed to", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 337, + 504, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 418, + 349 + ], + "score": 1.0, + "content": "depend on the past insofar as the above conditions remain valid. The notation", + "type": "text" + }, + { + "bbox": [ + 419, + 338, + 445, + 349 + ], + "score": 0.9, + "content": "| | \\cdot | | _ { W }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 337, + 504, + 349 + ], + "score": 1.0, + "content": "refers to some", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 348, + 212, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 212, + 360 + ], + "score": 1.0, + "content": "weighted maximum norm.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 324, + 505, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 371, + 437, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 437, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 437, + 384 + ], + "score": 1.0, + "content": "Proof of Lemma 3. See previous literature (Jaakkola et al., 1993; Tsitsiklis, 1994).", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 370, + 437, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 394, + 507, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 394, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 179, + 410 + ], + "score": 1.0, + "content": "Proof of Theorem", + "type": "text" + }, + { + "bbox": [ + 179, + 396, + 185, + 405 + ], + "score": 0.37, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 394, + 309, + 410 + ], + "score": 1.0, + "content": ". For simplicity, we abbreviate", + "type": "text" + }, + { + "bbox": [ + 309, + 396, + 413, + 407 + ], + "score": 0.32, + "content": "s _ { t } , s _ { t + 1 } , Q _ { t } , Q _ { t + 1 } , r _ { t } , \\hat { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 394, + 430, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 430, + 397, + 442, + 406 + ], + "score": 0.81, + "content": "\\alpha _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 394, + 455, + 410 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 455, + 395, + 501, + 407 + ], + "score": 0.67, + "content": "s , s ^ { \\prime } , Q , Q ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 394, + 506, + 410 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 107, + 406, + 207, + 419 + ], + "spans": [ + { + "bbox": [ + 107, + 407, + 123, + 417 + ], + "score": 0.54, + "content": "r , \\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 406, + 143, + 419 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 143, + 408, + 150, + 416 + ], + "score": 0.78, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 406, + 207, + 419 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 394, + 506, + 419 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 422, + 354, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 354, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 269, + 437 + ], + "score": 1.0, + "content": "Subtracting from both sides the quantity", + "type": "text" + }, + { + "bbox": [ + 270, + 423, + 305, + 435 + ], + "score": 0.93, + "content": "Q ^ { * } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 421, + 354, + 437 + ], + "score": 1.0, + "content": "in Eqn. (3):", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 421, + 354, + 437 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 119, + 438, + 491, + 466 + ], + "lines": [ + { + "bbox": [ + 119, + 438, + 491, + 466 + ], + "spans": [ + { + "bbox": [ + 119, + 438, + 491, + 466 + ], + "score": 0.91, + "content": "Q ^ { \\prime } ( s , a ) - Q ^ { * } ( s , a ) = ( 1 - \\alpha ) \\left( Q ( s , a ) - Q ^ { * } ( s , a ) \\right) + \\alpha \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in A } Q ( { s ^ { \\prime } } , b ) - Q ^ { * } ( s , a ) \\right] .", + "type": "interline_equation", + "image_path": "b3f62db63c1c2e24956367a209e6e2befad4e6abb3bd1e91d15d9cc5a6d8ad7d.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 119, + 438, + 491, + 466 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 468, + 456, + 482 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 452, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 122, + 483 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 469, + 247, + 481 + ], + "score": 0.92, + "content": "\\Delta _ { t } ( s , a ) = Q ( s , a ) - Q ^ { * } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 467, + 265, + 483 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 266, + 469, + 452, + 482 + ], + "score": 0.84, + "content": "\\begin{array} { r } { F _ { t } ( s , a ) = \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - Q ^ { * } ( s , a ) . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 467, + 452, + 483 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 484, + 393, + 498 + ], + "lines": [ + { + "bbox": [ + 214, + 484, + 393, + 498 + ], + "spans": [ + { + "bbox": [ + 214, + 484, + 393, + 498 + ], + "score": 0.83, + "content": "\\Delta _ { t + 1 } ( s ^ { \\prime } , a ) = ( 1 - \\alpha ) \\Delta _ { t } ( s , a ) + \\alpha F _ { t } ( s , a ) .", + "type": "interline_equation", + "image_path": "f7c19234b09d6e666ff2df066b2846c51d4d256a6d1ace4b80beb8a2f9df8ec0.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 214, + 484, + 393, + 498 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 501, + 173, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 174, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 174, + 515 + ], + "score": 1.0, + "content": "In consequence,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 500, + 174, + 515 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 516, + 514, + 738 + ], + "lines": [ + { + "bbox": [ + 111, + 516, + 514, + 738 + ], + "spans": [ + { + "bbox": [ + 111, + 516, + 514, + 738 + ], + "score": 0.9, + "content": "\\begin{array} { r l } { \\mathbb { E } \\{ | F _ { 1 } ( x ) | , T _ { \\ell } \\} } & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s , \\ell ^ { \\prime } , \\hat { \\nu } ) [ \\ell + \\gamma \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ( \\nu , \\ell ^ { \\prime } , s ) ] - Q ^ { * } ( s , \\alpha ) } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , \\hat { \\nu } ) + \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\gamma } { s } \\log A ( s , \\ell ^ { \\prime } , s ) - \\gamma - \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ^ { 2 } ( \\nu , \\ell ^ { \\prime } , s ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , s ^ { \\prime } ) \\hat { \\nu } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) + \\sum _ { \\nu \\leq \\nu } Q ^ { * } ( s , \\ell ^ { \\prime } ) [ \\frac \\operatorname* \\end{array}", + "type": "interline_equation", + "image_path": "4c1fd2fcf222936f8ee176d731223ad739e23094b993f066702d6ca0d9103590.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 111, + 516, + 514, + 590.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 111, + 590.0, + 514, + 664.0 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 111, + 664.0, + 514, + 738.0 + ], + "spans": [], + "index": 26 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 138, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 140, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 140, + 97 + ], + "score": 1.0, + "content": "Finally,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 101, + 494, + 175 + ], + "lines": [ + { + "bbox": [ + 115, + 101, + 494, + 175 + ], + "spans": [ + { + "bbox": [ + 115, + 101, + 494, + 175 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] = \\mathbb { E } \\left[ \\left( \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - \\sum _ { s ^ { \\prime } \\in S : \\mathcal { \\hat { r } } \\in \\mathbb { R } } \\mathbb { P } ^ { \\prime } ( s , s ^ { \\prime } , \\hat { r } ) \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) \\right] \\right) ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\mathbf { V a r } \\left[ \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) | \\mathcal { F } _ { t } \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "8d5559220416f57164827976728d51b251d6a30dac0e7d43bdb50c2580b30a78.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 115, + 101, + 494, + 125.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 125.66666666666667, + 494, + 150.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 115, + 150.33333333333334, + 494, + 175.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 314, + 207 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 315, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 142, + 208 + ], + "score": 1.0, + "content": "Because", + "type": "text" + }, + { + "bbox": [ + 142, + 196, + 148, + 205 + ], + "score": 0.83, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 194, + 315, + 208 + ], + "score": 1.0, + "content": "is bounded, it can be clearly verified that", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 212, + 377, + 228 + ], + "lines": [ + { + "bbox": [ + 234, + 212, + 377, + 228 + ], + "spans": [ + { + "bbox": [ + 234, + 212, + 377, + 228 + ], + "score": 0.9, + "content": "\\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] \\leq C ( 1 + \\vert \\vert \\Delta _ { t } \\vert \\vert _ { W } ^ { 2 } )", + "type": "interline_equation", + "image_path": "d254e53e028aa37bc4c47c80d08cabd5167eaeed1d7f42d8d452acc54fde1325.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 234, + 212, + 377, + 228 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 504, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 179, + 247 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 179, + 235, + 188, + 244 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 232, + 300, + 247 + ], + "score": 1.0, + "content": ". Then, due to the Lemma 3,", + "type": "text" + }, + { + "bbox": [ + 300, + 234, + 313, + 245 + ], + "score": 0.85, + "content": "\\Delta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 232, + 428, + 247 + ], + "score": 1.0, + "content": "converges to zero w.p.1, i.e.,", + "type": "text" + }, + { + "bbox": [ + 428, + 234, + 462, + 246 + ], + "score": 0.92, + "content": "Q ^ { \\prime } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 232, + 506, + 247 + ], + "score": 1.0, + "content": "converges", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 243, + 158, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 117, + 258 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 245, + 152, + 257 + ], + "score": 0.93, + "content": "Q ^ { * } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 243, + 158, + 258 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 374, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 374, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 209, + 288 + ], + "score": 1.0, + "content": "The procedure of Phased", + "type": "text" + }, + { + "bbox": [ + 209, + 275, + 218, + 286 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 273, + 374, + 288 + ], + "score": 1.0, + "content": "-Learning is described as Algorithm 2:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 290, + 240, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 288, + 241, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 191, + 306 + ], + "score": 1.0, + "content": "Algorithm 2 Phased", + "type": "text" + }, + { + "bbox": [ + 191, + 291, + 200, + 302 + ], + "score": 0.71, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 288, + 241, + 306 + ], + "score": 1.0, + "content": "-Learning", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 108, + 306, + 443, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 446, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 138, + 320 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 138, + 307, + 167, + 318 + ], + "score": 0.9, + "content": "G ( \\mathcal { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 305, + 254, + 320 + ], + "score": 1.0, + "content": ": generative model of", + "type": "text" + }, + { + "bbox": [ + 254, + 307, + 355, + 319 + ], + "score": 0.89, + "content": "\\mathcal { M } = ( \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\gamma ) , T", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 305, + 446, + 320 + ], + "score": 1.0, + "content": ": number of iterations.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 320, + 333, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 332, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 145, + 333 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 146, + 318, + 167, + 331 + ], + "score": 0.89, + "content": "\\hat { V } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 317, + 234, + 333 + ], + "score": 1.0, + "content": ": value function,", + "type": "text" + }, + { + "bbox": [ + 234, + 320, + 262, + 332 + ], + "score": 0.93, + "content": "\\boldsymbol { \\hat { \\pi } } ( s , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 317, + 332, + 333 + ], + "score": 1.0, + "content": ": policy function.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 111, + 331, + 183, + 344 + ], + "spans": [ + { + "bbox": [ + 111, + 331, + 138, + 344 + ], + "score": 1.0, + "content": "1: Set", + "type": "text" + }, + { + "bbox": [ + 138, + 331, + 183, + 344 + ], + "score": 0.9, + "content": "\\hat { V } _ { T } ( s ) = 0", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 343, + 224, + 356 + ], + "spans": [ + { + "bbox": [ + 110, + 343, + 138, + 356 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 138, + 344, + 210, + 355 + ], + "score": 0.88, + "content": "t = T - 1 , \\cdots , 0", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 343, + 224, + 356 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 131, + 356, + 343, + 368 + ], + "lines": [ + { + "bbox": [ + 131, + 356, + 343, + 370 + ], + "spans": [ + { + "bbox": [ + 131, + 356, + 175, + 370 + ], + "score": 1.0, + "content": "1. Calling", + "type": "text" + }, + { + "bbox": [ + 175, + 356, + 215, + 369 + ], + "score": 0.85, + "content": "G ( \\mathcal { M } ) \\ : m", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 356, + 343, + 370 + ], + "score": 1.0, + "content": "times for each state-action pair.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 373, + 396, + 398 + ], + "lines": [ + { + "bbox": [ + 251, + 373, + 396, + 398 + ], + "spans": [ + { + "bbox": [ + 251, + 373, + 396, + 398 + ], + "score": 0.94, + "content": "\\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) = { \\frac { \\# [ ( s _ { t } , a _ { t } ) \\to s _ { t + 1 } ] } { m } }", + "type": "interline_equation", + "image_path": "e25929f104e5e518b359962f769f1838e3660e8de6ef7e946cb7e654f13ceb09.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 251, + 373, + 396, + 398 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 131, + 404, + 159, + 415 + ], + "lines": [ + { + "bbox": [ + 129, + 402, + 160, + 416 + ], + "spans": [ + { + "bbox": [ + 129, + 402, + 160, + 416 + ], + "score": 1.0, + "content": "2. Set", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 418, + 429, + 472 + ], + "lines": [ + { + "bbox": [ + 219, + 418, + 429, + 472 + ], + "spans": [ + { + "bbox": [ + 219, + 418, + 429, + 472 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\hat { V } ( s ) = \\displaystyle \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { \\tiny { s + 1 \\in \\mathcal { S } } \\atop { a \\in \\mathcal { A } } } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) \\left[ r _ { t } + \\gamma \\hat { V } ( s _ { t + 1 } ) \\right] } \\\\ & { } \\\\ & { \\hat { \\pi } ( s , t ) = \\displaystyle \\operatorname* { a r g m a x } _ { a \\in \\mathcal { A } } \\hat { V } ( s ) } \\end{array}", + "type": "interline_equation", + "image_path": "b173fbbc4ed28b2174618bcfb9233961750e14b9502ed5250d9503e5160ec1cb.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 219, + 418, + 429, + 436.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 219, + 436.0, + 429, + 454.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 219, + 454.0, + 429, + 472.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 111, + 479, + 221, + 492 + ], + "lines": [ + { + "bbox": [ + 109, + 476, + 221, + 496 + ], + "spans": [ + { + "bbox": [ + 109, + 476, + 153, + 496 + ], + "score": 1.0, + "content": "3: return", + "type": "text" + }, + { + "bbox": [ + 153, + 479, + 175, + 492 + ], + "score": 0.89, + "content": "\\hat { V } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 476, + 193, + 496 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 193, + 479, + 221, + 492 + ], + "score": 0.89, + "content": "\\boldsymbol { \\hat { \\pi } } ( s , t )", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 105, + 507, + 477, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 478, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 145, + 522 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 506, + 154, + 518 + ], + "score": 0.84, + "content": "\\hat { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 506, + 421, + 522 + ], + "score": 1.0, + "content": "here is the estimated transition probability, which is different from", + "type": "text" + }, + { + "bbox": [ + 421, + 509, + 429, + 518 + ], + "score": 0.76, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 506, + 478, + 522 + ], + "score": 1.0, + "content": "in Eqn. (6).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "score": 1.0, + "content": "To obtain the sample complexity results, the range of our surrogate reward needs to be known.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 178, + 549 + ], + "score": 1.0, + "content": "Assuming reward", + "type": "text" + }, + { + "bbox": [ + 179, + 538, + 185, + 546 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 536, + 243, + 549 + ], + "score": 1.0, + "content": "is bounded in", + "type": "text" + }, + { + "bbox": [ + 243, + 536, + 281, + 549 + ], + "score": 0.92, + "content": "[ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 536, + 506, + 549 + ], + "score": 1.0, + "content": ", Lemma 4 below states that the surrogate reward is also", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 547, + 320, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 320, + 558 + ], + "score": 1.0, + "content": "bounded, when the confusion matrices are invertible:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 105, + 563, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 167, + 577 + ], + "score": 1.0, + "content": "Lemma 4. Let", + "type": "text" + }, + { + "bbox": [ + 167, + 563, + 223, + 575 + ], + "score": 0.9, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 561, + 300, + 577 + ], + "score": 1.0, + "content": "be bounded, where", + "type": "text" + }, + { + "bbox": [ + 300, + 564, + 324, + 574 + ], + "score": 0.91, + "content": "R _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 561, + 413, + 577 + ], + "score": 1.0, + "content": "is a constant; suppose", + "type": "text" + }, + { + "bbox": [ + 414, + 563, + 446, + 575 + ], + "score": 0.92, + "content": "\\mathbf { C } _ { M \\times M }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 561, + 505, + 577 + ], + "score": 1.0, + "content": ", the confusion", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 572, + 496, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 496, + 587 + ], + "score": 1.0, + "content": "matrix, is invertible with its determinant denoting as det(C). Then the surrogate reward satisfies", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 592, + 357, + 619 + ], + "lines": [ + { + "bbox": [ + 254, + 592, + 357, + 619 + ], + "spans": [ + { + "bbox": [ + 254, + 592, + 357, + 619 + ], + "score": 0.94, + "content": "0 \\leq | \\hat { r } | \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } R _ { \\mathrm { { m a x } } } .", + "type": "interline_equation", + "image_path": "72e520e43e5632c264840c61519eea2e16d275eb2ba452b66a5b580e808b3b38.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 254, + 592, + 357, + 619 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 285, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 286, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 286, + 649 + ], + "score": 1.0, + "content": "Proof of Lemma 4. From Eqn. (2), we have,", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 653, + 366, + 680 + ], + "lines": [ + { + "bbox": [ + 244, + 653, + 366, + 680 + ], + "spans": [ + { + "bbox": [ + 244, + 653, + 366, + 680 + ], + "score": 0.94, + "content": "{ \\hat { \\mathbf { R } } } = \\mathbf { C } ^ { - 1 } \\cdot \\mathbf { R } = { \\frac { \\mathrm { a d j } ( \\mathbf { C } ) } { \\mathrm { d e t } ( \\mathbf { C } ) } } \\cdot \\mathbf { R } ,", + "type": "interline_equation", + "image_path": "344d8e37427dbe074728f3442c692ee38f70e0105c28fd33267074e3f5bb3bf9.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 244, + 653, + 366, + 680 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 686, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 133, + 700 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 687, + 164, + 699 + ], + "score": 0.27, + "content": "\\operatorname { a d j } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 685, + 265, + 700 + ], + "score": 1.0, + "content": "is the adjugate matrix of", + "type": "text" + }, + { + "bbox": [ + 266, + 687, + 275, + 697 + ], + "score": 0.53, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 685, + 279, + 700 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 279, + 687, + 309, + 699 + ], + "score": 0.57, + "content": "\\operatorname* { d e t } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 685, + 397, + 700 + ], + "score": 1.0, + "content": "is the determinant of", + "type": "text" + }, + { + "bbox": [ + 397, + 687, + 406, + 697 + ], + "score": 0.73, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 685, + 506, + 700 + ], + "score": 1.0, + "content": ". It is known from linear", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 697, + 159, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 159, + 711 + ], + "score": 1.0, + "content": "algebra that,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 715, + 361, + 730 + ], + "lines": [ + { + "bbox": [ + 248, + 715, + 361, + 730 + ], + "spans": [ + { + "bbox": [ + 248, + 715, + 361, + 730 + ], + "score": 0.91, + "content": "\\operatorname { a d j } ( \\mathbf { C } ) _ { i j } = ( - 1 ) ^ { i + j } \\cdot \\mathbf { M } _ { j i } ,", + "type": "interline_equation", + "image_path": "2ede6ff0d7f2560792151886a3a86014711f1aae734e2769316b698fdd99d7e6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 248, + 715, + 361, + 730 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 495, + 246, + 504, + 255 + ], + "lines": [ + { + "bbox": [ + 496, + 246, + 504, + 257 + ], + "spans": [ + { + "bbox": [ + 496, + 246, + 504, + 257 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 138, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 140, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 140, + 97 + ], + "score": 1.0, + "content": "Finally,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 80, + 140, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 115, + 101, + 494, + 175 + ], + "lines": [ + { + "bbox": [ + 115, + 101, + 494, + 175 + ], + "spans": [ + { + "bbox": [ + 115, + 101, + 494, + 175 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] = \\mathbb { E } \\left[ \\left( \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - \\sum _ { s ^ { \\prime } \\in S : \\mathcal { \\hat { r } } \\in \\mathbb { R } } \\mathbb { P } ^ { \\prime } ( s , s ^ { \\prime } , \\hat { r } ) \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) \\right] \\right) ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\mathbf { V a r } \\left[ \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) | \\mathcal { F } _ { t } \\right] } \\end{array}", + "type": "interline_equation", + "image_path": "8d5559220416f57164827976728d51b251d6a30dac0e7d43bdb50c2580b30a78.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 115, + 101, + 494, + 125.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 125.66666666666667, + 494, + 150.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 115, + 150.33333333333334, + 494, + 175.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 195, + 314, + 207 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 315, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 142, + 208 + ], + "score": 1.0, + "content": "Because", + "type": "text" + }, + { + "bbox": [ + 142, + 196, + 148, + 205 + ], + "score": 0.83, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 194, + 315, + 208 + ], + "score": 1.0, + "content": "is bounded, it can be clearly verified that", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 194, + 315, + 208 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 234, + 212, + 377, + 228 + ], + "lines": [ + { + "bbox": [ + 234, + 212, + 377, + 228 + ], + "spans": [ + { + "bbox": [ + 234, + 212, + 377, + 228 + ], + "score": 0.9, + "content": "\\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] \\leq C ( 1 + \\vert \\vert \\Delta _ { t } \\vert \\vert _ { W } ^ { 2 } )", + "type": "interline_equation", + "image_path": "d254e53e028aa37bc4c47c80d08cabd5167eaeed1d7f42d8d452acc54fde1325.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 234, + 212, + 377, + 228 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 504, + 257 + ], + "lines": [ + { + "bbox": [ + 105, + 232, + 506, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 179, + 247 + ], + "score": 1.0, + "content": "for some constant", + "type": "text" + }, + { + "bbox": [ + 179, + 235, + 188, + 244 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 232, + 300, + 247 + ], + "score": 1.0, + "content": ". Then, due to the Lemma 3,", + "type": "text" + }, + { + "bbox": [ + 300, + 234, + 313, + 245 + ], + "score": 0.85, + "content": "\\Delta _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 232, + 428, + 247 + ], + "score": 1.0, + "content": "converges to zero w.p.1, i.e.,", + "type": "text" + }, + { + "bbox": [ + 428, + 234, + 462, + 246 + ], + "score": 0.92, + "content": "Q ^ { \\prime } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 232, + 506, + 247 + ], + "score": 1.0, + "content": "converges", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 243, + 158, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 117, + 258 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 117, + 245, + 152, + 257 + ], + "score": 0.93, + "content": "Q ^ { * } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 243, + 158, + 258 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 232, + 506, + 258 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 374, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 374, + 288 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 209, + 288 + ], + "score": 1.0, + "content": "The procedure of Phased", + "type": "text" + }, + { + "bbox": [ + 209, + 275, + 218, + 286 + ], + "score": 0.82, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 273, + 374, + 288 + ], + "score": 1.0, + "content": "-Learning is described as Algorithm 2:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 273, + 374, + 288 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 290, + 240, + 302 + ], + "lines": [ + { + "bbox": [ + 106, + 288, + 241, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 191, + 306 + ], + "score": 1.0, + "content": "Algorithm 2 Phased", + "type": "text" + }, + { + "bbox": [ + 191, + 291, + 200, + 302 + ], + "score": 0.71, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 288, + 241, + 306 + ], + "score": 1.0, + "content": "-Learning", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 108, + 306, + 443, + 319 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 446, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 138, + 320 + ], + "score": 1.0, + "content": "Input:", + "type": "text" + }, + { + "bbox": [ + 138, + 307, + 167, + 318 + ], + "score": 0.9, + "content": "G ( \\mathcal { M } )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 305, + 254, + 320 + ], + "score": 1.0, + "content": ": generative model of", + "type": "text" + }, + { + "bbox": [ + 254, + 307, + 355, + 319 + ], + "score": 0.89, + "content": "\\mathcal { M } = ( \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\gamma ) , T", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 305, + 446, + 320 + ], + "score": 1.0, + "content": ": number of iterations.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 305, + 446, + 320 + ] + }, + { + "type": "list", + "bbox": [ + 108, + 320, + 333, + 354 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 332, + 333 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 145, + 333 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 146, + 318, + 167, + 331 + ], + "score": 0.89, + "content": "\\hat { V } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 317, + 234, + 333 + ], + "score": 1.0, + "content": ": value function,", + "type": "text" + }, + { + "bbox": [ + 234, + 320, + 262, + 332 + ], + "score": 0.93, + "content": "\\boldsymbol { \\hat { \\pi } } ( s , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 317, + 332, + 333 + ], + "score": 1.0, + "content": ": policy function.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 111, + 331, + 183, + 344 + ], + "spans": [ + { + "bbox": [ + 111, + 331, + 138, + 344 + ], + "score": 1.0, + "content": "1: Set", + "type": "text" + }, + { + "bbox": [ + 138, + 331, + 183, + 344 + ], + "score": 0.9, + "content": "\\hat { V } _ { T } ( s ) = 0", + "type": "inline_equation" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 343, + 224, + 356 + ], + "spans": [ + { + "bbox": [ + 110, + 343, + 138, + 356 + ], + "score": 1.0, + "content": "2: for", + "type": "text" + }, + { + "bbox": [ + 138, + 344, + 210, + 355 + ], + "score": 0.88, + "content": "t = T - 1 , \\cdots , 0", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 343, + 224, + 356 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 12, + "bbox_fs": [ + 106, + 317, + 332, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 356, + 343, + 368 + ], + "lines": [ + { + "bbox": [ + 131, + 356, + 343, + 370 + ], + "spans": [ + { + "bbox": [ + 131, + 356, + 175, + 370 + ], + "score": 1.0, + "content": "1. Calling", + "type": "text" + }, + { + "bbox": [ + 175, + 356, + 215, + 369 + ], + "score": 0.85, + "content": "G ( \\mathcal { M } ) \\ : m", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 356, + 343, + 370 + ], + "score": 1.0, + "content": "times for each state-action pair.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 131, + 356, + 343, + 370 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 373, + 396, + 398 + ], + "lines": [ + { + "bbox": [ + 251, + 373, + 396, + 398 + ], + "spans": [ + { + "bbox": [ + 251, + 373, + 396, + 398 + ], + "score": 0.94, + "content": "\\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) = { \\frac { \\# [ ( s _ { t } , a _ { t } ) \\to s _ { t + 1 } ] } { m } }", + "type": "interline_equation", + "image_path": "e25929f104e5e518b359962f769f1838e3660e8de6ef7e946cb7e654f13ceb09.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 251, + 373, + 396, + 398 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 131, + 404, + 159, + 415 + ], + "lines": [ + { + "bbox": [ + 129, + 402, + 160, + 416 + ], + "spans": [ + { + "bbox": [ + 129, + 402, + 160, + 416 + ], + "score": 1.0, + "content": "2. Set", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 129, + 402, + 160, + 416 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 418, + 429, + 472 + ], + "lines": [ + { + "bbox": [ + 219, + 418, + 429, + 472 + ], + "spans": [ + { + "bbox": [ + 219, + 418, + 429, + 472 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { \\hat { V } ( s ) = \\displaystyle \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { \\tiny { s + 1 \\in \\mathcal { S } } \\atop { a \\in \\mathcal { A } } } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) \\left[ r _ { t } + \\gamma \\hat { V } ( s _ { t + 1 } ) \\right] } \\\\ & { } \\\\ & { \\hat { \\pi } ( s , t ) = \\displaystyle \\operatorname* { a r g m a x } _ { a \\in \\mathcal { A } } \\hat { V } ( s ) } \\end{array}", + "type": "interline_equation", + "image_path": "b173fbbc4ed28b2174618bcfb9233961750e14b9502ed5250d9503e5160ec1cb.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 219, + 418, + 429, + 436.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 219, + 436.0, + 429, + 454.0 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 219, + 454.0, + 429, + 472.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 111, + 479, + 221, + 492 + ], + "lines": [ + { + "bbox": [ + 109, + 476, + 221, + 496 + ], + "spans": [ + { + "bbox": [ + 109, + 476, + 153, + 496 + ], + "score": 1.0, + "content": "3: return", + "type": "text" + }, + { + "bbox": [ + 153, + 479, + 175, + 492 + ], + "score": 0.89, + "content": "\\hat { V } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 476, + 193, + 496 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 193, + 479, + 221, + 492 + ], + "score": 0.89, + "content": "\\boldsymbol { \\hat { \\pi } } ( s , t )", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 109, + 476, + 221, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 507, + 477, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 478, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 145, + 522 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 146, + 506, + 154, + 518 + ], + "score": 0.84, + "content": "\\hat { \\mathbb { P } }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 506, + 421, + 522 + ], + "score": 1.0, + "content": "here is the estimated transition probability, which is different from", + "type": "text" + }, + { + "bbox": [ + 421, + 509, + 429, + 518 + ], + "score": 0.76, + "content": "\\mathbb { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 506, + 478, + 522 + ], + "score": 1.0, + "content": "in Eqn. (6).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 506, + 478, + 522 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 504, + 559 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 539 + ], + "score": 1.0, + "content": "To obtain the sample complexity results, the range of our surrogate reward needs to be known.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 178, + 549 + ], + "score": 1.0, + "content": "Assuming reward", + "type": "text" + }, + { + "bbox": [ + 179, + 538, + 185, + 546 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 536, + 243, + 549 + ], + "score": 1.0, + "content": "is bounded in", + "type": "text" + }, + { + "bbox": [ + 243, + 536, + 281, + 549 + ], + "score": 0.92, + "content": "[ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 536, + 506, + 549 + ], + "score": 1.0, + "content": ", Lemma 4 below states that the surrogate reward is also", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 547, + 320, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 320, + 558 + ], + "score": 1.0, + "content": "bounded, when the confusion matrices are invertible:", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 524, + 506, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 563, + 505, + 586 + ], + "lines": [ + { + "bbox": [ + 105, + 561, + 505, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 167, + 577 + ], + "score": 1.0, + "content": "Lemma 4. Let", + "type": "text" + }, + { + "bbox": [ + 167, + 563, + 223, + 575 + ], + "score": 0.9, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 561, + 300, + 577 + ], + "score": 1.0, + "content": "be bounded, where", + "type": "text" + }, + { + "bbox": [ + 300, + 564, + 324, + 574 + ], + "score": 0.91, + "content": "R _ { \\mathrm { m a x } }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 561, + 413, + 577 + ], + "score": 1.0, + "content": "is a constant; suppose", + "type": "text" + }, + { + "bbox": [ + 414, + 563, + 446, + 575 + ], + "score": 0.92, + "content": "\\mathbf { C } _ { M \\times M }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 561, + 505, + 577 + ], + "score": 1.0, + "content": ", the confusion", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 572, + 496, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 496, + 587 + ], + "score": 1.0, + "content": "matrix, is invertible with its determinant denoting as det(C). Then the surrogate reward satisfies", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 561, + 505, + 587 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 592, + 357, + 619 + ], + "lines": [ + { + "bbox": [ + 254, + 592, + 357, + 619 + ], + "spans": [ + { + "bbox": [ + 254, + 592, + 357, + 619 + ], + "score": 0.94, + "content": "0 \\leq | \\hat { r } | \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } R _ { \\mathrm { { m a x } } } .", + "type": "interline_equation", + "image_path": "72e520e43e5632c264840c61519eea2e16d275eb2ba452b66a5b580e808b3b38.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 254, + 592, + 357, + 619 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 634, + 285, + 646 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 286, + 649 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 286, + 649 + ], + "score": 1.0, + "content": "Proof of Lemma 4. From Eqn. (2), we have,", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 632, + 286, + 649 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 244, + 653, + 366, + 680 + ], + "lines": [ + { + "bbox": [ + 244, + 653, + 366, + 680 + ], + "spans": [ + { + "bbox": [ + 244, + 653, + 366, + 680 + ], + "score": 0.94, + "content": "{ \\hat { \\mathbf { R } } } = \\mathbf { C } ^ { - 1 } \\cdot \\mathbf { R } = { \\frac { \\mathrm { a d j } ( \\mathbf { C } ) } { \\mathrm { d e t } ( \\mathbf { C } ) } } \\cdot \\mathbf { R } ,", + "type": "interline_equation", + "image_path": "344d8e37427dbe074728f3442c692ee38f70e0105c28fd33267074e3f5bb3bf9.jpg" + } + ] + } + ], + "index": 29, + "virtual_lines": [ + { + "bbox": [ + 244, + 653, + 366, + 680 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 686, + 505, + 710 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 133, + 700 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 687, + 164, + 699 + ], + "score": 0.27, + "content": "\\operatorname { a d j } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 685, + 265, + 700 + ], + "score": 1.0, + "content": "is the adjugate matrix of", + "type": "text" + }, + { + "bbox": [ + 266, + 687, + 275, + 697 + ], + "score": 0.53, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 685, + 279, + 700 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 279, + 687, + 309, + 699 + ], + "score": 0.57, + "content": "\\operatorname* { d e t } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 685, + 397, + 700 + ], + "score": 1.0, + "content": "is the determinant of", + "type": "text" + }, + { + "bbox": [ + 397, + 687, + 406, + 697 + ], + "score": 0.73, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 685, + 506, + 700 + ], + "score": 1.0, + "content": ". It is known from linear", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 697, + 159, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 159, + 711 + ], + "score": 1.0, + "content": "algebra that,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 685, + 506, + 711 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 248, + 715, + 361, + 730 + ], + "lines": [ + { + "bbox": [ + 248, + 715, + 361, + 730 + ], + "spans": [ + { + "bbox": [ + 248, + 715, + 361, + 730 + ], + "score": 0.91, + "content": "\\operatorname { a d j } ( \\mathbf { C } ) _ { i j } = ( - 1 ) ^ { i + j } \\cdot \\mathbf { M } _ { j i } ,", + "type": "interline_equation", + "image_path": "2ede6ff0d7f2560792151886a3a86014711f1aae734e2769316b698fdd99d7e6.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 248, + 715, + 361, + 730 + ], + "spans": [], + "index": 32 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 133, + 95 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 83, + 152, + 95 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { j i }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 82, + 252, + 95 + ], + "score": 1.0, + "content": "is the determinant of the", + "type": "text" + }, + { + "bbox": [ + 253, + 82, + 332, + 95 + ], + "score": 0.92, + "content": "\\left( M - 1 \\right) \\times \\left( M - 1 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 82, + 481, + 95 + ], + "score": 1.0, + "content": "matrix that results from deleting row", + "type": "text" + }, + { + "bbox": [ + 482, + 83, + 487, + 94 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 301, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 139, + 106 + ], + "score": 1.0, + "content": "column", + "type": "text" + }, + { + "bbox": [ + 139, + 95, + 144, + 104 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 93, + 155, + 106 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 156, + 94, + 165, + 104 + ], + "score": 0.53, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 93, + 213, + 106 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 214, + 94, + 232, + 106 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { j i }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 93, + 301, + 106 + ], + "score": 1.0, + "content": "is also bounded:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 110, + 448, + 146 + ], + "lines": [ + { + "bbox": [ + 162, + 110, + 448, + 146 + ], + "spans": [ + { + "bbox": [ + 162, + 110, + 448, + 146 + ], + "score": 0.96, + "content": "\\mathbf { M } _ { j i } \\leq \\sum _ { \\sigma \\in S _ { n } } \\left( | \\operatorname { s g n } ( \\sigma ) | \\prod _ { m = 1 } c _ { m , \\sigma _ { n } } ^ { \\prime } \\right) \\leq \\prod _ { m = 0 } ^ { M - 1 } \\left( \\sum _ { n = 0 } ^ { M - 1 } c _ { m , n } \\right) = 1 ^ { M } = 1 ,", + "type": "interline_equation", + "image_path": "e706e175678bb50f4b515b20b8502f7a42d02319ef8d5fec1ec5ee59ac826b3c.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 162, + 110, + 448, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 162, + 122.0, + 448, + 134.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 162, + 134.0, + 448, + 146.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 506, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 306, + 163 + ], + "score": 1.0, + "content": "where the sum is computed over all permutations", + "type": "text" + }, + { + "bbox": [ + 307, + 154, + 314, + 161 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 151, + 355, + 163 + ], + "score": 1.0, + "content": "of the set", + "type": "text" + }, + { + "bbox": [ + 356, + 151, + 433, + 163 + ], + "score": 0.9, + "content": "\\{ 0 , 1 , \\cdots , M - 2 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 151, + 437, + 163 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 437, + 151, + 445, + 162 + ], + "score": 0.77, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "is the element", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 117, + 175 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 162, + 137, + 174 + ], + "score": 0.87, + "content": "\\mathbf { M } _ { j i }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 162, + 141, + 175 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 141, + 162, + 171, + 174 + ], + "score": 0.82, + "content": "\\operatorname { s g n } ( \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 162, + 262, + 175 + ], + "score": 1.0, + "content": "returns a value that is", + "type": "text" + }, + { + "bbox": [ + 262, + 163, + 277, + 173 + ], + "score": 0.87, + "content": "+ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 162, + 416, + 175 + ], + "score": 1.0, + "content": "whenever the reordering given by", + "type": "text" + }, + { + "bbox": [ + 417, + 164, + 424, + 172 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "can be achieved by", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 480, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 382, + 185 + ], + "score": 1.0, + "content": "successively interchanging two entries an even number of times, and", + "type": "text" + }, + { + "bbox": [ + 383, + 174, + 396, + 183 + ], + "score": 0.83, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 173, + 480, + 185 + ], + "score": 1.0, + "content": "whenever it can not.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 190, + 165, + 202 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 167, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 167, + 205 + ], + "score": 1.0, + "content": "Consequently,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 205, + 404, + 235 + ], + "lines": [ + { + "bbox": [ + 206, + 205, + 404, + 235 + ], + "spans": [ + { + "bbox": [ + 206, + 205, + 404, + 235 + ], + "score": 0.93, + "content": "\\Big | \\hat { R } _ { i } \\Big | = \\frac { \\sum _ { j } | \\mathrm { a d j } ( \\mathbf { C } ) _ { i j } | \\cdot | R _ { j } | } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\operatorname* { m a x } } .", + "type": "interline_equation", + "image_path": "b23f561b6ecbdfe79174e4a809e53cb66f1b38f4af213f3fa94351f8e954dcc9.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 206, + 205, + 404, + 235 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 353, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 354, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 354, + 284 + ], + "score": 1.0, + "content": "Proof of Theorem 2. From Hoeffding’s inequality, we obtain:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 285, + 461, + 354 + ], + "lines": [ + { + "bbox": [ + 149, + 285, + 461, + 354 + ], + "spans": [ + { + "bbox": [ + 149, + 285, + 461, + 354 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } & { } & { P \\left( \\left| \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right| \\geq \\epsilon \\right) } \\\\ & { } & { \\leq 2 \\exp \\left( \\displaystyle \\frac { - 2 m \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "90ca855571861eda9de28504a1dca5112e4abcb8c67afd1ff2ef0054b09e4fcb.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 149, + 285, + 461, + 308.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 149, + 308.0, + 461, + 331.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 149, + 331.0, + 461, + 354.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 357, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 508, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 141, + 379 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 141, + 359, + 168, + 371 + ], + "score": 0.93, + "content": "V _ { t } ( s _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 352, + 247, + 379 + ], + "score": 1.0, + "content": "is bounded within", + "type": "text" + }, + { + "bbox": [ + 248, + 358, + 269, + 374 + ], + "score": 0.92, + "content": "\\frac { R _ { \\mathrm { m a x } } } { 1 - \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 352, + 349, + 379 + ], + "score": 1.0, + "content": ". In the same way,", + "type": "text" + }, + { + "bbox": [ + 349, + 360, + 359, + 370 + ], + "score": 0.87, + "content": "\\hat { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 352, + 423, + 379 + ], + "score": 1.0, + "content": "is bounded by", + "type": "text" + }, + { + "bbox": [ + 423, + 358, + 481, + 374 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\mathrm { m a x } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 352, + 508, + 379 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 370, + 209, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 209, + 385 + ], + "score": 1.0, + "content": "Lemma 4. We then have,", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 387, + 496, + 441 + ], + "lines": [ + { + "bbox": [ + 114, + 387, + 496, + 441 + ], + "spans": [ + { + "bbox": [ + 114, + 387, + 496, + 441 + ], + "score": 0.94, + "content": "P \\left( \\left| \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } - \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\hat { \\mathbb { P } } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } \\right| \\geq \\epsilon \\right) \\leq 2 \\exp \\left( \\frac { - 2 m \\epsilon ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } { M ^ { 2 } R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "8ff3e6e6631ca3b561fc04acf4af06fd3bbfa47f4819ec5fb559600770a4d46b.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 114, + 387, + 496, + 405.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 114, + 405.0, + 496, + 423.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 114, + 423.0, + 496, + 441.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 359, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 359, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 359, + 465 + ], + "score": 1.0, + "content": "Further, due to the unbiasedness of surrogate rewards, we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 467, + 417, + 497 + ], + "lines": [ + { + "bbox": [ + 193, + 467, + 417, + 497 + ], + "spans": [ + { + "bbox": [ + 193, + 467, + 417, + 497 + ], + "score": 0.91, + "content": "\\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r _ { t } = \\sum _ { s _ { t + 1 } \\in S ; \\hat { r } _ { t } \\in \\hat { \\mathcal { R } } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } .", + "type": "interline_equation", + "image_path": "8df764766310a8d1dbdef5e233340afc5d1ab26820bfc36c974d9d77ceb37562.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 193, + 467, + 417, + 497 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 508, + 153, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 155, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 155, + 521 + ], + "score": 1.0, + "content": "As a result,", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 524, + 506, + 688 + ], + "lines": [ + { + "bbox": [ + 111, + 524, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 111, + 524, + 506, + 688 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { V _ { t } ^ { * } ( s ) - \\hat { V } _ { t } ( s ) \\Big | = \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\tau _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { - \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\hat { \\gamma } _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { \\leq \\alpha _ { 1 } + \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\Bigg | } & { } \\\\ { + \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) { r _ { t } - \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } \\Bigg | } & { } \\\\ { \\leq \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } } & { \\mathrm { ~ s _ { t + 1 } ~ } + \\gamma \\epsilon _ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "f9183208d19f8f5902708a5bb35163948ddef63954c3ecbcf2ddf905e9a4ca25.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 524, + 506, + 578.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 578.6666666666666, + 506, + 633.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 633.3333333333333, + 506, + 687.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 691, + 175, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 690, + 176, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 176, + 705 + ], + "score": 1.0, + "content": "In the same way,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 709, + 423, + 729 + ], + "lines": [ + { + "bbox": [ + 187, + 709, + 423, + 729 + ], + "spans": [ + { + "bbox": [ + 187, + 709, + 423, + 729 + ], + "score": 0.89, + "content": "\\left| V _ { t } ( s ) - \\hat { V } _ { t } ( s ) \\right| \\le \\gamma \\operatorname* { m a x } _ { s \\in \\cal S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 }", + "type": "interline_equation", + "image_path": "e357f3c3c224d90b942b6feabc1d9041d69a6d6111f1bcd05129c8b314c7a94e.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 187, + 709, + 423, + 729 + ], + "spans": [], + "index": 26 + } + ] + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "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": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 245, + 505, + 256 + ], + "lines": [ + { + "bbox": [ + 495, + 246, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 495, + 246, + 505, + 256 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 106 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 133, + 95 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 83, + 152, + 95 + ], + "score": 0.9, + "content": "\\mathbf { M } _ { j i }", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 82, + 252, + 95 + ], + "score": 1.0, + "content": "is the determinant of the", + "type": "text" + }, + { + "bbox": [ + 253, + 82, + 332, + 95 + ], + "score": 0.92, + "content": "\\left( M - 1 \\right) \\times \\left( M - 1 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 82, + 481, + 95 + ], + "score": 1.0, + "content": "matrix that results from deleting row", + "type": "text" + }, + { + "bbox": [ + 482, + 83, + 487, + 94 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 301, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 139, + 106 + ], + "score": 1.0, + "content": "column", + "type": "text" + }, + { + "bbox": [ + 139, + 95, + 144, + 104 + ], + "score": 0.76, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 93, + 155, + 106 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 156, + 94, + 165, + 104 + ], + "score": 0.53, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 93, + 213, + 106 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 214, + 94, + 232, + 106 + ], + "score": 0.91, + "content": "\\mathbf { M } _ { j i }", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 93, + 301, + 106 + ], + "score": 1.0, + "content": "is also bounded:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 110, + 448, + 146 + ], + "lines": [ + { + "bbox": [ + 162, + 110, + 448, + 146 + ], + "spans": [ + { + "bbox": [ + 162, + 110, + 448, + 146 + ], + "score": 0.96, + "content": "\\mathbf { M } _ { j i } \\leq \\sum _ { \\sigma \\in S _ { n } } \\left( | \\operatorname { s g n } ( \\sigma ) | \\prod _ { m = 1 } c _ { m , \\sigma _ { n } } ^ { \\prime } \\right) \\leq \\prod _ { m = 0 } ^ { M - 1 } \\left( \\sum _ { n = 0 } ^ { M - 1 } c _ { m , n } \\right) = 1 ^ { M } = 1 ,", + "type": "interline_equation", + "image_path": "e706e175678bb50f4b515b20b8502f7a42d02319ef8d5fec1ec5ee59ac826b3c.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 162, + 110, + 448, + 122.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 162, + 122.0, + 448, + 134.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 162, + 134.0, + 448, + 146.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 506, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 306, + 163 + ], + "score": 1.0, + "content": "where the sum is computed over all permutations", + "type": "text" + }, + { + "bbox": [ + 307, + 154, + 314, + 161 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 151, + 355, + 163 + ], + "score": 1.0, + "content": "of the set", + "type": "text" + }, + { + "bbox": [ + 356, + 151, + 433, + 163 + ], + "score": 0.9, + "content": "\\{ 0 , 1 , \\cdots , M - 2 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 151, + 437, + 163 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 437, + 151, + 445, + 162 + ], + "score": 0.77, + "content": "c ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "is the element", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 117, + 175 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 162, + 137, + 174 + ], + "score": 0.87, + "content": "\\mathbf { M } _ { j i }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 162, + 141, + 175 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 141, + 162, + 171, + 174 + ], + "score": 0.82, + "content": "\\operatorname { s g n } ( \\sigma )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 162, + 262, + 175 + ], + "score": 1.0, + "content": "returns a value that is", + "type": "text" + }, + { + "bbox": [ + 262, + 163, + 277, + 173 + ], + "score": 0.87, + "content": "+ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 162, + 416, + 175 + ], + "score": 1.0, + "content": "whenever the reordering given by", + "type": "text" + }, + { + "bbox": [ + 417, + 164, + 424, + 172 + ], + "score": 0.75, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "can be achieved by", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 173, + 480, + 185 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 382, + 185 + ], + "score": 1.0, + "content": "successively interchanging two entries an even number of times, and", + "type": "text" + }, + { + "bbox": [ + 383, + 174, + 396, + 183 + ], + "score": 0.83, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 173, + 480, + 185 + ], + "score": 1.0, + "content": "whenever it can not.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 151, + 505, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 190, + 165, + 202 + ], + "lines": [ + { + "bbox": [ + 105, + 187, + 167, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 167, + 205 + ], + "score": 1.0, + "content": "Consequently,", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 187, + 167, + 205 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 205, + 404, + 235 + ], + "lines": [ + { + "bbox": [ + 206, + 205, + 404, + 235 + ], + "spans": [ + { + "bbox": [ + 206, + 205, + 404, + 235 + ], + "score": 0.93, + "content": "\\Big | \\hat { R } _ { i } \\Big | = \\frac { \\sum _ { j } | \\mathrm { a d j } ( \\mathbf { C } ) _ { i j } | \\cdot | R _ { j } | } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\operatorname* { m a x } } .", + "type": "interline_equation", + "image_path": "b23f561b6ecbdfe79174e4a809e53cb66f1b38f4af213f3fa94351f8e954dcc9.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 206, + 205, + 404, + 235 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 268, + 353, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 267, + 354, + 284 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 354, + 284 + ], + "score": 1.0, + "content": "Proof of Theorem 2. From Hoeffding’s inequality, we obtain:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 267, + 354, + 284 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 285, + 461, + 354 + ], + "lines": [ + { + "bbox": [ + 149, + 285, + 461, + 354 + ], + "spans": [ + { + "bbox": [ + 149, + 285, + 461, + 354 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } & { } & { P \\left( \\left| \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right| \\geq \\epsilon \\right) } \\\\ & { } & { \\leq 2 \\exp \\left( \\displaystyle \\frac { - 2 m \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "90ca855571861eda9de28504a1dca5112e4abcb8c67afd1ff2ef0054b09e4fcb.jpg" + } + ] + } + ], + "index": 12, + "virtual_lines": [ + { + "bbox": [ + 149, + 285, + 461, + 308.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 149, + 308.0, + 461, + 331.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 149, + 331.0, + 461, + 354.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 357, + 505, + 384 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 508, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 141, + 379 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 141, + 359, + 168, + 371 + ], + "score": 0.93, + "content": "V _ { t } ( s _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 352, + 247, + 379 + ], + "score": 1.0, + "content": "is bounded within", + "type": "text" + }, + { + "bbox": [ + 248, + 358, + 269, + 374 + ], + "score": 0.92, + "content": "\\frac { R _ { \\mathrm { m a x } } } { 1 - \\gamma }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 352, + 349, + 379 + ], + "score": 1.0, + "content": ". In the same way,", + "type": "text" + }, + { + "bbox": [ + 349, + 360, + 359, + 370 + ], + "score": 0.87, + "content": "\\hat { r } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 352, + 423, + 379 + ], + "score": 1.0, + "content": "is bounded by", + "type": "text" + }, + { + "bbox": [ + 423, + 358, + 481, + 374 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\mathrm { m a x } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 352, + 508, + 379 + ], + "score": 1.0, + "content": "from", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 370, + 209, + 385 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 209, + 385 + ], + "score": 1.0, + "content": "Lemma 4. We then have,", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 352, + 508, + 385 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 114, + 387, + 496, + 441 + ], + "lines": [ + { + "bbox": [ + 114, + 387, + 496, + 441 + ], + "spans": [ + { + "bbox": [ + 114, + 387, + 496, + 441 + ], + "score": 0.94, + "content": "P \\left( \\left| \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } - \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\hat { \\mathbb { P } } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } \\right| \\geq \\epsilon \\right) \\leq 2 \\exp \\left( \\frac { - 2 m \\epsilon ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } { M ^ { 2 } R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) .", + "type": "interline_equation", + "image_path": "8ff3e6e6631ca3b561fc04acf4af06fd3bbfa47f4819ec5fb559600770a4d46b.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 114, + 387, + 496, + 405.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 114, + 405.0, + 496, + 423.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 114, + 423.0, + 496, + 441.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 451, + 359, + 463 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 359, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 359, + 465 + ], + "score": 1.0, + "content": "Further, due to the unbiasedness of surrogate rewards, we have", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 450, + 359, + 465 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 467, + 417, + 497 + ], + "lines": [ + { + "bbox": [ + 193, + 467, + 417, + 497 + ], + "spans": [ + { + "bbox": [ + 193, + 467, + 417, + 497 + ], + "score": 0.91, + "content": "\\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r _ { t } = \\sum _ { s _ { t + 1 } \\in S ; \\hat { r } _ { t } \\in \\hat { \\mathcal { R } } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } .", + "type": "interline_equation", + "image_path": "8df764766310a8d1dbdef5e233340afc5d1ab26820bfc36c974d9d77ceb37562.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 193, + 467, + 417, + 497 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 508, + 153, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 155, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 155, + 521 + ], + "score": 1.0, + "content": "As a result,", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 506, + 155, + 521 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 524, + 506, + 688 + ], + "lines": [ + { + "bbox": [ + 111, + 524, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 111, + 524, + 506, + 688 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { V _ { t } ^ { * } ( s ) - \\hat { V } _ { t } ( s ) \\Big | = \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\tau _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { - \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\hat { \\gamma } _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { \\leq \\alpha _ { 1 } + \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\Bigg | } & { } \\\\ { + \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) { r _ { t } - \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } \\Bigg | } & { } \\\\ { \\leq \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } } & { \\mathrm { ~ s _ { t + 1 } ~ } + \\gamma \\epsilon _ { 2 } } \\end{array}", + "type": "interline_equation", + "image_path": "f9183208d19f8f5902708a5bb35163948ddef63954c3ecbcf2ddf905e9a4ca25.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 111, + 524, + 506, + 578.6666666666666 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 111, + 578.6666666666666, + 506, + 633.3333333333333 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 111, + 633.3333333333333, + 506, + 687.9999999999999 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 691, + 175, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 690, + 176, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 176, + 705 + ], + "score": 1.0, + "content": "In the same way,", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 690, + 176, + 705 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 187, + 709, + 423, + 729 + ], + "lines": [ + { + "bbox": [ + 187, + 709, + 423, + 729 + ], + "spans": [ + { + "bbox": [ + 187, + 709, + 423, + 729 + ], + "score": 0.89, + "content": "\\left| V _ { t } ( s ) - \\hat { V } _ { t } ( s ) \\right| \\le \\gamma \\operatorname* { m a x } _ { s \\in \\cal S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 }", + "type": "interline_equation", + "image_path": "e357f3c3c224d90b942b6feabc1d9041d69a6d6111f1bcd05129c8b314c7a94e.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 187, + 709, + 423, + 729 + ], + "spans": [], + "index": 26 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 360, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 361, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 294, + 97 + ], + "score": 1.0, + "content": "Recursing the two equations in two directions", + "type": "text" + }, + { + "bbox": [ + 294, + 83, + 324, + 93 + ], + "score": 0.86, + "content": "[ 0 \\right. T _ { \\left. }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 81, + 361, + 97 + ], + "score": 1.0, + "content": "), we get", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 96, + 458, + 176 + ], + "lines": [ + { + "bbox": [ + 152, + 96, + 458, + 176 + ], + "spans": [ + { + "bbox": [ + 152, + 96, + 458, + 176 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ^ { * } ( s ) - \\hat { V } ( s ) \\right| \\leq ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\gamma ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\dots + \\gamma ^ { T - 1 } ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } \\\\ { = \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\\\ { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ( s ) - \\hat { V } ( s ) \\right| \\leq \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\end{array}", + "type": "interline_equation", + "image_path": "ca1e4ff6c3bf868245e312301e3c8b7ed08226bc4c443300f76462cfc6cc5f59.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 152, + 96, + 458, + 122.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 152, + 122.66666666666667, + 458, + 149.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 152, + 149.33333333333334, + 458, + 176.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 306, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 307, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 307, + 196 + ], + "score": 1.0, + "content": "Combining these two inequalities above we have:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 196, + 432, + 223 + ], + "lines": [ + { + "bbox": [ + 178, + 196, + 432, + 223 + ], + "spans": [ + { + "bbox": [ + 178, + 196, + 432, + 223 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { s \\in S } | V ^ { * } ( s ) - V ( s ) | \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } { 1 - \\gamma } .", + "type": "interline_equation", + "image_path": "f404ab279712b778e1549d090484c153ae0a4f40e60694d07c5bc0bce233b05a.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 178, + 196, + 432, + 223 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 329, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 329, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 122, + 245 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 233, + 154, + 243 + ], + "score": 0.86, + "content": "\\epsilon _ { 1 } = \\epsilon _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 230, + 158, + 245 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 158, + 231, + 286, + 243 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\operatorname * { s o } \\operatorname* { m a x } _ { s \\in \\mathcal { S } } | V ^ { * } ( s ) - V ( s ) | \\le \\epsilon } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 230, + 329, + 245 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 245, + 349, + 272 + ], + "lines": [ + { + "bbox": [ + 262, + 245, + 349, + 272 + ], + "spans": [ + { + "bbox": [ + 262, + 245, + 349, + 272 + ], + "score": 0.95, + "content": "\\epsilon _ { 1 } = \\epsilon _ { 2 } \\leq \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } .", + "type": "interline_equation", + "image_path": "e4223c391cf6835444f665a0fdb81ca1cc4828ecd77088463fdb840e79cbd865.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 262, + 245, + 349, + 272 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 104, + 279, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 104, + 279, + 189, + 299 + ], + "score": 1.0, + "content": "For arbitrarily small", + "type": "text" + }, + { + "bbox": [ + 189, + 286, + 194, + 293 + ], + "score": 0.63, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 279, + 248, + 299 + ], + "score": 1.0, + "content": ", by choosing", + "type": "text" + }, + { + "bbox": [ + 248, + 285, + 258, + 293 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 279, + 394, + 299 + ], + "score": 1.0, + "content": "appropriately, there always exists", + "type": "text" + }, + { + "bbox": [ + 394, + 281, + 465, + 298 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\epsilon _ { 1 } = \\epsilon _ { 2 } = \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 279, + 506, + 299 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 295, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 244, + 309 + ], + "score": 1.0, + "content": "the policy error is bounded within", + "type": "text" + }, + { + "bbox": [ + 245, + 298, + 250, + 306 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 295, + 359, + 309 + ], + "score": 1.0, + "content": ". That is to say, the Phased", + "type": "text" + }, + { + "bbox": [ + 360, + 297, + 368, + 307 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 295, + 506, + 309 + ], + "score": 1.0, + "content": "-Learning algorithm can converge", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 307, + 438, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 438, + 320 + ], + "score": 1.0, + "content": "to the near optimal policy within finite steps using our proposed surrogate rewards.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 177, + 336 + ], + "score": 1.0, + "content": "Finally, there are", + "type": "text" + }, + { + "bbox": [ + 177, + 324, + 212, + 336 + ], + "score": 0.94, + "content": "| { \\cal S } | | { \\cal A } | T", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 323, + 450, + 336 + ], + "score": 1.0, + "content": "transitions under which these conditions must hold, where", + "type": "text" + }, + { + "bbox": [ + 450, + 324, + 465, + 336 + ], + "score": 0.84, + "content": "| \\cdot |", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "represent", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 332, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 104, + 332, + 506, + 349 + ], + "score": 1.0, + "content": "the number of elements in a specific set. Using a union bound, the probability of failure in any", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 345, + 208, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 208, + 357 + ], + "score": 1.0, + "content": "condition is smaller than", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 357, + 434, + 385 + ], + "lines": [ + { + "bbox": [ + 177, + 357, + 434, + 385 + ], + "spans": [ + { + "bbox": [ + 177, + 357, + 434, + 385 + ], + "score": 0.93, + "content": "2 | S | | A | T \\cdot \\exp \\left( - m \\frac { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { 2 ( 1 + \\gamma ) ^ { 2 } } \\cdot \\operatorname * { m i n } \\{ ( 1 - \\gamma ) ^ { 2 } , \\frac { \\operatorname * { d e t } ( \\mathbf { C } ) ^ { 2 } } { M ^ { 2 } } \\} \\right) .", + "type": "interline_equation", + "image_path": "b8e4546cc0e6748aa920f8419bfb4f400f5faf3a370eba5edab71a9121350381.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 177, + 357, + 434, + 385 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 392, + 340, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 340, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 227, + 405 + ], + "score": 1.0, + "content": "We set the error rate less than", + "type": "text" + }, + { + "bbox": [ + 227, + 393, + 232, + 403 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 392, + 253, + 405 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 254, + 395, + 263, + 403 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 392, + 340, + 405 + ], + "score": 1.0, + "content": "should satisfy that", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 406, + 397, + 433 + ], + "lines": [ + { + "bbox": [ + 213, + 406, + 397, + 433 + ], + "spans": [ + { + "bbox": [ + 213, + 406, + 397, + 433 + ], + "score": 0.94, + "content": "m = { \\cal O } \\left( \\frac { 1 } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } \\log \\frac { | { \\cal S } | | { \\cal A } | T } { \\delta } \\right) .", + "type": "interline_equation", + "image_path": "584572a97da68510af76bd03717f640b8fdba7bb22095a013ac04b9511801943.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 213, + 406, + 397, + 433 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 437, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 193, + 453 + ], + "score": 1.0, + "content": "In consequence, after", + "type": "text" + }, + { + "bbox": [ + 193, + 439, + 236, + 452 + ], + "score": 0.93, + "content": "m | { \\cal S } | | { \\cal A } | T", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 438, + 298, + 453 + ], + "score": 1.0, + "content": "calls, which is,", + "type": "text" + }, + { + "bbox": [ + 298, + 436, + 428, + 456 + ], + "score": 0.92, + "content": "\\begin{array} { r } { O \\left( \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 438, + 506, + 452 + ], + "score": 1.0, + "content": ", the value function", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 454, + 504, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 282, + 466 + ], + "score": 1.0, + "content": "converges to the optimal one for every state", + "type": "text" + }, + { + "bbox": [ + 283, + 457, + 288, + 464 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 454, + 408, + 466 + ], + "score": 1.0, + "content": ", with probability greater than", + "type": "text" + }, + { + "bbox": [ + 409, + 455, + 432, + 465 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 454, + 435, + 466 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 496, + 456, + 504, + 463 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 477, + 506, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 322, + 491 + ], + "score": 1.0, + "content": "The above bound is for discounted MDP setting with", + "type": "text" + }, + { + "bbox": [ + 323, + 478, + 368, + 489 + ], + "score": 0.92, + "content": "0 \\leq \\gamma < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 477, + 474, + 491 + ], + "score": 1.0, + "content": ". For undiscounted setting", + "type": "text" + }, + { + "bbox": [ + 475, + 478, + 501, + 489 + ], + "score": 0.9, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 477, + 506, + 491 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 278, + 501 + ], + "score": 1.0, + "content": "since the total error (for entire trajectory of", + "type": "text" + }, + { + "bbox": [ + 278, + 489, + 286, + 499 + ], + "score": 0.84, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 489, + 419, + 501 + ], + "score": 1.0, + "content": "time-steps) has to be bounded by", + "type": "text" + }, + { + "bbox": [ + 419, + 491, + 425, + 499 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 489, + 505, + 501 + ], + "score": 1.0, + "content": ", therefore, the error", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 499, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 270, + 513 + ], + "score": 1.0, + "content": "for each time step has to be bounded by", + "type": "text" + }, + { + "bbox": [ + 271, + 500, + 279, + 513 + ], + "score": 0.86, + "content": "\\frac { \\epsilon } { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 499, + 506, + 513 + ], + "score": 1.0, + "content": ". Repeating our anayslis, we obtain the following upper", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 511, + 137, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 137, + 522 + ], + "score": 1.0, + "content": "bound:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 518, + 369, + 546 + ], + "lines": [ + { + "bbox": [ + 241, + 518, + 369, + 546 + ], + "spans": [ + { + "bbox": [ + 241, + 518, + 369, + 546 + ], + "score": 0.94, + "content": "O \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) .", + "type": "interline_equation", + "image_path": "56eb0f1cec4732f10de1fbefebfb108ee690363bd22f026e4f7bac44fceb6671.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 241, + 518, + 369, + 546 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 187, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 189, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 189, + 569 + ], + "score": 1.0, + "content": "Proof of Theorem 3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 569, + 491, + 732 + ], + "lines": [ + { + "bbox": [ + 122, + 569, + 491, + 732 + ], + "spans": [ + { + "bbox": [ + 122, + 569, + 491, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\mathbf { V a r } ( \\vec { r } ) - \\mathbf { V a r } ( r ) = \\mathbf { E } \\left[ ( \\hat { r } - \\mathbf { E } [ \\hat { r } ] ) ^ { 2 } \\right] - \\mathbf { E } \\left[ ( r - \\mathbf { E } [ r ] ) ^ { 2 } \\right] } & { } \\\\ { = \\mathbb { E } [ \\vec { r } ^ { 2 } ] - \\mathbb { E } [ \\vec { r } ] ^ { 2 } + \\mathbb { E } [ r ^ { 2 } ] - \\mathbb { E } [ r ] ^ { 2 } } & { } \\\\ { = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } \\right) ^ { 2 } - \\left[ \\underset { j } { \\sum } p _ { j } R _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } p _ { j } R _ { j } \\right) ^ { 2 } \\right] } & { } \\\\ { = \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\sum _ { j } p _ { j } R _ { j } ^ { 2 } = \\underset { j } { \\sum } \\sum _ { j } p _ { i } c _ { i , j } \\hat { R } _ { j } ^ { 2 } - \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } } & { } \\\\ { = \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } ^ { 2 } - \\left( \\underset { j } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } \\right) . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "dbd62ff24cd111a322ee0f39aec0cb617f473a45552192763490d7f890b4d9fb.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 122, + 569, + 491, + 623.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 122, + 623.3333333333334, + 491, + 677.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 122, + 677.6666666666667, + 491, + 732.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 308, + 38 + ], + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 360, + 94 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 361, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 294, + 97 + ], + "score": 1.0, + "content": "Recursing the two equations in two directions", + "type": "text" + }, + { + "bbox": [ + 294, + 83, + 324, + 93 + ], + "score": 0.86, + "content": "[ 0 \\right. T _ { \\left. }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 81, + 361, + 97 + ], + "score": 1.0, + "content": "), we get", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 81, + 361, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 152, + 96, + 458, + 176 + ], + "lines": [ + { + "bbox": [ + 152, + 96, + 458, + 176 + ], + "spans": [ + { + "bbox": [ + 152, + 96, + 458, + 176 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ^ { * } ( s ) - \\hat { V } ( s ) \\right| \\leq ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\gamma ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\dots + \\gamma ^ { T - 1 } ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } \\\\ { = \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\\\ { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ( s ) - \\hat { V } ( s ) \\right| \\leq \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\end{array}", + "type": "interline_equation", + "image_path": "ca1e4ff6c3bf868245e312301e3c8b7ed08226bc4c443300f76462cfc6cc5f59.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 152, + 96, + 458, + 122.66666666666667 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 152, + 122.66666666666667, + 458, + 149.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 152, + 149.33333333333334, + 458, + 176.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 182, + 306, + 194 + ], + "lines": [ + { + "bbox": [ + 105, + 180, + 307, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 307, + 196 + ], + "score": 1.0, + "content": "Combining these two inequalities above we have:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 180, + 307, + 196 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 196, + 432, + 223 + ], + "lines": [ + { + "bbox": [ + 178, + 196, + 432, + 223 + ], + "spans": [ + { + "bbox": [ + 178, + 196, + 432, + 223 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { s \\in S } | V ^ { * } ( s ) - V ( s ) | \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } { 1 - \\gamma } .", + "type": "interline_equation", + "image_path": "f404ab279712b778e1549d090484c153ae0a4f40e60694d07c5bc0bce233b05a.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 178, + 196, + 432, + 223 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 329, + 244 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 329, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 122, + 245 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 233, + 154, + 243 + ], + "score": 0.86, + "content": "\\epsilon _ { 1 } = \\epsilon _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 230, + 158, + 245 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 158, + 231, + 286, + 243 + ], + "score": 0.91, + "content": "\\begin{array} { r } { \\operatorname * { s o } \\operatorname* { m a x } _ { s \\in \\mathcal { S } } | V ^ { * } ( s ) - V ( s ) | \\le \\epsilon } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 230, + 329, + 245 + ], + "score": 1.0, + "content": "as long as", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 230, + 329, + 245 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 262, + 245, + 349, + 272 + ], + "lines": [ + { + "bbox": [ + 262, + 245, + 349, + 272 + ], + "spans": [ + { + "bbox": [ + 262, + 245, + 349, + 272 + ], + "score": 0.95, + "content": "\\epsilon _ { 1 } = \\epsilon _ { 2 } \\leq \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } .", + "type": "interline_equation", + "image_path": "e4223c391cf6835444f665a0fdb81ca1cc4828ecd77088463fdb840e79cbd865.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 262, + 245, + 349, + 272 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 104, + 279, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 104, + 279, + 189, + 299 + ], + "score": 1.0, + "content": "For arbitrarily small", + "type": "text" + }, + { + "bbox": [ + 189, + 286, + 194, + 293 + ], + "score": 0.63, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 279, + 248, + 299 + ], + "score": 1.0, + "content": ", by choosing", + "type": "text" + }, + { + "bbox": [ + 248, + 285, + 258, + 293 + ], + "score": 0.77, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 279, + 394, + 299 + ], + "score": 1.0, + "content": "appropriately, there always exists", + "type": "text" + }, + { + "bbox": [ + 394, + 281, + 465, + 298 + ], + "score": 0.95, + "content": "\\begin{array} { r } { \\epsilon _ { 1 } = \\epsilon _ { 2 } = \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 279, + 506, + 299 + ], + "score": 1.0, + "content": "such that", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 295, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 244, + 309 + ], + "score": 1.0, + "content": "the policy error is bounded within", + "type": "text" + }, + { + "bbox": [ + 245, + 298, + 250, + 306 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 295, + 359, + 309 + ], + "score": 1.0, + "content": ". That is to say, the Phased", + "type": "text" + }, + { + "bbox": [ + 360, + 297, + 368, + 307 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 295, + 506, + 309 + ], + "score": 1.0, + "content": "-Learning algorithm can converge", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 307, + 438, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 438, + 320 + ], + "score": 1.0, + "content": "to the near optimal policy within finite steps using our proposed surrogate rewards.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 279, + 506, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 324, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 323, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 177, + 336 + ], + "score": 1.0, + "content": "Finally, there are", + "type": "text" + }, + { + "bbox": [ + 177, + 324, + 212, + 336 + ], + "score": 0.94, + "content": "| { \\cal S } | | { \\cal A } | T", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 323, + 450, + 336 + ], + "score": 1.0, + "content": "transitions under which these conditions must hold, where", + "type": "text" + }, + { + "bbox": [ + 450, + 324, + 465, + 336 + ], + "score": 0.84, + "content": "| \\cdot |", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 323, + 505, + 336 + ], + "score": 1.0, + "content": "represent", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 332, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 104, + 332, + 506, + 349 + ], + "score": 1.0, + "content": "the number of elements in a specific set. Using a union bound, the probability of failure in any", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 345, + 208, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 208, + 357 + ], + "score": 1.0, + "content": "condition is smaller than", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 323, + 506, + 357 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 177, + 357, + 434, + 385 + ], + "lines": [ + { + "bbox": [ + 177, + 357, + 434, + 385 + ], + "spans": [ + { + "bbox": [ + 177, + 357, + 434, + 385 + ], + "score": 0.93, + "content": "2 | S | | A | T \\cdot \\exp \\left( - m \\frac { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { 2 ( 1 + \\gamma ) ^ { 2 } } \\cdot \\operatorname * { m i n } \\{ ( 1 - \\gamma ) ^ { 2 } , \\frac { \\operatorname * { d e t } ( \\mathbf { C } ) ^ { 2 } } { M ^ { 2 } } \\} \\right) .", + "type": "interline_equation", + "image_path": "b8e4546cc0e6748aa920f8419bfb4f400f5faf3a370eba5edab71a9121350381.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 177, + 357, + 434, + 385 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 392, + 340, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 340, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 227, + 405 + ], + "score": 1.0, + "content": "We set the error rate less than", + "type": "text" + }, + { + "bbox": [ + 227, + 393, + 232, + 403 + ], + "score": 0.78, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 392, + 253, + 405 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 254, + 395, + 263, + 403 + ], + "score": 0.78, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 392, + 340, + 405 + ], + "score": 1.0, + "content": "should satisfy that", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 392, + 340, + 405 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 406, + 397, + 433 + ], + "lines": [ + { + "bbox": [ + 213, + 406, + 397, + 433 + ], + "spans": [ + { + "bbox": [ + 213, + 406, + 397, + 433 + ], + "score": 0.94, + "content": "m = { \\cal O } \\left( \\frac { 1 } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } \\log \\frac { | { \\cal S } | | { \\cal A } | T } { \\delta } \\right) .", + "type": "interline_equation", + "image_path": "584572a97da68510af76bd03717f640b8fdba7bb22095a013ac04b9511801943.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 213, + 406, + 397, + 433 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 437, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 105, + 436, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 193, + 453 + ], + "score": 1.0, + "content": "In consequence, after", + "type": "text" + }, + { + "bbox": [ + 193, + 439, + 236, + 452 + ], + "score": 0.93, + "content": "m | { \\cal S } | | { \\cal A } | T", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 438, + 298, + 453 + ], + "score": 1.0, + "content": "calls, which is,", + "type": "text" + }, + { + "bbox": [ + 298, + 436, + 428, + 456 + ], + "score": 0.92, + "content": "\\begin{array} { r } { O \\left( \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 438, + 506, + 452 + ], + "score": 1.0, + "content": ", the value function", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 454, + 504, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 282, + 466 + ], + "score": 1.0, + "content": "converges to the optimal one for every state", + "type": "text" + }, + { + "bbox": [ + 283, + 457, + 288, + 464 + ], + "score": 0.74, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 454, + 408, + 466 + ], + "score": 1.0, + "content": ", with probability greater than", + "type": "text" + }, + { + "bbox": [ + 409, + 455, + 432, + 465 + ], + "score": 0.83, + "content": "1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 454, + 435, + 466 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 496, + 456, + 504, + 463 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 436, + 506, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 477, + 506, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 322, + 491 + ], + "score": 1.0, + "content": "The above bound is for discounted MDP setting with", + "type": "text" + }, + { + "bbox": [ + 323, + 478, + 368, + 489 + ], + "score": 0.92, + "content": "0 \\leq \\gamma < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 477, + 474, + 491 + ], + "score": 1.0, + "content": ". For undiscounted setting", + "type": "text" + }, + { + "bbox": [ + 475, + 478, + 501, + 489 + ], + "score": 0.9, + "content": "\\gamma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 477, + 506, + 491 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 278, + 501 + ], + "score": 1.0, + "content": "since the total error (for entire trajectory of", + "type": "text" + }, + { + "bbox": [ + 278, + 489, + 286, + 499 + ], + "score": 0.84, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 489, + 419, + 501 + ], + "score": 1.0, + "content": "time-steps) has to be bounded by", + "type": "text" + }, + { + "bbox": [ + 419, + 491, + 425, + 499 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 489, + 505, + 501 + ], + "score": 1.0, + "content": ", therefore, the error", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 499, + 506, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 270, + 513 + ], + "score": 1.0, + "content": "for each time step has to be bounded by", + "type": "text" + }, + { + "bbox": [ + 271, + 500, + 279, + 513 + ], + "score": 0.86, + "content": "\\frac { \\epsilon } { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 499, + 506, + 513 + ], + "score": 1.0, + "content": ". Repeating our anayslis, we obtain the following upper", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 511, + 137, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 137, + 522 + ], + "score": 1.0, + "content": "bound:", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 477, + 506, + 522 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 241, + 518, + 369, + 546 + ], + "lines": [ + { + "bbox": [ + 241, + 518, + 369, + 546 + ], + "spans": [ + { + "bbox": [ + 241, + 518, + 369, + 546 + ], + "score": 0.94, + "content": "O \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) .", + "type": "interline_equation", + "image_path": "56eb0f1cec4732f10de1fbefebfb108ee690363bd22f026e4f7bac44fceb6671.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 241, + 518, + 369, + 546 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 187, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 189, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 189, + 569 + ], + "score": 1.0, + "content": "Proof of Theorem 3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 555, + 189, + 569 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 122, + 569, + 491, + 732 + ], + "lines": [ + { + "bbox": [ + 122, + 569, + 491, + 732 + ], + "spans": [ + { + "bbox": [ + 122, + 569, + 491, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { r l } { \\mathbf { V a r } ( \\vec { r } ) - \\mathbf { V a r } ( r ) = \\mathbf { E } \\left[ ( \\hat { r } - \\mathbf { E } [ \\hat { r } ] ) ^ { 2 } \\right] - \\mathbf { E } \\left[ ( r - \\mathbf { E } [ r ] ) ^ { 2 } \\right] } & { } \\\\ { = \\mathbb { E } [ \\vec { r } ^ { 2 } ] - \\mathbb { E } [ \\vec { r } ] ^ { 2 } + \\mathbb { E } [ r ^ { 2 } ] - \\mathbb { E } [ r ] ^ { 2 } } & { } \\\\ { = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } \\right) ^ { 2 } - \\left[ \\underset { j } { \\sum } p _ { j } R _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } p _ { j } R _ { j } \\right) ^ { 2 } \\right] } & { } \\\\ { = \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\sum _ { j } p _ { j } R _ { j } ^ { 2 } = \\underset { j } { \\sum } \\sum _ { j } p _ { i } c _ { i , j } \\hat { R } _ { j } ^ { 2 } - \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } } & { } \\\\ { = \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } ^ { 2 } - \\left( \\underset { j } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } \\right) . } & { } \\end{array}", + "type": "interline_equation", + "image_path": "dbd62ff24cd111a322ee0f39aec0cb617f473a45552192763490d7f890b4d9fb.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 122, + 569, + 491, + 623.3333333333334 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 122, + 623.3333333333334, + 491, + 677.6666666666667 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 122, + 677.6666666666667, + 491, + 732.0000000000001 + ], + "spans": [], + "index": 27 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 258, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 258, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 258, + 97 + ], + "score": 1.0, + "content": "Using the CauchySchwarz inequality,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 97, + 431, + 131 + ], + "lines": [ + { + "bbox": [ + 178, + 97, + 431, + 131 + ], + "spans": [ + { + "bbox": [ + 178, + 97, + 431, + 131 + ], + "score": 0.92, + "content": "\\sum _ { i } c _ { j , i } \\hat { \\boldsymbol { R _ { i } } } ^ { 2 } = \\sum _ { i } \\sqrt { c _ { j , i } } ^ { 2 } \\cdot \\sum _ { i } \\left( \\sqrt { c _ { j , i } } \\hat { R } _ { i } \\right) ^ { 2 } \\ge \\left( \\sum _ { i } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "d94be785edb771fae165e78110c3e25e6ff97496e37f3a30cc4231a0d747036f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 178, + 97, + 431, + 108.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 178, + 108.33333333333333, + 431, + 119.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 178, + 119.66666666666666, + 431, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 150, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 152, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 152, + 146 + ], + "score": 1.0, + "content": "So we get,", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 145, + 353, + 159 + ], + "lines": [ + { + "bbox": [ + 257, + 145, + 353, + 159 + ], + "spans": [ + { + "bbox": [ + 257, + 145, + 353, + 159 + ], + "score": 0.86, + "content": "\\mathbf { V a r } ( { \\hat { r } } ) - \\mathbf { V a r } ( r ) \\geq 0 .", + "type": "interline_equation", + "image_path": "e28b9c1e6b9c1fe63f710a4dcbb1b97248f41ddbc351ff4556f577270753ed58.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 257, + 145, + 353, + 159 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 154, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 156, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 156, + 173 + ], + "score": 1.0, + "content": "In addition,", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 174, + 415, + 248 + ], + "lines": [ + { + "bbox": [ + 194, + 174, + 415, + 248 + ], + "spans": [ + { + "bbox": [ + 194, + 174, + 415, + 248 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\mathbf { V a r } ( \\hat { r } ) = \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } - ( \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ) ^ { 2 } \\leq \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } } } \\\\ & { } & { \\leq \\sum _ { j } \\hat { p } _ { j } \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } = \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "dbcd94cbd6d980c41eb02602c98c810a520e09018998f47a15c126ee3d0db243.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 194, + 174, + 415, + 188.8 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 194, + 188.8, + 415, + 203.60000000000002 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 194, + 203.60000000000002, + 415, + 218.40000000000003 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 218.40000000000003, + 415, + 233.20000000000005 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 233.20000000000005, + 415, + 248.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 281, + 246, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 247, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 247, + 295 + ], + "score": 1.0, + "content": "B EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "We set up our experiments within the popular OpenAI baselines (Dhariwal et al., 2017) and keras-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "rl (Plappert, 2016) framework. Specifically, we integrate the algorithms and interact with OpenAI", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 328, + 323, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 323, + 340 + ], + "score": 1.0, + "content": "Gym (Brockman et al., 2016) environments (Table 3).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 352, + 208, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 209, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 209, + 365 + ], + "score": 1.0, + "content": "B.1 RL ALGORITHMS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 368, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 368, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 368, + 385 + ], + "score": 1.0, + "content": "A set of state-of-the-art reinforcement learning algorithms are ex-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 384, + 368, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 368, + 396 + ], + "score": 1.0, + "content": "perimented with while training under different amounts of noise,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 394, + 369, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 147, + 407 + ], + "score": 1.0, + "content": "including", + "type": "text" + }, + { + "bbox": [ + 147, + 395, + 156, + 406 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 394, + 369, + 407 + ], + "score": 1.0, + "content": "-Learning (Watkins, 1989; Watkins & Dayan, 1992),", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 404, + 369, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 369, + 419 + ], + "score": 1.0, + "content": "Cross-Entropy Method (CEM) (Szita & Lorincz, 2006), Deep ¨", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 416, + 369, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 262, + 429 + ], + "score": 1.0, + "content": "SARSA (Sutton & Barto, 1998), Deep", + "type": "text" + }, + { + "bbox": [ + 262, + 417, + 271, + 428 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 416, + 369, + 429 + ], + "score": 1.0, + "content": "-Network (DQN) (Mnih", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 427, + 369, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 369, + 439 + ], + "score": 1.0, + "content": "et al., 2013; 2015; van Hasselt et al., 2016), Dueling DQN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 438, + 369, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 369, + 451 + ], + "score": 1.0, + "content": "(DDQN) (Wang et al., 2016), Deep Deterministic Policy Gradi-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 448, + 369, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 369, + 462 + ], + "score": 1.0, + "content": "ent (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 460, + 368, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 368, + 473 + ], + "score": 1.0, + "content": "et al., 2016) and Proximal Policy Optimization (PPO) (Schulman", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 471, + 367, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 367, + 483 + ], + "score": 1.0, + "content": "et al., 2017) algorithms. For each game and algorithm, three poli-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 482, + 369, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 369, + 494 + ], + "score": 1.0, + "content": "cies are trained based on different random initialization to de-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 494, + 248, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 248, + 505 + ], + "score": 1.0, + "content": "crease the variance in experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5 + }, + { + "type": "table", + "bbox": [ + 377, + 402, + 503, + 501 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 376, + 376, + 505, + 398 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 375, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 375, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "Table 3: RL algorithms utilized", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 375, + 386, + 490, + 399 + ], + "spans": [ + { + "bbox": [ + 375, + 386, + 490, + 399 + ], + "score": 1.0, + "content": "in the robustness evaluation.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "table_body", + "bbox": [ + 377, + 402, + 503, + 501 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 377, + 402, + 503, + 501 + ], + "spans": [ + { + "bbox": [ + 377, + 402, + 503, + 501 + ], + "score": 0.973, + "html": "
EnvironmentRL Algorithm
CartPoleQ-Learning (1989) CEM (2006) SARSA (1998) DQN (2013; 2015)
PendulumDDQN (2016) DDPG (2015)
Atari GamesNAF (2016) PPO (2017)
", + "type": "table", + "image_path": "6a03bbc190d32de2c1e7977462eccbba2abb0409cad69396df67cc0795dff3fa.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 377, + 402, + 503, + 451.5 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 377, + 451.5, + 503, + 501.0 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 108, + 517, + 258, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 260, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 260, + 530 + ], + "score": 1.0, + "content": "B.2 POST-PROCESSING REWARDS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "We explore both symmetric and asymmetric noise of different noise levels. For symmetric noise,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 550, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 560 + ], + "score": 1.0, + "content": "the confusion matrices are symmetric, which means the probabilities of corruption for each reward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 561, + 327, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 327, + 572 + ], + "score": 1.0, + "content": "choice are equivalent. For instance, a confusion matrix", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 573, + 340, + 601 + ], + "lines": [ + { + "bbox": [ + 270, + 573, + 340, + 601 + ], + "spans": [ + { + "bbox": [ + 270, + 573, + 340, + 601 + ], + "score": 0.94, + "content": "\\mathbf { C } = \\left[ \\begin{array} { l l } { 0 . 8 } & { 0 . 2 } \\\\ { 0 . 2 } & { 0 . 8 } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "9734c179eaaf47b185d101991b5e0625296060e841a0cf6b04bc636bad9787d4.jpg" + } + ] + } + ], + "index": 37.5, + "virtual_lines": [ + { + "bbox": [ + 270, + 573, + 340, + 587.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 270, + 587.0, + 340, + 601.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 601, + 482, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 483, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 143, + 615 + ], + "score": 1.0, + "content": "says that", + "type": "text" + }, + { + "bbox": [ + 144, + 603, + 154, + 613 + ], + "score": 0.84, + "content": "r _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 601, + 250, + 615 + ], + "score": 1.0, + "content": "could be corrupted into", + "type": "text" + }, + { + "bbox": [ + 250, + 604, + 261, + 613 + ], + "score": 0.85, + "content": "r _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 601, + 409, + 615 + ], + "score": 1.0, + "content": "with a probability of 0.2 and so does", + "type": "text" + }, + { + "bbox": [ + 410, + 603, + 420, + 613 + ], + "score": 0.77, + "content": "r _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 602, + 477, + 613 + ], + "score": 0.25, + "content": "( \\mathrm { w e i g h t } = 0 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 601, + 483, + 615 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "As for asymmetric noise, two types of random noise are tested: 1) rand-one, each reward level can", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 630, + 504, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 504, + 641 + ], + "score": 1.0, + "content": "only be perturbed into another reward; 2) rand-all, each reward could be perturbed to any other", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 639, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 505, + 654 + ], + "score": 1.0, + "content": "reward. To measure the amount of noise w.r.t confusion matrices, we define the weight of noise as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 650, + 142, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 142, + 664 + ], + "score": 1.0, + "content": "follows:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 662, + 379, + 675 + ], + "lines": [ + { + "bbox": [ + 230, + 662, + 379, + 675 + ], + "spans": [ + { + "bbox": [ + 230, + 662, + 379, + 675 + ], + "score": 0.89, + "content": "\\mathbf { C } = ( 1 - \\omega ) \\cdot \\mathbf { I } + \\omega \\cdot \\mathbf { N } , \\omega \\in [ 0 , 1 ] ,", + "type": "interline_equation", + "image_path": "6c422ca4bb6b53063fb6c345cfb3396e571c15b9f1221833502d2111271749fe.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 230, + 662, + 379, + 675 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 675, + 502, + 697 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 133, + 689 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 677, + 142, + 685 + ], + "score": 0.76, + "content": "\\omega", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 673, + 264, + 689 + ], + "score": 1.0, + "content": "controls the weight of noise;", + "type": "text" + }, + { + "bbox": [ + 264, + 676, + 271, + 685 + ], + "score": 0.29, + "content": "\\mathbf { I }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 673, + 290, + 689 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 290, + 676, + 301, + 685 + ], + "score": 0.54, + "content": "\\mathbf { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 673, + 505, + 689 + ], + "score": 1.0, + "content": "denote the identity and noise matrix respectively.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 686, + 353, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 687, + 180, + 698 + ], + "score": 1.0, + "content": "Suppose there are", + "type": "text" + }, + { + "bbox": [ + 180, + 687, + 192, + 696 + ], + "score": 0.82, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 687, + 302, + 698 + ], + "score": 1.0, + "content": "outcomes for true rewards,", + "type": "text" + }, + { + "bbox": [ + 302, + 686, + 312, + 696 + ], + "score": 0.6, + "content": "\\mathbf { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 687, + 353, + 698 + ], + "score": 1.0, + "content": "writes as:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 700, + 400, + 735 + ], + "lines": [ + { + "bbox": [ + 209, + 700, + 400, + 735 + ], + "spans": [ + { + "bbox": [ + 209, + 700, + 400, + 735 + ], + "score": 0.92, + "content": "\\mathbf { N } = \\left[ \\begin{array} { c c c c } { n _ { 0 , 0 } } & { n _ { 0 , 1 } } & { \\cdots } & { n _ { 0 , M - 1 } } \\\\ { \\cdots } & { \\ddots } & { \\ddots } & { \\ddots } \\\\ { n _ { M - 1 , 0 } } & { n _ { M - 1 , 1 } } & { \\ddots } & { n _ { M - 1 , M - 1 } } \\end{array} \\right] ,", + "type": "interline_equation", + "image_path": "73e1b162231308ace067c9bb45d53a639a734df6dd70e6b6fb273f9ce3f63cd8.jpg" + } + ] + } + ], + "index": 47.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 700, + 400, + 717.5 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 209, + 717.5, + 400, + 735.0 + ], + "spans": [], + "index": 48 + } + ] + } + ], + "page_idx": 16, + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "17", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 254, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 496, + 257, + 504, + 265 + ], + "spans": [ + { + "bbox": [ + 496, + 257, + 504, + 265 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 258, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 80, + 258, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 80, + 258, + 97 + ], + "score": 1.0, + "content": "Using the CauchySchwarz inequality,", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 80, + 258, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 178, + 97, + 431, + 131 + ], + "lines": [ + { + "bbox": [ + 178, + 97, + 431, + 131 + ], + "spans": [ + { + "bbox": [ + 178, + 97, + 431, + 131 + ], + "score": 0.92, + "content": "\\sum _ { i } c _ { j , i } \\hat { \\boldsymbol { R _ { i } } } ^ { 2 } = \\sum _ { i } \\sqrt { c _ { j , i } } ^ { 2 } \\cdot \\sum _ { i } \\left( \\sqrt { c _ { j , i } } \\hat { R } _ { i } \\right) ^ { 2 } \\ge \\left( \\sum _ { i } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } .", + "type": "interline_equation", + "image_path": "d94be785edb771fae165e78110c3e25e6ff97496e37f3a30cc4231a0d747036f.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 178, + 97, + 431, + 108.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 178, + 108.33333333333333, + 431, + 119.66666666666666 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 178, + 119.66666666666666, + 431, + 131.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 132, + 150, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 130, + 152, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 152, + 146 + ], + "score": 1.0, + "content": "So we get,", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 130, + 152, + 146 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 257, + 145, + 353, + 159 + ], + "lines": [ + { + "bbox": [ + 257, + 145, + 353, + 159 + ], + "spans": [ + { + "bbox": [ + 257, + 145, + 353, + 159 + ], + "score": 0.86, + "content": "\\mathbf { V a r } ( { \\hat { r } } ) - \\mathbf { V a r } ( r ) \\geq 0 .", + "type": "interline_equation", + "image_path": "e28b9c1e6b9c1fe63f710a4dcbb1b97248f41ddbc351ff4556f577270753ed58.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 257, + 145, + 353, + 159 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 160, + 154, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 156, + 173 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 156, + 173 + ], + "score": 1.0, + "content": "In addition,", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 159, + 156, + 173 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 174, + 415, + 248 + ], + "lines": [ + { + "bbox": [ + 194, + 174, + 415, + 248 + ], + "spans": [ + { + "bbox": [ + 194, + 174, + 415, + 248 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\mathbf { V a r } ( \\hat { r } ) = \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } - ( \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ) ^ { 2 } \\leq \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } } } \\\\ & { } & { \\leq \\sum _ { j } \\hat { p } _ { j } \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } = \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "dbcd94cbd6d980c41eb02602c98c810a520e09018998f47a15c126ee3d0db243.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 194, + 174, + 415, + 188.8 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 194, + 188.8, + 415, + 203.60000000000002 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 194, + 203.60000000000002, + 415, + 218.40000000000003 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 194, + 218.40000000000003, + 415, + 233.20000000000005 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 194, + 233.20000000000005, + 415, + 248.00000000000006 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 281, + 246, + 294 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 247, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 247, + 295 + ], + "score": 1.0, + "content": "B EXPERIMENTAL SETUP", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 306, + 505, + 339 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "We set up our experiments within the popular OpenAI baselines (Dhariwal et al., 2017) and keras-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 506, + 330 + ], + "score": 1.0, + "content": "rl (Plappert, 2016) framework. Specifically, we integrate the algorithms and interact with OpenAI", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 328, + 323, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 328, + 323, + 340 + ], + "score": 1.0, + "content": "Gym (Brockman et al., 2016) environments (Table 3).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 306, + 506, + 340 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 352, + 208, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 351, + 209, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 209, + 365 + ], + "score": 1.0, + "content": "B.1 RL ALGORITHMS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 368, + 505 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 368, + 385 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 368, + 385 + ], + "score": 1.0, + "content": "A set of state-of-the-art reinforcement learning algorithms are ex-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 384, + 368, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 384, + 368, + 396 + ], + "score": 1.0, + "content": "perimented with while training under different amounts of noise,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 394, + 369, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 147, + 407 + ], + "score": 1.0, + "content": "including", + "type": "text" + }, + { + "bbox": [ + 147, + 395, + 156, + 406 + ], + "score": 0.85, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 394, + 369, + 407 + ], + "score": 1.0, + "content": "-Learning (Watkins, 1989; Watkins & Dayan, 1992),", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 404, + 369, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 369, + 419 + ], + "score": 1.0, + "content": "Cross-Entropy Method (CEM) (Szita & Lorincz, 2006), Deep ¨", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 416, + 369, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 262, + 429 + ], + "score": 1.0, + "content": "SARSA (Sutton & Barto, 1998), Deep", + "type": "text" + }, + { + "bbox": [ + 262, + 417, + 271, + 428 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 416, + 369, + 429 + ], + "score": 1.0, + "content": "-Network (DQN) (Mnih", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 427, + 369, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 369, + 439 + ], + "score": 1.0, + "content": "et al., 2013; 2015; van Hasselt et al., 2016), Dueling DQN", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 438, + 369, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 369, + 451 + ], + "score": 1.0, + "content": "(DDQN) (Wang et al., 2016), Deep Deterministic Policy Gradi-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 448, + 369, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 369, + 462 + ], + "score": 1.0, + "content": "ent (DDPG) (Lillicrap et al., 2015), Continuous DQN (NAF) (Gu", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 460, + 368, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 368, + 473 + ], + "score": 1.0, + "content": "et al., 2016) and Proximal Policy Optimization (PPO) (Schulman", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 471, + 367, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 367, + 483 + ], + "score": 1.0, + "content": "et al., 2017) algorithms. For each game and algorithm, three poli-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 482, + 369, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 369, + 494 + ], + "score": 1.0, + "content": "cies are trained based on different random initialization to de-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 494, + 248, + 505 + ], + "spans": [ + { + "bbox": [ + 106, + 494, + 248, + 505 + ], + "score": 1.0, + "content": "crease the variance in experiments.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 371, + 369, + 505 + ] + }, + { + "type": "table", + "bbox": [ + 377, + 402, + 503, + 501 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 376, + 376, + 505, + 398 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 375, + 376, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 375, + 376, + 505, + 388 + ], + "score": 1.0, + "content": "Table 3: RL algorithms utilized", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 375, + 386, + 490, + 399 + ], + "spans": [ + { + "bbox": [ + 375, + 386, + 490, + 399 + ], + "score": 1.0, + "content": "in the robustness evaluation.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "table_body", + "bbox": [ + 377, + 402, + 503, + 501 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 377, + 402, + 503, + 501 + ], + "spans": [ + { + "bbox": [ + 377, + 402, + 503, + 501 + ], + "score": 0.973, + "html": "
EnvironmentRL Algorithm
CartPoleQ-Learning (1989) CEM (2006) SARSA (1998) DQN (2013; 2015)
PendulumDDQN (2016) DDPG (2015)
Atari GamesNAF (2016) PPO (2017)
", + "type": "table", + "image_path": "6a03bbc190d32de2c1e7977462eccbba2abb0409cad69396df67cc0795dff3fa.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 377, + 402, + 503, + 451.5 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 377, + 451.5, + 503, + 501.0 + ], + "spans": [], + "index": 32 + } + ] + } + ], + "index": 30.5 + }, + { + "type": "title", + "bbox": [ + 108, + 517, + 258, + 529 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 260, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 260, + 530 + ], + "score": 1.0, + "content": "B.2 POST-PROCESSING REWARDS", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 538, + 504, + 571 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "We explore both symmetric and asymmetric noise of different noise levels. For symmetric noise,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 550, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 560 + ], + "score": 1.0, + "content": "the confusion matrices are symmetric, which means the probabilities of corruption for each reward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 561, + 327, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 327, + 572 + ], + "score": 1.0, + "content": "choice are equivalent. For instance, a confusion matrix", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 537, + 505, + 572 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 270, + 573, + 340, + 601 + ], + "lines": [ + { + "bbox": [ + 270, + 573, + 340, + 601 + ], + "spans": [ + { + "bbox": [ + 270, + 573, + 340, + 601 + ], + "score": 0.94, + "content": "\\mathbf { C } = \\left[ \\begin{array} { l l } { 0 . 8 } & { 0 . 2 } \\\\ { 0 . 2 } & { 0 . 8 } \\end{array} \\right]", + "type": "interline_equation", + "image_path": "9734c179eaaf47b185d101991b5e0625296060e841a0cf6b04bc636bad9787d4.jpg" + } + ] + } + ], + "index": 37.5, + "virtual_lines": [ + { + "bbox": [ + 270, + 573, + 340, + 587.0 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 270, + 587.0, + 340, + 601.0 + ], + "spans": [], + "index": 38 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 601, + 482, + 614 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 483, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 143, + 615 + ], + "score": 1.0, + "content": "says that", + "type": "text" + }, + { + "bbox": [ + 144, + 603, + 154, + 613 + ], + "score": 0.84, + "content": "r _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 601, + 250, + 615 + ], + "score": 1.0, + "content": "could be corrupted into", + "type": "text" + }, + { + "bbox": [ + 250, + 604, + 261, + 613 + ], + "score": 0.85, + "content": "r _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 601, + 409, + 615 + ], + "score": 1.0, + "content": "with a probability of 0.2 and so does", + "type": "text" + }, + { + "bbox": [ + 410, + 603, + 420, + 613 + ], + "score": 0.77, + "content": "r _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 602, + 477, + 613 + ], + "score": 0.25, + "content": "( \\mathrm { w e i g h t } = 0 . 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 601, + 483, + 615 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 601, + 483, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 618, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 631 + ], + "score": 1.0, + "content": "As for asymmetric noise, two types of random noise are tested: 1) rand-one, each reward level can", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 630, + 504, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 504, + 641 + ], + "score": 1.0, + "content": "only be perturbed into another reward; 2) rand-all, each reward could be perturbed to any other", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 639, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 104, + 639, + 505, + 654 + ], + "score": 1.0, + "content": "reward. To measure the amount of noise w.r.t confusion matrices, we define the weight of noise as", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 650, + 142, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 142, + 664 + ], + "score": 1.0, + "content": "follows:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 618, + 505, + 664 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 662, + 379, + 675 + ], + "lines": [ + { + "bbox": [ + 230, + 662, + 379, + 675 + ], + "spans": [ + { + "bbox": [ + 230, + 662, + 379, + 675 + ], + "score": 0.89, + "content": "\\mathbf { C } = ( 1 - \\omega ) \\cdot \\mathbf { I } + \\omega \\cdot \\mathbf { N } , \\omega \\in [ 0 , 1 ] ,", + "type": "interline_equation", + "image_path": "6c422ca4bb6b53063fb6c345cfb3396e571c15b9f1221833502d2111271749fe.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 230, + 662, + 379, + 675 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 675, + 502, + 697 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 133, + 689 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 677, + 142, + 685 + ], + "score": 0.76, + "content": "\\omega", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 673, + 264, + 689 + ], + "score": 1.0, + "content": "controls the weight of noise;", + "type": "text" + }, + { + "bbox": [ + 264, + 676, + 271, + 685 + ], + "score": 0.29, + "content": "\\mathbf { I }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 673, + 290, + 689 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 290, + 676, + 301, + 685 + ], + "score": 0.54, + "content": "\\mathbf { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 673, + 505, + 689 + ], + "score": 1.0, + "content": "denote the identity and noise matrix respectively.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 107, + 686, + 353, + 698 + ], + "spans": [ + { + "bbox": [ + 107, + 687, + 180, + 698 + ], + "score": 1.0, + "content": "Suppose there are", + "type": "text" + }, + { + "bbox": [ + 180, + 687, + 192, + 696 + ], + "score": 0.82, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 687, + 302, + 698 + ], + "score": 1.0, + "content": "outcomes for true rewards,", + "type": "text" + }, + { + "bbox": [ + 302, + 686, + 312, + 696 + ], + "score": 0.6, + "content": "\\mathbf { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 687, + 353, + 698 + ], + "score": 1.0, + "content": "writes as:", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 673, + 505, + 698 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 700, + 400, + 735 + ], + "lines": [ + { + "bbox": [ + 209, + 700, + 400, + 735 + ], + "spans": [ + { + "bbox": [ + 209, + 700, + 400, + 735 + ], + "score": 0.92, + "content": "\\mathbf { N } = \\left[ \\begin{array} { c c c c } { n _ { 0 , 0 } } & { n _ { 0 , 1 } } & { \\cdots } & { n _ { 0 , M - 1 } } \\\\ { \\cdots } & { \\ddots } & { \\ddots } & { \\ddots } \\\\ { n _ { M - 1 , 0 } } & { n _ { M - 1 , 1 } } & { \\ddots } & { n _ { M - 1 , M - 1 } } \\end{array} \\right] ,", + "type": "interline_equation", + "image_path": "73e1b162231308ace067c9bb45d53a639a734df6dd70e6b6fb273f9ce3f63cd8.jpg" + } + ] + } + ], + "index": 47.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 700, + 400, + 717.5 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 209, + 717.5, + 400, + 735.0 + ], + "spans": [], + "index": 48 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 186, + 95 + ], + "score": 1.0, + "content": "where for each row", + "type": "text" + }, + { + "bbox": [ + 186, + 83, + 201, + 93 + ], + "score": 0.5, + "content": "i , 1", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 81, + 318, + 95 + ], + "score": 1.0, + "content": ") rand-one: randomly choose", + "type": "text" + }, + { + "bbox": [ + 319, + 83, + 325, + 93 + ], + "score": 0.71, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 81, + 340, + 95 + ], + "score": 1.0, + "content": ", s.t", + "type": "text" + }, + { + "bbox": [ + 340, + 83, + 376, + 95 + ], + "score": 0.85, + "content": "n _ { i , j } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 81, + 394, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 83, + 431, + 95 + ], + "score": 0.92, + "content": "n _ { i , k } \\neq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 81, + 441, + 95 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 441, + 83, + 478, + 94 + ], + "score": 0.88, + "content": "k \\neq j ; 2 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 81, + 505, + 95 + ], + "score": 1.0, + "content": ") rand-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 158, + 108 + ], + "score": 1.0, + "content": "all: generate", + "type": "text" + }, + { + "bbox": [ + 159, + 94, + 171, + 104 + ], + "score": 0.72, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 93, + 315, + 108 + ], + "score": 1.0, + "content": "random numbers that sum to 1, i.e.,", + "type": "text" + }, + { + "bbox": [ + 315, + 94, + 367, + 108 + ], + "score": 0.88, + "content": "\\textstyle \\sum _ { j } n _ { i , j } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 93, + 505, + 108 + ], + "score": 1.0, + "content": ". For the simplicity, for symmetric", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 471, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 176, + 119 + ], + "score": 1.0, + "content": "noise, we choose", + "type": "text" + }, + { + "bbox": [ + 177, + 106, + 187, + 116 + ], + "score": 0.41, + "content": "\\mathbf { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 105, + 341, + 119 + ], + "score": 1.0, + "content": "as an anti-identity matrix. As a result,", + "type": "text" + }, + { + "bbox": [ + 342, + 106, + 374, + 118 + ], + "score": 0.9, + "content": "c _ { i , j } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 105, + 387, + 119 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 387, + 106, + 410, + 118 + ], + "score": 0.91, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 105, + 421, + 119 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 421, + 106, + 467, + 118 + ], + "score": 0.92, + "content": "i + j \\neq M", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 105, + 471, + 119 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "title", + "bbox": [ + 108, + 131, + 297, + 143 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 298, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 298, + 144 + ], + "score": 1.0, + "content": "B.3 PERTURBED-REWARD MDP EXAMPLE", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 506, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "To obtain an intuitive view of the reward perturbation model, where the observed rewards are gen-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "score": 1.0, + "content": "erated based on a reward confusion matrix, we constructed a simple MDP and evaluated the per-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 174, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 215, + 187 + ], + "score": 1.0, + "content": "formance of robust reward", + "type": "text" + }, + { + "bbox": [ + 215, + 175, + 224, + 186 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 174, + 506, + 187 + ], + "score": 1.0, + "content": "-Learning (Algorithm 1) on different noise ratios (both symmetric and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 185, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 198 + ], + "score": 1.0, + "content": "asymmetric). The finite MDP is formulated as Figure 4a: when the agent reaches state 5, it gets an", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 196, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 176, + 209 + ], + "score": 1.0, + "content": "instant reward of", + "type": "text" + }, + { + "bbox": [ + 176, + 197, + 206, + 208 + ], + "score": 0.92, + "content": "r _ { + } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 196, + 307, + 209 + ], + "score": 1.0, + "content": ", otherwise a zero reward", + "type": "text" + }, + { + "bbox": [ + 308, + 197, + 338, + 208 + ], + "score": 0.91, + "content": "r _ { - } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 196, + 506, + 209 + ], + "score": 1.0, + "content": ". During the explorations, the rewards are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 208, + 424, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 284, + 221 + ], + "score": 1.0, + "content": "perturbed according to the confusion matrix", + "type": "text" + }, + { + "bbox": [ + 285, + 208, + 420, + 219 + ], + "score": 0.9, + "content": "\\mathbf { C } _ { 2 \\times 2 } = [ 1 - e _ { - } , e _ { - } ; e _ { + } , 1 - e _ { + } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 208, + 424, + 221 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5 + }, + { + "type": "image", + "bbox": [ + 141, + 229, + 466, + 361 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 229, + 466, + 361 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 229, + 466, + 361 + ], + "spans": [ + { + "bbox": [ + 141, + 229, + 466, + 361 + ], + "score": 0.825, + "type": "image", + "image_path": "492e3ac77697ffbf044dc807fae9f7c5e0798dffd186faef0167aef911367691.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 141, + 229, + 466, + 273.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 141, + 273.0, + 466, + 317.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 141, + 317.0, + 466, + 361.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 218, + 370, + 394, + 382 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 216, + 369, + 394, + 383 + ], + "spans": [ + { + "bbox": [ + 216, + 369, + 394, + 383 + ], + "score": 1.0, + "content": "Figure 4: Perturbed-Reward MDP Example", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 393, + 408 + ], + "score": 1.0, + "content": "There are two experiments conducted in this setting: 1) performance of", + "type": "text" + }, + { + "bbox": [ + 394, + 396, + 403, + 407 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "-Learning under different", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "noise rates (Table 4); 2) robustness of estimation module in time-variant noise (Figure 4b). As shown", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 152, + 430 + ], + "score": 1.0, + "content": "in Table 4,", + "type": "text" + }, + { + "bbox": [ + 153, + 418, + 162, + 429 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "-Learning achieved better results consistently with the guidance of surrogate rewards", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "and the confusion matrix estimation algorithm. For time-variant noise, we generated varying amount", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 438, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 262, + 453 + ], + "score": 1.0, + "content": "of noise at different training stages: 1)", + "type": "text" + }, + { + "bbox": [ + 262, + 439, + 344, + 451 + ], + "score": 0.83, + "content": "e _ { - } = 0 . 1 , e _ { + } = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 438, + 366, + 453 + ], + "score": 1.0, + "content": "(0 to", + "type": "text" + }, + { + "bbox": [ + 366, + 439, + 381, + 450 + ], + "score": 0.89, + "content": "1 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 438, + 422, + 453 + ], + "score": 1.0, + "content": "steps); 2)", + "type": "text" + }, + { + "bbox": [ + 422, + 439, + 504, + 450 + ], + "score": 0.74, + "content": "e _ { - } = 0 . 2 , e _ { + } = 0 . 1", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 448, + 504, + 465 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 110, + 465 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 110, + 450, + 125, + 461 + ], + "score": 0.87, + "content": "1 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 448, + 137, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 138, + 450, + 153, + 461 + ], + "score": 0.88, + "content": "3 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 448, + 195, + 465 + ], + "score": 1.0, + "content": "steps); 3)", + "type": "text" + }, + { + "bbox": [ + 196, + 451, + 280, + 462 + ], + "score": 0.85, + "content": "e _ { - } = 0 . 3 , e _ { + } = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 448, + 285, + 465 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 285, + 450, + 300, + 461 + ], + "score": 0.85, + "content": "3 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 448, + 313, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 313, + 451, + 329, + 461 + ], + "score": 0.85, + "content": "5 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 448, + 371, + 465 + ], + "score": 1.0, + "content": "steps); 4)", + "type": "text" + }, + { + "bbox": [ + 371, + 451, + 456, + 462 + ], + "score": 0.88, + "content": "e _ { - } = 0 . 1 , e _ { + } = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 448, + 460, + 465 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 461, + 450, + 476, + 461 + ], + "score": 0.81, + "content": "5 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 448, + 488, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 488, + 450, + 504, + 461 + ], + "score": 0.82, + "content": "7 e ^ { 4 }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "steps). In Figure 4b, we show that Algorithm 1 is robust against time-variant noise, which dynam-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 220, + 486 + ], + "score": 1.0, + "content": "ically adjusts the estimated", + "type": "text" + }, + { + "bbox": [ + 220, + 472, + 231, + 484 + ], + "score": 0.8, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "after the noise distribution changes. Note that we set a maximum", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 485, + 480, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 480, + 497 + ], + "score": 1.0, + "content": "memory size for collected noisy rewards to let the agents only learn with recent observations.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "table", + "bbox": [ + 118, + 558, + 494, + 644 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 505, + 505, + 550 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 244, + 518 + ], + "score": 1.0, + "content": "Table 4: Average performance of", + "type": "text" + }, + { + "bbox": [ + 245, + 506, + 254, + 517 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "-Learning on Perturbed MDP example (Figure 4a) with noisy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 141, + 528 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 516, + 153, + 527 + ], + "score": 0.76, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 516, + 287, + 528 + ], + "score": 1.0, + "content": ", surrogate rewards under known", + "type": "text" + }, + { + "bbox": [ + 287, + 516, + 299, + 527 + ], + "score": 0.69, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 516, + 353, + 528 + ], + "score": 1.0, + "content": "or estimated", + "type": "text" + }, + { + "bbox": [ + 354, + 516, + 366, + 527 + ], + "score": 0.64, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "noise rates. Note that the success", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 455, + 540 + ], + "score": 1.0, + "content": "means the agents can find the optimal policy at every initial state according to learned", + "type": "text" + }, + { + "bbox": [ + 456, + 527, + 465, + 538 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "-function.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 538, + 487, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 487, + 551 + ], + "score": 1.0, + "content": "We repeated the experiments 1,000 times to calculate the successful rate for each noisy setting.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "table_body", + "bbox": [ + 118, + 558, + 494, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 558, + 494, + 644 + ], + "spans": [ + { + "bbox": [ + 118, + 558, + 494, + 644 + ], + "score": 0.984, + "html": "
Noise RateRewardLift (↑)SuccessNoise RateRewardLift (↑)Success
e_=e+=0.1r-93.4%e_ = 0.1,e+ = 0.3r 部189.5%
广2.7%个96.1%3.4% 个92.9%
r3.2% 个96.6%?2.9% 个92.4%
e_=e+ =0.3r185.5%e_ = 0.3,e+ = 0.1r ?190.3%
r1.4% 个86.9%0.9%个91.2%
?0.9% 个86.4%r1.2%个91.5%
", + "type": "table", + "image_path": "1234742a85a47bab32bb56e132a80d1642507b73c251651041c115b98cbd5d1c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 118, + 558, + 494, + 586.6666666666666 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 118, + 586.6666666666666, + 494, + 615.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 118, + 615.3333333333333, + 494, + 643.9999999999999 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 26.25 + }, + { + "type": "title", + "bbox": [ + 107, + 657, + 217, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 218, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 218, + 670 + ], + "score": 1.0, + "content": "B.4 TRAINING DETAILS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "CartPole and Pendulum The policies use the default network from keras-rl framework. which", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "is a five-layer fully connected network6. There are three hidden layers, each of which has 16 units", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "and followed by a rectified nonlinearity. The last output layer is activated by the linear function. For", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 721, + 367, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 719, + 368, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 719, + 368, + 734 + ], + "score": 1.0, + "content": "6https://github.com/keras-rl/keras-rl/examples", + "type": "text" + } + ] + } + ] + }, + { + "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, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 118 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 186, + 95 + ], + "score": 1.0, + "content": "where for each row", + "type": "text" + }, + { + "bbox": [ + 186, + 83, + 201, + 93 + ], + "score": 0.5, + "content": "i , 1", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 81, + 318, + 95 + ], + "score": 1.0, + "content": ") rand-one: randomly choose", + "type": "text" + }, + { + "bbox": [ + 319, + 83, + 325, + 93 + ], + "score": 0.71, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 81, + 340, + 95 + ], + "score": 1.0, + "content": ", s.t", + "type": "text" + }, + { + "bbox": [ + 340, + 83, + 376, + 95 + ], + "score": 0.85, + "content": "n _ { i , j } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 81, + 394, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 395, + 83, + 431, + 95 + ], + "score": 0.92, + "content": "n _ { i , k } \\neq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 81, + 441, + 95 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 441, + 83, + 478, + 94 + ], + "score": 0.88, + "content": "k \\neq j ; 2 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 81, + 505, + 95 + ], + "score": 1.0, + "content": ") rand-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 158, + 108 + ], + "score": 1.0, + "content": "all: generate", + "type": "text" + }, + { + "bbox": [ + 159, + 94, + 171, + 104 + ], + "score": 0.72, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 93, + 315, + 108 + ], + "score": 1.0, + "content": "random numbers that sum to 1, i.e.,", + "type": "text" + }, + { + "bbox": [ + 315, + 94, + 367, + 108 + ], + "score": 0.88, + "content": "\\textstyle \\sum _ { j } n _ { i , j } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 93, + 505, + 108 + ], + "score": 1.0, + "content": ". For the simplicity, for symmetric", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 471, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 176, + 119 + ], + "score": 1.0, + "content": "noise, we choose", + "type": "text" + }, + { + "bbox": [ + 177, + 106, + 187, + 116 + ], + "score": 0.41, + "content": "\\mathbf { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 105, + 341, + 119 + ], + "score": 1.0, + "content": "as an anti-identity matrix. As a result,", + "type": "text" + }, + { + "bbox": [ + 342, + 106, + 374, + 118 + ], + "score": 0.9, + "content": "c _ { i , j } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 105, + 387, + 119 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 387, + 106, + 410, + 118 + ], + "score": 0.91, + "content": "i \\neq j", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 105, + 421, + 119 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 421, + 106, + 467, + 118 + ], + "score": 0.92, + "content": "i + j \\neq M", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 105, + 471, + 119 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 119 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 131, + 297, + 143 + ], + "lines": [ + { + "bbox": [ + 106, + 131, + 298, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 298, + 144 + ], + "score": 1.0, + "content": "B.3 PERTURBED-REWARD MDP EXAMPLE", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 152, + 506, + 219 + ], + "lines": [ + { + "bbox": [ + 105, + 151, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 151, + 505, + 165 + ], + "score": 1.0, + "content": "To obtain an intuitive view of the reward perturbation model, where the observed rewards are gen-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 176 + ], + "score": 1.0, + "content": "erated based on a reward confusion matrix, we constructed a simple MDP and evaluated the per-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 174, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 215, + 187 + ], + "score": 1.0, + "content": "formance of robust reward", + "type": "text" + }, + { + "bbox": [ + 215, + 175, + 224, + 186 + ], + "score": 0.81, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 174, + 506, + 187 + ], + "score": 1.0, + "content": "-Learning (Algorithm 1) on different noise ratios (both symmetric and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 185, + 506, + 198 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 198 + ], + "score": 1.0, + "content": "asymmetric). The finite MDP is formulated as Figure 4a: when the agent reaches state 5, it gets an", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 196, + 506, + 209 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 176, + 209 + ], + "score": 1.0, + "content": "instant reward of", + "type": "text" + }, + { + "bbox": [ + 176, + 197, + 206, + 208 + ], + "score": 0.92, + "content": "r _ { + } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 196, + 307, + 209 + ], + "score": 1.0, + "content": ", otherwise a zero reward", + "type": "text" + }, + { + "bbox": [ + 308, + 197, + 338, + 208 + ], + "score": 0.91, + "content": "r _ { - } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 196, + 506, + 209 + ], + "score": 1.0, + "content": ". During the explorations, the rewards are", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 208, + 424, + 221 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 284, + 221 + ], + "score": 1.0, + "content": "perturbed according to the confusion matrix", + "type": "text" + }, + { + "bbox": [ + 285, + 208, + 420, + 219 + ], + "score": 0.9, + "content": "\\mathbf { C } _ { 2 \\times 2 } = [ 1 - e _ { - } , e _ { - } ; e _ { + } , 1 - e _ { + } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 208, + 424, + 221 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 151, + 506, + 221 + ] + }, + { + "type": "image", + "bbox": [ + 141, + 229, + 466, + 361 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 229, + 466, + 361 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 229, + 466, + 361 + ], + "spans": [ + { + "bbox": [ + 141, + 229, + 466, + 361 + ], + "score": 0.825, + "type": "image", + "image_path": "492e3ac77697ffbf044dc807fae9f7c5e0798dffd186faef0167aef911367691.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 141, + 229, + 466, + 273.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 141, + 273.0, + 466, + 317.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 141, + 317.0, + 466, + 361.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 218, + 370, + 394, + 382 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 216, + 369, + 394, + 383 + ], + "spans": [ + { + "bbox": [ + 216, + 369, + 394, + 383 + ], + "score": 1.0, + "content": "Figure 4: Perturbed-Reward MDP Example", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 395, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 393, + 408 + ], + "score": 1.0, + "content": "There are two experiments conducted in this setting: 1) performance of", + "type": "text" + }, + { + "bbox": [ + 394, + 396, + 403, + 407 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 395, + 506, + 408 + ], + "score": 1.0, + "content": "-Learning under different", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 419 + ], + "score": 1.0, + "content": "noise rates (Table 4); 2) robustness of estimation module in time-variant noise (Figure 4b). As shown", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 416, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 152, + 430 + ], + "score": 1.0, + "content": "in Table 4,", + "type": "text" + }, + { + "bbox": [ + 153, + 418, + 162, + 429 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 416, + 505, + 430 + ], + "score": 1.0, + "content": "-Learning achieved better results consistently with the guidance of surrogate rewards", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "and the confusion matrix estimation algorithm. For time-variant noise, we generated varying amount", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 438, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 104, + 438, + 262, + 453 + ], + "score": 1.0, + "content": "of noise at different training stages: 1)", + "type": "text" + }, + { + "bbox": [ + 262, + 439, + 344, + 451 + ], + "score": 0.83, + "content": "e _ { - } = 0 . 1 , e _ { + } = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 438, + 366, + 453 + ], + "score": 1.0, + "content": "(0 to", + "type": "text" + }, + { + "bbox": [ + 366, + 439, + 381, + 450 + ], + "score": 0.89, + "content": "1 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 438, + 422, + 453 + ], + "score": 1.0, + "content": "steps); 2)", + "type": "text" + }, + { + "bbox": [ + 422, + 439, + 504, + 450 + ], + "score": 0.74, + "content": "e _ { - } = 0 . 2 , e _ { + } = 0 . 1", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 448, + 504, + 465 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 110, + 465 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 110, + 450, + 125, + 461 + ], + "score": 0.87, + "content": "1 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 448, + 137, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 138, + 450, + 153, + 461 + ], + "score": 0.88, + "content": "3 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 448, + 195, + 465 + ], + "score": 1.0, + "content": "steps); 3)", + "type": "text" + }, + { + "bbox": [ + 196, + 451, + 280, + 462 + ], + "score": 0.85, + "content": "e _ { - } = 0 . 3 , e _ { + } = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 448, + 285, + 465 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 285, + 450, + 300, + 461 + ], + "score": 0.85, + "content": "3 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 448, + 313, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 313, + 451, + 329, + 461 + ], + "score": 0.85, + "content": "5 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 448, + 371, + 465 + ], + "score": 1.0, + "content": "steps); 4)", + "type": "text" + }, + { + "bbox": [ + 371, + 451, + 456, + 462 + ], + "score": 0.88, + "content": "e _ { - } = 0 . 1 , e _ { + } = 0 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 448, + 460, + 465 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 461, + 450, + 476, + 461 + ], + "score": 0.81, + "content": "5 e ^ { 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 476, + 448, + 488, + 465 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 488, + 450, + 504, + 461 + ], + "score": 0.82, + "content": "7 e ^ { 4 }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "steps). In Figure 4b, we show that Algorithm 1 is robust against time-variant noise, which dynam-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 472, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 220, + 486 + ], + "score": 1.0, + "content": "ically adjusts the estimated", + "type": "text" + }, + { + "bbox": [ + 220, + 472, + 231, + 484 + ], + "score": 0.8, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "after the noise distribution changes. Note that we set a maximum", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 485, + 480, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 480, + 497 + ], + "score": 1.0, + "content": "memory size for collected noisy rewards to let the agents only learn with recent observations.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 395, + 506, + 497 + ] + }, + { + "type": "table", + "bbox": [ + 118, + 558, + 494, + 644 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 505, + 505, + 550 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 505, + 505, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 244, + 518 + ], + "score": 1.0, + "content": "Table 4: Average performance of", + "type": "text" + }, + { + "bbox": [ + 245, + 506, + 254, + 517 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 505, + 505, + 518 + ], + "score": 1.0, + "content": "-Learning on Perturbed MDP example (Figure 4a) with noisy", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 516, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 141, + 528 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 516, + 153, + 527 + ], + "score": 0.76, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 516, + 287, + 528 + ], + "score": 1.0, + "content": ", surrogate rewards under known", + "type": "text" + }, + { + "bbox": [ + 287, + 516, + 299, + 527 + ], + "score": 0.69, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 516, + 353, + 528 + ], + "score": 1.0, + "content": "or estimated", + "type": "text" + }, + { + "bbox": [ + 354, + 516, + 366, + 527 + ], + "score": 0.64, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "noise rates. Note that the success", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 455, + 540 + ], + "score": 1.0, + "content": "means the agents can find the optimal policy at every initial state according to learned", + "type": "text" + }, + { + "bbox": [ + 456, + 527, + 465, + 538 + ], + "score": 0.83, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "-function.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 538, + 487, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 538, + 487, + 551 + ], + "score": 1.0, + "content": "We repeated the experiments 1,000 times to calculate the successful rate for each noisy setting.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24.5 + }, + { + "type": "table_body", + "bbox": [ + 118, + 558, + 494, + 644 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 558, + 494, + 644 + ], + "spans": [ + { + "bbox": [ + 118, + 558, + 494, + 644 + ], + "score": 0.984, + "html": "
Noise RateRewardLift (↑)SuccessNoise RateRewardLift (↑)Success
e_=e+=0.1r-93.4%e_ = 0.1,e+ = 0.3r 部189.5%
广2.7%个96.1%3.4% 个92.9%
r3.2% 个96.6%?2.9% 个92.4%
e_=e+ =0.3r185.5%e_ = 0.3,e+ = 0.1r ?190.3%
r1.4% 个86.9%0.9%个91.2%
?0.9% 个86.4%r1.2%个91.5%
", + "type": "table", + "image_path": "1234742a85a47bab32bb56e132a80d1642507b73c251651041c115b98cbd5d1c.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 118, + 558, + 494, + 586.6666666666666 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 118, + 586.6666666666666, + 494, + 615.3333333333333 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 118, + 615.3333333333333, + 494, + 643.9999999999999 + ], + "spans": [], + "index": 29 + } + ] + } + ], + "index": 26.25 + }, + { + "type": "title", + "bbox": [ + 107, + 657, + 217, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 218, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 218, + 670 + ], + "score": 1.0, + "content": "B.4 TRAINING DETAILS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 690 + ], + "score": 1.0, + "content": "CartPole and Pendulum The policies use the default network from keras-rl framework. which", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "is a five-layer fully connected network6. There are three hidden layers, each of which has 16 units", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "and followed by a rectified nonlinearity. The last output layer is activated by the linear function. For", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 678, + 505, + 712 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 437, + 95 + ], + "score": 1.0, + "content": "CartPole, We trained the models using Adam optimizer with the learning rate of", + "type": "text" + }, + { + "bbox": [ + 437, + 82, + 458, + 93 + ], + "score": 0.91, + "content": "1 e ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "for 10,000", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "steps. The exploration strategy is Boltzmann policy. For DQN and Dueling-DQN, the update rate of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 257, + 116 + ], + "score": 1.0, + "content": "target model and the memory size are", + "type": "text" + }, + { + "bbox": [ + 257, + 104, + 278, + 115 + ], + "score": 0.91, + "content": "1 e ^ { - 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 104, + 506, + 116 + ], + "score": 1.0, + "content": "and 50, 000. For Pendulum, We trained DDPG and NAF", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 302, + 129 + ], + "score": 1.0, + "content": "using Adam optimizer with the learning rate of", + "type": "text" + }, + { + "bbox": [ + 302, + 115, + 323, + 126 + ], + "score": 0.91, + "content": "5 e ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 114, + 340, + 129 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 340, + 115, + 376, + 127 + ], + "score": 0.32, + "content": "1 5 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "steps. the update rate of target", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 312, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 234, + 138 + ], + "score": 1.0, + "content": "model and the memory size are", + "type": "text" + }, + { + "bbox": [ + 234, + 126, + 255, + 137 + ], + "score": 0.9, + "content": "1 e ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 126, + 273, + 138 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 127, + 309, + 138 + ], + "score": 0.26, + "content": "1 0 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 126, + 312, + 138 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Atari Games We adopt the pre-processing steps as well as the network architecture from Mnih", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 315, + 177 + ], + "score": 1.0, + "content": "et al. (2015). Specifically, the input to the network is", + "type": "text" + }, + { + "bbox": [ + 316, + 165, + 361, + 176 + ], + "score": 0.91, + "content": "8 4 \\times 8 4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 165, + 506, + 177 + ], + "score": 1.0, + "content": ", which is a concatenation of the last", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 220, + 189 + ], + "score": 1.0, + "content": "4 frames and converted into", + "type": "text" + }, + { + "bbox": [ + 221, + 176, + 254, + 186 + ], + "score": 0.89, + "content": "8 4 \\times 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "gray-scale. The network comprises three convolutional layers", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 187, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 434, + 198 + ], + "score": 1.0, + "content": "and two fully connected layers7. The kernel size of three convolutional layer are", + "type": "text" + }, + { + "bbox": [ + 434, + 187, + 459, + 198 + ], + "score": 0.89, + "content": "8 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 187, + 505, + 198 + ], + "score": 1.0, + "content": "with stride", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 161, + 210 + ], + "score": 1.0, + "content": "4 (32 filters),", + "type": "text" + }, + { + "bbox": [ + 162, + 198, + 186, + 209 + ], + "score": 0.89, + "content": "4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 198, + 302, + 210 + ], + "score": 1.0, + "content": "with stride 2 (64 filters) and", + "type": "text" + }, + { + "bbox": [ + 303, + 198, + 327, + 209 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "with stride 1 (64 filters), respectively. Each", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "hidden layer is followed by a rectified nonlinearity. Except for Pong where we train the policies", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 121, + 233 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 219, + 137, + 230 + ], + "score": 0.88, + "content": "3 e ^ { 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 219, + 281, + 233 + ], + "score": 1.0, + "content": "steps, all the games are trained for", + "type": "text" + }, + { + "bbox": [ + 281, + 219, + 297, + 230 + ], + "score": 0.88, + "content": "5 e ^ { 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 219, + 422, + 233 + ], + "score": 1.0, + "content": "steps with the learning rate of", + "type": "text" + }, + { + "bbox": [ + 423, + 219, + 443, + 230 + ], + "score": 0.9, + "content": "3 e ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 219, + 506, + 233 + ], + "score": 1.0, + "content": ". Note that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 329, + 244 + ], + "score": 1.0, + "content": "rewards in the Atari games are discrete and clipped into", + "type": "text" + }, + { + "bbox": [ + 329, + 231, + 371, + 243 + ], + "score": 0.94, + "content": "\\{ - 1 , 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 231, + 505, + 244 + ], + "score": 1.0, + "content": ". Except for Pong game, in which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 139, + 253 + ], + "score": 0.91, + "content": "r = - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "means missing the ball hit by the adversary, the agents in other games attempt to get higher", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 308, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 308, + 264 + ], + "score": 1.0, + "content": "scores in the episode with binary rewards 0 and 1.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5 + }, + { + "type": "title", + "bbox": [ + 107, + 284, + 331, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 333, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 333, + 299 + ], + "score": 1.0, + "content": "C ESTIMATION OF CONFUSION MATRICES", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 311, + 286, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 288, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 288, + 325 + ], + "score": 1.0, + "content": "C.1 REWARD ROBUST RL ALGORITHMS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "As stated in Section 3.3, the confusion matrix can be estimated dynamically based on the aggregated", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "answers, similar to previous literature in supervised learning (Khetan et al., 2017). To get a concrete", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 354, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 104, + 354, + 164, + 370 + ], + "score": 1.0, + "content": "view, we take", + "type": "text" + }, + { + "bbox": [ + 165, + 357, + 173, + 367 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 354, + 455, + 370 + ], + "score": 1.0, + "content": "-Learning for an example, and the algorithm is called Reward Robust", + "type": "text" + }, + { + "bbox": [ + 455, + 357, + 464, + 367 + ], + "score": 0.73, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 354, + 505, + 370 + ], + "score": 1.0, + "content": "-Learning", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 381 + ], + "score": 1.0, + "content": "(Algorithm 3). Note that is can be extended to other RL algorithms by plugging confusion matrix", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 379, + 481, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 481, + 391 + ], + "score": 1.0, + "content": "estimation steps and the computed surrogate rewards, as shown in the experiments (Figure 6).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 395, + 273, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 275, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 224, + 409 + ], + "score": 1.0, + "content": "Algorithm 3 Reward Robust", + "type": "text" + }, + { + "bbox": [ + 225, + 395, + 234, + 406 + ], + "score": 0.51, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 393, + 275, + 409 + ], + "score": 1.0, + "content": "-Learning", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 411, + 135, + 421 + ], + "lines": [ + { + "bbox": [ + 107, + 411, + 135, + 421 + ], + "spans": [], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 123, + 421, + 391, + 489 + ], + "lines": [ + { + "bbox": [ + 124, + 420, + 365, + 435 + ], + "spans": [ + { + "bbox": [ + 124, + 421, + 212, + 434 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { M } } = ( S , \\mathcal { A } , \\tilde { \\mathcal { R } } , \\mathcal { P } , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 420, + 365, + 435 + ], + "score": 1.0, + "content": ": MDP with corrupted reward channel", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 124, + 432, + 279, + 444 + ], + "spans": [ + { + "bbox": [ + 124, + 434, + 132, + 443 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 432, + 212, + 444 + ], + "score": 1.0, + "content": ": transition function", + "type": "text" + }, + { + "bbox": [ + 213, + 433, + 279, + 444 + ], + "score": 0.89, + "content": "T : S \\times \\mathcal { A } S", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 124, + 444, + 317, + 456 + ], + "spans": [ + { + "bbox": [ + 124, + 444, + 154, + 454 + ], + "score": 0.88, + "content": "N \\in \\mathbb N", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 444, + 317, + 456 + ], + "score": 1.0, + "content": ": upper bound of collected noisy rewards", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 124, + 455, + 295, + 467 + ], + "spans": [ + { + "bbox": [ + 124, + 455, + 165, + 466 + ], + "score": 0.89, + "content": "\\alpha \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 455, + 295, + 467 + ], + "score": 1.0, + "content": ": learning rate in the update rule", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 124, + 465, + 317, + 478 + ], + "spans": [ + { + "bbox": [ + 124, + 466, + 164, + 478 + ], + "score": 0.87, + "content": "\\eta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 465, + 317, + 478 + ], + "score": 1.0, + "content": ": weight of unbiased surrogate reward", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 124, + 477, + 393, + 492 + ], + "spans": [ + { + "bbox": [ + 124, + 478, + 154, + 490 + ], + "score": 0.92, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 477, + 370, + 492 + ], + "score": 1.0, + "content": ": set of observed rewards when the state-action pair is", + "type": "text" + }, + { + "bbox": [ + 370, + 478, + 393, + 491 + ], + "score": 0.91, + "content": "( s , a )", + "type": "inline_equation" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 112, + 490, + 458, + 704 + ], + "lines": [ + { + "bbox": [ + 110, + 489, + 329, + 502 + ], + "spans": [ + { + "bbox": [ + 110, + 489, + 145, + 502 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 146, + 490, + 167, + 501 + ], + "score": 0.9, + "content": "Q ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 489, + 234, + 502 + ], + "score": 1.0, + "content": ": value function;", + "type": "text" + }, + { + "bbox": [ + 234, + 489, + 262, + 502 + ], + "score": 0.93, + "content": "\\pi ( s , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 489, + 329, + 502 + ], + "score": 1.0, + "content": ": policy function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 122, + 500, + 269, + 513 + ], + "spans": [ + { + "bbox": [ + 122, + 500, + 161, + 513 + ], + "score": 1.0, + "content": "Initialize", + "type": "text" + }, + { + "bbox": [ + 162, + 501, + 171, + 512 + ], + "score": 0.74, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 500, + 174, + 513 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 175, + 501, + 226, + 511 + ], + "score": 0.89, + "content": "S \\times \\mathcal { A } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 500, + 269, + 513 + ], + "score": 1.0, + "content": "arbitrarily", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 123, + 512, + 250, + 525 + ], + "spans": [ + { + "bbox": [ + 123, + 513, + 209, + 525 + ], + "score": 1.0, + "content": "Set confusion matrix", + "type": "text" + }, + { + "bbox": [ + 209, + 512, + 219, + 523 + ], + "score": 0.81, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 513, + 250, + 525 + ], + "score": 1.0, + "content": "as zero", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 123, + 524, + 240, + 536 + ], + "spans": [ + { + "bbox": [ + 123, + 524, + 148, + 536 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 149, + 524, + 158, + 535 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 524, + 240, + 536 + ], + "score": 1.0, + "content": "is not converged do", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 138, + 535, + 216, + 546 + ], + "spans": [ + { + "bbox": [ + 138, + 535, + 190, + 546 + ], + "score": 1.0, + "content": "Start in state", + "type": "text" + }, + { + "bbox": [ + 191, + 535, + 216, + 545 + ], + "score": 0.88, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 138, + 545, + 244, + 558 + ], + "spans": [ + { + "bbox": [ + 138, + 545, + 163, + 558 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 164, + 548, + 169, + 556 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 545, + 244, + 558 + ], + "score": 1.0, + "content": "is not terminal do", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 152, + 555, + 362, + 570 + ], + "spans": [ + { + "bbox": [ + 152, + 555, + 193, + 570 + ], + "score": 1.0, + "content": "Calculate", + "type": "text" + }, + { + "bbox": [ + 194, + 559, + 201, + 567 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 555, + 254, + 570 + ], + "score": 1.0, + "content": "according to", + "type": "text" + }, + { + "bbox": [ + 254, + 557, + 263, + 568 + ], + "score": 0.87, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 555, + 362, + 570 + ], + "score": 1.0, + "content": "and exploration strategy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 152, + 567, + 208, + 591 + ], + "spans": [ + { + "bbox": [ + 152, + 567, + 208, + 591 + ], + "score": 0.57, + "content": "\\begin{array} { l } { { a \\pi ( s ) } } \\\\ { { s ^ { \\prime } T ( s , a ) } } \\end{array}", + "type": "inline_equation", + "image_path": "fc71e8fe971afd63df04c5a6d9da4976c2f41fc3144ab69f495562b617d74e92.jpg" + } + ], + "index": 37 + }, + { + "bbox": [ + 153, + 590, + 355, + 604 + ], + "spans": [ + { + "bbox": [ + 153, + 590, + 243, + 604 + ], + "score": 1.0, + "content": "Observe noisy reward", + "type": "text" + }, + { + "bbox": [ + 243, + 591, + 271, + 603 + ], + "score": 0.92, + "content": "\\tilde { r } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 590, + 324, + 604 + ], + "score": 1.0, + "content": "and add it to", + "type": "text" + }, + { + "bbox": [ + 324, + 590, + 355, + 603 + ], + "score": 0.92, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 150, + 601, + 275, + 621 + ], + "spans": [ + { + "bbox": [ + 150, + 601, + 162, + 621 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 162, + 603, + 250, + 618 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { ( s , a ) } | \\tilde { R } ( s , a ) | \\geq N } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 601, + 275, + 621 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 168, + 617, + 455, + 632 + ], + "spans": [ + { + "bbox": [ + 168, + 618, + 272, + 632 + ], + "score": 1.0, + "content": "Get predicted true reward", + "type": "text" + }, + { + "bbox": [ + 272, + 619, + 300, + 631 + ], + "score": 0.92, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 618, + 424, + 632 + ], + "score": 1.0, + "content": "using majority voting in every", + "type": "text" + }, + { + "bbox": [ + 425, + 617, + 455, + 631 + ], + "score": 0.93, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 167, + 630, + 442, + 644 + ], + "spans": [ + { + "bbox": [ + 167, + 630, + 276, + 644 + ], + "score": 1.0, + "content": "Estimate confusion matrix", + "type": "text" + }, + { + "bbox": [ + 276, + 630, + 286, + 642 + ], + "score": 0.81, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 630, + 324, + 644 + ], + "score": 1.0, + "content": "based on", + "type": "text" + }, + { + "bbox": [ + 325, + 631, + 352, + 643 + ], + "score": 0.89, + "content": "\\tilde { r } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 630, + 370, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 371, + 631, + 398, + 644 + ], + "score": 0.92, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 630, + 442, + 644 + ], + "score": 1.0, + "content": "(Eqn. (4))", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 167, + 643, + 356, + 657 + ], + "spans": [ + { + "bbox": [ + 167, + 644, + 325, + 657 + ], + "score": 1.0, + "content": "Empty all the sets of observed rewards", + "type": "text" + }, + { + "bbox": [ + 325, + 643, + 356, + 656 + ], + "score": 0.91, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 151, + 655, + 450, + 671 + ], + "spans": [ + { + "bbox": [ + 151, + 655, + 252, + 671 + ], + "score": 1.0, + "content": "Obtain surrogate reward", + "type": "text" + }, + { + "bbox": [ + 252, + 657, + 280, + 669 + ], + "score": 0.9, + "content": "{ \\dot { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 655, + 305, + 671 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 306, + 657, + 450, + 669 + ], + "score": 0.78, + "content": "{ \\bf R } _ { p r o x y } = ( 1 - \\eta ) \\cdot { \\bf R } + \\eta \\cdot { \\bf C } ^ { - 1 } { \\bf R }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 153, + 668, + 421, + 681 + ], + "spans": [ + { + "bbox": [ + 153, + 669, + 418, + 681 + ], + "score": 0.76, + "content": "Q ( s ^ { \\prime } , a ) \\gets ( 1 - \\alpha ) \\cdot Q ( s , a ) + \\alpha \\cdot ( \\hat { r } ( s , a ) + \\gamma \\cdot \\operatorname* { m a x } _ { a ^ { \\prime } } Q ( s ^ { \\prime } , a ^ { \\prime } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 668, + 421, + 681 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 151, + 680, + 184, + 691 + ], + "spans": [ + { + "bbox": [ + 151, + 680, + 184, + 691 + ], + "score": 1.0, + "content": "s ← s 0", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 122, + 689, + 213, + 704 + ], + "spans": [ + { + "bbox": [ + 122, + 689, + 153, + 704 + ], + "score": 1.0, + "content": "return", + "type": "text" + }, + { + "bbox": [ + 153, + 691, + 175, + 703 + ], + "score": 0.78, + "content": "Q ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 689, + 192, + 704 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 193, + 690, + 213, + 703 + ], + "score": 0.74, + "content": "\\pi ( s )", + "type": "inline_equation" + } + ], + "index": 46 + } + ], + "index": 38 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 722, + 469, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 470, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 470, + 733 + ], + "score": 1.0, + "content": "7https://github.com/openai/baselines/tree/master/baselines/common", + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 137 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 437, + 95 + ], + "score": 1.0, + "content": "CartPole, We trained the models using Adam optimizer with the learning rate of", + "type": "text" + }, + { + "bbox": [ + 437, + 82, + 458, + 93 + ], + "score": 0.91, + "content": "1 e ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 81, + 506, + 95 + ], + "score": 1.0, + "content": "for 10,000", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "steps. The exploration strategy is Boltzmann policy. For DQN and Dueling-DQN, the update rate of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 116 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 257, + 116 + ], + "score": 1.0, + "content": "target model and the memory size are", + "type": "text" + }, + { + "bbox": [ + 257, + 104, + 278, + 115 + ], + "score": 0.91, + "content": "1 e ^ { - 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 104, + 506, + 116 + ], + "score": 1.0, + "content": "and 50, 000. For Pendulum, We trained DDPG and NAF", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 302, + 129 + ], + "score": 1.0, + "content": "using Adam optimizer with the learning rate of", + "type": "text" + }, + { + "bbox": [ + 302, + 115, + 323, + 126 + ], + "score": 0.91, + "content": "5 e ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 114, + 340, + 129 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 340, + 115, + 376, + 127 + ], + "score": 0.32, + "content": "1 5 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 114, + 506, + 129 + ], + "score": 1.0, + "content": "steps. the update rate of target", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 312, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 234, + 138 + ], + "score": 1.0, + "content": "model and the memory size are", + "type": "text" + }, + { + "bbox": [ + 234, + 126, + 255, + 137 + ], + "score": 0.9, + "content": "1 e ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 126, + 273, + 138 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 127, + 309, + 138 + ], + "score": 0.26, + "content": "1 0 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 126, + 312, + 138 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 81, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 264 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "Atari Games We adopt the pre-processing steps as well as the network architecture from Mnih", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 315, + 177 + ], + "score": 1.0, + "content": "et al. (2015). Specifically, the input to the network is", + "type": "text" + }, + { + "bbox": [ + 316, + 165, + 361, + 176 + ], + "score": 0.91, + "content": "8 4 \\times 8 4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 165, + 506, + 177 + ], + "score": 1.0, + "content": ", which is a concatenation of the last", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 104, + 175, + 220, + 189 + ], + "score": 1.0, + "content": "4 frames and converted into", + "type": "text" + }, + { + "bbox": [ + 221, + 176, + 254, + 186 + ], + "score": 0.89, + "content": "8 4 \\times 8 4", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "gray-scale. The network comprises three convolutional layers", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 187, + 505, + 198 + ], + "spans": [ + { + "bbox": [ + 106, + 187, + 434, + 198 + ], + "score": 1.0, + "content": "and two fully connected layers7. The kernel size of three convolutional layer are", + "type": "text" + }, + { + "bbox": [ + 434, + 187, + 459, + 198 + ], + "score": 0.89, + "content": "8 \\times 8", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 187, + 505, + 198 + ], + "score": 1.0, + "content": "with stride", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 161, + 210 + ], + "score": 1.0, + "content": "4 (32 filters),", + "type": "text" + }, + { + "bbox": [ + 162, + 198, + 186, + 209 + ], + "score": 0.89, + "content": "4 \\times 4", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 198, + 302, + 210 + ], + "score": 1.0, + "content": "with stride 2 (64 filters) and", + "type": "text" + }, + { + "bbox": [ + 303, + 198, + 327, + 209 + ], + "score": 0.89, + "content": "3 \\times 3", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "with stride 1 (64 filters), respectively. Each", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 505, + 222 + ], + "score": 1.0, + "content": "hidden layer is followed by a rectified nonlinearity. Except for Pong where we train the policies", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 121, + 233 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 219, + 137, + 230 + ], + "score": 0.88, + "content": "3 e ^ { 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 219, + 281, + 233 + ], + "score": 1.0, + "content": "steps, all the games are trained for", + "type": "text" + }, + { + "bbox": [ + 281, + 219, + 297, + 230 + ], + "score": 0.88, + "content": "5 e ^ { 7 }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 219, + 422, + 233 + ], + "score": 1.0, + "content": "steps with the learning rate of", + "type": "text" + }, + { + "bbox": [ + 423, + 219, + 443, + 230 + ], + "score": 0.9, + "content": "3 e ^ { - 4 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 219, + 506, + 233 + ], + "score": 1.0, + "content": ". Note that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 329, + 244 + ], + "score": 1.0, + "content": "rewards in the Atari games are discrete and clipped into", + "type": "text" + }, + { + "bbox": [ + 329, + 231, + 371, + 243 + ], + "score": 0.94, + "content": "\\{ - 1 , 0 , 1 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 231, + 505, + 244 + ], + "score": 1.0, + "content": ". Except for Pong game, in which", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 139, + 253 + ], + "score": 0.91, + "content": "r = - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "means missing the ball hit by the adversary, the agents in other games attempt to get higher", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 253, + 308, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 308, + 264 + ], + "score": 1.0, + "content": "scores in the episode with binary rewards 0 and 1.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9.5, + "bbox_fs": [ + 104, + 154, + 506, + 264 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 284, + 331, + 297 + ], + "lines": [ + { + "bbox": [ + 106, + 283, + 333, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 333, + 299 + ], + "score": 1.0, + "content": "C ESTIMATION OF CONFUSION MATRICES", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "title", + "bbox": [ + 108, + 311, + 286, + 323 + ], + "lines": [ + { + "bbox": [ + 106, + 311, + 288, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 288, + 325 + ], + "score": 1.0, + "content": "C.1 REWARD ROBUST RL ALGORITHMS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "As stated in Section 3.3, the confusion matrix can be estimated dynamically based on the aggregated", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "answers, similar to previous literature in supervised learning (Khetan et al., 2017). To get a concrete", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 354, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 104, + 354, + 164, + 370 + ], + "score": 1.0, + "content": "view, we take", + "type": "text" + }, + { + "bbox": [ + 165, + 357, + 173, + 367 + ], + "score": 0.84, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 354, + 455, + 370 + ], + "score": 1.0, + "content": "-Learning for an example, and the algorithm is called Reward Robust", + "type": "text" + }, + { + "bbox": [ + 455, + 357, + 464, + 367 + ], + "score": 0.73, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 354, + 505, + 370 + ], + "score": 1.0, + "content": "-Learning", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 366, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 381 + ], + "score": 1.0, + "content": "(Algorithm 3). Note that is can be extended to other RL algorithms by plugging confusion matrix", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 379, + 481, + 391 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 481, + 391 + ], + "score": 1.0, + "content": "estimation steps and the computed surrogate rewards, as shown in the experiments (Figure 6).", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 334, + 505, + 391 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 395, + 273, + 406 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 275, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 224, + 409 + ], + "score": 1.0, + "content": "Algorithm 3 Reward Robust", + "type": "text" + }, + { + "bbox": [ + 225, + 395, + 234, + 406 + ], + "score": 0.51, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 393, + 275, + 409 + ], + "score": 1.0, + "content": "-Learning", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 411, + 135, + 421 + ], + "lines": [ + { + "bbox": [ + 107, + 411, + 135, + 421 + ], + "spans": [], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "list", + "bbox": [ + 123, + 421, + 391, + 489 + ], + "lines": [ + { + "bbox": [ + 124, + 420, + 365, + 435 + ], + "spans": [ + { + "bbox": [ + 124, + 421, + 212, + 434 + ], + "score": 0.92, + "content": "\\tilde { \\mathcal { M } } = ( S , \\mathcal { A } , \\tilde { \\mathcal { R } } , \\mathcal { P } , \\gamma )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 420, + 365, + 435 + ], + "score": 1.0, + "content": ": MDP with corrupted reward channel", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 432, + 279, + 444 + ], + "spans": [ + { + "bbox": [ + 124, + 434, + 132, + 443 + ], + "score": 0.75, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 432, + 212, + 444 + ], + "score": 1.0, + "content": ": transition function", + "type": "text" + }, + { + "bbox": [ + 213, + 433, + 279, + 444 + ], + "score": 0.89, + "content": "T : S \\times \\mathcal { A } S", + "type": "inline_equation" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 444, + 317, + 456 + ], + "spans": [ + { + "bbox": [ + 124, + 444, + 154, + 454 + ], + "score": 0.88, + "content": "N \\in \\mathbb N", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 444, + 317, + 456 + ], + "score": 1.0, + "content": ": upper bound of collected noisy rewards", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 455, + 295, + 467 + ], + "spans": [ + { + "bbox": [ + 124, + 455, + 165, + 466 + ], + "score": 0.89, + "content": "\\alpha \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 455, + 295, + 467 + ], + "score": 1.0, + "content": ": learning rate in the update rule", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 465, + 317, + 478 + ], + "spans": [ + { + "bbox": [ + 124, + 466, + 164, + 478 + ], + "score": 0.87, + "content": "\\eta \\in ( 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 465, + 317, + 478 + ], + "score": 1.0, + "content": ": weight of unbiased surrogate reward", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 477, + 393, + 492 + ], + "spans": [ + { + "bbox": [ + 124, + 478, + 154, + 490 + ], + "score": 0.92, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 477, + 370, + 492 + ], + "score": 1.0, + "content": ": set of observed rewards when the state-action pair is", + "type": "text" + }, + { + "bbox": [ + 370, + 478, + 393, + 491 + ], + "score": 0.91, + "content": "( s , a )", + "type": "inline_equation" + } + ], + "index": 29, + "is_list_start_line": true + } + ], + "index": 26.5, + "bbox_fs": [ + 124, + 420, + 393, + 492 + ] + }, + { + "type": "text", + "bbox": [ + 112, + 490, + 458, + 704 + ], + "lines": [ + { + "bbox": [ + 110, + 489, + 329, + 502 + ], + "spans": [ + { + "bbox": [ + 110, + 489, + 145, + 502 + ], + "score": 1.0, + "content": "Output:", + "type": "text" + }, + { + "bbox": [ + 146, + 490, + 167, + 501 + ], + "score": 0.9, + "content": "Q ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 489, + 234, + 502 + ], + "score": 1.0, + "content": ": value function;", + "type": "text" + }, + { + "bbox": [ + 234, + 489, + 262, + 502 + ], + "score": 0.93, + "content": "\\pi ( s , t )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 489, + 329, + 502 + ], + "score": 1.0, + "content": ": policy function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 122, + 500, + 269, + 513 + ], + "spans": [ + { + "bbox": [ + 122, + 500, + 161, + 513 + ], + "score": 1.0, + "content": "Initialize", + "type": "text" + }, + { + "bbox": [ + 162, + 501, + 171, + 512 + ], + "score": 0.74, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 500, + 174, + 513 + ], + "score": 1.0, + "content": ":", + "type": "text" + }, + { + "bbox": [ + 175, + 501, + 226, + 511 + ], + "score": 0.89, + "content": "S \\times \\mathcal { A } \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 500, + 269, + 513 + ], + "score": 1.0, + "content": "arbitrarily", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 123, + 512, + 250, + 525 + ], + "spans": [ + { + "bbox": [ + 123, + 513, + 209, + 525 + ], + "score": 1.0, + "content": "Set confusion matrix", + "type": "text" + }, + { + "bbox": [ + 209, + 512, + 219, + 523 + ], + "score": 0.81, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 513, + 250, + 525 + ], + "score": 1.0, + "content": "as zero", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 123, + 524, + 240, + 536 + ], + "spans": [ + { + "bbox": [ + 123, + 524, + 148, + 536 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 149, + 524, + 158, + 535 + ], + "score": 0.86, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 524, + 240, + 536 + ], + "score": 1.0, + "content": "is not converged do", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 138, + 535, + 216, + 546 + ], + "spans": [ + { + "bbox": [ + 138, + 535, + 190, + 546 + ], + "score": 1.0, + "content": "Start in state", + "type": "text" + }, + { + "bbox": [ + 191, + 535, + 216, + 545 + ], + "score": 0.88, + "content": "s \\in S", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 138, + 545, + 244, + 558 + ], + "spans": [ + { + "bbox": [ + 138, + 545, + 163, + 558 + ], + "score": 1.0, + "content": "while", + "type": "text" + }, + { + "bbox": [ + 164, + 548, + 169, + 556 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 545, + 244, + 558 + ], + "score": 1.0, + "content": "is not terminal do", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 152, + 555, + 362, + 570 + ], + "spans": [ + { + "bbox": [ + 152, + 555, + 193, + 570 + ], + "score": 1.0, + "content": "Calculate", + "type": "text" + }, + { + "bbox": [ + 194, + 559, + 201, + 567 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 555, + 254, + 570 + ], + "score": 1.0, + "content": "according to", + "type": "text" + }, + { + "bbox": [ + 254, + 557, + 263, + 568 + ], + "score": 0.87, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 555, + 362, + 570 + ], + "score": 1.0, + "content": "and exploration strategy", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 152, + 567, + 208, + 591 + ], + "spans": [ + { + "bbox": [ + 152, + 567, + 208, + 591 + ], + "score": 0.57, + "content": "\\begin{array} { l } { { a \\pi ( s ) } } \\\\ { { s ^ { \\prime } T ( s , a ) } } \\end{array}", + "type": "inline_equation", + "image_path": "fc71e8fe971afd63df04c5a6d9da4976c2f41fc3144ab69f495562b617d74e92.jpg" + } + ], + "index": 37 + }, + { + "bbox": [ + 153, + 590, + 355, + 604 + ], + "spans": [ + { + "bbox": [ + 153, + 590, + 243, + 604 + ], + "score": 1.0, + "content": "Observe noisy reward", + "type": "text" + }, + { + "bbox": [ + 243, + 591, + 271, + 603 + ], + "score": 0.92, + "content": "\\tilde { r } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 590, + 324, + 604 + ], + "score": 1.0, + "content": "and add it to", + "type": "text" + }, + { + "bbox": [ + 324, + 590, + 355, + 603 + ], + "score": 0.92, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 150, + 601, + 275, + 621 + ], + "spans": [ + { + "bbox": [ + 150, + 601, + 162, + 621 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 162, + 603, + 250, + 618 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\sum _ { ( s , a ) } | \\tilde { R } ( s , a ) | \\geq N } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 601, + 275, + 621 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 168, + 617, + 455, + 632 + ], + "spans": [ + { + "bbox": [ + 168, + 618, + 272, + 632 + ], + "score": 1.0, + "content": "Get predicted true reward", + "type": "text" + }, + { + "bbox": [ + 272, + 619, + 300, + 631 + ], + "score": 0.92, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 618, + 424, + 632 + ], + "score": 1.0, + "content": "using majority voting in every", + "type": "text" + }, + { + "bbox": [ + 425, + 617, + 455, + 631 + ], + "score": 0.93, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 167, + 630, + 442, + 644 + ], + "spans": [ + { + "bbox": [ + 167, + 630, + 276, + 644 + ], + "score": 1.0, + "content": "Estimate confusion matrix", + "type": "text" + }, + { + "bbox": [ + 276, + 630, + 286, + 642 + ], + "score": 0.81, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 630, + 324, + 644 + ], + "score": 1.0, + "content": "based on", + "type": "text" + }, + { + "bbox": [ + 325, + 631, + 352, + 643 + ], + "score": 0.89, + "content": "\\tilde { r } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 630, + 370, + 644 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 371, + 631, + 398, + 644 + ], + "score": 0.92, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 630, + 442, + 644 + ], + "score": 1.0, + "content": "(Eqn. (4))", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 167, + 643, + 356, + 657 + ], + "spans": [ + { + "bbox": [ + 167, + 644, + 325, + 657 + ], + "score": 1.0, + "content": "Empty all the sets of observed rewards", + "type": "text" + }, + { + "bbox": [ + 325, + 643, + 356, + 656 + ], + "score": 0.91, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 151, + 655, + 450, + 671 + ], + "spans": [ + { + "bbox": [ + 151, + 655, + 252, + 671 + ], + "score": 1.0, + "content": "Obtain surrogate reward", + "type": "text" + }, + { + "bbox": [ + 252, + 657, + 280, + 669 + ], + "score": 0.9, + "content": "{ \\dot { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 655, + 305, + 671 + ], + "score": 1.0, + "content": "using", + "type": "text" + }, + { + "bbox": [ + 306, + 657, + 450, + 669 + ], + "score": 0.78, + "content": "{ \\bf R } _ { p r o x y } = ( 1 - \\eta ) \\cdot { \\bf R } + \\eta \\cdot { \\bf C } ^ { - 1 } { \\bf R }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 153, + 668, + 421, + 681 + ], + "spans": [ + { + "bbox": [ + 153, + 669, + 418, + 681 + ], + "score": 0.76, + "content": "Q ( s ^ { \\prime } , a ) \\gets ( 1 - \\alpha ) \\cdot Q ( s , a ) + \\alpha \\cdot ( \\hat { r } ( s , a ) + \\gamma \\cdot \\operatorname* { m a x } _ { a ^ { \\prime } } Q ( s ^ { \\prime } , a ^ { \\prime } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 668, + 421, + 681 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 151, + 680, + 184, + 691 + ], + "spans": [ + { + "bbox": [ + 151, + 680, + 184, + 691 + ], + "score": 1.0, + "content": "s ← s 0", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 122, + 689, + 213, + 704 + ], + "spans": [ + { + "bbox": [ + 122, + 689, + 153, + 704 + ], + "score": 1.0, + "content": "return", + "type": "text" + }, + { + "bbox": [ + 153, + 691, + 175, + 703 + ], + "score": 0.78, + "content": "Q ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 689, + 192, + 704 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 193, + 690, + 213, + 703 + ], + "score": 0.74, + "content": "\\pi ( s )", + "type": "inline_equation" + } + ], + "index": 46 + } + ], + "index": 38, + "bbox_fs": [ + 110, + 489, + 455, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 334, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 334, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 334, + 95 + ], + "score": 1.0, + "content": "C.2 EXPECTATION-MAXIMIZATION IN ESTIMATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 274, + 117 + ], + "score": 1.0, + "content": "In Algorithm 3, the predicted true reward", + "type": "text" + }, + { + "bbox": [ + 275, + 103, + 302, + 115 + ], + "score": 0.93, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "is derived from majority voting in collected noisy", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 125, + 129 + ], + "score": 1.0, + "content": "sets", + "type": "text" + }, + { + "bbox": [ + 125, + 114, + 156, + 128 + ], + "score": 0.94, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 116, + 269, + 129 + ], + "score": 1.0, + "content": "for every state-action pair", + "type": "text" + }, + { + "bbox": [ + 270, + 116, + 338, + 128 + ], + "score": 0.91, + "content": "( s , a ) \\in \\mathcal { S } \\times \\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 116, + 506, + 129 + ], + "score": 1.0, + "content": ", which is a simple but efficient way of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "leveraging the expectation of aggregated rewards without assumptions on prior distribution of noise.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 504, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 504, + 150 + ], + "score": 1.0, + "content": "In the following, we adopt standard Expectation-Maximization (EM) idea in the our estimation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 479, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 479, + 162 + ], + "score": 1.0, + "content": "framework (arguably a simple version of it), inspired by previous works (Zhang et al., 2014).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 502, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 504, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 504, + 179 + ], + "score": 1.0, + "content": "Assuming the observed noisy rewards are independent conditional on the true reward, we can com-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 388, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 388, + 190 + ], + "score": 1.0, + "content": "pute the posterior probability of true reward from the Bayes’ theorem:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 194, + 507, + 256 + ], + "lines": [ + { + "bbox": [ + 111, + 194, + 507, + 256 + ], + "spans": [ + { + "bbox": [ + 111, + 194, + 507, + 256 + ], + "score": 0.93, + "content": "{ \\begin{array} { r l } { ^ { \\mathfrak { p } } ( r = R _ { i } | { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } ) = } & { { \\frac { \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { i } ) \\cdot \\mathbb { P } ( r = R _ { i } ) } { \\sum _ { j } \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { j } ) \\cdot \\mathbb { P } ( r = R _ { j } ) } } } \\\\ & { = { \\frac { \\mathbb { P } ( r = R _ { i } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { i } ) } { \\sum _ { j } \\left[ \\mathbb { P } ( r = R _ { j } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { j } ) \\right] } } \\qquad ( 8 ) } \\end{array} }", + "type": "interline_equation", + "image_path": "41c26828c9be187c15b157f7f019fb0cf35c70332e85bde3b30f11bff9c73284.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 194, + 507, + 214.66666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 214.66666666666666, + 507, + 235.33333333333331 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 235.33333333333331, + 507, + 255.99999999999997 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 134, + 273 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 260, + 182, + 273 + ], + "score": 0.9, + "content": "\\mathbb { P } ( r = R _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 259, + 320, + 273 + ], + "score": 1.0, + "content": "is the prior of true rewards, and", + "type": "text" + }, + { + "bbox": [ + 321, + 260, + 405, + 272 + ], + "score": 0.91, + "content": "\\mathbb { P } ( \\tilde { r } = R _ { k } | r = R _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 259, + 505, + 273 + ], + "score": 1.0, + "content": "is estimated by current", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 218, + 286 + ], + "score": 1.0, + "content": "estimated confusion matrix", + "type": "text" + }, + { + "bbox": [ + 219, + 272, + 228, + 284 + ], + "score": 0.6, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 272, + 342, + 285 + ], + "score": 0.88, + "content": "\\vdots \\Psi ( \\tilde { r } = R _ { k } | r = R _ { j } ) = \\tilde { c } _ { j , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 271, + 505, + 286 + ], + "score": 1.0, + "content": ". Note that the inference should be con-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 237, + 297 + ], + "score": 1.0, + "content": "ducted for each state-action pair", + "type": "text" + }, + { + "bbox": [ + 238, + 285, + 300, + 296 + ], + "score": 0.89, + "content": "( s , a ) \\in \\mathcal S \\times \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 283, + 391, + 297 + ], + "score": 1.0, + "content": "in every iteration, i.e.,", + "type": "text" + }, + { + "bbox": [ + 392, + 284, + 506, + 296 + ], + "score": 0.91, + "content": "\\mathbb { P } ( r ( s , a ) = R _ { i } | \\tilde { r } ( s , a , 1 ) =", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 295, + 504, + 308 + ], + "spans": [ + { + "bbox": [ + 107, + 295, + 211, + 307 + ], + "score": 0.89, + "content": "R _ { 1 } , \\cdot \\cdot \\cdot , \\tilde { r } ( s , a , n ) = R _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 295, + 277, + 308 + ], + "score": 1.0, + "content": ", abbreviated as", + "type": "text" + }, + { + "bbox": [ + 277, + 295, + 343, + 307 + ], + "score": 0.9, + "content": "\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 295, + 504, + 308 + ], + "score": 1.0, + "content": "), which requires relatively greater com-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "putation costs compared to the majority voting policy. It also points out an interesting direction to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 317, + 347, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 294, + 330 + ], + "score": 1.0, + "content": "check online EM algorithms for our perturbed-", + "type": "text" + }, + { + "bbox": [ + 295, + 318, + 308, + 327 + ], + "score": 0.55, + "content": ". R L", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 317, + 347, + 330 + ], + "score": 1.0, + "content": "problem.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 340, + 348 + ], + "score": 1.0, + "content": "After the inference steps in Eqn. (8), the confusion matrix", + "type": "text" + }, + { + "bbox": [ + 340, + 333, + 350, + 345 + ], + "score": 0.84, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 333, + 506, + 348 + ], + "score": 1.0, + "content": "is then updated based on the posterior", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 162, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 162, + 359 + ], + "score": 1.0, + "content": "probabilities:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 363, + 434, + 396 + ], + "lines": [ + { + "bbox": [ + 176, + 363, + 434, + 396 + ], + "spans": [ + { + "bbox": [ + 176, + 363, + 434, + 396 + ], + "score": 0.94, + "content": "\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ,", + "type": "interline_equation", + "image_path": "a64137fc7ff684373b60659f3ef6f180a292855ed4887ed713f8e61787b3dd7b.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 176, + 363, + 434, + 374.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 176, + 374.0, + 434, + 385.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 176, + 385.0, + 434, + 396.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 133, + 415 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 402, + 197, + 414 + ], + "score": 0.9, + "content": "\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 401, + 505, + 415 + ], + "score": 1.0, + "content": ") denotes the inference probabilities of true rewards based on collected noisy", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 158, + 427 + ], + "score": 1.0, + "content": "rewards sets", + "type": "text" + }, + { + "bbox": [ + 158, + 414, + 189, + 426 + ], + "score": 0.91, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 414, + 505, + 427 + ], + "score": 1.0, + "content": ". To utilize EM algorithms in the robust reward algorithms (e.g., Algorithm 3),", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 425, + 453, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 453, + 437 + ], + "score": 1.0, + "content": "we need to replace Eqn. (4) by Eqn. (9) for the estimation of reward confusion matrix.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 106, + 451, + 312, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 312, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 312, + 464 + ], + "score": 1.0, + "content": "C.3 STATE-DEPENDENT PERTURBED REWARD", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "In previous sections, to let our presentation stay focused, we consider the state-independent per-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "turbed reward environments, which share the same confusion matrix for all states. In other words,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "the noise for different states is generated within the same distribution. More generally, the gener-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 141, + 520 + ], + "score": 1.0, + "content": "ation of", + "type": "text" + }, + { + "bbox": [ + 141, + 507, + 147, + 517 + ], + "score": 0.77, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 506, + 257, + 520 + ], + "score": 1.0, + "content": "follows a certain function", + "type": "text" + }, + { + "bbox": [ + 257, + 505, + 332, + 518 + ], + "score": 0.93, + "content": "C : S \\times \\mathcal { R } \\to \\tilde { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 506, + 505, + 520 + ], + "score": 1.0, + "content": ", where different states may correspond to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "varied noise distributions (also varied confusion matrices). However, our algorithm is still applica-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 327, + 541 + ], + "score": 1.0, + "content": "ble except for maintaining different confusion matrices", + "type": "text" + }, + { + "bbox": [ + 327, + 529, + 341, + 540 + ], + "score": 0.89, + "content": "\\mathbf { C } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "for different states. It is worthy to notice", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "that Theorem 1 holds because the surrogate rewards produce an unbiased estimation of true rewards", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 183, + 564 + ], + "score": 1.0, + "content": "for each state, i.e.,", + "type": "text" + }, + { + "bbox": [ + 183, + 550, + 344, + 563 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { { \\tilde { r } } | r , s _ { t } } [ { \\hat { r } } ( s _ { t } , a _ { t } , s _ { t + 1 } { \\bar { ) } } ] = r ( s _ { t } , a _ { t } , s _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 550, + 506, + 564 + ], + "score": 1.0, + "content": ". Furthermore, Theorem 2 and 3 can be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 562, + 151, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 151, + 573 + ], + "score": 1.0, + "content": "revised as:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 238, + 590 + ], + "score": 1.0, + "content": "Theorem 4. (Upper bound) Let", + "type": "text" + }, + { + "bbox": [ + 239, + 577, + 295, + 589 + ], + "score": 0.91, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 576, + 378, + 590 + ], + "score": 1.0, + "content": "be bounded reward,", + "type": "text" + }, + { + "bbox": [ + 379, + 577, + 392, + 588 + ], + "score": 0.87, + "content": "\\mathbf { C } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "be invertible reward confu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 183, + 601 + ], + "score": 1.0, + "content": "sion matrices with", + "type": "text" + }, + { + "bbox": [ + 183, + 588, + 218, + 600 + ], + "score": 0.87, + "content": "\\operatorname* { d e t } ( \\mathbf { C } _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 588, + 444, + 601 + ], + "score": 1.0, + "content": "denoting its determinant. For an appropriate choice of", + "type": "text" + }, + { + "bbox": [ + 444, + 590, + 453, + 598 + ], + "score": 0.54, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 588, + 506, + 601 + ], + "score": 1.0, + "content": ", the Phased", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 599, + 334, + 613 + ], + "spans": [ + { + "bbox": [ + 107, + 601, + 115, + 613 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 601, + 306, + 613 + ], + "score": 1.0, + "content": "-Learning algorithm calls the generative model", + "type": "text" + }, + { + "bbox": [ + 306, + 599, + 334, + 613 + ], + "score": 0.92, + "content": "G ( \\hat { \\mathcal { M } } )", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 619, + 408, + 646 + ], + "lines": [ + { + "bbox": [ + 202, + 619, + 408, + 646 + ], + "spans": [ + { + "bbox": [ + 202, + 619, + 408, + 646 + ], + "score": 0.92, + "content": "O \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right)", + "type": "interline_equation", + "image_path": "c808c7e02afbac424935a2a6fbdc2a8bb2055dae8fb52dbd3b8c5e167a032e71.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 619, + 408, + 632.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 202, + 632.5, + 408, + 646.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 652, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 501, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 141, + 666 + ], + "score": 1.0, + "content": "times in", + "type": "text" + }, + { + "bbox": [ + 141, + 654, + 149, + 663 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 651, + 356, + 666 + ], + "score": 1.0, + "content": "epochs, and returns a policy such that for all state", + "type": "text" + }, + { + "bbox": [ + 357, + 653, + 383, + 663 + ], + "score": 0.74, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 652, + 501, + 665 + ], + "score": 0.9, + "content": "\\rangle , | V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\leq \\epsilon , \\epsilon > 0", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 664, + 211, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 664, + 159, + 676 + ], + "score": 0.67, + "content": "w . p . \\geq 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 664, + 164, + 676 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 664, + 207, + 675 + ], + "score": 0.75, + "content": "0 < \\delta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 664, + 211, + 676 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 177, + 691 + ], + "score": 1.0, + "content": "Theorem 5. Let", + "type": "text" + }, + { + "bbox": [ + 177, + 679, + 236, + 691 + ], + "score": 0.91, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 678, + 430, + 691 + ], + "score": 1.0, + "content": "be bounded reward and all confusion matrices", + "type": "text" + }, + { + "bbox": [ + 430, + 680, + 444, + 690 + ], + "score": 0.91, + "content": "\\mathbf { C } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 678, + 504, + 691 + ], + "score": 1.0, + "content": "are invertible.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 690, + 363, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 264, + 703 + ], + "score": 1.0, + "content": "Then, the variance of surrogate reward", + "type": "text" + }, + { + "bbox": [ + 265, + 691, + 271, + 700 + ], + "score": 0.78, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 690, + 363, + 703 + ], + "score": 1.0, + "content": "is bounded as follows:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 709, + 408, + 735 + ], + "lines": [ + { + "bbox": [ + 202, + 709, + 408, + 735 + ], + "spans": [ + { + "bbox": [ + 202, + 709, + 408, + 735 + ], + "score": 0.92, + "content": "\\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { M ^ { 2 } } { \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } .", + "type": "interline_equation", + "image_path": "7b7d12fb4288e0b4fe00ee90a42ccca0c73b09b46180a1f68e088056eda85a21.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 202, + 709, + 408, + 735 + ], + "spans": [], + "index": 44 + } + ] + } + ], + "page_idx": 19, + "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": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 334, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 334, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 334, + 95 + ], + "score": 1.0, + "content": "C.2 EXPECTATION-MAXIMIZATION IN ESTIMATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 505, + 161 + ], + "lines": [ + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 274, + 117 + ], + "score": 1.0, + "content": "In Algorithm 3, the predicted true reward", + "type": "text" + }, + { + "bbox": [ + 275, + 103, + 302, + 115 + ], + "score": 0.93, + "content": "{ \\bar { r } } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "is derived from majority voting in collected noisy", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 125, + 129 + ], + "score": 1.0, + "content": "sets", + "type": "text" + }, + { + "bbox": [ + 125, + 114, + 156, + 128 + ], + "score": 0.94, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 116, + 269, + 129 + ], + "score": 1.0, + "content": "for every state-action pair", + "type": "text" + }, + { + "bbox": [ + 270, + 116, + 338, + 128 + ], + "score": 0.91, + "content": "( s , a ) \\in \\mathcal { S } \\times \\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 116, + 506, + 129 + ], + "score": 1.0, + "content": ", which is a simple but efficient way of", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 104, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "leveraging the expectation of aggregated rewards without assumptions on prior distribution of noise.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 138, + 504, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 504, + 150 + ], + "score": 1.0, + "content": "In the following, we adopt standard Expectation-Maximization (EM) idea in the our estimation", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 149, + 479, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 479, + 162 + ], + "score": 1.0, + "content": "framework (arguably a simple version of it), inspired by previous works (Zhang et al., 2014).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 104, + 103, + 506, + 162 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 502, + 189 + ], + "lines": [ + { + "bbox": [ + 105, + 164, + 504, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 504, + 179 + ], + "score": 1.0, + "content": "Assuming the observed noisy rewards are independent conditional on the true reward, we can com-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 388, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 388, + 190 + ], + "score": 1.0, + "content": "pute the posterior probability of true reward from the Bayes’ theorem:", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 164, + 504, + 190 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 111, + 194, + 507, + 256 + ], + "lines": [ + { + "bbox": [ + 111, + 194, + 507, + 256 + ], + "spans": [ + { + "bbox": [ + 111, + 194, + 507, + 256 + ], + "score": 0.93, + "content": "{ \\begin{array} { r l } { ^ { \\mathfrak { p } } ( r = R _ { i } | { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } ) = } & { { \\frac { \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { i } ) \\cdot \\mathbb { P } ( r = R _ { i } ) } { \\sum _ { j } \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { j } ) \\cdot \\mathbb { P } ( r = R _ { j } ) } } } \\\\ & { = { \\frac { \\mathbb { P } ( r = R _ { i } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { i } ) } { \\sum _ { j } \\left[ \\mathbb { P } ( r = R _ { j } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { j } ) \\right] } } \\qquad ( 8 ) } \\end{array} }", + "type": "interline_equation", + "image_path": "41c26828c9be187c15b157f7f019fb0cf35c70332e85bde3b30f11bff9c73284.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 194, + 507, + 214.66666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 214.66666666666666, + 507, + 235.33333333333331 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 235.33333333333331, + 507, + 255.99999999999997 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 259, + 505, + 273 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 134, + 273 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 260, + 182, + 273 + ], + "score": 0.9, + "content": "\\mathbb { P } ( r = R _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 259, + 320, + 273 + ], + "score": 1.0, + "content": "is the prior of true rewards, and", + "type": "text" + }, + { + "bbox": [ + 321, + 260, + 405, + 272 + ], + "score": 0.91, + "content": "\\mathbb { P } ( \\tilde { r } = R _ { k } | r = R _ { j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 259, + 505, + 273 + ], + "score": 1.0, + "content": "is estimated by current", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 271, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 218, + 286 + ], + "score": 1.0, + "content": "estimated confusion matrix", + "type": "text" + }, + { + "bbox": [ + 219, + 272, + 228, + 284 + ], + "score": 0.6, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 272, + 342, + 285 + ], + "score": 0.88, + "content": "\\vdots \\Psi ( \\tilde { r } = R _ { k } | r = R _ { j } ) = \\tilde { c } _ { j , i }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 271, + 505, + 286 + ], + "score": 1.0, + "content": ". Note that the inference should be con-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 283, + 506, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 237, + 297 + ], + "score": 1.0, + "content": "ducted for each state-action pair", + "type": "text" + }, + { + "bbox": [ + 238, + 285, + 300, + 296 + ], + "score": 0.89, + "content": "( s , a ) \\in \\mathcal S \\times \\mathcal A", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 283, + 391, + 297 + ], + "score": 1.0, + "content": "in every iteration, i.e.,", + "type": "text" + }, + { + "bbox": [ + 392, + 284, + 506, + 296 + ], + "score": 0.91, + "content": "\\mathbb { P } ( r ( s , a ) = R _ { i } | \\tilde { r } ( s , a , 1 ) =", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 295, + 504, + 308 + ], + "spans": [ + { + "bbox": [ + 107, + 295, + 211, + 307 + ], + "score": 0.89, + "content": "R _ { 1 } , \\cdot \\cdot \\cdot , \\tilde { r } ( s , a , n ) = R _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 295, + 277, + 308 + ], + "score": 1.0, + "content": ", abbreviated as", + "type": "text" + }, + { + "bbox": [ + 277, + 295, + 343, + 307 + ], + "score": 0.9, + "content": "\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 295, + 504, + 308 + ], + "score": 1.0, + "content": "), which requires relatively greater com-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 506, + 319 + ], + "score": 1.0, + "content": "putation costs compared to the majority voting policy. It also points out an interesting direction to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 317, + 347, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 294, + 330 + ], + "score": 1.0, + "content": "check online EM algorithms for our perturbed-", + "type": "text" + }, + { + "bbox": [ + 295, + 318, + 308, + 327 + ], + "score": 0.55, + "content": ". R L", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 317, + 347, + 330 + ], + "score": 1.0, + "content": "problem.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 259, + 506, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 504, + 358 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 506, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 340, + 348 + ], + "score": 1.0, + "content": "After the inference steps in Eqn. (8), the confusion matrix", + "type": "text" + }, + { + "bbox": [ + 340, + 333, + 350, + 345 + ], + "score": 0.84, + "content": "\\tilde { \\mathbf { C } }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 333, + 506, + 348 + ], + "score": 1.0, + "content": "is then updated based on the posterior", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 345, + 162, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 162, + 359 + ], + "score": 1.0, + "content": "probabilities:", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 333, + 506, + 359 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 176, + 363, + 434, + 396 + ], + "lines": [ + { + "bbox": [ + 176, + 363, + 434, + 396 + ], + "spans": [ + { + "bbox": [ + 176, + 363, + 434, + 396 + ], + "score": 0.94, + "content": "\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ,", + "type": "interline_equation", + "image_path": "a64137fc7ff684373b60659f3ef6f180a292855ed4887ed713f8e61787b3dd7b.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 176, + 363, + 434, + 374.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 176, + 374.0, + 434, + 385.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 176, + 385.0, + 434, + 396.0 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 401, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 133, + 415 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 402, + 197, + 414 + ], + "score": 0.9, + "content": "\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 401, + 505, + 415 + ], + "score": 1.0, + "content": ") denotes the inference probabilities of true rewards based on collected noisy", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 158, + 427 + ], + "score": 1.0, + "content": "rewards sets", + "type": "text" + }, + { + "bbox": [ + 158, + 414, + 189, + 426 + ], + "score": 0.91, + "content": "\\tilde { R } ( s , a )", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 414, + 505, + 427 + ], + "score": 1.0, + "content": ". To utilize EM algorithms in the robust reward algorithms (e.g., Algorithm 3),", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 425, + 453, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 425, + 453, + 437 + ], + "score": 1.0, + "content": "we need to replace Eqn. (4) by Eqn. (9) for the estimation of reward confusion matrix.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 401, + 505, + 437 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 451, + 312, + 463 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 312, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 312, + 464 + ], + "score": 1.0, + "content": "C.3 STATE-DEPENDENT PERTURBED REWARD", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 471, + 505, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 484 + ], + "score": 1.0, + "content": "In previous sections, to let our presentation stay focused, we consider the state-independent per-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 505, + 496 + ], + "score": 1.0, + "content": "turbed reward environments, which share the same confusion matrix for all states. In other words,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 493, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 493, + 505, + 507 + ], + "score": 1.0, + "content": "the noise for different states is generated within the same distribution. More generally, the gener-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 141, + 520 + ], + "score": 1.0, + "content": "ation of", + "type": "text" + }, + { + "bbox": [ + 141, + 507, + 147, + 517 + ], + "score": 0.77, + "content": "\\tilde { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 148, + 506, + 257, + 520 + ], + "score": 1.0, + "content": "follows a certain function", + "type": "text" + }, + { + "bbox": [ + 257, + 505, + 332, + 518 + ], + "score": 0.93, + "content": "C : S \\times \\mathcal { R } \\to \\tilde { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 506, + 505, + 520 + ], + "score": 1.0, + "content": ", where different states may correspond to", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "varied noise distributions (also varied confusion matrices). However, our algorithm is still applica-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 327, + 541 + ], + "score": 1.0, + "content": "ble except for maintaining different confusion matrices", + "type": "text" + }, + { + "bbox": [ + 327, + 529, + 341, + 540 + ], + "score": 0.89, + "content": "\\mathbf { C } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "for different states. It is worthy to notice", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 505, + 552 + ], + "score": 1.0, + "content": "that Theorem 1 holds because the surrogate rewards produce an unbiased estimation of true rewards", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 183, + 564 + ], + "score": 1.0, + "content": "for each state, i.e.,", + "type": "text" + }, + { + "bbox": [ + 183, + 550, + 344, + 563 + ], + "score": 0.92, + "content": "\\mathbb { E } _ { { \\tilde { r } } | r , s _ { t } } [ { \\hat { r } } ( s _ { t } , a _ { t } , s _ { t + 1 } { \\bar { ) } } ] = r ( s _ { t } , a _ { t } , s _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 550, + 506, + 564 + ], + "score": 1.0, + "content": ". Furthermore, Theorem 2 and 3 can be", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 562, + 151, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 151, + 573 + ], + "score": 1.0, + "content": "revised as:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 473, + 506, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 576, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 238, + 590 + ], + "score": 1.0, + "content": "Theorem 4. (Upper bound) Let", + "type": "text" + }, + { + "bbox": [ + 239, + 577, + 295, + 589 + ], + "score": 0.91, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 576, + 378, + 590 + ], + "score": 1.0, + "content": "be bounded reward,", + "type": "text" + }, + { + "bbox": [ + 379, + 577, + 392, + 588 + ], + "score": 0.87, + "content": "\\mathbf { C } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 576, + 505, + 590 + ], + "score": 1.0, + "content": "be invertible reward confu-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 183, + 601 + ], + "score": 1.0, + "content": "sion matrices with", + "type": "text" + }, + { + "bbox": [ + 183, + 588, + 218, + 600 + ], + "score": 0.87, + "content": "\\operatorname* { d e t } ( \\mathbf { C } _ { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 588, + 444, + 601 + ], + "score": 1.0, + "content": "denoting its determinant. For an appropriate choice of", + "type": "text" + }, + { + "bbox": [ + 444, + 590, + 453, + 598 + ], + "score": 0.54, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 454, + 588, + 506, + 601 + ], + "score": 1.0, + "content": ", the Phased", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 599, + 334, + 613 + ], + "spans": [ + { + "bbox": [ + 107, + 601, + 115, + 613 + ], + "score": 0.79, + "content": "Q", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 601, + 306, + 613 + ], + "score": 1.0, + "content": "-Learning algorithm calls the generative model", + "type": "text" + }, + { + "bbox": [ + 306, + 599, + 334, + 613 + ], + "score": 0.92, + "content": "G ( \\hat { \\mathcal { M } } )", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 576, + 506, + 613 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 619, + 408, + 646 + ], + "lines": [ + { + "bbox": [ + 202, + 619, + 408, + 646 + ], + "spans": [ + { + "bbox": [ + 202, + 619, + 408, + 646 + ], + "score": 0.92, + "content": "O \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right)", + "type": "interline_equation", + "image_path": "c808c7e02afbac424935a2a6fbdc2a8bb2055dae8fb52dbd3b8c5e167a032e71.jpg" + } + ] + } + ], + "index": 38.5, + "virtual_lines": [ + { + "bbox": [ + 202, + 619, + 408, + 632.5 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 202, + 632.5, + 408, + 646.0 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 652, + 504, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 651, + 501, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 141, + 666 + ], + "score": 1.0, + "content": "times in", + "type": "text" + }, + { + "bbox": [ + 141, + 654, + 149, + 663 + ], + "score": 0.81, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 651, + 356, + 666 + ], + "score": 1.0, + "content": "epochs, and returns a policy such that for all state", + "type": "text" + }, + { + "bbox": [ + 357, + 653, + 383, + 663 + ], + "score": 0.74, + "content": "s \\in S", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 652, + 501, + 665 + ], + "score": 0.9, + "content": "\\rangle , | V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\leq \\epsilon , \\epsilon > 0", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 107, + 664, + 211, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 664, + 159, + 676 + ], + "score": 0.67, + "content": "w . p . \\geq 1 - \\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 664, + 164, + 676 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 164, + 664, + 207, + 675 + ], + "score": 0.75, + "content": "0 < \\delta < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 664, + 211, + 676 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 651, + 501, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 502, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 504, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 177, + 691 + ], + "score": 1.0, + "content": "Theorem 5. Let", + "type": "text" + }, + { + "bbox": [ + 177, + 679, + 236, + 691 + ], + "score": 0.91, + "content": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 678, + 430, + 691 + ], + "score": 1.0, + "content": "be bounded reward and all confusion matrices", + "type": "text" + }, + { + "bbox": [ + 430, + 680, + 444, + 690 + ], + "score": 0.91, + "content": "\\mathbf { C } _ { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 678, + 504, + 691 + ], + "score": 1.0, + "content": "are invertible.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 690, + 363, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 264, + 703 + ], + "score": 1.0, + "content": "Then, the variance of surrogate reward", + "type": "text" + }, + { + "bbox": [ + 265, + 691, + 271, + 700 + ], + "score": 0.78, + "content": "\\hat { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 690, + 363, + 703 + ], + "score": 1.0, + "content": "is bounded as follows:", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 106, + 678, + 504, + 703 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 709, + 408, + 735 + ], + "lines": [ + { + "bbox": [ + 202, + 709, + 408, + 735 + ], + "spans": [ + { + "bbox": [ + 202, + 709, + 408, + 735 + ], + "score": 0.92, + "content": "\\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { M ^ { 2 } } { \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } .", + "type": "interline_equation", + "image_path": "7b7d12fb4288e0b4fe00ee90a42ccca0c73b09b46180a1f68e088056eda85a21.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 202, + 709, + 408, + 735 + ], + "spans": [], + "index": 44 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 301, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "score": 1.0, + "content": "C.4 VARIANCE REDUCTION IN ESTIMATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "As illustrated in Theorem 3, our surrogate rewards introduce larger variance while conducting un-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "biased estimation which are likely to decrease the stability of RL algorithms. Apart from the linear", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "score": 1.0, + "content": "combination idea (appropriate trade-off), some variance reduction techniques in statistics (e.g., cor-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "related sampling) can also be applied into our surrogate rewards. Specially, Romoff et al. (2018)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "proposed to a reward estimator to compensate for stochastic corrupted reward signals. It is worthy", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "to notice that their method is designed for variance reduction under stochastic (zero-mean) noise,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "which is no longer efficacious in more general perturbed-reward setting. However, it is potential to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "integrate their method with our robust-reward RL framework because surrogate rewards guarantee", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 192, + 251, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 251, + 204 + ], + "score": 1.0, + "content": "unbiasedness in reward expectation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "To verify this idea, we repeated the experiments of Cartpole in Section 4.2 but included variance", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "reduction step for estimated surrogate rewards. Following Romoff et al. (2018), we adopted sample", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "mean as a simple approximator during the training and set sequence length as 100. As shown in Fig-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "ure 5, the models with only variance reduction technique (red lines) suffer from huge biases when", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "the noise is large, and cannot converge to the optimal policies like those under noisy rewards. Nev-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "ertheless, they benefits from variance reduction for surrogate rewards (purple lines), which achieve", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 399, + 288 + ], + "score": 1.0, + "content": "faster convergence or better performance in many cases (e.g., Figure 5a", + "type": "text" + }, + { + "bbox": [ + 400, + 275, + 437, + 286 + ], + "score": 0.84, + "content": "\\langle \\omega = 0 . 7 ", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 274, + 459, + 288 + ], + "score": 1.0, + "content": "), 5b", + "type": "text" + }, + { + "bbox": [ + 459, + 275, + 496, + 286 + ], + "score": 0.8, + "content": "\\langle \\omega = 0 . 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 274, + 505, + 288 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "It is also not surprising that the integrated algorithm (purple lines) outperforms better as the noise", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 365, + 310 + ], + "score": 1.0, + "content": "rate increases (indicating larger variance from Theorem 3, e.g.,", + "type": "text" + }, + { + "bbox": [ + 365, + 297, + 402, + 307 + ], + "score": 0.88, + "content": "\\omega = 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 296, + 505, + 310 + ], + "score": 1.0, + "content": "). Similarly, Table 5 pro-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "vides quantitative results which show that our surrogate benefits from variance reduction techniques", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 318, + 329, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 133, + 331 + ], + "score": 1.0, + "content": "(“ours", + "type": "text" + }, + { + "bbox": [ + 133, + 318, + 168, + 329 + ], + "score": 0.3, + "content": "+ { \\mathrm { V R T } } ^ { { \\mathsf { V } } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 319, + 329, + 331 + ], + "score": 1.0, + "content": "), especially when the noise rate is large.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15 + }, + { + "type": "image", + "bbox": [ + 106, + 335, + 500, + 588 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 335, + 500, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 335, + 500, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 500, + 588 + ], + "score": 0.973, + "type": "image", + "image_path": "70beaea72e9c00d1c10de6475df19fe4340ed51e1fed407fc97632ce1d4420c8.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 106, + 335, + 500, + 419.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 106, + 419.3333333333333, + 500, + 503.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 106, + 503.66666666666663, + 500, + 588.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 597, + 505, + 664 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "Figure 5: Learning curves from five reward robust RL algorithms (see Algorithm 3) on CartPole", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 606, + 493, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 202, + 619 + ], + "score": 1.0, + "content": "game with true rewards", + "type": "text" + }, + { + "bbox": [ + 202, + 608, + 226, + 620 + ], + "score": 0.84, + "content": "( r ) \\mathsf { l } .", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 606, + 286, + 621 + ], + "score": 1.0, + "content": ", noisy rewards", + "type": "text" + }, + { + "bbox": [ + 287, + 609, + 299, + 620 + ], + "score": 0.51, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 609, + 329, + 620 + ], + "score": 0.73, + "content": "( \\eta = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 606, + 460, + 621 + ], + "score": 1.0, + "content": ") , sample-mean noisy rewards", + "type": "text" + }, + { + "bbox": [ + 461, + 608, + 488, + 620 + ], + "score": 0.79, + "content": "( \\eta = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 606, + 493, + 621 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 225, + 632 + ], + "score": 1.0, + "content": "estimated surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 225, + 618, + 251, + 631 + ], + "score": 0.33, + "content": "( { \\dot { r } } ) \\mathbf { \\Psi } ", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 619, + 445, + 632 + ], + "score": 1.0, + "content": "and sample-mean estimated surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 445, + 619, + 456, + 630 + ], + "score": 0.28, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 619, + 506, + 632 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 185, + 642 + ], + "score": 1.0, + "content": "confusion matrices", + "type": "text" + }, + { + "bbox": [ + 185, + 630, + 195, + 640 + ], + "score": 0.31, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "are unknown to the agents here. From top to the bottom, the noise rates are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with different random seeds and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 652, + 356, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 137, + 664 + ], + "score": 1.0, + "content": "plotted", + "type": "text" + }, + { + "bbox": [ + 137, + 652, + 156, + 663 + ], + "score": 0.88, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 652, + 167, + 664 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 168, + 652, + 187, + 663 + ], + "score": 0.87, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 652, + 356, + 664 + ], + "score": 1.0, + "content": "percentile area with its mean highlighted.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + } + ], + "index": 24.25 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 242, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 243, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 243, + 689 + ], + "score": 1.0, + "content": "C.5 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "To validate the effectiveness of robust reward algorithms (like Algorithm 3), where the noise rates", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "are unknown to the agents, we conduct extensive experiments in CartPole. It is worthwhile to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "notice that the noisy rates are unknown in the explorations of RL agents. Besides, we discretize the", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + }, + { + "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, + 82, + 301, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 303, + 95 + ], + "score": 1.0, + "content": "C.4 VARIANCE REDUCTION IN ESTIMATION", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "As illustrated in Theorem 3, our surrogate rewards introduce larger variance while conducting un-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "biased estimation which are likely to decrease the stability of RL algorithms. Apart from the linear", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 506, + 139 + ], + "score": 1.0, + "content": "combination idea (appropriate trade-off), some variance reduction techniques in statistics (e.g., cor-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "related sampling) can also be applied into our surrogate rewards. Specially, Romoff et al. (2018)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 161 + ], + "score": 1.0, + "content": "proposed to a reward estimator to compensate for stochastic corrupted reward signals. It is worthy", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "to notice that their method is designed for variance reduction under stochastic (zero-mean) noise,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "which is no longer efficacious in more general perturbed-reward setting. However, it is potential to", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "integrate their method with our robust-reward RL framework because surrogate rewards guarantee", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 192, + 251, + 204 + ], + "spans": [ + { + "bbox": [ + 106, + 192, + 251, + 204 + ], + "score": 1.0, + "content": "unbiasedness in reward expectation.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 104, + 506, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "To verify this idea, we repeated the experiments of Cartpole in Section 4.2 but included variance", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 106, + 220, + 505, + 232 + ], + "score": 1.0, + "content": "reduction step for estimated surrogate rewards. Following Romoff et al. (2018), we adopted sample", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "mean as a simple approximator during the training and set sequence length as 100. As shown in Fig-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 241, + 505, + 254 + ], + "score": 1.0, + "content": "ure 5, the models with only variance reduction technique (red lines) suffer from huge biases when", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "the noise is large, and cannot converge to the optimal policies like those under noisy rewards. Nev-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 276 + ], + "score": 1.0, + "content": "ertheless, they benefits from variance reduction for surrogate rewards (purple lines), which achieve", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 399, + 288 + ], + "score": 1.0, + "content": "faster convergence or better performance in many cases (e.g., Figure 5a", + "type": "text" + }, + { + "bbox": [ + 400, + 275, + 437, + 286 + ], + "score": 0.84, + "content": "\\langle \\omega = 0 . 7 ", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 274, + 459, + 288 + ], + "score": 1.0, + "content": "), 5b", + "type": "text" + }, + { + "bbox": [ + 459, + 275, + 496, + 286 + ], + "score": 0.8, + "content": "\\langle \\omega = 0 . 3 )", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 274, + 505, + 288 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "It is also not surprising that the integrated algorithm (purple lines) outperforms better as the noise", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 296, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 365, + 310 + ], + "score": 1.0, + "content": "rate increases (indicating larger variance from Theorem 3, e.g.,", + "type": "text" + }, + { + "bbox": [ + 365, + 297, + 402, + 307 + ], + "score": 0.88, + "content": "\\omega = 0 . 9", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 296, + 505, + 310 + ], + "score": 1.0, + "content": "). Similarly, Table 5 pro-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "vides quantitative results which show that our surrogate benefits from variance reduction techniques", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 318, + 329, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 319, + 133, + 331 + ], + "score": 1.0, + "content": "(“ours", + "type": "text" + }, + { + "bbox": [ + 133, + 318, + 168, + 329 + ], + "score": 0.3, + "content": "+ { \\mathrm { V R T } } ^ { { \\mathsf { V } } } ,", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 319, + 329, + 331 + ], + "score": 1.0, + "content": "), especially when the noise rate is large.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15, + "bbox_fs": [ + 104, + 209, + 506, + 331 + ] + }, + { + "type": "image", + "bbox": [ + 106, + 335, + 500, + 588 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 335, + 500, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 335, + 500, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 500, + 588 + ], + "score": 0.973, + "type": "image", + "image_path": "70beaea72e9c00d1c10de6475df19fe4340ed51e1fed407fc97632ce1d4420c8.jpg" + } + ] + } + ], + "index": 22, + "virtual_lines": [ + { + "bbox": [ + 106, + 335, + 500, + 419.3333333333333 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 106, + 419.3333333333333, + 500, + 503.66666666666663 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 106, + 503.66666666666663, + 500, + 588.0 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 597, + 505, + 664 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 106, + 597, + 505, + 609 + ], + "score": 1.0, + "content": "Figure 5: Learning curves from five reward robust RL algorithms (see Algorithm 3) on CartPole", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 606, + 493, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 202, + 619 + ], + "score": 1.0, + "content": "game with true rewards", + "type": "text" + }, + { + "bbox": [ + 202, + 608, + 226, + 620 + ], + "score": 0.84, + "content": "( r ) \\mathsf { l } .", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 606, + 286, + 621 + ], + "score": 1.0, + "content": ", noisy rewards", + "type": "text" + }, + { + "bbox": [ + 287, + 609, + 299, + 620 + ], + "score": 0.51, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 609, + 329, + 620 + ], + "score": 0.73, + "content": "( \\eta = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 606, + 460, + 621 + ], + "score": 1.0, + "content": ") , sample-mean noisy rewards", + "type": "text" + }, + { + "bbox": [ + 461, + 608, + 488, + 620 + ], + "score": 0.79, + "content": "( \\eta = 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 606, + 493, + 621 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 225, + 632 + ], + "score": 1.0, + "content": "estimated surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 225, + 618, + 251, + 631 + ], + "score": 0.33, + "content": "( { \\dot { r } } ) \\mathbf { \\Psi } ", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 619, + 445, + 632 + ], + "score": 1.0, + "content": "and sample-mean estimated surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 445, + 619, + 456, + 630 + ], + "score": 0.28, + "content": "\\cdot", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 619, + 506, + 632 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 630, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 185, + 642 + ], + "score": 1.0, + "content": "confusion matrices", + "type": "text" + }, + { + "bbox": [ + 185, + 630, + 195, + 640 + ], + "score": 0.31, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 630, + 505, + 642 + ], + "score": 1.0, + "content": "are unknown to the agents here. From top to the bottom, the noise rates are", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 640, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 104, + 640, + 506, + 653 + ], + "score": 1.0, + "content": "0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with different random seeds and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 652, + 356, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 137, + 664 + ], + "score": 1.0, + "content": "plotted", + "type": "text" + }, + { + "bbox": [ + 137, + 652, + 156, + 663 + ], + "score": 0.88, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 652, + 167, + 664 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 168, + 652, + 187, + 663 + ], + "score": 0.87, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 652, + 356, + 664 + ], + "score": 1.0, + "content": "percentile area with its mean highlighted.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + } + ], + "index": 24.25 + }, + { + "type": "title", + "bbox": [ + 107, + 677, + 242, + 688 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 243, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 243, + 689 + ], + "score": 1.0, + "content": "C.5 EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "To validate the effectiveness of robust reward algorithms (like Algorithm 3), where the noise rates", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 506, + 722 + ], + "score": 1.0, + "content": "are unknown to the agents, we conduct extensive experiments in CartPole. It is worthwhile to", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "notice that the noisy rates are unknown in the explorations of RL agents. Besides, we discretize the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 314, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 497, + 330 + ], + "score": 1.0, + "content": "observation (velocity, angle, etc.) to construct a set of states and implement like Algorithm 3. The", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 497, + 318, + 504, + 328 + ], + "score": 0.58, + "content": "\\eta", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 327, + 223, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 223, + 339 + ], + "score": 1.0, + "content": "is set 1.0 in the experiments.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 157, + 133, + 457, + 258 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 505, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 93 + ], + "score": 1.0, + "content": "Table 5: Average scores of various RL algorithms on CartPole with sample-mean reward using", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 496, + 103 + ], + "score": 1.0, + "content": "variance reduction technique (VRT), surrogate rewards (ours) and the combination of them (ours", + "type": "text" + }, + { + "bbox": [ + 497, + 93, + 505, + 101 + ], + "score": 0.7, + "content": "^ +", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "VRT). Note that the reward confusion matrices are unknown to the agents and the experiments are", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 306, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 306, + 125 + ], + "score": 1.0, + "content": "repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 157, + 133, + 457, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 133, + 457, + 258 + ], + "spans": [ + { + "bbox": [ + 157, + 133, + 457, + 258 + ], + "score": 0.982, + "html": "
Noise RateRewardQ-LearnCEMSARSADQNDDQN
ε=0.1VRT173.599.7167.3181.9187.4
ours (r)181.999.3171.5200.0185.6
ours + VRT184.598.2174.2199.3186.5
w= 0.3VRT140.443.9149.8182.7177.6
ours (r)161.181.8159.6186.7200.0
ours + VRT161.682.2159.8188.4198.2
ω=0.7VRT71.116.113.215.614.7
ours (r)172.183.0174.4189.3191.3
ours + VRT182.379.5178.9195.9194.2
", + "type": "table", + "image_path": "94037bd4f77acff7f40ed66c73fee1e3f26a40ff269d52dc7c1aa6413873d92b.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 157, + 133, + 457, + 174.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 157, + 174.66666666666666, + 457, + 216.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 157, + 216.33333333333331, + 457, + 258.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 504, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 314, + 504, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 497, + 330 + ], + "score": 1.0, + "content": "observation (velocity, angle, etc.) to construct a set of states and implement like Algorithm 3. The", + "type": "text" + }, + { + "bbox": [ + 497, + 318, + 504, + 328 + ], + "score": 0.58, + "content": "\\eta", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 327, + 223, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 223, + 339 + ], + "score": 1.0, + "content": "is set 1.0 in the experiments.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 106, + 343, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "Figure 6 provides learning curves from five algorithms with different kinds of rewards. The proposed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 355, + 504, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 504, + 367 + ], + "score": 1.0, + "content": "estimation algorithms successfully obtain the approximate confusion matrices, and are robust in the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "unknown noise environments. From Figure 7, we can observe that the estimation of confusion", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "matrices converges very fast. The results are inspiring because we don’t assume any additional", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 388, + 399, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 399, + 401 + ], + "score": 1.0, + "content": "knowledge about noise or true reward distribution in the implementation.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "image", + "bbox": [ + 110, + 406, + 498, + 659 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 406, + 498, + 659 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 406, + 498, + 659 + ], + "spans": [ + { + "bbox": [ + 110, + 406, + 498, + 659 + ], + "score": 0.975, + "type": "image", + "image_path": "00e0fa5c53bdd423861056c4fc78ee26bf6a690df1fef3c4f6262b3c82507f6c.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 110, + 406, + 498, + 490.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 110, + 490.3333333333333, + 498, + 574.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 110, + 574.6666666666666, + 498, + 659.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 668, + 505, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Figure 6: Complete learning curves from five reward robust RL algorithms (see Algorithm 3) on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 246, + 691 + ], + "score": 1.0, + "content": "CartPole game with true rewards", + "type": "text" + }, + { + "bbox": [ + 247, + 679, + 272, + 691 + ], + "score": 0.41, + "content": "( r ) \\lfloor", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 680, + 338, + 691 + ], + "score": 1.0, + "content": ", noisy rewards", + "type": "text" + }, + { + "bbox": [ + 338, + 680, + 351, + 691 + ], + "score": 0.63, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 680, + 387, + 691 + ], + "score": 0.73, + "content": "\\mathit { \\Pi } _ { \\eta } = \\mathit { \\Pi } 1 ", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 680, + 392, + 691 + ], + "score": 1.0, + "content": ")", + "type": "text" + }, + { + "bbox": [ + 401, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "and estimated surrogate", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 141, + 703 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 690, + 166, + 702 + ], + "score": 0.69, + "content": "( { \\bar { \\dot { r } } } ) \\boxed { \\boxdot { \\bigtriangledown } }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 690, + 291, + 703 + ], + "score": 1.0, + "content": ". Note that confusion matrices", + "type": "text" + }, + { + "bbox": [ + 292, + 691, + 302, + 701 + ], + "score": 0.52, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "are unknown to the agents here. From top to the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 712, + 466, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 247, + 724 + ], + "score": 1.0, + "content": "different random seeds and plotted", + "type": "text" + }, + { + "bbox": [ + 248, + 712, + 267, + 723 + ], + "score": 0.88, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 712, + 277, + 724 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 278, + 712, + 298, + 723 + ], + "score": 0.87, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 712, + 466, + 724 + ], + "score": 1.0, + "content": "percentile area with its mean highlighted.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + } + ], + "index": 17.0 + } + ], + "page_idx": 21, + "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, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 157, + 133, + 457, + 258 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 80, + 505, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 93 + ], + "score": 1.0, + "content": "Table 5: Average scores of various RL algorithms on CartPole with sample-mean reward using", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 92, + 505, + 103 + ], + "spans": [ + { + "bbox": [ + 106, + 92, + 496, + 103 + ], + "score": 1.0, + "content": "variance reduction technique (VRT), surrogate rewards (ours) and the combination of them (ours", + "type": "text" + }, + { + "bbox": [ + 497, + 93, + 505, + 101 + ], + "score": 0.7, + "content": "^ +", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "VRT). Note that the reward confusion matrices are unknown to the agents and the experiments are", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 306, + 125 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 306, + 125 + ], + "score": 1.0, + "content": "repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "table_body", + "bbox": [ + 157, + 133, + 457, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 157, + 133, + 457, + 258 + ], + "spans": [ + { + "bbox": [ + 157, + 133, + 457, + 258 + ], + "score": 0.982, + "html": "
Noise RateRewardQ-LearnCEMSARSADQNDDQN
ε=0.1VRT173.599.7167.3181.9187.4
ours (r)181.999.3171.5200.0185.6
ours + VRT184.598.2174.2199.3186.5
w= 0.3VRT140.443.9149.8182.7177.6
ours (r)161.181.8159.6186.7200.0
ours + VRT161.682.2159.8188.4198.2
ω=0.7VRT71.116.113.215.614.7
ours (r)172.183.0174.4189.3191.3
ours + VRT182.379.5178.9195.9194.2
", + "type": "table", + "image_path": "94037bd4f77acff7f40ed66c73fee1e3f26a40ff269d52dc7c1aa6413873d92b.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 157, + 133, + 457, + 174.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 157, + 174.66666666666666, + 457, + 216.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 157, + 216.33333333333331, + 457, + 258.0 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 316, + 504, + 338 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 105, + 314, + 504, + 339 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 106, + 343, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 356 + ], + "score": 1.0, + "content": "Figure 6 provides learning curves from five algorithms with different kinds of rewards. The proposed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 355, + 504, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 504, + 367 + ], + "score": 1.0, + "content": "estimation algorithms successfully obtain the approximate confusion matrices, and are robust in the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 505, + 378 + ], + "score": 1.0, + "content": "unknown noise environments. From Figure 7, we can observe that the estimation of confusion", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 389 + ], + "score": 1.0, + "content": "matrices converges very fast. The results are inspiring because we don’t assume any additional", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 388, + 399, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 388, + 399, + 401 + ], + "score": 1.0, + "content": "knowledge about noise or true reward distribution in the implementation.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 344, + 505, + 401 + ] + }, + { + "type": "image", + "bbox": [ + 110, + 406, + 498, + 659 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 406, + 498, + 659 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 406, + 498, + 659 + ], + "spans": [ + { + "bbox": [ + 110, + 406, + 498, + 659 + ], + "score": 0.975, + "type": "image", + "image_path": "00e0fa5c53bdd423861056c4fc78ee26bf6a690df1fef3c4f6262b3c82507f6c.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 110, + 406, + 498, + 490.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 110, + 490.3333333333333, + 498, + 574.6666666666666 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 110, + 574.6666666666666, + 498, + 659.0 + ], + "spans": [], + "index": 16 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 668, + 505, + 724 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 506, + 681 + ], + "score": 1.0, + "content": "Figure 6: Complete learning curves from five reward robust RL algorithms (see Algorithm 3) on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 246, + 691 + ], + "score": 1.0, + "content": "CartPole game with true rewards", + "type": "text" + }, + { + "bbox": [ + 247, + 679, + 272, + 691 + ], + "score": 0.41, + "content": "( r ) \\lfloor", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 680, + 338, + 691 + ], + "score": 1.0, + "content": ", noisy rewards", + "type": "text" + }, + { + "bbox": [ + 338, + 680, + 351, + 691 + ], + "score": 0.63, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 680, + 387, + 691 + ], + "score": 0.73, + "content": "\\mathit { \\Pi } _ { \\eta } = \\mathit { \\Pi } 1 ", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 680, + 392, + 691 + ], + "score": 1.0, + "content": ")", + "type": "text" + }, + { + "bbox": [ + 401, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "and estimated surrogate", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 141, + 703 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 690, + 166, + 702 + ], + "score": 0.69, + "content": "( { \\bar { \\dot { r } } } ) \\boxed { \\boxdot { \\bigtriangledown } }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 690, + 291, + 703 + ], + "score": 1.0, + "content": ". Note that confusion matrices", + "type": "text" + }, + { + "bbox": [ + 292, + 691, + 302, + 701 + ], + "score": 0.52, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "are unknown to the agents here. From top to the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 505, + 713 + ], + "score": 1.0, + "content": "bottom, the noise rates are 0.1, 0.3, 0.7 and 0.9. Here we repeated each experiment 10 times with", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 712, + 466, + 724 + ], + "spans": [ + { + "bbox": [ + 106, + 712, + 247, + 724 + ], + "score": 1.0, + "content": "different random seeds and plotted", + "type": "text" + }, + { + "bbox": [ + 248, + 712, + 267, + 723 + ], + "score": 0.88, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 712, + 277, + 724 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 278, + 712, + 298, + 723 + ], + "score": 0.87, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 712, + 466, + 724 + ], + "score": 1.0, + "content": "percentile area with its mean highlighted.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + } + ], + "index": 17.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 82, + 499, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 82, + 499, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 82, + 499, + 214 + ], + "spans": [ + { + "bbox": [ + 112, + 82, + 499, + 214 + ], + "score": 0.972, + "type": "image", + "image_path": "3c31bc892d4fb3888117fce17dbd7d8d1ec5cc0783d06451ffb78a6d4f61de53.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 82, + 499, + 126.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 126.0, + 499, + 170.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 170.0, + 499, + 214.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 223, + 505, + 278 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "Figure 7: Estimation analysis from five reward robust RL algorithms (see Algorithm 3) on CartPole", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "game. The upper figures are the convergence curves of estimated error rates (from 0.1 to 0.9), where", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "the solid and dashed lines are ground truth and estimation, respectively; The lower figures are the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 442, + 268 + ], + "score": 1.0, + "content": "absolute difference between the estimation and ground truth of confusion matrix", + "type": "text" + }, + { + "bbox": [ + 442, + 256, + 452, + 266 + ], + "score": 0.33, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "(normalized", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 268, + 163, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 163, + 279 + ], + "score": 1.0, + "content": "matrix norm).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 106, + 305, + 352, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 353, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 353, + 320 + ], + "score": 1.0, + "content": "D SUPPLEMENTARY EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 334, + 317, + 346 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 318, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 318, + 348 + ], + "score": 1.0, + "content": "D.1 SUPPLEMENTARY QUANTITATIVE RESULTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "table", + "bbox": [ + 132, + 410, + 483, + 534 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 356, + 505, + 402 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Table 6: Complete average scores of various RL algorithms on CartPole and Pendulum with noisy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 369, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 141, + 380 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 369, + 153, + 379 + ], + "score": 0.72, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 369, + 302, + 380 + ], + "score": 1.0, + "content": "and surrogate rewards under known", + "type": "text" + }, + { + "bbox": [ + 302, + 369, + 314, + 379 + ], + "score": 0.66, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 369, + 368, + 380 + ], + "score": 1.0, + "content": "or estimated", + "type": "text" + }, + { + "bbox": [ + 369, + 369, + 381, + 379 + ], + "score": 0.66, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 369, + 506, + 380 + ], + "score": 1.0, + "content": "confusion matrices. Note that", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 324, + 391 + ], + "score": 1.0, + "content": "the results for last two algorithms DDPG (rand-one)", + "type": "text" + }, + { + "bbox": [ + 324, + 379, + 333, + 389 + ], + "score": 0.5, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 379, + 504, + 391 + ], + "score": 1.0, + "content": "NAF (rand-all) are on Pendulum, but the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 390, + 483, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 483, + 402 + ], + "score": 1.0, + "content": "others are on CartPole. The experiments are repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "table_body", + "bbox": [ + 132, + 410, + 483, + 534 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 410, + 483, + 534 + ], + "spans": [ + { + "bbox": [ + 132, + 410, + 483, + 534 + ], + "score": 0.985, + "html": "
Noise Rate丨RewardQ-LearnCEMSARSADQNDDQNDDPGNAF
ε=0.1r170.098.1165.2187.2187.8-1.03-4.48
?165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
ε= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.181.8159.6186.7200.0 -1.05-1.36
ε=0.756.619.212.617.211.8-8.76-7.35
?177.687.1151.4185.8195.2-1.09-2.26
r172.183.0174.4189.3191.31
", + "type": "table", + "image_path": "fc0054f035cb62d6348c8765cf9a9d6d22d3668ff3f43117f32038727c5d6dd4.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 132, + 410, + 483, + 451.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 132, + 451.3333333333333, + 483, + 492.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 132, + 492.66666666666663, + 483, + 534.0 + ], + "spans": [], + "index": 16 + } + ] + } + ], + "index": 13.25 + }, + { + "type": "table", + "bbox": [ + 111, + 576, + 499, + 730 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 544, + 505, + 567 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 474, + 556 + ], + "score": 1.0, + "content": "Table 7: Complete average scores of PPO on five selected Atari games with noisy rewards", + "type": "text" + }, + { + "bbox": [ + 474, + 545, + 487, + 555 + ], + "score": 0.74, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 555, + 479, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 180, + 567 + ], + "score": 1.0, + "content": "surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 180, + 555, + 192, + 566 + ], + "score": 0.71, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 555, + 479, + 567 + ], + "score": 1.0, + "content": ". The experiments are repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "table_body", + "bbox": [ + 111, + 576, + 499, + 730 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 576, + 499, + 730 + ], + "spans": [ + { + "bbox": [ + 111, + 576, + 499, + 730 + ], + "score": 0.984, + "html": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_ =e+ =0.1r12044.21814.81239.24608.91709.1849.2
?67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.31770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+=0.311180.1543.1919.82600.31109.6727.8
?46.7%个1730.81637.7966.14171.51470.2408.6
e_ =e+ =0.7r1296.8485.4380.3126.5491.50.0
?557.3%个1951.01799.21045.24970.41447.8492.5
e_ = 0.9,e+ = 0.7382.6410.267.0174.1620.1641.7
?106.9%个791.5693.5918.1298.91312.0735.1
e_ =e+=0.9r1588.8540.66.31410.8535.4588.8
?482.3%个3428.81901.34261.76758.62515.11707.1
", + "type": "table", + "image_path": "bec1a95fe0fcc2b112b85b15fa8b31abe344cb7729276502f6d999564d8ac4e2.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 111, + 576, + 499, + 627.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 111, + 627.3333333333334, + 499, + 678.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 111, + 678.6666666666667, + 499, + 730.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 18.75 + } + ], + "page_idx": 22, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 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" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 82, + 499, + 214 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 82, + 499, + 214 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 82, + 499, + 214 + ], + "spans": [ + { + "bbox": [ + 112, + 82, + 499, + 214 + ], + "score": 0.972, + "type": "image", + "image_path": "3c31bc892d4fb3888117fce17dbd7d8d1ec5cc0783d06451ffb78a6d4f61de53.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 82, + 499, + 126.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 126.0, + 499, + 170.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 170.0, + 499, + 214.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 223, + 505, + 278 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 505, + 235 + ], + "score": 1.0, + "content": "Figure 7: Estimation analysis from five reward robust RL algorithms (see Algorithm 3) on CartPole", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 246 + ], + "score": 1.0, + "content": "game. The upper figures are the convergence curves of estimated error rates (from 0.1 to 0.9), where", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "the solid and dashed lines are ground truth and estimation, respectively; The lower figures are the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 442, + 268 + ], + "score": 1.0, + "content": "absolute difference between the estimation and ground truth of confusion matrix", + "type": "text" + }, + { + "bbox": [ + 442, + 256, + 452, + 266 + ], + "score": 0.33, + "content": "\\mathbf { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "(normalized", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 268, + 163, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 268, + 163, + 279 + ], + "score": 1.0, + "content": "matrix norm).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 106, + 305, + 352, + 318 + ], + "lines": [ + { + "bbox": [ + 105, + 304, + 353, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 353, + 320 + ], + "score": 1.0, + "content": "D SUPPLEMENTARY EXPERIMENTAL RESULTS", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 334, + 317, + 346 + ], + "lines": [ + { + "bbox": [ + 105, + 333, + 318, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 333, + 318, + 348 + ], + "score": 1.0, + "content": "D.1 SUPPLEMENTARY QUANTITATIVE RESULTS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "table", + "bbox": [ + 132, + 410, + 483, + 534 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 356, + 505, + 402 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "Table 6: Complete average scores of various RL algorithms on CartPole and Pendulum with noisy", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 369, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 141, + 380 + ], + "score": 1.0, + "content": "rewards", + "type": "text" + }, + { + "bbox": [ + 141, + 369, + 153, + 379 + ], + "score": 0.72, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 369, + 302, + 380 + ], + "score": 1.0, + "content": "and surrogate rewards under known", + "type": "text" + }, + { + "bbox": [ + 302, + 369, + 314, + 379 + ], + "score": 0.66, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 369, + 368, + 380 + ], + "score": 1.0, + "content": "or estimated", + "type": "text" + }, + { + "bbox": [ + 369, + 369, + 381, + 379 + ], + "score": 0.66, + "content": "( \\dot { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 369, + 506, + 380 + ], + "score": 1.0, + "content": "confusion matrices. Note that", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 379, + 504, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 324, + 391 + ], + "score": 1.0, + "content": "the results for last two algorithms DDPG (rand-one)", + "type": "text" + }, + { + "bbox": [ + 324, + 379, + 333, + 389 + ], + "score": 0.5, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 379, + 504, + 391 + ], + "score": 1.0, + "content": "NAF (rand-all) are on Pendulum, but the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 390, + 483, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 483, + 402 + ], + "score": 1.0, + "content": "others are on CartPole. The experiments are repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "table_body", + "bbox": [ + 132, + 410, + 483, + 534 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 132, + 410, + 483, + 534 + ], + "spans": [ + { + "bbox": [ + 132, + 410, + 483, + 534 + ], + "score": 0.985, + "html": "
Noise Rate丨RewardQ-LearnCEMSARSADQNDDQNDDPGNAF
ε=0.1r170.098.1165.2187.2187.8-1.03-4.48
?165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
ε= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.181.8159.6186.7200.0 -1.05-1.36
ε=0.756.619.212.617.211.8-8.76-7.35
?177.687.1151.4185.8195.2-1.09-2.26
r172.183.0174.4189.3191.31
", + "type": "table", + "image_path": "fc0054f035cb62d6348c8765cf9a9d6d22d3668ff3f43117f32038727c5d6dd4.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 132, + 410, + 483, + 451.3333333333333 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 132, + 451.3333333333333, + 483, + 492.66666666666663 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 132, + 492.66666666666663, + 483, + 534.0 + ], + "spans": [], + "index": 16 + } + ] + } + ], + "index": 13.25 + }, + { + "type": "table", + "bbox": [ + 111, + 576, + 499, + 730 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 544, + 505, + 567 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 544, + 474, + 556 + ], + "score": 1.0, + "content": "Table 7: Complete average scores of PPO on five selected Atari games with noisy rewards", + "type": "text" + }, + { + "bbox": [ + 474, + 545, + 487, + 555 + ], + "score": 0.74, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 555, + 479, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 180, + 567 + ], + "score": 1.0, + "content": "surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 180, + 555, + 192, + 566 + ], + "score": 0.71, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 555, + 479, + 567 + ], + "score": 1.0, + "content": ". The experiments are repeated three times with different random seeds.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "table_body", + "bbox": [ + 111, + 576, + 499, + 730 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 111, + 576, + 499, + 730 + ], + "spans": [ + { + "bbox": [ + 111, + 576, + 499, + 730 + ], + "score": 0.984, + "html": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_ =e+ =0.1r12044.21814.81239.24608.91709.1849.2
?67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.31770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+=0.311180.1543.1919.82600.31109.6727.8
?46.7%个1730.81637.7966.14171.51470.2408.6
e_ =e+ =0.7r1296.8485.4380.3126.5491.50.0
?557.3%个1951.01799.21045.24970.41447.8492.5
e_ = 0.9,e+ = 0.7382.6410.267.0174.1620.1641.7
?106.9%个791.5693.5918.1298.91312.0735.1
e_ =e+=0.9r1588.8540.66.31410.8535.4588.8
?482.3%个3428.81901.34261.76758.62515.11707.1
", + "type": "table", + "image_path": "bec1a95fe0fcc2b112b85b15fa8b31abe344cb7729276502f6d999564d8ac4e2.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 111, + 576, + 499, + 627.3333333333334 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 111, + 627.3333333333334, + 499, + 678.6666666666667 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 111, + 678.6666666666667, + 499, + 730.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 18.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 134, + 106, + 475, + 381 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 134, + 106, + 475, + 381 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 106, + 475, + 381 + ], + "spans": [ + { + "bbox": [ + 134, + 106, + 475, + 381 + ], + "score": 0.975, + "type": "image", + "image_path": "56cf4b1866b0e0ae41fa728a9db15d7c21b37c6c8b7439f3ea38e0efebdb1a5d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 134, + 106, + 475, + 197.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 134, + 197.66666666666669, + 475, + 289.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 134, + 289.33333333333337, + 475, + 381.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 390, + 506, + 446 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "Figure 8: Complete learning curves from DDPG and NAF on Pendulum game with true rewards", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 107, + 401, + 119, + 412 + ], + "score": 0.44, + "content": "( r )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 401, + 195, + 413 + ], + "score": 1.0, + "content": "noisy rewards", + "type": "text" + }, + { + "bbox": [ + 195, + 401, + 219, + 412 + ], + "score": 0.5, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 401, + 311, + 413 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 311, + 402, + 323, + 412 + ], + "score": 0.35, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 401, + 367, + 413 + ], + "score": 0.74, + "content": "( \\eta = 1 ) \\mathbb { \\frac { \\ d H } { \\ d t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 401, + 505, + 413 + ], + "score": 1.0, + "content": ". Both symmetric and asymmetric", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "noise are conduced in the experiments. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "score": 1.0, + "content": "0.9, respectively. Here we repeated each experiment 6 times with different random seeds and plotted", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 434, + 325, + 447 + ], + "spans": [ + { + "bbox": [ + 107, + 434, + 126, + 445 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 434, + 137, + 447 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 137, + 434, + 157, + 445 + ], + "score": 0.86, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 434, + 325, + 447 + ], + "score": 1.0, + "content": "percentile area with its mean highlighted.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 108, + 459, + 289, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 290, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 290, + 471 + ], + "score": 1.0, + "content": "D.3 VISUALIZATIONS ON ATARI GAMES8", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 483, + 168, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 482, + 169, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 169, + 495 + ], + "score": 1.0, + "content": "D.3.1 PONG", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "image", + "bbox": [ + 108, + 503, + 502, + 688 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 503, + 502, + 688 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 503, + 502, + 688 + ], + "spans": [ + { + "bbox": [ + 108, + 503, + 502, + 688 + ], + "score": 0.974, + "type": "image", + "image_path": "2eca74f5435d07594efb179f169aec1e7428ca249146a6f151793e67576987cc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 108, + 503, + 502, + 564.6666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 108, + 564.6666666666666, + 502, + 626.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 108, + 626.3333333333333, + 502, + 687.9999999999999 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 11 + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 708, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 117, + 708, + 506, + 725 + ], + "score": 1.0, + "content": "8For the clarity purpose, we remove the learning curves (blue ones in previous figures) with true rewards", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 202, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 202, + 733 + ], + "score": 1.0, + "content": "except for Pong-v4 game.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "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": [ + 106, + 83, + 301, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 302, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 302, + 95 + ], + "score": 1.0, + "content": "D.2 VISUALIZATIONS ON CONTROL GAMES", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 134, + 106, + 475, + 381 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 134, + 106, + 475, + 381 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 134, + 106, + 475, + 381 + ], + "spans": [ + { + "bbox": [ + 134, + 106, + 475, + 381 + ], + "score": 0.975, + "type": "image", + "image_path": "56cf4b1866b0e0ae41fa728a9db15d7c21b37c6c8b7439f3ea38e0efebdb1a5d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 134, + 106, + 475, + 197.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 134, + 197.66666666666669, + 475, + 289.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 134, + 289.33333333333337, + 475, + 381.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 390, + 506, + 446 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "Figure 8: Complete learning curves from DDPG and NAF on Pendulum game with true rewards", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 107, + 401, + 119, + 412 + ], + "score": 0.44, + "content": "( r )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 401, + 195, + 413 + ], + "score": 1.0, + "content": "noisy rewards", + "type": "text" + }, + { + "bbox": [ + 195, + 401, + 219, + 412 + ], + "score": 0.5, + "content": "( \\tilde { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 401, + 311, + 413 + ], + "score": 1.0, + "content": "and surrogate rewards", + "type": "text" + }, + { + "bbox": [ + 311, + 402, + 323, + 412 + ], + "score": 0.35, + "content": "( \\hat { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 401, + 367, + 413 + ], + "score": 0.74, + "content": "( \\eta = 1 ) \\mathbb { \\frac { \\ d H } { \\ d t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 401, + 505, + 413 + ], + "score": 1.0, + "content": ". Both symmetric and asymmetric", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "noise are conduced in the experiments. From top to the bottom, the noise rates are 0.1, 0.3, 0.7 and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 506, + 436 + ], + "score": 1.0, + "content": "0.9, respectively. Here we repeated each experiment 6 times with different random seeds and plotted", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 434, + 325, + 447 + ], + "spans": [ + { + "bbox": [ + 107, + 434, + 126, + 445 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 434, + 137, + 447 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 137, + 434, + 157, + 445 + ], + "score": 0.86, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 434, + 325, + 447 + ], + "score": 1.0, + "content": "percentile area with its mean highlighted.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "title", + "bbox": [ + 108, + 459, + 289, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 458, + 290, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 290, + 471 + ], + "score": 1.0, + "content": "D.3 VISUALIZATIONS ON ATARI GAMES8", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "title", + "bbox": [ + 107, + 483, + 168, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 482, + 169, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 482, + 169, + 495 + ], + "score": 1.0, + "content": "D.3.1 PONG", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "image", + "bbox": [ + 108, + 503, + 502, + 688 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 503, + 502, + 688 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 503, + 502, + 688 + ], + "spans": [ + { + "bbox": [ + 108, + 503, + 502, + 688 + ], + "score": 0.974, + "type": "image", + "image_path": "2eca74f5435d07594efb179f169aec1e7428ca249146a6f151793e67576987cc.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 108, + 503, + 502, + 564.6666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 108, + 564.6666666666666, + 502, + 626.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 108, + 626.3333333333333, + 502, + 687.9999999999999 + ], + "spans": [], + "index": 12 + } + ] + } + ], + "index": 11 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 502, + 266 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 502, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 502, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 502, + 266 + ], + "score": 0.967, + "type": "image", + "image_path": "bf42aa71d5dd9cde0b2208d610c62a8714a734f6ef5bcde1074fc9fc3a628647.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 502, + 141.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 141.33333333333334, + 502, + 203.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 203.66666666666669, + 502, + 266.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 279, + 182, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 277, + 183, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 183, + 293 + ], + "score": 1.0, + "content": "D.3.2 AIRRAID", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 106, + 336, + 494, + 497 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 336, + 494, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 336, + 494, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 494, + 497 + ], + "score": 0.959, + "type": "image", + "image_path": "85094ab825ca6e44979caac1f4c19807a1f21d6d7dc62408868753eead8a07cb.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 336, + 494, + 389.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 389.6666666666667, + 494, + 443.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 443.33333333333337, + 494, + 497.00000000000006 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 510, + 171, + 521 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 508, + 172, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 172, + 523 + ], + "score": 1.0, + "content": "D.3.3 ALIEN", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 106, + 568, + 494, + 729 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 568, + 494, + 729 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 568, + 494, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 494, + 729 + ], + "score": 0.952, + "type": "image", + "image_path": "48e351ba6ebf8b95c44d9513e147b787b491b7a86b340b2151c2328c07b0f6d3.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 106, + 568, + 494, + 621.6666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 621.6666666666666, + 494, + 675.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 675.3333333333333, + 494, + 728.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9 + } + ], + "page_idx": 24, + "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": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 106, + 79, + 502, + 266 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 79, + 502, + 266 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 79, + 502, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 502, + 266 + ], + "score": 0.967, + "type": "image", + "image_path": "bf42aa71d5dd9cde0b2208d610c62a8714a734f6ef5bcde1074fc9fc3a628647.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 106, + 79, + 502, + 141.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 106, + 141.33333333333334, + 502, + 203.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 203.66666666666669, + 502, + 266.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 279, + 182, + 290 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 277, + 183, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 183, + 293 + ], + "score": 1.0, + "content": "D.3.2 AIRRAID", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 106, + 336, + 494, + 497 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 336, + 494, + 497 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 336, + 494, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 494, + 497 + ], + "score": 0.959, + "type": "image", + "image_path": "85094ab825ca6e44979caac1f4c19807a1f21d6d7dc62408868753eead8a07cb.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 106, + 336, + 494, + 389.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 106, + 389.6666666666667, + 494, + 443.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 443.33333333333337, + 494, + 497.00000000000006 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 510, + 171, + 521 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 508, + 172, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 172, + 523 + ], + "score": 1.0, + "content": "D.3.3 ALIEN", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 106, + 568, + 494, + 729 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 568, + 494, + 729 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 568, + 494, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 494, + 729 + ], + "score": 0.952, + "type": "image", + "image_path": "48e351ba6ebf8b95c44d9513e147b787b491b7a86b340b2151c2328c07b0f6d3.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 106, + 568, + 494, + 621.6666666666666 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 106, + 621.6666666666666, + 494, + 675.3333333333333 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 675.3333333333333, + 494, + 728.9999999999999 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 9 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 188, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 189, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 189, + 95 + ], + "score": 1.0, + "content": "D.3.4 CARNIVAL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 106, + 127, + 494, + 291 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 127, + 494, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 127, + 494, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 494, + 291 + ], + "score": 0.96, + "type": "image", + "image_path": "cb7bdbc58244c72eb7f96087d8f99c212538bc8d2a6838fcedd0908fdda963f4.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 127, + 494, + 181.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 181.66666666666666, + 494, + 236.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 236.33333333333331, + 494, + 291.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 106, + 303, + 194, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 195, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 195, + 316 + ], + "score": 1.0, + "content": "D.3.5 MSPACMAN", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "image", + "bbox": [ + 106, + 347, + 494, + 510 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 347, + 494, + 510 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 347, + 494, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 494, + 510 + ], + "score": 0.962, + "type": "image", + "image_path": "a5abc9581c689cca51328a312effb4d1315aa6f79fc6d88bdcb7026ba4103cf6.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 347, + 494, + 401.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 401.3333333333333, + 494, + 455.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 455.66666666666663, + 494, + 509.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 107, + 523, + 182, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 183, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 183, + 536 + ], + "score": 1.0, + "content": "D.3.6 PHOENIX", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "image", + "bbox": [ + 106, + 569, + 493, + 729 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 569, + 493, + 729 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 569, + 493, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 493, + 729 + ], + "score": 0.963, + "type": "image", + "image_path": "cf49c149bb345b5c547c2f7a014571840c0801ce73383a87f4d4f7cef1e2e3b3.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 106, + 569, + 493, + 622.3333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 622.3333333333334, + 493, + 675.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 675.6666666666667, + 493, + 729.0000000000001 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 10 + } + ], + "page_idx": 25, + "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": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "26", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 82, + 188, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 189, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 189, + 95 + ], + "score": 1.0, + "content": "D.3.4 CARNIVAL", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 106, + 127, + 494, + 291 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 127, + 494, + 291 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 127, + 494, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 127, + 494, + 291 + ], + "score": 0.96, + "type": "image", + "image_path": "cb7bdbc58244c72eb7f96087d8f99c212538bc8d2a6838fcedd0908fdda963f4.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 127, + 494, + 181.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 181.66666666666666, + 494, + 236.33333333333331 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 236.33333333333331, + 494, + 291.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 106, + 303, + 194, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 302, + 195, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 302, + 195, + 316 + ], + "score": 1.0, + "content": "D.3.5 MSPACMAN", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "image", + "bbox": [ + 106, + 347, + 494, + 510 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 347, + 494, + 510 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 347, + 494, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 494, + 510 + ], + "score": 0.962, + "type": "image", + "image_path": "a5abc9581c689cca51328a312effb4d1315aa6f79fc6d88bdcb7026ba4103cf6.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 106, + 347, + 494, + 401.3333333333333 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 106, + 401.3333333333333, + 494, + 455.66666666666663 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 106, + 455.66666666666663, + 494, + 509.99999999999994 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 6 + }, + { + "type": "title", + "bbox": [ + 107, + 523, + 182, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 183, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 183, + 536 + ], + "score": 1.0, + "content": "D.3.6 PHOENIX", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "image", + "bbox": [ + 106, + 569, + 493, + 729 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 569, + 493, + 729 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 106, + 569, + 493, + 729 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 493, + 729 + ], + "score": 0.963, + "type": "image", + "image_path": "cf49c149bb345b5c547c2f7a014571840c0801ce73383a87f4d4f7cef1e2e3b3.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 106, + 569, + 493, + 622.3333333333334 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 106, + 622.3333333333334, + 493, + 675.6666666666667 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 106, + 675.6666666666667, + 493, + 729.0000000000001 + ], + "spans": [], + "index": 11 + } + ] + } + ], + "index": 10 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 83, + 188, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 190, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 190, + 95 + ], + "score": 1.0, + "content": "D.3.7 SEAQUEST", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 106, + 99, + 495, + 261 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 99, + 495, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 99, + 495, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 495, + 261 + ], + "score": 0.966, + "type": "image", + "image_path": "1d24dc2bcfc04cc0bcd6821de6a30c5b669dfedf1ac61a7d39ef506aaae133e5.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 99, + 495, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 153.0, + 495, + 207.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 207.0, + 495, + 261.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + } + ], + "page_idx": 26, + "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": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 106, + 83, + 188, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 190, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 190, + 95 + ], + "score": 1.0, + "content": "D.3.7 SEAQUEST", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image", + "bbox": [ + 106, + 99, + 495, + 261 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 106, + 99, + 495, + 261 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 99, + 495, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 495, + 261 + ], + "score": 0.966, + "type": "image", + "image_path": "1d24dc2bcfc04cc0bcd6821de6a30c5b669dfedf1ac61a7d39ef506aaae133e5.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 106, + 99, + 495, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 106, + 153.0, + 495, + 207.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 207.0, + 495, + 261.0 + ], + "spans": [], + "index": 3 + } + ] + } + ], + "index": 2 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/BkMWx309FX/BkMWx309FX_model.json b/parse/train/BkMWx309FX/BkMWx309FX_model.json new file mode 100644 index 0000000000000000000000000000000000000000..af8fd5f4a942525e709547d1c80ec93b49a2b18c --- /dev/null +++ b/parse/train/BkMWx309FX/BkMWx309FX_model.json @@ -0,0 +1,54347 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 584, + 1302, + 584, + 1302, + 1165, + 398, + 1165 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1403, + 1820, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1289, + 1402, + 1289, + 1402, + 1443, + 297, + 1443 + ], + "score": 0.971 + }, + { + "category_id": 0, + "poly": [ + 298, + 220, + 1011, + 220, + 1011, + 324, + 298, + 324 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 297, + 1469, + 1405, + 1469, + 1405, + 1795, + 297, + 1795 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 680, + 377, + 680, + 437, + 313, + 437 + ], + "score": 0.934 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 302, + 1221, + 573, + 1221, + 573, + 1256, + 302, + 1256 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 773, + 519, + 927, + 519, + 927, + 553, + 773, + 553 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 857, + 2088, + 857, + 2112, + 842, + 2112 + ], + "score": 0.633 + }, + { + "category_id": 13, + "poly": [ + 444, + 1105, + 519, + 1105, + 519, + 1133, + 444, + 1133 + ], + "score": 0.88, + "latex": "4 6 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 397, + 1135, + 451, + 1135, + 451, + 1164, + 397, + 1164 + ], + "score": 0.87, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1074, + 1302, + 1074, + 1302, + 1103, + 1226, + 1103 + ], + "score": 0.85, + "latex": "6 7 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 501, + 1135, + 556, + 1135, + 556, + 1164, + 501, + 1164 + ], + "score": 0.85, + "latex": "30 \\%" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 219.0, + 1016.0, + 219.0, + 1016.0, + 269.0, + 295.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 274.0, + 767.0, + 274.0, + 767.0, + 326.0, + 295.0, + 326.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, + 1218.0, + 579.0, + 1218.0, + 579.0, + 1265.0, + 294.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 518.0, + 932.0, + 518.0, + 932.0, + 556.0, + 770.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 2088.0, + 858.0, + 2088.0, + 858.0, + 2116.0, + 841.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 588.0, + 1304.0, + 588.0, + 1304.0, + 618.0, + 396.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 616.0, + 1305.0, + 616.0, + 1305.0, + 652.0, + 394.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 644.0, + 1305.0, + 644.0, + 1305.0, + 685.0, + 392.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 679.0, + 1305.0, + 679.0, + 1305.0, + 712.0, + 395.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 710.0, + 1305.0, + 710.0, + 1305.0, + 743.0, + 394.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 739.0, + 1305.0, + 739.0, + 1305.0, + 772.0, + 394.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 769.0, + 1305.0, + 769.0, + 1305.0, + 804.0, + 394.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 800.0, + 1305.0, + 800.0, + 1305.0, + 833.0, + 394.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 831.0, + 1305.0, + 831.0, + 1305.0, + 863.0, + 393.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 859.0, + 1306.0, + 859.0, + 1306.0, + 897.0, + 392.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 890.0, + 1306.0, + 890.0, + 1306.0, + 927.0, + 394.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 920.0, + 1304.0, + 920.0, + 1304.0, + 958.0, + 392.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 951.0, + 1305.0, + 951.0, + 1305.0, + 986.0, + 394.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 984.0, + 1305.0, + 984.0, + 1305.0, + 1017.0, + 395.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1012.0, + 1306.0, + 1012.0, + 1306.0, + 1047.0, + 393.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1042.0, + 1306.0, + 1042.0, + 1306.0, + 1080.0, + 392.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1076.0, + 1225.0, + 1076.0, + 1225.0, + 1105.0, + 396.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1104.0, + 443.0, + 1104.0, + 443.0, + 1139.0, + 394.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1104.0, + 1306.0, + 1104.0, + 1306.0, + 1139.0, + 520.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1133.0, + 500.0, + 1133.0, + 500.0, + 1170.0, + 452.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1133.0, + 703.0, + 1133.0, + 703.0, + 1170.0, + 557.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1817.0, + 1404.0, + 1817.0, + 1404.0, + 1858.0, + 292.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1884.0, + 294.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1408.0, + 1880.0, + 1408.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1914.0, + 1405.0, + 1914.0, + 1405.0, + 1944.0, + 294.0, + 1944.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": [ + 293.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1186.0, + 2002.0, + 1186.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1289.0, + 1404.0, + 1289.0, + 1404.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1322.0, + 1404.0, + 1322.0, + 1404.0, + 1355.0, + 295.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1350.0, + 1406.0, + 1350.0, + 1406.0, + 1386.0, + 293.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1381.0, + 1407.0, + 1381.0, + 1407.0, + 1420.0, + 291.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1412.0, + 1067.0, + 1412.0, + 1067.0, + 1445.0, + 295.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1405.0, + 1467.0, + 1405.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1500.0, + 1218.0, + 1500.0, + 1218.0, + 1534.0, + 321.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1576.0, + 299.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1570.0, + 1405.0, + 1570.0, + 1405.0, + 1604.0, + 324.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1601.0, + 1406.0, + 1601.0, + 1406.0, + 1637.0, + 320.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1632.0, + 876.0, + 1632.0, + 876.0, + 1666.0, + 321.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1671.0, + 1403.0, + 1671.0, + 1403.0, + 1707.0, + 297.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1700.0, + 1406.0, + 1700.0, + 1406.0, + 1740.0, + 320.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1730.0, + 1405.0, + 1730.0, + 1405.0, + 1771.0, + 320.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1763.0, + 720.0, + 1763.0, + 720.0, + 1799.0, + 321.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 378.0, + 560.0, + 378.0, + 560.0, + 410.0, + 315.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 406.0, + 681.0, + 406.0, + 681.0, + 441.0, + 312.0, + 441.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1438, + 1404, + 1438, + 1404, + 1773, + 298, + 1773 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 489, + 1404, + 489, + 1404, + 827, + 298, + 827 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 475, + 298, + 475 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1040, + 1404, + 1040, + 1404, + 1257, + 298, + 1257 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 841, + 1403, + 841, + 1403, + 1025, + 299, + 1025 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 1788, + 1403, + 1788, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 302, + 1355, + 562, + 1355, + 562, + 1387, + 302, + 1387 + ], + "score": 0.88 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 857, + 76, + 857, + 104, + 299, + 104 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.701 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.161 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 855, + 76, + 855, + 104, + 300, + 104 + ], + "score": 0.114 + }, + { + "category_id": 13, + "poly": [ + 477, + 1195, + 502, + 1195, + 502, + 1226, + 477, + 1226 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1030, + 353, + 1055, + 353, + 1055, + 384, + 1030, + 384 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1059, + 797, + 1084, + 797, + 1084, + 828, + 1059, + 828 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 366, + 323, + 390, + 323, + 390, + 353, + 366, + 353 + ], + "score": 0.79, + "latex": "Q" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1352.0, + 569.0, + 1352.0, + 569.0, + 1392.0, + 296.0, + 1392.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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 859.0, + 73.0, + 859.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1440.0, + 1402.0, + 1440.0, + 1402.0, + 1471.0, + 296.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1468.0, + 1405.0, + 1468.0, + 1405.0, + 1503.0, + 292.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1534.0, + 296.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1566.0, + 292.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1596.0, + 294.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1589.0, + 1405.0, + 1589.0, + 1405.0, + 1627.0, + 293.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1649.0, + 1405.0, + 1649.0, + 1405.0, + 1688.0, + 291.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1683.0, + 1402.0, + 1683.0, + 1402.0, + 1714.0, + 296.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 1405.0, + 1713.0, + 1405.0, + 1748.0, + 293.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 733.0, + 1743.0, + 733.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 490.0, + 1404.0, + 490.0, + 1404.0, + 525.0, + 296.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1404.0, + 519.0, + 1404.0, + 560.0, + 293.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 1405.0, + 552.0, + 1405.0, + 585.0, + 294.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 585.0, + 1404.0, + 585.0, + 1404.0, + 616.0, + 296.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 613.0, + 1404.0, + 613.0, + 1404.0, + 648.0, + 293.0, + 648.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": [ + 293.0, + 674.0, + 1406.0, + 674.0, + 1406.0, + 708.0, + 293.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 704.0, + 1406.0, + 704.0, + 1406.0, + 738.0, + 293.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 735.0, + 1406.0, + 735.0, + 1406.0, + 770.0, + 294.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 800.0, + 293.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 795.0, + 1058.0, + 795.0, + 1058.0, + 832.0, + 293.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 795.0, + 1364.0, + 795.0, + 1364.0, + 832.0, + 1085.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1407.0, + 229.0, + 1407.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 297.0, + 293.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 290.0, + 1405.0, + 290.0, + 1405.0, + 330.0, + 293.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 321.0, + 365.0, + 321.0, + 365.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 321.0, + 1407.0, + 321.0, + 1407.0, + 357.0, + 391.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 350.0, + 1029.0, + 350.0, + 1029.0, + 389.0, + 292.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 389.0, + 1056.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1404.0, + 382.0, + 1404.0, + 419.0, + 293.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 414.0, + 1405.0, + 414.0, + 1405.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 443.0, + 1118.0, + 443.0, + 1118.0, + 481.0, + 293.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1038.0, + 1405.0, + 1038.0, + 1405.0, + 1079.0, + 293.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1073.0, + 1404.0, + 1073.0, + 1404.0, + 1108.0, + 293.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1101.0, + 1405.0, + 1101.0, + 1405.0, + 1139.0, + 293.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1167.0, + 293.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1163.0, + 1405.0, + 1163.0, + 1405.0, + 1198.0, + 292.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1194.0, + 476.0, + 1194.0, + 476.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1194.0, + 1404.0, + 1194.0, + 1404.0, + 1229.0, + 503.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1225.0, + 1155.0, + 1225.0, + 1155.0, + 1260.0, + 296.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 877.0, + 297.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 872.0, + 1405.0, + 872.0, + 1405.0, + 908.0, + 295.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 905.0, + 1405.0, + 905.0, + 1405.0, + 937.0, + 295.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 933.0, + 1404.0, + 933.0, + 1404.0, + 967.0, + 294.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 963.0, + 1407.0, + 963.0, + 1407.0, + 999.0, + 294.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1256.0, + 995.0, + 1256.0, + 1029.0, + 294.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 1408.0, + 1789.0, + 1408.0, + 1826.0, + 293.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1851.0, + 1407.0, + 1851.0, + 1407.0, + 1885.0, + 296.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1405.0, + 1880.0, + 1405.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1402.0, + 1912.0, + 1402.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1403.0, + 1972.0, + 1403.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2005.0, + 1167.0, + 2005.0, + 1167.0, + 2036.0, + 297.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 634, + 1404, + 634, + 1404, + 1102, + 297, + 1102 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1418, + 1404, + 1418, + 1404, + 1726, + 298, + 1726 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 314, + 1404, + 314, + 1404, + 498, + 298, + 498 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1236, + 1403, + 1236, + 1403, + 1401, + 299, + 1401 + ], + "score": 0.977 + }, + { + "category_id": 2, + "poly": [ + 296, + 1910, + 1404, + 1910, + 1404, + 2034, + 296, + 2034 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 300, + 1742, + 1400, + 1742, + 1400, + 1835, + 300, + 1835 + ], + "score": 0.957 + }, + { + "category_id": 0, + "poly": [ + 301, + 1167, + 699, + 1167, + 699, + 1198, + 301, + 1198 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.874 + }, + { + "category_id": 0, + "poly": [ + 298, + 229, + 1010, + 229, + 1010, + 261, + 298, + 261 + ], + "score": 0.68 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.637 + }, + { + "category_id": 1, + "poly": [ + 298, + 564, + 1043, + 564, + 1043, + 596, + 298, + 596 + ], + "score": 0.496 + }, + { + "category_id": 0, + "poly": [ + 298, + 564, + 1043, + 564, + 1043, + 596, + 298, + 596 + ], + "score": 0.424 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.369 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1010, + 229, + 1010, + 261, + 298, + 261 + ], + "score": 0.214 + }, + { + "category_id": 13, + "poly": [ + 721, + 817, + 798, + 817, + 798, + 851, + 721, + 851 + ], + "score": 0.93, + "latex": "\\pi ( a | s )" + }, + { + "category_id": 13, + "poly": [ + 705, + 1332, + 792, + 1332, + 792, + 1367, + 705, + 1367 + ], + "score": 0.93, + "latex": "\\tilde { r } _ { t } \\in \\tilde { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 376, + 910, + 542, + 910, + 542, + 945, + 376, + 945 + ], + "score": 0.92, + "latex": "0 ~ \\leq ~ \\gamma ~ \\leq ~ 1 ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 573, + 726, + 805, + 726, + 805, + 759, + 573, + 759 + ], + "score": 0.92, + "latex": "r ( s _ { t } , a _ { t } , s _ { t + 1 } ) \\ \\in \\ \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 376, + 696, + 612, + 696, + 612, + 728, + 376, + 728 + ], + "score": 0.92, + "latex": "\\mathcal { M } = \\langle \\boldsymbol { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\boldsymbol { \\gamma } \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1300, + 696, + 1394, + 696, + 1394, + 726, + 1300, + 726 + ], + "score": 0.92, + "latex": "a _ { t } \\in \\mathcal A" + }, + { + "category_id": 13, + "poly": [ + 365, + 788, + 495, + 788, + 495, + 819, + 365, + 819 + ], + "score": 0.92, + "latex": "\\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } \\big )" + }, + { + "category_id": 13, + "poly": [ + 1049, + 1938, + 1307, + 1938, + 1307, + 1973, + 1049, + 1973 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { M } } = \\langle S , \\mathcal { A } , \\mathcal { R } , \\tilde { \\mathcal { R } } , \\mathcal { P } , \\gamma \\rangle" + }, + { + "category_id": 13, + "poly": [ + 447, + 1304, + 538, + 1304, + 538, + 1334, + 447, + 1334 + ], + "score": 0.92, + "latex": "\\boldsymbol { r } _ { t } \\in \\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 805, + 1417, + 989, + 1417, + 989, + 1451, + 805, + 1451 + ], + "score": 0.92, + "latex": "C : \\mathcal { S } \\times \\mathcal { R } \\tilde { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1268, + 1300, + 1268, + 1300, + 1306, + 1000, + 1306 + ], + "score": 0.91, + "latex": "\\tilde { \\mathcal { M } } = \\langle \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , C , \\mathcal { P } , \\gamma \\rangle ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 378, + 1606, + 469, + 1606, + 469, + 1636, + 378, + 1636 + ], + "score": 0.91, + "latex": "\\mathbf { C } _ { M \\times M }" + }, + { + "category_id": 13, + "poly": [ + 1023, + 696, + 1114, + 696, + 1114, + 726, + 1023, + 726 + ], + "score": 0.91, + "latex": "s _ { t } ~ \\in ~ S" + }, + { + "category_id": 13, + "poly": [ + 297, + 1546, + 553, + 1546, + 553, + 1576, + 297, + 1576 + ], + "score": 0.91, + "latex": "r _ { + } | r ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } )" + }, + { + "category_id": 13, + "poly": [ + 409, + 1635, + 720, + 1635, + 720, + 1670, + 409, + 1670 + ], + "score": 0.91, + "latex": "c _ { j , k } = \\mathbb { P } ( \\tilde { r } _ { t } = R _ { k } | r _ { t } = \\tilde { R _ { j } } )" + }, + { + "category_id": 13, + "poly": [ + 457, + 758, + 571, + 758, + 571, + 789, + 457, + 789 + ], + "score": 0.9, + "latex": "s _ { t + 1 } \\in S" + }, + { + "category_id": 13, + "poly": [ + 521, + 1575, + 756, + 1575, + 756, + 1607, + 521, + 1607 + ], + "score": 0.9, + "latex": "[ R _ { 0 } , R _ { 1 } , \\cdot \\cdot \\cdot , R _ { M - 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 637, + 1482, + 848, + 1482, + 848, + 1515, + 637, + 1515 + ], + "score": 0.89, + "latex": "\\bar { \\tilde { r } } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ ( \\tilde { r } _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1115, + 1514, + 1403, + 1514, + 1403, + 1545, + 1115, + 1545 + ], + "score": 0.87, + "latex": "e _ { - } ~ = ~ \\mathbb { P } ( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) ~ =" + }, + { + "category_id": 13, + "poly": [ + 678, + 1611, + 722, + 1611, + 722, + 1637, + 678, + 1637 + ], + "score": 0.85, + "latex": "c _ { j , k }" + }, + { + "category_id": 13, + "poly": [ + 489, + 1487, + 523, + 1487, + 523, + 1515, + 489, + 1515 + ], + "score": 0.85, + "latex": "r _ { + }" + }, + { + "category_id": 13, + "poly": [ + 341, + 974, + 973, + 974, + 973, + 1012, + 341, + 1012 + ], + "score": 0.85, + "latex": "\\begin{array} { r } { V ^ { * } ( s ) \\ = \\ \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { s _ { t + 1 } \\in \\mathcal { S } } \\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right) \\left[ r _ { t } + \\gamma V ^ { * } \\left( s _ { t + 1 } \\right) \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1009, + 1052, + 1009, + 1052, + 1041, + 1027, + 1041 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1054, + 1972, + 1077, + 1972, + 1077, + 2000, + 1054, + 2000 + ], + "score": 0.84, + "latex": "\\tilde { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 296, + 1070, + 945, + 1070, + 945, + 1103, + 296, + 1103 + ], + "score": 0.83, + "latex": "\\begin{array} { r } { Q ^ { \\pi } ( s , a ) = \\mathbb { E } _ { \\pi } \\left[ r ( s _ { t } , a _ { t } , s _ { t + 1 } ) + \\gamma V ^ { \\pi } ( s _ { t + 1 } ) \\ | \\ s _ { t } = s , a _ { t } = a \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1178, + 1009, + 1204, + 1009, + 1204, + 1041, + 1178, + 1041 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 531, + 1341, + 556, + 1341, + 556, + 1367, + 531, + 1367 + ], + "score": 0.83, + "latex": "r _ { t }" + }, + { + "category_id": 13, + "poly": [ + 342, + 1910, + 407, + 1910, + 407, + 1942, + 342, + 1942 + ], + "score": 0.83, + "latex": "\\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 981, + 877, + 1396, + 877, + 1396, + 914, + 981, + 914 + ], + "score": 0.83, + "latex": "V ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\bar { \\sum _ { k = 1 } ^ { \\infty } } \\gamma ^ { k } r _ { t + k } \\ : | \\ : s _ { t } = s \\right] ," + }, + { + "category_id": 13, + "poly": [ + 650, + 788, + 675, + 788, + 675, + 815, + 650, + 815 + ], + "score": 0.83, + "latex": "\\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 917, + 882, + 944, + 882, + 944, + 909, + 917, + 909 + ], + "score": 0.82, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 768, + 1575, + 794, + 1575, + 794, + 1605, + 768, + 1605 + ], + "score": 0.81, + "latex": "\\tilde { r } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 983, + 1975, + 1008, + 1975, + 1008, + 2000, + 983, + 2000 + ], + "score": 0.8, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 1069, + 758, + 1094, + 758, + 1094, + 785, + 1069, + 785 + ], + "score": 0.8, + "latex": "\\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 409, + 1366, + 436, + 1366, + 436, + 1398, + 409, + 1398 + ], + "score": 0.8, + "latex": "\\tilde { \\mathcal { R } }" + }, + { + "category_id": 13, + "poly": [ + 499, + 1424, + 515, + 1424, + 515, + 1449, + 499, + 1449 + ], + "score": 0.8, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 579, + 1486, + 612, + 1486, + 612, + 1514, + 579, + 1514 + ], + "score": 0.8, + "latex": "r _ { - }" + }, + { + "category_id": 13, + "poly": [ + 515, + 1975, + 538, + 1975, + 538, + 2000, + 515, + 2000 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1206, + 730, + 1234, + 730, + 1234, + 757, + 1206, + 757 + ], + "score": 0.79, + "latex": "r _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1254, + 1546, + 1287, + 1546, + 1287, + 1571, + 1254, + 1571 + ], + "score": 0.78, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 511, + 884, + 533, + 884, + 533, + 906, + 511, + 906 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 863, + 1046, + 882, + 1046, + 882, + 1067, + 863, + 1067 + ], + "score": 0.74, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 430, + 1519, + 506, + 1519, + 506, + 1545, + 430, + 1545 + ], + "score": 0.74, + "latex": "e _ { + } , e _ { - }" + }, + { + "category_id": 13, + "poly": [ + 689, + 1305, + 705, + 1305, + 705, + 1330, + 689, + 1330 + ], + "score": 0.74, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1256, + 1045, + 1278, + 1045, + 1278, + 1067, + 1256, + 1067 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 790, + 699, + 804, + 699, + 804, + 723, + 790, + 723 + ], + "score": 0.73, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 372, + 1369, + 397, + 1369, + 397, + 1398, + 372, + 1398 + ], + "score": 0.7, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 543, + 1515, + 1095, + 1515, + 1095, + 1546, + 543, + 1546 + ], + "score": 0.67, + "latex": "\\mathbf { \\Phi } _ { + } \\ = \\ \\mathbb { P } \\big ( \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { - } \\big | r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\ = \\ r _ { + } \\big )" + }, + { + "category_id": 13, + "poly": [ + 981, + 878, + 1130, + 878, + 1130, + 912, + 981, + 912 + ], + "score": 0.29, + "latex": "V ^ { \\pi } ( s ) \\ : = \\ : \\mathbb { E } _ { \\pi }" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1905.0, + 341.0, + 1905.0, + 341.0, + 1945.0, + 330.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1905.0, + 1275.0, + 1905.0, + 1275.0, + 1945.0, + 408.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1937.0, + 1048.0, + 1937.0, + 1048.0, + 1977.0, + 327.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1937.0, + 1406.0, + 1937.0, + 1406.0, + 1977.0, + 1308.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 514.0, + 1974.0, + 514.0, + 2005.0, + 294.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1974.0, + 982.0, + 1974.0, + 982.0, + 2005.0, + 539.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1974.0, + 1053.0, + 1974.0, + 1053.0, + 2005.0, + 1009.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1974.0, + 1088.0, + 1974.0, + 1088.0, + 2005.0, + 1078.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1999.0, + 1099.0, + 1999.0, + 1099.0, + 2039.0, + 329.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1166.0, + 703.0, + 1166.0, + 703.0, + 1202.0, + 295.0, + 1202.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": [ + 291.0, + 223.0, + 1014.0, + 223.0, + 1014.0, + 269.0, + 291.0, + 269.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": [ + 293.0, + 562.0, + 1048.0, + 562.0, + 1048.0, + 600.0, + 293.0, + 600.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, + 633.0, + 1404.0, + 633.0, + 1404.0, + 665.0, + 296.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 665.0, + 1405.0, + 665.0, + 1405.0, + 697.0, + 296.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 693.0, + 375.0, + 693.0, + 375.0, + 731.0, + 291.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 693.0, + 789.0, + 693.0, + 789.0, + 731.0, + 613.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 693.0, + 1022.0, + 693.0, + 1022.0, + 731.0, + 805.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 693.0, + 1299.0, + 693.0, + 1299.0, + 731.0, + 1115.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 693.0, + 1406.0, + 693.0, + 1406.0, + 731.0, + 1395.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 722.0, + 572.0, + 722.0, + 572.0, + 765.0, + 292.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 722.0, + 1205.0, + 722.0, + 1205.0, + 765.0, + 806.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 722.0, + 1409.0, + 722.0, + 1409.0, + 765.0, + 1235.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 754.0, + 456.0, + 754.0, + 456.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 754.0, + 1068.0, + 754.0, + 1068.0, + 793.0, + 572.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 754.0, + 1405.0, + 754.0, + 1405.0, + 793.0, + 1095.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 783.0, + 364.0, + 783.0, + 364.0, + 824.0, + 291.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 783.0, + 649.0, + 783.0, + 649.0, + 824.0, + 496.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 783.0, + 1405.0, + 783.0, + 1405.0, + 824.0, + 676.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 816.0, + 720.0, + 816.0, + 720.0, + 852.0, + 294.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 816.0, + 1405.0, + 816.0, + 1405.0, + 852.0, + 799.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 845.0, + 1405.0, + 845.0, + 1405.0, + 884.0, + 292.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 864.0, + 510.0, + 864.0, + 510.0, + 928.0, + 285.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 864.0, + 916.0, + 864.0, + 916.0, + 928.0, + 534.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 864.0, + 980.0, + 864.0, + 980.0, + 928.0, + 945.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 864.0, + 1411.0, + 864.0, + 1411.0, + 928.0, + 1397.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 911.0, + 375.0, + 911.0, + 375.0, + 947.0, + 295.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 911.0, + 1406.0, + 911.0, + 1406.0, + 947.0, + 543.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 942.0, + 1404.0, + 942.0, + 1404.0, + 977.0, + 294.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 967.0, + 340.0, + 967.0, + 340.0, + 1023.0, + 287.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 967.0, + 1410.0, + 967.0, + 1410.0, + 1023.0, + 974.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1007.0, + 1026.0, + 1007.0, + 1026.0, + 1043.0, + 295.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 1007.0, + 1177.0, + 1007.0, + 1177.0, + 1043.0, + 1053.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1007.0, + 1406.0, + 1007.0, + 1406.0, + 1043.0, + 1205.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1040.0, + 862.0, + 1040.0, + 862.0, + 1072.0, + 296.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1040.0, + 1255.0, + 1040.0, + 1255.0, + 1072.0, + 883.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1040.0, + 1402.0, + 1040.0, + 1402.0, + 1072.0, + 1279.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1070.0, + 955.0, + 1070.0, + 955.0, + 1105.0, + 946.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1419.0, + 498.0, + 1419.0, + 498.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1419.0, + 804.0, + 1419.0, + 804.0, + 1455.0, + 516.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 1419.0, + 1404.0, + 1419.0, + 1404.0, + 1455.0, + 990.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1487.0, + 294.0, + 1487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 488.0, + 1480.0, + 488.0, + 1518.0, + 293.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1480.0, + 578.0, + 1480.0, + 578.0, + 1518.0, + 524.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1480.0, + 636.0, + 1480.0, + 636.0, + 1518.0, + 613.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1518.0, + 849.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1515.0, + 429.0, + 1515.0, + 429.0, + 1549.0, + 293.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1515.0, + 542.0, + 1515.0, + 542.0, + 1549.0, + 507.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1515.0, + 1114.0, + 1515.0, + 1114.0, + 1549.0, + 1096.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1541.0, + 296.0, + 1541.0, + 296.0, + 1580.0, + 292.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1541.0, + 1253.0, + 1541.0, + 1253.0, + 1580.0, + 554.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1541.0, + 1406.0, + 1541.0, + 1406.0, + 1580.0, + 1288.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1575.0, + 520.0, + 1575.0, + 520.0, + 1610.0, + 294.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1575.0, + 767.0, + 1575.0, + 767.0, + 1610.0, + 757.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1575.0, + 1404.0, + 1575.0, + 1404.0, + 1610.0, + 795.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 377.0, + 1604.0, + 377.0, + 1640.0, + 294.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1604.0, + 677.0, + 1604.0, + 677.0, + 1640.0, + 470.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1604.0, + 1405.0, + 1604.0, + 1405.0, + 1640.0, + 723.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1633.0, + 408.0, + 1633.0, + 408.0, + 1669.0, + 292.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1633.0, + 1406.0, + 1633.0, + 1406.0, + 1669.0, + 721.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1665.0, + 1405.0, + 1665.0, + 1405.0, + 1701.0, + 294.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1696.0, + 747.0, + 1696.0, + 747.0, + 1728.0, + 296.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 308.0, + 1404.0, + 308.0, + 1404.0, + 354.0, + 291.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 343.0, + 1405.0, + 343.0, + 1405.0, + 379.0, + 295.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 374.0, + 1406.0, + 374.0, + 1406.0, + 410.0, + 293.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 405.0, + 1404.0, + 405.0, + 1404.0, + 439.0, + 293.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 435.0, + 1406.0, + 435.0, + 1406.0, + 471.0, + 294.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 468.0, + 1071.0, + 468.0, + 1071.0, + 500.0, + 296.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1238.0, + 1403.0, + 1238.0, + 1403.0, + 1271.0, + 295.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1270.0, + 999.0, + 1270.0, + 999.0, + 1308.0, + 292.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1270.0, + 1407.0, + 1270.0, + 1407.0, + 1308.0, + 1301.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1302.0, + 446.0, + 1302.0, + 446.0, + 1339.0, + 294.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1302.0, + 688.0, + 1302.0, + 688.0, + 1339.0, + 539.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1302.0, + 1408.0, + 1302.0, + 1408.0, + 1339.0, + 706.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1336.0, + 530.0, + 1336.0, + 530.0, + 1372.0, + 293.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1336.0, + 704.0, + 1336.0, + 704.0, + 1372.0, + 557.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 1336.0, + 1407.0, + 1336.0, + 1407.0, + 1372.0, + 793.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1368.0, + 371.0, + 1368.0, + 371.0, + 1407.0, + 294.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1368.0, + 408.0, + 1368.0, + 408.0, + 1407.0, + 398.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1368.0, + 1264.0, + 1368.0, + 1264.0, + 1407.0, + 437.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1404.0, + 1743.0, + 1404.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1404.0, + 1774.0, + 1404.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1804.0, + 1251.0, + 1804.0, + 1251.0, + 1838.0, + 295.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 562.0, + 1048.0, + 562.0, + 1048.0, + 600.0, + 293.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 223.0, + 1014.0, + 223.0, + 1014.0, + 269.0, + 291.0, + 269.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1866, + 1404, + 1866, + 1404, + 2054, + 297, + 2054 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1200, + 1405, + 1200, + 1405, + 1386, + 297, + 1386 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 479, + 1403, + 479, + 1403, + 605, + 297, + 605 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 293, + 1404, + 293, + 1404, + 387, + 297, + 387 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 797, + 1400, + 797, + 1400, + 920, + 299, + 920 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 933, + 1404, + 933, + 1404, + 1063, + 297, + 1063 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 523, + 646, + 1173, + 646, + 1173, + 733, + 523, + 733 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 297, + 1399, + 1398, + 1399, + 1398, + 1464, + 297, + 1464 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 292, + 1555, + 1401, + 1555, + 1401, + 1619, + 292, + 1619 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 504, + 1737, + 1194, + 1737, + 1194, + 1804, + 504, + 1804 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 295, + 1664, + 1400, + 1664, + 1400, + 1730, + 295, + 1730 + ], + "score": 0.936 + }, + { + "category_id": 0, + "poly": [ + 298, + 225, + 922, + 225, + 922, + 263, + 298, + 263 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 305, + 741, + 1085, + 741, + 1085, + 778, + 305, + 778 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 303, + 1151, + 1085, + 1151, + 1085, + 1189, + 303, + 1189 + ], + "score": 0.926 + }, + { + "category_id": 8, + "poly": [ + 769, + 1106, + 927, + 1106, + 927, + 1142, + 769, + 1142 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 297, + 1066, + 930, + 1066, + 930, + 1100, + 297, + 1100 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.915 + }, + { + "category_id": 1, + "poly": [ + 301, + 1811, + 1232, + 1811, + 1232, + 1849, + 301, + 1849 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 301, + 422, + 878, + 422, + 878, + 455, + 301, + 455 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 303, + 1627, + 1355, + 1627, + 1355, + 1659, + 303, + 1659 + ], + "score": 0.908 + }, + { + "category_id": 1, + "poly": [ + 298, + 607, + 843, + 607, + 843, + 639, + 298, + 639 + ], + "score": 0.906 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1114, + 1400, + 1114, + 1400, + 1142, + 1369, + 1142 + ], + "score": 0.871 + }, + { + "category_id": 9, + "poly": [ + 1369, + 676, + 1401, + 676, + 1401, + 704, + 1369, + 704 + ], + "score": 0.828 + }, + { + "category_id": 0, + "poly": [ + 298, + 1497, + 1059, + 1497, + 1059, + 1532, + 298, + 1532 + ], + "score": 0.792 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.788 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1756, + 1400, + 1756, + 1400, + 1784, + 1369, + 1784 + ], + "score": 0.764 + }, + { + "category_id": 9, + "poly": [ + 1369, + 1757, + 1400, + 1757, + 1400, + 1784, + 1369, + 1784 + ], + "score": 0.236 + }, + { + "category_id": 1, + "poly": [ + 298, + 1497, + 1059, + 1497, + 1059, + 1532, + 298, + 1532 + ], + "score": 0.144 + }, + { + "category_id": 14, + "poly": [ + 505, + 1736, + 1193, + 1736, + 1193, + 1805, + 505, + 1805 + ], + "score": 0.93, + "latex": "Q _ { t + 1 } ( s _ { t } , a _ { t } ) = ( 1 - \\alpha _ { t } ) Q ( s _ { t } , a _ { t } ) + \\alpha _ { t } \\left[ \\hat { r } _ { t } + \\gamma \\operatorname* { m a x } _ { b \\in \\cal A } Q ( { s } _ { t + 1 } , b ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 807, + 1663, + 1050, + 1663, + 1050, + 1703, + 807, + 1703 + ], + "score": 0.93, + "latex": "\\hat { \\mathcal { M } } = \\langle S , \\mathcal { A } , \\hat { \\mathcal { R } } , \\mathcal { P } , \\gamma \\rangle" + }, + { + "category_id": 13, + "poly": [ + 743, + 572, + 907, + 572, + 907, + 606, + 743, + 606 + ], + "score": 0.93, + "latex": "\\mathcal { R } = \\{ r _ { - } , r _ { + } \\}" + }, + { + "category_id": 14, + "poly": [ + 522, + 645, + 1174, + 645, + 1174, + 734, + 522, + 734 + ], + "score": 0.92, + "latex": "\\hat { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) : = \\left\\{ \\begin{array} { l l } { \\frac { ( 1 - e _ { - } ) \\cdot r _ { + } - e _ { + } \\cdot r _ { - } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { + } \\right) } \\\\ { \\frac { ( 1 - e _ { + } ) \\cdot r _ { - } - e _ { - } \\cdot r _ { + } } { 1 - e _ { + } - e _ { - } } } & { \\left( \\tilde { r } ( s _ { t } , a _ { t } , s _ { t + 1 } ) = r _ { - } \\right) } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 529, + 1068, + 619, + 1068, + 619, + 1100, + 529, + 1100 + ], + "score": 0.91, + "latex": "\\mathbf { C } _ { M \\times M }" + }, + { + "category_id": 13, + "poly": [ + 919, + 1003, + 1222, + 1003, + 1222, + 1035, + 919, + 1035 + ], + "score": 0.91, + "latex": "{ \\bf R } = [ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 895, + 1812, + 1034, + 1812, + 1034, + 1849, + 895, + 1849 + ], + "score": 0.9, + "latex": "\\textstyle \\sum _ { t } \\alpha _ { t } = \\infty" + }, + { + "category_id": 13, + "poly": [ + 1005, + 969, + 1134, + 969, + 1134, + 1003, + 1005, + 1003 + ], + "score": 0.89, + "latex": "\\hat { r } ( \\tilde { r } = R _ { m } )" + }, + { + "category_id": 13, + "poly": [ + 376, + 967, + 920, + 967, + 920, + 1004, + 376, + 1004 + ], + "score": 0.87, + "latex": "\\hat { \\mathbf { R } } : = [ \\hat { r } ( \\tilde { r } = R _ { 0 } ) , \\hat { r } ( \\tilde { r } = R _ { 1 } ) , . . . , \\hat { r } ( \\tilde { r } = R _ { M - 1 } ) ]" + }, + { + "category_id": 13, + "poly": [ + 820, + 1004, + 857, + 1004, + 857, + 1032, + 820, + 1032 + ], + "score": 0.87, + "latex": "R _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1086, + 1810, + 1226, + 1810, + 1226, + 1848, + 1086, + 1848 + ], + "score": 0.86, + "latex": "\\textstyle \\sum _ { t } \\alpha _ { t } ^ { 2 } < \\infty" + }, + { + "category_id": 13, + "poly": [ + 827, + 2023, + 851, + 2023, + 851, + 2053, + 827, + 2053 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 777, + 1588, + 802, + 1588, + 802, + 1619, + 777, + 1619 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 895, + 1501, + 919, + 1501, + 919, + 1532, + 895, + 1532 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 647, + 1814, + 671, + 1814, + 671, + 1846, + 647, + 1846 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 14, + "poly": [ + 768, + 1106, + 926, + 1106, + 926, + 1142, + 768, + 1142 + ], + "score": 0.83, + "latex": "\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1871, + 1126, + 1871, + 1126, + 1896, + 1110, + 1896 + ], + "score": 0.83, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 1102, + 1670, + 1127, + 1670, + 1127, + 1701, + 1102, + 1701 + ], + "score": 0.81, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1203, + 1251, + 1203, + 1251, + 1229, + 1218, + 1229 + ], + "score": 0.8, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 516, + 1033, + 549, + 1033, + 549, + 1059, + 516, + 1059 + ], + "score": 0.8, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 487, + 1150, + 1085, + 1150, + 1085, + 1189, + 487, + 1189 + ], + "score": 0.79, + "latex": "r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) ." + }, + { + "category_id": 13, + "poly": [ + 298, + 1264, + 330, + 1264, + 330, + 1291, + 298, + 1291 + ], + "score": 0.76, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 487, + 742, + 1081, + 742, + 1081, + 779, + 487, + 779 + ], + "score": 0.74, + "latex": "r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) ." + }, + { + "category_id": 14, + "poly": [ + 487, + 1150, + 1087, + 1150, + 1087, + 1189, + 487, + 1189 + ], + "score": 0.57, + "latex": "r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\mathbb { E } _ { \\tilde { r } \\mid r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) ." + }, + { + "category_id": 13, + "poly": [ + 655, + 1588, + 683, + 1588, + 683, + 1616, + 655, + 1616 + ], + "score": 0.54, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 1279, + 1901, + 1340, + 1901, + 1340, + 1931, + 1279, + 1931 + ], + "score": 0.5, + "latex": "w . p . I" + }, + { + "category_id": 13, + "poly": [ + 488, + 742, + 645, + 742, + 645, + 778, + 488, + 778 + ], + "score": 0.38, + "latex": "r ( s _ { t } , a _ { t } , s _ { t + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 488, + 1152, + 645, + 1152, + 645, + 1188, + 488, + 1188 + ], + "score": 0.27, + "latex": "r ( s _ { t } , a _ { t } , s _ { t + 1 } )" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 222.0, + 924.0, + 222.0, + 924.0, + 268.0, + 291.0, + 268.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, + 421.0, + 883.0, + 421.0, + 883.0, + 458.0, + 293.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1492.0, + 894.0, + 1492.0, + 894.0, + 1539.0, + 291.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1492.0, + 1062.0, + 1492.0, + 1062.0, + 1539.0, + 920.0, + 1539.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": [ + 292.0, + 1865.0, + 1109.0, + 1865.0, + 1109.0, + 1903.0, + 292.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1865.0, + 1404.0, + 1865.0, + 1404.0, + 1903.0, + 1127.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1897.0, + 1278.0, + 1897.0, + 1278.0, + 1933.0, + 295.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1897.0, + 1404.0, + 1897.0, + 1404.0, + 1933.0, + 1341.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1929.0, + 1406.0, + 1929.0, + 1406.0, + 1964.0, + 292.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1959.0, + 1405.0, + 1959.0, + 1405.0, + 1993.0, + 292.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1991.0, + 1406.0, + 1991.0, + 1406.0, + 2027.0, + 295.0, + 2027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2019.0, + 826.0, + 2019.0, + 826.0, + 2058.0, + 294.0, + 2058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 2019.0, + 970.0, + 2019.0, + 970.0, + 2058.0, + 852.0, + 2058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1199.0, + 1217.0, + 1199.0, + 1217.0, + 1236.0, + 295.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1199.0, + 1405.0, + 1199.0, + 1405.0, + 1236.0, + 1252.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1227.0, + 1406.0, + 1227.0, + 1406.0, + 1270.0, + 292.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1260.0, + 297.0, + 1260.0, + 297.0, + 1297.0, + 294.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1260.0, + 1405.0, + 1260.0, + 1405.0, + 1297.0, + 331.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1292.0, + 1405.0, + 1292.0, + 1405.0, + 1327.0, + 294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1320.0, + 1407.0, + 1320.0, + 1407.0, + 1362.0, + 292.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1366.0, + 1353.0, + 1366.0, + 1389.0, + 294.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 477.0, + 1405.0, + 477.0, + 1405.0, + 515.0, + 294.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 511.0, + 1405.0, + 511.0, + 1405.0, + 546.0, + 293.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 541.0, + 1405.0, + 541.0, + 1405.0, + 577.0, + 293.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 570.0, + 742.0, + 570.0, + 742.0, + 611.0, + 292.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 570.0, + 1115.0, + 570.0, + 1115.0, + 611.0, + 908.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 1405.0, + 294.0, + 1405.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 325.0, + 1406.0, + 325.0, + 1406.0, + 359.0, + 295.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 353.0, + 1307.0, + 353.0, + 1307.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 796.0, + 1406.0, + 796.0, + 1406.0, + 835.0, + 292.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 827.0, + 1406.0, + 827.0, + 1406.0, + 862.0, + 294.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 861.0, + 1401.0, + 861.0, + 1401.0, + 893.0, + 295.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 889.0, + 1275.0, + 889.0, + 1275.0, + 924.0, + 293.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 933.0, + 1402.0, + 933.0, + 1402.0, + 970.0, + 295.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 967.0, + 375.0, + 967.0, + 375.0, + 1005.0, + 292.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 967.0, + 1004.0, + 967.0, + 1004.0, + 1005.0, + 921.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 967.0, + 1405.0, + 967.0, + 1405.0, + 1005.0, + 1135.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1002.0, + 819.0, + 1002.0, + 819.0, + 1035.0, + 295.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 1002.0, + 918.0, + 1002.0, + 918.0, + 1035.0, + 858.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1002.0, + 1404.0, + 1002.0, + 1404.0, + 1035.0, + 1223.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1032.0, + 515.0, + 1032.0, + 515.0, + 1065.0, + 294.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1032.0, + 980.0, + 1032.0, + 980.0, + 1065.0, + 550.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1401.0, + 1402.0, + 1401.0, + 1402.0, + 1433.0, + 297.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1433.0, + 1065.0, + 1433.0, + 1065.0, + 1465.0, + 296.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1554.0, + 1403.0, + 1554.0, + 1403.0, + 1592.0, + 295.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1584.0, + 654.0, + 1584.0, + 654.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1584.0, + 776.0, + 1584.0, + 776.0, + 1622.0, + 684.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1584.0, + 1083.0, + 1584.0, + 1083.0, + 1622.0, + 803.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1663.0, + 806.0, + 1663.0, + 806.0, + 1707.0, + 294.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1663.0, + 1101.0, + 1663.0, + 1101.0, + 1707.0, + 1051.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 1663.0, + 1406.0, + 1663.0, + 1406.0, + 1707.0, + 1128.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 791.0, + 1698.0, + 791.0, + 1731.0, + 295.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 735.0, + 486.0, + 735.0, + 486.0, + 784.0, + 299.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 735.0, + 1087.0, + 735.0, + 1087.0, + 784.0, + 1082.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1148.0, + 486.0, + 1148.0, + 486.0, + 1193.0, + 301.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1060.0, + 528.0, + 1060.0, + 528.0, + 1108.0, + 292.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1060.0, + 934.0, + 1060.0, + 934.0, + 1108.0, + 620.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1807.0, + 646.0, + 1807.0, + 646.0, + 1852.0, + 299.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1807.0, + 894.0, + 1807.0, + 894.0, + 1852.0, + 672.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 1807.0, + 1085.0, + 1807.0, + 1085.0, + 1852.0, + 1035.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1807.0, + 1238.0, + 1807.0, + 1238.0, + 1852.0, + 1227.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1624.0, + 1351.0, + 1624.0, + 1351.0, + 1665.0, + 296.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 602.0, + 844.0, + 602.0, + 844.0, + 645.0, + 295.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1492.0, + 894.0, + 1492.0, + 894.0, + 1539.0, + 291.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1492.0, + 1062.0, + 1492.0, + 1062.0, + 1539.0, + 920.0, + 1539.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1818, + 1404, + 1818, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 989, + 1405, + 989, + 1405, + 1308, + 297, + 1308 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1546, + 1405, + 1546, + 1405, + 1730, + 297, + 1730 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 605, + 1405, + 605, + 1405, + 736, + 297, + 736 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 795, + 1405, + 795, + 1405, + 968, + 298, + 968 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 298, + 444, + 1403, + 444, + 1403, + 599, + 298, + 599 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 1319, + 1404, + 1319, + 1404, + 1443, + 297, + 1443 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 329, + 1403, + 329, + 1403, + 425, + 297, + 425 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1401, + 229, + 1401, + 324, + 299, + 324 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 296, + 1449, + 1395, + 1449, + 1395, + 1525, + 296, + 1525 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 302, + 1762, + 838, + 1762, + 838, + 1795, + 302, + 1795 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 297, + 757, + 1039, + 757, + 1039, + 791, + 297, + 791 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.726 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.581 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.334 + }, + { + "category_id": 13, + "poly": [ + 1046, + 361, + 1142, + 361, + 1142, + 393, + 1046, + 393 + ], + "score": 0.94, + "latex": "r ( s _ { t } , a _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 629, + 1253, + 807, + 1253, + 807, + 1310, + 629, + 1310 + ], + "score": 0.93, + "latex": "\\left( \\frac { | \\mathcal { S } | | \\bar { \\mathcal { A } } | T } { \\epsilon } \\log \\frac { 1 } { \\delta } \\right)" + }, + { + "category_id": 13, + "poly": [ + 986, + 668, + 1064, + 668, + 1064, + 706, + 986, + 706 + ], + "score": 0.93, + "latex": "G ( \\hat { \\mathcal { M } } )" + }, + { + "category_id": 13, + "poly": [ + 862, + 391, + 1044, + 391, + 1044, + 424, + 862, + 424 + ], + "score": 0.93, + "latex": "s _ { t + 1 } \\sim \\mathbb { P } ( \\cdot | s , a )" + }, + { + "category_id": 13, + "poly": [ + 946, + 1173, + 1238, + 1173, + 1238, + 1227, + 946, + 1227 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { O \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 571, + 1020, + 739, + 1020, + 739, + 1055, + 571, + 1055 + ], + "score": 0.93, + "latex": "\\bar { O ( 1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } ) }" + }, + { + "category_id": 13, + "poly": [ + 521, + 1579, + 919, + 1579, + 919, + 1630, + 521, + 1630 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { 4 R _ { \\operatorname* { m a x } } ^ { 2 } } { ( 1 - e _ { + } - e _ { - } ) ^ { 2 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 428, + 361, + 510, + 361, + 510, + 394, + 428, + 394 + ], + "score": 0.92, + "latex": "\\left( { { s _ { t } } , { a _ { t } } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 489, + 1449, + 647, + 1449, + 647, + 1484, + 489, + 1484 + ], + "score": 0.92, + "latex": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 13, + "poly": [ + 978, + 1695, + 1085, + 1695, + 1085, + 1729, + 978, + 1729 + ], + "score": 0.92, + "latex": "\\eta \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1081, + 1276, + 1081, + 1276, + 1116, + 1151, + 1116 + ], + "score": 0.92, + "latex": "1 / \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 897, + 1257, + 976, + 1257, + 976, + 1297, + 897, + 1297 + ], + "score": 0.92, + "latex": "G ( \\hat { \\mathcal { M } } )" + }, + { + "category_id": 13, + "poly": [ + 680, + 330, + 758, + 330, + 758, + 364, + 680, + 364 + ], + "score": 0.92, + "latex": "G ( \\mathcal { M } )" + }, + { + "category_id": 13, + "poly": [ + 682, + 795, + 850, + 795, + 850, + 830, + 682, + 830 + ], + "score": 0.91, + "latex": "r ~ \\in ~ [ 0 , R _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 13, + "poly": [ + 904, + 1481, + 1317, + 1481, + 1317, + 1529, + 904, + 1529 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathbf { V a r } ( r ) \\le \\mathbf { V a r } ( \\hat { r } ) \\le \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 662, + 391, + 802, + 391, + 802, + 424, + 662, + 424 + ], + "score": 0.91, + "latex": "\\mathbb { P } _ { a } \\left( s _ { t } , s _ { t + 1 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 973, + 1589, + 1141, + 1589, + 1141, + 1622, + 973, + 1622 + ], + "score": 0.91, + "latex": "e _ { - } + e _ { + } \\to 1" + }, + { + "category_id": 13, + "poly": [ + 298, + 636, + 375, + 636, + 375, + 670, + 298, + 670 + ], + "score": 0.91, + "latex": "G ( \\mathcal { M } )" + }, + { + "category_id": 13, + "poly": [ + 863, + 859, + 1295, + 859, + 1295, + 906, + 863, + 906 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { G ( \\hat { \\mathcal { M } } ) \\hat { \\textbf { \\textit { O } } } \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 345, + 1691, + 648, + 1691, + 648, + 1730, + 345, + 1730 + ], + "score": 0.9, + "latex": "\\mathbf { R } _ { p r o x y } = \\eta \\mathbf { R } + ( 1 - \\eta ) \\hat { \\mathbf { R } }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 367, + 1400, + 367, + 1400, + 393, + 1347, + 393 + ], + "score": 0.88, + "latex": "s _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 477, + 1184, + 553, + 1184, + 553, + 1216, + 477, + 1216 + ], + "score": 0.87, + "latex": "( \\gamma = 1 )" + }, + { + "category_id": 13, + "poly": [ + 1004, + 906, + 1247, + 906, + 1247, + 939, + 1004, + 939 + ], + "score": 0.86, + "latex": "| V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\le \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 699, + 1114, + 723, + 1114, + 723, + 1144, + 699, + 1144 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 683, + 760, + 707, + 760, + 707, + 791, + 683, + 791 + ], + "score": 0.82, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 912, + 907, + 988, + 907, + 988, + 936, + 912, + 936 + ], + "score": 0.8, + "latex": "s \\in S" + }, + { + "category_id": 13, + "poly": [ + 1367, + 1655, + 1394, + 1655, + 1394, + 1689, + 1367, + 1689 + ], + "score": 0.79, + "latex": "\\hat { \\mathbf { R } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 865, + 322, + 865, + 322, + 898, + 298, + 898 + ], + "score": 0.78, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1195, + 639, + 1220, + 639, + 1220, + 665, + 1195, + 665 + ], + "score": 0.77, + "latex": "\\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 627, + 1489, + 644, + 1489, + 644, + 1515, + 627, + 1515 + ], + "score": 0.77, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 822, + 478, + 845, + 478, + 845, + 508, + 822, + 508 + ], + "score": 0.72, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 684, + 540, + 707, + 540, + 707, + 569, + 684, + 569 + ], + "score": 0.71, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 297, + 906, + 322, + 906, + 322, + 933, + 297, + 933 + ], + "score": 0.67, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1660, + 1316, + 1660, + 1316, + 1689, + 1289, + 1689 + ], + "score": 0.67, + "latex": "\\mathbf { R }" + }, + { + "category_id": 13, + "poly": [ + 405, + 936, + 522, + 936, + 522, + 965, + 405, + 965 + ], + "score": 0.66, + "latex": "0 < \\delta < 1" + }, + { + "category_id": 13, + "poly": [ + 1264, + 908, + 1339, + 908, + 1339, + 937, + 1264, + 937 + ], + "score": 0.64, + "latex": "\\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 294, + 936, + 390, + 936, + 390, + 967, + 294, + 967 + ], + "score": 0.61, + "latex": "\\geq 1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 543, + 828, + 629, + 828, + 629, + 861, + 543, + 861 + ], + "score": 0.61, + "latex": "\\operatorname* { d e t } ( \\mathbf { C } )" + }, + { + "category_id": 13, + "poly": [ + 1116, + 1451, + 1143, + 1451, + 1143, + 1478, + 1116, + 1478 + ], + "score": 0.6, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 1095, + 797, + 1123, + 797, + 1123, + 825, + 1095, + 825 + ], + "score": 0.59, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 906, + 331, + 943, + 331, + 943, + 359, + 906, + 359 + ], + "score": 0.53, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1382, + 1212, + 1382, + 1212, + 1410, + 1185, + 1410 + ], + "score": 0.49, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 541, + 608, + 563, + 608, + 563, + 638, + 541, + 638 + ], + "score": 0.47, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1239, + 834, + 1265, + 834, + 1265, + 856, + 1239, + 856 + ], + "score": 0.35, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 841.0, + 1759.0, + 841.0, + 1799.0, + 293.0, + 1799.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.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, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 295.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1851.0, + 1405.0, + 1851.0, + 1405.0, + 1886.0, + 295.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1405.0, + 1882.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1404.0, + 1910.0, + 1404.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1979.0, + 294.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 987.0, + 1405.0, + 987.0, + 1405.0, + 1025.0, + 295.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1018.0, + 570.0, + 1018.0, + 570.0, + 1058.0, + 292.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 1018.0, + 1406.0, + 1018.0, + 1406.0, + 1058.0, + 740.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1048.0, + 1406.0, + 1048.0, + 1406.0, + 1091.0, + 291.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1078.0, + 1150.0, + 1078.0, + 1150.0, + 1120.0, + 291.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1078.0, + 1406.0, + 1078.0, + 1406.0, + 1120.0, + 1277.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1112.0, + 698.0, + 1112.0, + 698.0, + 1149.0, + 294.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1112.0, + 1405.0, + 1112.0, + 1405.0, + 1149.0, + 724.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1141.0, + 1405.0, + 1141.0, + 1405.0, + 1181.0, + 294.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1180.0, + 476.0, + 1180.0, + 476.0, + 1222.0, + 291.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1180.0, + 945.0, + 1180.0, + 945.0, + 1222.0, + 554.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1172.0, + 1406.0, + 1172.0, + 1406.0, + 1223.0, + 1239.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1222.0, + 1405.0, + 1222.0, + 1405.0, + 1258.0, + 295.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1260.0, + 628.0, + 1260.0, + 628.0, + 1299.0, + 292.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1242.0, + 896.0, + 1242.0, + 896.0, + 1319.0, + 808.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1242.0, + 1313.0, + 1242.0, + 1313.0, + 1319.0, + 977.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.25, + 1182.0, + 1148.25, + 1182.0, + 1148.25, + 1233.0, + 978.25, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1548.0, + 1405.0, + 1548.0, + 1405.0, + 1583.0, + 296.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1577.0, + 520.0, + 1577.0, + 520.0, + 1642.0, + 286.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1577.0, + 972.0, + 1577.0, + 972.0, + 1642.0, + 920.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1577.0, + 1412.0, + 1577.0, + 1412.0, + 1642.0, + 1142.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1625.0, + 1403.0, + 1625.0, + 1403.0, + 1661.0, + 295.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1660.0, + 1288.0, + 1660.0, + 1288.0, + 1694.0, + 294.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1660.0, + 1366.0, + 1660.0, + 1366.0, + 1694.0, + 1317.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1660.0, + 1405.0, + 1660.0, + 1405.0, + 1694.0, + 1395.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1693.0, + 344.0, + 1693.0, + 344.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1693.0, + 977.0, + 1693.0, + 977.0, + 1732.0, + 649.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1693.0, + 1095.0, + 1693.0, + 1095.0, + 1732.0, + 1086.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1567.5, + 890.0, + 1567.5, + 890.0, + 1616.5, + 813.0, + 1616.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 540.0, + 604.0, + 540.0, + 640.0, + 294.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 604.0, + 1405.0, + 604.0, + 1405.0, + 640.0, + 564.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 634.0, + 1194.0, + 634.0, + 1194.0, + 672.0, + 376.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 634.0, + 1405.0, + 634.0, + 1405.0, + 672.0, + 1221.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 672.0, + 985.0, + 672.0, + 985.0, + 709.0, + 294.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 709.0, + 1065.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 705.0, + 944.0, + 705.0, + 944.0, + 738.0, + 294.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 794.0, + 681.0, + 794.0, + 681.0, + 832.0, + 296.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 794.0, + 1094.0, + 794.0, + 1094.0, + 832.0, + 851.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 794.0, + 1407.0, + 794.0, + 1407.0, + 832.0, + 1124.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 825.0, + 542.0, + 825.0, + 542.0, + 863.0, + 295.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 825.0, + 1238.0, + 825.0, + 1238.0, + 863.0, + 630.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 825.0, + 1408.0, + 825.0, + 1408.0, + 863.0, + 1266.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 857.0, + 297.0, + 857.0, + 297.0, + 908.0, + 292.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 857.0, + 862.0, + 857.0, + 862.0, + 908.0, + 323.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 860.0, + 1406.0, + 860.0, + 1406.0, + 901.0, + 1302.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 901.0, + 296.0, + 901.0, + 296.0, + 942.0, + 292.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 901.0, + 911.0, + 901.0, + 911.0, + 942.0, + 323.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 901.0, + 1003.0, + 901.0, + 1003.0, + 942.0, + 989.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 901.0, + 1263.0, + 901.0, + 1263.0, + 942.0, + 1248.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 901.0, + 1405.0, + 901.0, + 1405.0, + 942.0, + 1340.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 935.0, + 404.0, + 935.0, + 404.0, + 969.0, + 391.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 935.0, + 536.0, + 935.0, + 536.0, + 969.0, + 523.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 447.0, + 1403.0, + 447.0, + 1403.0, + 480.0, + 296.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 474.0, + 821.0, + 474.0, + 821.0, + 512.0, + 293.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 512.0, + 846.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 504.0, + 1403.0, + 504.0, + 1403.0, + 544.0, + 292.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 535.0, + 683.0, + 535.0, + 683.0, + 575.0, + 291.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 535.0, + 1405.0, + 535.0, + 1405.0, + 575.0, + 708.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 568.0, + 624.0, + 568.0, + 624.0, + 601.0, + 294.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1319.0, + 1404.0, + 1319.0, + 1404.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1349.0, + 1404.0, + 1349.0, + 1404.0, + 1385.0, + 292.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1382.0, + 1184.0, + 1382.0, + 1184.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 1382.0, + 1402.0, + 1382.0, + 1402.0, + 1415.0, + 1213.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1413.0, + 1384.0, + 1413.0, + 1384.0, + 1445.0, + 294.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 326.0, + 679.0, + 326.0, + 679.0, + 366.0, + 294.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 326.0, + 905.0, + 326.0, + 905.0, + 366.0, + 759.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 326.0, + 1405.0, + 326.0, + 1405.0, + 366.0, + 944.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 355.0, + 427.0, + 355.0, + 427.0, + 402.0, + 291.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 355.0, + 1045.0, + 355.0, + 1045.0, + 402.0, + 511.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 355.0, + 1346.0, + 355.0, + 1346.0, + 402.0, + 1143.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 355.0, + 1405.0, + 355.0, + 1405.0, + 402.0, + 1401.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 389.0, + 661.0, + 389.0, + 661.0, + 427.0, + 293.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 389.0, + 861.0, + 389.0, + 861.0, + 427.0, + 803.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 389.0, + 1055.0, + 389.0, + 1055.0, + 427.0, + 1045.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 295.0, + 295.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 819.0, + 292.0, + 819.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1447.0, + 488.0, + 1447.0, + 488.0, + 1484.0, + 297.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1447.0, + 1115.0, + 1447.0, + 1115.0, + 1484.0, + 648.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1447.0, + 1401.0, + 1447.0, + 1401.0, + 1484.0, + 1144.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1471.0, + 626.0, + 1471.0, + 626.0, + 1537.0, + 296.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1471.0, + 903.0, + 1471.0, + 903.0, + 1537.0, + 645.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 1471.0, + 1335.0, + 1471.0, + 1335.0, + 1537.0, + 1318.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 756.0, + 682.0, + 756.0, + 682.0, + 796.0, + 296.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 756.0, + 1041.0, + 756.0, + 1041.0, + 796.0, + 708.0, + 796.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1414, + 1404, + 1414, + 1404, + 1660, + 297, + 1660 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 304, + 1402, + 304, + 1402, + 454, + 298, + 454 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1697, + 1406, + 1697, + 1406, + 1942, + 297, + 1942 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 569, + 1403, + 569, + 1403, + 698, + 300, + 698 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 885, + 659, + 885, + 659, + 1130, + 297, + 1130 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 713, + 659, + 713, + 659, + 871, + 297, + 871 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 579, + 472, + 1119, + 472, + 1119, + 552, + 579, + 552 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 293, + 228, + 1402, + 228, + 1402, + 293, + 293, + 293 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 293, + 1252, + 1400, + 1252, + 1400, + 1314, + 293, + 1314 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 328, + 1974, + 1213, + 1974, + 1213, + 2035, + 328, + 2035 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 691, + 763, + 1393, + 763, + 1393, + 1206, + 691, + 1206 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 1356, + 641, + 1356, + 641, + 1387, + 299, + 1387 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 1180, + 557, + 1180, + 557, + 1215, + 300, + 1215 + ], + "score": 0.899 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1369, + 498, + 1400, + 498, + 1400, + 526, + 1369, + 526 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.793 + }, + { + "category_id": 0, + "poly": [ + 692, + 722, + 1112, + 722, + 1112, + 754, + 692, + 754 + ], + "score": 0.761 + }, + { + "category_id": 14, + "poly": [ + 580, + 471, + 1115, + 471, + 1115, + 551, + 580, + 551 + ], + "score": 0.94, + "latex": "\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) \\in \\mathcal { S } \\times \\mathcal { A } } \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ," + }, + { + "category_id": 13, + "poly": [ + 571, + 601, + 656, + 601, + 656, + 639, + 571, + 639 + ], + "score": 0.94, + "latex": "\\tilde { R } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1078, + 605, + 1156, + 605, + 1156, + 639, + 1078, + 639 + ], + "score": 0.93, + "latex": "\\tilde { r } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 947, + 605, + 1025, + 605, + 1025, + 639, + 947, + 639 + ], + "score": 0.93, + "latex": "{ \\bar { r } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1208, + 637, + 1270, + 637, + 1270, + 670, + 1208, + 670 + ], + "score": 0.91, + "latex": "( s , a )" + }, + { + "category_id": 13, + "poly": [ + 961, + 824, + 1039, + 824, + 1039, + 854, + 961, + 854 + ], + "score": 0.91, + "latex": "Q ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 474, + 334, + 552, + 334, + 552, + 361, + 474, + 361 + ], + "score": 0.9, + "latex": "\\mathcal { S } \\times \\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 1113, + 991, + 1185, + 991, + 1185, + 1018, + 1113, + 1018 + ], + "score": 0.9, + "latex": "\\boldsymbol { s } \\times \\boldsymbol { A }" + }, + { + "category_id": 13, + "poly": [ + 548, + 669, + 590, + 669, + 590, + 701, + 548, + 701 + ], + "score": 0.89, + "latex": "\\tilde { c } _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 1057, + 1079, + 1384, + 1079, + 1384, + 1113, + 1057, + 1113 + ], + "score": 0.88, + "latex": "( \\hat { \\mathbf { R } } = ( 1 - \\eta ) \\cdot \\mathbf { R } + \\eta \\cdot \\mathbf { C } ^ { - 1 } \\mathbf { R } )" + }, + { + "category_id": 13, + "poly": [ + 901, + 881, + 964, + 881, + 964, + 905, + 901, + 905 + ], + "score": 0.88, + "latex": "s \\in S" + }, + { + "category_id": 13, + "poly": [ + 487, + 570, + 542, + 570, + 542, + 604, + 487, + 604 + ], + "score": 0.87, + "latex": "\\# \\left[ \\cdot \\right]" + }, + { + "category_id": 13, + "poly": [ + 777, + 852, + 801, + 852, + 801, + 881, + 777, + 881 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1023, + 964, + 1044, + 964, + 1044, + 988, + 1023, + 988 + ], + "score": 0.84, + "latex": "s ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1101, + 1046, + 1125, + 1046, + 1125, + 1075, + 1101, + 1075 + ], + "score": 0.83, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 597, + 418, + 623, + 418, + 623, + 450, + 597, + 450 + ], + "score": 0.83, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 488, + 1976, + 510, + 1976, + 510, + 2004, + 488, + 2004 + ], + "score": 0.82, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1022, + 1108, + 1022, + 1108, + 1044, + 1092, + 1044 + ], + "score": 0.81, + "latex": "\\bar { r }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1112, + 892, + 1112, + 892, + 1140, + 868, + 1140 + ], + "score": 0.81, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 998, + 992, + 1013, + 992, + 1013, + 1016, + 998, + 1016 + ], + "score": 0.81, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1051, + 1239, + 1051, + 1239, + 1075, + 1223, + 1075 + ], + "score": 0.8, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 633, + 841, + 649, + 841, + 649, + 867, + 633, + 867 + ], + "score": 0.79, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 1232, + 936, + 1255, + 936, + 1255, + 963, + 1232, + 963 + ], + "score": 0.78, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 890, + 1166, + 940, + 1166, + 940, + 1198, + 890, + 1198 + ], + "score": 0.76, + "latex": "\\pi ( s )" + }, + { + "category_id": 13, + "poly": [ + 1302, + 570, + 1328, + 570, + 1328, + 604, + 1302, + 604 + ], + "score": 0.76, + "latex": "[ \\cdot ]" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1887, + 1023, + 1887, + 1023, + 1909, + 1002, + 1909 + ], + "score": 0.75, + "latex": "\\omega" + }, + { + "category_id": 13, + "poly": [ + 1285, + 1051, + 1301, + 1051, + 1301, + 1075, + 1285, + 1075 + ], + "score": 0.75, + "latex": "\\bar { r }" + }, + { + "category_id": 13, + "poly": [ + 1347, + 1887, + 1369, + 1887, + 1369, + 1909, + 1347, + 1909 + ], + "score": 0.75, + "latex": "\\omega" + }, + { + "category_id": 13, + "poly": [ + 815, + 912, + 831, + 912, + 831, + 932, + 815, + 932 + ], + "score": 0.73, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 871, + 940, + 888, + 940, + 888, + 960, + 871, + 960 + ], + "score": 0.73, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 912, + 968, + 928, + 968, + 928, + 988, + 912, + 988 + ], + "score": 0.72, + "latex": "a" + }, + { + "category_id": 13, + "poly": [ + 1228, + 965, + 1243, + 965, + 1243, + 988, + 1228, + 988 + ], + "score": 0.67, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 947, + 941, + 962, + 941, + 962, + 960, + 947, + 960 + ], + "score": 0.64, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1040, + 1082, + 1056, + 1082, + 1056, + 1108, + 1040, + 1108 + ], + "score": 0.57, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 770, + 762, + 950, + 762, + 950, + 797, + 770, + 797 + ], + "score": 0.55, + "latex": "\\tilde { \\mathcal { M } } , \\alpha , \\beta , \\tilde { R } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 455, + 804, + 482, + 804, + 482, + 837, + 455, + 837 + ], + "score": 0.55, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1167, + 844, + 1167, + 844, + 1198, + 789, + 1198 + ], + "score": 0.51, + "latex": "Q ( s )" + }, + { + "category_id": 13, + "poly": [ + 789, + 1138, + 863, + 1138, + 863, + 1164, + 789, + 1164 + ], + "score": 0.49, + "latex": "s \\gets s ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 788, + 796, + 842, + 796, + 842, + 826, + 788, + 826 + ], + "score": 0.42, + "latex": "Q ( s )" + }, + { + "category_id": 13, + "poly": [ + 852, + 797, + 922, + 797, + 922, + 825, + 852, + 825 + ], + "score": 0.4, + "latex": "\\pi ( s , t )" + }, + { + "category_id": 13, + "poly": [ + 455, + 915, + 482, + 915, + 482, + 945, + 455, + 945 + ], + "score": 0.4, + "latex": "1 ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 412, + 775, + 439, + 775, + 439, + 803, + 412, + 803 + ], + "score": 0.39, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 783, + 797, + 940, + 797, + 940, + 826, + 783, + 826 + ], + "score": 0.34, + "latex": "Q ( s ) , \\pi ( s , t )" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1968.0, + 487.0, + 1968.0, + 487.0, + 2009.0, + 328.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1968.0, + 1216.0, + 1968.0, + 1216.0, + 2009.0, + 511.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1999.0, + 859.0, + 1999.0, + 859.0, + 2038.0, + 329.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1354.0, + 644.0, + 1354.0, + 644.0, + 1390.0, + 294.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1177.0, + 561.0, + 1177.0, + 561.0, + 1221.0, + 293.0, + 1221.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": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 720.0, + 1113.0, + 720.0, + 1113.0, + 757.0, + 688.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 1405.0, + 1412.0, + 1405.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1447.0, + 1404.0, + 1447.0, + 1404.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1476.0, + 1402.0, + 1476.0, + 1402.0, + 1511.0, + 294.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1507.0, + 1404.0, + 1507.0, + 1404.0, + 1541.0, + 296.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1538.0, + 1402.0, + 1538.0, + 1402.0, + 1572.0, + 295.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1568.0, + 1404.0, + 1568.0, + 1404.0, + 1602.0, + 295.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1596.0, + 1405.0, + 1596.0, + 1405.0, + 1634.0, + 294.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1628.0, + 1238.0, + 1628.0, + 1238.0, + 1662.0, + 294.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 306.0, + 1404.0, + 306.0, + 1404.0, + 339.0, + 297.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 329.0, + 473.0, + 329.0, + 473.0, + 369.0, + 293.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 329.0, + 1406.0, + 329.0, + 1406.0, + 369.0, + 553.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 358.0, + 1404.0, + 358.0, + 1404.0, + 397.0, + 293.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 389.0, + 1404.0, + 389.0, + 1404.0, + 422.0, + 296.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 422.0, + 596.0, + 422.0, + 596.0, + 458.0, + 293.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 422.0, + 768.0, + 422.0, + 768.0, + 458.0, + 624.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1695.0, + 1406.0, + 1695.0, + 1406.0, + 1736.0, + 292.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1732.0, + 1403.0, + 1732.0, + 1403.0, + 1762.0, + 296.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1762.0, + 1404.0, + 1762.0, + 1404.0, + 1792.0, + 295.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1791.0, + 1404.0, + 1791.0, + 1404.0, + 1823.0, + 292.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1821.0, + 1406.0, + 1821.0, + 1406.0, + 1854.0, + 296.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 1001.0, + 1881.0, + 1001.0, + 1917.0, + 292.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1881.0, + 1346.0, + 1881.0, + 1346.0, + 1917.0, + 1024.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1370.0, + 1881.0, + 1406.0, + 1881.0, + 1406.0, + 1917.0, + 1370.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 629.0, + 1910.0, + 629.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 570.0, + 486.0, + 570.0, + 486.0, + 604.0, + 306.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 570.0, + 1301.0, + 570.0, + 1301.0, + 604.0, + 543.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 570.0, + 1403.0, + 570.0, + 1403.0, + 604.0, + 1329.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 604.0, + 570.0, + 604.0, + 570.0, + 641.0, + 294.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 604.0, + 946.0, + 604.0, + 946.0, + 641.0, + 657.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 604.0, + 1077.0, + 604.0, + 1077.0, + 641.0, + 1026.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 604.0, + 1404.0, + 604.0, + 1404.0, + 641.0, + 1157.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 637.0, + 1207.0, + 637.0, + 1207.0, + 670.0, + 294.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 637.0, + 1404.0, + 637.0, + 1404.0, + 670.0, + 1271.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 667.0, + 547.0, + 667.0, + 547.0, + 701.0, + 295.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 667.0, + 1156.0, + 667.0, + 1156.0, + 701.0, + 591.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 887.0, + 661.0, + 887.0, + 661.0, + 918.0, + 298.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 914.0, + 454.0, + 914.0, + 454.0, + 947.0, + 293.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 914.0, + 661.0, + 914.0, + 661.0, + 947.0, + 483.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 948.0, + 662.0, + 948.0, + 662.0, + 980.0, + 294.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 978.0, + 663.0, + 978.0, + 663.0, + 1010.0, + 294.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1009.0, + 663.0, + 1009.0, + 663.0, + 1041.0, + 297.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 663.0, + 1036.0, + 663.0, + 1072.0, + 294.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1068.0, + 661.0, + 1068.0, + 661.0, + 1101.0, + 293.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1100.0, + 598.0, + 1100.0, + 598.0, + 1134.0, + 294.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 709.0, + 662.0, + 709.0, + 662.0, + 747.0, + 295.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 745.0, + 661.0, + 745.0, + 661.0, + 775.0, + 293.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 775.0, + 411.0, + 775.0, + 411.0, + 806.0, + 295.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 775.0, + 663.0, + 775.0, + 663.0, + 806.0, + 440.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 805.0, + 454.0, + 805.0, + 454.0, + 840.0, + 295.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 805.0, + 662.0, + 805.0, + 662.0, + 840.0, + 483.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 840.0, + 632.0, + 840.0, + 632.0, + 873.0, + 297.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 840.0, + 659.0, + 840.0, + 659.0, + 873.0, + 650.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1404.0, + 227.0, + 1404.0, + 264.0, + 293.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1204.0, + 262.0, + 1204.0, + 294.0, + 296.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1249.0, + 1404.0, + 1249.0, + 1404.0, + 1288.0, + 293.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 1053.0, + 1283.0, + 1053.0, + 1317.0, + 293.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 761.0, + 769.0, + 761.0, + 769.0, + 801.0, + 684.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 792.0, + 782.0, + 792.0, + 782.0, + 829.0, + 685.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 819.0, + 960.0, + 819.0, + 960.0, + 857.0, + 708.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 819.0, + 1154.0, + 819.0, + 1154.0, + 857.0, + 1040.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 851.0, + 776.0, + 851.0, + 776.0, + 883.0, + 712.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 851.0, + 1010.0, + 851.0, + 1010.0, + 883.0, + 802.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 878.0, + 900.0, + 878.0, + 900.0, + 909.0, + 748.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 878.0, + 969.0, + 878.0, + 969.0, + 909.0, + 965.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 906.0, + 814.0, + 906.0, + 814.0, + 935.0, + 751.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 906.0, + 1018.0, + 906.0, + 1018.0, + 935.0, + 832.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 932.0, + 870.0, + 932.0, + 870.0, + 968.0, + 785.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 932.0, + 946.0, + 932.0, + 946.0, + 968.0, + 889.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 932.0, + 1231.0, + 932.0, + 1231.0, + 968.0, + 963.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 960.0, + 911.0, + 960.0, + 911.0, + 993.0, + 786.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 960.0, + 1022.0, + 960.0, + 1022.0, + 993.0, + 929.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 960.0, + 1227.0, + 960.0, + 1227.0, + 993.0, + 1045.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 960.0, + 1250.0, + 960.0, + 1250.0, + 993.0, + 1244.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 988.0, + 997.0, + 988.0, + 997.0, + 1021.0, + 786.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 988.0, + 1112.0, + 988.0, + 1112.0, + 1021.0, + 1014.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1186.0, + 988.0, + 1289.0, + 988.0, + 1289.0, + 1021.0, + 1186.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1016.0, + 1091.0, + 1016.0, + 1091.0, + 1050.0, + 825.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1016.0, + 1334.0, + 1016.0, + 1334.0, + 1050.0, + 1109.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1044.0, + 1100.0, + 1044.0, + 1100.0, + 1081.0, + 824.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1044.0, + 1222.0, + 1044.0, + 1222.0, + 1081.0, + 1126.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1044.0, + 1284.0, + 1044.0, + 1284.0, + 1081.0, + 1240.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1302.0, + 1044.0, + 1394.0, + 1044.0, + 1394.0, + 1081.0, + 1302.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1077.0, + 1039.0, + 1077.0, + 1039.0, + 1114.0, + 786.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1106.0, + 867.0, + 1106.0, + 867.0, + 1146.0, + 785.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1106.0, + 1135.0, + 1106.0, + 1135.0, + 1146.0, + 893.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1138.0, + 788.0, + 1138.0, + 788.0, + 1168.0, + 783.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1138.0, + 868.0, + 1138.0, + 868.0, + 1168.0, + 864.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1163.0, + 788.0, + 1163.0, + 788.0, + 1201.0, + 709.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1163.0, + 889.0, + 1163.0, + 889.0, + 1201.0, + 845.0, + 1201.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 382, + 1661, + 1325, + 1661, + 1325, + 1899, + 382, + 1899 + ], + "score": 0.982, + "html": "
Noise RateRewardQ-LearnCEMSARSADQNDDQNDDPGNAF
w=0.1r170.098.1165.2187.2187.8-1.03-4.48
165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
w= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.182.2159.6186.7200.0 -1.05-1.36
" + }, + { + "category_id": 1, + "poly": [ + 297, + 293, + 1405, + 293, + 1405, + 478, + 297, + 478 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1168, + 1404, + 1168, + 1404, + 1324, + 297, + 1324 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 999, + 1404, + 999, + 1404, + 1154, + 297, + 1154 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1348, + 1404, + 1348, + 1404, + 1533, + 297, + 1533 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 296, + 493, + 1391, + 493, + 1391, + 865, + 296, + 865 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 295, + 890, + 1402, + 890, + 1402, + 986, + 295, + 986 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 296, + 1910, + 1405, + 1910, + 1405, + 2035, + 296, + 2035 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 230, + 686, + 230, + 686, + 261, + 300, + 261 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.69 + }, + { + "category_id": 6, + "poly": [ + 297, + 1542, + 1406, + 1542, + 1406, + 1636, + 297, + 1636 + ], + "score": 0.636 + }, + { + "category_id": 1, + "poly": [ + 297, + 1542, + 1406, + 1542, + 1406, + 1636, + 297, + 1636 + ], + "score": 0.479 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.265 + }, + { + "category_id": 13, + "poly": [ + 850, + 415, + 963, + 415, + 963, + 449, + 850, + 449 + ], + "score": 0.93, + "latex": "\\{ + 1 , - 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 450, + 1441, + 544, + 1441, + 544, + 1474, + 450, + 1474 + ], + "score": 0.93, + "latex": "( - 1 7 , 0 ]" + }, + { + "category_id": 13, + "poly": [ + 452, + 386, + 517, + 386, + 517, + 419, + 452, + 419 + ], + "score": 0.91, + "latex": "\\{ + 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1380, + 1216, + 1380, + 1216, + 1413, + 1009, + 1413 + ], + "score": 0.89, + "latex": "r \\in ( - 1 6 . 2 8 , 0 . 0 ]" + }, + { + "category_id": 13, + "poly": [ + 1294, + 387, + 1387, + 387, + 1387, + 417, + 1294, + 417 + ], + "score": 0.87, + "latex": "( e _ { - } = 0 )" + }, + { + "category_id": 13, + "poly": [ + 297, + 2003, + 410, + 2003, + 410, + 2034, + 297, + 2034 + ], + "score": 0.87, + "latex": "\\omega ~ = ~ 0 . 7 )" + }, + { + "category_id": 13, + "poly": [ + 1175, + 417, + 1200, + 417, + 1200, + 448, + 1175, + 448 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 601, + 326, + 640, + 326, + 640, + 354, + 601, + 354 + ], + "score": 0.84, + "latex": "+ 1" + }, + { + "category_id": 13, + "poly": [ + 978, + 1440, + 1394, + 1440, + 1394, + 1474, + 978, + 1474 + ], + "score": 0.79, + "latex": "( - 1 7 , - 1 6 ] , \\bar { ( - 1 6 , - 1 5 ] } , \\cdot \\cdot \\cdot , ( - 1 , 0 ]" + }, + { + "category_id": 13, + "poly": [ + 644, + 417, + 672, + 417, + 672, + 444, + 644, + 444 + ], + "score": 0.79, + "latex": "\\mathcal { R }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1814, + 576, + 1814, + 576, + 1831, + 562, + 1831 + ], + "score": 0.77, + "latex": "\\ddot { r }" + }, + { + "category_id": 13, + "poly": [ + 876, + 1575, + 910, + 1575, + 910, + 1605, + 876, + 1605 + ], + "score": 0.74, + "latex": "( \\dot { r } )" + }, + { + "category_id": 13, + "poly": [ + 562, + 1839, + 576, + 1839, + 576, + 1858, + 562, + 1858 + ], + "score": 0.74, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 1262, + 887, + 1329, + 887, + 1329, + 923, + 1262, + 923 + ], + "score": 0.74, + "latex": "( r ) \\mathsf { l } ." + }, + { + "category_id": 13, + "poly": [ + 562, + 1745, + 575, + 1745, + 575, + 1763, + 562, + 1763 + ], + "score": 0.73, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1866, + 576, + 1866, + 576, + 1885, + 562, + 1885 + ], + "score": 0.69, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 697, + 1575, + 730, + 1575, + 730, + 1604, + 697, + 1604 + ], + "score": 0.66, + "latex": "( \\hat { r } )" + }, + { + "category_id": 13, + "poly": [ + 562, + 1772, + 576, + 1772, + 576, + 1790, + 562, + 1790 + ], + "score": 0.64, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1718, + 575, + 1718, + 575, + 1736, + 562, + 1736 + ], + "score": 0.64, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 1367, + 1544, + 1401, + 1544, + 1401, + 1574, + 1367, + 1574 + ], + "score": 0.6, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 629, + 1604, + 654, + 1604, + 654, + 1632, + 629, + 1632 + ], + "score": 0.59, + "latex": "\\&" + }, + { + "category_id": 13, + "poly": [ + 391, + 922, + 425, + 922, + 425, + 953, + 391, + 953 + ], + "score": 0.56, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 976, + 1441, + 1106, + 1441, + 1106, + 1474, + 976, + 1474 + ], + "score": 0.54, + "latex": "( - 1 7 , - 1 6 ]" + }, + { + "category_id": 13, + "poly": [ + 823, + 923, + 857, + 923, + 857, + 953, + 823, + 953 + ], + "score": 0.52, + "latex": "( \\dot { r } )" + }, + { + "category_id": 13, + "poly": [ + 879, + 387, + 918, + 387, + 918, + 414, + 879, + 414 + ], + "score": 0.52, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 872, + 922, + 947, + 922, + 947, + 954, + 872, + 954 + ], + "score": 0.47, + "latex": "( \\eta = 1 )" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 497.0, + 372.0, + 497.0, + 372.0, + 626.0, + 290.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 497.0, + 580.0, + 497.0, + 580.0, + 621.0, + 525.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 511.0, + 791.0, + 511.0, + 791.0, + 614.0, + 750.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 495.0, + 1020.0, + 495.0, + 1020.0, + 626.0, + 952.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 495.0, + 1234.0, + 495.0, + 1234.0, + 626.0, + 1170.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 535.0, + 568.0, + 535.0, + 568.0, + 556.0, + 547.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 551.0, + 790.0, + 551.0, + 790.0, + 571.0, + 764.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 565.0, + 568.0, + 565.0, + 568.0, + 586.0, + 548.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 593.0, + 358.0, + 593.0, + 358.0, + 613.0, + 337.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 594.0, + 568.0, + 594.0, + 568.0, + 614.0, + 546.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 582.0, + 790.0, + 582.0, + 790.0, + 603.0, + 769.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 587.0, + 1007.0, + 587.0, + 1007.0, + 605.0, + 984.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 588.0, + 1222.0, + 588.0, + 1222.0, + 608.0, + 1200.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 605.0, + 812.0, + 605.0, + 812.0, + 620.0, + 795.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 626.0, + 372.0, + 626.0, + 372.0, + 638.0, + 361.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 622.0, + 428.0, + 622.0, + 428.0, + 641.0, + 400.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 622.0, + 476.0, + 622.0, + 476.0, + 641.0, + 449.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 622.0, + 525.0, + 622.0, + 525.0, + 641.0, + 497.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 624.0, + 586.0, + 624.0, + 586.0, + 638.0, + 571.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 622.0, + 631.0, + 622.0, + 631.0, + 640.0, + 598.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 622.0, + 703.0, + 622.0, + 703.0, + 640.0, + 632.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 622.0, + 739.0, + 622.0, + 739.0, + 640.0, + 704.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 626.0, + 804.0, + 626.0, + 804.0, + 637.0, + 792.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 622.0, + 855.0, + 622.0, + 855.0, + 641.0, + 829.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 622.0, + 898.0, + 622.0, + 898.0, + 641.0, + 872.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 622.0, + 943.0, + 622.0, + 943.0, + 641.0, + 916.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 624.0, + 1022.0, + 624.0, + 1022.0, + 640.0, + 1007.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 622.0, + 1075.0, + 622.0, + 1075.0, + 641.0, + 1054.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 622.0, + 1127.0, + 622.0, + 1127.0, + 641.0, + 1101.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 622.0, + 1178.0, + 622.0, + 1178.0, + 641.0, + 1150.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 626.0, + 1237.0, + 626.0, + 1237.0, + 637.0, + 1224.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 622.0, + 1299.0, + 622.0, + 1299.0, + 641.0, + 1278.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 622.0, + 1360.0, + 622.0, + 1360.0, + 641.0, + 1334.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 635.0, + 466.0, + 635.0, + 466.0, + 654.0, + 415.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 635.0, + 678.0, + 635.0, + 678.0, + 652.0, + 626.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 635.0, + 898.0, + 635.0, + 898.0, + 654.0, + 847.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 635.0, + 1329.0, + 635.0, + 1329.0, + 654.0, + 1278.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 675.0, + 359.0, + 675.0, + 359.0, + 780.0, + 293.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 673.0, + 568.0, + 673.0, + 568.0, + 780.0, + 533.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 662.0, + 805.0, + 662.0, + 805.0, + 793.0, + 735.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 662.0, + 1020.0, + 662.0, + 1020.0, + 793.0, + 952.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 655.0, + 1234.0, + 655.0, + 1234.0, + 792.0, + 1170.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 547.0, + 702.0, + 568.0, + 702.0, + 568.0, + 722.0, + 547.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 717.0, + 358.0, + 717.0, + 358.0, + 740.0, + 329.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 764.0, + 711.0, + 790.0, + 711.0, + 790.0, + 731.0, + 764.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 731.0, + 568.0, + 731.0, + 568.0, + 753.0, + 548.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 753.0, + 358.0, + 753.0, + 358.0, + 774.0, + 337.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 745.0, + 790.0, + 745.0, + 790.0, + 767.0, + 769.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 753.0, + 1007.0, + 753.0, + 1007.0, + 772.0, + 984.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 752.0, + 1222.0, + 752.0, + 1222.0, + 771.0, + 1200.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 761.0, + 568.0, + 761.0, + 568.0, + 780.0, + 546.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 769.0, + 734.0, + 769.0, + 734.0, + 785.0, + 649.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 791.0, + 374.0, + 791.0, + 374.0, + 806.0, + 359.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 790.0, + 420.0, + 790.0, + 420.0, + 808.0, + 394.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 790.0, + 461.0, + 790.0, + 461.0, + 807.0, + 435.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 790.0, + 504.0, + 790.0, + 504.0, + 807.0, + 476.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 791.0, + 585.0, + 791.0, + 585.0, + 806.0, + 570.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 787.0, + 646.0, + 787.0, + 646.0, + 808.0, + 609.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 787.0, + 694.0, + 787.0, + 694.0, + 808.0, + 659.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 787.0, + 744.0, + 787.0, + 744.0, + 808.0, + 708.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 791.0, + 806.0, + 791.0, + 806.0, + 806.0, + 790.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 790.0, + 855.0, + 790.0, + 855.0, + 807.0, + 824.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 790.0, + 895.0, + 790.0, + 895.0, + 807.0, + 861.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 790.0, + 937.0, + 790.0, + 937.0, + 807.0, + 903.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 791.0, + 1022.0, + 791.0, + 1022.0, + 807.0, + 1007.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 790.0, + 1082.0, + 790.0, + 1082.0, + 808.0, + 1055.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 790.0, + 1136.0, + 790.0, + 1136.0, + 808.0, + 1109.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 791.0, + 1238.0, + 791.0, + 1238.0, + 806.0, + 1223.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 790.0, + 1297.0, + 790.0, + 1297.0, + 808.0, + 1269.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 790.0, + 1349.0, + 790.0, + 1349.0, + 808.0, + 1321.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 801.0, + 464.0, + 801.0, + 464.0, + 820.0, + 414.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 801.0, + 680.0, + 801.0, + 680.0, + 822.0, + 628.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 801.0, + 897.0, + 801.0, + 897.0, + 820.0, + 846.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 802.0, + 1113.0, + 802.0, + 1113.0, + 820.0, + 1061.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 801.0, + 1329.0, + 801.0, + 1329.0, + 820.0, + 1276.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 829.0, + 505.0, + 829.0, + 505.0, + 869.0, + 342.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 832.0, + 690.0, + 832.0, + 690.0, + 861.0, + 586.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 830.0, + 918.0, + 830.0, + 918.0, + 863.0, + 791.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 830.0, + 1122.0, + 830.0, + 1122.0, + 867.0, + 1020.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 832.0, + 1347.0, + 832.0, + 1347.0, + 864.0, + 1227.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 632.5, + 1114.0, + 632.5, + 1114.0, + 653.5, + 1059.0, + 653.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 888.0, + 1261.0, + 888.0, + 1261.0, + 927.0, + 293.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 888.0, + 1405.0, + 888.0, + 1405.0, + 927.0, + 1330.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 916.0, + 390.0, + 916.0, + 390.0, + 956.0, + 294.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 916.0, + 822.0, + 916.0, + 822.0, + 956.0, + 426.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 916.0, + 871.0, + 916.0, + 871.0, + 956.0, + 858.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 916.0, + 1408.0, + 916.0, + 1408.0, + 956.0, + 948.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 950.0, + 1174.0, + 950.0, + 1174.0, + 987.0, + 294.0, + 987.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, + 230.0, + 688.0, + 230.0, + 688.0, + 263.0, + 296.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1540.0, + 1366.0, + 1540.0, + 1366.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1540.0, + 1406.0, + 1540.0, + 1406.0, + 1578.0, + 1402.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1573.0, + 696.0, + 1573.0, + 696.0, + 1607.0, + 295.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1573.0, + 875.0, + 1573.0, + 875.0, + 1607.0, + 731.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1573.0, + 1404.0, + 1573.0, + 1404.0, + 1607.0, + 911.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1602.0, + 628.0, + 1602.0, + 628.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1602.0, + 1373.0, + 1602.0, + 1373.0, + 1637.0, + 655.0, + 1637.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, + 291.0, + 1405.0, + 291.0, + 1405.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 324.0, + 600.0, + 324.0, + 600.0, + 360.0, + 295.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 324.0, + 1407.0, + 324.0, + 1407.0, + 360.0, + 641.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 355.0, + 1406.0, + 355.0, + 1406.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 386.0, + 451.0, + 386.0, + 451.0, + 420.0, + 294.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 386.0, + 878.0, + 386.0, + 878.0, + 420.0, + 518.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 386.0, + 1293.0, + 386.0, + 1293.0, + 420.0, + 919.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1388.0, + 386.0, + 1405.0, + 386.0, + 1405.0, + 420.0, + 1388.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 416.0, + 643.0, + 416.0, + 643.0, + 452.0, + 295.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 416.0, + 849.0, + 416.0, + 849.0, + 452.0, + 673.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 416.0, + 1174.0, + 416.0, + 1174.0, + 452.0, + 964.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 416.0, + 1405.0, + 416.0, + 1405.0, + 452.0, + 1201.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 448.0, + 1156.0, + 448.0, + 1156.0, + 480.0, + 296.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1169.0, + 1406.0, + 1169.0, + 1406.0, + 1206.0, + 294.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 1405.0, + 1197.0, + 1405.0, + 1235.0, + 294.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1230.0, + 1405.0, + 1230.0, + 1405.0, + 1267.0, + 295.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1259.0, + 1404.0, + 1259.0, + 1404.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1291.0, + 1287.0, + 1291.0, + 1287.0, + 1329.0, + 294.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1034.0, + 295.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1031.0, + 1402.0, + 1031.0, + 1402.0, + 1065.0, + 296.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 1405.0, + 1061.0, + 1405.0, + 1098.0, + 294.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1090.0, + 1405.0, + 1090.0, + 1405.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 854.0, + 1122.0, + 854.0, + 1159.0, + 294.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1346.0, + 1402.0, + 1346.0, + 1402.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1379.0, + 1008.0, + 1379.0, + 1008.0, + 1415.0, + 295.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1379.0, + 1405.0, + 1379.0, + 1405.0, + 1415.0, + 1217.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1410.0, + 1404.0, + 1410.0, + 1404.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1437.0, + 449.0, + 1437.0, + 449.0, + 1477.0, + 292.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1437.0, + 975.0, + 1437.0, + 975.0, + 1477.0, + 545.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1437.0, + 1405.0, + 1437.0, + 1405.0, + 1477.0, + 1395.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1471.0, + 1406.0, + 1471.0, + 1406.0, + 1507.0, + 295.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1502.0, + 1224.0, + 1502.0, + 1224.0, + 1537.0, + 294.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1910.0, + 1406.0, + 1910.0, + 1406.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 2003.0, + 296.0, + 2003.0, + 296.0, + 2037.0, + 291.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 2003.0, + 1406.0, + 2003.0, + 1406.0, + 2037.0, + 411.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1540.0, + 1366.0, + 1540.0, + 1366.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1540.0, + 1406.0, + 1540.0, + 1406.0, + 1578.0, + 1402.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1573.0, + 696.0, + 1573.0, + 696.0, + 1607.0, + 295.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1573.0, + 875.0, + 1573.0, + 875.0, + 1607.0, + 731.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 1573.0, + 1404.0, + 1573.0, + 1404.0, + 1607.0, + 911.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1602.0, + 628.0, + 1602.0, + 628.0, + 1637.0, + 294.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1602.0, + 1373.0, + 1602.0, + 1373.0, + 1637.0, + 655.0, + 1637.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1573, + 1404, + 1573, + 1404, + 1819, + 298, + 1819 + ], + "score": 0.979 + }, + { + "category_id": 3, + "poly": [ + 354, + 1060, + 1342, + 1060, + 1342, + 1469, + 354, + 1469 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 319, + 228, + 1372, + 228, + 1372, + 667, + 319, + 667 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 953, + 1403, + 953, + 1403, + 1047, + 299, + 1047 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 852, + 1404, + 852, + 1404, + 944, + 299, + 944 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 297, + 692, + 1403, + 692, + 1403, + 787, + 297, + 787 + ], + "score": 0.956 + }, + { + "category_id": 4, + "poly": [ + 294, + 1494, + 1372, + 1494, + 1372, + 1559, + 294, + 1559 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 1869, + 543, + 1869, + 543, + 1903, + 300, + 1903 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 857, + 76, + 857, + 104, + 297, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 13, + "poly": [ + 688, + 1014, + 804, + 1014, + 804, + 1048, + 688, + 1048 + ], + "score": 0.94, + "latex": "\\{ - 1 , 0 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 1209, + 1696, + 1396, + 1696, + 1396, + 1728, + 1209, + 1728 + ], + "score": 0.9, + "latex": "e _ { + } = e _ { - } > 0 . 3 ." + }, + { + "category_id": 13, + "poly": [ + 1262, + 690, + 1328, + 690, + 1328, + 725, + 1262, + 725 + ], + "score": 0.87, + "latex": "( r ) \\mathsf { l }" + }, + { + "category_id": 13, + "poly": [ + 1100, + 854, + 1210, + 854, + 1210, + 883, + 1100, + 883 + ], + "score": 0.83, + "latex": "\\left( \\omega > 0 . 5 \\right)" + }, + { + "category_id": 13, + "poly": [ + 1103, + 1492, + 1170, + 1492, + 1170, + 1528, + 1103, + 1528 + ], + "score": 0.81, + "latex": "( r ) \\mathsf { l } ," + }, + { + "category_id": 13, + "poly": [ + 553, + 1527, + 626, + 1527, + 626, + 1559, + 553, + 1559 + ], + "score": 0.79, + "latex": "( \\eta = 1" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1495, + 1372, + 1495, + 1372, + 1528, + 1336, + 1528 + ], + "score": 0.67, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 772, + 724, + 856, + 724, + 856, + 756, + 772, + 756 + ], + "score": 0.64, + "latex": "( \\eta = 1" + }, + { + "category_id": 13, + "poly": [ + 631, + 1696, + 657, + 1696, + 657, + 1724, + 631, + 1724 + ], + "score": 0.58, + "latex": "\\&" + }, + { + "category_id": 13, + "poly": [ + 727, + 726, + 762, + 726, + 762, + 756, + 727, + 756 + ], + "score": 0.48, + "latex": "( \\hat { r } )" + }, + { + "category_id": 13, + "poly": [ + 638, + 1526, + 704, + 1526, + 704, + 1559, + 638, + 1559 + ], + "score": 0.43, + "latex": "( \\hat { r } ) \\mathbf { l }" + }, + { + "category_id": 13, + "poly": [ + 394, + 724, + 428, + 724, + 428, + 755, + 394, + 755 + ], + "score": 0.4, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 394, + 723, + 464, + 723, + 464, + 756, + 394, + 756 + ], + "score": 0.35, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 860, + 1756, + 889, + 1756, + 889, + 1784, + 860, + 1784 + ], + "score": 0.33, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1061, + 1257, + 1061, + 1257, + 1083, + 1199, + 1083 + ], + "score": 0.33, + "latex": "W = 0 . 4" + }, + { + "category_id": 13, + "poly": [ + 728, + 1061, + 787, + 1061, + 787, + 1083, + 728, + 1083 + ], + "score": 0.31, + "latex": "W = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 964, + 1061, + 1023, + 1061, + 1023, + 1083, + 964, + 1083 + ], + "score": 0.27, + "latex": "W = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 729, + 1249, + 786, + 1249, + 786, + 1271, + 729, + 1271 + ], + "score": 0.26, + "latex": "W = 0 . 7" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1061.0, + 551.0, + 1061.0, + 551.0, + 1082.0, + 490.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1086.0, + 408.0, + 1086.0, + 408.0, + 1104.0, + 388.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1092.0, + 381.0, + 1092.0, + 381.0, + 1229.0, + 356.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1119.0, + 408.0, + 1119.0, + 408.0, + 1137.0, + 388.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1157.0, + 407.0, + 1157.0, + 407.0, + 1168.0, + 397.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1187.0, + 408.0, + 1187.0, + 408.0, + 1204.0, + 382.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1221.0, + 408.0, + 1221.0, + 408.0, + 1237.0, + 381.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1251.0, + 552.0, + 1251.0, + 552.0, + 1270.0, + 492.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1250.0, + 1024.0, + 1250.0, + 1024.0, + 1270.0, + 960.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1250.0, + 1260.0, + 1250.0, + 1260.0, + 1270.0, + 1196.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1280.0, + 381.0, + 1280.0, + 381.0, + 1417.0, + 356.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1274.0, + 408.0, + 1274.0, + 408.0, + 1292.0, + 388.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 1294.0, + 705.0, + 1294.0, + 705.0, + 1302.0, + 692.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1293.0, + 1172.0, + 1293.0, + 1172.0, + 1301.0, + 1162.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1308.0, + 408.0, + 1308.0, + 408.0, + 1325.0, + 388.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1343.0, + 407.0, + 1343.0, + 407.0, + 1358.0, + 395.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1375.0, + 407.0, + 1375.0, + 407.0, + 1392.0, + 384.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1410.0, + 407.0, + 1410.0, + 407.0, + 1426.0, + 383.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1437.0, + 429.0, + 1437.0, + 429.0, + 1447.0, + 420.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1437.0, + 559.0, + 1437.0, + 559.0, + 1447.0, + 551.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1435.0, + 628.0, + 1435.0, + 628.0, + 1450.0, + 612.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 1435.0, + 668.0, + 1435.0, + 668.0, + 1449.0, + 653.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 1436.0, + 732.0, + 1436.0, + 732.0, + 1450.0, + 719.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1435.0, + 864.0, + 1435.0, + 864.0, + 1450.0, + 848.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1436.0, + 904.0, + 1436.0, + 904.0, + 1449.0, + 889.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1437.0, + 966.0, + 1437.0, + 966.0, + 1447.0, + 957.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1435.0, + 1033.0, + 1435.0, + 1033.0, + 1450.0, + 1019.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1435.0, + 1100.0, + 1435.0, + 1100.0, + 1450.0, + 1084.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 1435.0, + 1139.0, + 1435.0, + 1139.0, + 1449.0, + 1126.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1437.0, + 1202.0, + 1437.0, + 1202.0, + 1447.0, + 1193.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1436.0, + 1266.0, + 1436.0, + 1266.0, + 1449.0, + 1257.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 1436.0, + 1332.0, + 1436.0, + 1332.0, + 1447.0, + 1322.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1447.0, + 632.0, + 1447.0, + 632.0, + 1464.0, + 604.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1449.0, + 867.0, + 1449.0, + 867.0, + 1464.0, + 840.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1076.0, + 1447.0, + 1103.0, + 1447.0, + 1103.0, + 1464.0, + 1076.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 1449.0, + 1339.0, + 1449.0, + 1339.0, + 1464.0, + 1313.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.75, + 1104.0, + 1179.75, + 1104.0, + 1179.75, + 1118.5, + 1142.75, + 1118.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1290.5, + 948.0, + 1290.5, + 948.0, + 1309.0, + 904.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 242.0, + 383.0, + 242.0, + 383.0, + 379.0, + 318.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 242.0, + 644.0, + 242.0, + 644.0, + 377.0, + 599.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 244.0, + 885.0, + 244.0, + 885.0, + 378.0, + 862.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 309.0, + 902.0, + 309.0, + 902.0, + 325.0, + 886.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 242.0, + 1164.0, + 242.0, + 1164.0, + 379.0, + 1121.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 328.0, + 1165.0, + 328.0, + 1165.0, + 350.0, + 1145.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 340.0, + 384.0, + 340.0, + 384.0, + 360.0, + 364.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 351.0, + 904.0, + 351.0, + 904.0, + 369.0, + 884.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 373.0, + 644.0, + 373.0, + 644.0, + 391.0, + 623.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 368.0, + 1164.0, + 368.0, + 1164.0, + 386.0, + 1143.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 387.0, + 406.0, + 387.0, + 406.0, + 407.0, + 387.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 386.0, + 462.0, + 386.0, + 462.0, + 408.0, + 430.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 386.0, + 513.0, + 386.0, + 513.0, + 408.0, + 480.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 386.0, + 563.0, + 386.0, + 563.0, + 408.0, + 530.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 389.0, + 664.0, + 389.0, + 664.0, + 405.0, + 649.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 386.0, + 722.0, + 386.0, + 722.0, + 408.0, + 689.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 386.0, + 772.0, + 386.0, + 772.0, + 408.0, + 740.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 386.0, + 823.0, + 386.0, + 823.0, + 408.0, + 790.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 389.0, + 924.0, + 389.0, + 924.0, + 405.0, + 909.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 386.0, + 982.0, + 386.0, + 982.0, + 408.0, + 950.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 386.0, + 1033.0, + 386.0, + 1033.0, + 408.0, + 999.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 386.0, + 1083.0, + 386.0, + 1083.0, + 408.0, + 1051.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 389.0, + 1183.0, + 389.0, + 1183.0, + 404.0, + 1169.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 386.0, + 1242.0, + 386.0, + 1242.0, + 408.0, + 1209.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 386.0, + 1291.0, + 386.0, + 1291.0, + 408.0, + 1259.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 386.0, + 1342.0, + 386.0, + 1342.0, + 408.0, + 1310.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 401.0, + 518.0, + 401.0, + 518.0, + 425.0, + 458.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 402.0, + 777.0, + 402.0, + 777.0, + 422.0, + 718.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 401.0, + 1038.0, + 401.0, + 1038.0, + 425.0, + 978.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 401.0, + 1298.0, + 401.0, + 1298.0, + 425.0, + 1237.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 440.0, + 366.0, + 440.0, + 366.0, + 577.0, + 340.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 441.0, + 627.0, + 441.0, + 627.0, + 580.0, + 600.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 443.0, + 885.0, + 443.0, + 885.0, + 576.0, + 862.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1119.0, + 440.0, + 1146.0, + 440.0, + 1146.0, + 576.0, + 1119.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 443.0, + 1319.0, + 443.0, + 1319.0, + 451.0, + 1299.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 452.0, + 383.0, + 452.0, + 383.0, + 473.0, + 364.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 457.0, + 644.0, + 457.0, + 644.0, + 478.0, + 623.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 458.0, + 902.0, + 458.0, + 902.0, + 475.0, + 886.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 455.0, + 1164.0, + 455.0, + 1164.0, + 475.0, + 1146.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 470.0, + 349.0, + 470.0, + 349.0, + 563.0, + 317.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 498.0, + 903.0, + 498.0, + 903.0, + 514.0, + 888.0, + 514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 488.0, + 1164.0, + 488.0, + 1164.0, + 510.0, + 1146.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 516.0, + 383.0, + 516.0, + 383.0, + 538.0, + 365.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 529.0, + 644.0, + 529.0, + 644.0, + 550.0, + 623.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 535.0, + 904.0, + 535.0, + 904.0, + 555.0, + 885.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 521.0, + 1164.0, + 521.0, + 1164.0, + 544.0, + 1145.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 549.0, + 384.0, + 549.0, + 384.0, + 568.0, + 361.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 567.0, + 573.0, + 567.0, + 573.0, + 575.0, + 560.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 568.0, + 644.0, + 568.0, + 644.0, + 586.0, + 623.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 575.0, + 906.0, + 575.0, + 906.0, + 594.0, + 882.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 558.0, + 1164.0, + 558.0, + 1164.0, + 576.0, + 1143.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 586.0, + 406.0, + 586.0, + 406.0, + 605.0, + 387.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 585.0, + 462.0, + 585.0, + 462.0, + 606.0, + 430.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 585.0, + 513.0, + 585.0, + 513.0, + 606.0, + 479.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 585.0, + 563.0, + 585.0, + 563.0, + 606.0, + 531.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 586.0, + 665.0, + 586.0, + 665.0, + 605.0, + 646.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 585.0, + 722.0, + 585.0, + 722.0, + 606.0, + 691.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 739.0, + 585.0, + 773.0, + 585.0, + 773.0, + 606.0, + 739.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 585.0, + 823.0, + 585.0, + 823.0, + 606.0, + 790.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 587.0, + 924.0, + 587.0, + 924.0, + 604.0, + 908.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 585.0, + 982.0, + 585.0, + 982.0, + 606.0, + 950.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 585.0, + 1033.0, + 585.0, + 1033.0, + 605.0, + 998.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 585.0, + 1083.0, + 585.0, + 1083.0, + 606.0, + 1050.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 587.0, + 1184.0, + 587.0, + 1184.0, + 604.0, + 1169.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 585.0, + 1242.0, + 585.0, + 1242.0, + 606.0, + 1209.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 585.0, + 1292.0, + 585.0, + 1292.0, + 606.0, + 1259.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 585.0, + 1342.0, + 585.0, + 1342.0, + 606.0, + 1310.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 599.0, + 518.0, + 599.0, + 518.0, + 623.0, + 458.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 599.0, + 778.0, + 599.0, + 778.0, + 623.0, + 718.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 599.0, + 1037.0, + 599.0, + 1037.0, + 620.0, + 976.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 599.0, + 1296.0, + 599.0, + 1296.0, + 620.0, + 1235.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 634.0, + 592.0, + 634.0, + 592.0, + 669.0, + 351.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 635.0, + 838.0, + 635.0, + 838.0, + 666.0, + 616.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 634.0, + 1095.0, + 634.0, + 1095.0, + 668.0, + 881.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 634.0, + 1346.0, + 634.0, + 1346.0, + 669.0, + 1153.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.75, + 335.0, + 637.75, + 335.0, + 637.75, + 352.5, + 631.75, + 352.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.75, + 439.5, + 1292.75, + 439.5, + 1292.75, + 455.5, + 1237.75, + 455.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 484.5, + 387.0, + 484.5, + 387.0, + 504.5, + 360.0, + 504.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 512.0, + 1005.0, + 512.0, + 1005.0, + 545.5, + 896.0, + 545.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 687.0, + 1261.0, + 687.0, + 1261.0, + 732.0, + 292.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 687.0, + 1404.0, + 687.0, + 1404.0, + 732.0, + 1329.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 720.0, + 393.0, + 720.0, + 393.0, + 761.0, + 296.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 720.0, + 726.0, + 720.0, + 726.0, + 761.0, + 465.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 720.0, + 771.0, + 720.0, + 771.0, + 761.0, + 763.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 720.0, + 1406.0, + 720.0, + 1406.0, + 761.0, + 857.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 753.0, + 1118.0, + 753.0, + 1118.0, + 791.0, + 295.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1489.0, + 1102.0, + 1489.0, + 1102.0, + 1534.0, + 293.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1489.0, + 1335.0, + 1489.0, + 1335.0, + 1534.0, + 1171.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1521.0, + 552.0, + 1521.0, + 552.0, + 1561.0, + 293.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1521.0, + 637.0, + 1521.0, + 637.0, + 1561.0, + 627.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1521.0, + 1374.0, + 1521.0, + 1374.0, + 1561.0, + 705.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1863.0, + 549.0, + 1863.0, + 549.0, + 1912.0, + 291.0, + 1912.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": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1406.0, + 1572.0, + 1406.0, + 1609.0, + 293.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1602.0, + 1407.0, + 1602.0, + 1407.0, + 1640.0, + 292.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1634.0, + 1405.0, + 1634.0, + 1405.0, + 1670.0, + 292.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1665.0, + 1405.0, + 1665.0, + 1405.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1695.0, + 630.0, + 1695.0, + 630.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1695.0, + 1208.0, + 1695.0, + 1208.0, + 1728.0, + 658.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1695.0, + 1404.0, + 1695.0, + 1404.0, + 1728.0, + 1397.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1725.0, + 1407.0, + 1725.0, + 1407.0, + 1761.0, + 292.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1754.0, + 859.0, + 1754.0, + 859.0, + 1793.0, + 292.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1754.0, + 1405.0, + 1754.0, + 1405.0, + 1793.0, + 890.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1787.0, + 1277.0, + 1787.0, + 1277.0, + 1821.0, + 294.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 950.0, + 1404.0, + 950.0, + 1404.0, + 990.0, + 293.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 982.0, + 1404.0, + 982.0, + 1404.0, + 1021.0, + 292.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1012.0, + 687.0, + 1012.0, + 687.0, + 1051.0, + 293.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1012.0, + 1328.0, + 1012.0, + 1328.0, + 1051.0, + 805.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 851.0, + 1099.0, + 851.0, + 1099.0, + 885.0, + 292.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 851.0, + 1405.0, + 851.0, + 1405.0, + 885.0, + 1211.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 880.0, + 1404.0, + 880.0, + 1404.0, + 918.0, + 294.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 915.0, + 382.0, + 915.0, + 382.0, + 947.0, + 293.0, + 947.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 328, + 327, + 1373, + 327, + 1373, + 562, + 328, + 562 + ], + "score": 0.982, + "html": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_=e+=0.1-2044.21814.81239.24608.91709.1849.2
67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.3r-770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+ =0.3r-1180.1543.1919.82600.31109.6727.8
46.7%个1730.81637.7966.14171.51470.2408.6
" + }, + { + "category_id": 1, + "poly": [ + 298, + 618, + 1405, + 618, + 1405, + 773, + 298, + 773 + ], + "score": 0.972 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 858, + 75, + 858, + 105, + 298, + 105 + ], + "score": 0.914 + }, + { + "category_id": 6, + "poly": [ + 296, + 238, + 1398, + 238, + 1398, + 303, + 296, + 303 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 300, + 821, + 489, + 821, + 489, + 854, + 300, + 854 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 859, + 2088, + 859, + 2111, + 840, + 2111 + ], + "score": 0.769 + }, + { + "category_id": 1, + "poly": [ + 291, + 855, + 1407, + 855, + 1407, + 2035, + 291, + 2035 + ], + "score": 0.667 + }, + { + "category_id": 13, + "poly": [ + 298, + 681, + 322, + 681, + 322, + 713, + 298, + 713 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 298, + 272, + 331, + 272, + 331, + 302, + 298, + 302 + ], + "score": 0.77, + "latex": "( \\hat { r } )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 241, + 1153, + 241, + 1153, + 271, + 1119, + 271 + ], + "score": 0.7, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 976, + 1575, + 994, + 1575, + 994, + 1597, + 976, + 1597 + ], + "score": 0.64, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 588, + 442, + 600, + 442, + 600, + 459, + 588, + 459 + ], + "score": 0.53, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 588, + 530, + 601, + 530, + 601, + 548, + 588, + 548 + ], + "score": 0.4, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 588, + 505, + 600, + 505, + 600, + 522, + 588, + 522 + ], + "score": 0.4, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 345, + 448, + 532, + 448, + 532, + 479, + 345, + 479 + ], + "score": 0.34, + "latex": "e _ { - } = 0 . 1 , e _ { + } = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 588, + 468, + 600, + 468, + 600, + 486, + 588, + 486 + ], + "score": 0.33, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 364, + 513, + 512, + 513, + 512, + 541, + 364, + 541 + ], + "score": 0.31, + "latex": "e _ { - } = e _ { + } = 0 . 3" + }, + { + "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": [ + 295.0, + 236.0, + 1118.0, + 236.0, + 1118.0, + 274.0, + 295.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 236.0, + 1403.0, + 236.0, + 1403.0, + 274.0, + 1154.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 271.0, + 1130.0, + 271.0, + 1130.0, + 304.0, + 332.0, + 304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 820.0, + 491.0, + 820.0, + 491.0, + 858.0, + 295.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 617.0, + 1403.0, + 617.0, + 1403.0, + 654.0, + 295.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 650.0, + 1405.0, + 650.0, + 1405.0, + 684.0, + 296.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 680.0, + 1405.0, + 680.0, + 1405.0, + 717.0, + 323.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 710.0, + 1405.0, + 710.0, + 1405.0, + 747.0, + 293.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 742.0, + 1251.0, + 742.0, + 1251.0, + 775.0, + 295.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 874.0, + 1404.0, + 874.0, + 1404.0, + 912.0, + 295.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 904.0, + 863.0, + 904.0, + 863.0, + 941.0, + 322.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 958.0, + 1407.0, + 958.0, + 1407.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 990.0, + 772.0, + 990.0, + 772.0, + 1032.0, + 322.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1046.0, + 1405.0, + 1046.0, + 1405.0, + 1084.0, + 294.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1078.0, + 995.0, + 1078.0, + 995.0, + 1114.0, + 321.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1132.0, + 1403.0, + 1132.0, + 1403.0, + 1170.0, + 293.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1162.0, + 1401.0, + 1162.0, + 1401.0, + 1202.0, + 320.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1196.0, + 675.0, + 1196.0, + 675.0, + 1232.0, + 322.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1246.0, + 1407.0, + 1246.0, + 1407.0, + 1290.0, + 293.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1280.0, + 1088.0, + 1280.0, + 1088.0, + 1320.0, + 321.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1337.0, + 1403.0, + 1337.0, + 1403.0, + 1374.0, + 293.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1368.0, + 891.0, + 1368.0, + 891.0, + 1405.0, + 322.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 1405.0, + 1420.0, + 1405.0, + 1464.0, + 293.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1454.0, + 1403.0, + 1454.0, + 1403.0, + 1492.0, + 324.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1484.0, + 814.0, + 1484.0, + 814.0, + 1525.0, + 322.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1537.0, + 1404.0, + 1537.0, + 1404.0, + 1581.0, + 291.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1570.0, + 975.0, + 1570.0, + 975.0, + 1610.0, + 321.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1570.0, + 1154.0, + 1570.0, + 1154.0, + 1610.0, + 995.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1624.0, + 1407.0, + 1624.0, + 1407.0, + 1668.0, + 291.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1658.0, + 1371.0, + 1658.0, + 1371.0, + 1696.0, + 322.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 1405.0, + 1710.0, + 1405.0, + 1752.0, + 293.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1744.0, + 1239.0, + 1744.0, + 1239.0, + 1785.0, + 322.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1798.0, + 1405.0, + 1798.0, + 1405.0, + 1840.0, + 294.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1832.0, + 1088.0, + 1832.0, + 1088.0, + 1868.0, + 321.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1403.0, + 1882.0, + 1403.0, + 1925.0, + 293.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1917.0, + 792.0, + 1917.0, + 792.0, + 1954.0, + 322.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2012.0, + 294.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 2002.0, + 1268.0, + 2002.0, + 1268.0, + 2042.0, + 320.0, + 2042.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, + 105, + 298, + 105 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 866, + 2088, + 866, + 2113, + 836, + 2113 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 294, + 758, + 1401, + 758, + 1401, + 823, + 294, + 823 + ], + "score": 0.747 + }, + { + "category_id": 1, + "poly": [ + 291, + 675, + 1401, + 675, + 1401, + 740, + 291, + 740 + ], + "score": 0.726 + }, + { + "category_id": 1, + "poly": [ + 298, + 955, + 1399, + 955, + 1399, + 1021, + 298, + 1021 + ], + "score": 0.715 + }, + { + "category_id": 1, + "poly": [ + 294, + 478, + 1401, + 478, + 1401, + 543, + 294, + 543 + ], + "score": 0.704 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1402, + 229, + 1402, + 294, + 299, + 294 + ], + "score": 0.697 + }, + { + "category_id": 1, + "poly": [ + 297, + 1236, + 1400, + 1236, + 1400, + 1301, + 297, + 1301 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 297, + 1152, + 1402, + 1152, + 1402, + 1216, + 297, + 1216 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 296, + 562, + 1400, + 562, + 1400, + 656, + 296, + 656 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 298, + 1576, + 1403, + 1576, + 1403, + 1672, + 298, + 1672 + ], + "score": 0.66 + }, + { + "category_id": 1, + "poly": [ + 296, + 1318, + 1405, + 1318, + 1405, + 1445, + 296, + 1445 + ], + "score": 0.64 + }, + { + "category_id": 1, + "poly": [ + 295, + 1462, + 1402, + 1462, + 1402, + 1558, + 295, + 1558 + ], + "score": 0.638 + }, + { + "category_id": 1, + "poly": [ + 297, + 1038, + 1403, + 1038, + 1403, + 1134, + 297, + 1134 + ], + "score": 0.633 + }, + { + "category_id": 1, + "poly": [ + 296, + 841, + 1404, + 841, + 1404, + 937, + 296, + 937 + ], + "score": 0.627 + }, + { + "category_id": 1, + "poly": [ + 295, + 396, + 1402, + 396, + 1402, + 460, + 295, + 460 + ], + "score": 0.603 + }, + { + "category_id": 1, + "poly": [ + 299, + 311, + 1402, + 311, + 1402, + 378, + 299, + 378 + ], + "score": 0.597 + }, + { + "category_id": 1, + "poly": [ + 289, + 2002, + 1293, + 2002, + 1293, + 2035, + 289, + 2035 + ], + "score": 0.587 + }, + { + "category_id": 1, + "poly": [ + 297, + 1690, + 1401, + 1690, + 1401, + 1787, + 297, + 1787 + ], + "score": 0.576 + }, + { + "category_id": 1, + "poly": [ + 296, + 1803, + 1400, + 1803, + 1400, + 1870, + 296, + 1870 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 297, + 1888, + 1405, + 1888, + 1405, + 1983, + 297, + 1983 + ], + "score": 0.514 + }, + { + "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": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 756.0, + 1408.0, + 756.0, + 1408.0, + 800.0, + 292.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 788.0, + 584.0, + 788.0, + 584.0, + 821.0, + 322.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 674.0, + 1404.0, + 674.0, + 1404.0, + 713.0, + 294.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 706.0, + 729.0, + 706.0, + 729.0, + 738.0, + 323.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 956.0, + 1404.0, + 956.0, + 1404.0, + 992.0, + 296.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 988.0, + 923.0, + 988.0, + 923.0, + 1022.0, + 322.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 480.0, + 1403.0, + 480.0, + 1403.0, + 516.0, + 296.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 509.0, + 883.0, + 509.0, + 883.0, + 545.0, + 323.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 1406.0, + 225.0, + 1406.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 260.0, + 647.0, + 260.0, + 647.0, + 296.0, + 325.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1236.0, + 1402.0, + 1236.0, + 1402.0, + 1272.0, + 297.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1266.0, + 1227.0, + 1266.0, + 1227.0, + 1302.0, + 322.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1407.0, + 1149.0, + 1407.0, + 1192.0, + 293.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1181.0, + 468.0, + 1181.0, + 468.0, + 1219.0, + 320.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 563.0, + 1402.0, + 563.0, + 1402.0, + 597.0, + 295.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 593.0, + 1402.0, + 593.0, + 1402.0, + 626.0, + 322.0, + 626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 624.0, + 470.0, + 624.0, + 470.0, + 656.0, + 321.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1575.0, + 1404.0, + 1575.0, + 1404.0, + 1614.0, + 296.0, + 1614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1607.0, + 1405.0, + 1607.0, + 1405.0, + 1644.0, + 323.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1640.0, + 572.0, + 1640.0, + 572.0, + 1671.0, + 325.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1320.0, + 1405.0, + 1320.0, + 1405.0, + 1353.0, + 294.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1352.0, + 1406.0, + 1352.0, + 1406.0, + 1385.0, + 323.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1380.0, + 1405.0, + 1380.0, + 1405.0, + 1415.0, + 322.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1410.0, + 451.0, + 1410.0, + 451.0, + 1449.0, + 320.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1461.0, + 1404.0, + 1461.0, + 1404.0, + 1501.0, + 293.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1497.0, + 1404.0, + 1497.0, + 1404.0, + 1531.0, + 322.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1525.0, + 662.0, + 1525.0, + 662.0, + 1559.0, + 322.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1038.0, + 1403.0, + 1038.0, + 1403.0, + 1076.0, + 296.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1070.0, + 1404.0, + 1070.0, + 1404.0, + 1108.0, + 322.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1101.0, + 499.0, + 1101.0, + 499.0, + 1136.0, + 322.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 839.0, + 1405.0, + 839.0, + 1405.0, + 880.0, + 294.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 872.0, + 1404.0, + 872.0, + 1404.0, + 910.0, + 322.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 905.0, + 582.0, + 905.0, + 582.0, + 936.0, + 323.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 395.0, + 1404.0, + 395.0, + 1404.0, + 433.0, + 293.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 429.0, + 977.0, + 429.0, + 977.0, + 457.0, + 325.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 308.0, + 1407.0, + 308.0, + 1407.0, + 352.0, + 293.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 345.0, + 1290.0, + 345.0, + 1290.0, + 378.0, + 322.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1296.0, + 2000.0, + 1296.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1692.0, + 1405.0, + 1692.0, + 1405.0, + 1726.0, + 297.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1722.0, + 1405.0, + 1722.0, + 1405.0, + 1757.0, + 324.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1755.0, + 1169.0, + 1755.0, + 1169.0, + 1789.0, + 324.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1840.0, + 295.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1835.0, + 1337.0, + 1835.0, + 1337.0, + 1870.0, + 321.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1887.0, + 1403.0, + 1887.0, + 1403.0, + 1925.0, + 294.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1916.0, + 1405.0, + 1916.0, + 1405.0, + 1957.0, + 320.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1951.0, + 622.0, + 1951.0, + 622.0, + 1982.0, + 324.0, + 1982.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.886 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 294, + 228, + 1403, + 228, + 1403, + 294, + 294, + 294 + ], + "score": 0.608 + }, + { + "category_id": 1, + "poly": [ + 298, + 1089, + 1400, + 1089, + 1400, + 1154, + 298, + 1154 + ], + "score": 0.598 + }, + { + "category_id": 1, + "poly": [ + 296, + 1007, + 1397, + 1007, + 1397, + 1072, + 296, + 1072 + ], + "score": 0.581 + }, + { + "category_id": 1, + "poly": [ + 295, + 1534, + 1400, + 1534, + 1400, + 1600, + 295, + 1600 + ], + "score": 0.573 + }, + { + "category_id": 1, + "poly": [ + 297, + 1368, + 1401, + 1368, + 1401, + 1434, + 297, + 1434 + ], + "score": 0.571 + }, + { + "category_id": 1, + "poly": [ + 297, + 923, + 1398, + 923, + 1398, + 988, + 297, + 988 + ], + "score": 0.568 + }, + { + "category_id": 1, + "poly": [ + 296, + 1286, + 1400, + 1286, + 1400, + 1352, + 296, + 1352 + ], + "score": 0.564 + }, + { + "category_id": 1, + "poly": [ + 297, + 1172, + 1402, + 1172, + 1402, + 1267, + 297, + 1267 + ], + "score": 0.562 + }, + { + "category_id": 1, + "poly": [ + 299, + 1617, + 1402, + 1617, + 1402, + 1714, + 299, + 1714 + ], + "score": 0.546 + }, + { + "category_id": 1, + "poly": [ + 299, + 312, + 1400, + 312, + 1400, + 407, + 299, + 407 + ], + "score": 0.545 + }, + { + "category_id": 1, + "poly": [ + 298, + 1451, + 1398, + 1451, + 1398, + 1517, + 298, + 1517 + ], + "score": 0.539 + }, + { + "category_id": 1, + "poly": [ + 291, + 757, + 1404, + 757, + 1404, + 823, + 291, + 823 + ], + "score": 0.536 + }, + { + "category_id": 1, + "poly": [ + 297, + 840, + 1398, + 840, + 1398, + 905, + 297, + 905 + ], + "score": 0.535 + }, + { + "category_id": 1, + "poly": [ + 296, + 675, + 1402, + 675, + 1402, + 739, + 296, + 739 + ], + "score": 0.526 + }, + { + "category_id": 1, + "poly": [ + 295, + 591, + 1402, + 591, + 1402, + 656, + 295, + 656 + ], + "score": 0.51 + }, + { + "category_id": 1, + "poly": [ + 297, + 508, + 1401, + 508, + 1401, + 573, + 297, + 573 + ], + "score": 0.5 + }, + { + "category_id": 1, + "poly": [ + 298, + 425, + 1399, + 425, + 1399, + 490, + 298, + 490 + ], + "score": 0.493 + }, + { + "category_id": 1, + "poly": [ + 297, + 1815, + 1401, + 1815, + 1401, + 1880, + 297, + 1880 + ], + "score": 0.468 + }, + { + "category_id": 1, + "poly": [ + 298, + 1732, + 1401, + 1732, + 1401, + 1796, + 298, + 1796 + ], + "score": 0.456 + }, + { + "category_id": 1, + "poly": [ + 295, + 1898, + 1401, + 1898, + 1401, + 1992, + 295, + 1992 + ], + "score": 0.431 + }, + { + "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": [ + 294.0, + 226.0, + 1406.0, + 226.0, + 1406.0, + 269.0, + 294.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 261.0, + 1280.0, + 261.0, + 1280.0, + 293.0, + 323.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1088.0, + 1405.0, + 1088.0, + 1405.0, + 1127.0, + 293.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1120.0, + 771.0, + 1120.0, + 771.0, + 1155.0, + 323.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1005.0, + 1401.0, + 1005.0, + 1401.0, + 1045.0, + 292.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1038.0, + 873.0, + 1038.0, + 873.0, + 1072.0, + 321.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1535.0, + 1404.0, + 1535.0, + 1404.0, + 1571.0, + 295.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1567.0, + 708.0, + 1567.0, + 708.0, + 1601.0, + 320.0, + 1601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1369.0, + 1405.0, + 1369.0, + 1405.0, + 1405.0, + 293.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1401.0, + 545.0, + 1401.0, + 545.0, + 1432.0, + 323.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 926.0, + 1400.0, + 926.0, + 1400.0, + 958.0, + 297.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 956.0, + 775.0, + 956.0, + 775.0, + 989.0, + 321.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1285.0, + 1404.0, + 1285.0, + 1404.0, + 1323.0, + 295.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1319.0, + 1287.0, + 1319.0, + 1287.0, + 1351.0, + 324.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1171.0, + 1404.0, + 1171.0, + 1404.0, + 1210.0, + 295.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1202.0, + 1404.0, + 1202.0, + 1404.0, + 1239.0, + 321.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1234.0, + 577.0, + 1234.0, + 577.0, + 1268.0, + 320.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1617.0, + 1406.0, + 1617.0, + 1406.0, + 1654.0, + 293.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1685.0, + 323.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1679.0, + 1153.0, + 1679.0, + 1153.0, + 1717.0, + 324.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 313.0, + 1404.0, + 313.0, + 1404.0, + 347.0, + 294.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 346.0, + 1402.0, + 346.0, + 1402.0, + 377.0, + 324.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 369.0, + 398.0, + 369.0, + 398.0, + 410.0, + 320.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1446.0, + 1404.0, + 1446.0, + 1404.0, + 1493.0, + 292.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1483.0, + 933.0, + 1483.0, + 933.0, + 1519.0, + 322.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 758.0, + 1403.0, + 758.0, + 1403.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 789.0, + 1348.0, + 789.0, + 1348.0, + 825.0, + 323.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 838.0, + 1403.0, + 838.0, + 1403.0, + 878.0, + 293.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 871.0, + 505.0, + 871.0, + 505.0, + 903.0, + 325.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 667.0, + 1407.0, + 667.0, + 1407.0, + 717.0, + 293.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 706.0, + 745.0, + 706.0, + 745.0, + 738.0, + 323.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 593.0, + 1405.0, + 593.0, + 1405.0, + 629.0, + 295.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 622.0, + 773.0, + 622.0, + 773.0, + 658.0, + 320.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 504.0, + 1403.0, + 504.0, + 1403.0, + 550.0, + 292.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 541.0, + 947.0, + 541.0, + 947.0, + 573.0, + 322.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 425.0, + 1403.0, + 425.0, + 1403.0, + 461.0, + 296.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 456.0, + 665.0, + 456.0, + 665.0, + 488.0, + 324.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1811.0, + 1405.0, + 1811.0, + 1405.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1845.0, + 741.0, + 1845.0, + 741.0, + 1881.0, + 322.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1728.0, + 1405.0, + 1728.0, + 1405.0, + 1770.0, + 293.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1759.0, + 398.0, + 1759.0, + 398.0, + 1799.0, + 319.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1896.0, + 1405.0, + 1896.0, + 1405.0, + 1935.0, + 294.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1927.0, + 1405.0, + 1927.0, + 1405.0, + 1968.0, + 320.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1961.0, + 533.0, + 1961.0, + 533.0, + 1992.0, + 325.0, + 1992.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 737, + 1404, + 737, + 1404, + 872, + 298, + 872 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 302, + 1065, + 1395, + 1065, + 1395, + 1172, + 302, + 1172 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 478, + 1868, + 1224, + 1868, + 1224, + 2029, + 478, + 2029 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 447, + 882, + 1219, + 882, + 1219, + 1054, + 447, + 1054 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 404, + 549, + 1286, + 549, + 1286, + 664, + 404, + 664 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 469, + 1453, + 1228, + 1453, + 1228, + 1560, + 469, + 1560 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 532, + 1721, + 1163, + 1721, + 1163, + 1797, + 532, + 1797 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 292, + 1575, + 1401, + 1575, + 1401, + 1642, + 292, + 1642 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 295, + 293, + 1402, + 293, + 1402, + 358, + 295, + 358 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 295, + 1648, + 1402, + 1648, + 1402, + 1712, + 295, + 1712 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 294, + 504, + 1115, + 504, + 1115, + 539, + 294, + 539 + ], + "score": 0.938 + }, + { + "category_id": 8, + "poly": [ + 763, + 1181, + 932, + 1181, + 932, + 1220, + 763, + 1220 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 296, + 414, + 827, + 414, + 827, + 448, + 296, + 448 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 591, + 457, + 1109, + 457, + 1109, + 498, + 591, + 498 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 582, + 367, + 1112, + 367, + 1112, + 408, + 582, + 408 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 296, + 1826, + 834, + 1826, + 834, + 1861, + 296, + 1861 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 858, + 73, + 858, + 106, + 297, + 106 + ], + "score": 0.925 + }, + { + "category_id": 8, + "poly": [ + 482, + 1276, + 1216, + 1276, + 1216, + 1321, + 482, + 1321 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 295, + 1407, + 1284, + 1407, + 1284, + 1443, + 295, + 1443 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 299, + 672, + 1165, + 672, + 1165, + 710, + 299, + 710 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 292, + 1231, + 1301, + 1231, + 1301, + 1267, + 292, + 1267 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 299, + 225, + 474, + 225, + 474, + 261, + 299, + 261 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1365, + 372, + 1401, + 372, + 1401, + 402, + 1365, + 402 + ], + "score": 0.869 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1733, + 1401, + 1733, + 1401, + 1763, + 1364, + 1763 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 866, + 2087, + 866, + 2113, + 836, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1343, + 1404, + 1343, + 1404, + 1374, + 1374, + 1374 + ], + "score": 0.824 + }, + { + "category_id": 2, + "poly": [ + 1374, + 674, + 1403, + 674, + 1403, + 704, + 1374, + 704 + ], + "score": 0.797 + }, + { + "category_id": 14, + "poly": [ + 448, + 880, + 1222, + 880, + 1222, + 1056, + 448, + 1056 + ], + "score": 0.94, + "latex": "\\left\\{ \\begin{array} { r l } & { R _ { 0 } = c _ { 0 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 0 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 0 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { R _ { 1 } = c _ { 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\\\ & { \\qquad \\dots } \\\\ & { R _ { M - 1 } = c _ { M - 1 , 0 } \\cdot \\hat { R } _ { 0 } + c _ { M - 1 , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { M - 1 , M - 1 } \\cdot \\hat { R } _ { M - 1 } } \\end{array} \\right." + }, + { + "category_id": 14, + "poly": [ + 469, + 1450, + 1228, + 1450, + 1228, + 1561, + 469, + 1561 + ], + "score": 0.94, + "latex": "\\hat { \\bf P } = [ \\hat { p } _ { 1 } , \\hat { p } _ { 2 } , \\cdots , \\hat { p } _ { M } ] = \\left[ \\sum _ { j } p _ { j } c _ { j , 1 } , \\sum _ { j } p _ { j } c _ { j , 2 } , \\cdots , \\sum _ { j } p _ { j } c _ { j , M } \\right] ," + }, + { + "category_id": 13, + "poly": [ + 373, + 1575, + 547, + 1575, + 547, + 1614, + 373, + 1614 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\hat { p } _ { i } = \\sum _ { j } p _ { j } c _ { j , i } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 457, + 327, + 620, + 327, + 620, + 358, + 457, + 358 + ], + "score": 0.93, + "latex": "r _ { + } , r _ { - } , \\hat { r } _ { + } , \\hat { r } _ { - }" + }, + { + "category_id": 13, + "poly": [ + 599, + 1097, + 896, + 1097, + 896, + 1136, + 599, + 1136 + ], + "score": 0.92, + "latex": "\\hat { \\mathbf { R } } : = [ \\hat { R } _ { 0 } , \\hat { R } _ { 1 } , . . . , \\hat { R } _ { M - 1 } ]" + }, + { + "category_id": 14, + "poly": [ + 476, + 1868, + 1222, + 1868, + 1222, + 2032, + 476, + 2032 + ], + "score": 0.92, + "latex": "\\begin{array} { r l r } & { } & { \\displaystyle \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { s _ { t + 1 } \\in S ; R _ { j } \\in { \\mathcal R } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , R _ { j } ) R _ { j } } \\\\ & { } & { \\displaystyle = \\sum _ { R _ { j } \\in { \\mathcal R } } \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) R _ { j } = \\sum _ { R _ { j } \\in { \\mathcal R } } p _ { j } R _ { j } = \\sum _ { j } p _ { j } R _ { j } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1197, + 770, + 1335, + 770, + 1335, + 807, + 1197, + 807 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { \\tilde { r } | r } [ \\hat { r } ] = r ." + }, + { + "category_id": 13, + "poly": [ + 866, + 295, + 1365, + 295, + 1365, + 329, + 866, + 329 + ], + "score": 0.92, + "latex": "\\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , \\tilde { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) , r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )" + }, + { + "category_id": 14, + "poly": [ + 532, + 1720, + 1166, + 1720, + 1166, + 1798, + 532, + 1798 + ], + "score": 0.92, + "latex": "\\sum _ { s ^ { \\prime } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) = \\sum _ { j } p _ { j } R _ { j } = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ." + }, + { + "category_id": 14, + "poly": [ + 408, + 546, + 1289, + 546, + 1289, + 665, + 408, + 665 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = e _ { + } \\cdot \\hat { r } _ { - } + ( 1 - e _ { + } ) \\cdot \\hat { r } _ { + } } \\\\ & { \\qquad = e _ { + } \\cdot \\frac { ( 1 - e _ { + } ) r _ { - } - e _ { - } r _ { + } } { 1 - e _ { - } - e _ { + } } + ( 1 - e _ { + } ) \\cdot \\frac { ( 1 - e _ { - } ) r _ { + } - e _ { + } r _ { - } } { 1 - e _ { - } - e _ { + } } = r _ { + } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 730, + 804, + 764, + 804, + 764, + 840, + 730, + 840 + ], + "score": 0.91, + "latex": "\\hat { R } _ { i }" + }, + { + "category_id": 14, + "poly": [ + 585, + 367, + 1113, + 367, + 1113, + 408, + 585, + 408 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\mathbb { E } _ { \\tilde { r } | r } ( \\hat { r } ) = \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) \\hat { r } _ { - } + \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) \\hat { r } _ { + } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 590, + 457, + 1103, + 457, + 1103, + 498, + 590, + 498 + ], + "score": 0.91, + "latex": "\\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { - } ) = e _ { + } , \\mathbb { P } _ { \\tilde { r } | r } ( \\hat { r } = \\hat { r } _ { + } ) = 1 - e _ { + } ." + }, + { + "category_id": 13, + "poly": [ + 737, + 673, + 1156, + 673, + 1156, + 710, + 737, + 710 + ], + "score": 0.91, + "latex": "\\mathbb { E } _ { \\tilde { r } | r } \\big [ \\hat { r } \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big ) \\big ] = r \\big ( s _ { t } , a _ { t } , s _ { t + 1 } \\big )" + }, + { + "category_id": 13, + "poly": [ + 920, + 1234, + 1194, + 1234, + 1194, + 1266, + 920, + 1266 + ], + "score": 0.9, + "latex": "R _ { i } , { i = 0 } , 1 , \\cdots , M - 1" + }, + { + "category_id": 13, + "poly": [ + 577, + 807, + 695, + 807, + 695, + 842, + 577, + 842 + ], + "score": 0.9, + "latex": "\\hat { r } ( \\tilde { r } = R _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 373, + 1062, + 406, + 1062, + 406, + 1098, + 373, + 1098 + ], + "score": 0.9, + "latex": "\\hat { R } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 327, + 365, + 327, + 365, + 357, + 298, + 357 + ], + "score": 0.9, + "latex": "{ \\hat { r } } , { \\tilde { r } } , r" + }, + { + "category_id": 13, + "poly": [ + 1280, + 1649, + 1399, + 1649, + 1399, + 1683, + 1280, + 1683 + ], + "score": 0.89, + "latex": "\\hat { r } ( \\tilde { r } = R _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1205, + 1069, + 1238, + 1069, + 1238, + 1098, + 1205, + 1098 + ], + "score": 0.89, + "latex": "R _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1367, + 1571, + 1400, + 1571, + 1400, + 1607, + 1367, + 1607 + ], + "score": 0.89, + "latex": "\\hat { R } _ { i }" + }, + { + "category_id": 14, + "poly": [ + 763, + 1180, + 935, + 1180, + 935, + 1219, + 763, + 1219 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\hat { \\bf R } = { \\bf C } ^ { - 1 } \\cdot { \\bf R } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 479, + 679, + 563, + 679, + 563, + 706, + 479, + 706 + ], + "score": 0.89, + "latex": "r = r _ { - }" + }, + { + "category_id": 13, + "poly": [ + 483, + 1682, + 513, + 1682, + 513, + 1710, + 483, + 1710 + ], + "score": 0.89, + "latex": "R _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1101, + 536, + 1101, + 536, + 1135, + 298, + 1135 + ], + "score": 0.89, + "latex": "[ R _ { 0 } ; R _ { 1 } ; \\cdot \\cdot \\cdot ; R _ { M - 1 } ]" + }, + { + "category_id": 13, + "poly": [ + 477, + 1613, + 510, + 1613, + 510, + 1641, + 477, + 1641 + ], + "score": 0.88, + "latex": "R _ { i }" + }, + { + "category_id": 13, + "poly": [ + 371, + 420, + 453, + 420, + 453, + 448, + 371, + 448 + ], + "score": 0.88, + "latex": "r = r _ { + }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1135, + 429, + 1135, + 429, + 1167, + 298, + 1167 + ], + "score": 0.88, + "latex": "\\mathbf { R } = \\mathbf { C } \\cdot { \\hat { \\mathbf { R } } }" + }, + { + "category_id": 14, + "poly": [ + 484, + 1275, + 1213, + 1275, + 1213, + 1319, + 484, + 1319 + ], + "score": 0.87, + "latex": "\\mathbb { E } _ { \\tilde { r } | r = R _ { i } } [ \\hat { r } ] = c _ { i , 0 } \\cdot \\hat { R } _ { 0 } + c _ { i , 1 } \\cdot \\hat { R } _ { 1 } + \\dots + c _ { i , M - 1 } \\cdot \\hat { R } _ { M - 1 } = R _ { i } ." + }, + { + "category_id": 13, + "poly": [ + 498, + 1651, + 524, + 1651, + 524, + 1681, + 498, + 1681 + ], + "score": 0.86, + "latex": "\\hat { p } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 578, + 1653, + 604, + 1653, + 604, + 1681, + 578, + 1681 + ], + "score": 0.84, + "latex": "p _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 1068, + 1405, + 1068, + 1405, + 1099, + 1335, + 1099 + ], + "score": 0.84, + "latex": "\\mathbf { R } : =" + }, + { + "category_id": 13, + "poly": [ + 799, + 842, + 815, + 842, + 815, + 867, + 799, + 867 + ], + "score": 0.81, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 701, + 1140, + 728, + 1140, + 728, + 1166, + 701, + 1166 + ], + "score": 0.77, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 644, + 1581, + 671, + 1581, + 671, + 1609, + 644, + 1609 + ], + "score": 0.74, + "latex": "p _ { i }" + }, + { + "category_id": 13, + "poly": [ + 606, + 1578, + 632, + 1578, + 632, + 1609, + 606, + 1609 + ], + "score": 0.73, + "latex": "\\hat { p } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 511, + 1831, + 525, + 1831, + 525, + 1856, + 511, + 1856 + ], + "score": 0.62, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 484, + 298, + 499, + 298, + 499, + 323, + 484, + 323 + ], + "score": 0.41, + "latex": "^ { l }" + }, + { + "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": [ + 292.0, + 219.0, + 477.0, + 219.0, + 477.0, + 271.0, + 292.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1348.0, + 1403.0, + 1348.0, + 1403.0, + 1375.0, + 1378.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 679.0, + 1403.0, + 679.0, + 1403.0, + 706.0, + 1377.0, + 706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 737.0, + 1405.0, + 737.0, + 1405.0, + 775.0, + 294.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 768.0, + 1196.0, + 768.0, + 1196.0, + 809.0, + 292.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 768.0, + 1406.0, + 768.0, + 1406.0, + 809.0, + 1336.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 807.0, + 576.0, + 807.0, + 576.0, + 845.0, + 293.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 807.0, + 729.0, + 807.0, + 729.0, + 845.0, + 696.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 807.0, + 1405.0, + 807.0, + 1405.0, + 845.0, + 765.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 840.0, + 798.0, + 840.0, + 798.0, + 872.0, + 293.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 840.0, + 828.0, + 840.0, + 828.0, + 872.0, + 816.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1062.0, + 372.0, + 1062.0, + 372.0, + 1104.0, + 294.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1062.0, + 1204.0, + 1062.0, + 1204.0, + 1104.0, + 407.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 1062.0, + 1334.0, + 1062.0, + 1334.0, + 1104.0, + 1239.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1099.0, + 598.0, + 1099.0, + 598.0, + 1139.0, + 537.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1099.0, + 1402.0, + 1099.0, + 1402.0, + 1139.0, + 897.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1134.0, + 297.0, + 1134.0, + 297.0, + 1173.0, + 294.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1134.0, + 700.0, + 1134.0, + 700.0, + 1173.0, + 430.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1134.0, + 1231.0, + 1134.0, + 1231.0, + 1173.0, + 729.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1571.0, + 372.0, + 1571.0, + 372.0, + 1615.0, + 295.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1571.0, + 605.0, + 1571.0, + 605.0, + 1615.0, + 548.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1571.0, + 643.0, + 1571.0, + 643.0, + 1615.0, + 633.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1571.0, + 1366.0, + 1571.0, + 1366.0, + 1615.0, + 672.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1571.0, + 1406.0, + 1571.0, + 1406.0, + 1615.0, + 1401.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1606.0, + 476.0, + 1606.0, + 476.0, + 1645.0, + 294.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1606.0, + 659.0, + 1606.0, + 659.0, + 1645.0, + 511.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 483.0, + 289.0, + 483.0, + 333.0, + 293.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 289.0, + 865.0, + 289.0, + 865.0, + 333.0, + 500.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 289.0, + 1407.0, + 289.0, + 1407.0, + 333.0, + 1366.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 322.0, + 297.0, + 322.0, + 297.0, + 363.0, + 292.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 322.0, + 456.0, + 322.0, + 456.0, + 363.0, + 366.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 322.0, + 1377.0, + 322.0, + 1377.0, + 363.0, + 621.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1647.0, + 497.0, + 1647.0, + 497.0, + 1686.0, + 295.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 1647.0, + 577.0, + 1647.0, + 577.0, + 1686.0, + 525.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1647.0, + 1279.0, + 1647.0, + 1279.0, + 1686.0, + 605.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1647.0, + 1403.0, + 1647.0, + 1403.0, + 1686.0, + 1400.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1677.0, + 482.0, + 1677.0, + 482.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1677.0, + 928.0, + 1677.0, + 928.0, + 1716.0, + 514.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 501.0, + 1118.0, + 501.0, + 1118.0, + 543.0, + 296.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 413.0, + 370.0, + 413.0, + 370.0, + 450.0, + 297.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 413.0, + 829.0, + 413.0, + 829.0, + 450.0, + 454.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1824.0, + 510.0, + 1824.0, + 510.0, + 1866.0, + 294.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1824.0, + 837.0, + 1824.0, + 837.0, + 1866.0, + 526.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1407.0, + 1286.0, + 1407.0, + 1286.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 666.0, + 478.0, + 666.0, + 478.0, + 715.0, + 294.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 666.0, + 736.0, + 666.0, + 736.0, + 715.0, + 564.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 666.0, + 1165.0, + 666.0, + 1165.0, + 715.0, + 1157.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1230.0, + 919.0, + 1230.0, + 919.0, + 1269.0, + 295.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1230.0, + 1306.0, + 1230.0, + 1306.0, + 1269.0, + 1195.0, + 1269.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 529, + 269, + 1167, + 269, + 1167, + 426, + 529, + 426 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 292, + 1435, + 1488, + 1435, + 1488, + 2039, + 292, + 2039 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 301, + 500, + 1404, + 500, + 1404, + 595, + 301, + 595 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 297, + 905, + 1397, + 905, + 1397, + 1000, + 297, + 1000 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 296, + 1097, + 1410, + 1097, + 1410, + 1162, + 296, + 1162 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 595, + 643, + 1099, + 643, + 1099, + 682, + 595, + 682 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 296, + 230, + 459, + 230, + 459, + 263, + 296, + 263 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 858, + 73, + 858, + 106, + 297, + 106 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 298, + 1031, + 1214, + 1031, + 1214, + 1067, + 298, + 1067 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 298, + 599, + 1121, + 599, + 1121, + 634, + 298, + 634 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 297, + 1394, + 481, + 1394, + 481, + 1425, + 297, + 1425 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 296, + 690, + 936, + 690, + 936, + 723, + 296, + 723 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 296, + 1174, + 986, + 1174, + 986, + 1210, + 296, + 1210 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1033, + 1402, + 1033, + 1402, + 1063, + 1374, + 1063 + ], + "score": 0.766 + }, + { + "category_id": 1, + "poly": [ + 295, + 1301, + 1267, + 1301, + 1267, + 1339, + 295, + 1339 + ], + "score": 0.733 + }, + { + "category_id": 2, + "poly": [ + 1374, + 435, + 1404, + 435, + 1404, + 466, + 1374, + 466 + ], + "score": 0.723 + }, + { + "category_id": 8, + "poly": [ + 329, + 1221, + 1365, + 1221, + 1365, + 1293, + 329, + 1293 + ], + "score": 0.703 + }, + { + "category_id": 1, + "poly": [ + 295, + 742, + 899, + 742, + 899, + 887, + 295, + 887 + ], + "score": 0.628 + }, + { + "category_id": 8, + "poly": [ + 600, + 1346, + 1100, + 1346, + 1100, + 1386, + 600, + 1386 + ], + "score": 0.624 + }, + { + "category_id": 2, + "poly": [ + 1373, + 435, + 1404, + 435, + 1404, + 466, + 1373, + 466 + ], + "score": 0.511 + }, + { + "category_id": 14, + "poly": [ + 527, + 271, + 1171, + 271, + 1171, + 428, + 527, + 428 + ], + "score": 0.95, + "latex": "\\begin{array} { l } { { \\displaystyle \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } = \\sum _ { j } \\sum _ { k } p _ { k } c _ { k , j } \\hat { R } _ { j } = \\sum _ { k } p _ { k } \\sum _ { j } c _ { k , j } \\hat { R } _ { j } } } \\\\ { { \\displaystyle \\qquad = \\sum _ { k } p _ { k } R _ { k } = \\sum _ { s _ { t } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r ( s _ { t } , a , s _ { t + 1 } ) . } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 750, + 1176, + 848, + 1176, + 848, + 1210, + 750, + 1210 + ], + "score": 0.93, + "latex": "Q ^ { * } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 662, + 601, + 725, + 601, + 725, + 635, + 662, + 635 + ], + "score": 0.93, + "latex": "\\{ \\Delta _ { t } \\}" + }, + { + "category_id": 13, + "poly": [ + 342, + 1303, + 688, + 1303, + 688, + 1338, + 342, + 1338 + ], + "score": 0.92, + "latex": "\\Delta _ { t } ( s , a ) = Q ( s , a ) - Q ^ { * } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 363, + 907, + 835, + 907, + 835, + 940, + 363, + 940 + ], + "score": 0.92, + "latex": "\\mathcal { F } _ { t } = \\{ \\Delta _ { t } , \\Delta _ { t - 1 } , \\cdot \\cdot \\cdot , F _ { t - 1 } \\cdot \\cdot \\cdot , \\alpha _ { t } , \\cdot \\cdot \\cdot \\}" + }, + { + "category_id": 14, + "poly": [ + 594, + 643, + 1105, + 643, + 1105, + 682, + 594, + 682 + ], + "score": 0.92, + "latex": "\\Delta _ { t + 1 } ( x ) = ( 1 - \\alpha _ { t } ( x ) ) \\Delta _ { t } ( x ) + \\alpha _ { t } ( x ) F _ { t } ( x )" + }, + { + "category_id": 14, + "poly": [ + 332, + 1218, + 1364, + 1218, + 1364, + 1295, + 332, + 1295 + ], + "score": 0.91, + "latex": "Q ^ { \\prime } ( s , a ) - Q ^ { * } ( s , a ) = ( 1 - \\alpha ) \\left( Q ( s , a ) - Q ^ { * } ( s , a ) \\right) + \\alpha \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in A } Q ( { s ^ { \\prime } } , b ) - Q ^ { * } ( s , a ) \\right] ." + }, + { + "category_id": 13, + "poly": [ + 1164, + 939, + 1238, + 939, + 1238, + 971, + 1164, + 971 + ], + "score": 0.9, + "latex": "| | \\cdot | | _ { W }" + }, + { + "category_id": 14, + "poly": [ + 310, + 1435, + 1428, + 1435, + 1428, + 2052, + 310, + 2052 + ], + "score": 0.9, + "latex": "\\begin{array} { r l } { \\mathbb { E } \\{ | F _ { 1 } ( x ) | , T _ { \\ell } \\} } & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s , \\ell ^ { \\prime } , \\hat { \\nu } ) [ \\ell + \\gamma \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ( \\nu , \\ell ^ { \\prime } , s ) ] - Q ^ { * } ( s , \\alpha ) } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , \\hat { \\nu } ) + \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\gamma } { s } \\log A ( s , \\ell ^ { \\prime } , s ) - \\gamma - \\frac { \\operatorname* { m a x } } { \\nu ( s , \\alpha ) ^ { 2 } } A ^ { 2 } ( \\nu , \\ell ^ { \\prime } , s ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } , s ^ { \\prime } ) \\hat { \\nu } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , s ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & { = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } - \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) { \\bf r } + \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) [ \\frac { \\operatorname* { m a x } } { s } \\log ( \\ell ^ { \\prime } , \\ell ) - \\frac { \\operatorname* { m a x } } { \\nu s ^ { \\prime } } Q ^ { * } ( s , \\alpha ) ] } \\\\ & = \\displaystyle \\sum _ { \\nu \\leq \\nu \\leq \\nu } \\sum _ { \\nu \\leq \\nu } \\mathbb { E } _ { \\alpha } ( s , \\ell ^ { \\prime } ) + \\sum _ { \\nu \\leq \\nu } Q ^ { * } ( s , \\ell ^ { \\prime } ) [ \\frac \\operatorname* \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1176, + 906, + 1243, + 906, + 1243, + 939, + 1176, + 939 + ], + "score": 0.9, + "latex": "\\alpha _ { t } ( x )" + }, + { + "category_id": 13, + "poly": [ + 368, + 848, + 704, + 848, + 704, + 885, + 368, + 885 + ], + "score": 0.89, + "latex": "[ F _ { t } ( x ) | \\mathcal { F } _ { t } ] \\leq C ( 1 + | | \\Delta _ { t } | | _ { W } ^ { 2 } ) ," + }, + { + "category_id": 13, + "poly": [ + 911, + 603, + 948, + 603, + 948, + 629, + 911, + 629 + ], + "score": 0.87, + "latex": "\\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 1011, + 534, + 1035, + 534, + 1035, + 564, + 1011, + 564 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 739, + 1303, + 1258, + 1303, + 1258, + 1339, + 739, + 1339 + ], + "score": 0.84, + "latex": "\\begin{array} { r } { F _ { t } ( s , a ) = \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - Q ^ { * } ( s , a ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 597, + 1346, + 1094, + 1346, + 1094, + 1384, + 597, + 1384 + ], + "score": 0.83, + "latex": "\\Delta _ { t + 1 } ( s ^ { \\prime } , a ) = ( 1 - \\alpha ) \\Delta _ { t } ( s , a ) + \\alpha F _ { t } ( s , a ) ." + }, + { + "category_id": 13, + "poly": [ + 1197, + 1104, + 1228, + 1104, + 1228, + 1130, + 1197, + 1130 + ], + "score": 0.81, + "latex": "\\alpha _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1100, + 1072, + 1100, + 1072, + 1133, + 1010, + 1133 + ], + "score": 0.8, + "latex": "Q _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 399, + 1135, + 419, + 1135, + 419, + 1157, + 399, + 1157 + ], + "score": 0.78, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 327, + 796, + 644, + 796, + 644, + 833, + 327, + 833 + ], + "score": 0.75, + "latex": "| | \\mathbb { E } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] | | _ { W } \\leq \\gamma | | \\Delta _ { t } | |" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1098, + 1393, + 1098, + 1393, + 1132, + 1265, + 1132 + ], + "score": 0.67, + "latex": "s , s ^ { \\prime } , Q , Q ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 468, + 745, + 644, + 745, + 644, + 783, + 468, + 783 + ], + "score": 0.65, + "latex": "\\textstyle \\sum _ { t } \\alpha _ { t } ( x ) = \\infty" + }, + { + "category_id": 13, + "poly": [ + 900, + 1103, + 953, + 1103, + 953, + 1132, + 900, + 1132 + ], + "score": 0.63, + "latex": "s _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1120, + 1101, + 1146, + 1101, + 1146, + 1130, + 1120, + 1130 + ], + "score": 0.61, + "latex": "\\hat { r } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 965, + 1100, + 999, + 1100, + 999, + 1132, + 965, + 1132 + ], + "score": 0.6, + "latex": "Q _ { t }" + }, + { + "category_id": 13, + "poly": [ + 325, + 746, + 457, + 746, + 457, + 781, + 325, + 781 + ], + "score": 0.57, + "latex": "0 \\leq \\alpha _ { t } \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 863, + 1106, + 888, + 1106, + 888, + 1131, + 863, + 1131 + ], + "score": 0.56, + "latex": "s _ { t }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1131, + 342, + 1131, + 342, + 1160, + 298, + 1160 + ], + "score": 0.54, + "latex": "r , \\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1104, + 1110, + 1104, + 1110, + 1130, + 1083, + 1130 + ], + "score": 0.51, + "latex": "r _ { t }" + }, + { + "category_id": 13, + "poly": [ + 754, + 849, + 830, + 849, + 830, + 882, + 754, + 882 + ], + "score": 0.45, + "latex": "C > 0" + }, + { + "category_id": 14, + "poly": [ + 325, + 742, + 890, + 742, + 890, + 784, + 325, + 784 + ], + "score": 0.37, + "latex": "\\begin{array} { r } { 0 \\leq \\alpha _ { t } \\leq 1 , \\sum _ { t } \\alpha _ { t } ( x ) = \\infty a n d \\sum _ { t } \\alpha _ { t } ( x ) ^ { 2 } < \\infty ; } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 322, + 796, + 787, + 796, + 787, + 834, + 322, + 834 + ], + "score": 0.37, + "latex": "| | \\mathbb { E } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] | | _ { W } \\leq \\gamma | | \\Delta _ { t } | | , w i t h \\gamma < 1 ;" + }, + { + "category_id": 13, + "poly": [ + 499, + 1102, + 514, + 1102, + 514, + 1127, + 499, + 1127 + ], + "score": 0.37, + "latex": "^ { l }" + }, + { + "category_id": 13, + "poly": [ + 1149, + 910, + 1162, + 910, + 1162, + 934, + 1149, + 934 + ], + "score": 0.33, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 860, + 1100, + 1149, + 1100, + 1149, + 1133, + 860, + 1133 + ], + "score": 0.32, + "latex": "s _ { t } , s _ { t + 1 } , Q _ { t } , Q _ { t + 1 } , r _ { t } , \\hat { r } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 711, + 799, + 781, + 799, + 781, + 831, + 711, + 831 + ], + "score": 0.3, + "latex": "\\gamma < 1" + }, + { + "category_id": 13, + "poly": [ + 326, + 743, + 892, + 743, + 892, + 784, + 326, + 784 + ], + "score": 0.27, + "latex": "\\begin{array} { r } { 0 \\leq \\alpha _ { t } \\leq 1 , \\sum _ { t } \\alpha _ { t } ( x ) = \\infty a n d \\sum _ { t } \\alpha _ { t } ( x ) ^ { 2 } < \\infty ; } \\end{array}" + }, + { + "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": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 1039.0, + 1401.0, + 1039.0, + 1401.0, + 1061.0, + 1379.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 441.0, + 1402.0, + 441.0, + 1402.0, + 464.0, + 1380.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 440.0, + 1403.0, + 440.0, + 1403.0, + 466.0, + 1378.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 500.0, + 1404.0, + 500.0, + 1404.0, + 538.0, + 295.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 533.0, + 1010.0, + 533.0, + 1010.0, + 567.0, + 295.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 533.0, + 1404.0, + 533.0, + 1404.0, + 567.0, + 1036.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 563.0, + 490.0, + 563.0, + 490.0, + 595.0, + 297.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 900.0, + 362.0, + 900.0, + 362.0, + 944.0, + 292.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 900.0, + 1148.0, + 900.0, + 1148.0, + 944.0, + 836.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 900.0, + 1175.0, + 900.0, + 1175.0, + 944.0, + 1163.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 900.0, + 1405.0, + 900.0, + 1405.0, + 944.0, + 1244.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 937.0, + 1163.0, + 937.0, + 1163.0, + 971.0, + 294.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 937.0, + 1401.0, + 937.0, + 1401.0, + 971.0, + 1239.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 968.0, + 591.0, + 968.0, + 591.0, + 1002.0, + 296.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1095.0, + 498.0, + 1095.0, + 498.0, + 1139.0, + 293.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1095.0, + 859.0, + 1095.0, + 859.0, + 1139.0, + 515.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1095.0, + 1196.0, + 1095.0, + 1196.0, + 1139.0, + 1150.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1095.0, + 1264.0, + 1095.0, + 1264.0, + 1139.0, + 1229.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1095.0, + 1407.0, + 1095.0, + 1407.0, + 1139.0, + 1394.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 297.0, + 1129.0, + 297.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1129.0, + 398.0, + 1129.0, + 398.0, + 1166.0, + 343.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1129.0, + 575.0, + 1129.0, + 575.0, + 1166.0, + 420.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 464.0, + 223.0, + 464.0, + 273.0, + 294.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1216.0, + 1030.0, + 1216.0, + 1069.0, + 293.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 595.0, + 661.0, + 595.0, + 661.0, + 640.0, + 293.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 595.0, + 910.0, + 595.0, + 910.0, + 640.0, + 726.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 595.0, + 1120.0, + 595.0, + 1120.0, + 640.0, + 949.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1391.0, + 484.0, + 1391.0, + 484.0, + 1432.0, + 294.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 689.0, + 937.0, + 689.0, + 937.0, + 728.0, + 295.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1171.0, + 749.0, + 1171.0, + 749.0, + 1214.0, + 294.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1171.0, + 985.0, + 1171.0, + 985.0, + 1214.0, + 849.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1298.0, + 341.0, + 1298.0, + 341.0, + 1344.0, + 292.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1298.0, + 738.0, + 1298.0, + 738.0, + 1344.0, + 689.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1298.0, + 1265.0, + 1298.0, + 1265.0, + 1344.0, + 1259.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 741.0, + 324.0, + 741.0, + 324.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 741.0, + 899.0, + 741.0, + 899.0, + 785.0, + 893.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 793.0, + 321.0, + 793.0, + 321.0, + 837.0, + 295.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 793.0, + 794.0, + 793.0, + 794.0, + 837.0, + 788.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 846.0, + 367.0, + 846.0, + 367.0, + 885.0, + 296.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 846.0, + 753.0, + 846.0, + 753.0, + 885.0, + 705.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 846.0, + 837.0, + 846.0, + 837.0, + 885.0, + 831.0, + 885.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 325, + 282, + 1373, + 282, + 1373, + 489, + 325, + 489 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 607, + 1162, + 1192, + 1162, + 1192, + 1310, + 607, + 1310 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 678, + 1816, + 1019, + 1816, + 1019, + 1891, + 678, + 1891 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 706, + 1648, + 987, + 1648, + 987, + 1721, + 706, + 1721 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 699, + 1039, + 1098, + 1039, + 1098, + 1109, + 699, + 1109 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 295, + 1907, + 1404, + 1907, + 1404, + 1974, + 295, + 1974 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 692, + 1988, + 1006, + 1988, + 1006, + 2031, + 692, + 2031 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 298, + 650, + 1402, + 650, + 1402, + 714, + 298, + 714 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 299, + 1459, + 1402, + 1459, + 1402, + 1553, + 299, + 1553 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 652, + 591, + 1048, + 591, + 1048, + 636, + 652, + 636 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 294, + 1564, + 1404, + 1564, + 1404, + 1629, + 294, + 1629 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 542, + 873, + 542, + 873, + 575, + 297, + 575 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 294, + 1410, + 1325, + 1410, + 1325, + 1447, + 294, + 1447 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 858, + 73, + 858, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 297, + 761, + 1039, + 761, + 1039, + 796, + 297, + 796 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 299, + 1763, + 793, + 1763, + 793, + 1797, + 299, + 1797 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 385, + 229, + 385, + 263, + 296, + 263 + ], + "score": 0.911 + }, + { + "category_id": 1, + "poly": [ + 365, + 1123, + 442, + 1123, + 442, + 1153, + 365, + 1153 + ], + "score": 0.902 + }, + { + "category_id": 1, + "poly": [ + 311, + 1332, + 616, + 1332, + 616, + 1369, + 311, + 1369 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1667, + 1401, + 1667, + 1401, + 1698, + 1365, + 1698 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 298, + 808, + 669, + 808, + 669, + 841, + 298, + 841 + ], + "score": 0.84 + }, + { + "category_id": 1, + "poly": [ + 301, + 851, + 1233, + 851, + 1233, + 887, + 301, + 887 + ], + "score": 0.75 + }, + { + "category_id": 1, + "poly": [ + 366, + 991, + 954, + 991, + 954, + 1024, + 366, + 1024 + ], + "score": 0.741 + }, + { + "category_id": 1, + "poly": [ + 302, + 890, + 925, + 890, + 925, + 986, + 302, + 986 + ], + "score": 0.568 + }, + { + "category_id": 2, + "poly": [ + 1376, + 685, + 1402, + 685, + 1402, + 710, + 1376, + 710 + ], + "score": 0.11 + }, + { + "category_id": 14, + "poly": [ + 706, + 1646, + 992, + 1646, + 992, + 1720, + 706, + 1720 + ], + "score": 0.94, + "latex": "0 \\leq | \\hat { r } | \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } R _ { \\mathrm { { m a x } } } ." + }, + { + "category_id": 14, + "poly": [ + 678, + 1814, + 1019, + 1814, + 1019, + 1891, + 678, + 1891 + ], + "score": 0.94, + "latex": "{ \\hat { \\mathbf { R } } } = \\mathbf { C } ^ { - 1 } \\cdot \\mathbf { R } = { \\frac { \\mathrm { a d j } ( \\mathbf { C } ) } { \\mathrm { d e t } ( \\mathbf { C } ) } } \\cdot \\mathbf { R } ," + }, + { + "category_id": 14, + "poly": [ + 322, + 281, + 1374, + 281, + 1374, + 488, + 322, + 488 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] = \\mathbb { E } \\left[ \\left( \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) - \\sum _ { s ^ { \\prime } \\in S : \\mathcal { \\hat { r } } \\in \\mathbb { R } } \\mathbb { P } ^ { \\prime } ( s , s ^ { \\prime } , \\hat { r } ) \\left[ \\hat { r } + \\gamma \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) \\right] \\right) ^ { 2 } \\right] } \\\\ & { \\quad \\quad \\quad = \\mathbf { V a r } \\left[ \\hat { r } + \\gamma \\displaystyle \\operatorname* { m a x } _ { b \\in \\mathcal { A } } Q ( s ^ { \\prime } , b ) | \\mathcal { F } _ { t } \\right] } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 699, + 1037, + 1101, + 1037, + 1101, + 1108, + 699, + 1108 + ], + "score": 0.94, + "latex": "\\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) = { \\frac { \\# [ ( s _ { t } , a _ { t } ) \\to s _ { t + 1 } ] } { m } }" + }, + { + "category_id": 13, + "poly": [ + 326, + 681, + 424, + 681, + 424, + 715, + 326, + 715 + ], + "score": 0.93, + "latex": "Q ^ { * } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 652, + 889, + 728, + 889, + 728, + 923, + 652, + 923 + ], + "score": 0.93, + "latex": "\\boldsymbol { \\hat { \\pi } } ( s , t )" + }, + { + "category_id": 13, + "poly": [ + 676, + 1491, + 782, + 1491, + 782, + 1525, + 676, + 1525 + ], + "score": 0.92, + "latex": "[ 0 , R _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 13, + "poly": [ + 1190, + 651, + 1284, + 651, + 1284, + 685, + 1190, + 685 + ], + "score": 0.92, + "latex": "Q ^ { \\prime } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1566, + 1240, + 1566, + 1240, + 1598, + 1150, + 1598 + ], + "score": 0.92, + "latex": "\\mathbf { C } _ { M \\times M }" + }, + { + "category_id": 13, + "poly": [ + 835, + 1567, + 901, + 1567, + 901, + 1596, + 835, + 1596 + ], + "score": 0.91, + "latex": "R _ { \\mathrm { m a x } }" + }, + { + "category_id": 14, + "poly": [ + 691, + 1987, + 1005, + 1987, + 1005, + 2029, + 691, + 2029 + ], + "score": 0.91, + "latex": "\\operatorname { a d j } ( \\mathbf { C } ) _ { i j } = ( - 1 ) ^ { i + j } \\cdot \\mathbf { M } _ { j i } ," + }, + { + "category_id": 13, + "poly": [ + 466, + 1565, + 621, + 1565, + 621, + 1599, + 466, + 1599 + ], + "score": 0.9, + "latex": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 14, + "poly": [ + 650, + 590, + 1048, + 590, + 1048, + 634, + 650, + 634 + ], + "score": 0.9, + "latex": "\\mathbf { V a r } \\left[ F _ { t } ( x ) | \\mathcal { F } _ { t } \\right] \\leq C ( 1 + \\vert \\vert \\Delta _ { t } \\vert \\vert _ { W } ^ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 386, + 921, + 510, + 921, + 510, + 957, + 386, + 957 + ], + "score": 0.9, + "latex": "\\hat { V } _ { T } ( s ) = 0" + }, + { + "category_id": 13, + "poly": [ + 386, + 853, + 465, + 853, + 465, + 885, + 386, + 885 + ], + "score": 0.9, + "latex": "G ( \\mathcal { M } )" + }, + { + "category_id": 14, + "poly": [ + 611, + 1162, + 1194, + 1162, + 1194, + 1313, + 611, + 1313 + ], + "score": 0.9, + "latex": "\\begin{array} { r l } & { \\hat { V } ( s ) = \\displaystyle \\operatorname* { m a x } _ { a \\in \\mathcal { A } } \\sum _ { \\tiny { s + 1 \\in \\mathcal { S } } \\atop { a \\in \\mathcal { A } } } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) \\left[ r _ { t } + \\gamma \\hat { V } ( s _ { t + 1 } ) \\right] } \\\\ & { } \\\\ & { \\hat { \\pi } ( s , t ) = \\displaystyle \\operatorname* { a r g m a x } _ { a \\in \\mathcal { A } } \\hat { V } ( s ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 707, + 853, + 988, + 853, + 988, + 887, + 707, + 887 + ], + "score": 0.89, + "latex": "\\mathcal { M } = ( \\mathcal { S } , \\mathcal { A } , \\mathcal { R } , \\mathcal { P } , \\gamma ) , T" + }, + { + "category_id": 13, + "poly": [ + 427, + 1331, + 487, + 1331, + 487, + 1369, + 427, + 1369 + ], + "score": 0.89, + "latex": "\\hat { V } ( s )" + }, + { + "category_id": 13, + "poly": [ + 538, + 1333, + 615, + 1333, + 615, + 1369, + 538, + 1369 + ], + "score": 0.89, + "latex": "\\boldsymbol { \\hat { \\pi } } ( s , t )" + }, + { + "category_id": 13, + "poly": [ + 406, + 886, + 466, + 886, + 466, + 921, + 406, + 921 + ], + "score": 0.89, + "latex": "\\hat { V } ( s )" + }, + { + "category_id": 13, + "poly": [ + 386, + 958, + 585, + 958, + 585, + 987, + 386, + 987 + ], + "score": 0.88, + "latex": "t = T - 1 , \\cdots , 0" + }, + { + "category_id": 13, + "poly": [ + 835, + 652, + 871, + 652, + 871, + 682, + 835, + 682 + ], + "score": 0.85, + "latex": "\\Delta _ { t }" + }, + { + "category_id": 13, + "poly": [ + 488, + 991, + 599, + 991, + 599, + 1025, + 488, + 1025 + ], + "score": 0.85, + "latex": "G ( \\mathcal { M } ) \\ : m" + }, + { + "category_id": 13, + "poly": [ + 406, + 1408, + 428, + 1408, + 428, + 1441, + 406, + 1441 + ], + "score": 0.84, + "latex": "\\hat { \\mathbb { P } }" + }, + { + "category_id": 13, + "poly": [ + 397, + 546, + 413, + 546, + 413, + 571, + 397, + 571 + ], + "score": 0.83, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 583, + 764, + 608, + 764, + 608, + 795, + 583, + 795 + ], + "score": 0.82, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 499, + 653, + 523, + 653, + 523, + 679, + 499, + 679 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1415, + 1193, + 1415, + 1193, + 1441, + 1171, + 1441 + ], + "score": 0.76, + "latex": "\\mathbb { P }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1911, + 1129, + 1911, + 1129, + 1937, + 1104, + 1937 + ], + "score": 0.73, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 498, + 1497, + 515, + 1497, + 515, + 1519, + 498, + 1519 + ], + "score": 0.72, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 533, + 810, + 558, + 810, + 558, + 840, + 533, + 840 + ], + "score": 0.71, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 776, + 1909, + 861, + 1909, + 861, + 1943, + 776, + 1943 + ], + "score": 0.57, + "latex": "\\operatorname* { d e t } ( \\mathbf { C } )" + }, + { + "category_id": 13, + "poly": [ + 739, + 1910, + 765, + 1910, + 765, + 1937, + 739, + 1937 + ], + "score": 0.53, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 572, + 995, + 600, + 995, + 600, + 1020, + 572, + 1020 + ], + "score": 0.29, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 372, + 1909, + 457, + 1909, + 457, + 1943, + 372, + 1943 + ], + "score": 0.27, + "latex": "\\operatorname { a d j } ( \\mathbf { C } )" + }, + { + "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": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 801.0, + 532.0, + 801.0, + 532.0, + 850.0, + 295.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 801.0, + 672.0, + 801.0, + 672.0, + 850.0, + 559.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 686.0, + 1402.0, + 686.0, + 1402.0, + 714.0, + 1378.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1905.0, + 371.0, + 1905.0, + 371.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1905.0, + 738.0, + 1905.0, + 738.0, + 1946.0, + 458.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1905.0, + 775.0, + 1905.0, + 775.0, + 1946.0, + 766.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1905.0, + 1103.0, + 1905.0, + 1103.0, + 1946.0, + 862.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1905.0, + 1406.0, + 1905.0, + 1406.0, + 1946.0, + 1130.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1938.0, + 444.0, + 1938.0, + 444.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 645.0, + 498.0, + 645.0, + 498.0, + 688.0, + 292.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 645.0, + 834.0, + 645.0, + 834.0, + 688.0, + 524.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 645.0, + 1189.0, + 645.0, + 1189.0, + 688.0, + 872.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 645.0, + 1406.0, + 645.0, + 1406.0, + 688.0, + 1285.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 677.0, + 325.0, + 677.0, + 325.0, + 719.0, + 292.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 677.0, + 439.0, + 677.0, + 439.0, + 719.0, + 425.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1457.0, + 1404.0, + 1457.0, + 1404.0, + 1498.0, + 293.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1491.0, + 497.0, + 1491.0, + 497.0, + 1525.0, + 297.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1491.0, + 675.0, + 1491.0, + 675.0, + 1525.0, + 516.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1491.0, + 1406.0, + 1491.0, + 1406.0, + 1525.0, + 783.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1522.0, + 889.0, + 1522.0, + 889.0, + 1552.0, + 297.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1560.0, + 465.0, + 1560.0, + 465.0, + 1604.0, + 293.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1560.0, + 834.0, + 1560.0, + 834.0, + 1604.0, + 622.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1560.0, + 1149.0, + 1560.0, + 1149.0, + 1604.0, + 902.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1604.0, + 1241.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1591.0, + 1380.0, + 1591.0, + 1380.0, + 1633.0, + 292.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 541.0, + 396.0, + 541.0, + 396.0, + 578.0, + 295.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 541.0, + 875.0, + 541.0, + 875.0, + 578.0, + 414.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1407.0, + 405.0, + 1407.0, + 405.0, + 1451.0, + 292.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1407.0, + 1170.0, + 1407.0, + 1170.0, + 1451.0, + 429.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1407.0, + 1328.0, + 1407.0, + 1328.0, + 1451.0, + 1194.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 760.0, + 582.0, + 760.0, + 582.0, + 800.0, + 296.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 760.0, + 1041.0, + 760.0, + 1041.0, + 800.0, + 609.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1757.0, + 796.0, + 1757.0, + 796.0, + 1804.0, + 294.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 224.0, + 390.0, + 224.0, + 390.0, + 271.0, + 292.0, + 271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1118.0, + 446.0, + 1118.0, + 446.0, + 1158.0, + 361.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1324.0, + 426.0, + 1324.0, + 426.0, + 1378.0, + 304.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1324.0, + 537.0, + 1324.0, + 537.0, + 1378.0, + 488.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1324.0, + 619.0, + 1324.0, + 619.0, + 1378.0, + 616.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 849.0, + 385.0, + 849.0, + 385.0, + 891.0, + 295.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 849.0, + 706.0, + 849.0, + 706.0, + 891.0, + 466.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 849.0, + 1239.0, + 849.0, + 1239.0, + 891.0, + 989.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 989.0, + 487.0, + 989.0, + 487.0, + 1028.0, + 366.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 989.0, + 955.0, + 989.0, + 955.0, + 1028.0, + 601.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 883.0, + 405.0, + 883.0, + 405.0, + 926.0, + 295.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 883.0, + 651.0, + 883.0, + 651.0, + 926.0, + 467.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 883.0, + 924.0, + 883.0, + 924.0, + 926.0, + 729.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 921.0, + 385.0, + 921.0, + 385.0, + 956.0, + 310.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 921.0, + 516.0, + 921.0, + 516.0, + 956.0, + 511.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 953.0, + 385.0, + 953.0, + 385.0, + 989.0, + 308.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 953.0, + 624.0, + 953.0, + 624.0, + 989.0, + 586.0, + 989.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 8, + "poly": [ + 415, + 793, + 1283, + 793, + 1283, + 980, + 415, + 980 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 318, + 1079, + 1381, + 1079, + 1381, + 1226, + 318, + 1226 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 299, + 419, + 1406, + 419, + 1406, + 515, + 299, + 515 + ], + "score": 0.963 + }, + { + "category_id": 8, + "poly": [ + 538, + 1300, + 1158, + 1300, + 1158, + 1383, + 538, + 1383 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 450, + 308, + 1249, + 308, + 1249, + 407, + 450, + 407 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 300, + 1456, + 1401, + 1456, + 1401, + 1908, + 300, + 1908 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 293, + 226, + 1404, + 226, + 1404, + 295, + 293, + 295 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 575, + 572, + 1121, + 572, + 1121, + 655, + 575, + 655 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 293, + 993, + 1403, + 993, + 1403, + 1068, + 293, + 1068 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 519, + 1966, + 1178, + 1966, + 1178, + 2030, + 519, + 2030 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 297, + 1255, + 998, + 1255, + 998, + 1288, + 297, + 1288 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 295, + 746, + 983, + 746, + 983, + 781, + 295, + 781 + ], + "score": 0.931 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 858, + 73, + 858, + 106, + 297, + 106 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 296, + 1921, + 487, + 1921, + 487, + 1954, + 296, + 1954 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 1413, + 427, + 1413, + 427, + 1445, + 296, + 1445 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 296, + 529, + 459, + 529, + 459, + 562, + 296, + 562 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2114, + 836, + 2114 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 1373, + 681, + 1404, + 681, + 1404, + 712, + 1373, + 712 + ], + "score": 0.852 + }, + { + "category_id": 14, + "poly": [ + 451, + 308, + 1246, + 308, + 1246, + 406, + 451, + 406 + ], + "score": 0.96, + "latex": "\\mathbf { M } _ { j i } \\leq \\sum _ { \\sigma \\in S _ { n } } \\left( | \\operatorname { s g n } ( \\sigma ) | \\prod _ { m = 1 } c _ { m , \\sigma _ { n } } ^ { \\prime } \\right) \\leq \\prod _ { m = 0 } ^ { M - 1 } \\left( \\sum _ { n = 0 } ^ { M - 1 } c _ { m , n } \\right) = 1 ^ { M } = 1 ," + }, + { + "category_id": 14, + "poly": [ + 318, + 1076, + 1380, + 1076, + 1380, + 1226, + 318, + 1226 + ], + "score": 0.94, + "latex": "P \\left( \\left| \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\mathbb { P } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } - \\sum _ { \\stackrel { s _ { t + 1 } \\in \\mathcal { S } } { \\hat { r } _ { t } \\in \\mathcal { \\hat { K } } } } \\hat { \\mathbb { P } } _ { a } \\big ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } \\big ) \\hat { r } _ { t } \\right| \\geq \\epsilon \\right) \\leq 2 \\exp \\left( \\frac { - 2 m \\epsilon ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } { M ^ { 2 } R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 416, + 793, + 1283, + 793, + 1283, + 985, + 416, + 985 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } & { } & { P \\left( \\left| \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { \\mathbb { P } } _ { a } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right| \\geq \\epsilon \\right) } \\\\ & { } & { \\leq 2 \\exp \\left( \\displaystyle \\frac { - 2 m \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { R _ { \\operatorname* { m a x } } ^ { 2 } } \\right) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 573, + 571, + 1123, + 571, + 1123, + 654, + 573, + 654 + ], + "score": 0.93, + "latex": "\\Big | \\hat { R } _ { i } \\Big | = \\frac { \\sum _ { j } | \\mathrm { a d j } ( \\mathbf { C } ) _ { i j } | \\cdot | R _ { j } | } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\leq \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\operatorname* { m a x } } ." + }, + { + "category_id": 13, + "poly": [ + 394, + 999, + 467, + 999, + 467, + 1033, + 394, + 1033 + ], + "score": 0.93, + "latex": "V _ { t } ( s _ { t } )" + }, + { + "category_id": 14, + "poly": [ + 310, + 1458, + 1406, + 1458, + 1406, + 1912, + 310, + 1912 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { V _ { t } ^ { * } ( s ) - \\hat { V } _ { t } ( s ) \\Big | = \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\tau _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { - \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) \\left[ \\hat { \\gamma } _ { t } + \\gamma V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\right] } & { } \\\\ { \\leq \\alpha _ { 1 } + \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) - \\displaystyle \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) V _ { t + 1 } ^ { * } ( s _ { t + 1 } ) \\Bigg | } & { } \\\\ { + \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in A } \\displaystyle \\Bigg | \\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { \\alpha } ( s _ { t } , s _ { t + 1 } ) { r _ { t } - \\sum _ { s _ { t + 1 } \\in S } \\hat { P } _ { \\alpha } } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } \\Bigg | } & { } \\\\ { \\leq \\gamma \\displaystyle \\operatorname* { m a x } _ { \\alpha \\in S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } } & { \\mathrm { ~ s _ { t + 1 } ~ } + \\gamma \\epsilon _ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 689, + 995, + 748, + 995, + 748, + 1039, + 689, + 1039 + ], + "score": 0.92, + "latex": "\\frac { R _ { \\mathrm { m a x } } } { 1 - \\gamma }" + }, + { + "category_id": 13, + "poly": [ + 703, + 230, + 924, + 230, + 924, + 264, + 703, + 264 + ], + "score": 0.92, + "latex": "\\left( M - 1 \\right) \\times \\left( M - 1 \\right)" + }, + { + "category_id": 13, + "poly": [ + 1176, + 995, + 1338, + 995, + 1338, + 1040, + 1176, + 1040 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\frac { M } { \\operatorname* { d e t } ( \\mathbf { C } ) } \\cdot R _ { \\mathrm { m a x } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 595, + 262, + 647, + 262, + 647, + 296, + 595, + 296 + ], + "score": 0.91, + "latex": "\\mathbf { M } _ { j i }" + }, + { + "category_id": 14, + "poly": [ + 538, + 1298, + 1159, + 1298, + 1159, + 1383, + 538, + 1383 + ], + "score": 0.91, + "latex": "\\sum _ { s _ { t + 1 } \\in S } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } ) r _ { t } = \\sum _ { s _ { t + 1 } \\in S ; \\hat { r } _ { t } \\in \\hat { \\mathcal { R } } } \\mathbb { P } _ { a } ( s _ { t } , s _ { t + 1 } , \\hat { r } _ { t } ) \\hat { r } _ { t } ." + }, + { + "category_id": 13, + "poly": [ + 371, + 231, + 424, + 231, + 424, + 264, + 371, + 264 + ], + "score": 0.9, + "latex": "\\mathbf { M } _ { j i }" + }, + { + "category_id": 13, + "poly": [ + 989, + 420, + 1203, + 420, + 1203, + 454, + 989, + 454 + ], + "score": 0.9, + "latex": "\\{ 0 , 1 , \\cdots , M - 2 \\}" + }, + { + "category_id": 14, + "poly": [ + 522, + 1970, + 1175, + 1970, + 1175, + 2027, + 522, + 2027 + ], + "score": 0.89, + "latex": "\\left| V _ { t } ( s ) - \\hat { V } _ { t } ( s ) \\right| \\le \\gamma \\operatorname* { m a x } _ { s \\in \\cal S } \\left| V _ { t + 1 } ^ { * } ( s ) - \\hat { V } _ { t + 1 } ( s ) \\right| + \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 328, + 452, + 381, + 452, + 381, + 486, + 328, + 486 + ], + "score": 0.87, + "latex": "\\mathbf { M } _ { j i }" + }, + { + "category_id": 13, + "poly": [ + 972, + 1001, + 998, + 1001, + 998, + 1030, + 972, + 1030 + ], + "score": 0.87, + "latex": "\\hat { r } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 730, + 453, + 770, + 453, + 770, + 481, + 730, + 481 + ], + "score": 0.87, + "latex": "+ 1" + }, + { + "category_id": 13, + "poly": [ + 1064, + 484, + 1101, + 484, + 1101, + 510, + 1064, + 510 + ], + "score": 0.83, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 394, + 452, + 475, + 452, + 475, + 485, + 394, + 485 + ], + "score": 0.82, + "latex": "\\operatorname { s g n } ( \\sigma )" + }, + { + "category_id": 13, + "poly": [ + 1339, + 233, + 1354, + 233, + 1354, + 263, + 1339, + 263 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 853, + 428, + 874, + 428, + 874, + 449, + 853, + 449 + ], + "score": 0.79, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1215, + 422, + 1237, + 422, + 1237, + 450, + 1215, + 450 + ], + "score": 0.77, + "latex": "c ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 388, + 265, + 400, + 265, + 400, + 289, + 388, + 289 + ], + "score": 0.76, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1159, + 458, + 1179, + 458, + 1179, + 479, + 1159, + 479 + ], + "score": 0.75, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 434, + 263, + 460, + 263, + 460, + 289, + 434, + 289 + ], + "score": 0.53, + "latex": "\\mathbf { C }" + }, + { + "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": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 686.0, + 1403.0, + 686.0, + 1403.0, + 713.0, + 1377.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 420.0, + 852.0, + 420.0, + 852.0, + 455.0, + 296.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 420.0, + 988.0, + 420.0, + 988.0, + 455.0, + 875.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 420.0, + 1214.0, + 420.0, + 1214.0, + 455.0, + 1204.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 420.0, + 1403.0, + 420.0, + 1403.0, + 455.0, + 1238.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 450.0, + 327.0, + 450.0, + 327.0, + 487.0, + 294.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 450.0, + 393.0, + 450.0, + 393.0, + 487.0, + 382.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 450.0, + 729.0, + 450.0, + 729.0, + 487.0, + 476.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 450.0, + 1158.0, + 450.0, + 1158.0, + 487.0, + 771.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 450.0, + 1403.0, + 450.0, + 1403.0, + 487.0, + 1180.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 1063.0, + 482.0, + 1063.0, + 515.0, + 294.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 482.0, + 1334.0, + 482.0, + 1334.0, + 515.0, + 1102.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 370.0, + 229.0, + 370.0, + 266.0, + 296.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 229.0, + 702.0, + 229.0, + 702.0, + 266.0, + 425.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 229.0, + 1338.0, + 229.0, + 1338.0, + 266.0, + 925.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 266.0, + 1355.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 259.0, + 387.0, + 259.0, + 387.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 259.0, + 433.0, + 259.0, + 433.0, + 296.0, + 401.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 259.0, + 594.0, + 259.0, + 594.0, + 296.0, + 461.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 259.0, + 838.0, + 259.0, + 838.0, + 296.0, + 648.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 980.0, + 393.0, + 980.0, + 393.0, + 1054.0, + 293.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 980.0, + 688.0, + 980.0, + 688.0, + 1054.0, + 468.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 980.0, + 971.0, + 980.0, + 971.0, + 1054.0, + 749.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 980.0, + 1175.0, + 980.0, + 1175.0, + 1054.0, + 999.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 980.0, + 1413.0, + 980.0, + 1413.0, + 1054.0, + 1339.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1030.0, + 582.0, + 1030.0, + 582.0, + 1070.0, + 294.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1251.0, + 998.0, + 1251.0, + 998.0, + 1292.0, + 293.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 742.0, + 985.0, + 742.0, + 985.0, + 789.0, + 293.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1917.0, + 491.0, + 1917.0, + 491.0, + 1960.0, + 294.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1408.0, + 432.0, + 1408.0, + 432.0, + 1448.0, + 294.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 522.0, + 464.0, + 522.0, + 464.0, + 572.0, + 294.0, + 572.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 783, + 1404, + 783, + 1404, + 888, + 296, + 888 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1326, + 1406, + 1326, + 1406, + 1448, + 297, + 1448 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 900, + 1405, + 900, + 1405, + 992, + 297, + 992 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 340, + 1584, + 1362, + 1584, + 1362, + 2033, + 340, + 2033 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 427, + 269, + 1274, + 269, + 1274, + 488, + 427, + 488 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 673, + 1443, + 1024, + 1443, + 1024, + 1520, + 673, + 1520 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 729, + 685, + 969, + 685, + 969, + 758, + 729, + 758 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 300, + 1214, + 1402, + 1214, + 1402, + 1297, + 300, + 1297 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 591, + 1132, + 1104, + 1132, + 1104, + 1206, + 591, + 1206 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 492, + 995, + 1203, + 995, + 1203, + 1071, + 492, + 1071 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 497, + 547, + 1198, + 547, + 1198, + 621, + 497, + 621 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 640, + 914, + 640, + 914, + 678, + 296, + 678 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 300, + 1091, + 945, + 1091, + 945, + 1124, + 300, + 1124 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 296, + 228, + 1000, + 228, + 1000, + 263, + 296, + 263 + ], + "score": 0.925 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 858, + 73, + 858, + 106, + 297, + 106 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 297, + 1546, + 521, + 1546, + 521, + 1579, + 297, + 1579 + ], + "score": 0.925 + }, + { + "category_id": 1, + "poly": [ + 298, + 506, + 850, + 506, + 850, + 540, + 298, + 540 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 866, + 2087, + 866, + 2113, + 836, + 2113 + ], + "score": 0.858 + }, + { + "category_id": 14, + "poly": [ + 729, + 681, + 970, + 681, + 970, + 758, + 729, + 758 + ], + "score": 0.95, + "latex": "\\epsilon _ { 1 } = \\epsilon _ { 2 } \\leq \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } ." + }, + { + "category_id": 13, + "poly": [ + 1096, + 781, + 1294, + 781, + 1294, + 829, + 1096, + 829 + ], + "score": 0.95, + "latex": "\\begin{array} { r } { \\epsilon _ { 1 } = \\epsilon _ { 2 } = \\frac { ( 1 - \\gamma ) \\epsilon } { 2 ( 1 + \\gamma ) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 339, + 1582, + 1365, + 1582, + 1365, + 2036, + 339, + 2036 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } { \\mathbf { V a r } ( \\vec { r } ) - \\mathbf { V a r } ( r ) = \\mathbf { E } \\left[ ( \\hat { r } - \\mathbf { E } [ \\hat { r } ] ) ^ { 2 } \\right] - \\mathbf { E } \\left[ ( r - \\mathbf { E } [ r ] ) ^ { 2 } \\right] } & { } \\\\ { = \\mathbb { E } [ \\vec { r } ^ { 2 } ] - \\mathbb { E } [ \\vec { r } ] ^ { 2 } + \\mathbb { E } [ r ^ { 2 } ] - \\mathbb { E } [ r ] ^ { 2 } } & { } \\\\ { = \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } \\right) ^ { 2 } - \\left[ \\underset { j } { \\sum } p _ { j } R _ { j } ^ { 2 } - \\left( \\underset { j } { \\sum } p _ { j } R _ { j } \\right) ^ { 2 } \\right] } & { } \\\\ { = \\underset { j } { \\sum } \\hat { p } _ { j } \\hat { R } _ { j } ^ { 2 } - \\sum _ { j } p _ { j } R _ { j } ^ { 2 } = \\underset { j } { \\sum } \\sum _ { j } p _ { i } c _ { i , j } \\hat { R } _ { j } ^ { 2 } - \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } } & { } \\\\ { = \\underset { j } { \\sum } p _ { j } \\left( \\underset { i } { \\sum } c _ { j , i } \\hat { R } _ { i } ^ { 2 } - \\left( \\underset { j } { \\sum } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } \\right) . } & { } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 494, + 901, + 589, + 901, + 589, + 935, + 494, + 935 + ], + "score": 0.94, + "latex": "| { \\cal S } | | { \\cal A } | T" + }, + { + "category_id": 14, + "poly": [ + 424, + 267, + 1273, + 267, + 1273, + 489, + 424, + 489 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ^ { * } ( s ) - \\hat { V } ( s ) \\right| \\leq ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\gamma ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) + \\dots + \\gamma ^ { T - 1 } ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } \\\\ { = \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\\\ { \\displaystyle \\underset { s \\in \\mathcal { S } } { \\operatorname* { m a x } } \\left| V ( s ) - \\hat { V } ( s ) \\right| \\leq \\displaystyle \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 592, + 1130, + 1105, + 1130, + 1105, + 1205, + 592, + 1205 + ], + "score": 0.94, + "latex": "m = { \\cal O } \\left( \\frac { 1 } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\mathrm { d e t } ( { \\bf C } ) ^ { 2 } } \\log \\frac { | { \\cal S } | | { \\cal A } | T } { \\delta } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 671, + 1441, + 1027, + 1441, + 1027, + 1519, + 671, + 1519 + ], + "score": 0.94, + "latex": "O \\left( \\frac { | \\mathcal { S } | | \\mathcal { A } | T ^ { 3 } } { \\epsilon ^ { 2 } \\mathrm { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\mathcal { A } | T } { \\delta } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 493, + 993, + 1206, + 993, + 1206, + 1071, + 493, + 1071 + ], + "score": 0.93, + "latex": "2 | S | | A | T \\cdot \\exp \\left( - m \\frac { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } } { 2 ( 1 + \\gamma ) ^ { 2 } } \\cdot \\operatorname * { m i n } \\{ ( 1 - \\gamma ) ^ { 2 } , \\frac { \\operatorname * { d e t } ( \\mathbf { C } ) ^ { 2 } } { M ^ { 2 } } \\} \\right) ." + }, + { + "category_id": 13, + "poly": [ + 538, + 1222, + 657, + 1222, + 657, + 1257, + 538, + 1257 + ], + "score": 0.93, + "latex": "m | { \\cal S } | | { \\cal A } | T" + }, + { + "category_id": 13, + "poly": [ + 830, + 1213, + 1189, + 1213, + 1189, + 1268, + 830, + 1268 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { O \\left( \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { d e t } ( \\mathbf { C } ) ^ { 2 } } \\log \\frac { | \\cal S | | \\boldsymbol { A } | T } { \\delta } \\right) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 496, + 545, + 1200, + 545, + 1200, + 622, + 496, + 622 + ], + "score": 0.92, + "latex": "\\operatorname* { m a x } _ { s \\in S } | V ^ { * } ( s ) - V ( s ) | \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) ( 1 - \\gamma ^ { T } ) } { 1 - \\gamma } \\leq 2 \\frac { ( \\epsilon _ { 1 } + \\gamma \\epsilon _ { 2 } ) } { 1 - \\gamma } ." + }, + { + "category_id": 13, + "poly": [ + 898, + 1330, + 1024, + 1330, + 1024, + 1360, + 898, + 1360 + ], + "score": 0.92, + "latex": "0 \\leq \\gamma < 1" + }, + { + "category_id": 13, + "poly": [ + 440, + 642, + 797, + 642, + 797, + 677, + 440, + 677 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { \\operatorname * { s o } \\operatorname* { m a x } _ { s \\in \\mathcal { S } } | V ^ { * } ( s ) - V ( s ) | \\le \\epsilon } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1330, + 1393, + 1330, + 1393, + 1361, + 1320, + 1361 + ], + "score": 0.9, + "latex": "\\gamma = 1" + }, + { + "category_id": 13, + "poly": [ + 341, + 649, + 428, + 649, + 428, + 676, + 341, + 676 + ], + "score": 0.86, + "latex": "\\epsilon _ { 1 } = \\epsilon _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 819, + 232, + 902, + 232, + 902, + 260, + 819, + 260 + ], + "score": 0.86, + "latex": "[ 0 \\right. T _ { \\left. }" + }, + { + "category_id": 13, + "poly": [ + 753, + 1391, + 777, + 1391, + 777, + 1427, + 753, + 1427 + ], + "score": 0.86, + "latex": "\\frac { \\epsilon } { T }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 902, + 1292, + 902, + 1292, + 935, + 1252, + 935 + ], + "score": 0.84, + "latex": "| \\cdot |" + }, + { + "category_id": 13, + "poly": [ + 774, + 1361, + 797, + 1361, + 797, + 1387, + 774, + 1387 + ], + "score": 0.84, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1266, + 1200, + 1266, + 1200, + 1293, + 1137, + 1293 + ], + "score": 0.83, + "latex": "1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 1000, + 825, + 1023, + 825, + 1023, + 855, + 1000, + 855 + ], + "score": 0.79, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 632, + 1094, + 647, + 1094, + 647, + 1120, + 632, + 1120 + ], + "score": 0.78, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 706, + 1098, + 733, + 1098, + 733, + 1120, + 706, + 1120 + ], + "score": 0.78, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 691, + 794, + 719, + 794, + 719, + 815, + 691, + 815 + ], + "score": 0.77, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 787, + 1272, + 802, + 1272, + 802, + 1291, + 787, + 1291 + ], + "score": 0.74, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1166, + 1366, + 1181, + 1366, + 1181, + 1388, + 1166, + 1388 + ], + "score": 0.69, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 681, + 829, + 696, + 829, + 696, + 851, + 681, + 851 + ], + "score": 0.67, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 526, + 796, + 540, + 796, + 540, + 815, + 526, + 815 + ], + "score": 0.63, + "latex": "\\epsilon" + }, + { + "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": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 775.0, + 525.0, + 775.0, + 525.0, + 833.0, + 290.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 775.0, + 690.0, + 775.0, + 690.0, + 833.0, + 541.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 775.0, + 1095.0, + 775.0, + 1095.0, + 833.0, + 720.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 775.0, + 1407.0, + 775.0, + 1407.0, + 833.0, + 1295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 820.0, + 680.0, + 820.0, + 680.0, + 861.0, + 294.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 820.0, + 999.0, + 820.0, + 999.0, + 861.0, + 697.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 820.0, + 1406.0, + 820.0, + 1406.0, + 861.0, + 1024.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 855.0, + 1219.0, + 855.0, + 1219.0, + 891.0, + 294.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1325.0, + 897.0, + 1325.0, + 897.0, + 1364.0, + 294.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1325.0, + 1319.0, + 1325.0, + 1319.0, + 1364.0, + 1025.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1325.0, + 1406.0, + 1325.0, + 1406.0, + 1364.0, + 1394.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 773.0, + 1360.0, + 773.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1360.0, + 1165.0, + 1360.0, + 1165.0, + 1393.0, + 798.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1360.0, + 1404.0, + 1360.0, + 1404.0, + 1393.0, + 1182.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1387.0, + 752.0, + 1387.0, + 752.0, + 1426.0, + 292.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1387.0, + 1406.0, + 1387.0, + 1406.0, + 1426.0, + 778.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1421.0, + 383.0, + 1421.0, + 383.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 899.0, + 493.0, + 899.0, + 493.0, + 936.0, + 294.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 899.0, + 1251.0, + 899.0, + 1251.0, + 936.0, + 590.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 899.0, + 1405.0, + 899.0, + 1405.0, + 936.0, + 1293.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 924.0, + 1406.0, + 924.0, + 1406.0, + 971.0, + 291.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 960.0, + 578.0, + 960.0, + 578.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1217.0, + 537.0, + 1217.0, + 537.0, + 1260.0, + 293.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1217.0, + 829.0, + 1217.0, + 829.0, + 1260.0, + 658.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 1218.0, + 1406.0, + 1218.0, + 1406.0, + 1258.0, + 1191.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 786.0, + 1262.0, + 786.0, + 1297.0, + 294.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1262.0, + 1136.0, + 1262.0, + 1136.0, + 1297.0, + 803.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1262.0, + 1210.0, + 1262.0, + 1210.0, + 1297.0, + 1201.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 1269.0, + 1401.0, + 1269.0, + 1401.0, + 1288.0, + 1379.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 340.0, + 641.0, + 340.0, + 682.0, + 294.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 641.0, + 439.0, + 641.0, + 439.0, + 682.0, + 429.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 641.0, + 916.0, + 641.0, + 916.0, + 682.0, + 798.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1089.0, + 631.0, + 1089.0, + 631.0, + 1127.0, + 297.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 1089.0, + 705.0, + 1089.0, + 705.0, + 1127.0, + 648.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1089.0, + 945.0, + 1089.0, + 945.0, + 1127.0, + 734.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 818.0, + 225.0, + 818.0, + 270.0, + 293.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 225.0, + 1003.0, + 225.0, + 1003.0, + 270.0, + 903.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1544.0, + 526.0, + 1544.0, + 526.0, + 1583.0, + 295.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 501.0, + 853.0, + 501.0, + 853.0, + 546.0, + 294.0, + 546.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1035, + 1023, + 1035, + 1023, + 1403, + 298, + 1403 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1718, + 1405, + 1718, + 1405, + 1839, + 297, + 1839 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 1048, + 1117, + 1398, + 1117, + 1398, + 1393, + 1048, + 1393 + ], + "score": 0.973, + "html": "
EnvironmentRL Algorithm
CartPoleQ-Learning (1989) CEM (2006) SARSA (1998) DQN (2013; 2015)
PendulumDDQN (2016) DDPG (2015)
Atari GamesNAF (2016) PPO (2017)
" + }, + { + "category_id": 1, + "poly": [ + 298, + 850, + 1403, + 850, + 1403, + 944, + 298, + 944 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 542, + 483, + 1155, + 483, + 1155, + 687, + 542, + 687 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 299, + 1495, + 1401, + 1495, + 1401, + 1588, + 299, + 1588 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 496, + 271, + 1195, + 271, + 1195, + 366, + 496, + 366 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 582, + 1948, + 1113, + 1948, + 1113, + 2046, + 582, + 2046 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 751, + 1595, + 943, + 1595, + 943, + 1667, + 751, + 1667 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 291, + 1877, + 1397, + 1877, + 1397, + 1938, + 291, + 1938 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 642, + 1839, + 1058, + 1839, + 1058, + 1875, + 642, + 1875 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 296, + 447, + 429, + 447, + 429, + 480, + 296, + 480 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 293, + 1672, + 1340, + 1672, + 1340, + 1706, + 293, + 1706 + ], + "score": 0.923 + }, + { + "category_id": 6, + "poly": [ + 1046, + 1045, + 1404, + 1045, + 1404, + 1108, + 1046, + 1108 + ], + "score": 0.923 + }, + { + "category_id": 1, + "poly": [ + 297, + 369, + 418, + 369, + 418, + 402, + 297, + 402 + ], + "score": 0.921 + }, + { + "category_id": 8, + "poly": [ + 717, + 406, + 982, + 406, + 982, + 444, + 717, + 444 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.92 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 718, + 229, + 718, + 263, + 298, + 263 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 301, + 1438, + 719, + 1438, + 719, + 1470, + 301, + 1470 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 300, + 782, + 685, + 782, + 685, + 819, + 300, + 819 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 299, + 978, + 579, + 978, + 579, + 1010, + 299, + 1010 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 864, + 2087, + 864, + 2112, + 836, + 2112 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 1374, + 708, + 1404, + 708, + 1404, + 739, + 1374, + 739 + ], + "score": 0.847 + }, + { + "category_id": 14, + "poly": [ + 540, + 484, + 1155, + 484, + 1155, + 691, + 540, + 691 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { { \\mathbf { V a r } ( \\hat { r } ) = \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } - ( \\sum _ { j } \\hat { p } _ { j } \\hat { R } _ { j } ) ^ { 2 } \\leq \\sum _ { j } \\hat { p } _ { j } \\hat { R _ { j } } ^ { 2 } } } \\\\ & { } & { \\leq \\sum _ { j } \\hat { p } _ { j } \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } = \\frac { M ^ { 2 } } { \\operatorname* { d e t } ( { \\mathbf { C } } ) ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 751, + 1593, + 945, + 1593, + 945, + 1670, + 751, + 1670 + ], + "score": 0.94, + "latex": "\\mathbf { C } = \\left[ \\begin{array} { l l } { 0 . 8 } & { 0 . 2 } \\\\ { 0 . 2 } & { 0 . 8 } \\end{array} \\right]" + }, + { + "category_id": 14, + "poly": [ + 495, + 271, + 1199, + 271, + 1199, + 366, + 495, + 366 + ], + "score": 0.92, + "latex": "\\sum _ { i } c _ { j , i } \\hat { \\boldsymbol { R _ { i } } } ^ { 2 } = \\sum _ { i } \\sqrt { c _ { j , i } } ^ { 2 } \\cdot \\sum _ { i } \\left( \\sqrt { c _ { j , i } } \\hat { R } _ { i } \\right) ^ { 2 } \\ge \\left( \\sum _ { i } c _ { j , i } \\hat { R } _ { i } \\right) ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 582, + 1946, + 1113, + 1946, + 1113, + 2044, + 582, + 2044 + ], + "score": 0.92, + "latex": "\\mathbf { N } = \\left[ \\begin{array} { c c c c } { n _ { 0 , 0 } } & { n _ { 0 , 1 } } & { \\cdots } & { n _ { 0 , M - 1 } } \\\\ { \\cdots } & { \\ddots } & { \\ddots } & { \\ddots } \\\\ { n _ { M - 1 , 0 } } & { n _ { M - 1 , 1 } } & { \\ddots } & { n _ { M - 1 , M - 1 } } \\end{array} \\right] ," + }, + { + "category_id": 14, + "poly": [ + 641, + 1839, + 1054, + 1839, + 1054, + 1876, + 641, + 1876 + ], + "score": 0.89, + "latex": "\\mathbf { C } = ( 1 - \\omega ) \\cdot \\mathbf { I } + \\omega \\cdot \\mathbf { N } , \\omega \\in [ 0 , 1 ] ," + }, + { + "category_id": 14, + "poly": [ + 714, + 405, + 982, + 405, + 982, + 444, + 714, + 444 + ], + "score": 0.86, + "latex": "\\mathbf { V a r } ( { \\hat { r } } ) - \\mathbf { V a r } ( r ) \\geq 0 ." + }, + { + "category_id": 13, + "poly": [ + 696, + 1678, + 725, + 1678, + 725, + 1703, + 696, + 1703 + ], + "score": 0.85, + "latex": "r _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 410, + 1099, + 434, + 1099, + 434, + 1130, + 410, + 1130 + ], + "score": 0.85, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 400, + 1677, + 428, + 1677, + 428, + 1703, + 400, + 1703 + ], + "score": 0.84, + "latex": "r _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 729, + 1160, + 754, + 1160, + 754, + 1190, + 729, + 1190 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 501, + 1909, + 534, + 1909, + 534, + 1935, + 501, + 1935 + ], + "score": 0.82, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1677, + 1168, + 1677, + 1168, + 1703, + 1139, + 1703 + ], + "score": 0.77, + "latex": "r _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 373, + 1882, + 396, + 1882, + 396, + 1904, + 373, + 1904 + ], + "score": 0.76, + "latex": "\\omega" + }, + { + "category_id": 13, + "poly": [ + 841, + 1908, + 869, + 1908, + 869, + 1935, + 841, + 1935 + ], + "score": 0.6, + "latex": "\\mathbf { N }" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1674, + 1324, + 1674, + 1324, + 1702, + 1260, + 1702 + ], + "score": 0.56, + "latex": "= 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 807, + 1878, + 837, + 1878, + 837, + 1904, + 807, + 1904 + ], + "score": 0.54, + "latex": "\\mathbf { N }" + }, + { + "category_id": 13, + "poly": [ + 735, + 1878, + 754, + 1878, + 754, + 1905, + 735, + 1905 + ], + "score": 0.29, + "latex": "\\mathbf { I }" + }, + { + "category_id": 13, + "poly": [ + 1177, + 1673, + 1327, + 1673, + 1327, + 1705, + 1177, + 1705 + ], + "score": 0.25, + "latex": "( \\mathrm { w e i g h t } = 0 . 2 )" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1045.0, + 1404.0, + 1045.0, + 1404.0, + 1080.0, + 1043.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1074.0, + 1363.0, + 1074.0, + 1363.0, + 1109.0, + 1042.0, + 1109.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": [ + 294.0, + 1435.0, + 724.0, + 1435.0, + 724.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 781.0, + 688.0, + 781.0, + 688.0, + 822.0, + 293.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 583.0, + 976.0, + 583.0, + 1014.0, + 294.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 714.0, + 1402.0, + 714.0, + 1402.0, + 737.0, + 1380.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1033.0, + 1024.0, + 1033.0, + 1024.0, + 1072.0, + 295.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1068.0, + 1024.0, + 1068.0, + 1024.0, + 1101.0, + 295.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1097.0, + 409.0, + 1097.0, + 409.0, + 1131.0, + 296.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 1097.0, + 1025.0, + 1097.0, + 1025.0, + 1131.0, + 435.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1123.0, + 1027.0, + 1123.0, + 1027.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1158.0, + 728.0, + 1158.0, + 728.0, + 1192.0, + 295.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1158.0, + 1025.0, + 1158.0, + 1025.0, + 1192.0, + 755.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1188.0, + 1025.0, + 1188.0, + 1025.0, + 1222.0, + 295.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1218.0, + 1025.0, + 1218.0, + 1025.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1247.0, + 1025.0, + 1247.0, + 1025.0, + 1285.0, + 293.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 1024.0, + 1280.0, + 1024.0, + 1314.0, + 294.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1310.0, + 1022.0, + 1310.0, + 1022.0, + 1343.0, + 295.0, + 1343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1341.0, + 1025.0, + 1341.0, + 1025.0, + 1374.0, + 295.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1374.0, + 690.0, + 1374.0, + 690.0, + 1405.0, + 297.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1719.0, + 1403.0, + 1719.0, + 1403.0, + 1754.0, + 296.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1752.0, + 1402.0, + 1752.0, + 1402.0, + 1783.0, + 296.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1817.0, + 291.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1806.0, + 395.0, + 1806.0, + 395.0, + 1845.0, + 293.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 850.0, + 1404.0, + 850.0, + 1404.0, + 887.0, + 294.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 880.0, + 1407.0, + 880.0, + 1407.0, + 918.0, + 293.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 913.0, + 899.0, + 913.0, + 899.0, + 947.0, + 296.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 1405.0, + 1492.0, + 1405.0, + 1533.0, + 294.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1528.0, + 1403.0, + 1528.0, + 1403.0, + 1558.0, + 297.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1560.0, + 910.0, + 1560.0, + 910.0, + 1590.0, + 297.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1871.0, + 372.0, + 1871.0, + 372.0, + 1914.0, + 295.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1871.0, + 734.0, + 1871.0, + 734.0, + 1914.0, + 397.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1871.0, + 806.0, + 1871.0, + 806.0, + 1914.0, + 755.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1871.0, + 1403.0, + 1871.0, + 1403.0, + 1914.0, + 838.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1909.0, + 500.0, + 1909.0, + 500.0, + 1940.0, + 298.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1909.0, + 840.0, + 1909.0, + 840.0, + 1940.0, + 535.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1909.0, + 983.0, + 1909.0, + 983.0, + 1940.0, + 870.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 444.0, + 434.0, + 444.0, + 434.0, + 483.0, + 293.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1670.0, + 399.0, + 1670.0, + 399.0, + 1710.0, + 294.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1670.0, + 695.0, + 1670.0, + 695.0, + 1710.0, + 429.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1670.0, + 1138.0, + 1670.0, + 1138.0, + 1710.0, + 726.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1670.0, + 1176.0, + 1670.0, + 1176.0, + 1710.0, + 1169.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 1670.0, + 1343.0, + 1670.0, + 1343.0, + 1710.0, + 1328.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 363.0, + 423.0, + 363.0, + 423.0, + 408.0, + 293.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 223.0, + 719.0, + 223.0, + 719.0, + 271.0, + 295.0, + 271.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 328, + 1552, + 1373, + 1552, + 1373, + 1790, + 328, + 1790 + ], + "score": 0.984, + "html": "
Noise RateRewardLift (↑)SuccessNoise RateRewardLift (↑)Success
e_=e+=0.1r-93.4%e_ = 0.1,e+ = 0.3r 部189.5%
广2.7%个96.1%3.4% 个92.9%
r3.2% 个96.6%?2.9% 个92.4%
e_=e+ =0.3r185.5%e_ = 0.3,e+ = 0.1r ?190.3%
r1.4% 个86.9%0.9%个91.2%
?0.9% 个86.4%r1.2%个91.5%
" + }, + { + "category_id": 1, + "poly": [ + 296, + 1098, + 1405, + 1098, + 1405, + 1380, + 296, + 1380 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 296, + 424, + 1406, + 424, + 1406, + 611, + 296, + 611 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1403, + 229, + 1403, + 328, + 299, + 328 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1884, + 1404, + 1884, + 1404, + 1978, + 299, + 1978 + ], + "score": 0.973 + }, + { + "category_id": 2, + "poly": [ + 328, + 2005, + 1021, + 2005, + 1021, + 2034, + 328, + 2034 + ], + "score": 0.919 + }, + { + "category_id": 4, + "poly": [ + 607, + 1029, + 1096, + 1029, + 1096, + 1062, + 607, + 1062 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 857, + 75, + 857, + 105, + 297, + 105 + ], + "score": 0.915 + }, + { + "category_id": 6, + "poly": [ + 298, + 1403, + 1404, + 1403, + 1404, + 1528, + 298, + 1528 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 301, + 365, + 825, + 365, + 825, + 398, + 301, + 398 + ], + "score": 0.902 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.865 + }, + { + "category_id": 3, + "poly": [ + 392, + 637, + 1296, + 637, + 1296, + 1005, + 392, + 1005 + ], + "score": 0.825 + }, + { + "category_id": 0, + "poly": [ + 299, + 1825, + 605, + 1825, + 605, + 1857, + 299, + 1857 + ], + "score": 0.8 + }, + { + "category_id": 3, + "poly": [ + 392, + 637, + 1295, + 637, + 1295, + 1005, + 392, + 1005 + ], + "score": 0.72 + }, + { + "category_id": 6, + "poly": [ + 299, + 1825, + 605, + 1825, + 605, + 1857, + 299, + 1857 + ], + "score": 0.138 + }, + { + "category_id": 1, + "poly": [ + 298, + 1403, + 1404, + 1403, + 1404, + 1528, + 298, + 1528 + ], + "score": 0.126 + }, + { + "category_id": 13, + "poly": [ + 490, + 549, + 574, + 549, + 574, + 580, + 490, + 580 + ], + "score": 0.92, + "latex": "r _ { + } = 1" + }, + { + "category_id": 13, + "poly": [ + 1172, + 295, + 1299, + 295, + 1299, + 328, + 1172, + 328 + ], + "score": 0.92, + "latex": "i + j \\neq M" + }, + { + "category_id": 13, + "poly": [ + 1098, + 231, + 1198, + 231, + 1198, + 264, + 1098, + 264 + ], + "score": 0.92, + "latex": "n _ { i , k } \\neq 0" + }, + { + "category_id": 13, + "poly": [ + 1076, + 295, + 1139, + 295, + 1139, + 328, + 1076, + 328 + ], + "score": 0.91, + "latex": "i \\neq j" + }, + { + "category_id": 13, + "poly": [ + 856, + 549, + 941, + 549, + 941, + 578, + 856, + 578 + ], + "score": 0.91, + "latex": "r _ { - } = 0" + }, + { + "category_id": 13, + "poly": [ + 792, + 578, + 1168, + 578, + 1168, + 611, + 792, + 611 + ], + "score": 0.9, + "latex": "\\mathbf { C } _ { 2 \\times 2 } = [ 1 - e _ { - } , e _ { - } ; e _ { + } , 1 - e _ { + } ]" + }, + { + "category_id": 13, + "poly": [ + 950, + 297, + 1041, + 297, + 1041, + 330, + 950, + 330 + ], + "score": 0.9, + "latex": "c _ { i , j } = 0" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1220, + 1061, + 1220, + 1061, + 1250, + 1019, + 1250 + ], + "score": 0.89, + "latex": "1 e ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1254, + 1267, + 1254, + 1267, + 1285, + 1032, + 1285 + ], + "score": 0.88, + "latex": "e _ { - } = 0 . 1 , e _ { + } = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 384, + 1251, + 427, + 1251, + 427, + 1281, + 384, + 1281 + ], + "score": 0.88, + "latex": "3 e ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 877, + 262, + 1020, + 262, + 1020, + 300, + 877, + 300 + ], + "score": 0.88, + "latex": "\\textstyle \\sum _ { j } n _ { i , j } = 1" + }, + { + "category_id": 13, + "poly": [ + 1227, + 231, + 1328, + 231, + 1328, + 263, + 1227, + 263 + ], + "score": 0.88, + "latex": "k \\neq j ; 2 ," + }, + { + "category_id": 13, + "poly": [ + 307, + 1251, + 349, + 1251, + 349, + 1281, + 307, + 1281 + ], + "score": 0.87, + "latex": "1 e ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 681, + 1406, + 706, + 1406, + 706, + 1437, + 681, + 1437 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1100, + 1120, + 1100, + 1120, + 1132, + 1095, + 1132 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 947, + 232, + 1046, + 232, + 1046, + 264, + 947, + 264 + ], + "score": 0.85, + "latex": "n _ { i , j } = 1" + }, + { + "category_id": 13, + "poly": [ + 545, + 1253, + 779, + 1253, + 779, + 1285, + 545, + 1285 + ], + "score": 0.85, + "latex": "e _ { - } = 0 . 3 , e _ { + } = 0 . 2" + }, + { + "category_id": 13, + "poly": [ + 794, + 1252, + 835, + 1252, + 835, + 1281, + 794, + 1281 + ], + "score": 0.85, + "latex": "3 e ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 871, + 1253, + 914, + 1253, + 914, + 1281, + 871, + 1281 + ], + "score": 0.85, + "latex": "5 e ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 425, + 1162, + 450, + 1162, + 450, + 1192, + 425, + 1192 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1267, + 1466, + 1292, + 1466, + 1292, + 1497, + 1267, + 1497 + ], + "score": 0.83, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 729, + 1222, + 957, + 1222, + 957, + 1253, + 729, + 1253 + ], + "score": 0.83, + "latex": "e _ { - } = 0 . 1 , e _ { + } = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1252, + 1401, + 1252, + 1401, + 1282, + 1358, + 1282 + ], + "score": 0.82, + "latex": "7 e ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1252, + 1323, + 1252, + 1323, + 1282, + 1281, + 1282 + ], + "score": 0.81, + "latex": "5 e ^ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 599, + 488, + 623, + 488, + 623, + 518, + 599, + 518 + ], + "score": 0.81, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 613, + 1312, + 642, + 1312, + 642, + 1345, + 613, + 1345 + ], + "score": 0.8, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 393, + 1436, + 427, + 1436, + 427, + 1466, + 393, + 1466 + ], + "score": 0.76, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1222, + 1401, + 1222, + 1401, + 1252, + 1174, + 1252 + ], + "score": 0.74, + "latex": "e _ { - } = 0 . 2 , e _ { + } = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 442, + 262, + 476, + 262, + 476, + 290, + 442, + 290 + ], + "score": 0.72, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 887, + 233, + 903, + 233, + 903, + 261, + 887, + 261 + ], + "score": 0.71, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 799, + 1436, + 833, + 1436, + 833, + 1466, + 799, + 1466 + ], + "score": 0.69, + "latex": "( \\hat { r } )" + }, + { + "category_id": 13, + "poly": [ + 984, + 1436, + 1018, + 1436, + 1018, + 1466, + 984, + 1466 + ], + "score": 0.64, + "latex": "( \\dot { r } )" + }, + { + "category_id": 13, + "poly": [ + 563, + 1728, + 577, + 1728, + 577, + 1748, + 563, + 1748 + ], + "score": 0.57, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 563, + 1702, + 577, + 1702, + 577, + 1720, + 563, + 1720 + ], + "score": 0.54, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 529, + 782, + 549, + 782, + 549, + 802, + 529, + 802 + ], + "score": 0.53, + "latex": "S _ { 4 }" + }, + { + "category_id": 13, + "poly": [ + 519, + 232, + 561, + 232, + 561, + 261, + 519, + 261 + ], + "score": 0.5, + "latex": "i , 1" + }, + { + "category_id": 13, + "poly": [ + 562, + 1753, + 578, + 1753, + 578, + 1776, + 562, + 1776 + ], + "score": 0.43, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1633, + 578, + 1633, + 578, + 1654, + 562, + 1654 + ], + "score": 0.42, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 492, + 296, + 522, + 296, + 522, + 323, + 492, + 323 + ], + "score": 0.41, + "latex": "\\mathbf { N }" + }, + { + "category_id": 13, + "poly": [ + 850, + 1724, + 1049, + 1724, + 1049, + 1754, + 850, + 1754 + ], + "score": 0.4, + "latex": "e _ { - } = 0 . 3 , e _ { + } = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1249, + 678, + 1274, + 678, + 1274, + 702, + 1249, + 702 + ], + "score": 0.35, + "latex": "\\tilde { e } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1726, + 503, + 1726, + 503, + 1754, + 347, + 1754 + ], + "score": 0.32, + "latex": "e _ { - } = e _ { + } = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 598, + 825, + 640, + 825, + 640, + 838, + 598, + 838 + ], + "score": 0.3, + "latex": "r \\ = 1" + }, + { + "category_id": 13, + "poly": [ + 1109, + 1728, + 1123, + 1728, + 1123, + 1748, + 1109, + 1748 + ], + "score": 0.28, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 562, + 1605, + 577, + 1605, + 577, + 1626, + 562, + 1626 + ], + "score": 0.28, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 456, + 783, + 501, + 783, + 501, + 799, + 456, + 799 + ], + "score": 0.27, + "latex": "r ~ = ~ 0" + }, + { + "category_id": 13, + "poly": [ + 562, + 1660, + 578, + 1660, + 578, + 1682, + 562, + 1682 + ], + "score": 0.27, + "latex": "\\dot { r }" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1998.0, + 1024.0, + 1998.0, + 1024.0, + 2040.0, + 330.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1027.0, + 1096.0, + 1027.0, + 1096.0, + 1066.0, + 602.0, + 1066.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, + 1403.0, + 680.0, + 1403.0, + 680.0, + 1440.0, + 294.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1403.0, + 1404.0, + 1403.0, + 1404.0, + 1440.0, + 707.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1436.0, + 392.0, + 1436.0, + 392.0, + 1469.0, + 294.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1436.0, + 798.0, + 1436.0, + 798.0, + 1469.0, + 428.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1436.0, + 983.0, + 1436.0, + 983.0, + 1469.0, + 834.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1436.0, + 1404.0, + 1436.0, + 1404.0, + 1469.0, + 1019.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1466.0, + 1266.0, + 1466.0, + 1266.0, + 1501.0, + 292.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1466.0, + 1404.0, + 1466.0, + 1404.0, + 1501.0, + 1293.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 1355.0, + 1495.0, + 1355.0, + 1532.0, + 295.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 365.0, + 829.0, + 365.0, + 829.0, + 401.0, + 295.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 659.0, + 668.0, + 659.0, + 668.0, + 695.0, + 635.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 657.0, + 941.0, + 657.0, + 941.0, + 769.0, + 865.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 648.0, + 1248.0, + 648.0, + 1248.0, + 707.0, + 1146.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 648.0, + 1279.0, + 648.0, + 1279.0, + 707.0, + 1275.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 694.0, + 943.0, + 694.0, + 943.0, + 727.0, + 887.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 704.0, + 1194.0, + 704.0, + 1194.0, + 722.0, + 1161.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 720.0, + 679.0, + 720.0, + 679.0, + 742.0, + 629.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 712.0, + 1151.0, + 712.0, + 1151.0, + 735.0, + 1122.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 731.0, + 943.0, + 731.0, + 943.0, + 764.0, + 887.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 732.0, + 1002.0, + 732.0, + 1002.0, + 759.0, + 987.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 754.0, + 1201.0, + 754.0, + 1201.0, + 765.0, + 1193.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 774.0, + 444.0, + 774.0, + 444.0, + 807.0, + 408.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 777.0, + 455.0, + 777.0, + 455.0, + 801.0, + 452.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 777.0, + 509.0, + 777.0, + 509.0, + 801.0, + 502.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 778.0, + 621.0, + 778.0, + 621.0, + 796.0, + 569.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 777.0, + 734.0, + 777.0, + 734.0, + 795.0, + 684.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 774.0, + 784.0, + 774.0, + 784.0, + 807.0, + 749.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 760.0, + 943.0, + 760.0, + 943.0, + 875.0, + 861.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 770.0, + 1139.0, + 770.0, + 1139.0, + 813.0, + 1069.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 766.0, + 1206.0, + 766.0, + 1206.0, + 807.0, + 1144.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 782.0, + 1276.0, + 782.0, + 1276.0, + 805.0, + 1236.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 825.0, + 676.0, + 825.0, + 676.0, + 837.0, + 661.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 826.0, + 693.0, + 826.0, + 693.0, + 835.0, + 680.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 806.0, + 943.0, + 806.0, + 943.0, + 840.0, + 888.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 819.0, + 1233.0, + 819.0, + 1233.0, + 827.0, + 1220.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 850.0, + 589.0, + 850.0, + 589.0, + 874.0, + 531.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 856.0, + 768.0, + 856.0, + 768.0, + 878.0, + 710.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 844.0, + 943.0, + 844.0, + 943.0, + 876.0, + 887.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 859.0, + 981.0, + 859.0, + 981.0, + 886.0, + 957.0, + 886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 845.0, + 1036.0, + 845.0, + 1036.0, + 860.0, + 1012.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 872.0, + 670.0, + 872.0, + 670.0, + 907.0, + 636.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 899.0, + 973.0, + 899.0, + 973.0, + 924.0, + 952.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 894.0, + 1078.0, + 894.0, + 1078.0, + 928.0, + 1028.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 894.0, + 1169.0, + 894.0, + 1169.0, + 928.0, + 1118.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 895.0, + 1258.0, + 895.0, + 1258.0, + 927.0, + 1211.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 921.0, + 1229.0, + 921.0, + 1229.0, + 956.0, + 1009.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 946.0, + 678.0, + 946.0, + 678.0, + 964.0, + 629.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 975.0, + 729.0, + 975.0, + 729.0, + 1005.0, + 464.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 974.0, + 1303.0, + 974.0, + 1303.0, + 1006.0, + 861.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 675.5, + 990.0, + 675.5, + 990.0, + 710.5, + 952.0, + 710.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 730.0, + 1133.0, + 730.0, + 1133.0, + 753.5, + 1095.0, + 753.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 775.5, + 554.0, + 775.5, + 554.0, + 804.5, + 527.0, + 804.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 775.5, + 666.0, + 775.5, + 666.0, + 804.5, + 641.0, + 804.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 767.0, + 1246.0, + 767.0, + 1246.0, + 786.0, + 1209.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.25, + 779.0, + 1247.25, + 779.0, + 1247.25, + 805.0, + 1193.25, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 793.0, + 1082.0, + 793.0, + 1082.0, + 821.0, + 1005.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 835.0, + 1269.0, + 835.0, + 1269.0, + 856.0, + 1237.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1821.0, + 607.0, + 1821.0, + 607.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 648.0, + 1276.0, + 648.0, + 1276.0, + 676.0, + 1146.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 656.0, + 943.0, + 656.0, + 943.0, + 688.0, + 887.0, + 688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 659.0, + 894.0, + 659.0, + 894.0, + 769.0, + 866.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 670.0, + 1248.0, + 670.0, + 1248.0, + 707.0, + 1146.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 670.0, + 1281.0, + 670.0, + 1281.0, + 707.0, + 1275.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 680.0, + 972.0, + 680.0, + 972.0, + 697.0, + 962.0, + 697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 694.0, + 944.0, + 694.0, + 944.0, + 727.0, + 887.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 704.0, + 1196.0, + 704.0, + 1196.0, + 722.0, + 1160.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 726.0, + 641.0, + 726.0, + 641.0, + 734.0, + 631.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 721.0, + 677.0, + 721.0, + 677.0, + 740.0, + 642.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 712.0, + 1152.0, + 712.0, + 1152.0, + 735.0, + 1121.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 731.0, + 943.0, + 731.0, + 943.0, + 764.0, + 887.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 774.0, + 444.0, + 774.0, + 444.0, + 807.0, + 408.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 777.0, + 455.0, + 777.0, + 455.0, + 801.0, + 452.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 777.0, + 510.0, + 777.0, + 510.0, + 801.0, + 502.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 778.0, + 621.0, + 778.0, + 621.0, + 796.0, + 569.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 777.0, + 736.0, + 777.0, + 736.0, + 795.0, + 684.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 773.0, + 784.0, + 773.0, + 784.0, + 807.0, + 749.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 760.0, + 943.0, + 760.0, + 943.0, + 875.0, + 861.0, + 875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 747.0, + 1275.0, + 747.0, + 1275.0, + 811.0, + 1068.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 821.0, + 644.0, + 821.0, + 644.0, + 839.0, + 641.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 825.0, + 703.0, + 825.0, + 703.0, + 837.0, + 661.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 806.0, + 943.0, + 806.0, + 943.0, + 840.0, + 888.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 850.0, + 589.0, + 850.0, + 589.0, + 874.0, + 531.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 855.0, + 768.0, + 855.0, + 768.0, + 879.0, + 711.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 844.0, + 943.0, + 844.0, + 943.0, + 876.0, + 887.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 860.0, + 980.0, + 860.0, + 980.0, + 884.0, + 958.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 846.0, + 1037.0, + 846.0, + 1037.0, + 858.0, + 1016.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 872.0, + 671.0, + 872.0, + 671.0, + 907.0, + 636.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 898.0, + 974.0, + 898.0, + 974.0, + 925.0, + 950.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 894.0, + 1079.0, + 894.0, + 1079.0, + 928.0, + 1028.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 894.0, + 1168.0, + 894.0, + 1168.0, + 928.0, + 1118.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 895.0, + 1257.0, + 895.0, + 1257.0, + 927.0, + 1210.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 921.0, + 1228.0, + 921.0, + 1228.0, + 956.0, + 1009.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 946.0, + 677.0, + 946.0, + 677.0, + 964.0, + 629.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 974.0, + 728.0, + 974.0, + 728.0, + 1004.0, + 464.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 974.0, + 1302.0, + 974.0, + 1302.0, + 1006.0, + 861.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.25, + 660.0, + 665.25, + 660.0, + 665.25, + 690.5, + 638.25, + 690.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.25, + 730.0, + 1134.25, + 730.0, + 1134.25, + 753.5, + 1094.25, + 753.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 775.5, + 555.0, + 775.5, + 555.0, + 804.5, + 527.0, + 804.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 775.5, + 667.0, + 775.5, + 667.0, + 805.0, + 641.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.25, + 793.0, + 1083.25, + 793.0, + 1083.25, + 823.0, + 1004.25, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 835.5, + 1272.0, + 835.5, + 1272.0, + 857.0, + 1238.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.25, + 848.0, + 1079.25, + 848.0, + 1079.25, + 859.5, + 1058.25, + 859.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1821.0, + 607.0, + 1821.0, + 607.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1098.0, + 1094.0, + 1098.0, + 1094.0, + 1136.0, + 296.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1136.0, + 1121.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1158.0, + 424.0, + 1158.0, + 424.0, + 1197.0, + 293.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 1158.0, + 1403.0, + 1158.0, + 1403.0, + 1197.0, + 451.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1227.0, + 294.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1219.0, + 728.0, + 1219.0, + 728.0, + 1259.0, + 291.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1219.0, + 1018.0, + 1219.0, + 1018.0, + 1259.0, + 958.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1219.0, + 1173.0, + 1219.0, + 1173.0, + 1259.0, + 1062.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1219.0, + 1406.0, + 1219.0, + 1406.0, + 1259.0, + 1402.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1247.0, + 306.0, + 1247.0, + 306.0, + 1292.0, + 291.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1247.0, + 383.0, + 1247.0, + 383.0, + 1292.0, + 350.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1247.0, + 544.0, + 1247.0, + 544.0, + 1292.0, + 428.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1247.0, + 793.0, + 1247.0, + 793.0, + 1292.0, + 780.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1247.0, + 870.0, + 1247.0, + 870.0, + 1292.0, + 836.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1247.0, + 1031.0, + 1247.0, + 1031.0, + 1292.0, + 915.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1247.0, + 1280.0, + 1247.0, + 1280.0, + 1292.0, + 1268.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1247.0, + 1357.0, + 1247.0, + 1357.0, + 1292.0, + 1324.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1247.0, + 1406.0, + 1247.0, + 1406.0, + 1292.0, + 1402.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1281.0, + 1403.0, + 1281.0, + 1403.0, + 1319.0, + 294.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 612.0, + 1315.0, + 612.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1315.0, + 1403.0, + 1315.0, + 1403.0, + 1352.0, + 643.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1349.0, + 1334.0, + 1349.0, + 1334.0, + 1382.0, + 295.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 421.0, + 1404.0, + 421.0, + 1404.0, + 461.0, + 294.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 453.0, + 1404.0, + 453.0, + 1404.0, + 491.0, + 293.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 484.0, + 598.0, + 484.0, + 598.0, + 521.0, + 293.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 484.0, + 1406.0, + 484.0, + 1406.0, + 521.0, + 624.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 516.0, + 1406.0, + 516.0, + 1406.0, + 552.0, + 294.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 547.0, + 489.0, + 547.0, + 489.0, + 583.0, + 294.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 547.0, + 855.0, + 547.0, + 855.0, + 583.0, + 575.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 547.0, + 1406.0, + 547.0, + 1406.0, + 583.0, + 942.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 578.0, + 791.0, + 578.0, + 791.0, + 614.0, + 294.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 578.0, + 1179.0, + 578.0, + 1179.0, + 614.0, + 1169.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 518.0, + 226.0, + 518.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 226.0, + 886.0, + 226.0, + 886.0, + 266.0, + 562.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 226.0, + 946.0, + 226.0, + 946.0, + 266.0, + 904.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 226.0, + 1097.0, + 226.0, + 1097.0, + 266.0, + 1047.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 226.0, + 1226.0, + 226.0, + 1226.0, + 266.0, + 1199.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 266.0, + 1329.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 259.0, + 441.0, + 259.0, + 441.0, + 300.0, + 294.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 259.0, + 876.0, + 259.0, + 876.0, + 300.0, + 477.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 300.0, + 1021.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 293.0, + 491.0, + 293.0, + 491.0, + 332.0, + 294.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 293.0, + 949.0, + 293.0, + 949.0, + 332.0, + 523.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 293.0, + 1075.0, + 293.0, + 1075.0, + 332.0, + 1042.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 293.0, + 1171.0, + 293.0, + 1171.0, + 332.0, + 1140.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 293.0, + 1311.0, + 293.0, + 1311.0, + 332.0, + 1300.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 1404.0, + 1884.0, + 1404.0, + 1918.0, + 295.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1949.0, + 292.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1946.0, + 1403.0, + 1946.0, + 1403.0, + 1980.0, + 295.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1403.0, + 680.0, + 1403.0, + 680.0, + 1440.0, + 294.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 1403.0, + 1404.0, + 1403.0, + 1404.0, + 1440.0, + 707.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1436.0, + 392.0, + 1436.0, + 392.0, + 1469.0, + 294.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1436.0, + 798.0, + 1436.0, + 798.0, + 1469.0, + 428.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1436.0, + 983.0, + 1436.0, + 983.0, + 1469.0, + 834.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1436.0, + 1404.0, + 1436.0, + 1404.0, + 1469.0, + 1019.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1466.0, + 1266.0, + 1466.0, + 1266.0, + 1501.0, + 292.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1466.0, + 1404.0, + 1466.0, + 1404.0, + 1501.0, + 1293.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1495.0, + 1355.0, + 1495.0, + 1355.0, + 1532.0, + 295.0, + 1532.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 429, + 1404, + 429, + 1404, + 734, + 297, + 734 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 928, + 1403, + 928, + 1403, + 1083, + 298, + 1083 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1404, + 229, + 1404, + 383, + 298, + 383 + ], + "score": 0.971 + }, + { + "category_id": 0, + "poly": [ + 298, + 790, + 922, + 790, + 922, + 827, + 298, + 827 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 322, + 2006, + 1303, + 2006, + 1303, + 2035, + 322, + 2035 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.874 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.865 + }, + { + "category_id": 0, + "poly": [ + 302, + 866, + 796, + 866, + 796, + 898, + 302, + 898 + ], + "score": 0.797 + }, + { + "category_id": 0, + "poly": [ + 298, + 1143, + 376, + 1143, + 376, + 1171, + 298, + 1171 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 342, + 1171, + 1088, + 1171, + 1088, + 1361, + 342, + 1361 + ], + "score": 0.715 + }, + { + "category_id": 1, + "poly": [ + 312, + 1363, + 1273, + 1363, + 1273, + 1958, + 312, + 1958 + ], + "score": 0.653 + }, + { + "category_id": 0, + "poly": [ + 301, + 1098, + 759, + 1098, + 759, + 1130, + 301, + 1130 + ], + "score": 0.581 + }, + { + "category_id": 1, + "poly": [ + 301, + 1098, + 759, + 1098, + 759, + 1130, + 301, + 1130 + ], + "score": 0.34 + }, + { + "category_id": 1, + "poly": [ + 302, + 866, + 796, + 866, + 796, + 898, + 302, + 898 + ], + "score": 0.099 + }, + { + "category_id": 13, + "poly": [ + 915, + 642, + 1031, + 642, + 1031, + 676, + 915, + 676 + ], + "score": 0.94, + "latex": "\\{ - 1 , 0 , 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 652, + 1361, + 728, + 1361, + 728, + 1395, + 652, + 1395 + ], + "score": 0.93, + "latex": "\\pi ( s , t )" + }, + { + "category_id": 13, + "poly": [ + 452, + 1675, + 695, + 1675, + 695, + 1719, + 452, + 1719 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\sum _ { ( s , a ) } | \\tilde { R } ( s , a ) | \\geq N } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1715, + 1266, + 1715, + 1266, + 1754, + 1181, + 1754 + ], + "score": 0.93, + "latex": "\\tilde { R } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 902, + 1639, + 988, + 1639, + 988, + 1677, + 902, + 1677 + ], + "score": 0.92, + "latex": "\\tilde { R } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 676, + 1644, + 753, + 1644, + 753, + 1677, + 676, + 1677 + ], + "score": 0.92, + "latex": "\\tilde { r } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 758, + 1720, + 835, + 1720, + 835, + 1753, + 758, + 1753 + ], + "score": 0.92, + "latex": "{ \\bar { r } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1755, + 1108, + 1755, + 1108, + 1789, + 1031, + 1789 + ], + "score": 0.92, + "latex": "{ \\bar { r } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 345, + 1170, + 591, + 1170, + 591, + 1207, + 345, + 1207 + ], + "score": 0.92, + "latex": "\\tilde { \\mathcal { M } } = ( S , \\mathcal { A } , \\tilde { \\mathcal { R } } , \\mathcal { P } , \\gamma )" + }, + { + "category_id": 13, + "poly": [ + 345, + 1328, + 430, + 1328, + 430, + 1363, + 345, + 1363 + ], + "score": 0.92, + "latex": "\\tilde { R } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1029, + 1330, + 1092, + 1330, + 1092, + 1364, + 1029, + 1364 + ], + "score": 0.91, + "latex": "( s , a )" + }, + { + "category_id": 13, + "poly": [ + 878, + 460, + 1005, + 460, + 1005, + 489, + 878, + 489 + ], + "score": 0.91, + "latex": "8 4 \\times 8 4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 904, + 1787, + 989, + 1787, + 989, + 1824, + 904, + 1824 + ], + "score": 0.91, + "latex": "\\tilde { R } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 297, + 675, + 387, + 675, + 387, + 703, + 297, + 703 + ], + "score": 0.91, + "latex": "r = - 1" + }, + { + "category_id": 13, + "poly": [ + 1215, + 228, + 1274, + 228, + 1274, + 259, + 1215, + 259 + ], + "score": 0.91, + "latex": "1 e ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 840, + 321, + 899, + 321, + 899, + 350, + 840, + 350 + ], + "score": 0.91, + "latex": "5 e ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 715, + 290, + 774, + 290, + 774, + 320, + 715, + 320 + ], + "score": 0.91, + "latex": "1 e ^ { - 2 }" + }, + { + "category_id": 13, + "poly": [ + 406, + 1362, + 466, + 1362, + 466, + 1394, + 406, + 1394 + ], + "score": 0.9, + "latex": "Q ( s )" + }, + { + "category_id": 13, + "poly": [ + 1175, + 611, + 1233, + 611, + 1233, + 641, + 1175, + 641 + ], + "score": 0.9, + "latex": "3 e ^ { - 4 }" + }, + { + "category_id": 13, + "poly": [ + 651, + 351, + 710, + 351, + 710, + 381, + 651, + 381 + ], + "score": 0.9, + "latex": "1 e ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 702, + 1827, + 779, + 1827, + 779, + 1860, + 702, + 1860 + ], + "score": 0.9, + "latex": "{ \\dot { r } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 345, + 1265, + 460, + 1265, + 460, + 1297, + 345, + 1297 + ], + "score": 0.89, + "latex": "\\alpha \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 487, + 1392, + 629, + 1392, + 629, + 1421, + 487, + 1421 + ], + "score": 0.89, + "latex": "S \\times \\mathcal { A } \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 842, + 552, + 909, + 552, + 909, + 581, + 842, + 581 + ], + "score": 0.89, + "latex": "3 \\times 3" + }, + { + "category_id": 13, + "poly": [ + 614, + 491, + 708, + 491, + 708, + 519, + 614, + 519 + ], + "score": 0.89, + "latex": "8 4 \\times 8 4" + }, + { + "category_id": 13, + "poly": [ + 1207, + 521, + 1275, + 521, + 1275, + 550, + 1207, + 550 + ], + "score": 0.89, + "latex": "8 \\times 8" + }, + { + "category_id": 13, + "poly": [ + 903, + 1755, + 980, + 1755, + 980, + 1787, + 903, + 1787 + ], + "score": 0.89, + "latex": "\\tilde { r } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 592, + 1205, + 776, + 1205, + 776, + 1234, + 592, + 1234 + ], + "score": 0.89, + "latex": "T : S \\times \\mathcal { A } S" + }, + { + "category_id": 13, + "poly": [ + 450, + 552, + 518, + 552, + 518, + 581, + 450, + 581 + ], + "score": 0.89, + "latex": "4 \\times 4" + }, + { + "category_id": 13, + "poly": [ + 338, + 611, + 381, + 611, + 381, + 641, + 338, + 641 + ], + "score": 0.88, + "latex": "3 e ^ { 7 }" + }, + { + "category_id": 13, + "poly": [ + 531, + 1488, + 600, + 1488, + 600, + 1516, + 531, + 1516 + ], + "score": 0.88, + "latex": "s \\in S" + }, + { + "category_id": 13, + "poly": [ + 345, + 1235, + 428, + 1235, + 428, + 1263, + 345, + 1263 + ], + "score": 0.88, + "latex": "N \\in \\mathbb N" + }, + { + "category_id": 13, + "poly": [ + 782, + 611, + 825, + 611, + 825, + 641, + 782, + 641 + ], + "score": 0.88, + "latex": "5 e ^ { 7 }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1297, + 457, + 1297, + 457, + 1328, + 345, + 1328 + ], + "score": 0.87, + "latex": "\\eta \\in ( 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 707, + 1549, + 732, + 1549, + 732, + 1579, + 707, + 1579 + ], + "score": 0.87, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 414, + 1458, + 440, + 1458, + 440, + 1488, + 414, + 1488 + ], + "score": 0.86, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 459, + 992, + 483, + 992, + 483, + 1022, + 459, + 1022 + ], + "score": 0.84, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 768, + 1752, + 795, + 1752, + 795, + 1784, + 768, + 1784 + ], + "score": 0.81, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 582, + 1423, + 609, + 1423, + 609, + 1454, + 582, + 1454 + ], + "score": 0.81, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 850, + 1827, + 1250, + 1827, + 1250, + 1860, + 850, + 1860 + ], + "score": 0.78, + "latex": "{ \\bf R } _ { p r o x y } = ( 1 - \\eta ) \\cdot { \\bf R } + \\eta \\cdot { \\bf C } ^ { - 1 } { \\bf R }" + }, + { + "category_id": 13, + "poly": [ + 427, + 1920, + 487, + 1920, + 487, + 1953, + 427, + 1953 + ], + "score": 0.78, + "latex": "Q ( s )" + }, + { + "category_id": 13, + "poly": [ + 539, + 1553, + 559, + 1553, + 559, + 1575, + 539, + 1575 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 426, + 1860, + 1162, + 1860, + 1162, + 1892, + 426, + 1892 + ], + "score": 0.76, + "latex": "Q ( s ^ { \\prime } , a ) \\gets ( 1 - \\alpha ) \\cdot Q ( s , a ) + \\alpha \\cdot ( \\hat { r } ( s , a ) + \\gamma \\cdot \\operatorname* { m a x } _ { a ^ { \\prime } } Q ( s ^ { \\prime } , a ^ { \\prime } ) )" + }, + { + "category_id": 13, + "poly": [ + 456, + 1523, + 472, + 1523, + 472, + 1545, + 456, + 1545 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 345, + 1207, + 368, + 1207, + 368, + 1232, + 345, + 1232 + ], + "score": 0.75, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 537, + 1919, + 592, + 1919, + 592, + 1953, + 537, + 1953 + ], + "score": 0.74, + "latex": "\\pi ( s )" + }, + { + "category_id": 13, + "poly": [ + 450, + 1394, + 475, + 1394, + 475, + 1423, + 450, + 1423 + ], + "score": 0.74, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 1265, + 992, + 1289, + 992, + 1289, + 1022, + 1265, + 1022 + ], + "score": 0.73, + "latex": "Q" + }, + { + "category_id": 14, + "poly": [ + 423, + 1577, + 579, + 1577, + 579, + 1643, + 423, + 1643 + ], + "score": 0.57, + "latex": "\\begin{array} { l } { { a \\pi ( s ) } } \\\\ { { s ^ { \\prime } T ( s , a ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 625, + 1099, + 650, + 1099, + 650, + 1129, + 625, + 1129 + ], + "score": 0.51, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 947, + 322, + 1046, + 322, + 1046, + 353, + 947, + 353 + ], + "score": 0.32, + "latex": "1 5 0 , 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 761, + 353, + 859, + 353, + 859, + 384, + 761, + 384 + ], + "score": 0.26, + "latex": "1 0 0 , 0 0 0" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 925.0, + 787.0, + 925.0, + 833.0, + 295.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2000.0, + 1307.0, + 2000.0, + 1307.0, + 2038.0, + 331.0, + 2038.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": [ + 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, + 864.0, + 801.0, + 864.0, + 801.0, + 904.0, + 295.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1136.0, + 382.0, + 1136.0, + 382.0, + 1188.0, + 292.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1092.0, + 624.0, + 1092.0, + 624.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1092.0, + 764.0, + 1092.0, + 764.0, + 1137.0, + 651.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 428.0, + 1405.0, + 428.0, + 1405.0, + 464.0, + 295.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 459.0, + 877.0, + 459.0, + 877.0, + 493.0, + 292.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 459.0, + 1406.0, + 459.0, + 1406.0, + 493.0, + 1006.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 488.0, + 613.0, + 488.0, + 613.0, + 525.0, + 291.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 525.0, + 709.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 521.0, + 1206.0, + 521.0, + 1206.0, + 552.0, + 295.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 521.0, + 1404.0, + 521.0, + 1404.0, + 552.0, + 1276.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 449.0, + 552.0, + 449.0, + 584.0, + 294.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 552.0, + 841.0, + 552.0, + 841.0, + 584.0, + 519.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 552.0, + 1405.0, + 552.0, + 1405.0, + 584.0, + 910.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 578.0, + 1405.0, + 578.0, + 1405.0, + 618.0, + 292.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 609.0, + 337.0, + 609.0, + 337.0, + 649.0, + 292.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 609.0, + 781.0, + 609.0, + 781.0, + 649.0, + 382.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 609.0, + 1174.0, + 609.0, + 1174.0, + 649.0, + 826.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 609.0, + 1407.0, + 609.0, + 1407.0, + 649.0, + 1234.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 642.0, + 914.0, + 642.0, + 914.0, + 678.0, + 294.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 642.0, + 1404.0, + 642.0, + 1404.0, + 678.0, + 1032.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 674.0, + 296.0, + 674.0, + 296.0, + 709.0, + 292.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 674.0, + 1405.0, + 674.0, + 1405.0, + 709.0, + 388.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 704.0, + 858.0, + 704.0, + 858.0, + 736.0, + 293.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 930.0, + 1404.0, + 930.0, + 1404.0, + 963.0, + 296.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 960.0, + 1404.0, + 960.0, + 1404.0, + 994.0, + 294.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 984.0, + 458.0, + 984.0, + 458.0, + 1029.0, + 291.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 984.0, + 1264.0, + 984.0, + 1264.0, + 1029.0, + 484.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 984.0, + 1404.0, + 984.0, + 1404.0, + 1029.0, + 1290.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1059.0, + 293.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1053.0, + 1338.0, + 1053.0, + 1338.0, + 1087.0, + 296.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1214.0, + 227.0, + 1214.0, + 265.0, + 292.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 227.0, + 1407.0, + 227.0, + 1407.0, + 265.0, + 1275.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 260.0, + 1406.0, + 260.0, + 1406.0, + 295.0, + 293.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 289.0, + 714.0, + 289.0, + 714.0, + 324.0, + 292.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 289.0, + 1406.0, + 289.0, + 1406.0, + 324.0, + 775.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 318.0, + 839.0, + 318.0, + 839.0, + 359.0, + 293.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 318.0, + 946.0, + 318.0, + 946.0, + 359.0, + 900.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 318.0, + 1408.0, + 318.0, + 1408.0, + 359.0, + 1047.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 650.0, + 352.0, + 650.0, + 385.0, + 294.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 352.0, + 760.0, + 352.0, + 760.0, + 385.0, + 711.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 352.0, + 869.0, + 352.0, + 869.0, + 385.0, + 860.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1168.0, + 1016.0, + 1168.0, + 1016.0, + 1210.0, + 592.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1202.0, + 344.0, + 1202.0, + 344.0, + 1236.0, + 341.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 1202.0, + 591.0, + 1202.0, + 591.0, + 1236.0, + 369.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1202.0, + 780.0, + 1202.0, + 780.0, + 1236.0, + 777.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1234.0, + 882.0, + 1234.0, + 882.0, + 1268.0, + 429.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1265.0, + 344.0, + 1265.0, + 344.0, + 1299.0, + 341.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 1265.0, + 821.0, + 1265.0, + 821.0, + 1299.0, + 461.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1294.0, + 344.0, + 1294.0, + 344.0, + 1329.0, + 339.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1294.0, + 883.0, + 1294.0, + 883.0, + 1329.0, + 458.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1326.0, + 1028.0, + 1326.0, + 1028.0, + 1368.0, + 431.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1359.0, + 405.0, + 1359.0, + 405.0, + 1397.0, + 307.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1359.0, + 651.0, + 1359.0, + 651.0, + 1397.0, + 467.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1359.0, + 916.0, + 1359.0, + 916.0, + 1397.0, + 729.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1389.0, + 449.0, + 1389.0, + 449.0, + 1425.0, + 341.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 1389.0, + 486.0, + 1389.0, + 486.0, + 1425.0, + 476.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1389.0, + 749.0, + 1389.0, + 749.0, + 1425.0, + 630.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1425.0, + 581.0, + 1425.0, + 581.0, + 1460.0, + 343.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 1425.0, + 696.0, + 1425.0, + 696.0, + 1460.0, + 610.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1456.0, + 413.0, + 1456.0, + 413.0, + 1490.0, + 343.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1456.0, + 668.0, + 1456.0, + 668.0, + 1490.0, + 441.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1487.0, + 530.0, + 1487.0, + 530.0, + 1517.0, + 384.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1487.0, + 604.0, + 1487.0, + 604.0, + 1517.0, + 601.0, + 1517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 1516.0, + 455.0, + 1516.0, + 455.0, + 1550.0, + 385.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1516.0, + 678.0, + 1516.0, + 678.0, + 1550.0, + 473.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1542.0, + 538.0, + 1542.0, + 538.0, + 1586.0, + 424.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1542.0, + 706.0, + 1542.0, + 706.0, + 1586.0, + 560.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1542.0, + 1008.0, + 1542.0, + 1008.0, + 1586.0, + 733.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1641.0, + 675.0, + 1641.0, + 675.0, + 1678.0, + 426.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1641.0, + 901.0, + 1641.0, + 901.0, + 1678.0, + 754.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1671.0, + 451.0, + 1671.0, + 451.0, + 1726.0, + 417.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1671.0, + 766.0, + 1671.0, + 766.0, + 1726.0, + 696.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1718.0, + 757.0, + 1718.0, + 757.0, + 1756.0, + 468.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1718.0, + 1180.0, + 1718.0, + 1180.0, + 1756.0, + 836.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1752.0, + 767.0, + 1752.0, + 767.0, + 1791.0, + 464.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1752.0, + 902.0, + 1752.0, + 902.0, + 1791.0, + 796.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 1752.0, + 1030.0, + 1752.0, + 1030.0, + 1791.0, + 981.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1752.0, + 1228.0, + 1752.0, + 1228.0, + 1791.0, + 1109.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1789.0, + 903.0, + 1789.0, + 903.0, + 1826.0, + 466.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 422.0, + 1822.0, + 701.0, + 1822.0, + 701.0, + 1866.0, + 422.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 1822.0, + 849.0, + 1822.0, + 849.0, + 1866.0, + 780.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1857.0, + 1172.0, + 1857.0, + 1172.0, + 1894.0, + 1163.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1889.0, + 512.0, + 1889.0, + 512.0, + 1920.0, + 421.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1916.0, + 426.0, + 1916.0, + 426.0, + 1956.0, + 341.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1916.0, + 536.0, + 1916.0, + 536.0, + 1956.0, + 488.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1092.0, + 624.0, + 1092.0, + 624.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1092.0, + 764.0, + 1092.0, + 764.0, + 1137.0, + 651.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 864.0, + 801.0, + 864.0, + 801.0, + 904.0, + 295.0, + 904.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1311, + 1405, + 1311, + 1405, + 1593, + 296, + 1593 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 721, + 1404, + 721, + 1404, + 916, + 297, + 916 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 285, + 1405, + 285, + 1405, + 449, + 296, + 449 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1115, + 1404, + 1115, + 1404, + 1216, + 298, + 1216 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1602, + 1405, + 1602, + 1405, + 1703, + 297, + 1703 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 296, + 540, + 1406, + 540, + 1406, + 706, + 296, + 706 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 489, + 1011, + 1207, + 1011, + 1207, + 1099, + 489, + 1099 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 562, + 1720, + 1135, + 1720, + 1135, + 1798, + 562, + 1798 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 564, + 1970, + 1132, + 1970, + 1132, + 2045, + 564, + 2045 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 461, + 1396, + 461, + 1396, + 525, + 297, + 525 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 299, + 1813, + 1401, + 1813, + 1401, + 1878, + 299, + 1878 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 298, + 928, + 1402, + 928, + 1402, + 996, + 298, + 996 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 297, + 1886, + 1397, + 1886, + 1397, + 1951, + 297, + 1951 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 297, + 1254, + 868, + 1254, + 868, + 1287, + 297, + 1287 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 858, + 74, + 858, + 106, + 297, + 106 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 296, + 228, + 928, + 228, + 928, + 262, + 296, + 262 + ], + "score": 0.856 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1040, + 1400, + 1040, + 1400, + 1070, + 1366, + 1070 + ], + "score": 0.84 + }, + { + "category_id": 9, + "poly": [ + 1366, + 648, + 1400, + 648, + 1400, + 677, + 1366, + 677 + ], + "score": 0.705 + }, + { + "category_id": 13, + "poly": [ + 349, + 319, + 435, + 319, + 435, + 358, + 349, + 358 + ], + "score": 0.94, + "latex": "\\tilde { R } ( s , a )" + }, + { + "category_id": 14, + "poly": [ + 490, + 1010, + 1206, + 1010, + 1206, + 1100, + 490, + 1100 + ], + "score": 0.94, + "latex": "\\tilde { c } _ { i , j } = \\frac { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# \\left[ \\tilde { r } ( s , a ) = R _ { j } | \\bar { r } ( s , a ) = R _ { i } \\right] } { \\sum _ { ( s , a ) } \\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } ) \\cdot \\# [ \\bar { r } ( s , a ) = R _ { i } ] } ," + }, + { + "category_id": 14, + "poly": [ + 310, + 539, + 1410, + 539, + 1410, + 712, + 310, + 712 + ], + "score": 0.93, + "latex": "{ \\begin{array} { r l } { ^ { \\mathfrak { p } } ( r = R _ { i } | { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } ) = } & { { \\frac { \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { i } ) \\cdot \\mathbb { P } ( r = R _ { i } ) } { \\sum _ { j } \\mathbb { P } ( { \\tilde { r } } ( 1 ) = R _ { 1 } , \\cdots , { \\tilde { r } } ( n ) = R _ { n } | r = R _ { j } ) \\cdot \\mathbb { P } ( r = R _ { j } ) } } } \\\\ & { = { \\frac { \\mathbb { P } ( r = R _ { i } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { i } ) } { \\sum _ { j } \\left[ \\mathbb { P } ( r = R _ { j } ) \\cdot \\prod _ { k = 1 } ^ { n } \\mathbb { P } ( { \\tilde { r } } ( k ) = R _ { k } | r = R _ { j } ) \\right] } } \\qquad ( 8 ) } \\end{array} }" + }, + { + "category_id": 13, + "poly": [ + 764, + 288, + 841, + 288, + 841, + 322, + 764, + 322 + ], + "score": 0.93, + "latex": "{ \\bar { r } } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 716, + 1405, + 923, + 1405, + 923, + 1439, + 716, + 1439 + ], + "score": 0.93, + "latex": "C : S \\times \\mathcal { R } \\to \\tilde { R }" + }, + { + "category_id": 13, + "poly": [ + 511, + 1530, + 958, + 1530, + 958, + 1566, + 511, + 1566 + ], + "score": 0.92, + "latex": "\\mathbb { E } _ { { \\tilde { r } } | r , s _ { t } } [ { \\hat { r } } ( s _ { t } , a _ { t } , s _ { t + 1 } { \\bar { ) } } ] = r ( s _ { t } , a _ { t } , s _ { t + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 851, + 1666, + 930, + 1666, + 930, + 1704, + 851, + 1704 + ], + "score": 0.92, + "latex": "G ( \\hat { \\mathcal { M } } )" + }, + { + "category_id": 14, + "poly": [ + 562, + 1720, + 1136, + 1720, + 1136, + 1797, + 562, + 1797 + ], + "score": 0.92, + "latex": "O \\left( \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\epsilon ^ { 2 } ( 1 - \\gamma ) ^ { 2 } \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\log \\frac { | \\mathcal { S } | | \\boldsymbol { A } | T } { \\delta } \\right)" + }, + { + "category_id": 14, + "poly": [ + 563, + 1970, + 1134, + 1970, + 1134, + 2044, + 563, + 2044 + ], + "score": 0.92, + "latex": "\\mathbf { V a r } ( r ) \\leq \\mathbf { V a r } ( \\hat { r } ) \\leq \\frac { M ^ { 2 } } { \\operatorname* { m i n } _ { s \\in \\mathcal { S } } \\{ \\operatorname* { d e t } ( \\mathbf { C } _ { s } ) \\} ^ { 2 } } \\cdot R _ { \\operatorname* { m a x } } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 750, + 324, + 941, + 324, + 941, + 358, + 750, + 358 + ], + "score": 0.91, + "latex": "( s , a ) \\in \\mathcal { S } \\times \\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 892, + 723, + 1125, + 723, + 1125, + 758, + 892, + 758 + ], + "score": 0.91, + "latex": "\\mathbb { P } ( \\tilde { r } = R _ { k } | r = R _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 494, + 1888, + 656, + 1888, + 656, + 1922, + 494, + 1922 + ], + "score": 0.91, + "latex": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 13, + "poly": [ + 664, + 1604, + 820, + 1604, + 820, + 1638, + 664, + 1638 + ], + "score": 0.91, + "latex": "r \\in [ 0 , R _ { \\mathrm { m a x } } ]" + }, + { + "category_id": 13, + "poly": [ + 441, + 1150, + 525, + 1150, + 525, + 1185, + 441, + 1185 + ], + "score": 0.91, + "latex": "\\tilde { R } ( s , a )" + }, + { + "category_id": 13, + "poly": [ + 1197, + 1890, + 1235, + 1890, + 1235, + 1919, + 1197, + 1919 + ], + "score": 0.91, + "latex": "\\mathbf { C } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 1089, + 790, + 1406, + 790, + 1406, + 824, + 1089, + 824 + ], + "score": 0.91, + "latex": "\\mathbb { P } ( r ( s , a ) = R _ { i } | \\tilde { r } ( s , a , 1 ) =" + }, + { + "category_id": 13, + "poly": [ + 772, + 821, + 953, + 821, + 953, + 855, + 772, + 855 + ], + "score": 0.9, + "latex": "\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1059, + 1813, + 1394, + 1813, + 1394, + 1848, + 1059, + 1848 + ], + "score": 0.9, + "latex": "\\rangle , | V _ { \\pi } ( s ) - V ^ { * } ( s ) | \\leq \\epsilon , \\epsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 374, + 724, + 508, + 724, + 508, + 759, + 374, + 759 + ], + "score": 0.9, + "latex": "\\mathbb { P } ( r = R _ { j } )" + }, + { + "category_id": 13, + "poly": [ + 373, + 1117, + 549, + 1117, + 549, + 1150, + 373, + 1150 + ], + "score": 0.9, + "latex": "\\mathbb { P } ( \\bar { r } ( s , a ) = R _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 821, + 587, + 821, + 587, + 855, + 298, + 855 + ], + "score": 0.89, + "latex": "R _ { 1 } , \\cdot \\cdot \\cdot , \\tilde { r } ( s , a , n ) = R _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 910, + 1471, + 948, + 1471, + 948, + 1501, + 910, + 1501 + ], + "score": 0.89, + "latex": "\\mathbf { C } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 662, + 792, + 834, + 792, + 834, + 823, + 662, + 823 + ], + "score": 0.89, + "latex": "( s , a ) \\in \\mathcal S \\times \\mathcal A" + }, + { + "category_id": 13, + "poly": [ + 626, + 757, + 952, + 757, + 952, + 794, + 626, + 794 + ], + "score": 0.88, + "latex": "\\vdots \\Psi ( \\tilde { r } = R _ { k } | r = R _ { j } ) = \\tilde { c } _ { j , i }" + }, + { + "category_id": 13, + "poly": [ + 510, + 1635, + 607, + 1635, + 607, + 1668, + 510, + 1668 + ], + "score": 0.87, + "latex": "\\operatorname* { d e t } ( \\mathbf { C } _ { s } )" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1605, + 1091, + 1605, + 1091, + 1635, + 1053, + 1635 + ], + "score": 0.87, + "latex": "\\mathbf { C } _ { s }" + }, + { + "category_id": 13, + "poly": [ + 947, + 927, + 974, + 927, + 974, + 960, + 947, + 960 + ], + "score": 0.84, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 393, + 1817, + 416, + 1817, + 416, + 1842, + 393, + 1842 + ], + "score": 0.81, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 298, + 1670, + 322, + 1670, + 322, + 1703, + 298, + 1703 + ], + "score": 0.79, + "latex": "Q" + }, + { + "category_id": 13, + "poly": [ + 737, + 1921, + 753, + 1921, + 753, + 1945, + 737, + 1945 + ], + "score": 0.78, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 394, + 1410, + 411, + 1410, + 411, + 1437, + 394, + 1437 + ], + "score": 0.77, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 457, + 1846, + 575, + 1846, + 575, + 1875, + 457, + 1875 + ], + "score": 0.75, + "latex": "0 < \\delta < 1" + }, + { + "category_id": 13, + "poly": [ + 992, + 1815, + 1064, + 1815, + 1064, + 1844, + 992, + 1844 + ], + "score": 0.74, + "latex": "s \\in S" + }, + { + "category_id": 13, + "poly": [ + 298, + 1846, + 442, + 1846, + 442, + 1879, + 298, + 1879 + ], + "score": 0.67, + "latex": "w . p . \\geq 1 - \\delta" + }, + { + "category_id": 13, + "poly": [ + 609, + 756, + 635, + 756, + 635, + 789, + 609, + 789 + ], + "score": 0.6, + "latex": "\\tilde { \\mathbf { C } }" + }, + { + "category_id": 13, + "poly": [ + 820, + 884, + 857, + 884, + 857, + 911, + 820, + 911 + ], + "score": 0.55, + "latex": ". R L" + }, + { + "category_id": 13, + "poly": [ + 1235, + 1640, + 1261, + 1640, + 1261, + 1663, + 1235, + 1663 + ], + "score": 0.54, + "latex": "m" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1254.0, + 868.0, + 1254.0, + 868.0, + 1290.0, + 296.0, + 1290.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": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 228.0, + 930.0, + 228.0, + 930.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1314.0, + 1403.0, + 1314.0, + 1403.0, + 1347.0, + 295.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1342.0, + 1403.0, + 1342.0, + 1403.0, + 1378.0, + 294.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1372.0, + 1403.0, + 1372.0, + 1403.0, + 1410.0, + 295.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1406.0, + 393.0, + 1406.0, + 393.0, + 1445.0, + 293.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 412.0, + 1406.0, + 715.0, + 1406.0, + 715.0, + 1445.0, + 412.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1406.0, + 1405.0, + 1406.0, + 1405.0, + 1445.0, + 924.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1440.0, + 1403.0, + 1440.0, + 1403.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 909.0, + 1468.0, + 909.0, + 1504.0, + 294.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1468.0, + 1403.0, + 1468.0, + 1403.0, + 1504.0, + 949.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 1405.0, + 1497.0, + 1405.0, + 1536.0, + 293.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 510.0, + 1528.0, + 510.0, + 1569.0, + 293.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1528.0, + 1407.0, + 1528.0, + 1407.0, + 1569.0, + 959.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1563.0, + 421.0, + 1563.0, + 421.0, + 1594.0, + 295.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 722.0, + 373.0, + 722.0, + 373.0, + 759.0, + 296.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 722.0, + 891.0, + 722.0, + 891.0, + 759.0, + 509.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1126.0, + 722.0, + 1405.0, + 722.0, + 1405.0, + 759.0, + 1126.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 755.0, + 608.0, + 755.0, + 608.0, + 797.0, + 294.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 755.0, + 1404.0, + 755.0, + 1404.0, + 797.0, + 953.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 787.0, + 661.0, + 787.0, + 661.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 787.0, + 1088.0, + 787.0, + 1088.0, + 826.0, + 835.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 820.0, + 297.0, + 820.0, + 297.0, + 858.0, + 294.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 820.0, + 771.0, + 820.0, + 771.0, + 858.0, + 588.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 820.0, + 1402.0, + 820.0, + 1402.0, + 858.0, + 954.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 851.0, + 1406.0, + 851.0, + 1406.0, + 888.0, + 294.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 819.0, + 882.0, + 819.0, + 919.0, + 295.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 882.0, + 964.0, + 882.0, + 964.0, + 919.0, + 858.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 288.0, + 763.0, + 288.0, + 763.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 288.0, + 1403.0, + 288.0, + 1403.0, + 325.0, + 842.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 323.0, + 348.0, + 323.0, + 348.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 323.0, + 749.0, + 323.0, + 749.0, + 360.0, + 436.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 323.0, + 1407.0, + 323.0, + 1407.0, + 360.0, + 942.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 353.0, + 1406.0, + 353.0, + 1406.0, + 391.0, + 291.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 385.0, + 1402.0, + 385.0, + 1402.0, + 418.0, + 294.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 415.0, + 1332.0, + 415.0, + 1332.0, + 451.0, + 294.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1115.0, + 372.0, + 1115.0, + 372.0, + 1154.0, + 294.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1115.0, + 1404.0, + 1115.0, + 1404.0, + 1154.0, + 550.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1150.0, + 440.0, + 1150.0, + 440.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1150.0, + 1404.0, + 1150.0, + 1404.0, + 1188.0, + 526.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1183.0, + 1259.0, + 1183.0, + 1259.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1602.0, + 663.0, + 1602.0, + 663.0, + 1641.0, + 295.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1602.0, + 1052.0, + 1602.0, + 1052.0, + 1641.0, + 821.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1602.0, + 1405.0, + 1602.0, + 1405.0, + 1641.0, + 1092.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1635.0, + 509.0, + 1635.0, + 509.0, + 1670.0, + 294.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1635.0, + 1234.0, + 1635.0, + 1234.0, + 1670.0, + 608.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1670.0, + 1262.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1670.0, + 850.0, + 1670.0, + 850.0, + 1705.0, + 323.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 458.0, + 1400.0, + 458.0, + 1400.0, + 499.0, + 294.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 492.0, + 1080.0, + 492.0, + 1080.0, + 530.0, + 292.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1811.0, + 392.0, + 1811.0, + 392.0, + 1851.0, + 294.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1811.0, + 991.0, + 1811.0, + 991.0, + 1851.0, + 417.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1811.0, + 1406.0, + 1811.0, + 1406.0, + 1851.0, + 1395.0, + 1851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1846.0, + 297.0, + 1846.0, + 297.0, + 1879.0, + 293.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1846.0, + 456.0, + 1846.0, + 456.0, + 1879.0, + 443.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1846.0, + 587.0, + 1846.0, + 587.0, + 1879.0, + 576.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 925.0, + 946.0, + 925.0, + 946.0, + 969.0, + 293.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 925.0, + 1406.0, + 925.0, + 1406.0, + 969.0, + 975.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 961.0, + 452.0, + 961.0, + 452.0, + 999.0, + 292.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1885.0, + 493.0, + 1885.0, + 493.0, + 1922.0, + 296.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 1885.0, + 1196.0, + 1885.0, + 1196.0, + 1922.0, + 657.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1885.0, + 1402.0, + 1885.0, + 1402.0, + 1922.0, + 1236.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1917.0, + 736.0, + 1917.0, + 736.0, + 1953.0, + 297.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1917.0, + 1011.0, + 1917.0, + 1011.0, + 1953.0, + 754.0, + 1953.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 580, + 1404, + 580, + 1404, + 916, + 297, + 916 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 290, + 1404, + 290, + 1404, + 565, + 298, + 565 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 295, + 932, + 1391, + 932, + 1391, + 1635, + 295, + 1635 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 296, + 1659, + 1405, + 1659, + 1405, + 1845, + 296, + 1845 + ], + "score": 0.957 + }, + { + "category_id": 0, + "poly": [ + 299, + 1881, + 673, + 1881, + 673, + 1912, + 299, + 1912 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 302, + 229, + 838, + 229, + 838, + 261, + 302, + 261 + ], + "score": 0.862 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2112, + 835, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.53 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.402 + }, + { + "category_id": 13, + "poly": [ + 382, + 1813, + 435, + 1813, + 435, + 1842, + 382, + 1842 + ], + "score": 0.88, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 1016, + 826, + 1117, + 826, + 1117, + 855, + 1016, + 855 + ], + "score": 0.88, + "latex": "\\omega = 0 . 9" + }, + { + "category_id": 13, + "poly": [ + 467, + 1813, + 521, + 1813, + 521, + 1842, + 467, + 1842 + ], + "score": 0.87, + "latex": "90 \\%" + }, + { + "category_id": 13, + "poly": [ + 563, + 1689, + 629, + 1689, + 629, + 1723, + 563, + 1723 + ], + "score": 0.84, + "latex": "( r ) \\mathsf { l } ." + }, + { + "category_id": 13, + "poly": [ + 1112, + 765, + 1215, + 765, + 1215, + 795, + 1112, + 795 + ], + "score": 0.84, + "latex": "\\langle \\omega = 0 . 7 " + }, + { + "category_id": 13, + "poly": [ + 1276, + 765, + 1380, + 765, + 1380, + 795, + 1276, + 795 + ], + "score": 0.8, + "latex": "\\langle \\omega = 0 . 3 )" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1690, + 1356, + 1690, + 1356, + 1723, + 1281, + 1723 + ], + "score": 0.79, + "latex": "( \\eta = 1 )" + }, + { + "category_id": 13, + "poly": [ + 842, + 1692, + 914, + 1692, + 914, + 1724, + 842, + 1724 + ], + "score": 0.73, + "latex": "( \\eta = 1 )" + }, + { + "category_id": 13, + "poly": [ + 372, + 888, + 395, + 888, + 395, + 913, + 372, + 913 + ], + "score": 0.53, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 798, + 1693, + 832, + 1693, + 832, + 1723, + 798, + 1723 + ], + "score": 0.51, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 627, + 1722, + 660, + 1722, + 660, + 1753, + 627, + 1753 + ], + "score": 0.46, + "latex": "( \\dot { r } )" + }, + { + "category_id": 13, + "poly": [ + 626, + 1719, + 699, + 1719, + 699, + 1753, + 626, + 1753 + ], + "score": 0.33, + "latex": "( { \\dot { r } } ) \\mathbf { \\Psi } " + }, + { + "category_id": 13, + "poly": [ + 516, + 1752, + 544, + 1752, + 544, + 1780, + 516, + 1780 + ], + "score": 0.31, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 371, + 886, + 468, + 886, + 468, + 916, + 371, + 916 + ], + "score": 0.3, + "latex": "+ { \\mathrm { V R T } } ^ { { \\mathsf { V } } } ," + }, + { + "category_id": 13, + "poly": [ + 1238, + 1721, + 1268, + 1721, + 1268, + 1750, + 1238, + 1750 + ], + "score": 0.28, + "latex": "\\cdot" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 947.0, + 360.0, + 947.0, + 360.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 941.0, + 573.0, + 941.0, + 573.0, + 1053.0, + 533.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 948.0, + 789.0, + 948.0, + 789.0, + 1053.0, + 748.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 933.0, + 1021.0, + 933.0, + 1021.0, + 1065.0, + 951.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 936.0, + 1237.0, + 936.0, + 1237.0, + 1065.0, + 1168.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 984.0, + 574.0, + 984.0, + 574.0, + 1014.0, + 551.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 986.0, + 789.0, + 986.0, + 789.0, + 1006.0, + 765.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 994.0, + 357.0, + 994.0, + 357.0, + 1014.0, + 331.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1028.0, + 357.0, + 1028.0, + 357.0, + 1049.0, + 337.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1006.0, + 574.0, + 1006.0, + 574.0, + 1056.0, + 551.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1018.0, + 789.0, + 1018.0, + 789.0, + 1039.0, + 769.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1046.0, + 808.0, + 1046.0, + 808.0, + 1056.0, + 796.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1025.0, + 1006.0, + 1025.0, + 1006.0, + 1044.0, + 985.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1025.0, + 1222.0, + 1025.0, + 1222.0, + 1045.0, + 1201.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1063.0, + 373.0, + 1063.0, + 373.0, + 1078.0, + 358.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 1061.0, + 427.0, + 1061.0, + 427.0, + 1079.0, + 402.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1060.0, + 475.0, + 1060.0, + 475.0, + 1079.0, + 449.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1060.0, + 525.0, + 1060.0, + 525.0, + 1079.0, + 498.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1064.0, + 589.0, + 1064.0, + 589.0, + 1075.0, + 576.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1063.0, + 634.0, + 1063.0, + 634.0, + 1076.0, + 605.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1060.0, + 672.0, + 1060.0, + 672.0, + 1078.0, + 639.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1063.0, + 707.0, + 1063.0, + 707.0, + 1076.0, + 679.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 1061.0, + 745.0, + 1061.0, + 745.0, + 1078.0, + 711.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1063.0, + 806.0, + 1063.0, + 806.0, + 1078.0, + 791.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1060.0, + 855.0, + 1060.0, + 855.0, + 1079.0, + 828.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1060.0, + 898.0, + 1060.0, + 898.0, + 1079.0, + 872.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1060.0, + 943.0, + 1060.0, + 943.0, + 1079.0, + 915.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1063.0, + 1021.0, + 1063.0, + 1021.0, + 1078.0, + 1006.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1060.0, + 1062.0, + 1060.0, + 1062.0, + 1079.0, + 1040.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1061.0, + 1098.0, + 1061.0, + 1098.0, + 1076.0, + 1078.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 1063.0, + 1136.0, + 1063.0, + 1136.0, + 1078.0, + 1118.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1060.0, + 1177.0, + 1060.0, + 1177.0, + 1079.0, + 1148.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1061.0, + 1238.0, + 1061.0, + 1238.0, + 1078.0, + 1223.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1060.0, + 1299.0, + 1060.0, + 1299.0, + 1079.0, + 1278.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1073.0, + 466.0, + 1073.0, + 466.0, + 1093.0, + 414.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1074.0, + 680.0, + 1074.0, + 680.0, + 1092.0, + 634.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1073.0, + 898.0, + 1073.0, + 898.0, + 1093.0, + 847.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1073.0, + 1113.0, + 1073.0, + 1113.0, + 1093.0, + 1062.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1074.0, + 1329.0, + 1074.0, + 1329.0, + 1093.0, + 1280.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1115.0, + 360.0, + 1115.0, + 360.0, + 1218.0, + 291.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1102.0, + 579.0, + 1102.0, + 579.0, + 1226.0, + 524.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1115.0, + 789.0, + 1115.0, + 789.0, + 1220.0, + 748.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1099.0, + 1021.0, + 1099.0, + 1021.0, + 1232.0, + 951.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1099.0, + 1237.0, + 1099.0, + 1237.0, + 1232.0, + 1168.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1152.0, + 789.0, + 1152.0, + 789.0, + 1172.0, + 763.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1198.0, + 358.0, + 1198.0, + 358.0, + 1217.0, + 337.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1201.0, + 568.0, + 1201.0, + 568.0, + 1220.0, + 546.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1184.0, + 791.0, + 1184.0, + 791.0, + 1206.0, + 768.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1192.0, + 1006.0, + 1192.0, + 1006.0, + 1211.0, + 985.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1193.0, + 1222.0, + 1193.0, + 1222.0, + 1212.0, + 1201.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1230.0, + 373.0, + 1230.0, + 373.0, + 1245.0, + 358.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 1228.0, + 428.0, + 1228.0, + 428.0, + 1246.0, + 401.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1227.0, + 475.0, + 1227.0, + 475.0, + 1246.0, + 449.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1227.0, + 525.0, + 1227.0, + 525.0, + 1246.0, + 498.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1231.0, + 584.0, + 1231.0, + 584.0, + 1242.0, + 571.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1226.0, + 660.0, + 1226.0, + 660.0, + 1247.0, + 625.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1226.0, + 725.0, + 1226.0, + 725.0, + 1247.0, + 690.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1230.0, + 806.0, + 1230.0, + 806.0, + 1245.0, + 791.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1228.0, + 855.0, + 1228.0, + 855.0, + 1246.0, + 828.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1228.0, + 898.0, + 1228.0, + 898.0, + 1246.0, + 872.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1227.0, + 943.0, + 1227.0, + 943.0, + 1246.0, + 915.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1230.0, + 1021.0, + 1230.0, + 1021.0, + 1245.0, + 1006.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1228.0, + 1072.0, + 1228.0, + 1072.0, + 1245.0, + 1055.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1227.0, + 1126.0, + 1227.0, + 1126.0, + 1246.0, + 1100.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1227.0, + 1176.0, + 1227.0, + 1176.0, + 1246.0, + 1148.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1230.0, + 1238.0, + 1230.0, + 1238.0, + 1245.0, + 1223.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 1227.0, + 1283.0, + 1227.0, + 1283.0, + 1246.0, + 1260.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1228.0, + 1325.0, + 1228.0, + 1325.0, + 1246.0, + 1299.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 1228.0, + 1366.0, + 1228.0, + 1366.0, + 1246.0, + 1339.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1241.0, + 466.0, + 1241.0, + 466.0, + 1260.0, + 417.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1240.0, + 679.0, + 1240.0, + 679.0, + 1258.0, + 627.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1241.0, + 898.0, + 1241.0, + 898.0, + 1260.0, + 849.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1240.0, + 1115.0, + 1240.0, + 1115.0, + 1260.0, + 1064.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1241.0, + 1329.0, + 1241.0, + 1329.0, + 1260.0, + 1280.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1265.0, + 1006.0, + 1265.0, + 1006.0, + 1284.0, + 979.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1266.0, + 1222.0, + 1266.0, + 1222.0, + 1284.0, + 1194.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1281.0, + 360.0, + 1281.0, + 360.0, + 1386.0, + 291.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1278.0, + 568.0, + 1278.0, + 568.0, + 1385.0, + 533.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1281.0, + 789.0, + 1281.0, + 789.0, + 1386.0, + 748.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1281.0, + 1006.0, + 1281.0, + 1006.0, + 1386.0, + 964.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1281.0, + 1222.0, + 1281.0, + 1222.0, + 1388.0, + 1181.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1307.0, + 568.0, + 1307.0, + 568.0, + 1329.0, + 546.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1325.0, + 357.0, + 1325.0, + 357.0, + 1345.0, + 331.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1321.0, + 789.0, + 1321.0, + 789.0, + 1340.0, + 763.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1326.0, + 1006.0, + 1326.0, + 1006.0, + 1345.0, + 979.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1326.0, + 1222.0, + 1326.0, + 1222.0, + 1345.0, + 1194.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1336.0, + 568.0, + 1336.0, + 568.0, + 1359.0, + 548.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1359.0, + 358.0, + 1359.0, + 358.0, + 1379.0, + 337.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1366.0, + 568.0, + 1366.0, + 568.0, + 1386.0, + 546.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1354.0, + 791.0, + 1354.0, + 791.0, + 1374.0, + 769.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1356.0, + 1006.0, + 1356.0, + 1006.0, + 1376.0, + 985.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1356.0, + 1222.0, + 1356.0, + 1222.0, + 1376.0, + 1201.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1396.0, + 373.0, + 1396.0, + 373.0, + 1411.0, + 358.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1395.0, + 421.0, + 1395.0, + 421.0, + 1413.0, + 395.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1395.0, + 463.0, + 1395.0, + 463.0, + 1413.0, + 434.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1395.0, + 503.0, + 1395.0, + 503.0, + 1413.0, + 477.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1395.0, + 585.0, + 1395.0, + 585.0, + 1411.0, + 570.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1394.0, + 644.0, + 1394.0, + 644.0, + 1411.0, + 611.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1395.0, + 692.0, + 1395.0, + 692.0, + 1411.0, + 660.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 1394.0, + 743.0, + 1394.0, + 743.0, + 1411.0, + 710.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1396.0, + 807.0, + 1396.0, + 807.0, + 1411.0, + 791.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 823.0, + 1395.0, + 855.0, + 1395.0, + 855.0, + 1413.0, + 823.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1395.0, + 895.0, + 1395.0, + 895.0, + 1413.0, + 862.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1395.0, + 936.0, + 1395.0, + 936.0, + 1413.0, + 903.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1396.0, + 1021.0, + 1396.0, + 1021.0, + 1411.0, + 1006.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1395.0, + 1075.0, + 1395.0, + 1075.0, + 1413.0, + 1047.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1395.0, + 1121.0, + 1395.0, + 1121.0, + 1413.0, + 1093.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1395.0, + 1167.0, + 1395.0, + 1167.0, + 1413.0, + 1140.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1396.0, + 1238.0, + 1396.0, + 1238.0, + 1411.0, + 1223.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1395.0, + 1296.0, + 1395.0, + 1296.0, + 1413.0, + 1269.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1321.0, + 1395.0, + 1349.0, + 1395.0, + 1349.0, + 1413.0, + 1321.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1406.0, + 466.0, + 1406.0, + 466.0, + 1428.0, + 414.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1407.0, + 679.0, + 1407.0, + 679.0, + 1424.0, + 627.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1408.0, + 898.0, + 1408.0, + 898.0, + 1427.0, + 849.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1405.0, + 1115.0, + 1405.0, + 1115.0, + 1427.0, + 1062.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 1406.0, + 1329.0, + 1406.0, + 1329.0, + 1428.0, + 1278.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 360.0, + 1448.0, + 360.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1435.0, + 579.0, + 1435.0, + 579.0, + 1562.0, + 524.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1435.0, + 804.0, + 1435.0, + 804.0, + 1565.0, + 736.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1433.0, + 1021.0, + 1433.0, + 1021.0, + 1565.0, + 951.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1432.0, + 1223.0, + 1432.0, + 1223.0, + 1552.0, + 1181.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1489.0, + 358.0, + 1489.0, + 358.0, + 1516.0, + 330.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1499.0, + 568.0, + 1499.0, + 568.0, + 1524.0, + 549.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1483.0, + 789.0, + 1483.0, + 789.0, + 1502.0, + 763.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1492.0, + 1222.0, + 1492.0, + 1222.0, + 1511.0, + 1194.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1524.0, + 357.0, + 1524.0, + 357.0, + 1544.0, + 337.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1517.0, + 791.0, + 1517.0, + 791.0, + 1538.0, + 769.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1522.0, + 1006.0, + 1522.0, + 1006.0, + 1542.0, + 985.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1521.0, + 1222.0, + 1521.0, + 1222.0, + 1541.0, + 1201.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1562.0, + 373.0, + 1562.0, + 373.0, + 1578.0, + 358.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1561.0, + 417.0, + 1561.0, + 417.0, + 1578.0, + 390.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1561.0, + 456.0, + 1561.0, + 456.0, + 1578.0, + 427.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 1561.0, + 493.0, + 1561.0, + 493.0, + 1578.0, + 466.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1561.0, + 530.0, + 1561.0, + 530.0, + 1578.0, + 502.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1561.0, + 585.0, + 1561.0, + 585.0, + 1577.0, + 570.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1561.0, + 642.0, + 1561.0, + 642.0, + 1578.0, + 609.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1560.0, + 689.0, + 1560.0, + 689.0, + 1577.0, + 656.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 705.0, + 1560.0, + 738.0, + 1560.0, + 738.0, + 1577.0, + 705.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1562.0, + 807.0, + 1562.0, + 807.0, + 1578.0, + 791.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1561.0, + 850.0, + 1561.0, + 850.0, + 1578.0, + 818.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 1561.0, + 887.0, + 1561.0, + 887.0, + 1578.0, + 852.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1561.0, + 956.0, + 1561.0, + 956.0, + 1578.0, + 889.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1006.0, + 1562.0, + 1022.0, + 1562.0, + 1022.0, + 1578.0, + 1006.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1561.0, + 1075.0, + 1561.0, + 1075.0, + 1580.0, + 1047.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1561.0, + 1120.0, + 1561.0, + 1120.0, + 1580.0, + 1093.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1561.0, + 1168.0, + 1561.0, + 1168.0, + 1580.0, + 1140.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1562.0, + 1238.0, + 1562.0, + 1238.0, + 1578.0, + 1223.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1561.0, + 1279.0, + 1561.0, + 1279.0, + 1580.0, + 1252.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1561.0, + 1316.0, + 1561.0, + 1316.0, + 1578.0, + 1289.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.0, + 1561.0, + 1351.0, + 1561.0, + 1351.0, + 1578.0, + 1324.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 1561.0, + 1387.0, + 1561.0, + 1387.0, + 1578.0, + 1360.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1572.0, + 466.0, + 1572.0, + 466.0, + 1593.0, + 414.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1572.0, + 680.0, + 1572.0, + 680.0, + 1593.0, + 629.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1572.0, + 898.0, + 1572.0, + 898.0, + 1593.0, + 848.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1572.0, + 1115.0, + 1572.0, + 1115.0, + 1593.0, + 1064.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1572.0, + 1329.0, + 1572.0, + 1329.0, + 1593.0, + 1279.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 1601.0, + 506.0, + 1601.0, + 506.0, + 1641.0, + 342.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 1605.0, + 689.0, + 1605.0, + 689.0, + 1634.0, + 589.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1605.0, + 917.0, + 1605.0, + 917.0, + 1633.0, + 792.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1605.0, + 1121.0, + 1605.0, + 1121.0, + 1637.0, + 1022.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1604.0, + 1344.0, + 1604.0, + 1344.0, + 1637.0, + 1226.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 931.0, + 1220.0, + 931.0, + 1220.0, + 950.0, + 1195.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1060.0, + 1361.0, + 1060.0, + 1361.0, + 1078.0, + 1333.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1157.5, + 361.0, + 1157.5, + 361.0, + 1182.5, + 326.0, + 1182.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.25, + 1168.0, + 570.25, + 1168.0, + 570.25, + 1191.5, + 545.25, + 1191.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1540.5, + 734.0, + 1540.5, + 734.0, + 1554.5, + 704.0, + 1554.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1660.0, + 1405.0, + 1660.0, + 1405.0, + 1692.0, + 295.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1692.0, + 562.0, + 1692.0, + 562.0, + 1722.0, + 292.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1686.0, + 797.0, + 1686.0, + 797.0, + 1727.0, + 630.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1686.0, + 841.0, + 1686.0, + 841.0, + 1727.0, + 833.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1686.0, + 1280.0, + 1686.0, + 1280.0, + 1727.0, + 915.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1686.0, + 1372.0, + 1686.0, + 1372.0, + 1727.0, + 1357.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 625.0, + 1720.0, + 625.0, + 1756.0, + 294.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1720.0, + 1237.0, + 1720.0, + 1237.0, + 1756.0, + 700.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1720.0, + 1407.0, + 1720.0, + 1407.0, + 1756.0, + 1269.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1752.0, + 515.0, + 1752.0, + 515.0, + 1784.0, + 295.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 1752.0, + 1403.0, + 1752.0, + 1403.0, + 1784.0, + 545.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1779.0, + 1406.0, + 1779.0, + 1406.0, + 1816.0, + 291.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1812.0, + 381.0, + 1812.0, + 381.0, + 1846.0, + 293.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1812.0, + 466.0, + 1812.0, + 466.0, + 1846.0, + 436.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1812.0, + 989.0, + 1812.0, + 989.0, + 1846.0, + 522.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1697.0, + 626.0, + 1697.0, + 626.0, + 1717.5, + 605.0, + 1717.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1880.0, + 677.0, + 1880.0, + 677.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 227.0, + 842.0, + 227.0, + 842.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2125.0, + 830.0, + 2125.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": [ + 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, + 581.0, + 1405.0, + 581.0, + 1405.0, + 615.0, + 295.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 612.0, + 1404.0, + 612.0, + 1404.0, + 646.0, + 295.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 640.0, + 1404.0, + 640.0, + 1404.0, + 680.0, + 291.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 707.0, + 295.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 702.0, + 1404.0, + 702.0, + 1404.0, + 737.0, + 295.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 732.0, + 1407.0, + 732.0, + 1407.0, + 769.0, + 292.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 763.0, + 1111.0, + 763.0, + 1111.0, + 800.0, + 292.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 763.0, + 1275.0, + 763.0, + 1275.0, + 800.0, + 1216.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1381.0, + 763.0, + 1404.0, + 763.0, + 1404.0, + 800.0, + 1381.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 795.0, + 1405.0, + 795.0, + 1405.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 824.0, + 1015.0, + 824.0, + 1015.0, + 862.0, + 292.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 824.0, + 1405.0, + 824.0, + 1405.0, + 862.0, + 1118.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 856.0, + 1404.0, + 856.0, + 1404.0, + 890.0, + 295.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 887.0, + 370.0, + 887.0, + 370.0, + 921.0, + 295.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 887.0, + 916.0, + 887.0, + 916.0, + 921.0, + 469.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 289.0, + 1403.0, + 289.0, + 1403.0, + 325.0, + 296.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 322.0, + 1404.0, + 322.0, + 1404.0, + 355.0, + 296.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 349.0, + 1406.0, + 349.0, + 1406.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 418.0, + 293.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 413.0, + 1404.0, + 413.0, + 1404.0, + 448.0, + 292.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 442.0, + 1404.0, + 442.0, + 1404.0, + 478.0, + 293.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 472.0, + 1405.0, + 472.0, + 1405.0, + 510.0, + 293.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 503.0, + 1405.0, + 503.0, + 1405.0, + 539.0, + 294.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 536.0, + 699.0, + 536.0, + 699.0, + 568.0, + 297.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1974.0, + 1406.0, + 1974.0, + 1406.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 438, + 372, + 1272, + 372, + 1272, + 718, + 438, + 718 + ], + "score": 0.982, + "html": "
Noise RateRewardQ-LearnCEMSARSADQNDDQN
ε=0.1VRT173.599.7167.3181.9187.4
ours (r)181.999.3171.5200.0185.6
ours + VRT184.598.2174.2199.3186.5
w= 0.3VRT140.443.9149.8182.7177.6
ours (r)161.181.8159.6186.7200.0
ours + VRT161.682.2159.8188.4198.2
ω=0.7VRT71.116.113.215.614.7
ours (r)172.183.0174.4189.3191.3
ours + VRT182.379.5178.9195.9194.2
" + }, + { + "category_id": 3, + "poly": [ + 308, + 1129, + 1386, + 1129, + 1386, + 1832, + 308, + 1832 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 955, + 1404, + 955, + 1404, + 1110, + 297, + 1110 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 879, + 1402, + 879, + 1402, + 941, + 298, + 941 + ], + "score": 0.949 + }, + { + "category_id": 4, + "poly": [ + 296, + 1857, + 1405, + 1857, + 1405, + 2012, + 296, + 2012 + ], + "score": 0.944 + }, + { + "category_id": 6, + "poly": [ + 299, + 223, + 1403, + 223, + 1403, + 347, + 299, + 347 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 105, + 298, + 105 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.852 + }, + { + "category_id": 13, + "poly": [ + 689, + 1980, + 742, + 1980, + 742, + 2009, + 689, + 2009 + ], + "score": 0.88, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 773, + 1980, + 828, + 1980, + 828, + 2009, + 773, + 2009 + ], + "score": 0.87, + "latex": "90 \\%" + }, + { + "category_id": 13, + "poly": [ + 991, + 1889, + 1077, + 1889, + 1077, + 1921, + 991, + 1921 + ], + "score": 0.73, + "latex": "\\mathit { \\Pi } _ { \\eta } = \\mathit { \\Pi } 1 " + }, + { + "category_id": 13, + "poly": [ + 1381, + 259, + 1403, + 259, + 1403, + 283, + 1381, + 283 + ], + "score": 0.7, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 393, + 1917, + 462, + 1917, + 462, + 1951, + 393, + 1951 + ], + "score": 0.69, + "latex": "( { \\bar { \\dot { r } } } ) \\boxed { \\boxdot { \\bigtriangledown } }" + }, + { + "category_id": 13, + "poly": [ + 941, + 1890, + 976, + 1890, + 976, + 1920, + 941, + 1920 + ], + "score": 0.63, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 1382, + 884, + 1401, + 884, + 1401, + 912, + 1382, + 912 + ], + "score": 0.58, + "latex": "\\eta" + }, + { + "category_id": 13, + "poly": [ + 812, + 1921, + 840, + 1921, + 840, + 1948, + 812, + 1948 + ], + "score": 0.52, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 687, + 1888, + 758, + 1888, + 758, + 1920, + 687, + 1920 + ], + "score": 0.41, + "latex": "( r ) \\lfloor" + }, + { + "category_id": 13, + "poly": [ + 688, + 1889, + 722, + 1889, + 722, + 1920, + 688, + 1920 + ], + "score": 0.38, + "latex": "( r )" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1130.0, + 1000.0, + 1130.0, + 1000.0, + 1148.0, + 973.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1130.0, + 1216.0, + 1130.0, + 1216.0, + 1148.0, + 1189.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1147.0, + 351.0, + 1147.0, + 351.0, + 1248.0, + 312.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1142.0, + 561.0, + 1142.0, + 561.0, + 1248.0, + 527.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1147.0, + 784.0, + 1147.0, + 784.0, + 1251.0, + 743.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1145.0, + 1002.0, + 1145.0, + 1002.0, + 1250.0, + 959.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1145.0, + 1218.0, + 1145.0, + 1218.0, + 1250.0, + 1175.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1173.0, + 562.0, + 1173.0, + 562.0, + 1193.0, + 540.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1192.0, + 351.0, + 1192.0, + 351.0, + 1211.0, + 324.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1199.0, + 561.0, + 1199.0, + 561.0, + 1225.0, + 541.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1184.0, + 784.0, + 1184.0, + 784.0, + 1204.0, + 759.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1192.0, + 999.0, + 1192.0, + 999.0, + 1211.0, + 973.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1191.0, + 1218.0, + 1191.0, + 1218.0, + 1213.0, + 1187.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1227.0, + 351.0, + 1227.0, + 351.0, + 1247.0, + 330.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1232.0, + 562.0, + 1232.0, + 562.0, + 1252.0, + 541.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1217.0, + 784.0, + 1217.0, + 784.0, + 1238.0, + 762.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1223.0, + 1000.0, + 1223.0, + 1000.0, + 1242.0, + 980.0, + 1242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1225.0, + 1216.0, + 1225.0, + 1216.0, + 1243.0, + 1195.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1261.0, + 367.0, + 1261.0, + 367.0, + 1276.0, + 352.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1258.0, + 421.0, + 1258.0, + 421.0, + 1277.0, + 395.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1258.0, + 470.0, + 1258.0, + 470.0, + 1277.0, + 443.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1258.0, + 518.0, + 1258.0, + 518.0, + 1277.0, + 491.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1260.0, + 578.0, + 1260.0, + 578.0, + 1275.0, + 564.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1256.0, + 657.0, + 1256.0, + 657.0, + 1277.0, + 621.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1258.0, + 723.0, + 1258.0, + 723.0, + 1276.0, + 690.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1261.0, + 800.0, + 1261.0, + 800.0, + 1276.0, + 784.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1258.0, + 849.0, + 1258.0, + 849.0, + 1277.0, + 822.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1258.0, + 891.0, + 1258.0, + 891.0, + 1277.0, + 867.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1258.0, + 937.0, + 1258.0, + 937.0, + 1277.0, + 910.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1261.0, + 1016.0, + 1261.0, + 1016.0, + 1276.0, + 1000.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1258.0, + 1054.0, + 1258.0, + 1054.0, + 1277.0, + 1032.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1258.0, + 1090.0, + 1258.0, + 1090.0, + 1277.0, + 1069.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 1258.0, + 1126.0, + 1258.0, + 1126.0, + 1277.0, + 1105.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1258.0, + 1164.0, + 1258.0, + 1164.0, + 1277.0, + 1135.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1260.0, + 1232.0, + 1260.0, + 1232.0, + 1276.0, + 1216.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1258.0, + 1268.0, + 1258.0, + 1268.0, + 1277.0, + 1246.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1258.0, + 1301.0, + 1258.0, + 1301.0, + 1277.0, + 1279.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1260.0, + 1333.0, + 1260.0, + 1333.0, + 1275.0, + 1315.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1260.0, + 1370.0, + 1260.0, + 1370.0, + 1277.0, + 1343.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1271.0, + 460.0, + 1271.0, + 460.0, + 1288.0, + 408.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1270.0, + 674.0, + 1270.0, + 674.0, + 1290.0, + 621.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1270.0, + 892.0, + 1270.0, + 892.0, + 1288.0, + 839.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1271.0, + 1107.0, + 1271.0, + 1107.0, + 1289.0, + 1055.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1271.0, + 1324.0, + 1271.0, + 1324.0, + 1291.0, + 1273.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1312.0, + 354.0, + 1312.0, + 354.0, + 1418.0, + 311.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1299.0, + 575.0, + 1299.0, + 575.0, + 1425.0, + 517.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1312.0, + 784.0, + 1312.0, + 784.0, + 1418.0, + 743.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1297.0, + 1000.0, + 1297.0, + 1000.0, + 1418.0, + 959.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1296.0, + 1231.0, + 1296.0, + 1231.0, + 1430.0, + 1162.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1339.0, + 562.0, + 1339.0, + 562.0, + 1359.0, + 541.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1359.0, + 352.0, + 1359.0, + 352.0, + 1381.0, + 323.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1355.0, + 784.0, + 1355.0, + 784.0, + 1374.0, + 757.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1356.0, + 1000.0, + 1356.0, + 1000.0, + 1379.0, + 971.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1395.0, + 352.0, + 1395.0, + 352.0, + 1415.0, + 330.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1398.0, + 562.0, + 1398.0, + 562.0, + 1418.0, + 541.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1385.0, + 784.0, + 1385.0, + 784.0, + 1405.0, + 762.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1389.0, + 999.0, + 1389.0, + 999.0, + 1409.0, + 978.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1390.0, + 1216.0, + 1390.0, + 1216.0, + 1410.0, + 1194.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1408.0, + 814.0, + 1408.0, + 814.0, + 1425.0, + 787.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1427.0, + 367.0, + 1427.0, + 367.0, + 1443.0, + 352.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1425.0, + 421.0, + 1425.0, + 421.0, + 1443.0, + 395.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1428.0, + 469.0, + 1428.0, + 469.0, + 1442.0, + 445.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1425.0, + 518.0, + 1425.0, + 518.0, + 1443.0, + 491.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1427.0, + 578.0, + 1427.0, + 578.0, + 1442.0, + 564.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1425.0, + 625.0, + 1425.0, + 625.0, + 1443.0, + 592.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1425.0, + 662.0, + 1425.0, + 662.0, + 1442.0, + 626.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1425.0, + 733.0, + 1425.0, + 733.0, + 1443.0, + 663.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1427.0, + 799.0, + 1427.0, + 799.0, + 1443.0, + 784.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1428.0, + 848.0, + 1428.0, + 848.0, + 1442.0, + 824.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1425.0, + 892.0, + 1425.0, + 892.0, + 1443.0, + 865.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1425.0, + 937.0, + 1425.0, + 937.0, + 1443.0, + 908.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1427.0, + 1015.0, + 1427.0, + 1015.0, + 1443.0, + 1000.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1427.0, + 1067.0, + 1427.0, + 1067.0, + 1443.0, + 1049.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1427.0, + 1122.0, + 1427.0, + 1122.0, + 1444.0, + 1094.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1425.0, + 1171.0, + 1425.0, + 1171.0, + 1444.0, + 1144.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1427.0, + 1232.0, + 1427.0, + 1232.0, + 1443.0, + 1216.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1425.0, + 1294.0, + 1425.0, + 1294.0, + 1444.0, + 1273.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 1425.0, + 1354.0, + 1425.0, + 1354.0, + 1444.0, + 1328.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1439.0, + 459.0, + 1439.0, + 459.0, + 1458.0, + 411.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1438.0, + 673.0, + 1438.0, + 673.0, + 1455.0, + 621.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1438.0, + 890.0, + 1438.0, + 890.0, + 1456.0, + 840.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1438.0, + 1107.0, + 1438.0, + 1107.0, + 1458.0, + 1057.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1438.0, + 1322.0, + 1438.0, + 1322.0, + 1456.0, + 1271.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1463.0, + 1216.0, + 1463.0, + 1216.0, + 1482.0, + 1189.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1464.0, + 798.0, + 1464.0, + 798.0, + 1596.0, + 730.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1464.0, + 1000.0, + 1464.0, + 1000.0, + 1483.0, + 973.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1479.0, + 351.0, + 1479.0, + 351.0, + 1582.0, + 312.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1475.0, + 562.0, + 1475.0, + 562.0, + 1581.0, + 527.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 1478.0, + 1000.0, + 1478.0, + 1000.0, + 1585.0, + 959.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1478.0, + 1218.0, + 1478.0, + 1218.0, + 1583.0, + 1175.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1504.0, + 562.0, + 1504.0, + 562.0, + 1524.0, + 540.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1514.0, + 784.0, + 1514.0, + 784.0, + 1533.0, + 756.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1522.0, + 351.0, + 1522.0, + 351.0, + 1541.0, + 327.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1523.0, + 1002.0, + 1523.0, + 1002.0, + 1546.0, + 971.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1522.0, + 1218.0, + 1522.0, + 1218.0, + 1544.0, + 1187.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1556.0, + 351.0, + 1556.0, + 351.0, + 1576.0, + 330.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1563.0, + 562.0, + 1563.0, + 562.0, + 1583.0, + 540.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1571.0, + 729.0, + 1571.0, + 729.0, + 1587.0, + 636.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1548.0, + 784.0, + 1548.0, + 784.0, + 1570.0, + 762.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1555.0, + 1000.0, + 1555.0, + 1000.0, + 1575.0, + 978.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1553.0, + 1216.0, + 1553.0, + 1216.0, + 1573.0, + 1195.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1593.0, + 367.0, + 1593.0, + 367.0, + 1608.0, + 352.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1592.0, + 414.0, + 1592.0, + 414.0, + 1610.0, + 388.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1592.0, + 457.0, + 1592.0, + 457.0, + 1610.0, + 430.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1592.0, + 497.0, + 1592.0, + 497.0, + 1610.0, + 470.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1592.0, + 578.0, + 1592.0, + 578.0, + 1608.0, + 564.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1591.0, + 637.0, + 1591.0, + 637.0, + 1608.0, + 605.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 1591.0, + 686.0, + 1591.0, + 686.0, + 1608.0, + 654.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 1591.0, + 738.0, + 1591.0, + 738.0, + 1608.0, + 703.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1593.0, + 800.0, + 1593.0, + 800.0, + 1610.0, + 784.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1592.0, + 849.0, + 1592.0, + 849.0, + 1610.0, + 818.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1592.0, + 890.0, + 1592.0, + 890.0, + 1610.0, + 857.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1592.0, + 930.0, + 1592.0, + 930.0, + 1610.0, + 897.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1593.0, + 1016.0, + 1593.0, + 1016.0, + 1610.0, + 1000.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1592.0, + 1076.0, + 1592.0, + 1076.0, + 1610.0, + 1048.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1592.0, + 1129.0, + 1592.0, + 1129.0, + 1610.0, + 1102.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1593.0, + 1232.0, + 1593.0, + 1232.0, + 1610.0, + 1216.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1592.0, + 1291.0, + 1592.0, + 1291.0, + 1610.0, + 1264.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1592.0, + 1343.0, + 1592.0, + 1343.0, + 1610.0, + 1316.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1605.0, + 459.0, + 1605.0, + 459.0, + 1624.0, + 411.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1602.0, + 674.0, + 1602.0, + 674.0, + 1624.0, + 622.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1605.0, + 891.0, + 1605.0, + 891.0, + 1624.0, + 843.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1602.0, + 1107.0, + 1602.0, + 1107.0, + 1624.0, + 1057.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1603.0, + 1323.0, + 1603.0, + 1323.0, + 1624.0, + 1273.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1647.0, + 351.0, + 1647.0, + 351.0, + 1749.0, + 312.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1642.0, + 561.0, + 1642.0, + 561.0, + 1749.0, + 527.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1630.0, + 799.0, + 1630.0, + 799.0, + 1763.0, + 730.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1630.0, + 1015.0, + 1630.0, + 1015.0, + 1763.0, + 946.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1631.0, + 1218.0, + 1631.0, + 1218.0, + 1750.0, + 1175.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1671.0, + 562.0, + 1671.0, + 562.0, + 1691.0, + 540.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1677.0, + 786.0, + 1677.0, + 786.0, + 1700.0, + 755.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1689.0, + 350.0, + 1689.0, + 350.0, + 1709.0, + 325.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1690.0, + 1216.0, + 1690.0, + 1216.0, + 1709.0, + 1188.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1700.0, + 562.0, + 1700.0, + 562.0, + 1721.0, + 543.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1724.0, + 350.0, + 1724.0, + 350.0, + 1740.0, + 333.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1730.0, + 562.0, + 1730.0, + 562.0, + 1750.0, + 540.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1714.0, + 784.0, + 1714.0, + 784.0, + 1735.0, + 762.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1720.0, + 1000.0, + 1720.0, + 1000.0, + 1740.0, + 980.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1719.0, + 1216.0, + 1719.0, + 1216.0, + 1739.0, + 1195.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1760.0, + 368.0, + 1760.0, + 368.0, + 1775.0, + 352.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1759.0, + 411.0, + 1759.0, + 411.0, + 1777.0, + 384.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1759.0, + 449.0, + 1759.0, + 449.0, + 1777.0, + 421.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1759.0, + 487.0, + 1759.0, + 487.0, + 1777.0, + 459.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 1759.0, + 524.0, + 1759.0, + 524.0, + 1777.0, + 495.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1759.0, + 579.0, + 1759.0, + 579.0, + 1775.0, + 564.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 1757.0, + 637.0, + 1757.0, + 637.0, + 1778.0, + 603.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1757.0, + 735.0, + 1757.0, + 735.0, + 1778.0, + 700.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1760.0, + 800.0, + 1760.0, + 800.0, + 1775.0, + 784.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1759.0, + 845.0, + 1759.0, + 845.0, + 1777.0, + 811.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1759.0, + 880.0, + 1759.0, + 880.0, + 1777.0, + 846.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1759.0, + 916.0, + 1759.0, + 916.0, + 1777.0, + 883.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1759.0, + 950.0, + 1759.0, + 950.0, + 1777.0, + 917.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1760.0, + 1016.0, + 1760.0, + 1016.0, + 1775.0, + 1000.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1042.0, + 1759.0, + 1068.0, + 1759.0, + 1068.0, + 1778.0, + 1042.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1759.0, + 1164.0, + 1759.0, + 1164.0, + 1777.0, + 1135.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1760.0, + 1232.0, + 1760.0, + 1232.0, + 1775.0, + 1216.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1247.0, + 1759.0, + 1274.0, + 1759.0, + 1274.0, + 1777.0, + 1247.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1759.0, + 1311.0, + 1759.0, + 1311.0, + 1777.0, + 1283.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1319.0, + 1759.0, + 1346.0, + 1759.0, + 1346.0, + 1777.0, + 1319.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1759.0, + 1383.0, + 1759.0, + 1383.0, + 1777.0, + 1355.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1770.0, + 459.0, + 1770.0, + 459.0, + 1790.0, + 409.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1770.0, + 674.0, + 1770.0, + 674.0, + 1790.0, + 622.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1770.0, + 892.0, + 1770.0, + 892.0, + 1790.0, + 842.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1770.0, + 1108.0, + 1770.0, + 1108.0, + 1790.0, + 1058.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1770.0, + 1323.0, + 1770.0, + 1323.0, + 1790.0, + 1273.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1798.0, + 500.0, + 1798.0, + 500.0, + 1838.0, + 337.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 1802.0, + 684.0, + 1802.0, + 684.0, + 1831.0, + 583.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1802.0, + 912.0, + 1802.0, + 912.0, + 1832.0, + 787.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1802.0, + 1116.0, + 1802.0, + 1116.0, + 1834.0, + 1016.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1802.0, + 1375.0, + 1802.0, + 1375.0, + 1834.0, + 1189.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 1367.5, + 564.0, + 1367.5, + 564.0, + 1389.0, + 539.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 1533.0, + 566.0, + 1533.0, + 566.0, + 1554.0, + 537.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.75, + 1756.0, + 683.75, + 1756.0, + 683.75, + 1777.0, + 651.75, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.25, + 1758.0, + 1114.25, + 1758.0, + 1114.25, + 1777.0, + 1089.25, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1855.0, + 1406.0, + 1855.0, + 1406.0, + 1893.0, + 294.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1888.0, + 686.0, + 1888.0, + 686.0, + 1921.0, + 296.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1891.0, + 940.0, + 1891.0, + 940.0, + 1920.0, + 759.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1891.0, + 990.0, + 1891.0, + 990.0, + 1920.0, + 977.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1891.0, + 1091.0, + 1891.0, + 1091.0, + 1920.0, + 1078.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1899.0, + 1115.0, + 1899.0, + 1115.0, + 1909.0, + 1100.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1888.0, + 1403.0, + 1888.0, + 1403.0, + 1923.0, + 1116.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1917.0, + 392.0, + 1917.0, + 392.0, + 1953.0, + 295.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1917.0, + 811.0, + 1917.0, + 811.0, + 1953.0, + 463.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1917.0, + 1403.0, + 1917.0, + 1403.0, + 1953.0, + 841.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1949.0, + 1405.0, + 1949.0, + 1405.0, + 1982.0, + 295.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1980.0, + 688.0, + 1980.0, + 688.0, + 2013.0, + 296.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1980.0, + 772.0, + 1980.0, + 772.0, + 2013.0, + 743.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1980.0, + 1295.0, + 1980.0, + 1295.0, + 2013.0, + 829.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 223.0, + 1405.0, + 223.0, + 1405.0, + 259.0, + 294.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 256.0, + 1380.0, + 256.0, + 1380.0, + 288.0, + 295.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 285.0, + 1404.0, + 285.0, + 1404.0, + 320.0, + 295.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 315.0, + 851.0, + 315.0, + 851.0, + 349.0, + 293.0, + 349.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": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 957.0, + 1404.0, + 957.0, + 1404.0, + 990.0, + 296.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 987.0, + 1402.0, + 987.0, + 1402.0, + 1021.0, + 295.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1018.0, + 1404.0, + 1018.0, + 1404.0, + 1051.0, + 295.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1048.0, + 1405.0, + 1048.0, + 1405.0, + 1083.0, + 292.0, + 1083.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1080.0, + 1110.0, + 1080.0, + 1110.0, + 1114.0, + 296.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 873.0, + 1381.0, + 873.0, + 1381.0, + 918.0, + 293.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 873.0, + 1407.0, + 873.0, + 1407.0, + 918.0, + 1402.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 911.0, + 620.0, + 911.0, + 620.0, + 943.0, + 294.0, + 943.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 368, + 1141, + 1344, + 1141, + 1344, + 1486, + 368, + 1486 + ], + "score": 0.985, + "html": "
Noise Rate丨RewardQ-LearnCEMSARSADQNDDQNDDPGNAF
ε=0.1r170.098.1165.2187.2187.8-1.03-4.48
?165.8108.9173.6200.0181.4-0.87-0.89
r181.999.3171.5200.0185.6-0.90-1.13
ε= 0.3r134.928.8144.4173.4168.6-1.23-4.52
149.385.9152.4175.3198.7-1.03-1.15
r161.181.8159.6186.7200.0 -1.05-1.36
ε=0.756.619.212.617.211.8-8.76-7.35
?177.687.1151.4185.8195.2-1.09-2.26
r172.183.0174.4189.3191.31
" + }, + { + "category_id": 5, + "poly": [ + 311, + 1600, + 1388, + 1600, + 1388, + 2028, + 311, + 2028 + ], + "score": 0.984, + "html": "
Noise RateRewardLift (↑)MeanAlienCarnivalPhoenixMsPacmanSeaquest
e_ =e+ =0.1r12044.21814.81239.24608.91709.1849.2
?67.5%个3423.11741.03630.37586.32547.31610.6
e_ = 0.1,e+ = 0.31770.5893.3841.8250.71151.1715.7
?20.3%个926.6973.7955.2643.91307.1753.1
e_ =e+=0.311180.1543.1919.82600.31109.6727.8
?46.7%个1730.81637.7966.14171.51470.2408.6
e_ =e+ =0.7r1296.8485.4380.3126.5491.50.0
?557.3%个1951.01799.21045.24970.41447.8492.5
e_ = 0.9,e+ = 0.7382.6410.267.0174.1620.1641.7
?106.9%个791.5693.5918.1298.91312.0735.1
e_ =e+=0.9r1588.8540.66.31410.8535.4588.8
?482.3%个3428.81901.34261.76758.62515.11707.1
" + }, + { + "category_id": 3, + "poly": [ + 312, + 229, + 1387, + 229, + 1387, + 595, + 312, + 595 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 296, + 620, + 1405, + 620, + 1405, + 774, + 296, + 774 + ], + "score": 0.949 + }, + { + "category_id": 0, + "poly": [ + 297, + 849, + 978, + 849, + 978, + 886, + 297, + 886 + ], + "score": 0.899 + }, + { + "category_id": 6, + "poly": [ + 297, + 1512, + 1405, + 1512, + 1405, + 1575, + 297, + 1575 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 865, + 2087, + 865, + 2113, + 834, + 2113 + ], + "score": 0.855 + }, + { + "category_id": 0, + "poly": [ + 299, + 929, + 881, + 929, + 881, + 963, + 299, + 963 + ], + "score": 0.844 + }, + { + "category_id": 6, + "poly": [ + 298, + 991, + 1404, + 991, + 1404, + 1117, + 298, + 1117 + ], + "score": 0.682 + }, + { + "category_id": 1, + "poly": [ + 298, + 991, + 1404, + 991, + 1404, + 1117, + 298, + 1117 + ], + "score": 0.447 + }, + { + "category_id": 2, + "poly": [ + 297, + 76, + 857, + 76, + 857, + 104, + 297, + 104 + ], + "score": 0.432 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 857, + 76, + 857, + 104, + 298, + 104 + ], + "score": 0.422 + }, + { + "category_id": 13, + "poly": [ + 350, + 1987, + 498, + 1987, + 498, + 2009, + 350, + 2009 + ], + "score": 0.88, + "latex": "e _ { - } = e _ { + } = 0 . 9" + }, + { + "category_id": 13, + "poly": [ + 350, + 1859, + 499, + 1859, + 499, + 1882, + 350, + 1882 + ], + "score": 0.88, + "latex": "e _ { - } = e _ { + } = 0 . 7" + }, + { + "category_id": 13, + "poly": [ + 330, + 1923, + 519, + 1923, + 519, + 1945, + 330, + 1945 + ], + "score": 0.86, + "latex": "e _ { - } = 0 . 9 , e _ { + } = 0 . 7" + }, + { + "category_id": 13, + "poly": [ + 577, + 1999, + 590, + 1999, + 590, + 2017, + 577, + 2017 + ], + "score": 0.86, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1973, + 589, + 1973, + 589, + 1990, + 577, + 1990 + ], + "score": 0.84, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1935, + 590, + 1935, + 590, + 1953, + 577, + 1953 + ], + "score": 0.81, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1909, + 589, + 1909, + 589, + 1926, + 577, + 1926 + ], + "score": 0.8, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1871, + 590, + 1871, + 590, + 1888, + 577, + 1888 + ], + "score": 0.79, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1845, + 590, + 1845, + 590, + 1862, + 577, + 1862 + ], + "score": 0.77, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 558, + 1298, + 571, + 1298, + 571, + 1317, + 558, + 1317 + ], + "score": 0.75, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 1318, + 1514, + 1353, + 1514, + 1353, + 1544, + 1318, + 1544 + ], + "score": 0.74, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 557, + 1326, + 571, + 1326, + 571, + 1345, + 557, + 1345 + ], + "score": 0.72, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 393, + 1025, + 427, + 1025, + 427, + 1055, + 393, + 1055 + ], + "score": 0.72, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 501, + 1544, + 535, + 1544, + 535, + 1574, + 501, + 1574 + ], + "score": 0.71, + "latex": "( \\hat { r } )" + }, + { + "category_id": 13, + "poly": [ + 557, + 1424, + 571, + 1424, + 571, + 1444, + 557, + 1444 + ], + "score": 0.68, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1025, + 874, + 1025, + 874, + 1055, + 840, + 1055 + ], + "score": 0.66, + "latex": "( \\hat { r } )" + }, + { + "category_id": 13, + "poly": [ + 557, + 1396, + 571, + 1396, + 571, + 1415, + 557, + 1415 + ], + "score": 0.66, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1355, + 571, + 1355, + 571, + 1374, + 557, + 1374 + ], + "score": 0.66, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1025, + 1059, + 1025, + 1059, + 1055, + 1025, + 1055 + ], + "score": 0.66, + "latex": "( \\dot { r } )" + }, + { + "category_id": 13, + "poly": [ + 349, + 1794, + 499, + 1794, + 499, + 1818, + 349, + 1818 + ], + "score": 0.61, + "latex": "e _ { - } = e _ { + } = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 557, + 1255, + 571, + 1255, + 571, + 1275, + 557, + 1275 + ], + "score": 0.58, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1780, + 590, + 1780, + 590, + 1798, + 577, + 1798 + ], + "score": 0.52, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 901, + 1054, + 927, + 1054, + 927, + 1082, + 901, + 1082 + ], + "score": 0.5, + "latex": "\\&" + }, + { + "category_id": 13, + "poly": [ + 329, + 1723, + 520, + 1723, + 520, + 1754, + 329, + 1754 + ], + "score": 0.5, + "latex": "e _ { - } = 0 . 1 , e _ { + } = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 557, + 1225, + 571, + 1225, + 571, + 1247, + 557, + 1247 + ], + "score": 0.49, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1807, + 590, + 1807, + 590, + 1824, + 577, + 1824 + ], + "score": 0.49, + "latex": "\\hat { r }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1451, + 571, + 1451, + 571, + 1473, + 557, + 1473 + ], + "score": 0.49, + "latex": "\\dot { r }" + }, + { + "category_id": 13, + "poly": [ + 557, + 1198, + 571, + 1198, + 571, + 1218, + 557, + 1218 + ], + "score": 0.36, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 1230, + 712, + 1258, + 712, + 1258, + 740, + 1230, + 740 + ], + "score": 0.33, + "latex": "\\mathbf { C }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1717, + 590, + 1717, + 590, + 1734, + 577, + 1734 + ], + "score": 0.32, + "latex": "\\tilde { r }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1742, + 590, + 1742, + 590, + 1761, + 577, + 1761 + ], + "score": 0.31, + "latex": "\\hat { r }" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 228.0, + 362.0, + 228.0, + 362.0, + 361.0, + 304.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 228.0, + 578.0, + 228.0, + 578.0, + 363.0, + 519.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 232.0, + 793.0, + 232.0, + 793.0, + 362.0, + 734.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 235.0, + 1005.0, + 235.0, + 1005.0, + 365.0, + 946.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 232.0, + 1229.0, + 232.0, + 1229.0, + 366.0, + 1162.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 270.0, + 349.0, + 270.0, + 349.0, + 291.0, + 327.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 268.0, + 568.0, + 268.0, + 568.0, + 292.0, + 541.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 266.0, + 1015.0, + 266.0, + 1015.0, + 280.0, + 998.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 294.0, + 350.0, + 294.0, + 350.0, + 321.0, + 326.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 295.0, + 566.0, + 295.0, + 566.0, + 316.0, + 542.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 295.0, + 782.0, + 295.0, + 782.0, + 321.0, + 756.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 297.0, + 995.0, + 297.0, + 995.0, + 321.0, + 968.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 298.0, + 1211.0, + 298.0, + 1211.0, + 321.0, + 1184.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 323.0, + 351.0, + 323.0, + 351.0, + 346.0, + 324.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 322.0, + 566.0, + 322.0, + 566.0, + 343.0, + 542.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 319.0, + 782.0, + 319.0, + 782.0, + 344.0, + 756.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 323.0, + 993.0, + 323.0, + 993.0, + 344.0, + 969.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 320.0, + 1010.0, + 320.0, + 1010.0, + 331.0, + 1001.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 325.0, + 1211.0, + 325.0, + 1211.0, + 348.0, + 1184.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 345.0, + 581.0, + 345.0, + 581.0, + 355.0, + 570.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 345.0, + 796.0, + 345.0, + 796.0, + 355.0, + 786.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 349.0, + 994.0, + 349.0, + 994.0, + 368.0, + 969.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 359.0, + 366.0, + 359.0, + 366.0, + 374.0, + 351.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 357.0, + 424.0, + 357.0, + 424.0, + 376.0, + 395.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 357.0, + 474.0, + 357.0, + 474.0, + 376.0, + 446.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 357.0, + 523.0, + 357.0, + 523.0, + 376.0, + 496.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 359.0, + 583.0, + 359.0, + 583.0, + 374.0, + 568.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 357.0, + 628.0, + 357.0, + 628.0, + 374.0, + 599.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 359.0, + 741.0, + 359.0, + 741.0, + 374.0, + 634.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 360.0, + 798.0, + 360.0, + 798.0, + 374.0, + 782.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 359.0, + 949.0, + 359.0, + 949.0, + 374.0, + 804.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 360.0, + 1010.0, + 360.0, + 1010.0, + 374.0, + 995.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 360.0, + 1043.0, + 360.0, + 1043.0, + 374.0, + 1022.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 359.0, + 1169.0, + 359.0, + 1169.0, + 376.0, + 1049.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1211.0, + 360.0, + 1225.0, + 360.0, + 1225.0, + 374.0, + 1211.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 359.0, + 1262.0, + 359.0, + 1262.0, + 376.0, + 1237.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 357.0, + 1386.0, + 357.0, + 1386.0, + 377.0, + 1264.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 370.0, + 512.0, + 370.0, + 512.0, + 389.0, + 360.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 370.0, + 727.0, + 370.0, + 727.0, + 389.0, + 575.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 370.0, + 939.0, + 370.0, + 939.0, + 389.0, + 791.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 370.0, + 1148.0, + 370.0, + 1148.0, + 389.0, + 1002.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 370.0, + 1364.0, + 370.0, + 1364.0, + 389.0, + 1219.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 390.0, + 586.0, + 390.0, + 586.0, + 530.0, + 449.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 400.0, + 733.0, + 400.0, + 733.0, + 420.0, + 666.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 388.0, + 796.0, + 388.0, + 796.0, + 527.0, + 734.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 394.0, + 1015.0, + 394.0, + 1015.0, + 530.0, + 878.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 391.0, + 1233.0, + 391.0, + 1233.0, + 531.0, + 1089.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 402.0, + 1373.0, + 402.0, + 1373.0, + 423.0, + 1306.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 435.0, + 356.0, + 435.0, + 356.0, + 457.0, + 326.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 413.0, + 517.0, + 413.0, + 517.0, + 458.0, + 449.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 413.0, + 733.0, + 413.0, + 733.0, + 457.0, + 666.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 412.0, + 946.0, + 412.0, + 946.0, + 457.0, + 875.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 416.0, + 1157.0, + 416.0, + 1157.0, + 459.0, + 1088.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 416.0, + 1373.0, + 416.0, + 1373.0, + 459.0, + 1305.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 450.0, + 518.0, + 450.0, + 518.0, + 470.0, + 449.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 450.0, + 733.0, + 450.0, + 733.0, + 470.0, + 666.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 450.0, + 946.0, + 450.0, + 946.0, + 470.0, + 876.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 452.0, + 1155.0, + 452.0, + 1155.0, + 473.0, + 1088.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 452.0, + 1373.0, + 452.0, + 1373.0, + 471.0, + 1305.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 467.0, + 356.0, + 467.0, + 356.0, + 524.0, + 325.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 463.0, + 518.0, + 463.0, + 518.0, + 520.0, + 435.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 463.0, + 572.0, + 463.0, + 572.0, + 524.0, + 540.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 502.0, + 594.0, + 502.0, + 594.0, + 516.0, + 577.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 665.0, + 463.0, + 733.0, + 463.0, + 733.0, + 507.0, + 665.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 469.0, + 782.0, + 469.0, + 782.0, + 524.0, + 756.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 501.0, + 803.0, + 501.0, + 803.0, + 515.0, + 787.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 462.0, + 946.0, + 462.0, + 946.0, + 508.0, + 876.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 507.0, + 999.0, + 507.0, + 999.0, + 525.0, + 969.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 464.0, + 1157.0, + 464.0, + 1157.0, + 521.0, + 1088.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 478.0, + 1255.0, + 478.0, + 1255.0, + 525.0, + 1185.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 507.0, + 1283.0, + 507.0, + 1283.0, + 515.0, + 1268.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 464.0, + 1373.0, + 464.0, + 1373.0, + 522.0, + 1305.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 521.0, + 370.0, + 521.0, + 370.0, + 537.0, + 356.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 520.0, + 524.0, + 520.0, + 524.0, + 553.0, + 376.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 521.0, + 588.0, + 521.0, + 588.0, + 537.0, + 572.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 519.0, + 743.0, + 519.0, + 743.0, + 552.0, + 593.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 521.0, + 798.0, + 521.0, + 798.0, + 537.0, + 782.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 518.0, + 951.0, + 518.0, + 951.0, + 553.0, + 803.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 522.0, + 1014.0, + 522.0, + 1014.0, + 538.0, + 998.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 521.0, + 1141.0, + 521.0, + 1141.0, + 553.0, + 1019.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 521.0, + 1171.0, + 521.0, + 1171.0, + 539.0, + 1142.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 522.0, + 1230.0, + 522.0, + 1230.0, + 537.0, + 1215.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 521.0, + 1357.0, + 521.0, + 1357.0, + 553.0, + 1233.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1360.0, + 521.0, + 1388.0, + 521.0, + 1388.0, + 538.0, + 1360.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 559.0, + 505.0, + 559.0, + 505.0, + 603.0, + 337.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 563.0, + 688.0, + 563.0, + 688.0, + 596.0, + 584.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 563.0, + 913.0, + 563.0, + 913.0, + 596.0, + 786.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 560.0, + 1116.0, + 560.0, + 1116.0, + 600.0, + 1011.0, + 600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 561.0, + 1373.0, + 561.0, + 1373.0, + 598.0, + 1185.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 490.5, + 394.0, + 490.5, + 394.0, + 514.5, + 350.0, + 514.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 620.0, + 1405.0, + 620.0, + 1405.0, + 653.0, + 295.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 651.0, + 1405.0, + 651.0, + 1405.0, + 686.0, + 293.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 678.0, + 1405.0, + 678.0, + 1405.0, + 717.0, + 294.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 712.0, + 1229.0, + 712.0, + 1229.0, + 745.0, + 295.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 712.0, + 1405.0, + 712.0, + 1405.0, + 745.0, + 1259.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 745.0, + 455.0, + 745.0, + 455.0, + 775.0, + 296.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 981.0, + 847.0, + 981.0, + 890.0, + 294.0, + 890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1512.0, + 1317.0, + 1512.0, + 1317.0, + 1547.0, + 296.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1512.0, + 1405.0, + 1512.0, + 1405.0, + 1547.0, + 1354.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1544.0, + 500.0, + 1544.0, + 500.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1544.0, + 1333.0, + 1544.0, + 1333.0, + 1577.0, + 536.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 927.0, + 884.0, + 927.0, + 884.0, + 968.0, + 293.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1028.0, + 293.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 392.0, + 1025.0, + 392.0, + 1058.0, + 294.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1025.0, + 839.0, + 1025.0, + 839.0, + 1058.0, + 428.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1025.0, + 1024.0, + 1025.0, + 1024.0, + 1058.0, + 875.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1025.0, + 1406.0, + 1025.0, + 1406.0, + 1058.0, + 1060.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1054.0, + 900.0, + 1054.0, + 900.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1054.0, + 1402.0, + 1054.0, + 1402.0, + 1087.0, + 928.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 1343.0, + 1086.0, + 1343.0, + 1119.0, + 294.0, + 1119.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": [ + 298.0, + 73.0, + 858.0, + 73.0, + 858.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1028.0, + 293.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 392.0, + 1025.0, + 392.0, + 1058.0, + 294.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 1025.0, + 839.0, + 1025.0, + 839.0, + 1058.0, + 428.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1025.0, + 1024.0, + 1025.0, + 1024.0, + 1058.0, + 875.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1025.0, + 1406.0, + 1025.0, + 1406.0, + 1058.0, + 1060.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1054.0, + 900.0, + 1054.0, + 900.0, + 1087.0, + 294.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1054.0, + 1402.0, + 1054.0, + 1402.0, + 1087.0, + 928.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 1343.0, + 1086.0, + 1343.0, + 1119.0, + 294.0, + 1119.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 373, + 295, + 1320, + 295, + 1320, + 1059, + 373, + 1059 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 300, + 1399, + 1395, + 1399, + 1395, + 1912, + 300, + 1912 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 296, + 1084, + 1406, + 1084, + 1406, + 1240, + 296, + 1240 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1408, + 1977, + 1408, + 2035, + 296, + 2035 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 298, + 1342, + 467, + 1342, + 467, + 1373, + 298, + 1373 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.872 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 857, + 75, + 857, + 104, + 298, + 104 + ], + "score": 0.837 + }, + { + "category_id": 0, + "poly": [ + 300, + 1275, + 803, + 1275, + 803, + 1308, + 300, + 1308 + ], + "score": 0.829 + }, + { + "category_id": 0, + "poly": [ + 297, + 231, + 837, + 231, + 837, + 261, + 297, + 261 + ], + "score": 0.569 + }, + { + "category_id": 2, + "poly": [ + 297, + 231, + 837, + 231, + 837, + 261, + 297, + 261 + ], + "score": 0.33 + }, + { + "category_id": 13, + "poly": [ + 383, + 1208, + 437, + 1208, + 437, + 1237, + 383, + 1237 + ], + "score": 0.86, + "latex": "90 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 1208, + 351, + 1208, + 351, + 1237, + 298, + 1237 + ], + "score": 0.86, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 903, + 1114, + 1021, + 1114, + 1021, + 1148, + 903, + 1148 + ], + "score": 0.74, + "latex": "( \\eta = 1 ) \\mathbb { \\frac { \\ d H } { \\ d t } }" + }, + { + "category_id": 13, + "poly": [ + 543, + 1115, + 611, + 1115, + 611, + 1147, + 543, + 1147 + ], + "score": 0.5, + "latex": "( \\tilde { r } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1116, + 333, + 1116, + 333, + 1147, + 298, + 1147 + ], + "score": 0.44, + "latex": "( r )" + }, + { + "category_id": 13, + "poly": [ + 865, + 1117, + 899, + 1117, + 899, + 1147, + 865, + 1147 + ], + "score": 0.35, + "latex": "( \\hat { r } )" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 305.0, + 397.0, + 305.0, + 397.0, + 428.0, + 376.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 323.0, + 412.0, + 323.0, + 412.0, + 338.0, + 398.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 304.0, + 651.0, + 304.0, + 651.0, + 430.0, + 613.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 303.0, + 890.0, + 303.0, + 890.0, + 429.0, + 851.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 305.0, + 1112.0, + 305.0, + 1112.0, + 429.0, + 1091.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 320.0, + 1127.0, + 320.0, + 1127.0, + 338.0, + 1114.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 332.0, + 1276.0, + 332.0, + 1276.0, + 355.0, + 1240.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 356.0, + 414.0, + 356.0, + 414.0, + 375.0, + 396.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 354.0, + 652.0, + 354.0, + 652.0, + 371.0, + 633.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 359.0, + 890.0, + 359.0, + 890.0, + 378.0, + 872.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 353.0, + 1128.0, + 353.0, + 1128.0, + 375.0, + 1112.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 344.0, + 1281.0, + 344.0, + 1281.0, + 403.0, + 1206.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 392.0, + 415.0, + 392.0, + 415.0, + 409.0, + 397.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 395.0, + 433.0, + 395.0, + 433.0, + 406.0, + 426.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 389.0, + 652.0, + 389.0, + 652.0, + 406.0, + 633.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 396.0, + 891.0, + 396.0, + 891.0, + 415.0, + 874.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 389.0, + 1129.0, + 389.0, + 1129.0, + 409.0, + 1112.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 423.0, + 653.0, + 423.0, + 653.0, + 439.0, + 633.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 426.0, + 1127.0, + 426.0, + 1127.0, + 440.0, + 1112.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 438.0, + 432.0, + 438.0, + 432.0, + 453.0, + 419.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 436.0, + 486.0, + 436.0, + 486.0, + 456.0, + 456.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 436.0, + 532.0, + 436.0, + 532.0, + 456.0, + 502.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 436.0, + 578.0, + 436.0, + 578.0, + 456.0, + 548.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 438.0, + 670.0, + 438.0, + 670.0, + 453.0, + 657.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 436.0, + 724.0, + 436.0, + 724.0, + 456.0, + 695.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 436.0, + 770.0, + 436.0, + 770.0, + 456.0, + 740.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 436.0, + 816.0, + 436.0, + 816.0, + 456.0, + 785.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 438.0, + 909.0, + 438.0, + 909.0, + 453.0, + 894.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 436.0, + 962.0, + 436.0, + 962.0, + 456.0, + 933.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 436.0, + 1008.0, + 436.0, + 1008.0, + 456.0, + 977.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 436.0, + 1054.0, + 436.0, + 1054.0, + 456.0, + 1024.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 440.0, + 1144.0, + 440.0, + 1144.0, + 451.0, + 1134.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 436.0, + 1200.0, + 436.0, + 1200.0, + 456.0, + 1170.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 435.0, + 1246.0, + 435.0, + 1246.0, + 456.0, + 1214.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 437.0, + 1289.0, + 437.0, + 1289.0, + 453.0, + 1262.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 449.0, + 537.0, + 449.0, + 537.0, + 471.0, + 481.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 449.0, + 775.0, + 449.0, + 775.0, + 471.0, + 720.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 449.0, + 1012.0, + 449.0, + 1012.0, + 471.0, + 958.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 449.0, + 1251.0, + 449.0, + 1251.0, + 471.0, + 1195.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 488.0, + 415.0, + 488.0, + 415.0, + 610.0, + 376.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 487.0, + 652.0, + 487.0, + 652.0, + 612.0, + 613.0, + 612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 487.0, + 875.0, + 487.0, + 875.0, + 611.0, + 851.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 488.0, + 1112.0, + 488.0, + 1112.0, + 610.0, + 1091.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 502.0, + 1128.0, + 502.0, + 1128.0, + 516.0, + 1113.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 541.0, + 415.0, + 541.0, + 415.0, + 557.0, + 396.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 538.0, + 652.0, + 538.0, + 652.0, + 556.0, + 633.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 547.0, + 889.0, + 547.0, + 889.0, + 563.0, + 875.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 533.0, + 1129.0, + 533.0, + 1129.0, + 553.0, + 1112.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 579.0, + 414.0, + 579.0, + 414.0, + 593.0, + 398.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 637.0, + 573.0, + 651.0, + 573.0, + 651.0, + 588.0, + 637.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 567.0, + 1129.0, + 567.0, + 1129.0, + 586.0, + 1112.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 586.0, + 891.0, + 586.0, + 891.0, + 604.0, + 874.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 588.0, + 911.0, + 588.0, + 911.0, + 610.0, + 900.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 607.0, + 652.0, + 607.0, + 652.0, + 623.0, + 633.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 605.0, + 1127.0, + 605.0, + 1127.0, + 618.0, + 1114.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 621.0, + 432.0, + 621.0, + 432.0, + 636.0, + 419.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 619.0, + 486.0, + 619.0, + 486.0, + 638.0, + 456.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 619.0, + 532.0, + 619.0, + 532.0, + 638.0, + 502.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 618.0, + 578.0, + 618.0, + 578.0, + 638.0, + 549.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 620.0, + 672.0, + 620.0, + 672.0, + 637.0, + 655.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 619.0, + 724.0, + 619.0, + 724.0, + 638.0, + 694.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 618.0, + 770.0, + 618.0, + 770.0, + 638.0, + 740.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 618.0, + 816.0, + 618.0, + 816.0, + 638.0, + 787.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 621.0, + 909.0, + 621.0, + 909.0, + 636.0, + 894.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 619.0, + 962.0, + 619.0, + 962.0, + 638.0, + 933.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 619.0, + 1008.0, + 619.0, + 1008.0, + 638.0, + 977.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 618.0, + 1054.0, + 618.0, + 1054.0, + 638.0, + 1024.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 621.0, + 1146.0, + 621.0, + 1146.0, + 636.0, + 1132.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 618.0, + 1200.0, + 618.0, + 1200.0, + 638.0, + 1169.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 618.0, + 1246.0, + 618.0, + 1246.0, + 638.0, + 1214.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 618.0, + 1291.0, + 618.0, + 1291.0, + 638.0, + 1261.0, + 638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 632.0, + 538.0, + 632.0, + 538.0, + 653.0, + 481.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 632.0, + 776.0, + 632.0, + 776.0, + 653.0, + 719.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 632.0, + 1013.0, + 632.0, + 1013.0, + 653.0, + 958.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 632.0, + 1251.0, + 632.0, + 1251.0, + 653.0, + 1195.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 671.0, + 397.0, + 671.0, + 397.0, + 791.0, + 376.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 682.0, + 412.0, + 682.0, + 412.0, + 696.0, + 399.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 669.0, + 651.0, + 669.0, + 651.0, + 795.0, + 613.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 669.0, + 889.0, + 669.0, + 889.0, + 793.0, + 851.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 671.0, + 1110.0, + 671.0, + 1110.0, + 791.0, + 1090.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 682.0, + 1127.0, + 682.0, + 1127.0, + 698.0, + 1114.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 708.0, + 414.0, + 708.0, + 414.0, + 727.0, + 397.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 717.0, + 653.0, + 717.0, + 653.0, + 737.0, + 633.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 719.0, + 890.0, + 719.0, + 890.0, + 737.0, + 874.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 714.0, + 1127.0, + 714.0, + 1127.0, + 729.0, + 1114.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 750.0, + 652.0, + 750.0, + 652.0, + 768.0, + 633.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 756.0, + 889.0, + 756.0, + 889.0, + 771.0, + 875.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 743.0, + 1129.0, + 743.0, + 1129.0, + 761.0, + 1112.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 768.0, + 415.0, + 768.0, + 415.0, + 785.0, + 396.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 775.0, + 1129.0, + 775.0, + 1129.0, + 793.0, + 1112.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 785.0, + 653.0, + 785.0, + 653.0, + 801.0, + 633.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 791.0, + 891.0, + 791.0, + 891.0, + 809.0, + 872.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 801.0, + 434.0, + 801.0, + 434.0, + 818.0, + 417.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 800.0, + 486.0, + 800.0, + 486.0, + 820.0, + 456.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 800.0, + 532.0, + 800.0, + 532.0, + 820.0, + 501.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 800.0, + 577.0, + 800.0, + 577.0, + 820.0, + 549.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 803.0, + 671.0, + 803.0, + 671.0, + 817.0, + 657.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 800.0, + 724.0, + 800.0, + 724.0, + 820.0, + 694.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 800.0, + 770.0, + 800.0, + 770.0, + 820.0, + 740.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 800.0, + 816.0, + 800.0, + 816.0, + 820.0, + 787.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 802.0, + 909.0, + 802.0, + 909.0, + 817.0, + 894.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 800.0, + 963.0, + 800.0, + 963.0, + 820.0, + 933.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 800.0, + 1009.0, + 800.0, + 1009.0, + 818.0, + 976.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 800.0, + 1054.0, + 800.0, + 1054.0, + 820.0, + 1023.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 802.0, + 1146.0, + 802.0, + 1146.0, + 817.0, + 1132.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 800.0, + 1200.0, + 800.0, + 1200.0, + 820.0, + 1169.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 800.0, + 1246.0, + 800.0, + 1246.0, + 820.0, + 1214.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 800.0, + 1290.0, + 800.0, + 1290.0, + 820.0, + 1261.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 813.0, + 537.0, + 813.0, + 537.0, + 835.0, + 481.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 813.0, + 775.0, + 813.0, + 775.0, + 835.0, + 720.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 815.0, + 1011.0, + 815.0, + 1011.0, + 834.0, + 959.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 813.0, + 1251.0, + 813.0, + 1251.0, + 835.0, + 1195.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 852.0, + 414.0, + 852.0, + 414.0, + 974.0, + 376.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 850.0, + 634.0, + 850.0, + 634.0, + 975.0, + 613.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 851.0, + 851.0, + 890.0, + 851.0, + 890.0, + 977.0, + 851.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 851.0, + 1110.0, + 851.0, + 1110.0, + 974.0, + 1088.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 864.0, + 1127.0, + 864.0, + 1127.0, + 879.0, + 1114.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 890.0, + 414.0, + 890.0, + 414.0, + 908.0, + 396.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 897.0, + 652.0, + 897.0, + 652.0, + 919.0, + 635.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 899.0, + 889.0, + 899.0, + 889.0, + 915.0, + 875.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 893.0, + 1127.0, + 893.0, + 1127.0, + 909.0, + 1114.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 918.0, + 414.0, + 918.0, + 414.0, + 936.0, + 397.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 923.0, + 1129.0, + 923.0, + 1129.0, + 941.0, + 1112.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 932.0, + 652.0, + 932.0, + 652.0, + 949.0, + 633.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 932.0, + 891.0, + 932.0, + 891.0, + 949.0, + 874.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 947.0, + 414.0, + 947.0, + 414.0, + 965.0, + 397.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 953.0, + 1129.0, + 953.0, + 1129.0, + 971.0, + 1110.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 966.0, + 653.0, + 966.0, + 653.0, + 984.0, + 633.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 966.0, + 890.0, + 966.0, + 890.0, + 984.0, + 873.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 984.0, + 434.0, + 984.0, + 434.0, + 1001.0, + 417.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 982.0, + 486.0, + 982.0, + 486.0, + 1002.0, + 456.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 982.0, + 532.0, + 982.0, + 532.0, + 1002.0, + 502.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 982.0, + 578.0, + 982.0, + 578.0, + 1002.0, + 548.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 984.0, + 672.0, + 984.0, + 672.0, + 1001.0, + 655.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 982.0, + 724.0, + 982.0, + 724.0, + 1002.0, + 693.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 980.0, + 772.0, + 980.0, + 772.0, + 1003.0, + 737.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 982.0, + 816.0, + 982.0, + 816.0, + 1002.0, + 785.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 984.0, + 911.0, + 984.0, + 911.0, + 1001.0, + 893.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 982.0, + 963.0, + 982.0, + 963.0, + 1002.0, + 932.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 982.0, + 1009.0, + 982.0, + 1009.0, + 1002.0, + 977.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 982.0, + 1055.0, + 982.0, + 1055.0, + 1002.0, + 1023.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 984.0, + 1148.0, + 984.0, + 1148.0, + 1001.0, + 1130.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 980.0, + 1202.0, + 980.0, + 1202.0, + 1003.0, + 1167.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 982.0, + 1246.0, + 982.0, + 1246.0, + 1002.0, + 1214.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 982.0, + 1291.0, + 982.0, + 1291.0, + 1002.0, + 1261.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 996.0, + 537.0, + 996.0, + 537.0, + 1015.0, + 480.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 996.0, + 775.0, + 996.0, + 775.0, + 1015.0, + 717.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 996.0, + 1013.0, + 996.0, + 1013.0, + 1015.0, + 956.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 996.0, + 1250.0, + 996.0, + 1250.0, + 1015.0, + 1194.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 1026.0, + 1078.0, + 1026.0, + 1078.0, + 1063.0, + 372.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1027.0, + 1303.0, + 1027.0, + 1303.0, + 1061.0, + 1108.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.25, + 506.0, + 885.25, + 506.0, + 885.25, + 524.0, + 878.25, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 737.5, + 413.0, + 737.5, + 413.0, + 756.0, + 398.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.75, + 751.5, + 930.75, + 751.5, + 930.75, + 768.5, + 907.75, + 768.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1192.75, + 846.5, + 1249.75, + 846.5, + 1249.75, + 864.0, + 1192.75, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.75, + 865.0, + 656.75, + 865.0, + 656.75, + 880.0, + 629.75, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1399.0, + 521.0, + 1399.0, + 521.0, + 1428.0, + 450.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1401.0, + 783.0, + 1401.0, + 783.0, + 1427.0, + 713.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1398.0, + 1045.0, + 1398.0, + 1045.0, + 1427.0, + 973.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1400.0, + 1307.0, + 1400.0, + 1307.0, + 1426.0, + 1237.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1428.0, + 361.0, + 1428.0, + 361.0, + 1449.0, + 336.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1437.0, + 330.0, + 1437.0, + 330.0, + 1589.0, + 301.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1465.0, + 360.0, + 1465.0, + 360.0, + 1486.0, + 336.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1504.0, + 360.0, + 1504.0, + 360.0, + 1521.0, + 343.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1541.0, + 360.0, + 1541.0, + 360.0, + 1560.0, + 332.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1579.0, + 360.0, + 1579.0, + 360.0, + 1598.0, + 331.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1610.0, + 519.0, + 1610.0, + 519.0, + 1633.0, + 449.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1610.0, + 783.0, + 1610.0, + 783.0, + 1635.0, + 713.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1610.0, + 1044.0, + 1610.0, + 1044.0, + 1635.0, + 976.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1610.0, + 1306.0, + 1610.0, + 1306.0, + 1633.0, + 1235.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1636.0, + 361.0, + 1636.0, + 361.0, + 1657.0, + 336.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1647.0, + 330.0, + 1647.0, + 330.0, + 1797.0, + 301.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1675.0, + 360.0, + 1675.0, + 360.0, + 1695.0, + 336.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1713.0, + 360.0, + 1713.0, + 360.0, + 1731.0, + 343.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1750.0, + 360.0, + 1750.0, + 360.0, + 1769.0, + 333.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1784.0, + 585.0, + 1784.0, + 585.0, + 1793.0, + 562.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1788.0, + 358.0, + 1788.0, + 358.0, + 1806.0, + 332.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 1816.0, + 386.0, + 1816.0, + 386.0, + 1833.0, + 370.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1816.0, + 457.0, + 1816.0, + 457.0, + 1833.0, + 442.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1816.0, + 530.0, + 1816.0, + 530.0, + 1834.0, + 514.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 1814.0, + 605.0, + 1814.0, + 605.0, + 1834.0, + 585.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 1816.0, + 648.0, + 1816.0, + 648.0, + 1833.0, + 631.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1816.0, + 719.0, + 1816.0, + 719.0, + 1833.0, + 704.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 1815.0, + 791.0, + 1815.0, + 791.0, + 1834.0, + 777.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1814.0, + 867.0, + 1814.0, + 867.0, + 1834.0, + 846.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1816.0, + 911.0, + 1816.0, + 911.0, + 1833.0, + 894.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1816.0, + 982.0, + 1816.0, + 982.0, + 1833.0, + 966.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1814.0, + 1055.0, + 1814.0, + 1055.0, + 1836.0, + 1037.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1814.0, + 1130.0, + 1814.0, + 1130.0, + 1834.0, + 1108.0, + 1834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1816.0, + 1172.0, + 1816.0, + 1172.0, + 1833.0, + 1155.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 1816.0, + 1243.0, + 1816.0, + 1243.0, + 1833.0, + 1228.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1816.0, + 1317.0, + 1816.0, + 1317.0, + 1833.0, + 1301.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1815.0, + 1389.0, + 1815.0, + 1389.0, + 1833.0, + 1373.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1828.0, + 610.0, + 1828.0, + 610.0, + 1852.0, + 575.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1828.0, + 872.0, + 1828.0, + 872.0, + 1852.0, + 838.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1828.0, + 1134.0, + 1828.0, + 1134.0, + 1852.0, + 1100.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1830.0, + 1395.0, + 1830.0, + 1395.0, + 1850.0, + 1364.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1878.0, + 1021.0, + 1878.0, + 1021.0, + 1913.0, + 679.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1445.0, + 437.0, + 1445.0, + 437.0, + 1468.0, + 383.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.25, + 1448.5, + 695.25, + 1448.5, + 695.25, + 1467.5, + 648.25, + 1467.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1445.0, + 962.0, + 1445.0, + 962.0, + 1468.5, + 909.0, + 1468.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.75, + 1444.0, + 1226.75, + 1444.0, + 1226.75, + 1471.0, + 1165.75, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1656.5, + 694.0, + 1656.5, + 694.0, + 1678.5, + 646.0, + 1678.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1656.5, + 959.0, + 1656.5, + 959.0, + 1678.0, + 909.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1083.0, + 1404.0, + 1083.0, + 1404.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1115.0, + 297.0, + 1115.0, + 297.0, + 1150.0, + 294.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 1115.0, + 339.0, + 1115.0, + 339.0, + 1150.0, + 334.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1114.0, + 542.0, + 1114.0, + 542.0, + 1149.0, + 377.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1114.0, + 864.0, + 1114.0, + 864.0, + 1149.0, + 612.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1114.0, + 1403.0, + 1114.0, + 1403.0, + 1149.0, + 1022.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1146.0, + 1404.0, + 1146.0, + 1404.0, + 1179.0, + 293.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1175.0, + 1406.0, + 1175.0, + 1406.0, + 1213.0, + 294.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1206.0, + 382.0, + 1206.0, + 382.0, + 1243.0, + 352.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1206.0, + 905.0, + 1206.0, + 905.0, + 1243.0, + 438.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1969.0, + 1408.0, + 1969.0, + 1408.0, + 2015.0, + 326.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 563.0, + 2004.0, + 563.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1340.0, + 471.0, + 1340.0, + 471.0, + 1376.0, + 294.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.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": [ + 293.0, + 1274.0, + 807.0, + 1274.0, + 807.0, + 1311.0, + 293.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 841.0, + 227.0, + 841.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 841.0, + 227.0, + 841.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 297, + 220, + 1397, + 220, + 1397, + 741, + 297, + 741 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 297, + 935, + 1373, + 935, + 1373, + 1383, + 297, + 1383 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 296, + 1578, + 1373, + 1578, + 1373, + 2026, + 296, + 2026 + ], + "score": 0.952 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 858, + 75, + 858, + 105, + 297, + 105 + ], + "score": 0.863 + }, + { + "category_id": 4, + "poly": [ + 297, + 1417, + 476, + 1417, + 476, + 1449, + 297, + 1449 + ], + "score": 0.816 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.811 + }, + { + "category_id": 4, + "poly": [ + 297, + 777, + 508, + 777, + 508, + 808, + 297, + 808 + ], + "score": 0.585 + }, + { + "category_id": 0, + "poly": [ + 297, + 777, + 508, + 777, + 508, + 808, + 297, + 808 + ], + "score": 0.357 + }, + { + "category_id": 13, + "poly": [ + 716, + 1146, + 777, + 1146, + 777, + 1167, + 716, + 1167 + ], + "score": 0.26, + "latex": "w = 0 . 7" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 230.0, + 519.0, + 230.0, + 519.0, + 252.0, + 450.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 230.0, + 781.0, + 230.0, + 781.0, + 252.0, + 712.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 229.0, + 1043.0, + 229.0, + 1043.0, + 254.0, + 974.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 230.0, + 1306.0, + 230.0, + 1306.0, + 252.0, + 1237.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 256.0, + 361.0, + 256.0, + 361.0, + 276.0, + 336.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 265.0, + 329.0, + 265.0, + 329.0, + 415.0, + 302.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 278.0, + 690.0, + 278.0, + 690.0, + 286.0, + 674.0, + 286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 285.0, + 1194.0, + 285.0, + 1194.0, + 294.0, + 1181.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 294.0, + 361.0, + 294.0, + 361.0, + 313.0, + 336.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 333.0, + 359.0, + 333.0, + 359.0, + 350.0, + 344.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 369.0, + 359.0, + 369.0, + 359.0, + 388.0, + 333.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 408.0, + 359.0, + 408.0, + 359.0, + 425.0, + 332.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 438.0, + 522.0, + 438.0, + 522.0, + 462.0, + 451.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 437.0, + 784.0, + 437.0, + 784.0, + 462.0, + 710.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 437.0, + 1046.0, + 437.0, + 1046.0, + 462.0, + 973.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 438.0, + 1306.0, + 438.0, + 1306.0, + 461.0, + 1235.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 465.0, + 361.0, + 465.0, + 361.0, + 484.0, + 336.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 472.0, + 330.0, + 472.0, + 330.0, + 624.0, + 302.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 502.0, + 359.0, + 502.0, + 359.0, + 522.0, + 336.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 541.0, + 359.0, + 541.0, + 359.0, + 558.0, + 344.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 576.0, + 361.0, + 576.0, + 361.0, + 598.0, + 331.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 615.0, + 359.0, + 615.0, + 359.0, + 633.0, + 332.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 645.0, + 383.0, + 645.0, + 383.0, + 658.0, + 372.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 647.0, + 454.0, + 647.0, + 454.0, + 658.0, + 445.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 644.0, + 529.0, + 644.0, + 529.0, + 660.0, + 514.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 643.0, + 602.0, + 643.0, + 602.0, + 660.0, + 586.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 643.0, + 647.0, + 643.0, + 647.0, + 660.0, + 632.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 644.0, + 720.0, + 644.0, + 720.0, + 660.0, + 704.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 644.0, + 791.0, + 644.0, + 791.0, + 660.0, + 777.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 643.0, + 865.0, + 643.0, + 865.0, + 660.0, + 848.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 643.0, + 909.0, + 643.0, + 909.0, + 660.0, + 894.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 644.0, + 981.0, + 644.0, + 981.0, + 660.0, + 967.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 644.0, + 1054.0, + 644.0, + 1054.0, + 660.0, + 1038.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 643.0, + 1126.0, + 643.0, + 1126.0, + 660.0, + 1109.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 644.0, + 1171.0, + 644.0, + 1171.0, + 660.0, + 1157.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1228.0, + 645.0, + 1243.0, + 645.0, + 1243.0, + 660.0, + 1228.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 644.0, + 1316.0, + 644.0, + 1316.0, + 661.0, + 1301.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 643.0, + 1388.0, + 643.0, + 1388.0, + 659.0, + 1373.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 656.0, + 610.0, + 656.0, + 610.0, + 678.0, + 576.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 656.0, + 872.0, + 656.0, + 872.0, + 678.0, + 838.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 656.0, + 1133.0, + 656.0, + 1133.0, + 678.0, + 1101.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 659.0, + 1395.0, + 659.0, + 1395.0, + 677.0, + 1364.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 704.0, + 1015.0, + 704.0, + 1015.0, + 742.0, + 683.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 387.0, + 276.0, + 435.0, + 276.0, + 435.0, + 295.0, + 387.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 274.5, + 960.0, + 274.5, + 960.0, + 296.0, + 909.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 275.0, + 1217.0, + 275.0, + 1217.0, + 287.0, + 1191.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.75, + 483.5, + 435.75, + 483.5, + 435.75, + 504.0, + 385.75, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 484.5, + 692.0, + 484.5, + 692.0, + 498.5, + 662.0, + 498.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 484.5, + 956.0, + 484.5, + 956.0, + 500.5, + 913.0, + 500.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 482.5, + 1222.0, + 482.5, + 1222.0, + 502.5, + 1171.0, + 502.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 941.0, + 526.0, + 941.0, + 526.0, + 969.0, + 458.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 941.0, + 781.0, + 941.0, + 781.0, + 969.0, + 713.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 941.0, + 1035.0, + 941.0, + 1035.0, + 969.0, + 966.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 941.0, + 1288.0, + 941.0, + 1288.0, + 969.0, + 1218.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 966.0, + 372.0, + 966.0, + 372.0, + 990.0, + 323.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 978.0, + 329.0, + 978.0, + 329.0, + 1125.0, + 301.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1017.0, + 371.0, + 1017.0, + 371.0, + 1038.0, + 325.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1067.0, + 371.0, + 1067.0, + 371.0, + 1089.0, + 332.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1122.0, + 369.0, + 1122.0, + 369.0, + 1133.0, + 357.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1143.0, + 526.0, + 1143.0, + 526.0, + 1171.0, + 456.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1143.0, + 715.0, + 1143.0, + 715.0, + 1171.0, + 712.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 1143.0, + 1035.0, + 1143.0, + 1035.0, + 1171.0, + 966.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 1143.0, + 1288.0, + 1143.0, + 1288.0, + 1171.0, + 1218.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1164.0, + 373.0, + 1164.0, + 373.0, + 1188.0, + 323.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1179.0, + 329.0, + 1179.0, + 329.0, + 1327.0, + 302.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1194.0, + 373.0, + 1194.0, + 373.0, + 1220.0, + 323.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1227.0, + 372.0, + 1227.0, + 372.0, + 1248.0, + 332.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1257.0, + 372.0, + 1257.0, + 372.0, + 1279.0, + 332.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1289.0, + 371.0, + 1289.0, + 371.0, + 1311.0, + 332.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1322.0, + 371.0, + 1322.0, + 371.0, + 1338.0, + 356.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1347.0, + 394.0, + 1347.0, + 394.0, + 1358.0, + 383.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1346.0, + 437.0, + 1346.0, + 437.0, + 1361.0, + 421.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1346.0, + 480.0, + 1346.0, + 480.0, + 1361.0, + 464.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1345.0, + 523.0, + 1345.0, + 523.0, + 1361.0, + 505.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1347.0, + 561.0, + 1347.0, + 561.0, + 1358.0, + 551.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1344.0, + 608.0, + 1344.0, + 608.0, + 1362.0, + 588.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1345.0, + 650.0, + 1345.0, + 650.0, + 1361.0, + 634.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1346.0, + 690.0, + 1346.0, + 690.0, + 1361.0, + 675.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 1346.0, + 733.0, + 1346.0, + 733.0, + 1361.0, + 717.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1345.0, + 775.0, + 1345.0, + 775.0, + 1361.0, + 759.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1347.0, + 815.0, + 1347.0, + 815.0, + 1358.0, + 803.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1342.0, + 862.0, + 1342.0, + 862.0, + 1362.0, + 840.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1344.0, + 902.0, + 1344.0, + 902.0, + 1361.0, + 888.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1346.0, + 945.0, + 1346.0, + 945.0, + 1361.0, + 929.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1344.0, + 988.0, + 1344.0, + 988.0, + 1363.0, + 969.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1342.0, + 1031.0, + 1342.0, + 1031.0, + 1363.0, + 1011.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1346.0, + 1070.0, + 1346.0, + 1070.0, + 1361.0, + 1054.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1344.0, + 1116.0, + 1344.0, + 1116.0, + 1362.0, + 1095.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1141.0, + 1345.0, + 1157.0, + 1345.0, + 1157.0, + 1361.0, + 1141.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1346.0, + 1198.0, + 1346.0, + 1198.0, + 1361.0, + 1182.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1345.0, + 1240.0, + 1345.0, + 1240.0, + 1361.0, + 1223.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1345.0, + 1283.0, + 1345.0, + 1283.0, + 1361.0, + 1266.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1346.0, + 1324.0, + 1346.0, + 1324.0, + 1361.0, + 1308.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1344.0, + 1369.0, + 1344.0, + 1369.0, + 1362.0, + 1348.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1357.0, + 613.0, + 1357.0, + 613.0, + 1379.0, + 579.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1357.0, + 867.0, + 1357.0, + 867.0, + 1379.0, + 834.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1356.0, + 1120.0, + 1356.0, + 1120.0, + 1379.0, + 1086.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1356.0, + 1374.0, + 1356.0, + 1374.0, + 1379.0, + 1340.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1072.5, + 600.0, + 1072.5, + 600.0, + 1115.5, + 386.0, + 1115.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1286.0, + 1110.0, + 1286.0, + 1110.0, + 1325.5, + 908.0, + 1325.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1276.0, + 1362.0, + 1276.0, + 1362.0, + 1319.0, + 1145.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1585.0, + 519.0, + 1585.0, + 519.0, + 1610.0, + 453.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1585.0, + 776.0, + 1585.0, + 776.0, + 1610.0, + 709.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1585.0, + 1032.0, + 1585.0, + 1032.0, + 1610.0, + 964.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1585.0, + 1287.0, + 1585.0, + 1287.0, + 1610.0, + 1221.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1609.0, + 364.0, + 1609.0, + 364.0, + 1630.0, + 324.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1620.0, + 328.0, + 1620.0, + 328.0, + 1768.0, + 301.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1660.0, + 364.0, + 1660.0, + 364.0, + 1681.0, + 326.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1711.0, + 364.0, + 1711.0, + 364.0, + 1732.0, + 326.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1765.0, + 361.0, + 1765.0, + 361.0, + 1779.0, + 351.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1791.0, + 518.0, + 1791.0, + 518.0, + 1812.0, + 453.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1792.0, + 774.0, + 1792.0, + 774.0, + 1810.0, + 708.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1791.0, + 1029.0, + 1791.0, + 1029.0, + 1812.0, + 964.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1790.0, + 1287.0, + 1790.0, + 1287.0, + 1814.0, + 1221.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1823.0, + 330.0, + 1823.0, + 330.0, + 1971.0, + 303.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1824.0, + 364.0, + 1824.0, + 364.0, + 1845.0, + 322.0, + 1845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1870.0, + 364.0, + 1870.0, + 364.0, + 1891.0, + 324.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 1884.0, + 1058.0, + 1884.0, + 1058.0, + 1893.0, + 1038.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1918.0, + 364.0, + 1918.0, + 364.0, + 1939.0, + 326.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1928.0, + 1262.0, + 1928.0, + 1262.0, + 1937.0, + 1235.0, + 1937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1970.0, + 361.0, + 1970.0, + 361.0, + 1982.0, + 351.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1992.0, + 386.0, + 1992.0, + 386.0, + 2004.0, + 376.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1992.0, + 431.0, + 1992.0, + 431.0, + 2005.0, + 415.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1990.0, + 474.0, + 1990.0, + 474.0, + 2006.0, + 458.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1990.0, + 516.0, + 1990.0, + 516.0, + 2006.0, + 501.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1990.0, + 557.0, + 1990.0, + 557.0, + 2006.0, + 543.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1990.0, + 600.0, + 1990.0, + 600.0, + 2006.0, + 584.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1990.0, + 644.0, + 1990.0, + 644.0, + 2005.0, + 629.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1990.0, + 686.0, + 1990.0, + 686.0, + 2006.0, + 670.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1992.0, + 729.0, + 1992.0, + 729.0, + 2006.0, + 713.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1990.0, + 772.0, + 1990.0, + 772.0, + 2006.0, + 755.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1992.0, + 814.0, + 1992.0, + 814.0, + 2006.0, + 798.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1989.0, + 859.0, + 1989.0, + 859.0, + 2008.0, + 838.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1989.0, + 904.0, + 1989.0, + 904.0, + 2008.0, + 882.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1992.0, + 944.0, + 1992.0, + 944.0, + 2006.0, + 925.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 1992.0, + 987.0, + 1992.0, + 987.0, + 2006.0, + 967.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1990.0, + 1028.0, + 1990.0, + 1028.0, + 2006.0, + 1011.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1993.0, + 1067.0, + 1993.0, + 1067.0, + 2004.0, + 1055.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1990.0, + 1113.0, + 1990.0, + 1113.0, + 2006.0, + 1096.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1990.0, + 1158.0, + 1990.0, + 1158.0, + 2005.0, + 1140.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1992.0, + 1199.0, + 1992.0, + 1199.0, + 2006.0, + 1180.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1992.0, + 1240.0, + 1992.0, + 1240.0, + 2006.0, + 1224.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1990.0, + 1283.0, + 1990.0, + 1283.0, + 2005.0, + 1267.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1993.0, + 1325.0, + 1993.0, + 1325.0, + 2003.0, + 1310.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 1990.0, + 1368.0, + 1990.0, + 1368.0, + 2006.0, + 1353.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 2004.0, + 605.0, + 2004.0, + 605.0, + 2022.0, + 576.0, + 2022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2004.0, + 861.0, + 2004.0, + 861.0, + 2022.0, + 832.0, + 2022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 2004.0, + 1116.0, + 2004.0, + 1116.0, + 2022.0, + 1087.0, + 2022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 2005.0, + 1372.0, + 2005.0, + 1372.0, + 2022.0, + 1343.0, + 2022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.75, + 1730.5, + 1263.75, + 1730.5, + 1263.75, + 1746.5, + 1201.75, + 1746.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.75, + 1933.5, + 1096.75, + 1933.5, + 1096.75, + 1943.5, + 1077.75, + 1943.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1933.0, + 1211.0, + 1933.0, + 1211.0, + 1950.0, + 1169.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1930.5, + 1225.0, + 1930.5, + 1225.0, + 1939.5, + 1203.0, + 1939.5 + ], + "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, + 1413.0, + 479.0, + 1413.0, + 479.0, + 1454.0, + 294.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 509.0, + 772.0, + 509.0, + 814.0, + 293.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 772.0, + 509.0, + 772.0, + 509.0, + 814.0, + 293.0, + 814.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 297, + 1581, + 1372, + 1581, + 1372, + 2027, + 297, + 2027 + ], + "score": 0.963 + }, + { + "category_id": 3, + "poly": [ + 297, + 964, + 1374, + 964, + 1374, + 1419, + 297, + 1419 + ], + "score": 0.962 + }, + { + "category_id": 3, + "poly": [ + 297, + 355, + 1374, + 355, + 1374, + 809, + 297, + 809 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 858, + 75, + 858, + 105, + 297, + 105 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.791 + }, + { + "category_id": 0, + "poly": [ + 297, + 842, + 540, + 842, + 540, + 873, + 297, + 873 + ], + "score": 0.58 + }, + { + "category_id": 0, + "poly": [ + 298, + 1454, + 508, + 1454, + 508, + 1485, + 298, + 1485 + ], + "score": 0.542 + }, + { + "category_id": 0, + "poly": [ + 297, + 230, + 523, + 230, + 523, + 260, + 297, + 260 + ], + "score": 0.507 + }, + { + "category_id": 4, + "poly": [ + 298, + 1454, + 508, + 1454, + 508, + 1485, + 298, + 1485 + ], + "score": 0.436 + }, + { + "category_id": 4, + "poly": [ + 297, + 842, + 540, + 842, + 540, + 873, + 297, + 873 + ], + "score": 0.385 + }, + { + "category_id": 13, + "poly": [ + 710, + 1181, + 772, + 1181, + 772, + 1203, + 710, + 1203 + ], + "score": 0.36, + "latex": "W = 0 . 7" + }, + { + "category_id": 13, + "poly": [ + 716, + 1791, + 777, + 1791, + 777, + 1813, + 716, + 1813 + ], + "score": 0.3, + "latex": "w = 0 . 7" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1181, + 1284, + 1181, + 1284, + 1203, + 1222, + 1203 + ], + "score": 0.29, + "latex": "w = 0 . 9" + }, + { + "category_id": 13, + "poly": [ + 966, + 1181, + 1029, + 1181, + 1029, + 1203, + 966, + 1203 + ], + "score": 0.26, + "latex": "W = 0 . 8" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 1588.0, + 525.0, + 1588.0, + 525.0, + 1613.0, + 460.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1588.0, + 779.0, + 1588.0, + 779.0, + 1613.0, + 713.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1588.0, + 1032.0, + 1588.0, + 1032.0, + 1613.0, + 965.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1588.0, + 1287.0, + 1588.0, + 1287.0, + 1613.0, + 1220.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1622.0, + 329.0, + 1622.0, + 329.0, + 1770.0, + 302.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1637.0, + 369.0, + 1637.0, + 369.0, + 1654.0, + 327.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1677.0, + 371.0, + 1677.0, + 371.0, + 1698.0, + 325.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1678.0, + 458.0, + 1678.0, + 458.0, + 1726.0, + 418.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1720.0, + 371.0, + 1720.0, + 371.0, + 1742.0, + 331.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1767.0, + 368.0, + 1767.0, + 368.0, + 1778.0, + 357.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 1791.0, + 525.0, + 1791.0, + 525.0, + 1812.0, + 458.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 1793.0, + 1033.0, + 1793.0, + 1033.0, + 1814.0, + 968.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1791.0, + 1286.0, + 1791.0, + 1286.0, + 1815.0, + 1221.0, + 1815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1825.0, + 329.0, + 1825.0, + 329.0, + 1971.0, + 302.0, + 1971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1834.0, + 371.0, + 1834.0, + 371.0, + 1855.0, + 325.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1880.0, + 369.0, + 1880.0, + 369.0, + 1897.0, + 327.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1921.0, + 371.0, + 1921.0, + 371.0, + 1942.0, + 331.0, + 1942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1971.0, + 367.0, + 1971.0, + 367.0, + 1982.0, + 358.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1992.0, + 394.0, + 1992.0, + 394.0, + 2004.0, + 384.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1993.0, + 435.0, + 1993.0, + 435.0, + 2004.0, + 424.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1992.0, + 480.0, + 1992.0, + 480.0, + 2006.0, + 465.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1990.0, + 521.0, + 1990.0, + 521.0, + 2005.0, + 506.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1993.0, + 562.0, + 1993.0, + 562.0, + 2004.0, + 551.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1990.0, + 606.0, + 1990.0, + 606.0, + 2006.0, + 591.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 1990.0, + 650.0, + 1990.0, + 650.0, + 2005.0, + 634.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1992.0, + 691.0, + 1992.0, + 691.0, + 2005.0, + 675.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1992.0, + 733.0, + 1992.0, + 733.0, + 2006.0, + 718.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 1990.0, + 775.0, + 1990.0, + 775.0, + 2005.0, + 760.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1993.0, + 815.0, + 1993.0, + 815.0, + 2003.0, + 803.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1992.0, + 857.0, + 1992.0, + 857.0, + 2004.0, + 846.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 1990.0, + 903.0, + 1990.0, + 903.0, + 2005.0, + 887.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1994.0, + 942.0, + 1994.0, + 942.0, + 2003.0, + 930.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1993.0, + 985.0, + 1993.0, + 985.0, + 2005.0, + 974.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1990.0, + 1029.0, + 1990.0, + 1029.0, + 2006.0, + 1014.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1993.0, + 1068.0, + 1993.0, + 1068.0, + 2004.0, + 1057.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1990.0, + 1112.0, + 1990.0, + 1112.0, + 2005.0, + 1096.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1990.0, + 1156.0, + 1990.0, + 1156.0, + 2005.0, + 1140.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1185.0, + 1993.0, + 1197.0, + 1993.0, + 1197.0, + 2004.0, + 1185.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1993.0, + 1238.0, + 1993.0, + 1238.0, + 2004.0, + 1226.0, + 2004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1990.0, + 1282.0, + 1990.0, + 1282.0, + 2005.0, + 1268.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1993.0, + 1322.0, + 1993.0, + 1322.0, + 2003.0, + 1309.0, + 2003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1990.0, + 1366.0, + 1990.0, + 1366.0, + 2005.0, + 1351.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 2003.0, + 612.0, + 2003.0, + 612.0, + 2025.0, + 580.0, + 2025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 2004.0, + 864.0, + 2004.0, + 864.0, + 2022.0, + 835.0, + 2022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1087.0, + 2003.0, + 1120.0, + 2003.0, + 1120.0, + 2025.0, + 1087.0, + 2025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 2004.0, + 1372.0, + 2004.0, + 1372.0, + 2022.0, + 1342.0, + 2022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 976.0, + 518.0, + 976.0, + 518.0, + 1001.0, + 453.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 975.0, + 777.0, + 975.0, + 777.0, + 1003.0, + 708.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 979.0, + 1030.0, + 979.0, + 1030.0, + 1000.0, + 962.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1222.0, + 978.0, + 1285.0, + 978.0, + 1285.0, + 999.0, + 1222.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 1011.0, + 329.0, + 1011.0, + 329.0, + 1158.0, + 301.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1014.0, + 363.0, + 1014.0, + 363.0, + 1035.0, + 324.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1060.0, + 363.0, + 1060.0, + 363.0, + 1082.0, + 325.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1106.0, + 363.0, + 1106.0, + 363.0, + 1128.0, + 325.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1154.0, + 362.0, + 1154.0, + 362.0, + 1170.0, + 349.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1182.0, + 520.0, + 1182.0, + 520.0, + 1203.0, + 454.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1195.0, + 365.0, + 1195.0, + 365.0, + 1216.0, + 324.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 1212.0, + 331.0, + 1212.0, + 331.0, + 1363.0, + 302.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1235.0, + 363.0, + 1235.0, + 363.0, + 1257.0, + 324.0, + 1257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1276.0, + 363.0, + 1276.0, + 363.0, + 1297.0, + 324.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1315.0, + 363.0, + 1315.0, + 363.0, + 1336.0, + 325.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1358.0, + 362.0, + 1358.0, + 362.0, + 1374.0, + 349.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1382.0, + 387.0, + 1382.0, + 387.0, + 1395.0, + 376.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 1381.0, + 431.0, + 1381.0, + 431.0, + 1396.0, + 415.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1381.0, + 473.0, + 1381.0, + 473.0, + 1397.0, + 457.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1381.0, + 516.0, + 1381.0, + 516.0, + 1396.0, + 501.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1384.0, + 556.0, + 1384.0, + 556.0, + 1395.0, + 544.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1381.0, + 600.0, + 1381.0, + 600.0, + 1397.0, + 584.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1381.0, + 644.0, + 1381.0, + 644.0, + 1397.0, + 630.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1381.0, + 686.0, + 1381.0, + 686.0, + 1397.0, + 671.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1382.0, + 729.0, + 1382.0, + 729.0, + 1397.0, + 714.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1381.0, + 771.0, + 1381.0, + 771.0, + 1396.0, + 756.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 1384.0, + 811.0, + 1384.0, + 811.0, + 1395.0, + 800.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 1381.0, + 856.0, + 1381.0, + 856.0, + 1397.0, + 840.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1381.0, + 900.0, + 1381.0, + 900.0, + 1397.0, + 885.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 1381.0, + 942.0, + 1381.0, + 942.0, + 1397.0, + 926.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1381.0, + 985.0, + 1381.0, + 985.0, + 1397.0, + 969.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1381.0, + 1027.0, + 1381.0, + 1027.0, + 1396.0, + 1011.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1381.0, + 1068.0, + 1381.0, + 1068.0, + 1396.0, + 1054.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1381.0, + 1111.0, + 1381.0, + 1111.0, + 1397.0, + 1097.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1381.0, + 1155.0, + 1381.0, + 1155.0, + 1396.0, + 1140.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 1382.0, + 1196.0, + 1382.0, + 1196.0, + 1397.0, + 1181.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1382.0, + 1240.0, + 1382.0, + 1240.0, + 1397.0, + 1225.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1381.0, + 1283.0, + 1381.0, + 1283.0, + 1396.0, + 1268.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1381.0, + 1325.0, + 1381.0, + 1325.0, + 1396.0, + 1309.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1381.0, + 1368.0, + 1381.0, + 1368.0, + 1397.0, + 1352.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 1393.0, + 607.0, + 1393.0, + 607.0, + 1416.0, + 574.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1393.0, + 862.0, + 1393.0, + 862.0, + 1416.0, + 829.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 1393.0, + 1119.0, + 1393.0, + 1119.0, + 1416.0, + 1086.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1395.0, + 1373.0, + 1395.0, + 1373.0, + 1413.0, + 1343.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 362.0, + 519.0, + 362.0, + 519.0, + 390.0, + 451.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 362.0, + 778.0, + 362.0, + 778.0, + 390.0, + 708.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 362.0, + 1032.0, + 362.0, + 1032.0, + 390.0, + 962.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1218.0, + 362.0, + 1289.0, + 362.0, + 1289.0, + 390.0, + 1218.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 399.0, + 329.0, + 399.0, + 329.0, + 547.0, + 301.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 413.0, + 365.0, + 413.0, + 365.0, + 435.0, + 324.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 455.0, + 363.0, + 455.0, + 363.0, + 477.0, + 324.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 497.0, + 363.0, + 497.0, + 363.0, + 519.0, + 324.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 541.0, + 363.0, + 541.0, + 363.0, + 559.0, + 348.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 568.0, + 520.0, + 568.0, + 520.0, + 590.0, + 451.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 568.0, + 775.0, + 568.0, + 775.0, + 590.0, + 706.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 568.0, + 1031.0, + 568.0, + 1031.0, + 590.0, + 963.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 567.0, + 1287.0, + 567.0, + 1287.0, + 592.0, + 1219.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 601.0, + 332.0, + 601.0, + 332.0, + 751.0, + 300.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 610.0, + 365.0, + 610.0, + 365.0, + 633.0, + 324.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 644.0, + 365.0, + 644.0, + 365.0, + 666.0, + 324.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 675.0, + 366.0, + 675.0, + 366.0, + 701.0, + 323.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 709.0, + 365.0, + 709.0, + 365.0, + 732.0, + 324.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 686.0, + 591.0, + 686.0, + 591.0, + 728.0, + 379.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 745.0, + 363.0, + 745.0, + 363.0, + 761.0, + 348.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 770.0, + 387.0, + 770.0, + 387.0, + 782.0, + 376.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 770.0, + 431.0, + 770.0, + 431.0, + 784.0, + 415.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 769.0, + 473.0, + 769.0, + 473.0, + 785.0, + 457.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 769.0, + 516.0, + 769.0, + 516.0, + 784.0, + 501.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 769.0, + 557.0, + 769.0, + 557.0, + 784.0, + 542.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 583.0, + 769.0, + 600.0, + 769.0, + 600.0, + 785.0, + 583.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 769.0, + 644.0, + 769.0, + 644.0, + 784.0, + 630.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 772.0, + 685.0, + 772.0, + 685.0, + 782.0, + 672.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 770.0, + 729.0, + 770.0, + 729.0, + 785.0, + 714.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 769.0, + 771.0, + 769.0, + 771.0, + 784.0, + 756.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 771.0, + 811.0, + 771.0, + 811.0, + 782.0, + 800.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 769.0, + 856.0, + 769.0, + 856.0, + 785.0, + 839.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 769.0, + 900.0, + 769.0, + 900.0, + 785.0, + 885.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 770.0, + 942.0, + 770.0, + 942.0, + 785.0, + 926.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 770.0, + 984.0, + 770.0, + 984.0, + 785.0, + 969.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 769.0, + 1026.0, + 769.0, + 1026.0, + 785.0, + 1011.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 771.0, + 1067.0, + 771.0, + 1067.0, + 782.0, + 1055.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 769.0, + 1113.0, + 769.0, + 1113.0, + 785.0, + 1095.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 769.0, + 1155.0, + 769.0, + 1155.0, + 784.0, + 1140.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 770.0, + 1197.0, + 770.0, + 1197.0, + 785.0, + 1181.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 769.0, + 1240.0, + 769.0, + 1240.0, + 785.0, + 1224.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 769.0, + 1283.0, + 769.0, + 1283.0, + 785.0, + 1266.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 769.0, + 1325.0, + 769.0, + 1325.0, + 784.0, + 1309.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 769.0, + 1368.0, + 769.0, + 1368.0, + 785.0, + 1352.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 781.0, + 607.0, + 781.0, + 607.0, + 803.0, + 574.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 781.0, + 862.0, + 781.0, + 862.0, + 803.0, + 829.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 781.0, + 1119.0, + 781.0, + 1119.0, + 803.0, + 1086.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 782.0, + 1373.0, + 782.0, + 1373.0, + 801.0, + 1343.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 465.0, + 1352.0, + 465.0, + 1352.0, + 517.0, + 1138.0, + 517.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": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 544.0, + 839.0, + 544.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 511.0, + 1449.0, + 511.0, + 1490.0, + 294.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 527.0, + 226.0, + 527.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 511.0, + 1449.0, + 511.0, + 1490.0, + 294.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 839.0, + 544.0, + 839.0, + 544.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 297, + 277, + 1375, + 277, + 1375, + 727, + 297, + 727 + ], + "score": 0.966 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 858, + 75, + 858, + 105, + 297, + 105 + ], + "score": 0.86 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 864, + 2088, + 864, + 2112, + 834, + 2112 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 297, + 231, + 524, + 231, + 524, + 261, + 297, + 261 + ], + "score": 0.429 + }, + { + "category_id": 4, + "poly": [ + 297, + 231, + 524, + 231, + 524, + 261, + 297, + 261 + ], + "score": 0.384 + }, + { + "category_id": 13, + "poly": [ + 1222, + 285, + 1283, + 285, + 1283, + 306, + 1222, + 306 + ], + "score": 0.32, + "latex": "w = 0 . 4" + }, + { + "category_id": 13, + "poly": [ + 1222, + 487, + 1284, + 487, + 1284, + 510, + 1222, + 510 + ], + "score": 0.3, + "latex": "w = 0 . 9" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 283.0, + 519.0, + 283.0, + 519.0, + 308.0, + 453.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 283.0, + 775.0, + 283.0, + 775.0, + 308.0, + 707.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 283.0, + 1031.0, + 283.0, + 1031.0, + 308.0, + 964.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 283.0, + 1288.0, + 283.0, + 1288.0, + 308.0, + 1284.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 318.0, + 329.0, + 318.0, + 329.0, + 465.0, + 301.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 322.0, + 364.0, + 322.0, + 364.0, + 342.0, + 324.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 356.0, + 364.0, + 356.0, + 364.0, + 377.0, + 326.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 390.0, + 364.0, + 390.0, + 364.0, + 411.0, + 326.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 425.0, + 364.0, + 425.0, + 364.0, + 447.0, + 332.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 460.0, + 364.0, + 460.0, + 364.0, + 476.0, + 349.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 486.0, + 521.0, + 486.0, + 521.0, + 511.0, + 453.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 485.0, + 777.0, + 485.0, + 777.0, + 513.0, + 707.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 485.0, + 1034.0, + 485.0, + 1034.0, + 513.0, + 962.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 487.0, + 1288.0, + 487.0, + 1288.0, + 512.0, + 1285.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 522.0, + 329.0, + 522.0, + 329.0, + 669.0, + 301.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 527.0, + 364.0, + 527.0, + 364.0, + 547.0, + 324.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 560.0, + 364.0, + 560.0, + 364.0, + 582.0, + 326.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 594.0, + 364.0, + 594.0, + 364.0, + 615.0, + 324.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 630.0, + 362.0, + 630.0, + 362.0, + 648.0, + 333.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 610.0, + 763.0, + 610.0, + 763.0, + 642.0, + 634.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 665.0, + 362.0, + 665.0, + 362.0, + 681.0, + 349.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 691.0, + 386.0, + 691.0, + 386.0, + 701.0, + 376.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 691.0, + 470.0, + 691.0, + 470.0, + 702.0, + 461.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 690.0, + 513.0, + 690.0, + 513.0, + 702.0, + 502.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 691.0, + 555.0, + 691.0, + 555.0, + 701.0, + 544.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 689.0, + 599.0, + 689.0, + 599.0, + 703.0, + 584.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 687.0, + 645.0, + 687.0, + 645.0, + 703.0, + 629.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 689.0, + 686.0, + 689.0, + 686.0, + 705.0, + 670.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 687.0, + 729.0, + 687.0, + 729.0, + 705.0, + 713.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 687.0, + 771.0, + 687.0, + 771.0, + 705.0, + 755.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 689.0, + 813.0, + 689.0, + 813.0, + 703.0, + 798.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 689.0, + 856.0, + 689.0, + 856.0, + 703.0, + 840.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 690.0, + 897.0, + 690.0, + 897.0, + 702.0, + 886.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 691.0, + 982.0, + 691.0, + 982.0, + 702.0, + 971.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 690.0, + 1025.0, + 690.0, + 1025.0, + 702.0, + 1014.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 691.0, + 1067.0, + 691.0, + 1067.0, + 701.0, + 1056.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 689.0, + 1112.0, + 689.0, + 1112.0, + 703.0, + 1095.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 689.0, + 1156.0, + 689.0, + 1156.0, + 703.0, + 1140.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 691.0, + 1196.0, + 691.0, + 1196.0, + 702.0, + 1183.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 689.0, + 1241.0, + 689.0, + 1241.0, + 703.0, + 1224.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 689.0, + 1283.0, + 689.0, + 1283.0, + 702.0, + 1267.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 691.0, + 1324.0, + 691.0, + 1324.0, + 701.0, + 1311.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 690.0, + 1365.0, + 690.0, + 1365.0, + 701.0, + 1354.0, + 701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 702.0, + 605.0, + 702.0, + 605.0, + 721.0, + 576.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 702.0, + 861.0, + 702.0, + 861.0, + 721.0, + 831.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 702.0, + 1117.0, + 702.0, + 1117.0, + 721.0, + 1086.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 702.0, + 1372.0, + 702.0, + 1372.0, + 721.0, + 1343.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.75, + 423.0, + 1084.75, + 423.0, + 1084.75, + 463.5, + 890.75, + 463.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 629.5, + 823.0, + 629.5, + 823.0, + 665.5, + 630.0, + 665.5 + ], + "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": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 528.0, + 228.0, + 528.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 528.0, + 228.0, + 528.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/Dx3x05MlFwj/Dx3x05MlFwj.md b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj.md new file mode 100644 index 0000000000000000000000000000000000000000..fbd5f5ac531253a73d25bb9cbb57e1f5eba9f07d --- /dev/null +++ b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj.md @@ -0,0 +1,495 @@ +# Represent Your Own Policies: Learning with Policy-extended Value Function Approximator + +Anonymous Author(s) +Affiliation +Address +email + +# Abstract + +1 We study Policy-extended Value Function Approximator (PeVFA) in Reinforce +2 ment Learning (RL), which extends conventional value function approximator +3 (VFA) to take as input not only the state (and action) but also an explicit policy +4 representation. Such an extension enables $\mathrm { P e V F A }$ to preserve values of multi +5 ple policies at the same time and brings an appealing characteristic, i.e., value +6 generalization among policies. We formally analyze the value generalization un +7 der Generalized Policy Iteration (GPI). From theoretical and empirical lens, we +8 show that generalized value estimates offered by PeVFA may have lower initial +9 approximation error to true values of successive policies, which is expected to +10 improve consecutive value approximation during GPI. Based on above clues, we +11 introduce a new form of GPI with PeVFA which leverages the value generalization +12 along policy improvement path. Moreover, we propose a representation learning +13 framework for RL policy, providing several approaches to learn effective policy em +14 beddings from policy network parameters or state-action pairs. In our experiments, +15 we evaluate the efficacy of value generalization offered by PeVFA and policy +16 representation learning in several OpenAI Gym continuous control tasks. For a +17 representative instance of algorithm implementation, Proximal Policy Optimization +18 (PPO) re-implemented under the paradigm of GPI with PeVFA achieves about $40 \%$ +19 performance improvement on its vanilla counterpart in most environments. + +# 20 1 Introduction + +21 Reinforcement Learning (RL) has been widely considered as a promising way to learn optimal +22 policies in many decision-making problems [35, 31, 53, 65, 47, 62, 16]. One fundamental element of +23 RL is value function which defines the long-term evaluation of a policy. With function approximation +24 (e.g., deep neural networks), a value function approximator (VFA) is able to approximate the values +25 of a policy under large and continuous state spaces. As commonly recognized, most RL algorithms +26 can be described as Generalized Policy Iteration (GPI) [55]. As illustrated on the left of Figure 1, +27 at each iteration the VFA is trained to approximate the true values of current policy (i.e., policy +28 evaluation), regarding which the policy is further improved (i.e., policy improvement). The value +29 function approximation error hinders the effectiveness of policy improvement and then the overall +30 optimality of GPI [5, 46]. Unfortunately, such errors are inevitable under function approximation. A +31 large number of samples are usually required to ensure high-quality value estimates, resulting in the +32 sample-inefficiency of deep RL algorithms. Therefore, this raises an urgent need for more efficient +33 value approximation methods [61, 4, 12, 25]. +34 An intuitive idea to improve the efficiency value approximation is to leverage the knowledge on +35 the values of previous encountered policies. However, a conventional VFA usually approximates +36 the values of one policy and values learned from old policies are over-written gradually during +37 the learning process. This means that the previously learned knowledge cannot be preserved and +38 utilized with one conventional VFA. Thus, such limitations prevent the potentials to leverage the +39 previous knowledge for future learning. In this paper, we study Policy-extended Value Function +40 Approximator (PeVFA), which additionally takes an explicit policy representation as input in contrast +41 to conventional VFA. Thanks to the policy representation input, PeVFA is able to approximate values +42 for multiple policies and induces value generalization among policies. We formally analyze the +43 generalization of approximate values among policies in a general form. From both theoretical and +44 empirical lens, we show that the generalized value estimates can be closer to the true values of +45 the successive policy, which can be beneficial to consecutive value approximation along the policy +46 improvement path, called local generalization. Based on above clues, we introduce a new form +47 of GPI with PeVFA (the right of Figure 1) that leverages the local generalization to improve the +48 efficiency of consecutive value approximation along the policy improvement path. +49 One key point of GPI with PeVFA is the representation of policy since it determines how PeVFA gen +50 eralizes the values. For this, we propose a framework to learn effective low-dimensional embedding +51 of RL policy. We use network parameters or state-action pairs as policy data and encode them into +52 low-dimensional embeddings; then the embeddings are trained to capture the effective information +53 through contrastive learning and policy recovery. Finally, we evaluate the efficacy of GPI with PeVFA +54 and our policy representations. In principle, GPI with PeVFA is general and can be implemented +55 in different ways. As a practical instance, we re-implement Proximal Policy Optimization (PPO) +56 with PeVFA and propose PPO-PeVFA algorithm. Our experimental results on several OpenAI Gym +57 continuous control tasks demonstrate the effectiveness of both value generalization offered by PeVFA +58 and learned policy representations, with an about $40 \%$ improvement in average returns achieved by +59 our best variants on standard PPO in most tasks. +60 We summarize our main contributions below. 1) We study the value generalization among policies +61 induced by PeVFA. From both theoretical and empirical aspects, we shed the light on the situations +62 where the generalization can be beneficial to the learning along policy improvement path. 2) We +63 propose a framework for policy representation learning. To our knowledge, we make the first attempt +64 to learn a low-dimensional embedding of over $1 0 \mathrm { k }$ network parameters for an RL policy. 3) We +65 introduce GPI with PeVFA that leverages the value generalization in a general form. Our experimental +66 results demonstrate the potential of PeVFA in deriving practical and more effective RL algorithms. + +![](images/38feb809737473fb7948d8361bed05d65eceb8e03420789b9e49c35c2b8d2206.jpg) +Figure 1: Generalized Policy Iteration (GPI) with function approximation. Left: GPI with conventional value function approximator $V _ { \phi }$ . Right: GPI with PeVFA $\mathbb { V } _ { \theta } ( \chi _ { \pi } )$ (Sec. 3) where extra generalization steps exist. The subscripts of policy $\pi$ and value function parameters $\phi , \theta$ denote the iteration number. The squiggle lines represent non-perfect approximation of true values. + +# 67 2 Related Work + +68 Extensions of Conventional Value Function. Sutton et al. [56] propose General Value Functions +69 (GVFs) as a general form of knowledge representation of rewards and arbitrary cumulants. Later, +70 conventional value functions are extended to take extra inputs for different purposes of generalization. +71 One notable work is Universal Value Function Approximator (UVFA) [45], which is proposed to +72 generalize values among different goals for goal-conditioned RL. UVFA is further developed in +73 [1, 37, 9] and influences the occurrence of other value function extensions in context-based Meta-RL +74 [43, 29], Hierarchical RL [64] and multiagent RL [19, 14] and etc. Most of the above works study +75 how to generalize the policy or value function among extrinsic factors, i.e., environments, tasks and +76 opponents; while we mainly study the value generalization among policies along policy improvement +77 path, an intrinsic learning process of the agent itself. +78 Policy Embedding and Representation. Although not well studied, representation (or embedding) +79 learning for RL policies is involved in a few works [18, 14, 3]. The most common way to learn a +80 policy representation is to extract from interaction experiences. As a representative, Grover et al. [14] +81 propose learning the representation of opponent policy from interaction trajectories with a generative +82 policy recovery loss and a discriminative triplet loss. These losses are later adopted in [64, 42]. +83 Another straightforward idea is to represent policy parameters. Network Fingerprint [17] is such a +84 differentiable representation that uses the concatenation of the vectors of action distribution outputted +85 by policy network on a set of probing states. The probing state set is co-optimized along with the +86 primary learning objective, which can be non-trivial especially when the dimensionality of the set is +87 high. Besides, some early attempts in learning low-dimensional embedding of policy parameters are +88 studies in Evolutionary Algorithms [13, 44], mainly with the help of VAE [23]. Our work introduce a +89 learning framework of policy representation including both above two perspectives. +90 PVN and PVFs. Recently, several works study the generalization among policy space. Harb et al. +91 [17] propose Policy Evaluation Network (PVN) to directly approximate the distribution of policy +92 $\pi$ ’s objective function $J ( \pi ) = \mathbb { E } _ { \rho _ { 0 } } [ v ^ { \pi } ( s _ { 0 } ) ]$ with initial state $s _ { 0 } \sim \rho _ { 0 }$ . PVN takes as input Network +93 Fingerprint (mentioned above) of policy network. After training on a pre-collected set of policies, a +94 random initialized policy can be optimized in a zero-shot manner with the policy gradients of PVN by +95 backpropagting through the differentiable policy input. We call such gradients GTPI for short below. +96 Similar ideas are later integrated with task-specific context learning in multi-task RL [42], leveraging +97 the generalization among policies and tasks for fast policy adaptation on new tasks. In PVN [17], +98 as an early attempt, the generalization among policies is studied with small policy network and +99 simple tasks; besides, the most regular online learning setting is not studied. Concurrent to our work, +100 Faccio and Schmidhuber [10] propose a class of Parameter-based Value Functions (PVFs) that take +101 vectorized policy parameters as inputs. Based on PVFs, new policy gradient algorithms are introduced +102 in the form of a combination of conventional policy gradients and GTPI (i.e., by backpropagating +103 through policy parameters in PVFs). Except for zero-shot policy optimization as conducted in PVN, +104 PVFs are also evaluated for online policy learning. Due to directly taking parameters as input, PVFs +105 suffer from the curse of dimensionality when the number of parameters is high. Besides, GTPI can +106 be non-trivial to rein since policy parameter space are complex and extrapolation generalization +107 error can be large when the value function is only trained on finite policies (usually much fewer than +108 state-action samples) thus further resulting in erroneous policy gradients. +109 Our work differs with PVFs from several aspects. First, we make use of learned policy representation +110 rather than policy network parameters. Second, we do not resort to GTPI for the policy update +111 in our algorithms but focus on utilizing value generalization for more efficient value estimation in +112 GPI. Furthermore, we shed the light on two important problems — how value generalization among +113 policies can happen formally and whether it is beneficial to learning or not — which are neglected in +114 in previous works from both theoretical and empirical lens. + +# 115 3 Policy-extended Value Function Approximator + +116 In this section, we propose Policy-extended Value Function Approximator (PeVFA), an extension +117 of conventional VFA that explicitly takes as input a policy representation. First, we introduce the +118 formulation (Sec. 3.1), then we study value generalization among policies theoretically (Sec. 3.2) +119 along with some empirical evidences (Sec. 3.3). Finally, we derive a new form of GPI (Sec. 3.4). + +# 3.1 Formulation + +121 Consider a Markov Decision Process (MDP) defined as $\langle S , \mathcal { A } , r , \mathcal { P } , \gamma \rangle$ where $s$ is the state space, $\mathcal { A }$ +122 is the action space, $r$ is the (bounded) reward function, $\mathcal { P }$ is the transition function and $\gamma \in [ 0 , 1 )$ is +123 the discount factor. A policy $\pi \in P ( { \cal A } ) ^ { | S | }$ defines the distribution over all actions for each state. The +124 goal of an RL agent is to find an optimal policy $\pi ^ { * }$ that maximizes the expected long-term discounted +125 126 return. The state-vafollowing the policy $\pi$ e function from a st $v ^ { \pi } ( s )$ $s$ $\begin{array} { r } { v ^ { \pi } ( s ) = \mathbb { E } _ { \pi } \left[ \sum _ { t = 0 } ^ { \infty } \bar { \gamma } ^ { t } r _ { t + 1 } \vert s _ { 0 } = s \right] } \end{array}$ ted return for where $r _ { t + 1 } = r ( s _ { t } , a _ { t } )$ +127 to denote the vectorized form of value function. +128 In a general form, we define policy-extended value function $\mathbb { V } : \mathcal { S } \times \Pi \mathbb { R }$ over state and policy +129 space: $\mathbb { V } ( s , \pi ) = v ^ { \pi } ( s )$ for all $s \in { \mathcal { S } }$ and $\pi \in \Pi$ . In this paper, we focus on $\mathbb { V } ( s , \pi )$ and policy +130 extended action-value function $\mathbb { Q } ( s , a , \pi )$ can be obtained similarly. We use $\mathbb { V } ( \pi )$ to denote the value +131 vector for all states in the following. The key point is that PeVFA $\mathbb { V }$ is able to preserve the values of +132 multiple policies. With function approximation, a $\mathrm { P e V F A }$ is expected to approximate the values of +133 policies among policy space, i.e., $\bar { \{ V ^ { \pi } \} } _ { \pi \in \Pi }$ and then enable value generalization among policies. +134 Formally, given a function $g : \Pi \mathcal { X } \subseteq \mathbb { R } ^ { n }$ that maps any policy $\pi$ to an $n$ -dimensional represen +135 tation $\chi _ { \pi } \bar { = } g ( \pi ) \in \mathcal X$ , a PeVFA $\mathbb { V } _ { \theta }$ with parameter $\theta \in \Theta$ is to minimize the approximation error +136 over all possible states and policies generally: + +![](images/433544a995e880196676e7310d94036d703d7b2b79a7871aedbf041ab7690f07.jpg) +Figure 2: Illustrations of value generalization among policies of $\mathrm { P e V F A }$ . Each circle denotes value function (estimate) of a policy. (a) Global Generalization: values learned from known policies can be generalized to unknown policies. (b) Local Generalization: values of previous policies (e.g., $\pi _ { t }$ ) can be generalized to successive policies (e.g., $\pi _ { t + 1 }$ ) along policy improvement path. + +$$ +F _ { \mu , p , \rho } ( \theta , g , \Pi ) = \sum _ { \pi \in \Pi } \mu ( \pi ) \| \mathbb { V } _ { \theta } ( \chi _ { \pi } ) - V ^ { \pi } \| _ { p , \rho } , +$$ + +137 where $\mu , \rho$ are distributions over policies and states respectively, $\begin{array} { r } { \| f \| _ { p , \rho } = ( \int _ { s } \rho ( \mathrm { d } s ) | f ( s ) | ^ { p } ) ^ { 1 / p } } \end{array}$ is +138 $\rho$ -weighted $L _ { p }$ -norm [26, 46] for any $f : S \mathbb { R }$ . The policy distribution $\mu$ of interest depends on +139 the scenario where value generalization is considered. As illustrated in Figure 2, we provide two +140 value generalization scenarios. In the global generalization scenario, a uniform distribution over +141 known policy set may be considered with a general purpose of value generalization for unknown +142 policies. For the specific local generalization scenario along policy improvement path during GPI, a +143 sophisticated distribution that adaptively weights recent policies more during the learning process +144 may be more suitable in this case. In the following, we care more about the local generalization +145 scenario and use uniform state distribution $\rho$ and $L _ { 2 }$ -norm for demonstration. The subscripts are +146 omitted and we use $\| \cdot \|$ for clarity. + +# 3.2 Theoretical Analysis on Value Generalization among Policies + +148 In this part, we theoretically analyze the value generalization among policies induced by PeVFA. We +149 start from a two-policy case and study whether the value approximation learned for one policy can be +150 generalized to the other one. Later, we study the local generalization scenario (Figure $2 ( \mathbf { b } ) ,$ ) and shed +151 the light on the superiority of $\mathrm { P e V F A }$ for GPI. All the proofs are provided in Appendix A. +152 For the convenience of demonstration, we use an identical policy representation function, i.e., $\chi _ { \pi } = \pi$ , +153 and define the approximation loss of PeVFA $\mathbb { V } _ { \theta }$ for any policy $\pi \in \Pi$ as $f _ { \theta } ( \pi ) = \| \mathbb { V } _ { \theta } ( \pi ) - V ^ { \bar { \pi } } \| \ge 0$ . +154 We use the following definitions for a formal description of value approximation process with PeVFA +155 and local property of loss function $f _ { \theta }$ that influences generalization [40, 63] respectively: +156 Definition 1 ( $\pi$ -Value Approximation) We define a value approximation process $\mathcal { P } _ { \pi } : \Theta \to \Theta$ +157 with PeVFA as a $\gamma$ -contraction mapping on the approximation loss for policy $\pi$ , i.e., for $\hat { \theta } = \mathcal { P } _ { \pi } ( \theta )$ , +158 we have $f _ { \hat { \theta } } ( \pi ) \leq \gamma f _ { \theta } ( \pi )$ where $\gamma \in [ 0 , 1 )$ . + +Definition 2 ( $L$ -Continuity) We call $f _ { \theta }$ is $L$ -continuous at policy $\pi$ if fθ is Lipschitz continuous at π with a constant $L \in [ 0 , \infty )$ , i.e., $| f _ { \theta } ( { \boldsymbol \pi } ) - f _ { \theta } ( { \boldsymbol \pi } ^ { \prime } ) | \leq L \cdot d ( { \boldsymbol \pi } , { \boldsymbol \pi } ^ { \prime } )$ for $\pi ^ { \prime } \in \Pi$ with some distance metric d for policy space $\Pi$ . + +162 With Definition 1, the consecutive value approximation for the policies along policy improvement path +163 during GPI can be described as: $\theta _ { - 1 } \xrightarrow { \mathcal { P } _ { \pi _ { 0 } } } \theta _ { 0 } \xrightarrow { \mathcal { P } _ { \pi _ { 1 } } } \theta _ { 1 } \xrightarrow { \mathcal { P } _ { \pi _ { 2 } } } \dots ,$ , as the green arrows illustrated in +164 Figure 1. One may refer to Appendix A.1 for a discussion on the rationality of the two definitions. +65 To start our analysis, we first study the generalized value approximation loss in a two-policy case +166 where only the value of policy $\pi _ { 1 }$ is approximated by PeVFA as below: + +Lemma 1 For 67 $\theta \xrightarrow { \mathcal { P } _ { \pi _ { 1 } } } \hat { \theta } .$ , if $f _ { \hat { \theta } }$ is $\hat { L }$ -continuous at $\pi _ { 1 }$ and $f _ { \theta } ( \pi _ { 1 } ) \le f _ { \theta } ( \pi _ { 2 } )$ , we have: $f _ { \hat { \theta } } ( \pi _ { 2 } ) \leq$ 68 $\gamma f _ { \theta } ( \pi _ { 2 } ) + \mathcal { M } ( \pi _ { 1 } , \pi _ { 2 } , \hat { L } )$ , where $\mathcal { M } ( \pi _ { 1 } , \pi _ { 2 } , \hat { L } ) = \hat { L } \cdot d ( \pi _ { 1 } , \pi _ { 2 } )$ . + +Corollary 1 Pπ1 is γg-contraction (γg ∈ [0, 1)) for π2 when fθ(π2) > Lˆ·d(π1,π2)1−γ169 . + +170 Lemma 1 shows that the post- $\mathcal { P } _ { \pi _ { 1 } }$ approximation loss for $\pi _ { 2 }$ is upper bounded by a generalized +171 contraction of prior loss plus a locality margin term $\mathcal { M }$ which is related to $\pi _ { 1 } , \pi _ { 2 }$ and the locality +172 property of $f _ { \hat { \theta } }$ . In general, the form of $\mathcal { M }$ depends on the local property assumed. Some higher +173 order variants are provided in Appendix A.2. For a step further, Corollary 1 reveals the condition +174 where a contraction on value approximation loss for $\pi _ { 2 }$ is achieved when $\mathrm { P e V F A }$ is only trained to +175 approximate the values of $\pi _ { 1 }$ . Concretely, such a condition is apt to reach with tighter contraction for +176 policy $\pi _ { 1 }$ is, closer two policies, or smoother approximation loss function $f _ { \hat { \theta } }$ . +177 Then we consider the local generalization scenario as illustrated in Figure 2(b). For any iteration $t$ +178 of GPI, the values of current policy $\pi _ { t }$ are approximated by $\mathrm { P e V F A }$ , followed by a improved policy +179 $\pi _ { t + 1 }$ whose values are to be approximated in the next iteration. The value generalization from each +180 $\pi _ { t }$ and $\pi _ { t + 1 }$ can be similarly considered as the two-policy case. In addition to the former results, we +181 shed the light on the value generalization loss of PeVFA along policy improvement path below: + +Lemma 2 For $\theta _ { - 1 } \xrightarrow { \mathcal { P } _ { \pi _ { 0 } } } \theta _ { 0 } \xrightarrow { \mathcal { P } _ { \pi _ { 1 } } } \theta _ { 1 } \xrightarrow { \mathcal { P } _ { \pi _ { 2 } } } . . .$ Pπ2 −−−→ . . . with γt for each Pπt , if fθt is Lˆ t-continuous at πt for any $t \geq 0$ , we have $f _ { \theta _ { t } } ( \pi _ { t + 1 } ) \leq \gamma _ { t } f _ { \theta _ { t - 1 } } ( \pi _ { t } ) + \mathcal { M } _ { t }$ , where $\mathcal { M } _ { t } = L _ { t } \cdot d ( \pi _ { t } , \pi _ { t + 1 } )$ . + +Corollary 2 By induction, we have 84 $\begin{array} { r } { f _ { \theta _ { t } } ( \pi _ { t + 1 } ) \leq \prod _ { i = 0 } ^ { t } \gamma _ { t } f _ { \theta _ { - 1 } } ( \pi _ { 0 } ) + \sum _ { i = 0 } ^ { t - 1 } \prod _ { j = i + 1 } ^ { t } \gamma _ { j } \mathcal M _ { i } + \mathcal M _ { t } . } \end{array}$ + +185 The above results indicate that the value generalization loss can be recursively bounded and has +186 a upper bound formed by a repeated contraction on initial loss plus the accumulation of locality +187 margins induced from each local generalization. An infinity-case discussion for Corollary 2 is in +188 Appendix A.5. The next question is whether $\mathrm { P e V F A }$ with value generalization among policies is +189 preferable to the conventional VFA. To this end, we introduce a desirable condition which reveals the +190 superiority of PeVFA during consecutive value approximation along the policy improvement path: + +Theorem 1 During91 $\begin{array} { r l } & { \theta _ { - 1 } \xrightarrow { \mathcal { P } _ { \pi _ { 0 } } } \theta _ { 0 } \xrightarrow { \mathcal { P } _ { \pi _ { 1 } } } \theta _ { 1 } \xrightarrow { \mathcal { P } _ { \pi _ { 2 } } } \dots , f o r a n y t \ge 0 , \ i f f _ { \theta _ { t } } ( \pi _ { t } ) + f _ { \theta _ { t } } ( \pi _ { t + 1 } ) \le } \\ & { n f _ { \theta _ { t } } ( \pi _ { t + 1 } ) \le \| \mathbb { V } _ { \theta _ { t } } ( \pi _ { t } ) - V ^ { \pi _ { t + 1 } } \| . } \end{array}$ 92 $\| V ^ { \pi _ { t } } - V ^ { \pi _ { t + 1 } } \|$ , the + +193 Theorem 1 shows that the generalized value estimates $\mathbb { V } _ { \boldsymbol { \theta } _ { t } } \big ( \pi _ { t + 1 } \big )$ can be closer to the true values of +194 policy $\pi _ { t + 1 }$ than $\mathbb { V } _ { \theta _ { t } } ( \pi _ { t } )$ . Note that $\mathbb { V } _ { \theta _ { t } } ( \pi _ { t } )$ is the value approximation for $\pi _ { t }$ which is equivalent +195 to the counterpart $V _ { \phi _ { t } }$ for a conventional VFA as value generalization among policies does not +196 exist. To consecutive value approximation along policy improvement path, this means that the value +197 generalization of $\mathrm { P e V F A }$ has the potential to offer closer start points at each iteration. If such closer +198 start points can often exist, we expect $\mathrm { P e V F A }$ to be preferable to conventional VFA since value +199 approximation can be more efficient with $\mathrm { P e V F A }$ and it in turn facilitates the overall GPI process. +200 However, the condition in Theorem 1 is not necessarily met in practice. Intuitively, it depends on the +201 locality margins that may be related to function family and optimization method of PeVFA, as well +202 as the scale of policy improvement. We leave these further theoretical investigations for future work. +203 Instead, we empirically examine the existence of such desirable generalizations in the following. + +# 3.3 Empirical Evidences + +We empirically investigate the value generalization of PeVFA with didactic environments. In this section, PeVFA $\mathbb { V } _ { \theta }$ is parameterized by neural network and we use the concatenation of all weights and biases of the policy network as a straightforward representation $\chi _ { \pi }$ for each policy, called Raw Policy Representation $( R P R )$ . Experimental details are provided in Appendix B. + +209 First, we demonstrate the global generalization (illustrated in Figure 2(a)) in a continuous 2D Point +210 Walker environment. We build the policy set $\Pi$ with synthetic policies, each of which is a randomly +211 initialized 2-layer tanh-activated neural network with 2 units for each layer. The size of $\Pi$ is $2 0 \mathrm { k }$ and +212 the behavioral diversity of synthetic policies is verified (see Figure 7(b) in Appendix). We divide $\Pi$ +213 into training set (i.e., known policies $\Pi _ { 0 }$ ) and testing set (i.e., unseen policies $\Pi _ { 1 }$ ). We rollout the + +![](images/ca62a1096edd30ab0ac3480db0f68aa5589accbab003cbc10927be11f5143231.jpg) +Figure 3: Empirical evidences of two kinds of generalization of $\mathrm { P e V F A }$ . (a) Global generalization: $\mathrm { P e V F A }$ shows comparable value estimation performance on testing policy set (red) after learning on training policy set (blue). (b) Local generalization: PeVFA $( \mathbb { V } _ { \theta } ( \chi _ { \pi } ) )$ shows lower losses than conventional VFA $( V _ { \phi } )$ before and after the value approximation training for successive policies along policy improvement path. In (b), the left axis is for approximation loss (lower is better) and the right axis is for average return as a reference of the policy learning process (green curve). + +policies in the environment to collect trajectories, based on which we perform value approximation training. Our results show that a PeVFA trained on $\Pi _ { 0 }$ achieves reasonable generalization performance when evaluating on $\Pi _ { 1 }$ . The average losses on training and testing set are 1.782 and 2.071 over 6 trials. Figure 3(a) shows the value predictions for policies from training and testing set (100 for each). + +Next, we investigate the value generalization along policy improvement path, i.e., local generalization as in Figure 2(b). We use a 2-layer 8-unit policy network trained by standard PPO algorithm [50] in MuJoCo continuous control tasks. Parallel to the conventional value network $V _ { \phi } ( s )$ (i.e., VFA) in PPO, we set a $\mathrm { P e V F A }$ network $\mathbb { V } _ { \theta } ( s , \chi _ { \pi } )$ as a reference for the comparison on value approximation loss. Compared to $V _ { \phi }$ , PeVFA $\mathbb { V } _ { \theta } ( s , \chi _ { \pi } )$ takes RPR as input and approximates the values of all historical policies $( \{ \pi _ { i } \} _ { i = 0 } ^ { t } )$ in addition. We compare the value approximation losses of $V _ { \phi }$ (red) and $\mathbb { V } _ { \theta }$ (blue) before (solid) and after (dashed) updating with on-policy samples collected by the improved policy $\pi _ { t + 1 }$ at each iteration. Figure 3(b) shows the results for InvertedPendulum-v1 and Ant-v1. Results for all 7 MuJoCo tasks can be found in Appendix B.2. By comparing approximation losses before updating (red and blue solid curves), we can observe that the approximation loss of $\mathbb { V } _ { \theta _ { t } } ( \chi _ { \pi _ { t + 1 } } )$ is almost consistently lower than that of $V _ { \phi _ { t } }$ . This means that the generalized value estimates offered by PeVFA are usually closer to the true values of $\pi _ { t + 1 }$ , demonstrating the consequence arrived in Theorem 1. For the dashed curves, it shows that PeVFA $\mathbb { V } _ { \theta _ { t + 1 } } ( \chi _ { \pi _ { t + 1 } } )$ can achieve lower approximation loss for $\pi _ { t + 1 }$ than conventional VFA $V _ { \phi _ { t + 1 } }$ after the same number of training with the same on-policy samples. The empirical evidence above indicates that $\mathrm { P e V F A }$ can be preferable to the conventional VFA for consecutive value approximation. The generalized value estimates along policy improvement path have the potential to expedite the process of GPI. + +# 3.4 Reinforcement Learning with PeVFA + +Based on the results above, we expect to leverage the value generalization of $\mathrm { P e V F A }$ to facilitate RL. In Algorithm 1, we propose a general description of RL algorithm under the paradigm of GPI with PeVFA. For each iteration, the interaction experiences of current policy and the policy + +# Algorithm 1 RL under the paradigm of GPI with PeVFA $( \mathbb { V } ( s , \chi _ { \pi } )$ is used for demonstration) + +1: Initialize policy $\pi _ { 0 }$ , policy representation model $g , \mathrm { P e V F A } \ \mathbb { V } _ { - 1 }$ and experience buffer $\mathcal { D }$ +2: 3: for iteration Rollout $t = 0 , 1 , \ldots$ $\pi _ { t }$ dohe environment and obtain $k$ trajectories $\mathcal { T } _ { t } = \{ \tau _ { i } \} _ { i = 0 } ^ { k }$ +4: Get representation $\chi _ { \pi _ { t } } = g ( \pi )$ for policy $\pi _ { t }$ and add experiences $( \chi _ { \pi _ { t } } , \tau _ { t } )$ in buffer $\mathcal { D }$ +5: if $t \%$ $M = 0$ then +6: Update PeVFA $\mathbb { V } _ { t - 1 } ( s , \chi _ { \pi _ { i } } )$ for previous policies with data $\{ ( \chi _ { \pi _ { i } } , T _ { i } ) \} _ { i = 0 } ^ { t - 1 }$ +7: Update policy representation model $g$ , e.g., with approaches provided in Sec. 4 +8: end if +9: Update PeVFA $\mathbb { V } _ { t - 1 } ( s , \chi _ { \pi _ { t } } )$ for current policy $\chi _ { \pi _ { t } }$ and set $\mathbb { V } _ { t } \longleftarrow \mathbb { V } _ { t - 1 }$ +10: Update $\pi _ { t }$ w.r.t $\mathbb { V } _ { t } ( s , \chi _ { \pi _ { t } } )$ by policy improvement algorithm and set $\pi _ { t + 1 } \longleftarrow \pi _ { t }$ +11: end for +239 representation are stored in a buffer (line 3-4). At an interval of $M$ iterations, PeVFA is trained via +240 value approximation for previous policies with the stored data and the policy representation model +241 is updated according to the method used (line 5-8). This part is unique to PeVFA for preservation +242 and generalization of knowledge of historical policies. Next, value approximation for current policy +243 is performed with $\mathrm { P e V F A }$ (line 9). A key difference here is that the generalized value estimates +244 (i.e., $\mathbb { V } _ { t - 1 } ( \chi _ { \pi _ { t } } ) )$ are used as start points. Afterwards, a successive policy is obtained from typical +245 policy improvement (line 10). Algorithm 1 can be implemented in different ways and we propose an +246 instance implemented based on PPO [50] in our experiments later. In the next section, we introduce +247 our methods for policy representation learning. + +![](images/16592e2f21ae4564e2ea2f7b946434c197861a704746ab2783434fc39908bdb1.jpg) +Figure 4: The framework of policy representation training. Policy network parameters used for OPR or policy state-action pairs used for SPR are fed into policy encoder with permutation-invariant (PI) transformations followed by an MLP, producing the representation $\chi _ { \pi }$ . Afterwards, $\chi _ { \pi }$ can be trained by gradients from the value approximation loss of $\mathrm { P e V F A }$ (i.e., End-to-End), as well as (optionally) the auxiliary loss of policy recovery or the contrastive learning (i.e., InfoNCE) loss. + +# 248 4 Policy Representation Learning + +To derive practical deep RL algorithms, one key point is policy representation, i.e., a low-dimensional embedding of RL policy. Intuitively, policy representation influences the approximation and generalization of PeVFA. Thus, it is of interest to find an effective policy representation based on which the superiority of PeVFA can be leveraged to improve RL algorithms. To our knowledge, policy representation is not well studied and it remains unclear on how to obtain an effective representation for an RL policy in a general case in practice. In previous section, we demonstrate the effectiveness of using policy parameters as a naive representation when policy network is small, called RPR. However, a usual policy network may have large number of parameters, thus making it inefficient and even irrational to use RPR for approximation and generalization [17, 10]. More generally, policy parameters of the policy we wish to represent may not be accessible. + +259 To this end, we propose a general framework of policy representation learning as illustrated in Figure +260 4. The first thing to consider is data source, i.e., from which we can extract the information for an +261 effective policy representation. Recall that the policy is a distribution over state and action space +262 of high dimensionality. The features of such a distribution is not directly available. Therefore, we +263 consider two kinds of data source below that indirectly contains the information of policies: 1) Surface +264 Policy Representation $( S P R )$ : The first data source is state-action pairs (or trajectories [14]), since +265 they reflect how policy may behave under such states. This data source is general since no explicit +266 form of policy is assumed. In a geometric view, learning policy representation from state-action pairs +267 can be viewed as capturing the features of policy via scattering sample points on the curved surface +268 of policy distribution. 2) Origin Policy Representation (OPR): The other data source is parameters of +269 policy since they determine the underlying form of policy distribution. Such a data source is often +270 available during the learning process of deep RL algorithms when policy is parameterized by neural +271 networks. Generally, we consider a policy network to be an MLP with well represented state features +272 (e.g., features extracted by CNN for pixels or by LSTM for sequences) as input. +273 The remaining question is how we extract the policy representation from the data sources mentioned +274 above. As shown in Figure 4, we use permutation-invariant (PI) transformations followed by an +275 MLP to encode the data of policy $\pi$ into an embedding $\chi _ { \pi }$ for both SPR and OPR. For SPR, each + +276 state-action pair of $\{ ( s _ { i } , a _ { i } ) \} _ { i = 1 } ^ { k }$ is fed into a common MLP, followed by a Mean-Reduce operation on the outputted features across $k$ . For OPR, we perform PI transformation (similar as done for state-action pairs) inner-layer weights and biases $\{ ( w _ { i } , b _ { i } ) \} _ { i = 1 } ^ { h }$ for each layer first, where $h$ denotes the number of nodes in this layer and $w _ { i } , b _ { i }$ is the income weight vector from previous layer and the bias of ith node; then we concatenate encoding of layers and obtain the OPR. A illustrative description for the encoding of OPR is in Figure 12 of Appendix. + +To train the policy embedding $\chi _ { \pi }$ obtained above, the most straightforward way is to backpropagate the value approximation loss of $\mathrm { P e V F A }$ in an End-to-End $( E 2 E )$ fashion as illustrated on the lowerright of Figure 4. In addition, we provide two self-supervised training losses for both OPR and SPR, as illustrated on the upper-right of Figure 4. The first one is an auxiliary loss (AUX) of policy recovery [14], i.e., to recover the action distributions of $\pi$ from $\chi _ { \pi }$ under different states. To be specific, an auxiliary policy decoder $\bar { \pi } ( \cdot | s , \chi _ { \pi } )$ is trained through behavioral cloning, formally to minimize cross-entropy objective $\mathcal { L } _ { \mathrm { A U X } } = - \mathbb { E } _ { ( s , a ) } \left[ \log \bar { \pi } ( a | s , \chi _ { \pi } ) \right]$ . For the second one, we propose to train $\chi _ { \pi }$ by Contrastive Learning $( C L )$ [54, 51]: policies are encouraged to be close to similar ones (i.e., positive samples $\pi ^ { + }$ ), and to be apart from different ones (i.e., negative samples $\pi ^ { - }$ ) in representation space. For each policy, we construct positive samples by data augmentation on policy data, depending on SPR or OPR considered; and different policies along the policy improvement path naturally the InfoNCE loss [41] below: provide negative samples for each other. Finally, the embedding $\begin{array} { r } { \mathcal { L } _ { \mathrm { C L } } = - \mathbb { E } _ { ( \pi ^ { + } , \{ \pi ^ { - } \} ) } \left[ \log \frac { \exp ( \chi _ { \pi } ^ { T } W \chi _ { \pi ^ { + } } ) } { \exp ( \chi _ { \pi } ^ { T } W \chi _ { \pi ^ { + } } ) + \sum _ { \pi ^ { - } } \exp ( \chi _ { \pi } ^ { T } W \chi _ { \pi ^ { - } } ) } \right] . } \end{array}$ $\chi _ { \pi }$ is optimized through minimizing + +Now, the training of policy representation model in Algorithm 1 can be performed with any combination of data sources and training losses provided above. A pseudo-code of the overall policy representation training framework and complete implementation details are provided in Appendix D. + +# 5 Experiments + +In this section, we conduct experimental study with focus on the following questions: + +Question 1 Can value generalization offered by PeVFA improve a deep RL algorithm in practice? Question 2 Can our proposed framework to learn effective policy representation? + +Our experiments are conducted in several OpenAI Gym continuous control tasks (one from Box2D and five from MuJoCo) [6, 58]. All experimental details and curves can be found in Appendix B. + +Algorithm Implementation. We use PPO [50] as the basic algorithm and propose a representative implementation of Algorithm 1, called PPO-PeVFA. PPO is a policy optimization algorithm that follows the paradigm of GPI (Figure 1, left). A value network $V _ { \phi } ( s )$ with parameters $\phi$ (i.e., conventional VFA) is trained to approximate the value of current policy $\pi$ ; while $\pi$ is optimized with respect to a surrogate objective [48] using advantages calculated by $V _ { \phi }$ and GAE [49]. Compared with original PPO, PPO-PeVFA makes use of a $\mathrm { P e V F A }$ network $\mathbb { V } _ { \theta } ( s , \chi _ { \pi } )$ with parameters $\theta$ rather than the conventional VFA $V _ { \phi } ( s )$ , and follows the training scheme as in Algorithm 1. Note PPO-PeVFA uses the same policy optimization method as original PPO and only differs at value approximation. + +Baselines and Variants. Except for original PPO as a default baseline, we use another two baselines: 1) PPO-PeVFA with randomly generated policy representation for each policy, denoted by Ran PR; 2) PPO-PeVFA with Raw Policy Representation (RPR), i.e., use the vector of all parameters of policy network as representation as adopted in PVFs [10]. Our variants of PPO-PeVFA differ at the policy representation used. In total, we consider 6 variants denoted by the combination of the policy data choice (i.e., OPR, SPR) and representation principle choice (i.e., E2E, CL, AUX). + +Experimental Details. For all baselines and variants, we use a normal-scale policy network with 2 layers and 64 units for each layer, resulting in over $3 \mathrm { k }$ to 10k (e.g., Ant-v1) policy parameters depending on the environments. We do not assume the access to pre-collected policies. Thus the size of policy set increases from 1 (i.e., the initial policy) during the learning process, to about 1k to 2 for a single trial. The dimensionality of all kinds of policy representation expect for RPR is set to 64. The buffer $D$ maintains recent $2 0 0 \mathrm { k }$ steps of interaction experience and the policy data of corresponding policy. The number of interaction step of each trial is 1M for InvDouPend-v1 and LunarLander-v2, 4M for Ant-v1 and 2M for the others. + +Results. The overall experimental results are summarized in Table 1. In Figure 5, we provide aggregated results across all environments expect for InvDouPend-v1 and LunarLander-v2 (since + +Table 1: Average returns $\pm$ half a std) over 10 trials for algorithms. Each result is the maximum evaluation along the training process. Top two values for each environment are bold. + +
EnvironmentsBenchmarksOrigin Policy Representation (Ours)Surface Policy Representation (Ours)
PPORan PRRPRE2ECLAUXE2ECLAUX
HalfCheetah-v1262124702325 ± 399.273171 ± 427.633725±348.553175±517.522774 ± 233.393349 ± 341.423216 ± 506.39
Hopper-v1163912261097 ± 213.472085 ± 310.912351 ± 231.112214 ± 360.782227 ± 297.352392 ± 263.932577 ± 217.73
Walker2d-v115051269317 ± 152.681856 ± 305.512038 ± 315.512044 ±316.321930.57 ± 456.022203 ± 381.951980 ± 325.54
Ant-v1283527422143 ± 406.643581 ± 185.434019 ± 162.473784 ± 268.993173 ± 184.753632 ± 134.273397 ± 200.03
InvDouPend-v1934493558856 ± 551.909357 ± 0.299355±0.649355±0.689355±0.899356±0.969355 ±1.42
LunarLander-v2219226-22±35.08238±3.37239 ± 3.70234 ± 3.47236± 3.13234 ± 3.13235±5.70
+ +28 most algorithms achieve near-optimal results), where all returns are normalized by the results of PPO +29 in Table 1. Full learning curves are omitted and can be found in Appendix F.2. + +To Question 1. From Table 1, we can find that both PPOPeVFA w/ OPR (E2E) and PPO-PeVFA w/ SPR (E2E) outperforms PPO in all 6 tasks, and achieve over $20 \%$ improvement in Figure 5. This demonstrates the effectiveness of $\mathrm { P e V F A }$ . Moreover, the improvement is further enlarged (to about $40 \%$ ) by CL and AUX for both OPR and SPR. This indicates that the superiority of PeVFA can be further utilized with better policy representation that offers a more suitable space for value generalization. + +![](images/20a85c9161cb7eeda14c0b97ac6b6838b2911bc0a0e66da144a476b8c3115d94.jpg) +Figure 5: Normalized averaged returns aggregated over 4 MuJoCo tasks. + +To Question 2. In Table 1, consistent degeneration is observed for PPO-PeVFA w/ Ran PR due to the negative effects on generalization caused by the randomness and disorder of policy representation. This phenomenon seems to be more severe for PPO-PeVFA w/ RPR due to the complexity of high-dimensional parameter space. In contrast, the improvement achieved by our proposed PPO-PeVFA variants shows that effective policy representation can be learned from policy parameters (OPR) and state-action pairs (SPR) though value approximation loss (i.e., E2E) and further improved when additional selfsupervised representation learning is involved as CL and AUX. Overall, OPR slightly outperforms SPR as CL does over AUX. We hypothesize that it is due to the stochasticity of state-action pairs which serve as inputs of SPR and training samples for AUX. This reveals the space for future improvement. In addition, we visualize the learned representation in Figure 6. We can observe that policies from different trials are locally continuous and show different modes of embedding trajectories due to random initialization and optimization; while a global evolvement among trials emerges with respect to policy performance. + +![](images/ac8c916c244115b54aef4064f061a500686eb8885bd22f7a8cd07c919cc350ea.jpg) +Figure 6: A t-SNE visualization for representations learned by PPO-PeVFA OPR (E2E) in Ant-v1. In total, 6k policies from 5 trials (denoted by different markers) are plotted, which are colored according to average return. + +# 61 6 Conclusion and Future Work + +In this paper, we propose Policy-extended Value Function Approximator (PeVFA) and study value generalization among policies. We propose a new form of GPI based on PeVFA which is potentially preferable to conventional VFA for value approximation. Moreover, we propose a general framework to learn low-dimensional embedding of RL policy. Our experiments demonstrate the effectiveness of the generalization characteristic of $\mathrm { P e V F A }$ and our proposed policy representation learning methods. + +Our work opens up some research directions on value generalization among policies and policy representation. A possible future study on the theory of value generalization among policies is to consider the interplay between approximation error, policy improvement and local generalization during GPI with PeVFA. Besides, analysis on influence factors of value generalization among policies (e.g., policy representation, architecture of ${ \mathrm { P e V F A } }$ ) and other utilization of $\mathrm { P e V F A }$ are expected. For better policy representation, inspirations on OPR may be got from studies on Manifold Hypothesis of neural network; the selection of more informative state-action pairs for SPR is also worth research. + +# References + +[1] M. Andrychowicz, D. Crow, A. Ray, J. Schneider, R. Fong, P. Welinder, B. McGrew, J. Tobin, P. Abbeel, and W. Zaremba. Hindsight experience replay. In NeurIPS, pages 5048–5058, 2017. +[2] M. Andrychowicz, A. Raichuk, P. Stanczyk, M. Orsini, S. Girgin, R. Marinier, L. Hussenot, M. Geist, O. Pietquin, M. Michalski, S. Gelly, and O. Bachem. What matters in on-policy reinforcement learning? A large-scale empirical study. CoRR, abs/2006.05990, 2020. [3] I. Arnekvist, D. Kragic, and J. A. Stork. VPE: variational policy embedding for transfer reinforcement learning. In ICRA, pages 36–42, 2019. +[4] M. G. Bellemare, W. Dabney, and R. Munos. A distributional perspective on reinforcement learning. In ICML, volume 70, pages 449–458, 2017. [5] D. P. Bertsekas and J. N. Tsitsiklis. Neuro-dynamic programming, volume 3 of Optimization and neural computation series. 1996. +[6] G. Brockman, V. Cheung, L. Pettersson, J. Schneider, J. Schulman, J. Tang, and W. Zaremba. Openai gym. CoRR, abs/1606.01540, 2016. [7] T. Chen, S. Kornblith, M. Norouzi, and G. E. Hinton. A simple framework for contrastive learning of visual representations. CoRR, abs/2002.05709, 2020. [8] L. Engstrom, A. Ilyas, S. Santurkar, D. Tsipras, F. Janoos, L. Rudolph, and A. Madry. Implementation matters in deep RL: A case study on PPO and TRPO. In ICLR, 2020. +[9] B. Eysenbach, X. Geng, S. Levine, and R. R. Salakhutdinov. Rewriting history with inverse RL: hindsight inference for policy improvement. In NeurIPS, 2020. +[10] F. Faccio and J. Schmidhuber. Parameter-based value functions. CoRR, abs/2006.09226, 2020. +[11] H. Fu, H. Tang, J. Hao, C. Chen, X. Feng, D. Li, and W. Liu. Towards effective context for metareinforcement learning: an approach based on contrastive learning. CoRR, abs/2009.13891, 2020. +[12] S. Fujimoto, H. v. Hoof, and D. Meger. Addressing function approximation error in actor-critic methods. In ICML, 2018. +[13] A. Gaier, A. Asteroth, and J. Mouret. Discovering representations for black-box optimization. In GECCO, pages 103–111, 2020. +[14] A. Grover, M. Al-Shedivat, J. K. Gupta, Y. Burda, and H. Edwards. Learning policy representations in multiagent systems. In ICML, volume 80, pages 1797–1806, 2018. +[15] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In ICML, pages 1856–1865, 2018. +[16] D. Hafner, T. P. Lillicrap, J. Ba, and M. Norouzi. Dream to control: Learning behaviors by latent imagination. In ICLR, 2020. +[17] J. Harb, T. Schaul, D. Precup, and P. Bacon. Policy evaluation networks. CoRR, abs/2002.11833, 2020. +[18] K. Hausman, J. Tobias Springenberg, Z. Wang, N. Heess, and M. A. Riedmiller. Learning an embedding space for transferable robot skills. In ICLR, 2018. +[19] H. He and J. L. Boyd-Graber. Opponent modeling in deep reinforcement learning. In ICML, volume 48, pages 1804–1813, 2016. +[20] K. He, H. Fan, Y. Wu, S. Xie, and R. B. Girshick. Momentum contrast for unsupervised visual representation learning. In CVPR, pages 9726–9735, 2020. +[21] M. Igl, G. Farquhar, J. Luketina, W. Boehmer, and S. Whiteson. The impact of non-stationarity on generalisation in deep reinforcement learning. CoRR, abs/2006.05826, 2020. +[22] N. S. Keskar, D. Mudigere, J. Nocedal, M. Smelyanskiy, and P. T. P. Tang. On large-batch training for deep learning: Generalization gap and sharp minima. In ICLR, 2017. +[23] D. P. Kingma and M. Welling. Auto-encoding variational bayes. In ICLR, 2014. +[24] I. Kostrikov, D. Yarats, and R. Fergus. Image augmentation is all you need: Regularizing deep reinforcement learning from pixels. CoRR, abs/2004.13649, 2020. + +421 [25] A. Kuznetsov, P. Shvechikov, A. Grishin, and D. P. Vetrov. Controlling overestimation bias with truncated +422 mixture of continuous distributional quantile critics. In ICML, volume 119, pages 5556–5566, 2020. +423 [26] M. G. Lagoudakis and R. Parr. Least-squares policy iteration. J. Mach. Learn. Res., 4:1107–1149, 2003. +424 [27] Q. Lan, Y. Pan, A. Fyshe, and M. White. Maxmin q-learning: Controlling the estimation bias of q-learning. +425 In ICLR, 2020. +426 [28] M. Laskin, K. Lee, A. Stooke, L. Pinto, P. Abbeel, and A. Srinivas. Reinforcement learning with augmented +427 data. CoRR, abs/2004.14990, 2020. +428 [29] K. Lee, Y. Seo, S. Lee, H. Lee, and J. Shin. Context-aware dynamics model for generalization in +429 model-based reinforcement learning. CoRR, abs/2005.06800, 2020. +430 [30] A. Levy, G. D. Konidaris, R. P. Jr., and K. Saenko. Learning multi-level hierarchies with hindsight. In +431 ICLR, 2019. +432 [31] T. P. Lillicrap, J. J. Hunt, A. Pritzel, N. Heess, T. Erez, Y. Tassa, D. Silver, and D. Wierstra. Continuous +433 control with deep reinforcement learning. In ICLR, 2015. +434 [32] H. Liu, K. Simonyan, and Y. Yang. DARTS: differentiable architecture search. In ICLR, 2019. +435 [33] R. Luo, F. Tian, T. Qin, E. Chen, and T. Liu. Neural architecture optimization. In NeurIPS, pages +436 7827–7838, 2018. +437 [34] L. V. D. Maaten and G. E. Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9: +438 2579–2605, 2008. +439 [35] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. A. Riedmiller, +440 A. Fidjeland, G. Ostrovski, S. Petersen, C. Beattie, A. Sadik, I. Antonoglou, H. King, D. Kumaran, +441 D. Wierstra, S. Legg, and D. Hassabis. Human-level control through deep reinforcement learning. Nature, +442 518(7540):529–533, 2015. +443 [36] V. Mnih, A. P. Badia, M. Mirza, A. Graves, T. P. Lillicrap, T. Harley, D. Silver, and K. Kavukcuoglu. +444 Asynchronous methods for deep reinforcement learning. In ICML, 2016. +445 [37] O. Nachum, S. Gu, H. Lee, and S. Levine. Data-efficient hierarchical reinforcement learning. CoRR, +446 abs/1805.08296, 2018. +447 [38] O. Nachum, S. Gu, H. Lee, and S. Levine. Near-optimal representation learning for hierarchical reinforce +448 ment learning. In ICLR, 2019. +449 [39] Y. E. Nesterov and B. T. Polyak. Cubic regularization of newton method and its global performance. Math. +450 Program., 108(1):177–205, 2006. +451 [40] R. Novak, Y. Bahri, D. A. Abolafia, J. Pennington, and J. Sohl-Dickstein. Sensitivity and generalization in +452 neural networks: an empirical study. In ICLR, 2018. +453 [41] A. Oord, Y. Li, and O. Vinyals. Representation learning with contrastive predictive coding. CoRR, +454 abs/1807.03748, 2018. +455 [42] R. Raileanu, M. Goldstein, A. Szlam, and R. Fergus. Fast adaptation via policy-dynamics value functions. +456 CoRR, abs/2007.02879, 2020. +457 [43] K. Rakelly, A. Zhou, C. Finn, S. Levine, and D. Quillen. Efficient off-policy meta-reinforcement learning +458 via probabilistic context variables. In ICML, volume 97, pages 5331–5340, 2019. +459 [44] N. Rakicevic, A. Cully, and P. Kormushev. Policy manifold search: Exploring the manifold hypothesis for +460 diversity-based neuroevolution. CoRR, abs/2104.13424, 2021. +461 [45] T. Schaul, D. Horgan, K. Gregor, and D. Silver. Universal value function approximators. In ICML, +462 volume 37, pages 1312–1320, 2015. +463 [46] B. Scherrer, M. Ghavamzadeh, V. Gabillon, B. Lesner, and M. Geist. Approximate modified policy iteration +464 and its application to the game of tetris. J. Mach. Learn. Res., 16:1629–1676, 2015. +465 [47] J. S Schreck, C. W Coley, and K. JM Bishop. Learning retrosynthetic planning through simulated +466 experience. ACS central science, 5(6):970–981, 2019. +467 [48] J. Schulman, S. Levine, P. Abbeel, M. I. Jordan, and P. Moritz. Trust region policy optimization. In ICML, +468 pages 1889–1897, 2015. +469 [49] J. Schulman, P. Moritz, S. Levine, M. I. Jordan, and P. Abbeel. High-dimensional continuous control using +470 generalized advantage estimation. In ICLR, 2016. +471 [50] J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov. Proximal policy optimization algorithms. +472 CoRR, abs/1707.06347, 2017. +473 [51] M. Schwarzer, A. Anand, R. Goel, R. D. Hjelm, A. C. Courville, and P. Bachman. Data-efficient +474 reinforcement learning with momentum predictive representations. CoRR, abs/2007.05929, 2020. +475 [52] D. Silver, G. Lever, N. Heess, T. Degris, D. Wierstra, and M. A. Riedmiller. Deterministic policy gradient +476 algorithms. In ICML, pages 387–395, 2014. +477 [53] D. Silver, A. Huang, C. J. Maddison, A. Guez, L. Sifre, G. van den Driessche, J. Schrittwieser, +478 I. Antonoglou, V. Panneershelvam, M. Lanctot, S. Dieleman, D. Grewe, J. Nham, N. Kalchbrenner, +479 I. Sutskever, T. P. Lillicrap, M. Leach, K. Kavukcuoglu, T. Graepel, and D. Hassabis. Mastering the game +480 of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. +481 [54] A. Srinivas, M. Laskin, and P. Abbeel. CURL: contrastive unsupervised representations for reinforcement +482 learning. CoRR, abs/2004.04136, 2020. +483 [55] R. S. Sutton and A. G. Barto. Reinforcement learning - an introduction. Adaptive computation and machine +484 learning. MIT Press, 1998. +485 [56] R. S. Sutton, J. Modayil, M. Delp, T. Degris, P. M. Pilarski, A. White, and D. Precup. Horde: a scalable +486 real-time architecture for learning knowledge from unsupervised sensorimotor interaction. In AAMAS, +487 pages 761–768, 2011. +488 [57] A. Tacchetti, H. F. Song, P. A. M. Mediano, V. Flores Zambaldi, J. Kramár, N. C. Rabinowitz, Th. Graepel, +489 M. Botvinick, and P. W. Battaglia. Relational forward models for multi-agent learning. In ICLR, 2019. +490 [58] E. Todorov, T. Erez, and Y. Tassa. Mujoco: A physics engine for model-based control. 2012 IEEE/RSJ +491 International Conference on Intelligent Robots and Systems, pages 5026–5033, 2012. +492 [59] Y. H. Tsai, Y. Wu, R. Salakhutdinov, and L. Morency. Demystifying self-supervised learning: An +493 information-theoretical framework. CoRR, abs/2006.05576, 2020. +494 [60] T. Unterthiner, D. Keysers, S. Gelly, O. Bousquet, and I. O. Tolstikhin. Predicting neural network accuracy +495 from weights. CoRR, abs/2002.11448, 2020. +496 [61] H. v. Hasselt. Double q-learning. In J. D. Lafferty, C. K. I. Williams, J. Shawe-Taylor, R. S. Zemel, and +497 A. Culotta, editors, NeurIPS, pages 2613–2621, 2010. +498 [62] O. Vinyals, I. Babuschkin, W. M. Czarnecki, M. Mathieu, A. Dudzik, J. Chung, D. H. Choi, R. Powell, +499 T. Ewalds, P. Georgiev, J. Oh, D. Horgan, M. Kroiss, I. Danihelka, A. Huang, L. Sifre, T. Cai, J. P. Agapiou, +500 M. Jaderberg, A. S. Vezhnevets, R. Leblond, T. Pohlen, V. Dalibard, D. Budden, Y. Sulsky, J. Molloy, +501 T. L. Paine, C. Gulcehre, Z. Wang, T. Pfaff, Y. Wu, R. Ring, D. Yogatama, D. Wünsch, K. McKinney, +502 O. Smith, T. Schaul, T. Lillicrap, K. Kavukcuoglu, D. Hassabis, C. Apps, and D. Silver. Grandmaster level +503 in starcraft ii using multi-agent reinforcement learning. Nature, 575(7782):350–354, 2019. +504 [63] H. Wang, N. S. Keskar, C. Xiong, and R. Socher. Identifying generalization properties in neural networks. +505 CoRR, abs/1809.07402, 2018. +506 [64] R. Wang, R. Yu, B. An, and Z. Rabinovich. I2hrl: Interactive influence-based hierarchical reinforcement +507 learning. In IJCAI, pages 3131–3138, 2020. +508 [65] J. You, B. Liu, Z. Ying, V. S. Pande, and J. Leskovec. Graph convolutional policy network for goal-directed +509 molecular graph generation. In NeurIPS 2018, pages 6412–6422, 2018. + +1. For all authors... + +(a) Do the main claims made in the abstract and introduction accurately reflect the paper’s contributions and scope? [Yes] +(b) Did you describe the limitations of your work? [Yes] See the future work in Sec. 6. +(c) Did you discuss any potential negative societal impacts of your work? [No] Our work is on general Reinforcement Learning study. No specific practical application is considered. +(d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes] + +2. If you are including theoretical results... + +(a) Did you state the full set of assumptions of all theoretical results? [Yes] (b) Did you include complete proofs of all theoretical results? [Yes] + +3. If you ran experiments... + +(a) Did you include the code, data, and instructions needed to reproduce the main experimental results (either in the supplemental material or as a URL)? [No] Our experimental environment are public and standard. All the information needed to reproduce our results is provided in the main body and appendix. Code will be available publicly soon. +(b) Did you specify all the training details (e.g., data splits, hyperparameters, how they were chosen)? [Yes] Partially in main body and all details can be found in the appendix document. +(c) Did you report error bars (e.g., with respect to the random seed after running experiments multiple times)? [Yes] +(d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs, internal cluster, or cloud provider)? [Yes] + +4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets... + +(a) If your work uses existing assets, did you cite the creators? [Yes] +(b) Did you mention the license of the assets? [Yes] We use a free education licence for students for MuJoCo. +(c) Did you include any new assets either in the supplemental material or as a URL? [No] +(d) Did you discuss whether and how consent was obtained from people whose data you’re using/curating? [N/A] +(e) Did you discuss whether the data you are using/curating contains personally identifiable information or offensive content? [N/A] + +5. If you used crowdsourcing or conducted research with human subjects... + +(a) Did you include the full text of instructions given to participants and screenshots, if applicable? [N/A] +(b) Did you describe any potential participant risks, with links to Institutional Review Board (IRB) approvals, if applicable? [N/A] +(c) Did you include the estimated hourly wage paid to participants and the total amount spent on participant compensation? [N/A] \ No newline at end of file diff --git a/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_content_list.json b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..9e445338a1063269b4428fe933403a83129501bb --- /dev/null +++ b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_content_list.json @@ -0,0 +1,1081 @@ +[ + { + "type": "text", + "text": "Represent Your Own Policies: Learning with Policy-extended Value Function Approximator ", + "text_level": 1, + "bbox": [ + 218, + 122, + 779, + 172 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous Author(s) \nAffiliation \nAddress \nemail ", + "bbox": [ + 423, + 226, + 578, + 281 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Abstract ", + "text_level": 1, + "bbox": [ + 462, + 318, + 535, + 334 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 We study Policy-extended Value Function Approximator (PeVFA) in Reinforce \n2 ment Learning (RL), which extends conventional value function approximator \n3 (VFA) to take as input not only the state (and action) but also an explicit policy \n4 representation. Such an extension enables $\\mathrm { P e V F A }$ to preserve values of multi \n5 ple policies at the same time and brings an appealing characteristic, i.e., value \n6 generalization among policies. We formally analyze the value generalization un \n7 der Generalized Policy Iteration (GPI). From theoretical and empirical lens, we \n8 show that generalized value estimates offered by PeVFA may have lower initial \n9 approximation error to true values of successive policies, which is expected to \n10 improve consecutive value approximation during GPI. Based on above clues, we \n11 introduce a new form of GPI with PeVFA which leverages the value generalization \n12 along policy improvement path. Moreover, we propose a representation learning \n13 framework for RL policy, providing several approaches to learn effective policy em \n14 beddings from policy network parameters or state-action pairs. In our experiments, \n15 we evaluate the efficacy of value generalization offered by PeVFA and policy \n16 representation learning in several OpenAI Gym continuous control tasks. For a \n17 representative instance of algorithm implementation, Proximal Policy Optimization \n18 (PPO) re-implemented under the paradigm of GPI with PeVFA achieves about $40 \\%$ \n19 performance improvement on its vanilla counterpart in most environments. ", + "bbox": [ + 148, + 349, + 766, + 612 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "20 1 Introduction ", + "text_level": 1, + "bbox": [ + 147, + 640, + 310, + 656 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "21 Reinforcement Learning (RL) has been widely considered as a promising way to learn optimal \n22 policies in many decision-making problems [35, 31, 53, 65, 47, 62, 16]. One fundamental element of \n23 RL is value function which defines the long-term evaluation of a policy. With function approximation \n24 (e.g., deep neural networks), a value function approximator (VFA) is able to approximate the values \n25 of a policy under large and continuous state spaces. As commonly recognized, most RL algorithms \n26 can be described as Generalized Policy Iteration (GPI) [55]. As illustrated on the left of Figure 1, \n27 at each iteration the VFA is trained to approximate the true values of current policy (i.e., policy \n28 evaluation), regarding which the policy is further improved (i.e., policy improvement). The value \n29 function approximation error hinders the effectiveness of policy improvement and then the overall \n30 optimality of GPI [5, 46]. Unfortunately, such errors are inevitable under function approximation. A \n31 large number of samples are usually required to ensure high-quality value estimates, resulting in the \n32 sample-inefficiency of deep RL algorithms. Therefore, this raises an urgent need for more efficient \n33 value approximation methods [61, 4, 12, 25]. \n34 An intuitive idea to improve the efficiency value approximation is to leverage the knowledge on \n35 the values of previous encountered policies. However, a conventional VFA usually approximates \n36 the values of one policy and values learned from old policies are over-written gradually during \n37 the learning process. This means that the previously learned knowledge cannot be preserved and \n38 utilized with one conventional VFA. Thus, such limitations prevent the potentials to leverage the \n39 previous knowledge for future learning. In this paper, we study Policy-extended Value Function \n40 Approximator (PeVFA), which additionally takes an explicit policy representation as input in contrast \n41 to conventional VFA. Thanks to the policy representation input, PeVFA is able to approximate values \n42 for multiple policies and induces value generalization among policies. We formally analyze the \n43 generalization of approximate values among policies in a general form. From both theoretical and \n44 empirical lens, we show that the generalized value estimates can be closer to the true values of \n45 the successive policy, which can be beneficial to consecutive value approximation along the policy \n46 improvement path, called local generalization. Based on above clues, we introduce a new form \n47 of GPI with PeVFA (the right of Figure 1) that leverages the local generalization to improve the \n48 efficiency of consecutive value approximation along the policy improvement path. \n49 One key point of GPI with PeVFA is the representation of policy since it determines how PeVFA gen \n50 eralizes the values. For this, we propose a framework to learn effective low-dimensional embedding \n51 of RL policy. We use network parameters or state-action pairs as policy data and encode them into \n52 low-dimensional embeddings; then the embeddings are trained to capture the effective information \n53 through contrastive learning and policy recovery. Finally, we evaluate the efficacy of GPI with PeVFA \n54 and our policy representations. In principle, GPI with PeVFA is general and can be implemented \n55 in different ways. As a practical instance, we re-implement Proximal Policy Optimization (PPO) \n56 with PeVFA and propose PPO-PeVFA algorithm. Our experimental results on several OpenAI Gym \n57 continuous control tasks demonstrate the effectiveness of both value generalization offered by PeVFA \n58 and learned policy representations, with an about $40 \\%$ improvement in average returns achieved by \n59 our best variants on standard PPO in most tasks. \n60 We summarize our main contributions below. 1) We study the value generalization among policies \n61 induced by PeVFA. From both theoretical and empirical aspects, we shed the light on the situations \n62 where the generalization can be beneficial to the learning along policy improvement path. 2) We \n63 propose a framework for policy representation learning. To our knowledge, we make the first attempt \n64 to learn a low-dimensional embedding of over $1 0 \\mathrm { k }$ network parameters for an RL policy. 3) We \n65 introduce GPI with PeVFA that leverages the value generalization in a general form. Our experimental \n66 results demonstrate the potential of PeVFA in deriving practical and more effective RL algorithms. ", + "bbox": [ + 145, + 671, + 825, + 852 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 148, + 858, + 823, + 900 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/38feb809737473fb7948d8361bed05d65eceb8e03420789b9e49c35c2b8d2206.jpg", + "image_caption": [ + "Figure 1: Generalized Policy Iteration (GPI) with function approximation. Left: GPI with conventional value function approximator $V _ { \\phi }$ . Right: GPI with PeVFA $\\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } )$ (Sec. 3) where extra generalization steps exist. The subscripts of policy $\\pi$ and value function parameters $\\phi , \\theta$ denote the iteration number. The squiggle lines represent non-perfect approximation of true values. " + ], + "image_footnote": [], + "bbox": [ + 228, + 0, + 766, + 195 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 145, + 291, + 825, + 458 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 145, + 464, + 825, + 616 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 147, + 622, + 825, + 720 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "67 2 Related Work ", + "text_level": 1, + "bbox": [ + 148, + 741, + 320, + 757 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "68 Extensions of Conventional Value Function. Sutton et al. [56] propose General Value Functions \n69 (GVFs) as a general form of knowledge representation of rewards and arbitrary cumulants. Later, \n70 conventional value functions are extended to take extra inputs for different purposes of generalization. \n71 One notable work is Universal Value Function Approximator (UVFA) [45], which is proposed to \n72 generalize values among different goals for goal-conditioned RL. UVFA is further developed in \n73 [1, 37, 9] and influences the occurrence of other value function extensions in context-based Meta-RL \n74 [43, 29], Hierarchical RL [64] and multiagent RL [19, 14] and etc. Most of the above works study \n75 how to generalize the policy or value function among extrinsic factors, i.e., environments, tasks and \n76 opponents; while we mainly study the value generalization among policies along policy improvement \n77 path, an intrinsic learning process of the agent itself. \n78 Policy Embedding and Representation. Although not well studied, representation (or embedding) \n79 learning for RL policies is involved in a few works [18, 14, 3]. The most common way to learn a \n80 policy representation is to extract from interaction experiences. As a representative, Grover et al. [14] \n81 propose learning the representation of opponent policy from interaction trajectories with a generative \n82 policy recovery loss and a discriminative triplet loss. These losses are later adopted in [64, 42]. \n83 Another straightforward idea is to represent policy parameters. Network Fingerprint [17] is such a \n84 differentiable representation that uses the concatenation of the vectors of action distribution outputted \n85 by policy network on a set of probing states. The probing state set is co-optimized along with the \n86 primary learning objective, which can be non-trivial especially when the dimensionality of the set is \n87 high. Besides, some early attempts in learning low-dimensional embedding of policy parameters are \n88 studies in Evolutionary Algorithms [13, 44], mainly with the help of VAE [23]. Our work introduce a \n89 learning framework of policy representation including both above two perspectives. \n90 PVN and PVFs. Recently, several works study the generalization among policy space. Harb et al. \n91 [17] propose Policy Evaluation Network (PVN) to directly approximate the distribution of policy \n92 $\\pi$ ’s objective function $J ( \\pi ) = \\mathbb { E } _ { \\rho _ { 0 } } [ v ^ { \\pi } ( s _ { 0 } ) ]$ with initial state $s _ { 0 } \\sim \\rho _ { 0 }$ . PVN takes as input Network \n93 Fingerprint (mentioned above) of policy network. After training on a pre-collected set of policies, a \n94 random initialized policy can be optimized in a zero-shot manner with the policy gradients of PVN by \n95 backpropagting through the differentiable policy input. We call such gradients GTPI for short below. \n96 Similar ideas are later integrated with task-specific context learning in multi-task RL [42], leveraging \n97 the generalization among policies and tasks for fast policy adaptation on new tasks. In PVN [17], \n98 as an early attempt, the generalization among policies is studied with small policy network and \n99 simple tasks; besides, the most regular online learning setting is not studied. Concurrent to our work, \n100 Faccio and Schmidhuber [10] propose a class of Parameter-based Value Functions (PVFs) that take \n101 vectorized policy parameters as inputs. Based on PVFs, new policy gradient algorithms are introduced \n102 in the form of a combination of conventional policy gradients and GTPI (i.e., by backpropagating \n103 through policy parameters in PVFs). Except for zero-shot policy optimization as conducted in PVN, \n104 PVFs are also evaluated for online policy learning. Due to directly taking parameters as input, PVFs \n105 suffer from the curse of dimensionality when the number of parameters is high. Besides, GTPI can \n106 be non-trivial to rein since policy parameter space are complex and extrapolation generalization \n107 error can be large when the value function is only trained on finite policies (usually much fewer than \n108 state-action samples) thus further resulting in erroneous policy gradients. \n109 Our work differs with PVFs from several aspects. First, we make use of learned policy representation \n110 rather than policy network parameters. Second, we do not resort to GTPI for the policy update \n111 in our algorithms but focus on utilizing value generalization for more efficient value estimation in \n112 GPI. Furthermore, we shed the light on two important problems — how value generalization among \n113 policies can happen formally and whether it is beneficial to learning or not — which are neglected in \n114 in previous works from both theoretical and empirical lens. ", + "bbox": [ + 147, + 772, + 825, + 911 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 145, + 92, + 825, + 257 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 143, + 262, + 826, + 526 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 532, + 825, + 616 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "115 3 Policy-extended Value Function Approximator ", + "text_level": 1, + "bbox": [ + 143, + 633, + 593, + 652 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "116 In this section, we propose Policy-extended Value Function Approximator (PeVFA), an extension \n117 of conventional VFA that explicitly takes as input a policy representation. First, we introduce the \n118 formulation (Sec. 3.1), then we study value generalization among policies theoretically (Sec. 3.2) \n119 along with some empirical evidences (Sec. 3.3). Finally, we derive a new form of GPI (Sec. 3.4). ", + "bbox": [ + 142, + 666, + 825, + 722 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 Formulation ", + "text_level": 1, + "bbox": [ + 166, + 738, + 299, + 753 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "121 Consider a Markov Decision Process (MDP) defined as $\\langle S , \\mathcal { A } , r , \\mathcal { P } , \\gamma \\rangle$ where $s$ is the state space, $\\mathcal { A }$ \n122 is the action space, $r$ is the (bounded) reward function, $\\mathcal { P }$ is the transition function and $\\gamma \\in [ 0 , 1 )$ is \n123 the discount factor. A policy $\\pi \\in P ( { \\cal A } ) ^ { | S | }$ defines the distribution over all actions for each state. The \n124 goal of an RL agent is to find an optimal policy $\\pi ^ { * }$ that maximizes the expected long-term discounted \n125 126 return. The state-vafollowing the policy $\\pi$ e function from a st $v ^ { \\pi } ( s )$ $s$ $\\begin{array} { r } { v ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\bar { \\gamma } ^ { t } r _ { t + 1 } \\vert s _ { 0 } = s \\right] } \\end{array}$ ted return for where $r _ { t + 1 } = r ( s _ { t } , a _ { t } )$ \n127 to denote the vectorized form of value function. \n128 In a general form, we define policy-extended value function $\\mathbb { V } : \\mathcal { S } \\times \\Pi \\mathbb { R }$ over state and policy \n129 space: $\\mathbb { V } ( s , \\pi ) = v ^ { \\pi } ( s )$ for all $s \\in { \\mathcal { S } }$ and $\\pi \\in \\Pi$ . In this paper, we focus on $\\mathbb { V } ( s , \\pi )$ and policy \n130 extended action-value function $\\mathbb { Q } ( s , a , \\pi )$ can be obtained similarly. We use $\\mathbb { V } ( \\pi )$ to denote the value \n131 vector for all states in the following. The key point is that PeVFA $\\mathbb { V }$ is able to preserve the values of \n132 multiple policies. With function approximation, a $\\mathrm { P e V F A }$ is expected to approximate the values of \n133 policies among policy space, i.e., $\\bar { \\{ V ^ { \\pi } \\} } _ { \\pi \\in \\Pi }$ and then enable value generalization among policies. \n134 Formally, given a function $g : \\Pi \\mathcal { X } \\subseteq \\mathbb { R } ^ { n }$ that maps any policy $\\pi$ to an $n$ -dimensional represen \n135 tation $\\chi _ { \\pi } \\bar { = } g ( \\pi ) \\in \\mathcal X$ , a PeVFA $\\mathbb { V } _ { \\theta }$ with parameter $\\theta \\in \\Theta$ is to minimize the approximation error \n136 over all possible states and policies generally: ", + "bbox": [ + 145, + 763, + 825, + 863 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 869, + 825, + 911 + ], + "page_idx": 2 + }, + { + "type": "image", + "img_path": "images/433544a995e880196676e7310d94036d703d7b2b79a7871aedbf041ab7690f07.jpg", + "image_caption": [ + "Figure 2: Illustrations of value generalization among policies of $\\mathrm { P e V F A }$ . Each circle denotes value function (estimate) of a policy. (a) Global Generalization: values learned from known policies can be generalized to unknown policies. (b) Local Generalization: values of previous policies (e.g., $\\pi _ { t }$ ) can be generalized to successive policies (e.g., $\\pi _ { t + 1 }$ ) along policy improvement path. " + ], + "image_footnote": [], + "bbox": [ + 200, + 94, + 799, + 242 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 145, + 321, + 826, + 366 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 371, + 825, + 412 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/cdf33cc55636dd3817be4c6e607a13d303010054d5d54d2c8ed2a0f07615f511.jpg", + "text": "$$\nF _ { \\mu , p , \\rho } ( \\theta , g , \\Pi ) = \\sum _ { \\pi \\in \\Pi } \\mu ( \\pi ) \\| \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) - V ^ { \\pi } \\| _ { p , \\rho } ,\n$$", + "text_format": "latex", + "bbox": [ + 338, + 415, + 656, + 449 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "137 where $\\mu , \\rho$ are distributions over policies and states respectively, $\\begin{array} { r } { \\| f \\| _ { p , \\rho } = ( \\int _ { s } \\rho ( \\mathrm { d } s ) | f ( s ) | ^ { p } ) ^ { 1 / p } } \\end{array}$ is \n138 $\\rho$ -weighted $L _ { p }$ -norm [26, 46] for any $f : S \\mathbb { R }$ . The policy distribution $\\mu$ of interest depends on \n139 the scenario where value generalization is considered. As illustrated in Figure 2, we provide two \n140 value generalization scenarios. In the global generalization scenario, a uniform distribution over \n141 known policy set may be considered with a general purpose of value generalization for unknown \n142 policies. For the specific local generalization scenario along policy improvement path during GPI, a \n143 sophisticated distribution that adaptively weights recent policies more during the learning process \n144 may be more suitable in this case. In the following, we care more about the local generalization \n145 scenario and use uniform state distribution $\\rho$ and $L _ { 2 }$ -norm for demonstration. The subscripts are \n146 omitted and we use $\\| \\cdot \\|$ for clarity. ", + "bbox": [ + 140, + 453, + 825, + 593 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.2 Theoretical Analysis on Value Generalization among Policies ", + "text_level": 1, + "bbox": [ + 160, + 607, + 633, + 622 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "148 In this part, we theoretically analyze the value generalization among policies induced by PeVFA. We \n149 start from a two-policy case and study whether the value approximation learned for one policy can be \n150 generalized to the other one. Later, we study the local generalization scenario (Figure $2 ( \\mathbf { b } ) ,$ ) and shed \n151 the light on the superiority of $\\mathrm { P e V F A }$ for GPI. All the proofs are provided in Appendix A. \n152 For the convenience of demonstration, we use an identical policy representation function, i.e., $\\chi _ { \\pi } = \\pi$ , \n153 and define the approximation loss of PeVFA $\\mathbb { V } _ { \\theta }$ for any policy $\\pi \\in \\Pi$ as $f _ { \\theta } ( \\pi ) = \\| \\mathbb { V } _ { \\theta } ( \\pi ) - V ^ { \\bar { \\pi } } \\| \\ge 0$ . \n154 We use the following definitions for a formal description of value approximation process with PeVFA \n155 and local property of loss function $f _ { \\theta }$ that influences generalization [40, 63] respectively: \n156 Definition 1 ( $\\pi$ -Value Approximation) We define a value approximation process $\\mathcal { P } _ { \\pi } : \\Theta \\to \\Theta$ \n157 with PeVFA as a $\\gamma$ -contraction mapping on the approximation loss for policy $\\pi$ , i.e., for $\\hat { \\theta } = \\mathcal { P } _ { \\pi } ( \\theta )$ , \n158 we have $f _ { \\hat { \\theta } } ( \\pi ) \\leq \\gamma f _ { \\theta } ( \\pi )$ where $\\gamma \\in [ 0 , 1 )$ . ", + "bbox": [ + 142, + 632, + 825, + 689 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 694, + 826, + 751 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 145, + 758, + 826, + 805 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Definition 2 ( $L$ -Continuity) We call $f _ { \\theta }$ is $L$ -continuous at policy $\\pi$ if fθ is Lipschitz continuous at π with a constant $L \\in [ 0 , \\infty )$ , i.e., $| f _ { \\theta } ( { \\boldsymbol \\pi } ) - f _ { \\theta } ( { \\boldsymbol \\pi } ^ { \\prime } ) | \\leq L \\cdot d ( { \\boldsymbol \\pi } , { \\boldsymbol \\pi } ^ { \\prime } )$ for $\\pi ^ { \\prime } \\in \\Pi$ with some distance metric d for policy space $\\Pi$ . ", + "bbox": [ + 171, + 810, + 825, + 853 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "162 With Definition 1, the consecutive value approximation for the policies along policy improvement path \n163 during GPI can be described as: $\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots ,$ , as the green arrows illustrated in \n164 Figure 1. One may refer to Appendix A.1 for a discussion on the rationality of the two definitions. \n65 To start our analysis, we first study the generalized value approximation loss in a two-policy case \n166 where only the value of policy $\\pi _ { 1 }$ is approximated by PeVFA as below: ", + "bbox": [ + 145, + 862, + 825, + 912 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 150, + 90, + 825, + 119 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Lemma 1 For 67 $\\theta \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\hat { \\theta } .$ , if $f _ { \\hat { \\theta } }$ is $\\hat { L }$ -continuous at $\\pi _ { 1 }$ and $f _ { \\theta } ( \\pi _ { 1 } ) \\le f _ { \\theta } ( \\pi _ { 2 } )$ , we have: $f _ { \\hat { \\theta } } ( \\pi _ { 2 } ) \\leq$ 68 $\\gamma f _ { \\theta } ( \\pi _ { 2 } ) + \\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } )$ , where $\\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } ) = \\hat { L } \\cdot d ( \\pi _ { 1 } , \\pi _ { 2 } )$ . ", + "bbox": [ + 158, + 125, + 825, + 164 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Corollary 1 Pπ1 is γg-contraction (γg ∈ [0, 1)) for π2 when fθ(π2) > Lˆ·d(π1,π2)1−γ169 . ", + "bbox": [ + 153, + 169, + 718, + 189 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "170 Lemma 1 shows that the post- $\\mathcal { P } _ { \\pi _ { 1 } }$ approximation loss for $\\pi _ { 2 }$ is upper bounded by a generalized \n171 contraction of prior loss plus a locality margin term $\\mathcal { M }$ which is related to $\\pi _ { 1 } , \\pi _ { 2 }$ and the locality \n172 property of $f _ { \\hat { \\theta } }$ . In general, the form of $\\mathcal { M }$ depends on the local property assumed. Some higher \n173 order variants are provided in Appendix A.2. For a step further, Corollary 1 reveals the condition \n174 where a contraction on value approximation loss for $\\pi _ { 2 }$ is achieved when $\\mathrm { P e V F A }$ is only trained to \n175 approximate the values of $\\pi _ { 1 }$ . Concretely, such a condition is apt to reach with tighter contraction for \n176 policy $\\pi _ { 1 }$ is, closer two policies, or smoother approximation loss function $f _ { \\hat { \\theta } }$ . \n177 Then we consider the local generalization scenario as illustrated in Figure 2(b). For any iteration $t$ \n178 of GPI, the values of current policy $\\pi _ { t }$ are approximated by $\\mathrm { P e V F A }$ , followed by a improved policy \n179 $\\pi _ { t + 1 }$ whose values are to be approximated in the next iteration. The value generalization from each \n180 $\\pi _ { t }$ and $\\pi _ { t + 1 }$ can be similarly considered as the two-policy case. In addition to the former results, we \n181 shed the light on the value generalization loss of PeVFA along policy improvement path below: ", + "bbox": [ + 140, + 193, + 825, + 291 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 296, + 825, + 367 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Lemma 2 For $\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } . . .$ Pπ2 −−−→ . . . with γt for each Pπt , if fθt is Lˆ t-continuous at πt for any $t \\geq 0$ , we have $f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\gamma _ { t } f _ { \\theta _ { t - 1 } } ( \\pi _ { t } ) + \\mathcal { M } _ { t }$ , where $\\mathcal { M } _ { t } = L _ { t } \\cdot d ( \\pi _ { t } , \\pi _ { t + 1 } )$ . ", + "bbox": [ + 163, + 371, + 821, + 406 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Corollary 2 By induction, we have 84 $\\begin{array} { r } { f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\prod _ { i = 0 } ^ { t } \\gamma _ { t } f _ { \\theta _ { - 1 } } ( \\pi _ { 0 } ) + \\sum _ { i = 0 } ^ { t - 1 } \\prod _ { j = i + 1 } ^ { t } \\gamma _ { j } \\mathcal M _ { i } + \\mathcal M _ { t } . } \\end{array}$ ", + "bbox": [ + 156, + 412, + 818, + 433 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "185 The above results indicate that the value generalization loss can be recursively bounded and has \n186 a upper bound formed by a repeated contraction on initial loss plus the accumulation of locality \n187 margins induced from each local generalization. An infinity-case discussion for Corollary 2 is in \n188 Appendix A.5. The next question is whether $\\mathrm { P e V F A }$ with value generalization among policies is \n189 preferable to the conventional VFA. To this end, we introduce a desirable condition which reveals the \n190 superiority of PeVFA during consecutive value approximation along the policy improvement path: ", + "bbox": [ + 140, + 439, + 825, + 523 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 1 During91 $\\begin{array} { r l } & { \\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots , f o r a n y t \\ge 0 , \\ i f f _ { \\theta _ { t } } ( \\pi _ { t } ) + f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le } \\\\ & { n f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le \\| \\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } ) - V ^ { \\pi _ { t + 1 } } \\| . } \\end{array}$ 92 $\\| V ^ { \\pi _ { t } } - V ^ { \\pi _ { t + 1 } } \\|$ , the ", + "bbox": [ + 156, + 532, + 825, + 570 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "193 Theorem 1 shows that the generalized value estimates $\\mathbb { V } _ { \\boldsymbol { \\theta } _ { t } } \\big ( \\pi _ { t + 1 } \\big )$ can be closer to the true values of \n194 policy $\\pi _ { t + 1 }$ than $\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )$ . Note that $\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )$ is the value approximation for $\\pi _ { t }$ which is equivalent \n195 to the counterpart $V _ { \\phi _ { t } }$ for a conventional VFA as value generalization among policies does not \n196 exist. To consecutive value approximation along policy improvement path, this means that the value \n197 generalization of $\\mathrm { P e V F A }$ has the potential to offer closer start points at each iteration. If such closer \n198 start points can often exist, we expect $\\mathrm { P e V F A }$ to be preferable to conventional VFA since value \n199 approximation can be more efficient with $\\mathrm { P e V F A }$ and it in turn facilitates the overall GPI process. \n200 However, the condition in Theorem 1 is not necessarily met in practice. Intuitively, it depends on the \n201 locality margins that may be related to function family and optimization method of PeVFA, as well \n202 as the scale of policy improvement. We leave these further theoretical investigations for future work. \n203 Instead, we empirically examine the existence of such desirable generalizations in the following. ", + "bbox": [ + 140, + 578, + 825, + 676 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 683, + 825, + 738 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.3 Empirical Evidences ", + "text_level": 1, + "bbox": [ + 173, + 753, + 356, + 768 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We empirically investigate the value generalization of PeVFA with didactic environments. In this section, PeVFA $\\mathbb { V } _ { \\theta }$ is parameterized by neural network and we use the concatenation of all weights and biases of the policy network as a straightforward representation $\\chi _ { \\pi }$ for each policy, called Raw Policy Representation $( R P R )$ . Experimental details are provided in Appendix B. ", + "bbox": [ + 165, + 779, + 825, + 835 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "209 First, we demonstrate the global generalization (illustrated in Figure 2(a)) in a continuous 2D Point \n210 Walker environment. We build the policy set $\\Pi$ with synthetic policies, each of which is a randomly \n211 initialized 2-layer tanh-activated neural network with 2 units for each layer. The size of $\\Pi$ is $2 0 \\mathrm { k }$ and \n212 the behavioral diversity of synthetic policies is verified (see Figure 7(b) in Appendix). We divide $\\Pi$ \n213 into training set (i.e., known policies $\\Pi _ { 0 }$ ) and testing set (i.e., unseen policies $\\Pi _ { 1 }$ ). We rollout the ", + "bbox": [ + 140, + 842, + 823, + 911 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/ca62a1096edd30ab0ac3480db0f68aa5589accbab003cbc10927be11f5143231.jpg", + "image_caption": [ + "Figure 3: Empirical evidences of two kinds of generalization of $\\mathrm { P e V F A }$ . (a) Global generalization: $\\mathrm { P e V F A }$ shows comparable value estimation performance on testing policy set (red) after learning on training policy set (blue). (b) Local generalization: PeVFA $( \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) )$ shows lower losses than conventional VFA $( V _ { \\phi } )$ before and after the value approximation training for successive policies along policy improvement path. In (b), the left axis is for approximation loss (lower is better) and the right axis is for average return as a reference of the policy learning process (green curve). " + ], + "image_footnote": [], + "bbox": [ + 200, + 94, + 789, + 228 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "policies in the environment to collect trajectories, based on which we perform value approximation training. Our results show that a PeVFA trained on $\\Pi _ { 0 }$ achieves reasonable generalization performance when evaluating on $\\Pi _ { 1 }$ . The average losses on training and testing set are 1.782 and 2.071 over 6 trials. Figure 3(a) shows the value predictions for policies from training and testing set (100 for each). ", + "bbox": [ + 142, + 337, + 825, + 392 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Next, we investigate the value generalization along policy improvement path, i.e., local generalization as in Figure 2(b). We use a 2-layer 8-unit policy network trained by standard PPO algorithm [50] in MuJoCo continuous control tasks. Parallel to the conventional value network $V _ { \\phi } ( s )$ (i.e., VFA) in PPO, we set a $\\mathrm { P e V F A }$ network $\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )$ as a reference for the comparison on value approximation loss. Compared to $V _ { \\phi }$ , PeVFA $\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )$ takes RPR as input and approximates the values of all historical policies $( \\{ \\pi _ { i } \\} _ { i = 0 } ^ { t } )$ in addition. We compare the value approximation losses of $V _ { \\phi }$ (red) and $\\mathbb { V } _ { \\theta }$ (blue) before (solid) and after (dashed) updating with on-policy samples collected by the improved policy $\\pi _ { t + 1 }$ at each iteration. Figure 3(b) shows the results for InvertedPendulum-v1 and Ant-v1. Results for all 7 MuJoCo tasks can be found in Appendix B.2. By comparing approximation losses before updating (red and blue solid curves), we can observe that the approximation loss of $\\mathbb { V } _ { \\theta _ { t } } ( \\chi _ { \\pi _ { t + 1 } } )$ is almost consistently lower than that of $V _ { \\phi _ { t } }$ . This means that the generalized value estimates offered by PeVFA are usually closer to the true values of $\\pi _ { t + 1 }$ , demonstrating the consequence arrived in Theorem 1. For the dashed curves, it shows that PeVFA $\\mathbb { V } _ { \\theta _ { t + 1 } } ( \\chi _ { \\pi _ { t + 1 } } )$ can achieve lower approximation loss for $\\pi _ { t + 1 }$ than conventional VFA $V _ { \\phi _ { t + 1 } }$ after the same number of training with the same on-policy samples. The empirical evidence above indicates that $\\mathrm { P e V F A }$ can be preferable to the conventional VFA for consecutive value approximation. The generalized value estimates along policy improvement path have the potential to expedite the process of GPI. ", + "bbox": [ + 166, + 398, + 825, + 633 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "3.4 Reinforcement Learning with PeVFA ", + "text_level": 1, + "bbox": [ + 163, + 642, + 472, + 657 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Based on the results above, we expect to leverage the value generalization of $\\mathrm { P e V F A }$ to facilitate RL. In Algorithm 1, we propose a general description of RL algorithm under the paradigm of GPI with PeVFA. For each iteration, the interaction experiences of current policy and the policy ", + "bbox": [ + 166, + 667, + 825, + 709 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Algorithm 1 RL under the paradigm of GPI with PeVFA $( \\mathbb { V } ( s , \\chi _ { \\pi } )$ is used for demonstration) ", + "text_level": 1, + "bbox": [ + 174, + 734, + 792, + 751 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1: Initialize policy $\\pi _ { 0 }$ , policy representation model $g , \\mathrm { P e V F A } \\ \\mathbb { V } _ { - 1 }$ and experience buffer $\\mathcal { D }$ \n2: 3: for iteration Rollout $t = 0 , 1 , \\ldots$ $\\pi _ { t }$ dohe environment and obtain $k$ trajectories $\\mathcal { T } _ { t } = \\{ \\tau _ { i } \\} _ { i = 0 } ^ { k }$ \n4: Get representation $\\chi _ { \\pi _ { t } } = g ( \\pi )$ for policy $\\pi _ { t }$ and add experiences $( \\chi _ { \\pi _ { t } } , \\tau _ { t } )$ in buffer $\\mathcal { D }$ \n5: if $t \\%$ $M = 0$ then \n6: Update PeVFA $\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { i } } )$ for previous policies with data $\\{ ( \\chi _ { \\pi _ { i } } , T _ { i } ) \\} _ { i = 0 } ^ { t - 1 }$ \n7: Update policy representation model $g$ , e.g., with approaches provided in Sec. 4 \n8: end if \n9: Update PeVFA $\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { t } } )$ for current policy $\\chi _ { \\pi _ { t } }$ and set $\\mathbb { V } _ { t } \\longleftarrow \\mathbb { V } _ { t - 1 }$ \n10: Update $\\pi _ { t }$ w.r.t $\\mathbb { V } _ { t } ( s , \\chi _ { \\pi _ { t } } )$ by policy improvement algorithm and set $\\pi _ { t + 1 } \\longleftarrow \\pi _ { t }$ \n11: end for \n239 representation are stored in a buffer (line 3-4). At an interval of $M$ iterations, PeVFA is trained via \n240 value approximation for previous policies with the stored data and the policy representation model \n241 is updated according to the method used (line 5-8). This part is unique to PeVFA for preservation \n242 and generalization of knowledge of historical policies. Next, value approximation for current policy \n243 is performed with $\\mathrm { P e V F A }$ (line 9). A key difference here is that the generalized value estimates \n244 (i.e., $\\mathbb { V } _ { t - 1 } ( \\chi _ { \\pi _ { t } } ) )$ are used as start points. Afterwards, a successive policy is obtained from typical \n245 policy improvement (line 10). Algorithm 1 can be implemented in different ways and we propose an \n246 instance implemented based on PPO [50] in our experiments later. In the next section, we introduce \n247 our methods for policy representation learning. ", + "bbox": [ + 176, + 753, + 816, + 906 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/16592e2f21ae4564e2ea2f7b946434c197861a704746ab2783434fc39908bdb1.jpg", + "image_caption": [ + "Figure 4: The framework of policy representation training. Policy network parameters used for OPR or policy state-action pairs used for SPR are fed into policy encoder with permutation-invariant (PI) transformations followed by an MLP, producing the representation $\\chi _ { \\pi }$ . Afterwards, $\\chi _ { \\pi }$ can be trained by gradients from the value approximation loss of $\\mathrm { P e V F A }$ (i.e., End-to-End), as well as (optionally) the auxiliary loss of policy recovery or the contrastive learning (i.e., InfoNCE) loss. " + ], + "image_footnote": [], + "bbox": [ + 269, + 87, + 732, + 242 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 140, + 348, + 825, + 474 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "248 4 Policy Representation Learning ", + "text_level": 1, + "bbox": [ + 140, + 493, + 470, + 511 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "To derive practical deep RL algorithms, one key point is policy representation, i.e., a low-dimensional embedding of RL policy. Intuitively, policy representation influences the approximation and generalization of PeVFA. Thus, it is of interest to find an effective policy representation based on which the superiority of PeVFA can be leveraged to improve RL algorithms. To our knowledge, policy representation is not well studied and it remains unclear on how to obtain an effective representation for an RL policy in a general case in practice. In previous section, we demonstrate the effectiveness of using policy parameters as a naive representation when policy network is small, called RPR. However, a usual policy network may have large number of parameters, thus making it inefficient and even irrational to use RPR for approximation and generalization [17, 10]. More generally, policy parameters of the policy we wish to represent may not be accessible. ", + "bbox": [ + 158, + 525, + 825, + 662 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "259 To this end, we propose a general framework of policy representation learning as illustrated in Figure \n260 4. The first thing to consider is data source, i.e., from which we can extract the information for an \n261 effective policy representation. Recall that the policy is a distribution over state and action space \n262 of high dimensionality. The features of such a distribution is not directly available. Therefore, we \n263 consider two kinds of data source below that indirectly contains the information of policies: 1) Surface \n264 Policy Representation $( S P R )$ : The first data source is state-action pairs (or trajectories [14]), since \n265 they reflect how policy may behave under such states. This data source is general since no explicit \n266 form of policy is assumed. In a geometric view, learning policy representation from state-action pairs \n267 can be viewed as capturing the features of policy via scattering sample points on the curved surface \n268 of policy distribution. 2) Origin Policy Representation (OPR): The other data source is parameters of \n269 policy since they determine the underlying form of policy distribution. Such a data source is often \n270 available during the learning process of deep RL algorithms when policy is parameterized by neural \n271 networks. Generally, we consider a policy network to be an MLP with well represented state features \n272 (e.g., features extracted by CNN for pixels or by LSTM for sequences) as input. \n273 The remaining question is how we extract the policy representation from the data sources mentioned \n274 above. As shown in Figure 4, we use permutation-invariant (PI) transformations followed by an \n275 MLP to encode the data of policy $\\pi$ into an embedding $\\chi _ { \\pi }$ for both SPR and OPR. For SPR, each ", + "bbox": [ + 142, + 670, + 825, + 863 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 142, + 869, + 825, + 911 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "276 state-action pair of $\\{ ( s _ { i } , a _ { i } ) \\} _ { i = 1 } ^ { k }$ is fed into a common MLP, followed by a Mean-Reduce operation on the outputted features across $k$ . For OPR, we perform PI transformation (similar as done for state-action pairs) inner-layer weights and biases $\\{ ( w _ { i } , b _ { i } ) \\} _ { i = 1 } ^ { h }$ for each layer first, where $h$ denotes the number of nodes in this layer and $w _ { i } , b _ { i }$ is the income weight vector from previous layer and the bias of ith node; then we concatenate encoding of layers and obtain the OPR. A illustrative description for the encoding of OPR is in Figure 12 of Appendix. ", + "bbox": [ + 140, + 90, + 825, + 175 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To train the policy embedding $\\chi _ { \\pi }$ obtained above, the most straightforward way is to backpropagate the value approximation loss of $\\mathrm { P e V F A }$ in an End-to-End $( E 2 E )$ fashion as illustrated on the lowerright of Figure 4. In addition, we provide two self-supervised training losses for both OPR and SPR, as illustrated on the upper-right of Figure 4. The first one is an auxiliary loss (AUX) of policy recovery [14], i.e., to recover the action distributions of $\\pi$ from $\\chi _ { \\pi }$ under different states. To be specific, an auxiliary policy decoder $\\bar { \\pi } ( \\cdot | s , \\chi _ { \\pi } )$ is trained through behavioral cloning, formally to minimize cross-entropy objective $\\mathcal { L } _ { \\mathrm { A U X } } = - \\mathbb { E } _ { ( s , a ) } \\left[ \\log \\bar { \\pi } ( a | s , \\chi _ { \\pi } ) \\right]$ . For the second one, we propose to train $\\chi _ { \\pi }$ by Contrastive Learning $( C L )$ [54, 51]: policies are encouraged to be close to similar ones (i.e., positive samples $\\pi ^ { + }$ ), and to be apart from different ones (i.e., negative samples $\\pi ^ { - }$ ) in representation space. For each policy, we construct positive samples by data augmentation on policy data, depending on SPR or OPR considered; and different policies along the policy improvement path naturally the InfoNCE loss [41] below: provide negative samples for each other. Finally, the embedding $\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { C L } } = - \\mathbb { E } _ { ( \\pi ^ { + } , \\{ \\pi ^ { - } \\} ) } \\left[ \\log \\frac { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) } { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) + \\sum _ { \\pi ^ { - } } \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { - } } ) } \\right] . } \\end{array}$ $\\chi _ { \\pi }$ is optimized through minimizing ", + "bbox": [ + 168, + 181, + 826, + 364 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 166, + 348, + 772, + 372 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Now, the training of policy representation model in Algorithm 1 can be performed with any combination of data sources and training losses provided above. A pseudo-code of the overall policy representation training framework and complete implementation details are provided in Appendix D. ", + "bbox": [ + 171, + 376, + 820, + 419 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5 Experiments ", + "text_level": 1, + "bbox": [ + 174, + 436, + 312, + 454 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this section, we conduct experimental study with focus on the following questions: ", + "bbox": [ + 176, + 467, + 735, + 482 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Question 1 Can value generalization offered by PeVFA improve a deep RL algorithm in practice? Question 2 Can our proposed framework to learn effective policy representation? ", + "bbox": [ + 168, + 487, + 815, + 518 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Our experiments are conducted in several OpenAI Gym continuous control tasks (one from Box2D and five from MuJoCo) [6, 58]. All experimental details and curves can be found in Appendix B. ", + "bbox": [ + 169, + 525, + 821, + 554 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Algorithm Implementation. We use PPO [50] as the basic algorithm and propose a representative implementation of Algorithm 1, called PPO-PeVFA. PPO is a policy optimization algorithm that follows the paradigm of GPI (Figure 1, left). A value network $V _ { \\phi } ( s )$ with parameters $\\phi$ (i.e., conventional VFA) is trained to approximate the value of current policy $\\pi$ ; while $\\pi$ is optimized with respect to a surrogate objective [48] using advantages calculated by $V _ { \\phi }$ and GAE [49]. Compared with original PPO, PPO-PeVFA makes use of a $\\mathrm { P e V F A }$ network $\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )$ with parameters $\\theta$ rather than the conventional VFA $V _ { \\phi } ( s )$ , and follows the training scheme as in Algorithm 1. Note PPO-PeVFA uses the same policy optimization method as original PPO and only differs at value approximation. ", + "bbox": [ + 171, + 559, + 825, + 670 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Baselines and Variants. Except for original PPO as a default baseline, we use another two baselines: 1) PPO-PeVFA with randomly generated policy representation for each policy, denoted by Ran PR; 2) PPO-PeVFA with Raw Policy Representation (RPR), i.e., use the vector of all parameters of policy network as representation as adopted in PVFs [10]. Our variants of PPO-PeVFA differ at the policy representation used. In total, we consider 6 variants denoted by the combination of the policy data choice (i.e., OPR, SPR) and representation principle choice (i.e., E2E, CL, AUX). ", + "bbox": [ + 143, + 676, + 825, + 761 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Experimental Details. For all baselines and variants, we use a normal-scale policy network with 2 layers and 64 units for each layer, resulting in over $3 \\mathrm { k }$ to 10k (e.g., Ant-v1) policy parameters depending on the environments. We do not assume the access to pre-collected policies. Thus the size of policy set increases from 1 (i.e., the initial policy) during the learning process, to about 1k to 2 for a single trial. The dimensionality of all kinds of policy representation expect for RPR is set to 64. The buffer $D$ maintains recent $2 0 0 \\mathrm { k }$ steps of interaction experience and the policy data of corresponding policy. The number of interaction step of each trial is 1M for InvDouPend-v1 and LunarLander-v2, 4M for Ant-v1 and 2M for the others. ", + "bbox": [ + 173, + 765, + 825, + 877 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Results. The overall experimental results are summarized in Table 1. In Figure 5, we provide aggregated results across all environments expect for InvDouPend-v1 and LunarLander-v2 (since ", + "bbox": [ + 165, + 882, + 821, + 911 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/2125a2c16d17e54a10aa09e7c215769e93511cfbf83fbbc503336bf666b4462b.jpg", + "table_caption": [ + "Table 1: Average returns $\\pm$ half a std) over 10 trials for algorithms. Each result is the maximum evaluation along the training process. Top two values for each environment are bold. " + ], + "table_footnote": [], + "table_body": "
EnvironmentsBenchmarksOrigin Policy Representation (Ours)Surface Policy Representation (Ours)
PPORan PRRPRE2ECLAUXE2ECLAUX
HalfCheetah-v1262124702325 ± 399.273171 ± 427.633725±348.553175±517.522774 ± 233.393349 ± 341.423216 ± 506.39
Hopper-v1163912261097 ± 213.472085 ± 310.912351 ± 231.112214 ± 360.782227 ± 297.352392 ± 263.932577 ± 217.73
Walker2d-v115051269317 ± 152.681856 ± 305.512038 ± 315.512044 ±316.321930.57 ± 456.022203 ± 381.951980 ± 325.54
Ant-v1283527422143 ± 406.643581 ± 185.434019 ± 162.473784 ± 268.993173 ± 184.753632 ± 134.273397 ± 200.03
InvDouPend-v1934493558856 ± 551.909357 ± 0.299355±0.649355±0.689355±0.899356±0.969355 ±1.42
LunarLander-v2219226-22±35.08238±3.37239 ± 3.70234 ± 3.47236± 3.13234 ± 3.13235±5.70
", + "bbox": [ + 178, + 125, + 816, + 204 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "28 most algorithms achieve near-optimal results), where all returns are normalized by the results of PPO \n29 in Table 1. Full learning curves are omitted and can be found in Appendix F.2. ", + "bbox": [ + 151, + 217, + 823, + 244 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To Question 1. From Table 1, we can find that both PPOPeVFA w/ OPR (E2E) and PPO-PeVFA w/ SPR (E2E) outperforms PPO in all 6 tasks, and achieve over $20 \\%$ improvement in Figure 5. This demonstrates the effectiveness of $\\mathrm { P e V F A }$ . Moreover, the improvement is further enlarged (to about $40 \\%$ ) by CL and AUX for both OPR and SPR. This indicates that the superiority of PeVFA can be further utilized with better policy representation that offers a more suitable space for value generalization. ", + "bbox": [ + 173, + 251, + 550, + 376 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/20a85c9161cb7eeda14c0b97ac6b6838b2911bc0a0e66da144a476b8c3115d94.jpg", + "image_caption": [ + "Figure 5: Normalized averaged returns aggregated over 4 MuJoCo tasks. " + ], + "image_footnote": [], + "bbox": [ + 576, + 257, + 808, + 393 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To Question 2. In Table 1, consistent degeneration is observed for PPO-PeVFA w/ Ran PR due to the negative effects on generalization caused by the randomness and disorder of policy representation. This phenomenon seems to be more severe for PPO-PeVFA w/ RPR due to the complexity of high-dimensional parameter space. In contrast, the improvement achieved by our proposed PPO-PeVFA variants shows that effective policy representation can be learned from policy parameters (OPR) and state-action pairs (SPR) though value approximation loss (i.e., E2E) and further improved when additional selfsupervised representation learning is involved as CL and AUX. Overall, OPR slightly outperforms SPR as CL does over AUX. We hypothesize that it is due to the stochasticity of state-action pairs which serve as inputs of SPR and training samples for AUX. This reveals the space for future improvement. In addition, we visualize the learned representation in Figure 6. We can observe that policies from different trials are locally continuous and show different modes of embedding trajectories due to random initialization and optimization; while a global evolvement among trials emerges with respect to policy performance. ", + "bbox": [ + 171, + 382, + 549, + 685 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/ac8c916c244115b54aef4064f061a500686eb8885bd22f7a8cd07c919cc350ea.jpg", + "image_caption": [ + "Figure 6: A t-SNE visualization for representations learned by PPO-PeVFA OPR (E2E) in Ant-v1. In total, 6k policies from 5 trials (denoted by different markers) are plotted, which are colored according to average return. " + ], + "image_footnote": [], + "bbox": [ + 583, + 439, + 807, + 574 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "61 6 Conclusion and Future Work ", + "text_level": 1, + "bbox": [ + 153, + 707, + 449, + 724 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, we propose Policy-extended Value Function Approximator (PeVFA) and study value generalization among policies. We propose a new form of GPI based on PeVFA which is potentially preferable to conventional VFA for value approximation. Moreover, we propose a general framework to learn low-dimensional embedding of RL policy. Our experiments demonstrate the effectiveness of the generalization characteristic of $\\mathrm { P e V F A }$ and our proposed policy representation learning methods. ", + "bbox": [ + 173, + 738, + 825, + 808 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Our work opens up some research directions on value generalization among policies and policy representation. A possible future study on the theory of value generalization among policies is to consider the interplay between approximation error, policy improvement and local generalization during GPI with PeVFA. Besides, analysis on influence factors of value generalization among policies (e.g., policy representation, architecture of ${ \\mathrm { P e V F A } }$ ) and other utilization of $\\mathrm { P e V F A }$ are expected. For better policy representation, inspirations on OPR may be got from studies on Manifold Hypothesis of neural network; the selection of more informative state-action pairs for SPR is also worth research. ", + "bbox": [ + 171, + 814, + 825, + 911 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "References ", + "text_level": 1, + "bbox": [ + 142, + 89, + 267, + 106 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "[1] M. Andrychowicz, D. Crow, A. Ray, J. Schneider, R. Fong, P. Welinder, B. McGrew, J. Tobin, P. Abbeel, and W. Zaremba. Hindsight experience replay. In NeurIPS, pages 5048–5058, 2017. \n[2] M. Andrychowicz, A. Raichuk, P. Stanczyk, M. Orsini, S. Girgin, R. Marinier, L. Hussenot, M. Geist, O. Pietquin, M. Michalski, S. Gelly, and O. Bachem. What matters in on-policy reinforcement learning? A large-scale empirical study. CoRR, abs/2006.05990, 2020. [3] I. Arnekvist, D. Kragic, and J. A. Stork. VPE: variational policy embedding for transfer reinforcement learning. In ICRA, pages 36–42, 2019. \n[4] M. G. Bellemare, W. Dabney, and R. Munos. A distributional perspective on reinforcement learning. In ICML, volume 70, pages 449–458, 2017. [5] D. P. Bertsekas and J. N. Tsitsiklis. Neuro-dynamic programming, volume 3 of Optimization and neural computation series. 1996. \n[6] G. Brockman, V. Cheung, L. Pettersson, J. Schneider, J. Schulman, J. Tang, and W. Zaremba. Openai gym. CoRR, abs/1606.01540, 2016. [7] T. Chen, S. Kornblith, M. Norouzi, and G. E. Hinton. A simple framework for contrastive learning of visual representations. CoRR, abs/2002.05709, 2020. [8] L. Engstrom, A. Ilyas, S. Santurkar, D. Tsipras, F. Janoos, L. Rudolph, and A. Madry. Implementation matters in deep RL: A case study on PPO and TRPO. In ICLR, 2020. \n[9] B. Eysenbach, X. Geng, S. Levine, and R. R. Salakhutdinov. Rewriting history with inverse RL: hindsight inference for policy improvement. In NeurIPS, 2020. \n[10] F. Faccio and J. Schmidhuber. Parameter-based value functions. CoRR, abs/2006.09226, 2020. \n[11] H. Fu, H. Tang, J. Hao, C. Chen, X. Feng, D. Li, and W. Liu. Towards effective context for metareinforcement learning: an approach based on contrastive learning. CoRR, abs/2009.13891, 2020. \n[12] S. Fujimoto, H. v. Hoof, and D. Meger. Addressing function approximation error in actor-critic methods. In ICML, 2018. \n[13] A. Gaier, A. Asteroth, and J. Mouret. Discovering representations for black-box optimization. In GECCO, pages 103–111, 2020. \n[14] A. Grover, M. Al-Shedivat, J. K. Gupta, Y. Burda, and H. Edwards. Learning policy representations in multiagent systems. In ICML, volume 80, pages 1797–1806, 2018. \n[15] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. In ICML, pages 1856–1865, 2018. \n[16] D. Hafner, T. P. Lillicrap, J. Ba, and M. Norouzi. Dream to control: Learning behaviors by latent imagination. In ICLR, 2020. \n[17] J. Harb, T. Schaul, D. Precup, and P. Bacon. Policy evaluation networks. CoRR, abs/2002.11833, 2020. \n[18] K. Hausman, J. Tobias Springenberg, Z. Wang, N. Heess, and M. A. Riedmiller. Learning an embedding space for transferable robot skills. In ICLR, 2018. \n[19] H. He and J. L. Boyd-Graber. Opponent modeling in deep reinforcement learning. In ICML, volume 48, pages 1804–1813, 2016. \n[20] K. He, H. Fan, Y. Wu, S. Xie, and R. B. Girshick. Momentum contrast for unsupervised visual representation learning. In CVPR, pages 9726–9735, 2020. \n[21] M. Igl, G. Farquhar, J. Luketina, W. Boehmer, and S. Whiteson. The impact of non-stationarity on generalisation in deep reinforcement learning. CoRR, abs/2006.05826, 2020. \n[22] N. S. Keskar, D. Mudigere, J. Nocedal, M. Smelyanskiy, and P. T. P. Tang. On large-batch training for deep learning: Generalization gap and sharp minima. In ICLR, 2017. \n[23] D. P. Kingma and M. Welling. Auto-encoding variational bayes. In ICLR, 2014. \n[24] I. Kostrikov, D. Yarats, and R. Fergus. Image augmentation is all you need: Regularizing deep reinforcement learning from pixels. CoRR, abs/2004.13649, 2020. ", + "bbox": [ + 168, + 106, + 828, + 916 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "421 [25] A. Kuznetsov, P. Shvechikov, A. Grishin, and D. P. Vetrov. Controlling overestimation bias with truncated \n422 mixture of continuous distributional quantile critics. In ICML, volume 119, pages 5556–5566, 2020. \n423 [26] M. G. Lagoudakis and R. Parr. Least-squares policy iteration. J. Mach. Learn. Res., 4:1107–1149, 2003. \n424 [27] Q. Lan, Y. Pan, A. Fyshe, and M. White. Maxmin q-learning: Controlling the estimation bias of q-learning. \n425 In ICLR, 2020. \n426 [28] M. Laskin, K. Lee, A. Stooke, L. Pinto, P. Abbeel, and A. Srinivas. Reinforcement learning with augmented \n427 data. CoRR, abs/2004.14990, 2020. \n428 [29] K. Lee, Y. Seo, S. Lee, H. Lee, and J. Shin. Context-aware dynamics model for generalization in \n429 model-based reinforcement learning. CoRR, abs/2005.06800, 2020. \n430 [30] A. Levy, G. D. Konidaris, R. P. Jr., and K. Saenko. Learning multi-level hierarchies with hindsight. In \n431 ICLR, 2019. \n432 [31] T. P. Lillicrap, J. J. Hunt, A. Pritzel, N. Heess, T. Erez, Y. Tassa, D. Silver, and D. Wierstra. Continuous \n433 control with deep reinforcement learning. In ICLR, 2015. \n434 [32] H. Liu, K. Simonyan, and Y. Yang. DARTS: differentiable architecture search. In ICLR, 2019. \n435 [33] R. Luo, F. Tian, T. Qin, E. Chen, and T. Liu. Neural architecture optimization. In NeurIPS, pages \n436 7827–7838, 2018. \n437 [34] L. V. D. Maaten and G. E. Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9: \n438 2579–2605, 2008. \n439 [35] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. A. Riedmiller, \n440 A. Fidjeland, G. Ostrovski, S. Petersen, C. Beattie, A. Sadik, I. Antonoglou, H. King, D. Kumaran, \n441 D. Wierstra, S. Legg, and D. Hassabis. Human-level control through deep reinforcement learning. Nature, \n442 518(7540):529–533, 2015. \n443 [36] V. Mnih, A. P. Badia, M. Mirza, A. Graves, T. P. Lillicrap, T. Harley, D. Silver, and K. Kavukcuoglu. \n444 Asynchronous methods for deep reinforcement learning. In ICML, 2016. \n445 [37] O. Nachum, S. Gu, H. Lee, and S. Levine. Data-efficient hierarchical reinforcement learning. CoRR, \n446 abs/1805.08296, 2018. \n447 [38] O. Nachum, S. Gu, H. Lee, and S. Levine. Near-optimal representation learning for hierarchical reinforce \n448 ment learning. In ICLR, 2019. \n449 [39] Y. E. Nesterov and B. T. Polyak. Cubic regularization of newton method and its global performance. Math. \n450 Program., 108(1):177–205, 2006. \n451 [40] R. Novak, Y. Bahri, D. A. Abolafia, J. Pennington, and J. Sohl-Dickstein. Sensitivity and generalization in \n452 neural networks: an empirical study. In ICLR, 2018. \n453 [41] A. Oord, Y. Li, and O. Vinyals. Representation learning with contrastive predictive coding. CoRR, \n454 abs/1807.03748, 2018. \n455 [42] R. Raileanu, M. Goldstein, A. Szlam, and R. Fergus. Fast adaptation via policy-dynamics value functions. \n456 CoRR, abs/2007.02879, 2020. \n457 [43] K. Rakelly, A. Zhou, C. Finn, S. Levine, and D. Quillen. Efficient off-policy meta-reinforcement learning \n458 via probabilistic context variables. In ICML, volume 97, pages 5331–5340, 2019. \n459 [44] N. Rakicevic, A. Cully, and P. Kormushev. Policy manifold search: Exploring the manifold hypothesis for \n460 diversity-based neuroevolution. CoRR, abs/2104.13424, 2021. \n461 [45] T. Schaul, D. Horgan, K. Gregor, and D. Silver. Universal value function approximators. In ICML, \n462 volume 37, pages 1312–1320, 2015. \n463 [46] B. Scherrer, M. Ghavamzadeh, V. Gabillon, B. Lesner, and M. Geist. Approximate modified policy iteration \n464 and its application to the game of tetris. J. Mach. Learn. Res., 16:1629–1676, 2015. \n465 [47] J. S Schreck, C. W Coley, and K. JM Bishop. Learning retrosynthetic planning through simulated \n466 experience. ACS central science, 5(6):970–981, 2019. \n467 [48] J. Schulman, S. Levine, P. Abbeel, M. I. Jordan, and P. Moritz. Trust region policy optimization. In ICML, \n468 pages 1889–1897, 2015. \n469 [49] J. Schulman, P. Moritz, S. Levine, M. I. Jordan, and P. Abbeel. High-dimensional continuous control using \n470 generalized advantage estimation. In ICLR, 2016. \n471 [50] J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov. Proximal policy optimization algorithms. \n472 CoRR, abs/1707.06347, 2017. \n473 [51] M. Schwarzer, A. Anand, R. Goel, R. D. Hjelm, A. C. Courville, and P. Bachman. Data-efficient \n474 reinforcement learning with momentum predictive representations. CoRR, abs/2007.05929, 2020. \n475 [52] D. Silver, G. Lever, N. Heess, T. Degris, D. Wierstra, and M. A. Riedmiller. Deterministic policy gradient \n476 algorithms. In ICML, pages 387–395, 2014. \n477 [53] D. Silver, A. Huang, C. J. Maddison, A. Guez, L. Sifre, G. van den Driessche, J. Schrittwieser, \n478 I. Antonoglou, V. Panneershelvam, M. Lanctot, S. Dieleman, D. Grewe, J. Nham, N. Kalchbrenner, \n479 I. Sutskever, T. P. Lillicrap, M. Leach, K. Kavukcuoglu, T. Graepel, and D. Hassabis. Mastering the game \n480 of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016. \n481 [54] A. Srinivas, M. Laskin, and P. Abbeel. CURL: contrastive unsupervised representations for reinforcement \n482 learning. CoRR, abs/2004.04136, 2020. \n483 [55] R. S. Sutton and A. G. Barto. Reinforcement learning - an introduction. Adaptive computation and machine \n484 learning. MIT Press, 1998. \n485 [56] R. S. Sutton, J. Modayil, M. Delp, T. Degris, P. M. Pilarski, A. White, and D. Precup. Horde: a scalable \n486 real-time architecture for learning knowledge from unsupervised sensorimotor interaction. In AAMAS, \n487 pages 761–768, 2011. \n488 [57] A. Tacchetti, H. F. Song, P. A. M. Mediano, V. Flores Zambaldi, J. Kramár, N. C. Rabinowitz, Th. Graepel, \n489 M. Botvinick, and P. W. Battaglia. Relational forward models for multi-agent learning. In ICLR, 2019. \n490 [58] E. Todorov, T. Erez, and Y. Tassa. Mujoco: A physics engine for model-based control. 2012 IEEE/RSJ \n491 International Conference on Intelligent Robots and Systems, pages 5026–5033, 2012. \n492 [59] Y. H. Tsai, Y. Wu, R. Salakhutdinov, and L. Morency. Demystifying self-supervised learning: An \n493 information-theoretical framework. CoRR, abs/2006.05576, 2020. \n494 [60] T. Unterthiner, D. Keysers, S. Gelly, O. Bousquet, and I. O. Tolstikhin. Predicting neural network accuracy \n495 from weights. CoRR, abs/2002.11448, 2020. \n496 [61] H. v. Hasselt. Double q-learning. In J. D. Lafferty, C. K. I. Williams, J. Shawe-Taylor, R. S. Zemel, and \n497 A. Culotta, editors, NeurIPS, pages 2613–2621, 2010. \n498 [62] O. Vinyals, I. Babuschkin, W. M. Czarnecki, M. Mathieu, A. Dudzik, J. Chung, D. H. Choi, R. Powell, \n499 T. Ewalds, P. Georgiev, J. Oh, D. Horgan, M. Kroiss, I. Danihelka, A. Huang, L. Sifre, T. Cai, J. P. Agapiou, \n500 M. Jaderberg, A. S. Vezhnevets, R. Leblond, T. Pohlen, V. Dalibard, D. Budden, Y. Sulsky, J. Molloy, \n501 T. L. Paine, C. Gulcehre, Z. Wang, T. Pfaff, Y. Wu, R. Ring, D. Yogatama, D. Wünsch, K. McKinney, \n502 O. Smith, T. Schaul, T. Lillicrap, K. Kavukcuoglu, D. Hassabis, C. Apps, and D. Silver. Grandmaster level \n503 in starcraft ii using multi-agent reinforcement learning. Nature, 575(7782):350–354, 2019. \n504 [63] H. Wang, N. S. Keskar, C. Xiong, and R. Socher. Identifying generalization properties in neural networks. \n505 CoRR, abs/1809.07402, 2018. \n506 [64] R. Wang, R. Yu, B. An, and Z. Rabinovich. I2hrl: Interactive influence-based hierarchical reinforcement \n507 learning. In IJCAI, pages 3131–3138, 2020. \n508 [65] J. You, B. Liu, Z. Ying, V. S. Pande, and J. Leskovec. Graph convolutional policy network for goal-directed \n509 molecular graph generation. In NeurIPS 2018, pages 6412–6422, 2018. ", + "bbox": [ + 140, + 98, + 828, + 911 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "", + "bbox": [ + 137, + 70, + 828, + 915 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "1. For all authors... ", + "bbox": [ + 214, + 116, + 330, + 128 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper’s contributions and scope? [Yes] \n(b) Did you describe the limitations of your work? [Yes] See the future work in Sec. 6. \n(c) Did you discuss any potential negative societal impacts of your work? [No] Our work is on general Reinforcement Learning study. No specific practical application is considered. \n(d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes] ", + "bbox": [ + 240, + 132, + 825, + 217 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "2. If you are including theoretical results... ", + "bbox": [ + 214, + 220, + 467, + 234 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "(a) Did you state the full set of assumptions of all theoretical results? [Yes] (b) Did you include complete proofs of all theoretical results? [Yes] ", + "bbox": [ + 240, + 238, + 686, + 267 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "3. If you ran experiments... ", + "bbox": [ + 214, + 272, + 377, + 285 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "(a) Did you include the code, data, and instructions needed to reproduce the main experimental results (either in the supplemental material or as a URL)? [No] Our experimental environment are public and standard. All the information needed to reproduce our results is provided in the main body and appendix. Code will be available publicly soon. \n(b) Did you specify all the training details (e.g., data splits, hyperparameters, how they were chosen)? [Yes] Partially in main body and all details can be found in the appendix document. \n(c) Did you report error bars (e.g., with respect to the random seed after running experiments multiple times)? [Yes] \n(d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs, internal cluster, or cloud provider)? [Yes] ", + "bbox": [ + 240, + 289, + 825, + 422 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets... ", + "bbox": [ + 215, + 428, + 767, + 440 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "(a) If your work uses existing assets, did you cite the creators? [Yes] \n(b) Did you mention the license of the assets? [Yes] We use a free education licence for students for MuJoCo. \n(c) Did you include any new assets either in the supplemental material or as a URL? [No] \n(d) Did you discuss whether and how consent was obtained from people whose data you’re using/curating? [N/A] \n(e) Did you discuss whether the data you are using/curating contains personally identifiable information or offensive content? [N/A] ", + "bbox": [ + 240, + 445, + 825, + 558 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "5. If you used crowdsourcing or conducted research with human subjects... ", + "bbox": [ + 214, + 560, + 658, + 574 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "(a) Did you include the full text of instructions given to participants and screenshots, if applicable? [N/A] \n(b) Did you describe any potential participant risks, with links to Institutional Review Board (IRB) approvals, if applicable? [N/A] \n(c) Did you include the estimated hourly wage paid to participants and the total amount spent on participant compensation? [N/A] ", + "bbox": [ + 240, + 578, + 825, + 660 + ], + "page_idx": 12 + } +] \ No newline at end of file diff --git a/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_middle.json b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..129e6c351cb0e3e0fd6e346b8caf0b77ba93737c --- /dev/null +++ b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_middle.json @@ -0,0 +1,50468 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 134, + 97, + 477, + 137 + ], + "lines": [ + { + "bbox": [ + 138, + 96, + 472, + 118 + ], + "spans": [ + { + "bbox": [ + 138, + 96, + 472, + 118 + ], + "score": 1.0, + "content": "Represent Your Own Policies: Learning with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 117, + 479, + 139 + ], + "spans": [ + { + "bbox": [ + 132, + 117, + 479, + 139 + ], + "score": 1.0, + "content": "Policy-extended Value Function Approximator", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 259, + 179, + 354, + 223 + ], + "lines": [ + { + "bbox": [ + 258, + 178, + 356, + 191 + ], + "spans": [ + { + "bbox": [ + 258, + 178, + 356, + 191 + ], + "score": 1.0, + "content": "Anonymous Author(s)", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 283, + 189, + 328, + 202 + ], + "spans": [ + { + "bbox": [ + 283, + 189, + 328, + 202 + ], + "score": 1.0, + "content": "Affiliation", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 286, + 200, + 324, + 213 + ], + "spans": [ + { + "bbox": [ + 286, + 200, + 324, + 213 + ], + "score": 1.0, + "content": "Address", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 290, + 213, + 320, + 222 + ], + "spans": [ + { + "bbox": [ + 290, + 213, + 320, + 222 + ], + "score": 1.0, + "content": "email", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 283, + 252, + 328, + 265 + ], + "lines": [ + { + "bbox": [ + 281, + 251, + 331, + 267 + ], + "spans": [ + { + "bbox": [ + 281, + 251, + 331, + 267 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 91, + 277, + 469, + 485 + ], + "lines": [ + { + "bbox": [ + 93, + 277, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 93, + 281, + 99, + 289 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 142, + 277, + 470, + 290 + ], + "score": 1.0, + "content": "We study Policy-extended Value Function Approximator (PeVFA) in Reinforce-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 93, + 289, + 470, + 301 + ], + "spans": [ + { + "bbox": [ + 93, + 291, + 99, + 300 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 141, + 289, + 470, + 301 + ], + "score": 1.0, + "content": "ment Learning (RL), which extends conventional value function approximator", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 92, + 298, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 92, + 302, + 99, + 311 + ], + "score": 1.0, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 141, + 298, + 470, + 313 + ], + "score": 1.0, + "content": "(VFA) to take as input not only the state (and action) but also an explicit policy", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 92, + 311, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 92, + 313, + 100, + 322 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 140, + 311, + 320, + 322 + ], + "score": 1.0, + "content": "representation. Such an extension enables", + "type": "text" + }, + { + "bbox": [ + 320, + 311, + 352, + 321 + ], + "score": 0.26, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 311, + 470, + 322 + ], + "score": 1.0, + "content": "to preserve values of multi-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 93, + 321, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 93, + 324, + 100, + 333 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "score": 1.0, + "content": "ple policies at the same time and brings an appealing characteristic, i.e., value", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 92, + 331, + 471, + 345 + ], + "spans": [ + { + "bbox": [ + 92, + 335, + 99, + 343 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 140, + 331, + 471, + 345 + ], + "score": 1.0, + "content": "generalization among policies. We formally analyze the value generalization un-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 92, + 342, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 92, + 345, + 100, + 354 + ], + "score": 1.0, + "content": "7", + "type": "text" + }, + { + "bbox": [ + 141, + 342, + 470, + 356 + ], + "score": 1.0, + "content": "der Generalized Policy Iteration (GPI). From theoretical and empirical lens, we", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 92, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 92, + 357, + 99, + 366 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 142, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "show that generalized value estimates offered by PeVFA may have lower initial", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 92, + 365, + 470, + 378 + ], + "spans": [ + { + "bbox": [ + 92, + 367, + 100, + 377 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 141, + 365, + 470, + 378 + ], + "score": 1.0, + "content": "approximation error to true values of successive policies, which is expected to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 90, + 376, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 90, + 378, + 100, + 388 + ], + "score": 1.0, + "content": "10", + "type": "text" + }, + { + "bbox": [ + 141, + 376, + 470, + 389 + ], + "score": 1.0, + "content": "improve consecutive value approximation during GPI. Based on above clues, we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 90, + 387, + 470, + 399 + ], + "spans": [ + { + "bbox": [ + 90, + 389, + 99, + 398 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 141, + 387, + 470, + 399 + ], + "score": 1.0, + "content": "introduce a new form of GPI with PeVFA which leverages the value generalization", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 397, + 470, + 411 + ], + "spans": [ + { + "bbox": [ + 89, + 399, + 100, + 410 + ], + "score": 1.0, + "content": "12", + "type": "text" + }, + { + "bbox": [ + 141, + 397, + 470, + 411 + ], + "score": 1.0, + "content": "along policy improvement path. Moreover, we propose a representation learning", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 90, + 408, + 470, + 422 + ], + "spans": [ + { + "bbox": [ + 90, + 411, + 99, + 420 + ], + "score": 1.0, + "content": "13", + "type": "text" + }, + { + "bbox": [ + 141, + 408, + 470, + 422 + ], + "score": 1.0, + "content": "framework for RL policy, providing several approaches to learn effective policy em-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 419, + 470, + 432 + ], + "spans": [ + { + "bbox": [ + 89, + 421, + 100, + 432 + ], + "score": 1.0, + "content": "14", + "type": "text" + }, + { + "bbox": [ + 141, + 419, + 470, + 432 + ], + "score": 1.0, + "content": "beddings from policy network parameters or state-action pairs. In our experiments,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 429, + 470, + 444 + ], + "spans": [ + { + "bbox": [ + 89, + 432, + 100, + 442 + ], + "score": 1.0, + "content": "15", + "type": "text" + }, + { + "bbox": [ + 140, + 429, + 470, + 444 + ], + "score": 1.0, + "content": "we evaluate the efficacy of value generalization offered by PeVFA and policy", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 89, + 442, + 470, + 453 + ], + "spans": [ + { + "bbox": [ + 89, + 443, + 100, + 453 + ], + "score": 1.0, + "content": "16", + "type": "text" + }, + { + "bbox": [ + 141, + 442, + 470, + 453 + ], + "score": 1.0, + "content": "representation learning in several OpenAI Gym continuous control tasks. For a", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 89, + 452, + 470, + 465 + ], + "spans": [ + { + "bbox": [ + 89, + 455, + 100, + 465 + ], + "score": 1.0, + "content": "17", + "type": "text" + }, + { + "bbox": [ + 140, + 452, + 470, + 465 + ], + "score": 1.0, + "content": "representative instance of algorithm implementation, Proximal Policy Optimization", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 89, + 463, + 469, + 476 + ], + "spans": [ + { + "bbox": [ + 89, + 465, + 100, + 475 + ], + "score": 1.0, + "content": "18", + "type": "text" + }, + { + "bbox": [ + 141, + 463, + 449, + 476 + ], + "score": 1.0, + "content": "(PPO) re-implemented under the paradigm of GPI with PeVFA achieves about", + "type": "text" + }, + { + "bbox": [ + 450, + 463, + 469, + 474 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 90, + 474, + 443, + 487 + ], + "spans": [ + { + "bbox": [ + 90, + 477, + 99, + 486 + ], + "score": 1.0, + "content": "19", + "type": "text" + }, + { + "bbox": [ + 141, + 474, + 443, + 487 + ], + "score": 1.0, + "content": "performance improvement on its vanilla counterpart in most environments.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 90, + 507, + 190, + 520 + ], + "lines": [ + { + "bbox": [ + 86, + 506, + 192, + 523 + ], + "spans": [ + { + "bbox": [ + 86, + 506, + 192, + 523 + ], + "score": 1.0, + "content": "20 1 Introduction", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 89, + 532, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 89, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 89, + 534, + 99, + 543 + ], + "score": 1.0, + "content": "21", + "type": "text" + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "Reinforcement Learning (RL) has been widely considered as a promising way to learn optimal", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 89, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 89, + 546, + 99, + 555 + ], + "score": 1.0, + "content": "22", + "type": "text" + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "score": 1.0, + "content": "policies in many decision-making problems [35, 31, 53, 65, 47, 62, 16]. One fundamental element of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 89, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 89, + 557, + 99, + 566 + ], + "score": 1.0, + "content": "23", + "type": "text" + }, + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "score": 1.0, + "content": "RL is value function which defines the long-term evaluation of a policy. With function approximation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 89, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 89, + 567, + 99, + 577 + ], + "score": 1.0, + "content": "24", + "type": "text" + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "(e.g., deep neural networks), a value function approximator (VFA) is able to approximate the values", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 88, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 88, + 578, + 99, + 588 + ], + "score": 1.0, + "content": "25", + "type": "text" + }, + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "of a policy under large and continuous state spaces. As commonly recognized, most RL algorithms", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 88, + 586, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 88, + 589, + 99, + 599 + ], + "score": 1.0, + "content": "26", + "type": "text" + }, + { + "bbox": [ + 105, + 586, + 506, + 600 + ], + "score": 1.0, + "content": "can be described as Generalized Policy Iteration (GPI) [55]. As illustrated on the left of Figure 1,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 88, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 88, + 600, + 99, + 610 + ], + "score": 1.0, + "content": "27", + "type": "text" + }, + { + "bbox": [ + 104, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "at each iteration the VFA is trained to approximate the true values of current policy (i.e., policy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 88, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 88, + 611, + 99, + 621 + ], + "score": 1.0, + "content": "28", + "type": "text" + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "evaluation), regarding which the policy is further improved (i.e., policy improvement). The value", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 88, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 88, + 622, + 99, + 632 + ], + "score": 1.0, + "content": "29", + "type": "text" + }, + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "function approximation error hinders the effectiveness of policy improvement and then the overall", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 88, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 88, + 632, + 100, + 643 + ], + "score": 1.0, + "content": "30", + "type": "text" + }, + { + "bbox": [ + 106, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "optimality of GPI [5, 46]. Unfortunately, such errors are inevitable under function approximation. A", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 89, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 644, + 99, + 654 + ], + "score": 1.0, + "content": "31", + "type": "text" + }, + { + "bbox": [ + 105, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "large number of samples are usually required to ensure high-quality value estimates, resulting in the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 89, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 89, + 655, + 99, + 664 + ], + "score": 1.0, + "content": "32", + "type": "text" + }, + { + "bbox": [ + 106, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "sample-inefficiency of deep RL algorithms. Therefore, this raises an urgent need for more efficient", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 89, + 664, + 289, + 676 + ], + "spans": [ + { + "bbox": [ + 89, + 666, + 99, + 676 + ], + "score": 1.0, + "content": "33", + "type": "text" + }, + { + "bbox": [ + 105, + 664, + 289, + 676 + ], + "score": 1.0, + "content": "value approximation methods [61, 4, 12, 25].", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 91, + 680, + 504, + 713 + ], + "lines": [ + { + "bbox": [ + 90, + 680, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 90, + 682, + 100, + 691 + ], + "score": 1.0, + "content": "34", + "type": "text" + }, + { + "bbox": [ + 103, + 680, + 506, + 693 + ], + "score": 1.0, + "content": "An intuitive idea to improve the efficiency value approximation is to leverage the knowledge on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 88, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 88, + 693, + 100, + 702 + ], + "score": 1.0, + "content": "35", + "type": "text" + }, + { + "bbox": [ + 104, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "the values of previous encountered policies. However, a conventional VFA usually approximates", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 88, + 702, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 88, + 702, + 506, + 715 + ], + "score": 1.0, + "content": "36 the values of one policy and values learned from old policies are over-written gradually during", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 103, + 731, + 499, + 742 + ], + "lines": [ + { + "bbox": [ + 105, + 730, + 500, + 743 + ], + "spans": [ + { + "bbox": [ + 105, + 730, + 500, + 743 + ], + "score": 1.0, + "content": "Submitted to 35th Conference on Neural Information Processing Systems (NeurIPS 2021). Do not distribute.", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 134, + 97, + 477, + 137 + ], + "lines": [ + { + "bbox": [ + 138, + 96, + 472, + 118 + ], + "spans": [ + { + "bbox": [ + 138, + 96, + 472, + 118 + ], + "score": 1.0, + "content": "Represent Your Own Policies: Learning with", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 132, + 117, + 479, + 139 + ], + "spans": [ + { + "bbox": [ + 132, + 117, + 479, + 139 + ], + "score": 1.0, + "content": "Policy-extended Value Function Approximator", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 259, + 179, + 354, + 223 + ], + "lines": [ + { + "bbox": [ + 258, + 178, + 356, + 191 + ], + "spans": [ + { + "bbox": [ + 258, + 178, + 356, + 191 + ], + "score": 1.0, + "content": "Anonymous Author(s)", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 283, + 189, + 328, + 202 + ], + "spans": [ + { + "bbox": [ + 283, + 189, + 328, + 202 + ], + "score": 1.0, + "content": "Affiliation", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 286, + 200, + 324, + 213 + ], + "spans": [ + { + "bbox": [ + 286, + 200, + 324, + 213 + ], + "score": 1.0, + "content": "Address", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 290, + 213, + 320, + 222 + ], + "spans": [ + { + "bbox": [ + 290, + 213, + 320, + 222 + ], + "score": 1.0, + "content": "email", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 258, + 178, + 356, + 222 + ] + }, + { + "type": "title", + "bbox": [ + 283, + 252, + 328, + 265 + ], + "lines": [ + { + "bbox": [ + 281, + 251, + 331, + 267 + ], + "spans": [ + { + "bbox": [ + 281, + 251, + 331, + 267 + ], + "score": 1.0, + "content": "Abstract", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "index", + "bbox": [ + 91, + 277, + 469, + 485 + ], + "lines": [ + { + "bbox": [ + 93, + 277, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 93, + 281, + 99, + 289 + ], + "score": 1.0, + "content": "1", + "type": "text" + }, + { + "bbox": [ + 142, + 277, + 470, + 290 + ], + "score": 1.0, + "content": "We study Policy-extended Value Function Approximator (PeVFA) in Reinforce-", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 289, + 470, + 301 + ], + "spans": [ + { + "bbox": [ + 93, + 291, + 99, + 300 + ], + "score": 1.0, + "content": "2", + "type": "text" + }, + { + "bbox": [ + 141, + 289, + 470, + 301 + ], + "score": 1.0, + "content": "ment Learning (RL), which extends conventional value function approximator", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 298, + 470, + 313 + ], + "spans": [ + { + "bbox": [ + 92, + 302, + 99, + 311 + ], + "score": 1.0, + "content": "3", + "type": "text" + }, + { + "bbox": [ + 141, + 298, + 470, + 313 + ], + "score": 1.0, + "content": "(VFA) to take as input not only the state (and action) but also an explicit policy", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 311, + 470, + 322 + ], + "spans": [ + { + "bbox": [ + 92, + 313, + 100, + 322 + ], + "score": 1.0, + "content": "4", + "type": "text" + }, + { + "bbox": [ + 140, + 311, + 320, + 322 + ], + "score": 1.0, + "content": "representation. Such an extension enables", + "type": "text" + }, + { + "bbox": [ + 320, + 311, + 352, + 321 + ], + "score": 0.26, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 311, + 470, + 322 + ], + "score": 1.0, + "content": "to preserve values of multi-", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 93, + 321, + 470, + 334 + ], + "spans": [ + { + "bbox": [ + 93, + 324, + 100, + 333 + ], + "score": 1.0, + "content": "5", + "type": "text" + }, + { + "bbox": [ + 141, + 321, + 470, + 334 + ], + "score": 1.0, + "content": "ple policies at the same time and brings an appealing characteristic, i.e., value", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 331, + 471, + 345 + ], + "spans": [ + { + "bbox": [ + 92, + 335, + 99, + 343 + ], + "score": 1.0, + "content": "6", + "type": "text" + }, + { + "bbox": [ + 140, + 331, + 471, + 345 + ], + "score": 1.0, + "content": "generalization among policies. We formally analyze the value generalization un-", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 342, + 470, + 356 + ], + "spans": [ + { + "bbox": [ + 92, + 345, + 100, + 354 + ], + "score": 1.0, + "content": "7", + "type": "text" + }, + { + "bbox": [ + 141, + 342, + 470, + 356 + ], + "score": 1.0, + "content": "der Generalized Policy Iteration (GPI). From theoretical and empirical lens, we", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 354, + 470, + 367 + ], + "spans": [ + { + "bbox": [ + 92, + 357, + 99, + 366 + ], + "score": 1.0, + "content": "8", + "type": "text" + }, + { + "bbox": [ + 142, + 354, + 470, + 367 + ], + "score": 1.0, + "content": "show that generalized value estimates offered by PeVFA may have lower initial", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 92, + 365, + 470, + 378 + ], + "spans": [ + { + "bbox": [ + 92, + 367, + 100, + 377 + ], + "score": 1.0, + "content": "9", + "type": "text" + }, + { + "bbox": [ + 141, + 365, + 470, + 378 + ], + "score": 1.0, + "content": "approximation error to true values of successive policies, which is expected to", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 376, + 470, + 389 + ], + "spans": [ + { + "bbox": [ + 90, + 378, + 100, + 388 + ], + "score": 1.0, + "content": "10", + "type": "text" + }, + { + "bbox": [ + 141, + 376, + 470, + 389 + ], + "score": 1.0, + "content": "improve consecutive value approximation during GPI. Based on above clues, we", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 387, + 470, + 399 + ], + "spans": [ + { + "bbox": [ + 90, + 389, + 99, + 398 + ], + "score": 1.0, + "content": "11", + "type": "text" + }, + { + "bbox": [ + 141, + 387, + 470, + 399 + ], + "score": 1.0, + "content": "introduce a new form of GPI with PeVFA which leverages the value generalization", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 397, + 470, + 411 + ], + "spans": [ + { + "bbox": [ + 89, + 399, + 100, + 410 + ], + "score": 1.0, + "content": "12", + "type": "text" + }, + { + "bbox": [ + 141, + 397, + 470, + 411 + ], + "score": 1.0, + "content": "along policy improvement path. Moreover, we propose a representation learning", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 408, + 470, + 422 + ], + "spans": [ + { + "bbox": [ + 90, + 411, + 99, + 420 + ], + "score": 1.0, + "content": "13", + "type": "text" + }, + { + "bbox": [ + 141, + 408, + 470, + 422 + ], + "score": 1.0, + "content": "framework for RL policy, providing several approaches to learn effective policy em-", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 419, + 470, + 432 + ], + "spans": [ + { + "bbox": [ + 89, + 421, + 100, + 432 + ], + "score": 1.0, + "content": "14", + "type": "text" + }, + { + "bbox": [ + 141, + 419, + 470, + 432 + ], + "score": 1.0, + "content": "beddings from policy network parameters or state-action pairs. In our experiments,", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 429, + 470, + 444 + ], + "spans": [ + { + "bbox": [ + 89, + 432, + 100, + 442 + ], + "score": 1.0, + "content": "15", + "type": "text" + }, + { + "bbox": [ + 140, + 429, + 470, + 444 + ], + "score": 1.0, + "content": "we evaluate the efficacy of value generalization offered by PeVFA and policy", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 442, + 470, + 453 + ], + "spans": [ + { + "bbox": [ + 89, + 443, + 100, + 453 + ], + "score": 1.0, + "content": "16", + "type": "text" + }, + { + "bbox": [ + 141, + 442, + 470, + 453 + ], + "score": 1.0, + "content": "representation learning in several OpenAI Gym continuous control tasks. For a", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 452, + 470, + 465 + ], + "spans": [ + { + "bbox": [ + 89, + 455, + 100, + 465 + ], + "score": 1.0, + "content": "17", + "type": "text" + }, + { + "bbox": [ + 140, + 452, + 470, + 465 + ], + "score": 1.0, + "content": "representative instance of algorithm implementation, Proximal Policy Optimization", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 463, + 469, + 476 + ], + "spans": [ + { + "bbox": [ + 89, + 465, + 100, + 475 + ], + "score": 1.0, + "content": "18", + "type": "text" + }, + { + "bbox": [ + 141, + 463, + 449, + 476 + ], + "score": 1.0, + "content": "(PPO) re-implemented under the paradigm of GPI with PeVFA achieves about", + "type": "text" + }, + { + "bbox": [ + 450, + 463, + 469, + 474 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 474, + 443, + 487 + ], + "spans": [ + { + "bbox": [ + 90, + 477, + 99, + 486 + ], + "score": 1.0, + "content": "19", + "type": "text" + }, + { + "bbox": [ + 141, + 474, + 443, + 487 + ], + "score": 1.0, + "content": "performance improvement on its vanilla counterpart in most environments.", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + } + ], + "index": 16, + "bbox_fs": [ + 89, + 277, + 471, + 487 + ] + }, + { + "type": "title", + "bbox": [ + 90, + 507, + 190, + 520 + ], + "lines": [ + { + "bbox": [ + 86, + 506, + 192, + 523 + ], + "spans": [ + { + "bbox": [ + 86, + 506, + 192, + 523 + ], + "score": 1.0, + "content": "20 1 Introduction", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "index", + "bbox": [ + 89, + 532, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 89, + 532, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 89, + 534, + 99, + 543 + ], + "score": 1.0, + "content": "21", + "type": "text" + }, + { + "bbox": [ + 105, + 532, + 505, + 545 + ], + "score": 1.0, + "content": "Reinforcement Learning (RL) has been widely considered as a promising way to learn optimal", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 543, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 89, + 546, + 99, + 555 + ], + "score": 1.0, + "content": "22", + "type": "text" + }, + { + "bbox": [ + 106, + 543, + 505, + 555 + ], + "score": 1.0, + "content": "policies in many decision-making problems [35, 31, 53, 65, 47, 62, 16]. One fundamental element of", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 553, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 89, + 557, + 99, + 566 + ], + "score": 1.0, + "content": "23", + "type": "text" + }, + { + "bbox": [ + 105, + 553, + 505, + 568 + ], + "score": 1.0, + "content": "RL is value function which defines the long-term evaluation of a policy. With function approximation", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 565, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 89, + 567, + 99, + 577 + ], + "score": 1.0, + "content": "24", + "type": "text" + }, + { + "bbox": [ + 105, + 565, + 505, + 578 + ], + "score": 1.0, + "content": "(e.g., deep neural networks), a value function approximator (VFA) is able to approximate the values", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 576, + 505, + 589 + ], + "spans": [ + { + "bbox": [ + 88, + 578, + 99, + 588 + ], + "score": 1.0, + "content": "25", + "type": "text" + }, + { + "bbox": [ + 105, + 576, + 505, + 589 + ], + "score": 1.0, + "content": "of a policy under large and continuous state spaces. As commonly recognized, most RL algorithms", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 586, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 88, + 589, + 99, + 599 + ], + "score": 1.0, + "content": "26", + "type": "text" + }, + { + "bbox": [ + 105, + 586, + 506, + 600 + ], + "score": 1.0, + "content": "can be described as Generalized Policy Iteration (GPI) [55]. As illustrated on the left of Figure 1,", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 88, + 600, + 99, + 610 + ], + "score": 1.0, + "content": "27", + "type": "text" + }, + { + "bbox": [ + 104, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "at each iteration the VFA is trained to approximate the true values of current policy (i.e., policy", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 88, + 611, + 99, + 621 + ], + "score": 1.0, + "content": "28", + "type": "text" + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "evaluation), regarding which the policy is further improved (i.e., policy improvement). The value", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 88, + 622, + 99, + 632 + ], + "score": 1.0, + "content": "29", + "type": "text" + }, + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "function approximation error hinders the effectiveness of policy improvement and then the overall", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 631, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 88, + 632, + 100, + 643 + ], + "score": 1.0, + "content": "30", + "type": "text" + }, + { + "bbox": [ + 106, + 631, + 506, + 644 + ], + "score": 1.0, + "content": "optimality of GPI [5, 46]. Unfortunately, such errors are inevitable under function approximation. A", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 642, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 89, + 644, + 99, + 654 + ], + "score": 1.0, + "content": "31", + "type": "text" + }, + { + "bbox": [ + 105, + 642, + 505, + 654 + ], + "score": 1.0, + "content": "large number of samples are usually required to ensure high-quality value estimates, resulting in the", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 653, + 506, + 666 + ], + "spans": [ + { + "bbox": [ + 89, + 655, + 99, + 664 + ], + "score": 1.0, + "content": "32", + "type": "text" + }, + { + "bbox": [ + 106, + 653, + 506, + 666 + ], + "score": 1.0, + "content": "sample-inefficiency of deep RL algorithms. Therefore, this raises an urgent need for more efficient", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 664, + 289, + 676 + ], + "spans": [ + { + "bbox": [ + 89, + 666, + 99, + 676 + ], + "score": 1.0, + "content": "33", + "type": "text" + }, + { + "bbox": [ + 105, + 664, + 289, + 676 + ], + "score": 1.0, + "content": "value approximation methods [61, 4, 12, 25].", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 680, + 506, + 693 + ], + "spans": [ + { + "bbox": [ + 90, + 682, + 100, + 691 + ], + "score": 1.0, + "content": "34", + "type": "text" + }, + { + "bbox": [ + 103, + 680, + 506, + 693 + ], + "score": 1.0, + "content": "An intuitive idea to improve the efficiency value approximation is to leverage the knowledge on", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 690, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 88, + 693, + 100, + 702 + ], + "score": 1.0, + "content": "35", + "type": "text" + }, + { + "bbox": [ + 104, + 690, + 505, + 703 + ], + "score": 1.0, + "content": "the values of previous encountered policies. However, a conventional VFA usually approximates", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 702, + 506, + 715 + ], + "spans": [ + { + "bbox": [ + 88, + 702, + 506, + 715 + ], + "score": 1.0, + "content": "36 the values of one policy and values learned from old policies are over-written gradually during", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 89, + 234, + 99, + 244 + ], + "score": 1.0, + "content": "37", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "the learning process. This means that the previously learned knowledge cannot be preserved and", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 88, + 245, + 99, + 254 + ], + "score": 1.0, + "content": "38", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "utilized with one conventional VFA. Thus, such limitations prevent the potentials to leverage the", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 88, + 255, + 99, + 266 + ], + "score": 1.0, + "content": "39", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "previous knowledge for future learning. In this paper, we study Policy-extended Value Function", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 88, + 267, + 99, + 277 + ], + "score": 1.0, + "content": "40", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "Approximator (PeVFA), which additionally takes an explicit policy representation as input in contrast", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 275, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 88, + 277, + 99, + 288 + ], + "score": 1.0, + "content": "41", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 275, + 506, + 288 + ], + "score": 1.0, + "content": "to conventional VFA. Thanks to the policy representation input, PeVFA is able to approximate values", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 88, + 288, + 100, + 298 + ], + "score": 1.0, + "content": "42", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "for multiple policies and induces value generalization among policies. We formally analyze the", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 88, + 299, + 99, + 309 + ], + "score": 1.0, + "content": "43", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "generalization of approximate values among policies in a general form. From both theoretical and", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 308, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 88, + 310, + 99, + 320 + ], + "score": 1.0, + "content": "44", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 308, + 506, + 320 + ], + "score": 1.0, + "content": "empirical lens, we show that the generalized value estimates can be closer to the true values of", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 317, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 88, + 321, + 99, + 331 + ], + "score": 1.0, + "content": "45", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 317, + 506, + 333 + ], + "score": 1.0, + "content": "the successive policy, which can be beneficial to consecutive value approximation along the policy", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 330, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 88, + 332, + 99, + 342 + ], + "score": 1.0, + "content": "46", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 330, + 506, + 342 + ], + "score": 1.0, + "content": "improvement path, called local generalization. Based on above clues, we introduce a new form", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 88, + 343, + 99, + 353 + ], + "score": 1.0, + "content": "47", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "of GPI with PeVFA (the right of Figure 1) that leverages the local generalization to improve the", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 352, + 435, + 365 + ], + "spans": [ + { + "bbox": [ + 88, + 354, + 100, + 363 + ], + "score": 1.0, + "content": "48", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 352, + 435, + 365 + ], + "score": 1.0, + "content": "efficiency of consecutive value approximation along the policy improvement path.", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 368, + 507, + 381 + ], + "spans": [ + { + "bbox": [ + 89, + 370, + 99, + 380 + ], + "score": 1.0, + "content": "49", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 368, + 507, + 381 + ], + "score": 1.0, + "content": "One key point of GPI with PeVFA is the representation of policy since it determines how PeVFA gen-", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 378, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 89, + 381, + 99, + 391 + ], + "score": 1.0, + "content": "50", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "score": 1.0, + "content": "eralizes the values. For this, we propose a framework to learn effective low-dimensional embedding", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 88, + 392, + 99, + 402 + ], + "score": 1.0, + "content": "51", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "of RL policy. We use network parameters or state-action pairs as policy data and encode them into", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 88, + 403, + 99, + 413 + ], + "score": 1.0, + "content": "52", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "low-dimensional embeddings; then the embeddings are trained to capture the effective information", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 88, + 414, + 99, + 424 + ], + "score": 1.0, + "content": "53", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "through contrastive learning and policy recovery. Finally, we evaluate the efficacy of GPI with PeVFA", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 88, + 425, + 99, + 435 + ], + "score": 1.0, + "content": "54", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "score": 1.0, + "content": "and our policy representations. In principle, GPI with PeVFA is general and can be implemented", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 88, + 435, + 100, + 446 + ], + "score": 1.0, + "content": "55", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "in different ways. As a practical instance, we re-implement Proximal Policy Optimization (PPO)", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 88, + 447, + 99, + 457 + ], + "score": 1.0, + "content": "56", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "with PeVFA and propose PPO-PeVFA algorithm. Our experimental results on several OpenAI Gym", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 89, + 457, + 99, + 468 + ], + "score": 1.0, + "content": "57", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "continuous control tasks demonstrate the effectiveness of both value generalization offered by PeVFA", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 465, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 89, + 468, + 99, + 478 + ], + "score": 1.0, + "content": "58", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 465, + 305, + 480 + ], + "score": 1.0, + "content": "and learned policy representations, with an about", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 305, + 466, + 325, + 477 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 325, + 465, + 505, + 480 + ], + "score": 1.0, + "content": "improvement in average returns achieved by", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 478, + 300, + 489 + ], + "spans": [ + { + "bbox": [ + 88, + 479, + 99, + 489 + ], + "score": 1.0, + "content": "59", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 478, + 300, + 489 + ], + "score": 1.0, + "content": "our best variants on standard PPO in most tasks.", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 90, + 495, + 99, + 505 + ], + "score": 1.0, + "content": "60", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "We summarize our main contributions below. 1) We study the value generalization among policies", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 505, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 89, + 507, + 99, + 516 + ], + "score": 1.0, + "content": "61", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 505, + 506, + 517 + ], + "score": 1.0, + "content": "induced by PeVFA. From both theoretical and empirical aspects, we shed the light on the situations", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 516, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 89, + 518, + 100, + 527 + ], + "score": 1.0, + "content": "62", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 516, + 506, + 528 + ], + "score": 1.0, + "content": "where the generalization can be beneficial to the learning along policy improvement path. 2) We", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 527, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 89, + 529, + 100, + 538 + ], + "score": 1.0, + "content": "63", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 527, + 506, + 539 + ], + "score": 1.0, + "content": "propose a framework for policy representation learning. To our knowledge, we make the first attempt", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 89, + 539, + 100, + 549 + ], + "score": 1.0, + "content": "64", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 538, + 300, + 549 + ], + "score": 1.0, + "content": "to learn a low-dimensional embedding of over", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 300, + 537, + 317, + 548 + ], + "score": 0.28, + "content": "1 0 \\mathrm { k }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 317, + 538, + 505, + 549 + ], + "score": 1.0, + "content": "network parameters for an RL policy. 3) We", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 100, + 560 + ], + "score": 1.0, + "content": "65", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "introduce GPI with PeVFA that leverages the value generalization in a general form. Our experimental", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 559, + 503, + 572 + ], + "spans": [ + { + "bbox": [ + 89, + 561, + 100, + 571 + ], + "score": 1.0, + "content": "66", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 559, + 503, + 572 + ], + "score": 1.0, + "content": "results demonstrate the potential of PeVFA in deriving practical and more effective RL algorithms.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + } + ], + "index": 33, + "bbox_fs": [ + 88, + 532, + 506, + 676 + ] + }, + { + "type": "index", + "bbox": [ + 91, + 680, + 504, + 713 + ], + "lines": [], + "index": 41, + "bbox_fs": [ + 88, + 680, + 506, + 715 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 140, + 0, + 469, + 155 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 0, + 469, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 0, + 469, + 155 + ], + "spans": [ + { + "bbox": [ + 140, + 0, + 469, + 155 + ], + "score": 0.112, + "type": "image", + "image_path": "38feb809737473fb7948d8361bed05d65eceb8e03420789b9e49c35c2b8d2206.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 140, + 0, + 469, + 51.666666666666664 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 140, + 51.666666666666664, + 469, + 103.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 140, + 103.33333333333333, + 469, + 155.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 165, + 505, + 210 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 165, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 179 + ], + "score": 1.0, + "content": "Figure 1: Generalized Policy Iteration (GPI) with function approximation. Left: GPI with con-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 265, + 189 + ], + "score": 1.0, + "content": "ventional value function approximator", + "type": "text" + }, + { + "bbox": [ + 266, + 177, + 278, + 189 + ], + "score": 0.88, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 177, + 384, + 189 + ], + "score": 1.0, + "content": ". Right: GPI with PeVFA", + "type": "text" + }, + { + "bbox": [ + 385, + 177, + 417, + 189 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "(Sec. 3) where extra", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 311, + 201 + ], + "score": 1.0, + "content": "generalization steps exist. The subscripts of policy", + "type": "text" + }, + { + "bbox": [ + 312, + 190, + 319, + 198 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 189, + 443, + 201 + ], + "score": 1.0, + "content": "and value function parameters", + "type": "text" + }, + { + "bbox": [ + 443, + 189, + 460, + 199 + ], + "score": 0.9, + "content": "\\phi , \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 199, + 460, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 460, + 211 + ], + "score": 1.0, + "content": "iteration number. The squiggle lines represent non-perfect approximation of true values.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 89, + 231, + 505, + 363 + ], + "lines": [ + { + "bbox": [ + 89, + 231, + 506, + 245 + ], + "spans": [ + { + "bbox": [ + 89, + 234, + 99, + 244 + ], + "score": 1.0, + "content": "37", + "type": "text" + }, + { + "bbox": [ + 105, + 231, + 506, + 245 + ], + "score": 1.0, + "content": "the learning process. This means that the previously learned knowledge cannot be preserved and", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 88, + 243, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 88, + 245, + 99, + 254 + ], + "score": 1.0, + "content": "38", + "type": "text" + }, + { + "bbox": [ + 105, + 243, + 505, + 255 + ], + "score": 1.0, + "content": "utilized with one conventional VFA. Thus, such limitations prevent the potentials to leverage the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 88, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 88, + 255, + 99, + 266 + ], + "score": 1.0, + "content": "39", + "type": "text" + }, + { + "bbox": [ + 105, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "previous knowledge for future learning. In this paper, we study Policy-extended Value Function", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 88, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 88, + 267, + 99, + 277 + ], + "score": 1.0, + "content": "40", + "type": "text" + }, + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "Approximator (PeVFA), which additionally takes an explicit policy representation as input in contrast", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 88, + 275, + 506, + 288 + ], + "spans": [ + { + "bbox": [ + 88, + 277, + 99, + 288 + ], + "score": 1.0, + "content": "41", + "type": "text" + }, + { + "bbox": [ + 105, + 275, + 506, + 288 + ], + "score": 1.0, + "content": "to conventional VFA. Thanks to the policy representation input, PeVFA is able to approximate values", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 88, + 285, + 506, + 299 + ], + "spans": [ + { + "bbox": [ + 88, + 288, + 100, + 298 + ], + "score": 1.0, + "content": "42", + "type": "text" + }, + { + "bbox": [ + 105, + 285, + 506, + 299 + ], + "score": 1.0, + "content": "for multiple policies and induces value generalization among policies. We formally analyze the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 88, + 297, + 506, + 310 + ], + "spans": [ + { + "bbox": [ + 88, + 299, + 99, + 309 + ], + "score": 1.0, + "content": "43", + "type": "text" + }, + { + "bbox": [ + 105, + 297, + 506, + 310 + ], + "score": 1.0, + "content": "generalization of approximate values among policies in a general form. From both theoretical and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 88, + 308, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 88, + 310, + 99, + 320 + ], + "score": 1.0, + "content": "44", + "type": "text" + }, + { + "bbox": [ + 105, + 308, + 506, + 320 + ], + "score": 1.0, + "content": "empirical lens, we show that the generalized value estimates can be closer to the true values of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 88, + 317, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 88, + 321, + 99, + 331 + ], + "score": 1.0, + "content": "45", + "type": "text" + }, + { + "bbox": [ + 105, + 317, + 506, + 333 + ], + "score": 1.0, + "content": "the successive policy, which can be beneficial to consecutive value approximation along the policy", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 88, + 330, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 88, + 332, + 99, + 342 + ], + "score": 1.0, + "content": "46", + "type": "text" + }, + { + "bbox": [ + 105, + 330, + 506, + 342 + ], + "score": 1.0, + "content": "improvement path, called local generalization. Based on above clues, we introduce a new form", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 88, + 340, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 88, + 343, + 99, + 353 + ], + "score": 1.0, + "content": "47", + "type": "text" + }, + { + "bbox": [ + 105, + 340, + 506, + 354 + ], + "score": 1.0, + "content": "of GPI with PeVFA (the right of Figure 1) that leverages the local generalization to improve the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 88, + 352, + 435, + 365 + ], + "spans": [ + { + "bbox": [ + 88, + 354, + 100, + 363 + ], + "score": 1.0, + "content": "48", + "type": "text" + }, + { + "bbox": [ + 105, + 352, + 435, + 365 + ], + "score": 1.0, + "content": "efficiency of consecutive value approximation along the policy improvement path.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 89, + 368, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 89, + 368, + 507, + 381 + ], + "spans": [ + { + "bbox": [ + 89, + 370, + 99, + 380 + ], + "score": 1.0, + "content": "49", + "type": "text" + }, + { + "bbox": [ + 106, + 368, + 507, + 381 + ], + "score": 1.0, + "content": "One key point of GPI with PeVFA is the representation of policy since it determines how PeVFA gen-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 378, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 89, + 381, + 99, + 391 + ], + "score": 1.0, + "content": "50", + "type": "text" + }, + { + "bbox": [ + 105, + 378, + 505, + 393 + ], + "score": 1.0, + "content": "eralizes the values. For this, we propose a framework to learn effective low-dimensional embedding", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 88, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 88, + 392, + 99, + 402 + ], + "score": 1.0, + "content": "51", + "type": "text" + }, + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "of RL policy. We use network parameters or state-action pairs as policy data and encode them into", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 88, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 88, + 403, + 99, + 413 + ], + "score": 1.0, + "content": "52", + "type": "text" + }, + { + "bbox": [ + 106, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "low-dimensional embeddings; then the embeddings are trained to capture the effective information", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 88, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 88, + 414, + 99, + 424 + ], + "score": 1.0, + "content": "53", + "type": "text" + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "through contrastive learning and policy recovery. Finally, we evaluate the efficacy of GPI with PeVFA", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 88, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 88, + 425, + 99, + 435 + ], + "score": 1.0, + "content": "54", + "type": "text" + }, + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "score": 1.0, + "content": "and our policy representations. In principle, GPI with PeVFA is general and can be implemented", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 88, + 433, + 506, + 447 + ], + "spans": [ + { + "bbox": [ + 88, + 435, + 100, + 446 + ], + "score": 1.0, + "content": "55", + "type": "text" + }, + { + "bbox": [ + 105, + 433, + 506, + 447 + ], + "score": 1.0, + "content": "in different ways. As a practical instance, we re-implement Proximal Policy Optimization (PPO)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 88, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 88, + 447, + 99, + 457 + ], + "score": 1.0, + "content": "56", + "type": "text" + }, + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "with PeVFA and propose PPO-PeVFA algorithm. Our experimental results on several OpenAI Gym", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 89, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 89, + 457, + 99, + 468 + ], + "score": 1.0, + "content": "57", + "type": "text" + }, + { + "bbox": [ + 105, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "continuous control tasks demonstrate the effectiveness of both value generalization offered by PeVFA", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 89, + 465, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 89, + 468, + 99, + 478 + ], + "score": 1.0, + "content": "58", + "type": "text" + }, + { + "bbox": [ + 105, + 465, + 305, + 480 + ], + "score": 1.0, + "content": "and learned policy representations, with an about", + "type": "text" + }, + { + "bbox": [ + 305, + 466, + 325, + 477 + ], + "score": 0.87, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 465, + 505, + 480 + ], + "score": 1.0, + "content": "improvement in average returns achieved by", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 88, + 478, + 300, + 489 + ], + "spans": [ + { + "bbox": [ + 88, + 479, + 99, + 489 + ], + "score": 1.0, + "content": "59", + "type": "text" + }, + { + "bbox": [ + 106, + 478, + 300, + 489 + ], + "score": 1.0, + "content": "our best variants on standard PPO in most tasks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 90, + 493, + 505, + 571 + ], + "lines": [ + { + "bbox": [ + 90, + 493, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 90, + 495, + 99, + 505 + ], + "score": 1.0, + "content": "60", + "type": "text" + }, + { + "bbox": [ + 105, + 493, + 505, + 506 + ], + "score": 1.0, + "content": "We summarize our main contributions below. 1) We study the value generalization among policies", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 89, + 505, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 89, + 507, + 99, + 516 + ], + "score": 1.0, + "content": "61", + "type": "text" + }, + { + "bbox": [ + 105, + 505, + 506, + 517 + ], + "score": 1.0, + "content": "induced by PeVFA. From both theoretical and empirical aspects, we shed the light on the situations", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 89, + 516, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 89, + 518, + 100, + 527 + ], + "score": 1.0, + "content": "62", + "type": "text" + }, + { + "bbox": [ + 105, + 516, + 506, + 528 + ], + "score": 1.0, + "content": "where the generalization can be beneficial to the learning along policy improvement path. 2) We", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 89, + 527, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 89, + 529, + 100, + 538 + ], + "score": 1.0, + "content": "63", + "type": "text" + }, + { + "bbox": [ + 104, + 527, + 506, + 539 + ], + "score": 1.0, + "content": "propose a framework for policy representation learning. To our knowledge, we make the first attempt", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 89, + 537, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 89, + 539, + 100, + 549 + ], + "score": 1.0, + "content": "64", + "type": "text" + }, + { + "bbox": [ + 105, + 538, + 300, + 549 + ], + "score": 1.0, + "content": "to learn a low-dimensional embedding of over", + "type": "text" + }, + { + "bbox": [ + 300, + 537, + 317, + 548 + ], + "score": 0.28, + "content": "1 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 538, + 505, + 549 + ], + "score": 1.0, + "content": "network parameters for an RL policy. 3) We", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 89, + 548, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 89, + 551, + 100, + 560 + ], + "score": 1.0, + "content": "65", + "type": "text" + }, + { + "bbox": [ + 104, + 548, + 506, + 561 + ], + "score": 1.0, + "content": "introduce GPI with PeVFA that leverages the value generalization in a general form. Our experimental", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 89, + 559, + 503, + 572 + ], + "spans": [ + { + "bbox": [ + 89, + 561, + 100, + 571 + ], + "score": 1.0, + "content": "66", + "type": "text" + }, + { + "bbox": [ + 105, + 559, + 503, + 572 + ], + "score": 1.0, + "content": "results demonstrate the potential of PeVFA in deriving practical and more effective RL algorithms.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 91, + 587, + 196, + 600 + ], + "lines": [ + { + "bbox": [ + 87, + 586, + 199, + 601 + ], + "spans": [ + { + "bbox": [ + 87, + 586, + 199, + 601 + ], + "score": 1.0, + "content": "67 2 Related Work", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 90, + 612, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 89, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 89, + 615, + 100, + 624 + ], + "score": 1.0, + "content": "68", + "type": "text" + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "Extensions of Conventional Value Function. Sutton et al. [56] propose General Value Functions", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 88, + 623, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 88, + 625, + 100, + 636 + ], + "score": 1.0, + "content": "69", + "type": "text" + }, + { + "bbox": [ + 105, + 623, + 506, + 637 + ], + "score": 1.0, + "content": "(GVFs) as a general form of knowledge representation of rewards and arbitrary cumulants. Later,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 89, + 634, + 507, + 647 + ], + "spans": [ + { + "bbox": [ + 89, + 636, + 99, + 646 + ], + "score": 1.0, + "content": "70", + "type": "text" + }, + { + "bbox": [ + 105, + 634, + 507, + 647 + ], + "score": 1.0, + "content": "conventional value functions are extended to take extra inputs for different purposes of generalization.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 88, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 88, + 646, + 100, + 657 + ], + "score": 1.0, + "content": "71", + "type": "text" + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "One notable work is Universal Value Function Approximator (UVFA) [45], which is proposed to", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 89, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 89, + 658, + 99, + 668 + ], + "score": 1.0, + "content": "72", + "type": "text" + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "generalize values among different goals for goal-conditioned RL. UVFA is further developed in", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 89, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 89, + 669, + 99, + 679 + ], + "score": 1.0, + "content": "73", + "type": "text" + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "[1, 37, 9] and influences the occurrence of other value function extensions in context-based Meta-RL", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 89, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 89, + 680, + 99, + 689 + ], + "score": 1.0, + "content": "74", + "type": "text" + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "[43, 29], Hierarchical RL [64] and multiagent RL [19, 14] and etc. Most of the above works study", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 89, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 89, + 691, + 99, + 700 + ], + "score": 1.0, + "content": "75", + "type": "text" + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "how to generalize the policy or value function among extrinsic factors, i.e., environments, tasks and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 89, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 89, + 702, + 100, + 711 + ], + "score": 1.0, + "content": "76", + "type": "text" + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "opponents; while we mainly study the value generalization among policies along policy improvement", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 89, + 711, + 317, + 723 + ], + "spans": [ + { + "bbox": [ + 89, + 713, + 99, + 722 + ], + "score": 1.0, + "content": "77", + "type": "text" + }, + { + "bbox": [ + 105, + 711, + 317, + 723 + ], + "score": 1.0, + "content": "path, an intrinsic learning process of the agent itself.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 42.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": "image", + "bbox": [ + 140, + 0, + 469, + 155 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 140, + 0, + 469, + 155 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 0, + 469, + 155 + ], + "spans": [ + { + "bbox": [ + 140, + 0, + 469, + 155 + ], + "score": 0.112, + "type": "image", + "image_path": "38feb809737473fb7948d8361bed05d65eceb8e03420789b9e49c35c2b8d2206.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 140, + 0, + 469, + 51.666666666666664 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 140, + 51.666666666666664, + 469, + 103.33333333333333 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 140, + 103.33333333333333, + 469, + 155.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 165, + 505, + 210 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 165, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 179 + ], + "score": 1.0, + "content": "Figure 1: Generalized Policy Iteration (GPI) with function approximation. Left: GPI with con-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 265, + 189 + ], + "score": 1.0, + "content": "ventional value function approximator", + "type": "text" + }, + { + "bbox": [ + 266, + 177, + 278, + 189 + ], + "score": 0.88, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 177, + 384, + 189 + ], + "score": 1.0, + "content": ". Right: GPI with PeVFA", + "type": "text" + }, + { + "bbox": [ + 385, + 177, + 417, + 189 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "(Sec. 3) where extra", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 311, + 201 + ], + "score": 1.0, + "content": "generalization steps exist. The subscripts of policy", + "type": "text" + }, + { + "bbox": [ + 312, + 190, + 319, + 198 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 189, + 443, + 201 + ], + "score": 1.0, + "content": "and value function parameters", + "type": "text" + }, + { + "bbox": [ + 443, + 189, + 460, + 199 + ], + "score": 0.9, + "content": "\\phi , \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "denote the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 199, + 460, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 460, + 211 + ], + "score": 1.0, + "content": "iteration number. The squiggle lines represent non-perfect approximation of true values.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "index", + "bbox": [ + 89, + 231, + 505, + 363 + ], + "lines": [], + "index": 12.5, + "bbox_fs": [ + 88, + 231, + 506, + 365 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 89, + 368, + 505, + 488 + ], + "lines": [], + "index": 24, + "bbox_fs": [ + 88, + 368, + 507, + 489 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 90, + 493, + 505, + 571 + ], + "lines": [], + "index": 33, + "bbox_fs": [ + 89, + 493, + 506, + 572 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 91, + 587, + 196, + 600 + ], + "lines": [ + { + "bbox": [ + 87, + 586, + 199, + 601 + ], + "spans": [ + { + "bbox": [ + 87, + 586, + 199, + 601 + ], + "score": 1.0, + "content": "67 2 Related Work", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "index", + "bbox": [ + 90, + 612, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 89, + 612, + 505, + 625 + ], + "spans": [ + { + "bbox": [ + 89, + 615, + 100, + 624 + ], + "score": 1.0, + "content": "68", + "type": "text" + }, + { + "bbox": [ + 105, + 612, + 505, + 625 + ], + "score": 1.0, + "content": "Extensions of Conventional Value Function. Sutton et al. [56] propose General Value Functions", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 623, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 88, + 625, + 100, + 636 + ], + "score": 1.0, + "content": "69", + "type": "text" + }, + { + "bbox": [ + 105, + 623, + 506, + 637 + ], + "score": 1.0, + "content": "(GVFs) as a general form of knowledge representation of rewards and arbitrary cumulants. Later,", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 634, + 507, + 647 + ], + "spans": [ + { + "bbox": [ + 89, + 636, + 99, + 646 + ], + "score": 1.0, + "content": "70", + "type": "text" + }, + { + "bbox": [ + 105, + 634, + 507, + 647 + ], + "score": 1.0, + "content": "conventional value functions are extended to take extra inputs for different purposes of generalization.", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 88, + 646, + 100, + 657 + ], + "score": 1.0, + "content": "71", + "type": "text" + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "One notable work is Universal Value Function Approximator (UVFA) [45], which is proposed to", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 89, + 658, + 99, + 668 + ], + "score": 1.0, + "content": "72", + "type": "text" + }, + { + "bbox": [ + 105, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "generalize values among different goals for goal-conditioned RL. UVFA is further developed in", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 89, + 669, + 99, + 679 + ], + "score": 1.0, + "content": "73", + "type": "text" + }, + { + "bbox": [ + 106, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "[1, 37, 9] and influences the occurrence of other value function extensions in context-based Meta-RL", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 89, + 680, + 99, + 689 + ], + "score": 1.0, + "content": "74", + "type": "text" + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "[43, 29], Hierarchical RL [64] and multiagent RL [19, 14] and etc. Most of the above works study", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 89, + 691, + 99, + 700 + ], + "score": 1.0, + "content": "75", + "type": "text" + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "how to generalize the policy or value function among extrinsic factors, i.e., environments, tasks and", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 700, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 89, + 702, + 100, + 711 + ], + "score": 1.0, + "content": "76", + "type": "text" + }, + { + "bbox": [ + 105, + 700, + 506, + 713 + ], + "score": 1.0, + "content": "opponents; while we mainly study the value generalization among policies along policy improvement", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 711, + 317, + 723 + ], + "spans": [ + { + "bbox": [ + 89, + 713, + 99, + 722 + ], + "score": 1.0, + "content": "77", + "type": "text" + }, + { + "bbox": [ + 105, + 711, + 317, + 723 + ], + "score": 1.0, + "content": "path, an intrinsic learning process of the agent itself.", + "type": "text" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 89, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "78", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "score": 1.0, + "content": "Policy Embedding and Representation. Although not well studied, representation (or embedding)", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 89, + 86, + 100, + 95 + ], + "score": 1.0, + "content": "79", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "learning for RL policies is involved in a few works [18, 14, 3]. The most common way to learn a", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 95, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 96, + 100, + 106 + ], + "score": 1.0, + "content": "80", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 95, + 505, + 108 + ], + "score": 1.0, + "content": "policy representation is to extract from interaction experiences. As a representative, Grover et al. [14]", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 88, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 88, + 107, + 100, + 118 + ], + "score": 1.0, + "content": "81", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "propose learning the representation of opponent policy from interaction trajectories with a generative", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 89, + 119, + 100, + 129 + ], + "score": 1.0, + "content": "82", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "policy recovery loss and a discriminative triplet loss. These losses are later adopted in [64, 42].", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 130, + 100, + 139 + ], + "score": 1.0, + "content": "83", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "Another straightforward idea is to represent policy parameters. Network Fingerprint [17] is such a", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 89, + 140, + 100, + 150 + ], + "score": 1.0, + "content": "84", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "differentiable representation that uses the concatenation of the vectors of action distribution outputted", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 89, + 151, + 100, + 161 + ], + "score": 1.0, + "content": "85", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 1.0, + "content": "by policy network on a set of probing states. The probing state set is co-optimized along with the", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 89, + 162, + 100, + 172 + ], + "score": 1.0, + "content": "86", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "primary learning objective, which can be non-trivial especially when the dimensionality of the set is", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 170, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 89, + 173, + 100, + 182 + ], + "score": 1.0, + "content": "87", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 170, + 506, + 184 + ], + "score": 1.0, + "content": "high. Besides, some early attempts in learning low-dimensional embedding of policy parameters are", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 89, + 184, + 100, + 194 + ], + "score": 1.0, + "content": "88", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "studies in Evolutionary Algorithms [13, 44], mainly with the help of VAE [23]. Our work introduce a", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 192, + 442, + 206 + ], + "spans": [ + { + "bbox": [ + 89, + 195, + 100, + 204 + ], + "score": 1.0, + "content": "89", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 192, + 442, + 206 + ], + "score": 1.0, + "content": "learning framework of policy representation including both above two perspectives.", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 208, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 89, + 211, + 100, + 221 + ], + "score": 1.0, + "content": "90", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 208, + 507, + 222 + ], + "score": 1.0, + "content": "PVN and PVFs. Recently, several works study the generalization among policy space. Harb et al.", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 99, + 232 + ], + "score": 1.0, + "content": "91", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "[17] propose Policy Evaluation Network (PVN) to directly approximate the distribution of policy", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 230, + 507, + 245 + ], + "spans": [ + { + "bbox": [ + 89, + 234, + 100, + 243 + ], + "score": 1.0, + "content": "92", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 233, + 114, + 241 + ], + "score": 0.4, + "content": "\\pi", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 114, + 230, + 198, + 245 + ], + "score": 1.0, + "content": "’s objective function", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 198, + 231, + 280, + 243 + ], + "score": 0.93, + "content": "J ( \\pi ) = \\mathbb { E } _ { \\rho _ { 0 } } [ v ^ { \\pi } ( s _ { 0 } ) ]", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 280, + 230, + 349, + 245 + ], + "score": 1.0, + "content": "with initial state", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 349, + 232, + 383, + 243 + ], + "score": 0.9, + "content": "s _ { 0 } \\sim \\rho _ { 0 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 383, + 230, + 507, + 245 + ], + "score": 1.0, + "content": ". PVN takes as input Network", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 240, + 507, + 256 + ], + "spans": [ + { + "bbox": [ + 89, + 244, + 100, + 253 + ], + "score": 1.0, + "content": "93", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 240, + 507, + 256 + ], + "score": 1.0, + "content": "Fingerprint (mentioned above) of policy network. After training on a pre-collected set of policies, a", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 251, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 89, + 255, + 100, + 264 + ], + "score": 1.0, + "content": "94", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 251, + 506, + 267 + ], + "score": 1.0, + "content": "random initialized policy can be optimized in a zero-shot manner with the policy gradients of PVN by", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 263, + 507, + 276 + ], + "spans": [ + { + "bbox": [ + 89, + 266, + 100, + 275 + ], + "score": 1.0, + "content": "95", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 263, + 507, + 276 + ], + "score": 1.0, + "content": "backpropagting through the differentiable policy input. We call such gradients GTPI for short below.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 272, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 100, + 286 + ], + "score": 1.0, + "content": "96", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 272, + 506, + 289 + ], + "score": 1.0, + "content": "Similar ideas are later integrated with task-specific context learning in multi-task RL [42], leveraging", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 89, + 288, + 100, + 297 + ], + "score": 1.0, + "content": "97", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "the generalization among policies and tasks for fast policy adaptation on new tasks. In PVN [17],", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 89, + 299, + 100, + 308 + ], + "score": 1.0, + "content": "98", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "as an early attempt, the generalization among policies is studied with small policy network and", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 89, + 307, + 507, + 320 + ], + "spans": [ + { + "bbox": [ + 89, + 309, + 100, + 319 + ], + "score": 1.0, + "content": "99", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 307, + 507, + 320 + ], + "score": 1.0, + "content": "simple tasks; besides, the most regular online learning setting is not studied. Concurrent to our work,", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 86, + 320, + 100, + 330 + ], + "score": 1.0, + "content": "100", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "Faccio and Schmidhuber [10] propose a class of Parameter-based Value Functions (PVFs) that take", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 86, + 331, + 100, + 342 + ], + "score": 1.0, + "content": "101", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "vectorized policy parameters as inputs. Based on PVFs, new policy gradient algorithms are introduced", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 85, + 342, + 100, + 352 + ], + "score": 1.0, + "content": "102", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "in the form of a combination of conventional policy gradients and GTPI (i.e., by backpropagating", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 86, + 352, + 100, + 363 + ], + "score": 1.0, + "content": "103", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "through policy parameters in PVFs). Except for zero-shot policy optimization as conducted in PVN,", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 86, + 364, + 100, + 373 + ], + "score": 1.0, + "content": "104", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "PVFs are also evaluated for online policy learning. Due to directly taking parameters as input, PVFs", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 86, + 375, + 100, + 384 + ], + "score": 1.0, + "content": "105", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "suffer from the curse of dimensionality when the number of parameters is high. Besides, GTPI can", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 86, + 386, + 100, + 395 + ], + "score": 1.0, + "content": "106", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "be non-trivial to rein since policy parameter space are complex and extrapolation generalization", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 86, + 396, + 100, + 407 + ], + "score": 1.0, + "content": "107", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "error can be large when the value function is only trained on finite policies (usually much fewer than", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 406, + 399, + 418 + ], + "spans": [ + { + "bbox": [ + 86, + 408, + 100, + 417 + ], + "score": 1.0, + "content": "108", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 406, + 399, + 418 + ], + "score": 1.0, + "content": "state-action samples) thus further resulting in erroneous policy gradients.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 86, + 424, + 99, + 433 + ], + "score": 1.0, + "content": "109", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Our work differs with PVFs from several aspects. First, we make use of learned policy representation", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 86, + 434, + 99, + 445 + ], + "score": 1.0, + "content": "110", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "rather than policy network parameters. Second, we do not resort to GTPI for the policy update", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 86, + 445, + 99, + 455 + ], + "score": 1.0, + "content": "111", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "in our algorithms but focus on utilizing value generalization for more efficient value estimation in", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 453, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 86, + 456, + 100, + 466 + ], + "score": 1.0, + "content": "112", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "score": 1.0, + "content": "GPI. Furthermore, we shed the light on two important problems — how value generalization among", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 86, + 467, + 100, + 478 + ], + "score": 1.0, + "content": "113", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "policies can happen formally and whether it is beneficial to learning or not — which are neglected in", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 477, + 344, + 488 + ], + "spans": [ + { + "bbox": [ + 86, + 478, + 100, + 488 + ], + "score": 1.0, + "content": "114", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 477, + 344, + 488 + ], + "score": 1.0, + "content": "in previous works from both theoretical and empirical lens.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + } + ], + "index": 42.5, + "bbox_fs": [ + 88, + 612, + 507, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 89, + 73, + 505, + 204 + ], + "lines": [ + { + "bbox": [ + 89, + 72, + 506, + 86 + ], + "spans": [ + { + "bbox": [ + 89, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "78", + "type": "text" + }, + { + "bbox": [ + 105, + 72, + 506, + 86 + ], + "score": 1.0, + "content": "Policy Embedding and Representation. Although not well studied, representation (or embedding)", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 89, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 89, + 86, + 100, + 95 + ], + "score": 1.0, + "content": "79", + "type": "text" + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "score": 1.0, + "content": "learning for RL policies is involved in a few works [18, 14, 3]. The most common way to learn a", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 89, + 95, + 505, + 108 + ], + "spans": [ + { + "bbox": [ + 89, + 96, + 100, + 106 + ], + "score": 1.0, + "content": "80", + "type": "text" + }, + { + "bbox": [ + 105, + 95, + 505, + 108 + ], + "score": 1.0, + "content": "policy representation is to extract from interaction experiences. As a representative, Grover et al. [14]", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 88, + 105, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 88, + 107, + 100, + 118 + ], + "score": 1.0, + "content": "81", + "type": "text" + }, + { + "bbox": [ + 105, + 105, + 506, + 118 + ], + "score": 1.0, + "content": "propose learning the representation of opponent policy from interaction trajectories with a generative", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 89, + 117, + 506, + 130 + ], + "spans": [ + { + "bbox": [ + 89, + 119, + 100, + 129 + ], + "score": 1.0, + "content": "82", + "type": "text" + }, + { + "bbox": [ + 106, + 117, + 506, + 130 + ], + "score": 1.0, + "content": "policy recovery loss and a discriminative triplet loss. These losses are later adopted in [64, 42].", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 89, + 127, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 89, + 130, + 100, + 139 + ], + "score": 1.0, + "content": "83", + "type": "text" + }, + { + "bbox": [ + 105, + 127, + 506, + 140 + ], + "score": 1.0, + "content": "Another straightforward idea is to represent policy parameters. Network Fingerprint [17] is such a", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 89, + 138, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 89, + 140, + 100, + 150 + ], + "score": 1.0, + "content": "84", + "type": "text" + }, + { + "bbox": [ + 106, + 138, + 505, + 150 + ], + "score": 1.0, + "content": "differentiable representation that uses the concatenation of the vectors of action distribution outputted", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 89, + 149, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 89, + 151, + 100, + 161 + ], + "score": 1.0, + "content": "85", + "type": "text" + }, + { + "bbox": [ + 105, + 149, + 506, + 162 + ], + "score": 1.0, + "content": "by policy network on a set of probing states. The probing state set is co-optimized along with the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 89, + 160, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 89, + 162, + 100, + 172 + ], + "score": 1.0, + "content": "86", + "type": "text" + }, + { + "bbox": [ + 105, + 160, + 506, + 173 + ], + "score": 1.0, + "content": "primary learning objective, which can be non-trivial especially when the dimensionality of the set is", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 89, + 170, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 89, + 173, + 100, + 182 + ], + "score": 1.0, + "content": "87", + "type": "text" + }, + { + "bbox": [ + 105, + 170, + 506, + 184 + ], + "score": 1.0, + "content": "high. Besides, some early attempts in learning low-dimensional embedding of policy parameters are", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 89, + 182, + 506, + 195 + ], + "spans": [ + { + "bbox": [ + 89, + 184, + 100, + 194 + ], + "score": 1.0, + "content": "88", + "type": "text" + }, + { + "bbox": [ + 105, + 182, + 506, + 195 + ], + "score": 1.0, + "content": "studies in Evolutionary Algorithms [13, 44], mainly with the help of VAE [23]. Our work introduce a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 89, + 192, + 442, + 206 + ], + "spans": [ + { + "bbox": [ + 89, + 195, + 100, + 204 + ], + "score": 1.0, + "content": "89", + "type": "text" + }, + { + "bbox": [ + 105, + 192, + 442, + 206 + ], + "score": 1.0, + "content": "learning framework of policy representation including both above two perspectives.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 88, + 208, + 506, + 417 + ], + "lines": [ + { + "bbox": [ + 89, + 208, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 89, + 211, + 100, + 221 + ], + "score": 1.0, + "content": "90", + "type": "text" + }, + { + "bbox": [ + 104, + 208, + 507, + 222 + ], + "score": 1.0, + "content": "PVN and PVFs. Recently, several works study the generalization among policy space. Harb et al.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 89, + 219, + 506, + 234 + ], + "spans": [ + { + "bbox": [ + 89, + 222, + 99, + 232 + ], + "score": 1.0, + "content": "91", + "type": "text" + }, + { + "bbox": [ + 105, + 219, + 506, + 234 + ], + "score": 1.0, + "content": "[17] propose Policy Evaluation Network (PVN) to directly approximate the distribution of policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 89, + 230, + 507, + 245 + ], + "spans": [ + { + "bbox": [ + 89, + 234, + 100, + 243 + ], + "score": 1.0, + "content": "92", + "type": "text" + }, + { + "bbox": [ + 106, + 233, + 114, + 241 + ], + "score": 0.4, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 230, + 198, + 245 + ], + "score": 1.0, + "content": "’s objective function", + "type": "text" + }, + { + "bbox": [ + 198, + 231, + 280, + 243 + ], + "score": 0.93, + "content": "J ( \\pi ) = \\mathbb { E } _ { \\rho _ { 0 } } [ v ^ { \\pi } ( s _ { 0 } ) ]", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 230, + 349, + 245 + ], + "score": 1.0, + "content": "with initial state", + "type": "text" + }, + { + "bbox": [ + 349, + 232, + 383, + 243 + ], + "score": 0.9, + "content": "s _ { 0 } \\sim \\rho _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 230, + 507, + 245 + ], + "score": 1.0, + "content": ". PVN takes as input Network", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 89, + 240, + 507, + 256 + ], + "spans": [ + { + "bbox": [ + 89, + 244, + 100, + 253 + ], + "score": 1.0, + "content": "93", + "type": "text" + }, + { + "bbox": [ + 104, + 240, + 507, + 256 + ], + "score": 1.0, + "content": "Fingerprint (mentioned above) of policy network. After training on a pre-collected set of policies, a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 89, + 251, + 506, + 267 + ], + "spans": [ + { + "bbox": [ + 89, + 255, + 100, + 264 + ], + "score": 1.0, + "content": "94", + "type": "text" + }, + { + "bbox": [ + 104, + 251, + 506, + 267 + ], + "score": 1.0, + "content": "random initialized policy can be optimized in a zero-shot manner with the policy gradients of PVN by", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 89, + 263, + 507, + 276 + ], + "spans": [ + { + "bbox": [ + 89, + 266, + 100, + 275 + ], + "score": 1.0, + "content": "95", + "type": "text" + }, + { + "bbox": [ + 105, + 263, + 507, + 276 + ], + "score": 1.0, + "content": "backpropagting through the differentiable policy input. We call such gradients GTPI for short below.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 89, + 272, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 89, + 276, + 100, + 286 + ], + "score": 1.0, + "content": "96", + "type": "text" + }, + { + "bbox": [ + 105, + 272, + 506, + 289 + ], + "score": 1.0, + "content": "Similar ideas are later integrated with task-specific context learning in multi-task RL [42], leveraging", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 89, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 89, + 288, + 100, + 297 + ], + "score": 1.0, + "content": "97", + "type": "text" + }, + { + "bbox": [ + 105, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "the generalization among policies and tasks for fast policy adaptation on new tasks. In PVN [17],", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 89, + 296, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 89, + 299, + 100, + 308 + ], + "score": 1.0, + "content": "98", + "type": "text" + }, + { + "bbox": [ + 104, + 296, + 506, + 309 + ], + "score": 1.0, + "content": "as an early attempt, the generalization among policies is studied with small policy network and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 89, + 307, + 507, + 320 + ], + "spans": [ + { + "bbox": [ + 89, + 309, + 100, + 319 + ], + "score": 1.0, + "content": "99", + "type": "text" + }, + { + "bbox": [ + 105, + 307, + 507, + 320 + ], + "score": 1.0, + "content": "simple tasks; besides, the most regular online learning setting is not studied. Concurrent to our work,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 86, + 318, + 506, + 331 + ], + "spans": [ + { + "bbox": [ + 86, + 320, + 100, + 330 + ], + "score": 1.0, + "content": "100", + "type": "text" + }, + { + "bbox": [ + 105, + 318, + 506, + 331 + ], + "score": 1.0, + "content": "Faccio and Schmidhuber [10] propose a class of Parameter-based Value Functions (PVFs) that take", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 86, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 86, + 331, + 100, + 342 + ], + "score": 1.0, + "content": "101", + "type": "text" + }, + { + "bbox": [ + 105, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "vectorized policy parameters as inputs. Based on PVFs, new policy gradient algorithms are introduced", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 85, + 339, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 85, + 342, + 100, + 352 + ], + "score": 1.0, + "content": "102", + "type": "text" + }, + { + "bbox": [ + 104, + 339, + 506, + 353 + ], + "score": 1.0, + "content": "in the form of a combination of conventional policy gradients and GTPI (i.e., by backpropagating", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 86, + 350, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 86, + 352, + 100, + 363 + ], + "score": 1.0, + "content": "103", + "type": "text" + }, + { + "bbox": [ + 105, + 350, + 506, + 363 + ], + "score": 1.0, + "content": "through policy parameters in PVFs). Except for zero-shot policy optimization as conducted in PVN,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 86, + 361, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 86, + 364, + 100, + 373 + ], + "score": 1.0, + "content": "104", + "type": "text" + }, + { + "bbox": [ + 105, + 361, + 506, + 375 + ], + "score": 1.0, + "content": "PVFs are also evaluated for online policy learning. Due to directly taking parameters as input, PVFs", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 86, + 372, + 506, + 386 + ], + "spans": [ + { + "bbox": [ + 86, + 375, + 100, + 384 + ], + "score": 1.0, + "content": "105", + "type": "text" + }, + { + "bbox": [ + 105, + 372, + 506, + 386 + ], + "score": 1.0, + "content": "suffer from the curse of dimensionality when the number of parameters is high. Besides, GTPI can", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 86, + 384, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 86, + 386, + 100, + 395 + ], + "score": 1.0, + "content": "106", + "type": "text" + }, + { + "bbox": [ + 106, + 384, + 505, + 396 + ], + "score": 1.0, + "content": "be non-trivial to rein since policy parameter space are complex and extrapolation generalization", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 86, + 395, + 505, + 407 + ], + "spans": [ + { + "bbox": [ + 86, + 396, + 100, + 407 + ], + "score": 1.0, + "content": "107", + "type": "text" + }, + { + "bbox": [ + 105, + 395, + 505, + 407 + ], + "score": 1.0, + "content": "error can be large when the value function is only trained on finite policies (usually much fewer than", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 86, + 406, + 399, + 418 + ], + "spans": [ + { + "bbox": [ + 86, + 408, + 100, + 417 + ], + "score": 1.0, + "content": "108", + "type": "text" + }, + { + "bbox": [ + 105, + 406, + 399, + 418 + ], + "score": 1.0, + "content": "state-action samples) thus further resulting in erroneous policy gradients.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 87, + 422, + 505, + 488 + ], + "lines": [ + { + "bbox": [ + 86, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 86, + 424, + 99, + 433 + ], + "score": 1.0, + "content": "109", + "type": "text" + }, + { + "bbox": [ + 106, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "Our work differs with PVFs from several aspects. First, we make use of learned policy representation", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 86, + 433, + 505, + 446 + ], + "spans": [ + { + "bbox": [ + 86, + 434, + 99, + 445 + ], + "score": 1.0, + "content": "110", + "type": "text" + }, + { + "bbox": [ + 105, + 433, + 505, + 446 + ], + "score": 1.0, + "content": "rather than policy network parameters. Second, we do not resort to GTPI for the policy update", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 86, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 86, + 445, + 99, + 455 + ], + "score": 1.0, + "content": "111", + "type": "text" + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "in our algorithms but focus on utilizing value generalization for more efficient value estimation in", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 86, + 453, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 86, + 456, + 100, + 466 + ], + "score": 1.0, + "content": "112", + "type": "text" + }, + { + "bbox": [ + 105, + 453, + 506, + 468 + ], + "score": 1.0, + "content": "GPI. Furthermore, we shed the light on two important problems — how value generalization among", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 86, + 466, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 86, + 467, + 100, + 478 + ], + "score": 1.0, + "content": "113", + "type": "text" + }, + { + "bbox": [ + 105, + 466, + 505, + 478 + ], + "score": 1.0, + "content": "policies can happen formally and whether it is beneficial to learning or not — which are neglected in", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 86, + 477, + 344, + 488 + ], + "spans": [ + { + "bbox": [ + 86, + 478, + 100, + 488 + ], + "score": 1.0, + "content": "114", + "type": "text" + }, + { + "bbox": [ + 106, + 477, + 344, + 488 + ], + "score": 1.0, + "content": "in previous works from both theoretical and empirical lens.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 88, + 502, + 363, + 517 + ], + "lines": [ + { + "bbox": [ + 83, + 501, + 366, + 520 + ], + "spans": [ + { + "bbox": [ + 83, + 501, + 366, + 520 + ], + "score": 1.0, + "content": "115 3 Policy-extended Value Function Approximator", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 87, + 528, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 86, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 86, + 530, + 99, + 540 + ], + "score": 1.0, + "content": "116", + "type": "text" + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "In this section, we propose Policy-extended Value Function Approximator (PeVFA), an extension", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 86, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 86, + 540, + 100, + 551 + ], + "score": 1.0, + "content": "117", + "type": "text" + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "of conventional VFA that explicitly takes as input a policy representation. First, we introduce the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 86, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 86, + 552, + 99, + 562 + ], + "score": 1.0, + "content": "118", + "type": "text" + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "formulation (Sec. 3.1), then we study value generalization among policies theoretically (Sec. 3.2)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 86, + 561, + 496, + 573 + ], + "spans": [ + { + "bbox": [ + 86, + 563, + 99, + 572 + ], + "score": 1.0, + "content": "119", + "type": "text" + }, + { + "bbox": [ + 106, + 561, + 496, + 573 + ], + "score": 1.0, + "content": "along with some empirical evidences (Sec. 3.3). Finally, we derive a new form of GPI (Sec. 3.4).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + }, + { + "type": "title", + "bbox": [ + 102, + 585, + 183, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 185, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 185, + 598 + ], + "score": 1.0, + "content": "3.1 Formulation", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 89, + 605, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 86, + 605, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 86, + 607, + 99, + 617 + ], + "score": 1.0, + "content": "121", + "type": "text" + }, + { + "bbox": [ + 105, + 605, + 327, + 618 + ], + "score": 1.0, + "content": "Consider a Markov Decision Process (MDP) defined as", + "type": "text" + }, + { + "bbox": [ + 328, + 605, + 386, + 618 + ], + "score": 0.93, + "content": "\\langle S , \\mathcal { A } , r , \\mathcal { P } , \\gamma \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 605, + 414, + 618 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 414, + 606, + 423, + 616 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 605, + 495, + 618 + ], + "score": 1.0, + "content": "is the state space,", + "type": "text" + }, + { + "bbox": [ + 495, + 606, + 504, + 615 + ], + "score": 0.76, + "content": "\\mathcal { A }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 86, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 86, + 618, + 100, + 628 + ], + "score": 1.0, + "content": "122", + "type": "text" + }, + { + "bbox": [ + 105, + 616, + 184, + 629 + ], + "score": 1.0, + "content": "is the action space,", + "type": "text" + }, + { + "bbox": [ + 185, + 619, + 190, + 626 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 616, + 327, + 629 + ], + "score": 1.0, + "content": "is the (bounded) reward function,", + "type": "text" + }, + { + "bbox": [ + 327, + 617, + 336, + 627 + ], + "score": 0.8, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 616, + 454, + 629 + ], + "score": 1.0, + "content": "is the transition function and", + "type": "text" + }, + { + "bbox": [ + 455, + 617, + 494, + 628 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 86, + 627, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 86, + 631, + 100, + 641 + ], + "score": 1.0, + "content": "123", + "type": "text" + }, + { + "bbox": [ + 105, + 627, + 221, + 641 + ], + "score": 1.0, + "content": "the discount factor. A policy", + "type": "text" + }, + { + "bbox": [ + 221, + 628, + 274, + 641 + ], + "score": 0.93, + "content": "\\pi \\in P ( { \\cal A } ) ^ { | S | }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 627, + 506, + 641 + ], + "score": 1.0, + "content": "defines the distribution over all actions for each state. The", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 87, + 640, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 87, + 642, + 100, + 651 + ], + "score": 1.0, + "content": "124", + "type": "text" + }, + { + "bbox": [ + 106, + 640, + 293, + 651 + ], + "score": 1.0, + "content": "goal of an RL agent is to find an optimal policy", + "type": "text" + }, + { + "bbox": [ + 293, + 640, + 305, + 650 + ], + "score": 0.87, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 640, + 505, + 651 + ], + "score": 1.0, + "content": "that maximizes the expected long-term discounted", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 86, + 650, + 503, + 680 + ], + "spans": [ + { + "bbox": [ + 86, + 652, + 100, + 673 + ], + "score": 1.0, + "content": "125 126", + "type": "text" + }, + { + "bbox": [ + 101, + 650, + 187, + 680 + ], + "score": 1.0, + "content": "return. The state-vafollowing the policy", + "type": "text" + }, + { + "bbox": [ + 188, + 664, + 195, + 672 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 650, + 234, + 680 + ], + "score": 1.0, + "content": "e function from a st", + "type": "text" + }, + { + "bbox": [ + 235, + 651, + 258, + 662 + ], + "score": 0.92, + "content": "v ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 664, + 251, + 671 + ], + "score": 0.65, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 661, + 395, + 675 + ], + "score": 0.9, + "content": "\\begin{array} { r } { v ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\bar { \\gamma } ^ { t } r _ { t + 1 } \\vert s _ { 0 } = s \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 650, + 436, + 680 + ], + "score": 1.0, + "content": "ted return for where", + "type": "text" + }, + { + "bbox": [ + 437, + 662, + 503, + 674 + ], + "score": 0.93, + "content": "r _ { t + 1 } = r ( s _ { t } , a _ { t } )", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 86, + 672, + 345, + 684 + ], + "spans": [ + { + "bbox": [ + 86, + 674, + 100, + 684 + ], + "score": 1.0, + "content": "127", + "type": "text" + }, + { + "bbox": [ + 152, + 672, + 345, + 684 + ], + "score": 1.0, + "content": "to denote the vectorized form of value function.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 87, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 86, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 86, + 690, + 100, + 700 + ], + "score": 1.0, + "content": "128", + "type": "text" + }, + { + "bbox": [ + 103, + 687, + 351, + 702 + ], + "score": 1.0, + "content": "In a general form, we define policy-extended value function", + "type": "text" + }, + { + "bbox": [ + 351, + 689, + 417, + 699 + ], + "score": 0.91, + "content": "\\mathbb { V } : \\mathcal { S } \\times \\Pi \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "over state and policy", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 87, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 87, + 703, + 100, + 711 + ], + "score": 1.0, + "content": "129", + "type": "text" + }, + { + "bbox": [ + 104, + 699, + 136, + 713 + ], + "score": 1.0, + "content": "space:", + "type": "text" + }, + { + "bbox": [ + 136, + 700, + 205, + 712 + ], + "score": 0.92, + "content": "\\mathbb { V } ( s , \\pi ) = v ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 699, + 235, + 713 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 235, + 700, + 261, + 710 + ], + "score": 0.88, + "content": "s \\in { \\mathcal { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 699, + 281, + 713 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 281, + 700, + 309, + 710 + ], + "score": 0.89, + "content": "\\pi \\in \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 699, + 425, + 713 + ], + "score": 1.0, + "content": ". In this paper, we focus on", + "type": "text" + }, + { + "bbox": [ + 425, + 700, + 456, + 712 + ], + "score": 0.93, + "content": "\\mathbb { V } ( s , \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "and policy-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 86, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 86, + 712, + 100, + 722 + ], + "score": 1.0, + "content": "130", + "type": "text" + }, + { + "bbox": [ + 104, + 711, + 229, + 723 + ], + "score": 1.0, + "content": "extended action-value function", + "type": "text" + }, + { + "bbox": [ + 230, + 711, + 271, + 723 + ], + "score": 0.92, + "content": "\\mathbb { Q } ( s , a , \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 711, + 405, + 723 + ], + "score": 1.0, + "content": "can be obtained similarly. We use", + "type": "text" + }, + { + "bbox": [ + 406, + 711, + 428, + 722 + ], + "score": 0.91, + "content": "\\mathbb { V } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "to denote the value", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50 + } + ], + "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": "index", + "bbox": [ + 89, + 73, + 505, + 204 + ], + "lines": [], + "index": 5.5, + "bbox_fs": [ + 88, + 72, + 506, + 206 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 88, + 208, + 506, + 417 + ], + "lines": [], + "index": 21, + "bbox_fs": [ + 85, + 208, + 507, + 418 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 87, + 422, + 505, + 488 + ], + "lines": [], + "index": 33.5, + "bbox_fs": [ + 86, + 421, + 506, + 488 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 88, + 502, + 363, + 517 + ], + "lines": [ + { + "bbox": [ + 83, + 501, + 366, + 520 + ], + "spans": [ + { + "bbox": [ + 83, + 501, + 366, + 520 + ], + "score": 1.0, + "content": "115 3 Policy-extended Value Function Approximator", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "index", + "bbox": [ + 87, + 528, + 505, + 572 + ], + "lines": [ + { + "bbox": [ + 86, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 86, + 530, + 99, + 540 + ], + "score": 1.0, + "content": "116", + "type": "text" + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "In this section, we propose Policy-extended Value Function Approximator (PeVFA), an extension", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 538, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 86, + 540, + 100, + 551 + ], + "score": 1.0, + "content": "117", + "type": "text" + }, + { + "bbox": [ + 105, + 538, + 506, + 552 + ], + "score": 1.0, + "content": "of conventional VFA that explicitly takes as input a policy representation. First, we introduce the", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 86, + 552, + 99, + 562 + ], + "score": 1.0, + "content": "118", + "type": "text" + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "formulation (Sec. 3.1), then we study value generalization among policies theoretically (Sec. 3.2)", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 561, + 496, + 573 + ], + "spans": [ + { + "bbox": [ + 86, + 563, + 99, + 572 + ], + "score": 1.0, + "content": "119", + "type": "text" + }, + { + "bbox": [ + 106, + 561, + 496, + 573 + ], + "score": 1.0, + "content": "along with some empirical evidences (Sec. 3.3). Finally, we derive a new form of GPI (Sec. 3.4).", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + } + ], + "index": 39.5, + "bbox_fs": [ + 86, + 528, + 506, + 573 + ] + }, + { + "type": "title", + "bbox": [ + 102, + 585, + 183, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 584, + 185, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 185, + 598 + ], + "score": 1.0, + "content": "3.1 Formulation", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "index", + "bbox": [ + 89, + 605, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 86, + 605, + 504, + 618 + ], + "spans": [ + { + "bbox": [ + 86, + 607, + 99, + 617 + ], + "score": 1.0, + "content": "121", + "type": "text" + }, + { + "bbox": [ + 105, + 605, + 327, + 618 + ], + "score": 1.0, + "content": "Consider a Markov Decision Process (MDP) defined as", + "type": "text" + }, + { + "bbox": [ + 328, + 605, + 386, + 618 + ], + "score": 0.93, + "content": "\\langle S , \\mathcal { A } , r , \\mathcal { P } , \\gamma \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 605, + 414, + 618 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 414, + 606, + 423, + 616 + ], + "score": 0.81, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 605, + 495, + 618 + ], + "score": 1.0, + "content": "is the state space,", + "type": "text" + }, + { + "bbox": [ + 495, + 606, + 504, + 615 + ], + "score": 0.76, + "content": "\\mathcal { A }", + "type": "inline_equation" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 616, + 506, + 629 + ], + "spans": [ + { + "bbox": [ + 86, + 618, + 100, + 628 + ], + "score": 1.0, + "content": "122", + "type": "text" + }, + { + "bbox": [ + 105, + 616, + 184, + 629 + ], + "score": 1.0, + "content": "is the action space,", + "type": "text" + }, + { + "bbox": [ + 185, + 619, + 190, + 626 + ], + "score": 0.72, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 616, + 327, + 629 + ], + "score": 1.0, + "content": "is the (bounded) reward function,", + "type": "text" + }, + { + "bbox": [ + 327, + 617, + 336, + 627 + ], + "score": 0.8, + "content": "\\mathcal { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 616, + 454, + 629 + ], + "score": 1.0, + "content": "is the transition function and", + "type": "text" + }, + { + "bbox": [ + 455, + 617, + 494, + 628 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 616, + 506, + 629 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 627, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 86, + 631, + 100, + 641 + ], + "score": 1.0, + "content": "123", + "type": "text" + }, + { + "bbox": [ + 105, + 627, + 221, + 641 + ], + "score": 1.0, + "content": "the discount factor. A policy", + "type": "text" + }, + { + "bbox": [ + 221, + 628, + 274, + 641 + ], + "score": 0.93, + "content": "\\pi \\in P ( { \\cal A } ) ^ { | S | }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 627, + 506, + 641 + ], + "score": 1.0, + "content": "defines the distribution over all actions for each state. The", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 640, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 87, + 642, + 100, + 651 + ], + "score": 1.0, + "content": "124", + "type": "text" + }, + { + "bbox": [ + 106, + 640, + 293, + 651 + ], + "score": 1.0, + "content": "goal of an RL agent is to find an optimal policy", + "type": "text" + }, + { + "bbox": [ + 293, + 640, + 305, + 650 + ], + "score": 0.87, + "content": "\\pi ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 640, + 505, + 651 + ], + "score": 1.0, + "content": "that maximizes the expected long-term discounted", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 650, + 503, + 680 + ], + "spans": [ + { + "bbox": [ + 86, + 652, + 100, + 673 + ], + "score": 1.0, + "content": "125 126", + "type": "text" + }, + { + "bbox": [ + 101, + 650, + 187, + 680 + ], + "score": 1.0, + "content": "return. The state-vafollowing the policy", + "type": "text" + }, + { + "bbox": [ + 188, + 664, + 195, + 672 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 650, + 234, + 680 + ], + "score": 1.0, + "content": "e function from a st", + "type": "text" + }, + { + "bbox": [ + 235, + 651, + 258, + 662 + ], + "score": 0.92, + "content": "v ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 664, + 251, + 671 + ], + "score": 0.65, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 661, + 395, + 675 + ], + "score": 0.9, + "content": "\\begin{array} { r } { v ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\bar { \\gamma } ^ { t } r _ { t + 1 } \\vert s _ { 0 } = s \\right] } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 650, + 436, + 680 + ], + "score": 1.0, + "content": "ted return for where", + "type": "text" + }, + { + "bbox": [ + 437, + 662, + 503, + 674 + ], + "score": 0.93, + "content": "r _ { t + 1 } = r ( s _ { t } , a _ { t } )", + "type": "inline_equation" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 672, + 345, + 684 + ], + "spans": [ + { + "bbox": [ + 86, + 674, + 100, + 684 + ], + "score": 1.0, + "content": "127", + "type": "text" + }, + { + "bbox": [ + 152, + 672, + 345, + 684 + ], + "score": 1.0, + "content": "to denote the vectorized form of value function.", + "type": "text" + } + ], + "index": 48, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 687, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 86, + 690, + 100, + 700 + ], + "score": 1.0, + "content": "128", + "type": "text" + }, + { + "bbox": [ + 103, + 687, + 351, + 702 + ], + "score": 1.0, + "content": "In a general form, we define policy-extended value function", + "type": "text" + }, + { + "bbox": [ + 351, + 689, + 417, + 699 + ], + "score": 0.91, + "content": "\\mathbb { V } : \\mathcal { S } \\times \\Pi \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 687, + 506, + 702 + ], + "score": 1.0, + "content": "over state and policy", + "type": "text" + } + ], + "index": 49, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 699, + 506, + 713 + ], + "spans": [ + { + "bbox": [ + 87, + 703, + 100, + 711 + ], + "score": 1.0, + "content": "129", + "type": "text" + }, + { + "bbox": [ + 104, + 699, + 136, + 713 + ], + "score": 1.0, + "content": "space:", + "type": "text" + }, + { + "bbox": [ + 136, + 700, + 205, + 712 + ], + "score": 0.92, + "content": "\\mathbb { V } ( s , \\pi ) = v ^ { \\pi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 699, + 235, + 713 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 235, + 700, + 261, + 710 + ], + "score": 0.88, + "content": "s \\in { \\mathcal { S } }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 699, + 281, + 713 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 281, + 700, + 309, + 710 + ], + "score": 0.89, + "content": "\\pi \\in \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 699, + 425, + 713 + ], + "score": 1.0, + "content": ". In this paper, we focus on", + "type": "text" + }, + { + "bbox": [ + 425, + 700, + 456, + 712 + ], + "score": 0.93, + "content": "\\mathbb { V } ( s , \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 699, + 506, + 713 + ], + "score": 1.0, + "content": "and policy-", + "type": "text" + } + ], + "index": 50, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 711, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 86, + 712, + 100, + 722 + ], + "score": 1.0, + "content": "130", + "type": "text" + }, + { + "bbox": [ + 104, + 711, + 229, + 723 + ], + "score": 1.0, + "content": "extended action-value function", + "type": "text" + }, + { + "bbox": [ + 230, + 711, + 271, + 723 + ], + "score": 0.92, + "content": "\\mathbb { Q } ( s , a , \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 711, + 405, + 723 + ], + "score": 1.0, + "content": "can be obtained similarly. We use", + "type": "text" + }, + { + "bbox": [ + 406, + 711, + 428, + 722 + ], + "score": 0.91, + "content": "\\mathbb { V } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 711, + 505, + 723 + ], + "score": 1.0, + "content": "to denote the value", + "type": "text" + } + ], + "index": 51, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 87, + 259, + 99, + 267 + ], + "score": 1.0, + "content": "131", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 255, + 367, + 269 + ], + "score": 1.0, + "content": "vector for all states in the following. The key point is that PeVFA", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 368, + 257, + 377, + 267 + ], + "score": 0.33, + "content": "\\mathbb { V }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 378, + 255, + 506, + 269 + ], + "score": 1.0, + "content": "is able to preserve the values of", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 87, + 270, + 100, + 278 + ], + "score": 1.0, + "content": "132", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 267, + 308, + 279 + ], + "score": 1.0, + "content": "multiple policies. With function approximation, a", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 308, + 267, + 339, + 277 + ], + "score": 0.37, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 340, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "is expected to approximate the values of", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 277, + 497, + 292 + ], + "spans": [ + { + "bbox": [ + 87, + 280, + 100, + 290 + ], + "score": 1.0, + "content": "133", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 277, + 241, + 292 + ], + "score": 1.0, + "content": "policies among policy space, i.e.,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 242, + 278, + 282, + 290 + ], + "score": 0.93, + "content": "\\bar { \\{ V ^ { \\pi } \\} } _ { \\pi \\in \\Pi }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 283, + 277, + 497, + 292 + ], + "score": 1.0, + "content": "and then enable value generalization among policies.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 87, + 297, + 101, + 305 + ], + "score": 1.0, + "content": "134", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 294, + 215, + 307 + ], + "score": 1.0, + "content": "Formally, given a function", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 216, + 294, + 287, + 306 + ], + "score": 0.9, + "content": "g : \\Pi \\mathcal { X } \\subseteq \\mathbb { R } ^ { n }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 288, + 294, + 374, + 307 + ], + "score": 1.0, + "content": "that maps any policy", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 375, + 297, + 382, + 304 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 382, + 294, + 405, + 307 + ], + "score": 1.0, + "content": "to an", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 406, + 297, + 413, + 304 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 413, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "-dimensional represen-", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 87, + 308, + 100, + 316 + ], + "score": 1.0, + "content": "135", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 305, + 132, + 318 + ], + "score": 1.0, + "content": "tation", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 132, + 305, + 198, + 317 + ], + "score": 0.92, + "content": "\\chi _ { \\pi } \\bar { = } g ( \\pi ) \\in \\mathcal X", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 198, + 305, + 240, + 318 + ], + "score": 1.0, + "content": ", a PeVFA", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 241, + 306, + 254, + 316 + ], + "score": 0.86, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 254, + 305, + 318, + 318 + ], + "score": 1.0, + "content": "with parameter", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 319, + 306, + 345, + 316 + ], + "score": 0.91, + "content": "\\theta \\in \\Theta", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 345, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "is to minimize the approximation error", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 316, + 291, + 329 + ], + "spans": [ + { + "bbox": [ + 87, + 319, + 100, + 327 + ], + "score": 1.0, + "content": "136", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 316, + 291, + 329 + ], + "score": 1.0, + "content": "over all possible states and policies generally:", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + } + ], + "index": 45.5, + "bbox_fs": [ + 86, + 605, + 506, + 684 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 689, + 505, + 722 + ], + "lines": [], + "index": 50, + "bbox_fs": [ + 86, + 687, + 506, + 723 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 123, + 75, + 489, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 75, + 489, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 75, + 489, + 192 + ], + "spans": [ + { + "bbox": [ + 123, + 75, + 489, + 192 + ], + "score": 0.962, + "type": "image", + "image_path": "433544a995e880196676e7310d94036d703d7b2b79a7871aedbf041ab7690f07.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 123, + 75, + 489, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 123, + 114.0, + 489, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 153.0, + 489, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 200, + 505, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 199, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 367, + 213 + ], + "score": 1.0, + "content": "Figure 2: Illustrations of value generalization among policies of", + "type": "text" + }, + { + "bbox": [ + 367, + 200, + 397, + 210 + ], + "score": 0.26, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 199, + 505, + 213 + ], + "score": 1.0, + "content": ". Each circle denotes value", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "function (estimate) of a policy. (a) Global Generalization: values learned from known policies can be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 474, + 235 + ], + "score": 1.0, + "content": "generalized to unknown policies. (b) Local Generalization: values of previous policies (e.g.,", + "type": "text" + }, + { + "bbox": [ + 474, + 223, + 484, + 233 + ], + "score": 0.79, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 222, + 505, + 235 + ], + "score": 1.0, + "content": ") can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 233, + 431, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 277, + 245 + ], + "score": 1.0, + "content": "be generalized to successive policies (e.g.,", + "type": "text" + }, + { + "bbox": [ + 277, + 234, + 298, + 244 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 233, + 431, + 245 + ], + "score": 1.0, + "content": ") along policy improvement path.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 89, + 255, + 506, + 290 + ], + "lines": [ + { + "bbox": [ + 87, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 87, + 259, + 99, + 267 + ], + "score": 1.0, + "content": "131", + "type": "text" + }, + { + "bbox": [ + 104, + 255, + 367, + 269 + ], + "score": 1.0, + "content": "vector for all states in the following. The key point is that PeVFA", + "type": "text" + }, + { + "bbox": [ + 368, + 257, + 377, + 267 + ], + "score": 0.33, + "content": "\\mathbb { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 255, + 506, + 269 + ], + "score": 1.0, + "content": "is able to preserve the values of", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 87, + 267, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 87, + 270, + 100, + 278 + ], + "score": 1.0, + "content": "132", + "type": "text" + }, + { + "bbox": [ + 105, + 267, + 308, + 279 + ], + "score": 1.0, + "content": "multiple policies. With function approximation, a", + "type": "text" + }, + { + "bbox": [ + 308, + 267, + 339, + 277 + ], + "score": 0.37, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 267, + 506, + 279 + ], + "score": 1.0, + "content": "is expected to approximate the values of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 87, + 277, + 497, + 292 + ], + "spans": [ + { + "bbox": [ + 87, + 280, + 100, + 290 + ], + "score": 1.0, + "content": "133", + "type": "text" + }, + { + "bbox": [ + 104, + 277, + 241, + 292 + ], + "score": 1.0, + "content": "policies among policy space, i.e.,", + "type": "text" + }, + { + "bbox": [ + 242, + 278, + 282, + 290 + ], + "score": 0.93, + "content": "\\bar { \\{ V ^ { \\pi } \\} } _ { \\pi \\in \\Pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 277, + 497, + 292 + ], + "score": 1.0, + "content": "and then enable value generalization among policies.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 87, + 294, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 87, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 87, + 297, + 101, + 305 + ], + "score": 1.0, + "content": "134", + "type": "text" + }, + { + "bbox": [ + 104, + 294, + 215, + 307 + ], + "score": 1.0, + "content": "Formally, given a function", + "type": "text" + }, + { + "bbox": [ + 216, + 294, + 287, + 306 + ], + "score": 0.9, + "content": "g : \\Pi \\mathcal { X } \\subseteq \\mathbb { R } ^ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 294, + 374, + 307 + ], + "score": 1.0, + "content": "that maps any policy", + "type": "text" + }, + { + "bbox": [ + 375, + 297, + 382, + 304 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 294, + 405, + 307 + ], + "score": 1.0, + "content": "to an", + "type": "text" + }, + { + "bbox": [ + 406, + 297, + 413, + 304 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "-dimensional represen-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 87, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 87, + 308, + 100, + 316 + ], + "score": 1.0, + "content": "135", + "type": "text" + }, + { + "bbox": [ + 104, + 305, + 132, + 318 + ], + "score": 1.0, + "content": "tation", + "type": "text" + }, + { + "bbox": [ + 132, + 305, + 198, + 317 + ], + "score": 0.92, + "content": "\\chi _ { \\pi } \\bar { = } g ( \\pi ) \\in \\mathcal X", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 305, + 240, + 318 + ], + "score": 1.0, + "content": ", a PeVFA", + "type": "text" + }, + { + "bbox": [ + 241, + 306, + 254, + 316 + ], + "score": 0.86, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 305, + 318, + 318 + ], + "score": 1.0, + "content": "with parameter", + "type": "text" + }, + { + "bbox": [ + 319, + 306, + 345, + 316 + ], + "score": 0.91, + "content": "\\theta \\in \\Theta", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "is to minimize the approximation error", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 87, + 316, + 291, + 329 + ], + "spans": [ + { + "bbox": [ + 87, + 319, + 100, + 327 + ], + "score": 1.0, + "content": "136", + "type": "text" + }, + { + "bbox": [ + 104, + 316, + 291, + 329 + ], + "score": 1.0, + "content": "over all possible states and policies generally:", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 329, + 402, + 356 + ], + "lines": [ + { + "bbox": [ + 207, + 329, + 402, + 356 + ], + "spans": [ + { + "bbox": [ + 207, + 329, + 402, + 356 + ], + "score": 0.93, + "content": "F _ { \\mu , p , \\rho } ( \\theta , g , \\Pi ) = \\sum _ { \\pi \\in \\Pi } \\mu ( \\pi ) \\| \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) - V ^ { \\pi } \\| _ { p , \\rho } ,", + "type": "interline_equation", + "image_path": "cdf33cc55636dd3817be4c6e607a13d303010054d5d54d2c8ed2a0f07615f511.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 329, + 402, + 342.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 207, + 342.5, + 402, + 356.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 86, + 359, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 86, + 357, + 507, + 374 + ], + "spans": [ + { + "bbox": [ + 86, + 361, + 99, + 371 + ], + "score": 1.0, + "content": "137", + "type": "text" + }, + { + "bbox": [ + 104, + 357, + 133, + 374 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 362, + 151, + 371 + ], + "score": 0.64, + "content": "\\mu , \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 357, + 370, + 374 + ], + "score": 1.0, + "content": "are distributions over policies and states respectively,", + "type": "text" + }, + { + "bbox": [ + 371, + 358, + 494, + 372 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\| f \\| _ { p , \\rho } = ( \\int _ { s } \\rho ( \\mathrm { d } s ) | f ( s ) | ^ { p } ) ^ { 1 / p } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 357, + 507, + 374 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 86, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 86, + 373, + 99, + 381 + ], + "score": 1.0, + "content": "138", + "type": "text" + }, + { + "bbox": [ + 107, + 373, + 113, + 382 + ], + "score": 0.77, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 370, + 154, + 384 + ], + "score": 1.0, + "content": "-weighted", + "type": "text" + }, + { + "bbox": [ + 155, + 371, + 167, + 383 + ], + "score": 0.9, + "content": "L _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 370, + 259, + 384 + ], + "score": 1.0, + "content": "-norm [26, 46] for any", + "type": "text" + }, + { + "bbox": [ + 259, + 371, + 304, + 382 + ], + "score": 0.92, + "content": "f : S \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 370, + 404, + 384 + ], + "score": 1.0, + "content": ". The policy distribution", + "type": "text" + }, + { + "bbox": [ + 405, + 373, + 412, + 382 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "of interest depends on", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 86, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 86, + 383, + 100, + 393 + ], + "score": 1.0, + "content": "139", + "type": "text" + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "the scenario where value generalization is considered. As illustrated in Figure 2, we provide two", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 86, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 86, + 394, + 99, + 403 + ], + "score": 1.0, + "content": "140", + "type": "text" + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "value generalization scenarios. In the global generalization scenario, a uniform distribution over", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 86, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 86, + 405, + 99, + 415 + ], + "score": 1.0, + "content": "141", + "type": "text" + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "known policy set may be considered with a general purpose of value generalization for unknown", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 86, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 86, + 416, + 100, + 425 + ], + "score": 1.0, + "content": "142", + "type": "text" + }, + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "policies. For the specific local generalization scenario along policy improvement path during GPI, a", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 86, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 86, + 426, + 100, + 437 + ], + "score": 1.0, + "content": "143", + "type": "text" + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "sophisticated distribution that adaptively weights recent policies more during the learning process", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 86, + 436, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 86, + 439, + 100, + 447 + ], + "score": 1.0, + "content": "144", + "type": "text" + }, + { + "bbox": [ + 105, + 436, + 506, + 449 + ], + "score": 1.0, + "content": "may be more suitable in this case. In the following, we care more about the local generalization", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 86, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 86, + 449, + 100, + 458 + ], + "score": 1.0, + "content": "145", + "type": "text" + }, + { + "bbox": [ + 105, + 447, + 284, + 460 + ], + "score": 1.0, + "content": "scenario and use uniform state distribution", + "type": "text" + }, + { + "bbox": [ + 284, + 449, + 290, + 459 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 447, + 309, + 460 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 309, + 447, + 322, + 458 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "-norm for demonstration. The subscripts are", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 86, + 457, + 250, + 470 + ], + "spans": [ + { + "bbox": [ + 86, + 460, + 100, + 469 + ], + "score": 1.0, + "content": "146", + "type": "text" + }, + { + "bbox": [ + 105, + 457, + 186, + 470 + ], + "score": 1.0, + "content": "omitted and we use", + "type": "text" + }, + { + "bbox": [ + 187, + 458, + 204, + 470 + ], + "score": 0.91, + "content": "\\| \\cdot \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 457, + 250, + 470 + ], + "score": 1.0, + "content": "for clarity.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 98, + 481, + 388, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 390, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 390, + 495 + ], + "score": 1.0, + "content": "3.2 Theoretical Analysis on Value Generalization among Policies", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 87, + 501, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 86, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 86, + 504, + 100, + 513 + ], + "score": 1.0, + "content": "148", + "type": "text" + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "In this part, we theoretically analyze the value generalization among policies induced by PeVFA. We", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 86, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 86, + 514, + 100, + 524 + ], + "score": 1.0, + "content": "149", + "type": "text" + }, + { + "bbox": [ + 106, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "start from a two-policy case and study whether the value approximation learned for one policy can be", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 86, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 86, + 524, + 100, + 536 + ], + "score": 1.0, + "content": "150", + "type": "text" + }, + { + "bbox": [ + 105, + 522, + 445, + 536 + ], + "score": 1.0, + "content": "generalized to the other one. Later, we study the local generalization scenario (Figure", + "type": "text" + }, + { + "bbox": [ + 446, + 524, + 464, + 534 + ], + "score": 0.28, + "content": "2 ( \\mathbf { b } ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 522, + 506, + 536 + ], + "score": 1.0, + "content": ") and shed", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 86, + 533, + 467, + 547 + ], + "spans": [ + { + "bbox": [ + 86, + 534, + 100, + 547 + ], + "score": 1.0, + "content": "151", + "type": "text" + }, + { + "bbox": [ + 105, + 533, + 225, + 547 + ], + "score": 1.0, + "content": "the light on the superiority of", + "type": "text" + }, + { + "bbox": [ + 226, + 534, + 256, + 545 + ], + "score": 0.35, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 533, + 467, + 547 + ], + "score": 1.0, + "content": "for GPI. All the proofs are provided in Appendix A.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 87, + 550, + 506, + 595 + ], + "lines": [ + { + "bbox": [ + 86, + 549, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 86, + 552, + 100, + 562 + ], + "score": 1.0, + "content": "152", + "type": "text" + }, + { + "bbox": [ + 104, + 549, + 470, + 564 + ], + "score": 1.0, + "content": "For the convenience of demonstration, we use an identical policy representation function, i.e.,", + "type": "text" + }, + { + "bbox": [ + 470, + 553, + 502, + 561 + ], + "score": 0.87, + "content": "\\chi _ { \\pi } = \\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 549, + 507, + 564 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 86, + 560, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 86, + 563, + 100, + 573 + ], + "score": 1.0, + "content": "153", + "type": "text" + }, + { + "bbox": [ + 104, + 560, + 280, + 575 + ], + "score": 1.0, + "content": "and define the approximation loss of PeVFA", + "type": "text" + }, + { + "bbox": [ + 280, + 561, + 293, + 573 + ], + "score": 0.84, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 560, + 350, + 575 + ], + "score": 1.0, + "content": "for any policy", + "type": "text" + }, + { + "bbox": [ + 350, + 561, + 378, + 572 + ], + "score": 0.9, + "content": "\\pi \\in \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 560, + 388, + 575 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 389, + 561, + 503, + 573 + ], + "score": 0.92, + "content": "f _ { \\theta } ( \\pi ) = \\| \\mathbb { V } _ { \\theta } ( \\pi ) - V ^ { \\bar { \\pi } } \\| \\ge 0", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 560, + 507, + 575 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 86, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 86, + 574, + 100, + 584 + ], + "score": 1.0, + "content": "154", + "type": "text" + }, + { + "bbox": [ + 106, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "We use the following definitions for a formal description of value approximation process with PeVFA", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 86, + 583, + 464, + 596 + ], + "spans": [ + { + "bbox": [ + 86, + 585, + 100, + 595 + ], + "score": 1.0, + "content": "155", + "type": "text" + }, + { + "bbox": [ + 105, + 583, + 246, + 596 + ], + "score": 1.0, + "content": "and local property of loss function", + "type": "text" + }, + { + "bbox": [ + 246, + 583, + 256, + 595 + ], + "score": 0.88, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 583, + 464, + 596 + ], + "score": 1.0, + "content": "that influences generalization [40, 63] respectively:", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 89, + 601, + 506, + 638 + ], + "lines": [ + { + "bbox": [ + 87, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 87, + 604, + 100, + 613 + ], + "score": 1.0, + "content": "156", + "type": "text" + }, + { + "bbox": [ + 103, + 601, + 162, + 614 + ], + "score": 1.0, + "content": "Definition 1 (", + "type": "text" + }, + { + "bbox": [ + 162, + 604, + 169, + 612 + ], + "score": 0.69, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 601, + 443, + 614 + ], + "score": 1.0, + "content": "-Value Approximation) We define a value approximation process", + "type": "text" + }, + { + "bbox": [ + 444, + 602, + 505, + 613 + ], + "score": 0.87, + "content": "\\mathcal { P } _ { \\pi } : \\Theta \\to \\Theta", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 87, + 613, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 87, + 617, + 100, + 625 + ], + "score": 1.0, + "content": "157", + "type": "text" + }, + { + "bbox": [ + 104, + 614, + 173, + 628 + ], + "score": 1.0, + "content": "with PeVFA as a", + "type": "text" + }, + { + "bbox": [ + 174, + 617, + 181, + 626 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 614, + 413, + 628 + ], + "score": 1.0, + "content": "-contraction mapping on the approximation loss for policy", + "type": "text" + }, + { + "bbox": [ + 414, + 617, + 420, + 625 + ], + "score": 0.66, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 614, + 455, + 628 + ], + "score": 1.0, + "content": ", i.e., for", + "type": "text" + }, + { + "bbox": [ + 455, + 613, + 502, + 627 + ], + "score": 0.9, + "content": "\\hat { \\theta } = \\mathcal { P } _ { \\pi } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 614, + 506, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 86, + 626, + 279, + 639 + ], + "spans": [ + { + "bbox": [ + 86, + 626, + 141, + 639 + ], + "score": 1.0, + "content": "158 we have", + "type": "text" + }, + { + "bbox": [ + 142, + 626, + 208, + 639 + ], + "score": 0.91, + "content": "f _ { \\hat { \\theta } } ( \\pi ) \\leq \\gamma f _ { \\theta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 626, + 235, + 639 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 236, + 626, + 275, + 638 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 626, + 279, + 639 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 105, + 642, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 162, + 655 + ], + "score": 1.0, + "content": "Definition 2 (", + "type": "text" + }, + { + "bbox": [ + 162, + 643, + 170, + 652 + ], + "score": 0.59, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 641, + 258, + 655 + ], + "score": 1.0, + "content": "-Continuity) We call", + "type": "text" + }, + { + "bbox": [ + 258, + 642, + 268, + 653 + ], + "score": 0.61, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 641, + 279, + 655 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 279, + 643, + 287, + 652 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 641, + 372, + 655 + ], + "score": 1.0, + "content": "-continuous at policy", + "type": "text" + }, + { + "bbox": [ + 372, + 644, + 380, + 652 + ], + "score": 0.66, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 641, + 506, + 655 + ], + "score": 1.0, + "content": "if fθ is Lipschitz continuous at", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 180, + 666 + ], + "score": 1.0, + "content": "π with a constant", + "type": "text" + }, + { + "bbox": [ + 181, + 653, + 227, + 665 + ], + "score": 0.92, + "content": "L \\in [ 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 653, + 249, + 666 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 249, + 653, + 377, + 665 + ], + "score": 0.91, + "content": "| f _ { \\theta } ( { \\boldsymbol \\pi } ) - f _ { \\theta } ( { \\boldsymbol \\pi } ^ { \\prime } ) | \\leq L \\cdot d ( { \\boldsymbol \\pi } , { \\boldsymbol \\pi } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 653, + 393, + 666 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 393, + 653, + 424, + 664 + ], + "score": 0.9, + "content": "\\pi ^ { \\prime } \\in \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "with some distance", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 663, + 221, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 208, + 677 + ], + "score": 1.0, + "content": "metric d for policy space", + "type": "text" + }, + { + "bbox": [ + 208, + 665, + 217, + 674 + ], + "score": 0.46, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 663, + 221, + 677 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 89, + 683, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 87, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 87, + 685, + 100, + 694 + ], + "score": 1.0, + "content": "162", + "type": "text" + }, + { + "bbox": [ + 105, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "With Definition 1, the consecutive value approximation for the policies along policy improvement path", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 87, + 695, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 87, + 702, + 100, + 711 + ], + "score": 1.0, + "content": "163", + "type": "text" + }, + { + "bbox": [ + 104, + 699, + 236, + 712 + ], + "score": 1.0, + "content": "during GPI can be described as:", + "type": "text" + }, + { + "bbox": [ + 236, + 695, + 370, + 711 + ], + "score": 0.89, + "content": "\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots ,", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 700, + 504, + 711 + ], + "score": 1.0, + "content": ", as the green arrows illustrated in", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 87, + 711, + 500, + 723 + ], + "spans": [ + { + "bbox": [ + 87, + 713, + 101, + 722 + ], + "score": 1.0, + "content": "164", + "type": "text" + }, + { + "bbox": [ + 104, + 711, + 500, + 723 + ], + "score": 1.0, + "content": "Figure 1. One may refer to Appendix A.1 for a discussion on the rationality of the two definitions.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "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": "image", + "bbox": [ + 123, + 75, + 489, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 75, + 489, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 75, + 489, + 192 + ], + "spans": [ + { + "bbox": [ + 123, + 75, + 489, + 192 + ], + "score": 0.962, + "type": "image", + "image_path": "433544a995e880196676e7310d94036d703d7b2b79a7871aedbf041ab7690f07.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 123, + 75, + 489, + 114.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 123, + 114.0, + 489, + 153.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 153.0, + 489, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 200, + 505, + 245 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 199, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 367, + 213 + ], + "score": 1.0, + "content": "Figure 2: Illustrations of value generalization among policies of", + "type": "text" + }, + { + "bbox": [ + 367, + 200, + 397, + 210 + ], + "score": 0.26, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 199, + 505, + 213 + ], + "score": 1.0, + "content": ". Each circle denotes value", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "function (estimate) of a policy. (a) Global Generalization: values learned from known policies can be", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 474, + 235 + ], + "score": 1.0, + "content": "generalized to unknown policies. (b) Local Generalization: values of previous policies (e.g.,", + "type": "text" + }, + { + "bbox": [ + 474, + 223, + 484, + 233 + ], + "score": 0.79, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 222, + 505, + 235 + ], + "score": 1.0, + "content": ") can", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 233, + 431, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 277, + 245 + ], + "score": 1.0, + "content": "be generalized to successive policies (e.g.,", + "type": "text" + }, + { + "bbox": [ + 277, + 234, + 298, + 244 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 233, + 431, + 245 + ], + "score": 1.0, + "content": ") along policy improvement path.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "index", + "bbox": [ + 89, + 255, + 506, + 290 + ], + "lines": [], + "index": 8, + "bbox_fs": [ + 87, + 255, + 506, + 292 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 87, + 294, + 505, + 327 + ], + "lines": [], + "index": 11, + "bbox_fs": [ + 87, + 294, + 506, + 329 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 329, + 402, + 356 + ], + "lines": [ + { + "bbox": [ + 207, + 329, + 402, + 356 + ], + "spans": [ + { + "bbox": [ + 207, + 329, + 402, + 356 + ], + "score": 0.93, + "content": "F _ { \\mu , p , \\rho } ( \\theta , g , \\Pi ) = \\sum _ { \\pi \\in \\Pi } \\mu ( \\pi ) \\| \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) - V ^ { \\pi } \\| _ { p , \\rho } ,", + "type": "interline_equation", + "image_path": "cdf33cc55636dd3817be4c6e607a13d303010054d5d54d2c8ed2a0f07615f511.jpg" + } + ] + } + ], + "index": 13.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 329, + 402, + 342.5 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 207, + 342.5, + 402, + 356.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "index", + "bbox": [ + 86, + 359, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 86, + 357, + 507, + 374 + ], + "spans": [ + { + "bbox": [ + 86, + 361, + 99, + 371 + ], + "score": 1.0, + "content": "137", + "type": "text" + }, + { + "bbox": [ + 104, + 357, + 133, + 374 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 362, + 151, + 371 + ], + "score": 0.64, + "content": "\\mu , \\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 152, + 357, + 370, + 374 + ], + "score": 1.0, + "content": "are distributions over policies and states respectively,", + "type": "text" + }, + { + "bbox": [ + 371, + 358, + 494, + 372 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\| f \\| _ { p , \\rho } = ( \\int _ { s } \\rho ( \\mathrm { d } s ) | f ( s ) | ^ { p } ) ^ { 1 / p } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 357, + 507, + 374 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 86, + 373, + 99, + 381 + ], + "score": 1.0, + "content": "138", + "type": "text" + }, + { + "bbox": [ + 107, + 373, + 113, + 382 + ], + "score": 0.77, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 370, + 154, + 384 + ], + "score": 1.0, + "content": "-weighted", + "type": "text" + }, + { + "bbox": [ + 155, + 371, + 167, + 383 + ], + "score": 0.9, + "content": "L _ { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 370, + 259, + 384 + ], + "score": 1.0, + "content": "-norm [26, 46] for any", + "type": "text" + }, + { + "bbox": [ + 259, + 371, + 304, + 382 + ], + "score": 0.92, + "content": "f : S \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 370, + 404, + 384 + ], + "score": 1.0, + "content": ". The policy distribution", + "type": "text" + }, + { + "bbox": [ + 405, + 373, + 412, + 382 + ], + "score": 0.81, + "content": "\\mu", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "of interest depends on", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 86, + 383, + 100, + 393 + ], + "score": 1.0, + "content": "139", + "type": "text" + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "the scenario where value generalization is considered. As illustrated in Figure 2, we provide two", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 86, + 394, + 99, + 403 + ], + "score": 1.0, + "content": "140", + "type": "text" + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "value generalization scenarios. In the global generalization scenario, a uniform distribution over", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 86, + 405, + 99, + 415 + ], + "score": 1.0, + "content": "141", + "type": "text" + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "known policy set may be considered with a general purpose of value generalization for unknown", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 86, + 416, + 100, + 425 + ], + "score": 1.0, + "content": "142", + "type": "text" + }, + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "policies. For the specific local generalization scenario along policy improvement path during GPI, a", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 424, + 506, + 438 + ], + "spans": [ + { + "bbox": [ + 86, + 426, + 100, + 437 + ], + "score": 1.0, + "content": "143", + "type": "text" + }, + { + "bbox": [ + 105, + 424, + 506, + 438 + ], + "score": 1.0, + "content": "sophisticated distribution that adaptively weights recent policies more during the learning process", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 436, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 86, + 439, + 100, + 447 + ], + "score": 1.0, + "content": "144", + "type": "text" + }, + { + "bbox": [ + 105, + 436, + 506, + 449 + ], + "score": 1.0, + "content": "may be more suitable in this case. In the following, we care more about the local generalization", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 86, + 449, + 100, + 458 + ], + "score": 1.0, + "content": "145", + "type": "text" + }, + { + "bbox": [ + 105, + 447, + 284, + 460 + ], + "score": 1.0, + "content": "scenario and use uniform state distribution", + "type": "text" + }, + { + "bbox": [ + 284, + 449, + 290, + 459 + ], + "score": 0.81, + "content": "\\rho", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 447, + 309, + 460 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 309, + 447, + 322, + 458 + ], + "score": 0.89, + "content": "L _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "-norm for demonstration. The subscripts are", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 457, + 250, + 470 + ], + "spans": [ + { + "bbox": [ + 86, + 460, + 100, + 469 + ], + "score": 1.0, + "content": "146", + "type": "text" + }, + { + "bbox": [ + 105, + 457, + 186, + 470 + ], + "score": 1.0, + "content": "omitted and we use", + "type": "text" + }, + { + "bbox": [ + 187, + 458, + 204, + 470 + ], + "score": 0.91, + "content": "\\| \\cdot \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 457, + 250, + 470 + ], + "score": 1.0, + "content": "for clarity.", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + } + ], + "index": 19.5, + "bbox_fs": [ + 86, + 357, + 507, + 470 + ] + }, + { + "type": "title", + "bbox": [ + 98, + 481, + 388, + 493 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 390, + 495 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 390, + 495 + ], + "score": 1.0, + "content": "3.2 Theoretical Analysis on Value Generalization among Policies", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "index", + "bbox": [ + 87, + 501, + 505, + 546 + ], + "lines": [ + { + "bbox": [ + 86, + 501, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 86, + 504, + 100, + 513 + ], + "score": 1.0, + "content": "148", + "type": "text" + }, + { + "bbox": [ + 105, + 501, + 505, + 515 + ], + "score": 1.0, + "content": "In this part, we theoretically analyze the value generalization among policies induced by PeVFA. We", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 512, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 86, + 514, + 100, + 524 + ], + "score": 1.0, + "content": "149", + "type": "text" + }, + { + "bbox": [ + 106, + 512, + 505, + 525 + ], + "score": 1.0, + "content": "start from a two-policy case and study whether the value approximation learned for one policy can be", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 522, + 506, + 536 + ], + "spans": [ + { + "bbox": [ + 86, + 524, + 100, + 536 + ], + "score": 1.0, + "content": "150", + "type": "text" + }, + { + "bbox": [ + 105, + 522, + 445, + 536 + ], + "score": 1.0, + "content": "generalized to the other one. Later, we study the local generalization scenario (Figure", + "type": "text" + }, + { + "bbox": [ + 446, + 524, + 464, + 534 + ], + "score": 0.28, + "content": "2 ( \\mathbf { b } ) ,", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 522, + 506, + 536 + ], + "score": 1.0, + "content": ") and shed", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 533, + 467, + 547 + ], + "spans": [ + { + "bbox": [ + 86, + 534, + 100, + 547 + ], + "score": 1.0, + "content": "151", + "type": "text" + }, + { + "bbox": [ + 105, + 533, + 225, + 547 + ], + "score": 1.0, + "content": "the light on the superiority of", + "type": "text" + }, + { + "bbox": [ + 226, + 534, + 256, + 545 + ], + "score": 0.35, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 533, + 467, + 547 + ], + "score": 1.0, + "content": "for GPI. All the proofs are provided in Appendix A.", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 549, + 507, + 564 + ], + "spans": [ + { + "bbox": [ + 86, + 552, + 100, + 562 + ], + "score": 1.0, + "content": "152", + "type": "text" + }, + { + "bbox": [ + 104, + 549, + 470, + 564 + ], + "score": 1.0, + "content": "For the convenience of demonstration, we use an identical policy representation function, i.e.,", + "type": "text" + }, + { + "bbox": [ + 470, + 553, + 502, + 561 + ], + "score": 0.87, + "content": "\\chi _ { \\pi } = \\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 549, + 507, + 564 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 560, + 507, + 575 + ], + "spans": [ + { + "bbox": [ + 86, + 563, + 100, + 573 + ], + "score": 1.0, + "content": "153", + "type": "text" + }, + { + "bbox": [ + 104, + 560, + 280, + 575 + ], + "score": 1.0, + "content": "and define the approximation loss of PeVFA", + "type": "text" + }, + { + "bbox": [ + 280, + 561, + 293, + 573 + ], + "score": 0.84, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 560, + 350, + 575 + ], + "score": 1.0, + "content": "for any policy", + "type": "text" + }, + { + "bbox": [ + 350, + 561, + 378, + 572 + ], + "score": 0.9, + "content": "\\pi \\in \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 560, + 388, + 575 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 389, + 561, + 503, + 573 + ], + "score": 0.92, + "content": "f _ { \\theta } ( \\pi ) = \\| \\mathbb { V } _ { \\theta } ( \\pi ) - V ^ { \\bar { \\pi } } \\| \\ge 0", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 560, + 507, + 575 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 86, + 574, + 100, + 584 + ], + "score": 1.0, + "content": "154", + "type": "text" + }, + { + "bbox": [ + 106, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "We use the following definitions for a formal description of value approximation process with PeVFA", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 583, + 464, + 596 + ], + "spans": [ + { + "bbox": [ + 86, + 585, + 100, + 595 + ], + "score": 1.0, + "content": "155", + "type": "text" + }, + { + "bbox": [ + 105, + 583, + 246, + 596 + ], + "score": 1.0, + "content": "and local property of loss function", + "type": "text" + }, + { + "bbox": [ + 246, + 583, + 256, + 595 + ], + "score": 0.88, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 583, + 464, + 596 + ], + "score": 1.0, + "content": "that influences generalization [40, 63] respectively:", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 601, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 87, + 604, + 100, + 613 + ], + "score": 1.0, + "content": "156", + "type": "text" + }, + { + "bbox": [ + 103, + 601, + 162, + 614 + ], + "score": 1.0, + "content": "Definition 1 (", + "type": "text" + }, + { + "bbox": [ + 162, + 604, + 169, + 612 + ], + "score": 0.69, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 601, + 443, + 614 + ], + "score": 1.0, + "content": "-Value Approximation) We define a value approximation process", + "type": "text" + }, + { + "bbox": [ + 444, + 602, + 505, + 613 + ], + "score": 0.87, + "content": "\\mathcal { P } _ { \\pi } : \\Theta \\to \\Theta", + "type": "inline_equation" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 613, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 87, + 617, + 100, + 625 + ], + "score": 1.0, + "content": "157", + "type": "text" + }, + { + "bbox": [ + 104, + 614, + 173, + 628 + ], + "score": 1.0, + "content": "with PeVFA as a", + "type": "text" + }, + { + "bbox": [ + 174, + 617, + 181, + 626 + ], + "score": 0.79, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 614, + 413, + 628 + ], + "score": 1.0, + "content": "-contraction mapping on the approximation loss for policy", + "type": "text" + }, + { + "bbox": [ + 414, + 617, + 420, + 625 + ], + "score": 0.66, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 614, + 455, + 628 + ], + "score": 1.0, + "content": ", i.e., for", + "type": "text" + }, + { + "bbox": [ + 455, + 613, + 502, + 627 + ], + "score": 0.9, + "content": "\\hat { \\theta } = \\mathcal { P } _ { \\pi } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 614, + 506, + 628 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 626, + 279, + 639 + ], + "spans": [ + { + "bbox": [ + 86, + 626, + 141, + 639 + ], + "score": 1.0, + "content": "158 we have", + "type": "text" + }, + { + "bbox": [ + 142, + 626, + 208, + 639 + ], + "score": 0.91, + "content": "f _ { \\hat { \\theta } } ( \\pi ) \\leq \\gamma f _ { \\theta } ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 626, + 235, + 639 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 236, + 626, + 275, + 638 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 626, + 279, + 639 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + } + ], + "index": 27.5, + "bbox_fs": [ + 86, + 501, + 506, + 547 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 550, + 506, + 595 + ], + "lines": [], + "index": 31.5, + "bbox_fs": [ + 86, + 549, + 507, + 596 + ], + "lines_deleted": true + }, + { + "type": "index", + "bbox": [ + 89, + 601, + 506, + 638 + ], + "lines": [], + "index": 35, + "bbox_fs": [ + 86, + 601, + 506, + 639 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 105, + 642, + 505, + 676 + ], + "lines": [ + { + "bbox": [ + 105, + 641, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 162, + 655 + ], + "score": 1.0, + "content": "Definition 2 (", + "type": "text" + }, + { + "bbox": [ + 162, + 643, + 170, + 652 + ], + "score": 0.59, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 641, + 258, + 655 + ], + "score": 1.0, + "content": "-Continuity) We call", + "type": "text" + }, + { + "bbox": [ + 258, + 642, + 268, + 653 + ], + "score": 0.61, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 641, + 279, + 655 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 279, + 643, + 287, + 652 + ], + "score": 0.72, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 641, + 372, + 655 + ], + "score": 1.0, + "content": "-continuous at policy", + "type": "text" + }, + { + "bbox": [ + 372, + 644, + 380, + 652 + ], + "score": 0.66, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 641, + 506, + 655 + ], + "score": 1.0, + "content": "if fθ is Lipschitz continuous at", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 653, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 180, + 666 + ], + "score": 1.0, + "content": "π with a constant", + "type": "text" + }, + { + "bbox": [ + 181, + 653, + 227, + 665 + ], + "score": 0.92, + "content": "L \\in [ 0 , \\infty )", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 653, + 249, + 666 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 249, + 653, + 377, + 665 + ], + "score": 0.91, + "content": "| f _ { \\theta } ( { \\boldsymbol \\pi } ) - f _ { \\theta } ( { \\boldsymbol \\pi } ^ { \\prime } ) | \\leq L \\cdot d ( { \\boldsymbol \\pi } , { \\boldsymbol \\pi } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 653, + 393, + 666 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 393, + 653, + 424, + 664 + ], + "score": 0.9, + "content": "\\pi ^ { \\prime } \\in \\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 653, + 505, + 666 + ], + "score": 1.0, + "content": "with some distance", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 663, + 221, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 208, + 677 + ], + "score": 1.0, + "content": "metric d for policy space", + "type": "text" + }, + { + "bbox": [ + 208, + 665, + 217, + 674 + ], + "score": 0.46, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 663, + 221, + 677 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 641, + 506, + 677 + ] + }, + { + "type": "index", + "bbox": [ + 89, + 683, + 505, + 723 + ], + "lines": [ + { + "bbox": [ + 87, + 683, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 87, + 685, + 100, + 694 + ], + "score": 1.0, + "content": "162", + "type": "text" + }, + { + "bbox": [ + 105, + 683, + 505, + 695 + ], + "score": 1.0, + "content": "With Definition 1, the consecutive value approximation for the policies along policy improvement path", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 695, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 87, + 702, + 100, + 711 + ], + "score": 1.0, + "content": "163", + "type": "text" + }, + { + "bbox": [ + 104, + 699, + 236, + 712 + ], + "score": 1.0, + "content": "during GPI can be described as:", + "type": "text" + }, + { + "bbox": [ + 236, + 695, + 370, + 711 + ], + "score": 0.89, + "content": "\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots ,", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 700, + 504, + 711 + ], + "score": 1.0, + "content": ", as the green arrows illustrated in", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 711, + 500, + 723 + ], + "spans": [ + { + "bbox": [ + 87, + 713, + 101, + 722 + ], + "score": 1.0, + "content": "164", + "type": "text" + }, + { + "bbox": [ + 104, + 711, + 500, + 723 + ], + "score": 1.0, + "content": "Figure 1. One may refer to Appendix A.1 for a discussion on the rationality of the two definitions.", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 90, + 71, + 505, + 87 + ], + "spans": [ + { + "bbox": [ + 90, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "65", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 103, + 71, + 505, + 87 + ], + "score": 1.0, + "content": "To start our analysis, we first study the generalized value approximation loss in a two-policy case", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 87, + 83, + 393, + 96 + ], + "spans": [ + { + "bbox": [ + 87, + 83, + 229, + 96 + ], + "score": 1.0, + "content": "166 where only the value of policy", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 230, + 85, + 241, + 95 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 241, + 83, + 393, + 96 + ], + "score": 1.0, + "content": "is approximated by PeVFA as below:", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_start_line": true + } + ], + "index": 41, + "bbox_fs": [ + 87, + 683, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 92, + 72, + 505, + 95 + ], + "lines": [ + { + "bbox": [ + 90, + 71, + 505, + 87 + ], + "spans": [ + { + "bbox": [ + 90, + 75, + 100, + 84 + ], + "score": 1.0, + "content": "65", + "type": "text" + }, + { + "bbox": [ + 103, + 71, + 505, + 87 + ], + "score": 1.0, + "content": "To start our analysis, we first study the generalized value approximation loss in a two-policy case", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 87, + 83, + 393, + 96 + ], + "spans": [ + { + "bbox": [ + 87, + 83, + 229, + 96 + ], + "score": 1.0, + "content": "166 where only the value of policy", + "type": "text" + }, + { + "bbox": [ + 230, + 85, + 241, + 95 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 83, + 393, + 96 + ], + "score": 1.0, + "content": "is approximated by PeVFA as below:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 97, + 99, + 505, + 130 + ], + "lines": [ + { + "bbox": [ + 91, + 93, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 91, + 93, + 168, + 120 + ], + "score": 1.0, + "content": "Lemma 1 For 67", + "type": "text" + }, + { + "bbox": [ + 169, + 99, + 211, + 114 + ], + "score": 0.86, + "content": "\\theta \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\hat { \\theta } .", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 93, + 224, + 120 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 224, + 102, + 235, + 116 + ], + "score": 0.76, + "content": "f _ { \\hat { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 93, + 246, + 120 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 246, + 101, + 254, + 114 + ], + "score": 0.82, + "content": "\\hat { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 93, + 315, + 120 + ], + "score": 1.0, + "content": "-continuous at", + "type": "text" + }, + { + "bbox": [ + 315, + 105, + 326, + 114 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 93, + 347, + 120 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 347, + 103, + 417, + 115 + ], + "score": 0.92, + "content": "f _ { \\theta } ( \\pi _ { 1 } ) \\le f _ { \\theta } ( \\pi _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 93, + 464, + 120 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + }, + { + "bbox": [ + 464, + 103, + 505, + 116 + ], + "score": 0.9, + "content": "f _ { \\hat { \\theta } } ( \\pi _ { 2 } ) \\leq", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 93, + 115, + 365, + 131 + ], + "spans": [ + { + "bbox": [ + 93, + 115, + 106, + 131 + ], + "score": 1.0, + "content": "68", + "type": "text" + }, + { + "bbox": [ + 106, + 116, + 208, + 129 + ], + "score": 0.88, + "content": "\\gamma f _ { \\theta } ( \\pi _ { 2 } ) + \\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 115, + 239, + 131 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 239, + 115, + 360, + 129 + ], + "score": 0.92, + "content": "\\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } ) = \\hat { L } \\cdot d ( \\pi _ { 1 } , \\pi _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 115, + 365, + 131 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 94, + 134, + 440, + 150 + ], + "lines": [ + { + "bbox": [ + 87, + 130, + 442, + 153 + ], + "spans": [ + { + "bbox": [ + 87, + 130, + 442, + 153 + ], + "score": 1.0, + "content": "Corollary 1 Pπ1 is γg-contraction (γg ∈ [0, 1)) for π2 when fθ(π2) > Lˆ·d(π1,π2)1−γ169 .", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 86, + 153, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 86, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 86, + 155, + 99, + 165 + ], + "score": 1.0, + "content": "170", + "type": "text" + }, + { + "bbox": [ + 105, + 153, + 231, + 167 + ], + "score": 1.0, + "content": "Lemma 1 shows that the post-", + "type": "text" + }, + { + "bbox": [ + 231, + 154, + 250, + 165 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { \\pi _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 153, + 348, + 167 + ], + "score": 1.0, + "content": "approximation loss for", + "type": "text" + }, + { + "bbox": [ + 348, + 155, + 360, + 164 + ], + "score": 0.87, + "content": "\\pi _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "is upper bounded by a generalized", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 86, + 163, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 86, + 166, + 99, + 176 + ], + "score": 1.0, + "content": "171", + "type": "text" + }, + { + "bbox": [ + 104, + 163, + 319, + 178 + ], + "score": 1.0, + "content": "contraction of prior loss plus a locality margin term", + "type": "text" + }, + { + "bbox": [ + 320, + 165, + 333, + 174 + ], + "score": 0.82, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 163, + 411, + 178 + ], + "score": 1.0, + "content": "which is related to", + "type": "text" + }, + { + "bbox": [ + 411, + 166, + 439, + 176 + ], + "score": 0.36, + "content": "\\pi _ { 1 } , \\pi _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 163, + 505, + 178 + ], + "score": 1.0, + "content": "and the locality", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 86, + 174, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 86, + 176, + 100, + 187 + ], + "score": 1.0, + "content": "172", + "type": "text" + }, + { + "bbox": [ + 104, + 174, + 155, + 188 + ], + "score": 1.0, + "content": "property of", + "type": "text" + }, + { + "bbox": [ + 155, + 176, + 166, + 188 + ], + "score": 0.89, + "content": "f _ { \\hat { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 174, + 268, + 188 + ], + "score": 1.0, + "content": ". In general, the form of", + "type": "text" + }, + { + "bbox": [ + 268, + 176, + 281, + 185 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 174, + 506, + 188 + ], + "score": 1.0, + "content": "depends on the local property assumed. Some higher-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 86, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 86, + 188, + 100, + 198 + ], + "score": 1.0, + "content": "173", + "type": "text" + }, + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "order variants are provided in Appendix A.2. For a step further, Corollary 1 reveals the condition", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 86, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 86, + 199, + 100, + 208 + ], + "score": 1.0, + "content": "174", + "type": "text" + }, + { + "bbox": [ + 105, + 197, + 318, + 209 + ], + "score": 1.0, + "content": "where a contraction on value approximation loss for", + "type": "text" + }, + { + "bbox": [ + 318, + 199, + 330, + 208 + ], + "score": 0.87, + "content": "\\pi _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 197, + 402, + 209 + ], + "score": 1.0, + "content": "is achieved when", + "type": "text" + }, + { + "bbox": [ + 402, + 197, + 433, + 208 + ], + "score": 0.4, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "is only trained to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 86, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 86, + 210, + 100, + 219 + ], + "score": 1.0, + "content": "175", + "type": "text" + }, + { + "bbox": [ + 106, + 208, + 210, + 221 + ], + "score": 1.0, + "content": "approximate the values of", + "type": "text" + }, + { + "bbox": [ + 210, + 209, + 221, + 219 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 208, + 505, + 221 + ], + "score": 1.0, + "content": ". Concretely, such a condition is apt to reach with tighter contraction for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 86, + 217, + 417, + 234 + ], + "spans": [ + { + "bbox": [ + 86, + 221, + 100, + 230 + ], + "score": 1.0, + "content": "176", + "type": "text" + }, + { + "bbox": [ + 105, + 217, + 133, + 234 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 221, + 145, + 230 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 217, + 402, + 234 + ], + "score": 1.0, + "content": "is, closer two policies, or smoother approximation loss function", + "type": "text" + }, + { + "bbox": [ + 402, + 219, + 413, + 232 + ], + "score": 0.88, + "content": "f _ { \\hat { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 217, + 417, + 234 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 87, + 235, + 505, + 291 + ], + "lines": [ + { + "bbox": [ + 86, + 235, + 504, + 248 + ], + "spans": [ + { + "bbox": [ + 86, + 237, + 99, + 246 + ], + "score": 1.0, + "content": "177", + "type": "text" + }, + { + "bbox": [ + 105, + 235, + 499, + 248 + ], + "score": 1.0, + "content": "Then we consider the local generalization scenario as illustrated in Figure 2(b). For any iteration", + "type": "text" + }, + { + "bbox": [ + 499, + 236, + 504, + 245 + ], + "score": 0.68, + "content": "t", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 86, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 86, + 248, + 99, + 257 + ], + "score": 1.0, + "content": "178", + "type": "text" + }, + { + "bbox": [ + 105, + 245, + 249, + 259 + ], + "score": 1.0, + "content": "of GPI, the values of current policy", + "type": "text" + }, + { + "bbox": [ + 250, + 248, + 260, + 257 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 245, + 345, + 259 + ], + "score": 1.0, + "content": "are approximated by", + "type": "text" + }, + { + "bbox": [ + 346, + 246, + 376, + 257 + ], + "score": 0.4, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 245, + 505, + 259 + ], + "score": 1.0, + "content": ", followed by a improved policy", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 86, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 86, + 259, + 99, + 268 + ], + "score": 1.0, + "content": "179", + "type": "text" + }, + { + "bbox": [ + 106, + 259, + 127, + 269 + ], + "score": 0.88, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "whose values are to be approximated in the next iteration. The value generalization from each", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 86, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 86, + 270, + 100, + 280 + ], + "score": 1.0, + "content": "180", + "type": "text" + }, + { + "bbox": [ + 106, + 270, + 117, + 279 + ], + "score": 0.84, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 268, + 135, + 281 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 135, + 270, + 155, + 279 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 268, + 506, + 281 + ], + "score": 1.0, + "content": "can be similarly considered as the two-policy case. In addition to the former results, we", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 86, + 279, + 489, + 291 + ], + "spans": [ + { + "bbox": [ + 86, + 281, + 99, + 290 + ], + "score": 1.0, + "content": "181", + "type": "text" + }, + { + "bbox": [ + 105, + 279, + 489, + 291 + ], + "score": 1.0, + "content": "shed the light on the value generalization loss of PeVFA along policy improvement path below:", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 100, + 294, + 503, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 507, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 168, + 312 + ], + "score": 1.0, + "content": "Lemma 2 For", + "type": "text" + }, + { + "bbox": [ + 168, + 293, + 298, + 309 + ], + "score": 0.84, + "content": "\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } . . .", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 291, + 507, + 316 + ], + "score": 1.0, + "content": "Pπ2 −−−→ . . . with γt for each Pπt , if fθt is Lˆ t-continuous at πt", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 308, + 455, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 308, + 137, + 323 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 137, + 310, + 160, + 320 + ], + "score": 0.88, + "content": "t \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 308, + 199, + 323 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 200, + 310, + 328, + 322 + ], + "score": 0.89, + "content": "f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\gamma _ { t } f _ { \\theta _ { t - 1 } } ( \\pi _ { t } ) + \\mathcal { M } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 308, + 358, + 323 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 358, + 310, + 451, + 321 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { t } = L _ { t } \\cdot d ( \\pi _ { t } , \\pi _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 308, + 455, + 323 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 96, + 327, + 501, + 343 + ], + "lines": [ + { + "bbox": [ + 91, + 325, + 501, + 345 + ], + "spans": [ + { + "bbox": [ + 91, + 325, + 249, + 345 + ], + "score": 1.0, + "content": "Corollary 2 By induction, we have 84", + "type": "text" + }, + { + "bbox": [ + 249, + 326, + 501, + 343 + ], + "score": 0.81, + "content": "\\begin{array} { r } { f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\prod _ { i = 0 } ^ { t } \\gamma _ { t } f _ { \\theta _ { - 1 } } ( \\pi _ { 0 } ) + \\sum _ { i = 0 } ^ { t - 1 } \\prod _ { j = i + 1 } ^ { t } \\gamma _ { j } \\mathcal M _ { i } + \\mathcal M _ { t } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 86, + 348, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 86, + 348, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 86, + 351, + 99, + 359 + ], + "score": 1.0, + "content": "185", + "type": "text" + }, + { + "bbox": [ + 105, + 348, + 506, + 361 + ], + "score": 1.0, + "content": "The above results indicate that the value generalization loss can be recursively bounded and has", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 86, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 86, + 361, + 100, + 371 + ], + "score": 1.0, + "content": "186", + "type": "text" + }, + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "a upper bound formed by a repeated contraction on initial loss plus the accumulation of locality", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 86, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 86, + 372, + 100, + 382 + ], + "score": 1.0, + "content": "187", + "type": "text" + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "margins induced from each local generalization. An infinity-case discussion for Corollary 2 is in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 86, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 86, + 383, + 100, + 393 + ], + "score": 1.0, + "content": "188", + "type": "text" + }, + { + "bbox": [ + 105, + 381, + 291, + 394 + ], + "score": 1.0, + "content": "Appendix A.5. The next question is whether", + "type": "text" + }, + { + "bbox": [ + 292, + 381, + 324, + 392 + ], + "score": 0.38, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "with value generalization among policies is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 86, + 392, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 86, + 393, + 100, + 403 + ], + "score": 1.0, + "content": "189", + "type": "text" + }, + { + "bbox": [ + 105, + 392, + 505, + 403 + ], + "score": 1.0, + "content": "preferable to the conventional VFA. To this end, we introduce a desirable condition which reveals the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 86, + 403, + 501, + 415 + ], + "spans": [ + { + "bbox": [ + 86, + 405, + 99, + 414 + ], + "score": 1.0, + "content": "190", + "type": "text" + }, + { + "bbox": [ + 105, + 403, + 501, + 415 + ], + "score": 1.0, + "content": "superiority of PeVFA during consecutive value approximation along the policy improvement path:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 96, + 422, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 93, + 422, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 93, + 425, + 188, + 441 + ], + "score": 1.0, + "content": "Theorem 1 During91", + "type": "text" + }, + { + "bbox": [ + 189, + 422, + 505, + 451 + ], + "score": 0.26, + "content": "\\begin{array} { r l } & { \\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots , f o r a n y t \\ge 0 , \\ i f f _ { \\theta _ { t } } ( \\pi _ { t } ) + f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le } \\\\ & { n f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le \\| \\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } ) - V ^ { \\pi _ { t + 1 } } \\| . } \\end{array}", + "type": "inline_equation", + "image_path": "5b9d9ce1b22e19061eaa9a452ac1c38c66bb8f8695beb14547669d1ff4c4f7b4.jpg" + } + ], + "index": 26 + }, + { + "bbox": [ + 93, + 436, + 188, + 454 + ], + "spans": [ + { + "bbox": [ + 93, + 442, + 101, + 450 + ], + "score": 1.0, + "content": "92", + "type": "text" + }, + { + "bbox": [ + 107, + 439, + 171, + 452 + ], + "score": 0.91, + "content": "\\| V ^ { \\pi _ { t } } - V ^ { \\pi _ { t + 1 } } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 436, + 188, + 454 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 86, + 458, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 86, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 86, + 461, + 100, + 470 + ], + "score": 1.0, + "content": "193", + "type": "text" + }, + { + "bbox": [ + 105, + 459, + 324, + 472 + ], + "score": 1.0, + "content": "Theorem 1 shows that the generalized value estimates", + "type": "text" + }, + { + "bbox": [ + 324, + 459, + 367, + 471 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { \\boldsymbol { \\theta } _ { t } } \\big ( \\pi _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "can be closer to the true values of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 85, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 85, + 472, + 100, + 482 + ], + "score": 1.0, + "content": "194", + "type": "text" + }, + { + "bbox": [ + 105, + 470, + 134, + 483 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 471, + 155, + 482 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 470, + 176, + 483 + ], + "score": 1.0, + "content": "than", + "type": "text" + }, + { + "bbox": [ + 176, + 470, + 209, + 482 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 470, + 253, + 483 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 253, + 470, + 286, + 482 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 470, + 412, + 483 + ], + "score": 1.0, + "content": "is the value approximation for", + "type": "text" + }, + { + "bbox": [ + 412, + 471, + 423, + 481 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "which is equivalent", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 86, + 480, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 86, + 483, + 100, + 493 + ], + "score": 1.0, + "content": "195", + "type": "text" + }, + { + "bbox": [ + 105, + 480, + 183, + 494 + ], + "score": 1.0, + "content": "to the counterpart", + "type": "text" + }, + { + "bbox": [ + 184, + 482, + 199, + 493 + ], + "score": 0.9, + "content": "V _ { \\phi _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 480, + 506, + 494 + ], + "score": 1.0, + "content": "for a conventional VFA as value generalization among policies does not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 86, + 492, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 86, + 495, + 100, + 503 + ], + "score": 1.0, + "content": "196", + "type": "text" + }, + { + "bbox": [ + 105, + 492, + 506, + 504 + ], + "score": 1.0, + "content": "exist. To consecutive value approximation along policy improvement path, this means that the value", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 86, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 86, + 505, + 99, + 514 + ], + "score": 1.0, + "content": "197", + "type": "text" + }, + { + "bbox": [ + 105, + 502, + 176, + 515 + ], + "score": 1.0, + "content": "generalization of", + "type": "text" + }, + { + "bbox": [ + 176, + 503, + 207, + 513 + ], + "score": 0.49, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "has the potential to offer closer start points at each iteration. If such closer", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 86, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 86, + 516, + 100, + 525 + ], + "score": 1.0, + "content": "198", + "type": "text" + }, + { + "bbox": [ + 105, + 514, + 266, + 526 + ], + "score": 1.0, + "content": "start points can often exist, we expect", + "type": "text" + }, + { + "bbox": [ + 266, + 514, + 298, + 524 + ], + "score": 0.28, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "to be preferable to conventional VFA since value", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 86, + 524, + 498, + 538 + ], + "spans": [ + { + "bbox": [ + 86, + 527, + 100, + 536 + ], + "score": 1.0, + "content": "199", + "type": "text" + }, + { + "bbox": [ + 105, + 524, + 273, + 538 + ], + "score": 1.0, + "content": "approximation can be more efficient with", + "type": "text" + }, + { + "bbox": [ + 273, + 525, + 304, + 535 + ], + "score": 0.41, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 524, + 498, + 538 + ], + "score": 1.0, + "content": "and it in turn facilitates the overall GPI process.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 87, + 541, + 505, + 585 + ], + "lines": [ + { + "bbox": [ + 86, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 86, + 543, + 99, + 552 + ], + "score": 1.0, + "content": "200", + "type": "text" + }, + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "However, the condition in Theorem 1 is not necessarily met in practice. Intuitively, it depends on the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 86, + 552, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 86, + 554, + 99, + 563 + ], + "score": 1.0, + "content": "201", + "type": "text" + }, + { + "bbox": [ + 105, + 552, + 505, + 563 + ], + "score": 1.0, + "content": "locality margins that may be related to function family and optimization method of PeVFA, as well", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 86, + 563, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 86, + 565, + 99, + 574 + ], + "score": 1.0, + "content": "202", + "type": "text" + }, + { + "bbox": [ + 105, + 563, + 506, + 575 + ], + "score": 1.0, + "content": "as the scale of policy improvement. We leave these further theoretical investigations for future work.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 86, + 573, + 494, + 587 + ], + "spans": [ + { + "bbox": [ + 86, + 576, + 99, + 585 + ], + "score": 1.0, + "content": "203", + "type": "text" + }, + { + "bbox": [ + 104, + 573, + 494, + 587 + ], + "score": 1.0, + "content": "Instead, we empirically examine the existence of such desirable generalizations in the following.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 106, + 597, + 218, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 220, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 220, + 613 + ], + "score": 1.0, + "content": "3.3 Empirical Evidences", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 101, + 617, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "We empirically investigate the value generalization of PeVFA with didactic environments. In this", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 171, + 641 + ], + "score": 1.0, + "content": "section, PeVFA", + "type": "text" + }, + { + "bbox": [ + 171, + 629, + 184, + 640 + ], + "score": 0.84, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "is parameterized by neural network and we use the concatenation of all weights", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 379, + 652 + ], + "score": 1.0, + "content": "and biases of the policy network as a straightforward representation", + "type": "text" + }, + { + "bbox": [ + 380, + 641, + 393, + 651 + ], + "score": 0.87, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "for each policy, called Raw", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 651, + 426, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 196, + 663 + ], + "score": 1.0, + "content": "Policy Representation", + "type": "text" + }, + { + "bbox": [ + 196, + 651, + 222, + 662 + ], + "score": 0.4, + "content": "( R P R )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 651, + 426, + 663 + ], + "score": 1.0, + "content": ". Experimental details are provided in Appendix B.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 86, + 667, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 86, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 86, + 669, + 100, + 678 + ], + "score": 1.0, + "content": "209", + "type": "text" + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "First, we demonstrate the global generalization (illustrated in Figure 2(a)) in a continuous 2D Point", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 86, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 86, + 680, + 100, + 689 + ], + "score": 1.0, + "content": "210", + "type": "text" + }, + { + "bbox": [ + 105, + 677, + 286, + 691 + ], + "score": 1.0, + "content": "Walker environment. We build the policy set", + "type": "text" + }, + { + "bbox": [ + 286, + 678, + 295, + 688 + ], + "score": 0.37, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "with synthetic policies, each of which is a randomly", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 85, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 85, + 690, + 100, + 701 + ], + "score": 1.0, + "content": "211", + "type": "text" + }, + { + "bbox": [ + 106, + 689, + 452, + 701 + ], + "score": 1.0, + "content": "initialized 2-layer tanh-activated neural network with 2 units for each layer. The size of", + "type": "text" + }, + { + "bbox": [ + 452, + 689, + 461, + 699 + ], + "score": 0.44, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 689, + 471, + 701 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 471, + 689, + 488, + 699 + ], + "score": 0.54, + "content": "2 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 85, + 700, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 85, + 701, + 100, + 712 + ], + "score": 1.0, + "content": "212", + "type": "text" + }, + { + "bbox": [ + 106, + 700, + 495, + 712 + ], + "score": 1.0, + "content": "the behavioral diversity of synthetic policies is verified (see Figure 7(b) in Appendix). We divide", + "type": "text" + }, + { + "bbox": [ + 495, + 700, + 504, + 710 + ], + "score": 0.32, + "content": "\\Pi", + "type": "inline_equation" + } + ], + "index": 47 + }, + { + "bbox": [ + 85, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 85, + 712, + 100, + 723 + ], + "score": 1.0, + "content": "213", + "type": "text" + }, + { + "bbox": [ + 105, + 710, + 258, + 723 + ], + "score": 1.0, + "content": "into training set (i.e., known policies", + "type": "text" + }, + { + "bbox": [ + 258, + 711, + 271, + 722 + ], + "score": 0.86, + "content": "\\Pi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 710, + 423, + 723 + ], + "score": 1.0, + "content": ") and testing set (i.e., unseen policies", + "type": "text" + }, + { + "bbox": [ + 423, + 711, + 436, + 722 + ], + "score": 0.85, + "content": "\\Pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "). We rollout the", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46 + } + ], + "page_idx": 4, + "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": "5", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "index", + "bbox": [ + 92, + 72, + 505, + 95 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 87, + 71, + 505, + 96 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 97, + 99, + 505, + 130 + ], + "lines": [ + { + "bbox": [ + 91, + 93, + 505, + 120 + ], + "spans": [ + { + "bbox": [ + 91, + 93, + 168, + 120 + ], + "score": 1.0, + "content": "Lemma 1 For 67", + "type": "text" + }, + { + "bbox": [ + 169, + 99, + 211, + 114 + ], + "score": 0.86, + "content": "\\theta \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\hat { \\theta } .", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 93, + 224, + 120 + ], + "score": 1.0, + "content": ", if", + "type": "text" + }, + { + "bbox": [ + 224, + 102, + 235, + 116 + ], + "score": 0.76, + "content": "f _ { \\hat { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 93, + 246, + 120 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 246, + 101, + 254, + 114 + ], + "score": 0.82, + "content": "\\hat { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 93, + 315, + 120 + ], + "score": 1.0, + "content": "-continuous at", + "type": "text" + }, + { + "bbox": [ + 315, + 105, + 326, + 114 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 93, + 347, + 120 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 347, + 103, + 417, + 115 + ], + "score": 0.92, + "content": "f _ { \\theta } ( \\pi _ { 1 } ) \\le f _ { \\theta } ( \\pi _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 93, + 464, + 120 + ], + "score": 1.0, + "content": ", we have:", + "type": "text" + }, + { + "bbox": [ + 464, + 103, + 505, + 116 + ], + "score": 0.9, + "content": "f _ { \\hat { \\theta } } ( \\pi _ { 2 } ) \\leq", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 93, + 115, + 365, + 131 + ], + "spans": [ + { + "bbox": [ + 93, + 115, + 106, + 131 + ], + "score": 1.0, + "content": "68", + "type": "text" + }, + { + "bbox": [ + 106, + 116, + 208, + 129 + ], + "score": 0.88, + "content": "\\gamma f _ { \\theta } ( \\pi _ { 2 } ) + \\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 115, + 239, + 131 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 239, + 115, + 360, + 129 + ], + "score": 0.92, + "content": "\\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } ) = \\hat { L } \\cdot d ( \\pi _ { 1 } , \\pi _ { 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 115, + 365, + 131 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 91, + 93, + 505, + 131 + ] + }, + { + "type": "text", + "bbox": [ + 94, + 134, + 440, + 150 + ], + "lines": [ + { + "bbox": [ + 87, + 130, + 442, + 153 + ], + "spans": [ + { + "bbox": [ + 87, + 130, + 442, + 153 + ], + "score": 1.0, + "content": "Corollary 1 Pπ1 is γg-contraction (γg ∈ [0, 1)) for π2 when fθ(π2) > Lˆ·d(π1,π2)1−γ169 .", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 87, + 130, + 442, + 153 + ] + }, + { + "type": "index", + "bbox": [ + 86, + 153, + 505, + 231 + ], + "lines": [ + { + "bbox": [ + 86, + 153, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 86, + 155, + 99, + 165 + ], + "score": 1.0, + "content": "170", + "type": "text" + }, + { + "bbox": [ + 105, + 153, + 231, + 167 + ], + "score": 1.0, + "content": "Lemma 1 shows that the post-", + "type": "text" + }, + { + "bbox": [ + 231, + 154, + 250, + 165 + ], + "score": 0.91, + "content": "\\mathcal { P } _ { \\pi _ { 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 153, + 348, + 167 + ], + "score": 1.0, + "content": "approximation loss for", + "type": "text" + }, + { + "bbox": [ + 348, + 155, + 360, + 164 + ], + "score": 0.87, + "content": "\\pi _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 153, + 506, + 167 + ], + "score": 1.0, + "content": "is upper bounded by a generalized", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 163, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 86, + 166, + 99, + 176 + ], + "score": 1.0, + "content": "171", + "type": "text" + }, + { + "bbox": [ + 104, + 163, + 319, + 178 + ], + "score": 1.0, + "content": "contraction of prior loss plus a locality margin term", + "type": "text" + }, + { + "bbox": [ + 320, + 165, + 333, + 174 + ], + "score": 0.82, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 163, + 411, + 178 + ], + "score": 1.0, + "content": "which is related to", + "type": "text" + }, + { + "bbox": [ + 411, + 166, + 439, + 176 + ], + "score": 0.36, + "content": "\\pi _ { 1 } , \\pi _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 163, + 505, + 178 + ], + "score": 1.0, + "content": "and the locality", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 174, + 506, + 188 + ], + "spans": [ + { + "bbox": [ + 86, + 176, + 100, + 187 + ], + "score": 1.0, + "content": "172", + "type": "text" + }, + { + "bbox": [ + 104, + 174, + 155, + 188 + ], + "score": 1.0, + "content": "property of", + "type": "text" + }, + { + "bbox": [ + 155, + 176, + 166, + 188 + ], + "score": 0.89, + "content": "f _ { \\hat { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 174, + 268, + 188 + ], + "score": 1.0, + "content": ". In general, the form of", + "type": "text" + }, + { + "bbox": [ + 268, + 176, + 281, + 185 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 174, + 506, + 188 + ], + "score": 1.0, + "content": "depends on the local property assumed. Some higher-", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 186, + 505, + 199 + ], + "spans": [ + { + "bbox": [ + 86, + 188, + 100, + 198 + ], + "score": 1.0, + "content": "173", + "type": "text" + }, + { + "bbox": [ + 105, + 186, + 505, + 199 + ], + "score": 1.0, + "content": "order variants are provided in Appendix A.2. For a step further, Corollary 1 reveals the condition", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 197, + 505, + 209 + ], + "spans": [ + { + "bbox": [ + 86, + 199, + 100, + 208 + ], + "score": 1.0, + "content": "174", + "type": "text" + }, + { + "bbox": [ + 105, + 197, + 318, + 209 + ], + "score": 1.0, + "content": "where a contraction on value approximation loss for", + "type": "text" + }, + { + "bbox": [ + 318, + 199, + 330, + 208 + ], + "score": 0.87, + "content": "\\pi _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 197, + 402, + 209 + ], + "score": 1.0, + "content": "is achieved when", + "type": "text" + }, + { + "bbox": [ + 402, + 197, + 433, + 208 + ], + "score": 0.4, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 197, + 505, + 209 + ], + "score": 1.0, + "content": "is only trained to", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 86, + 210, + 100, + 219 + ], + "score": 1.0, + "content": "175", + "type": "text" + }, + { + "bbox": [ + 106, + 208, + 210, + 221 + ], + "score": 1.0, + "content": "approximate the values of", + "type": "text" + }, + { + "bbox": [ + 210, + 209, + 221, + 219 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 208, + 505, + 221 + ], + "score": 1.0, + "content": ". Concretely, such a condition is apt to reach with tighter contraction for", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 217, + 417, + 234 + ], + "spans": [ + { + "bbox": [ + 86, + 221, + 100, + 230 + ], + "score": 1.0, + "content": "176", + "type": "text" + }, + { + "bbox": [ + 105, + 217, + 133, + 234 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 221, + 145, + 230 + ], + "score": 0.85, + "content": "\\pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 217, + 402, + 234 + ], + "score": 1.0, + "content": "is, closer two policies, or smoother approximation loss function", + "type": "text" + }, + { + "bbox": [ + 402, + 219, + 413, + 232 + ], + "score": 0.88, + "content": "f _ { \\hat { \\theta } }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 217, + 417, + 234 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 235, + 504, + 248 + ], + "spans": [ + { + "bbox": [ + 86, + 237, + 99, + 246 + ], + "score": 1.0, + "content": "177", + "type": "text" + }, + { + "bbox": [ + 105, + 235, + 499, + 248 + ], + "score": 1.0, + "content": "Then we consider the local generalization scenario as illustrated in Figure 2(b). For any iteration", + "type": "text" + }, + { + "bbox": [ + 499, + 236, + 504, + 245 + ], + "score": 0.68, + "content": "t", + "type": "inline_equation" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 86, + 248, + 99, + 257 + ], + "score": 1.0, + "content": "178", + "type": "text" + }, + { + "bbox": [ + 105, + 245, + 249, + 259 + ], + "score": 1.0, + "content": "of GPI, the values of current policy", + "type": "text" + }, + { + "bbox": [ + 250, + 248, + 260, + 257 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 245, + 345, + 259 + ], + "score": 1.0, + "content": "are approximated by", + "type": "text" + }, + { + "bbox": [ + 346, + 246, + 376, + 257 + ], + "score": 0.4, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 245, + 505, + 259 + ], + "score": 1.0, + "content": ", followed by a improved policy", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 257, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 86, + 259, + 99, + 268 + ], + "score": 1.0, + "content": "179", + "type": "text" + }, + { + "bbox": [ + 106, + 259, + 127, + 269 + ], + "score": 0.88, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 127, + 257, + 505, + 270 + ], + "score": 1.0, + "content": "whose values are to be approximated in the next iteration. The value generalization from each", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 268, + 506, + 281 + ], + "spans": [ + { + "bbox": [ + 86, + 270, + 100, + 280 + ], + "score": 1.0, + "content": "180", + "type": "text" + }, + { + "bbox": [ + 106, + 270, + 117, + 279 + ], + "score": 0.84, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 268, + 135, + 281 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 135, + 270, + 155, + 279 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 268, + 506, + 281 + ], + "score": 1.0, + "content": "can be similarly considered as the two-policy case. In addition to the former results, we", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 279, + 489, + 291 + ], + "spans": [ + { + "bbox": [ + 86, + 281, + 99, + 290 + ], + "score": 1.0, + "content": "181", + "type": "text" + }, + { + "bbox": [ + 105, + 279, + 489, + 291 + ], + "score": 1.0, + "content": "shed the light on the value generalization loss of PeVFA along policy improvement path below:", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + } + ], + "index": 8, + "bbox_fs": [ + 86, + 153, + 506, + 234 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 235, + 505, + 291 + ], + "lines": [], + "index": 14, + "bbox_fs": [ + 86, + 235, + 506, + 291 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 100, + 294, + 503, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 507, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 168, + 312 + ], + "score": 1.0, + "content": "Lemma 2 For", + "type": "text" + }, + { + "bbox": [ + 168, + 293, + 298, + 309 + ], + "score": 0.84, + "content": "\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } . . .", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 291, + 507, + 316 + ], + "score": 1.0, + "content": "Pπ2 −−−→ . . . with γt for each Pπt , if fθt is Lˆ t-continuous at πt", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 308, + 455, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 308, + 137, + 323 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 137, + 310, + 160, + 320 + ], + "score": 0.88, + "content": "t \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 308, + 199, + 323 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 200, + 310, + 328, + 322 + ], + "score": 0.89, + "content": "f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\gamma _ { t } f _ { \\theta _ { t - 1 } } ( \\pi _ { t } ) + \\mathcal { M } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 308, + 358, + 323 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 358, + 310, + 451, + 321 + ], + "score": 0.91, + "content": "\\mathcal { M } _ { t } = L _ { t } \\cdot d ( \\pi _ { t } , \\pi _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 308, + 455, + 323 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 291, + 507, + 323 + ] + }, + { + "type": "text", + "bbox": [ + 96, + 327, + 501, + 343 + ], + "lines": [ + { + "bbox": [ + 91, + 325, + 501, + 345 + ], + "spans": [ + { + "bbox": [ + 91, + 325, + 249, + 345 + ], + "score": 1.0, + "content": "Corollary 2 By induction, we have 84", + "type": "text" + }, + { + "bbox": [ + 249, + 326, + 501, + 343 + ], + "score": 0.81, + "content": "\\begin{array} { r } { f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\prod _ { i = 0 } ^ { t } \\gamma _ { t } f _ { \\theta _ { - 1 } } ( \\pi _ { 0 } ) + \\sum _ { i = 0 } ^ { t - 1 } \\prod _ { j = i + 1 } ^ { t } \\gamma _ { j } \\mathcal M _ { i } + \\mathcal M _ { t } . } \\end{array}", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 91, + 325, + 501, + 345 + ] + }, + { + "type": "index", + "bbox": [ + 86, + 348, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 86, + 348, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 86, + 351, + 99, + 359 + ], + "score": 1.0, + "content": "185", + "type": "text" + }, + { + "bbox": [ + 105, + 348, + 506, + 361 + ], + "score": 1.0, + "content": "The above results indicate that the value generalization loss can be recursively bounded and has", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 359, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 86, + 361, + 100, + 371 + ], + "score": 1.0, + "content": "186", + "type": "text" + }, + { + "bbox": [ + 105, + 359, + 505, + 372 + ], + "score": 1.0, + "content": "a upper bound formed by a repeated contraction on initial loss plus the accumulation of locality", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 86, + 372, + 100, + 382 + ], + "score": 1.0, + "content": "187", + "type": "text" + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "margins induced from each local generalization. An infinity-case discussion for Corollary 2 is in", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 86, + 383, + 100, + 393 + ], + "score": 1.0, + "content": "188", + "type": "text" + }, + { + "bbox": [ + 105, + 381, + 291, + 394 + ], + "score": 1.0, + "content": "Appendix A.5. The next question is whether", + "type": "text" + }, + { + "bbox": [ + 292, + 381, + 324, + 392 + ], + "score": 0.38, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "with value generalization among policies is", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 392, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 86, + 393, + 100, + 403 + ], + "score": 1.0, + "content": "189", + "type": "text" + }, + { + "bbox": [ + 105, + 392, + 505, + 403 + ], + "score": 1.0, + "content": "preferable to the conventional VFA. To this end, we introduce a desirable condition which reveals the", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 403, + 501, + 415 + ], + "spans": [ + { + "bbox": [ + 86, + 405, + 99, + 414 + ], + "score": 1.0, + "content": "190", + "type": "text" + }, + { + "bbox": [ + 105, + 403, + 501, + 415 + ], + "score": 1.0, + "content": "superiority of PeVFA during consecutive value approximation along the policy improvement path:", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 86, + 348, + 506, + 415 + ] + }, + { + "type": "text", + "bbox": [ + 96, + 422, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 93, + 422, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 93, + 425, + 188, + 441 + ], + "score": 1.0, + "content": "Theorem 1 During91", + "type": "text" + }, + { + "bbox": [ + 189, + 422, + 505, + 451 + ], + "score": 0.26, + "content": "\\begin{array} { r l } & { \\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots , f o r a n y t \\ge 0 , \\ i f f _ { \\theta _ { t } } ( \\pi _ { t } ) + f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le } \\\\ & { n f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le \\| \\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } ) - V ^ { \\pi _ { t + 1 } } \\| . } \\end{array}", + "type": "inline_equation", + "image_path": "5b9d9ce1b22e19061eaa9a452ac1c38c66bb8f8695beb14547669d1ff4c4f7b4.jpg" + } + ], + "index": 26 + }, + { + "bbox": [ + 93, + 436, + 188, + 454 + ], + "spans": [ + { + "bbox": [ + 93, + 442, + 101, + 450 + ], + "score": 1.0, + "content": "92", + "type": "text" + }, + { + "bbox": [ + 107, + 439, + 171, + 452 + ], + "score": 0.91, + "content": "\\| V ^ { \\pi _ { t } } - V ^ { \\pi _ { t + 1 } } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 436, + 188, + 454 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 93, + 422, + 505, + 454 + ] + }, + { + "type": "index", + "bbox": [ + 86, + 458, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 86, + 459, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 86, + 461, + 100, + 470 + ], + "score": 1.0, + "content": "193", + "type": "text" + }, + { + "bbox": [ + 105, + 459, + 324, + 472 + ], + "score": 1.0, + "content": "Theorem 1 shows that the generalized value estimates", + "type": "text" + }, + { + "bbox": [ + 324, + 459, + 367, + 471 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { \\boldsymbol { \\theta } _ { t } } \\big ( \\pi _ { t + 1 } \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 459, + 506, + 472 + ], + "score": 1.0, + "content": "can be closer to the true values of", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 85, + 472, + 100, + 482 + ], + "score": 1.0, + "content": "194", + "type": "text" + }, + { + "bbox": [ + 105, + 470, + 134, + 483 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 134, + 471, + 155, + 482 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 470, + 176, + 483 + ], + "score": 1.0, + "content": "than", + "type": "text" + }, + { + "bbox": [ + 176, + 470, + 209, + 482 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 470, + 253, + 483 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 253, + 470, + 286, + 482 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 470, + 412, + 483 + ], + "score": 1.0, + "content": "is the value approximation for", + "type": "text" + }, + { + "bbox": [ + 412, + 471, + 423, + 481 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "which is equivalent", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 480, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 86, + 483, + 100, + 493 + ], + "score": 1.0, + "content": "195", + "type": "text" + }, + { + "bbox": [ + 105, + 480, + 183, + 494 + ], + "score": 1.0, + "content": "to the counterpart", + "type": "text" + }, + { + "bbox": [ + 184, + 482, + 199, + 493 + ], + "score": 0.9, + "content": "V _ { \\phi _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 480, + 506, + 494 + ], + "score": 1.0, + "content": "for a conventional VFA as value generalization among policies does not", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 492, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 86, + 495, + 100, + 503 + ], + "score": 1.0, + "content": "196", + "type": "text" + }, + { + "bbox": [ + 105, + 492, + 506, + 504 + ], + "score": 1.0, + "content": "exist. To consecutive value approximation along policy improvement path, this means that the value", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 502, + 506, + 515 + ], + "spans": [ + { + "bbox": [ + 86, + 505, + 99, + 514 + ], + "score": 1.0, + "content": "197", + "type": "text" + }, + { + "bbox": [ + 105, + 502, + 176, + 515 + ], + "score": 1.0, + "content": "generalization of", + "type": "text" + }, + { + "bbox": [ + 176, + 503, + 207, + 513 + ], + "score": 0.49, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 502, + 506, + 515 + ], + "score": 1.0, + "content": "has the potential to offer closer start points at each iteration. If such closer", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 514, + 506, + 526 + ], + "spans": [ + { + "bbox": [ + 86, + 516, + 100, + 525 + ], + "score": 1.0, + "content": "198", + "type": "text" + }, + { + "bbox": [ + 105, + 514, + 266, + 526 + ], + "score": 1.0, + "content": "start points can often exist, we expect", + "type": "text" + }, + { + "bbox": [ + 266, + 514, + 298, + 524 + ], + "score": 0.28, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 514, + 506, + 526 + ], + "score": 1.0, + "content": "to be preferable to conventional VFA since value", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 524, + 498, + 538 + ], + "spans": [ + { + "bbox": [ + 86, + 527, + 100, + 536 + ], + "score": 1.0, + "content": "199", + "type": "text" + }, + { + "bbox": [ + 105, + 524, + 273, + 538 + ], + "score": 1.0, + "content": "approximation can be more efficient with", + "type": "text" + }, + { + "bbox": [ + 273, + 525, + 304, + 535 + ], + "score": 0.41, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 524, + 498, + 538 + ], + "score": 1.0, + "content": "and it in turn facilitates the overall GPI process.", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 541, + 505, + 553 + ], + "spans": [ + { + "bbox": [ + 86, + 543, + 99, + 552 + ], + "score": 1.0, + "content": "200", + "type": "text" + }, + { + "bbox": [ + 105, + 541, + 505, + 553 + ], + "score": 1.0, + "content": "However, the condition in Theorem 1 is not necessarily met in practice. Intuitively, it depends on the", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 552, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 86, + 554, + 99, + 563 + ], + "score": 1.0, + "content": "201", + "type": "text" + }, + { + "bbox": [ + 105, + 552, + 505, + 563 + ], + "score": 1.0, + "content": "locality margins that may be related to function family and optimization method of PeVFA, as well", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 563, + 506, + 575 + ], + "spans": [ + { + "bbox": [ + 86, + 565, + 99, + 574 + ], + "score": 1.0, + "content": "202", + "type": "text" + }, + { + "bbox": [ + 105, + 563, + 506, + 575 + ], + "score": 1.0, + "content": "as the scale of policy improvement. We leave these further theoretical investigations for future work.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 573, + 494, + 587 + ], + "spans": [ + { + "bbox": [ + 86, + 576, + 99, + 585 + ], + "score": 1.0, + "content": "203", + "type": "text" + }, + { + "bbox": [ + 104, + 573, + 494, + 587 + ], + "score": 1.0, + "content": "Instead, we empirically examine the existence of such desirable generalizations in the following.", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + } + ], + "index": 31, + "bbox_fs": [ + 85, + 459, + 506, + 538 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 541, + 505, + 585 + ], + "lines": [], + "index": 36.5, + "bbox_fs": [ + 86, + 541, + 506, + 587 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 106, + 597, + 218, + 609 + ], + "lines": [ + { + "bbox": [ + 105, + 596, + 220, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 220, + 613 + ], + "score": 1.0, + "content": "3.3 Empirical Evidences", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 101, + 617, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "We empirically investigate the value generalization of PeVFA with didactic environments. In this", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 171, + 641 + ], + "score": 1.0, + "content": "section, PeVFA", + "type": "text" + }, + { + "bbox": [ + 171, + 629, + 184, + 640 + ], + "score": 0.84, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "is parameterized by neural network and we use the concatenation of all weights", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 640, + 379, + 652 + ], + "score": 1.0, + "content": "and biases of the policy network as a straightforward representation", + "type": "text" + }, + { + "bbox": [ + 380, + 641, + 393, + 651 + ], + "score": 0.87, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "for each policy, called Raw", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 651, + 426, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 196, + 663 + ], + "score": 1.0, + "content": "Policy Representation", + "type": "text" + }, + { + "bbox": [ + 196, + 651, + 222, + 662 + ], + "score": 0.4, + "content": "( R P R )", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 651, + 426, + 663 + ], + "score": 1.0, + "content": ". Experimental details are provided in Appendix B.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 618, + 506, + 663 + ] + }, + { + "type": "index", + "bbox": [ + 86, + 667, + 504, + 722 + ], + "lines": [ + { + "bbox": [ + 86, + 667, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 86, + 669, + 100, + 678 + ], + "score": 1.0, + "content": "209", + "type": "text" + }, + { + "bbox": [ + 106, + 667, + 505, + 679 + ], + "score": 1.0, + "content": "First, we demonstrate the global generalization (illustrated in Figure 2(a)) in a continuous 2D Point", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 86, + 680, + 100, + 689 + ], + "score": 1.0, + "content": "210", + "type": "text" + }, + { + "bbox": [ + 105, + 677, + 286, + 691 + ], + "score": 1.0, + "content": "Walker environment. We build the policy set", + "type": "text" + }, + { + "bbox": [ + 286, + 678, + 295, + 688 + ], + "score": 0.37, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "with synthetic policies, each of which is a randomly", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 85, + 690, + 100, + 701 + ], + "score": 1.0, + "content": "211", + "type": "text" + }, + { + "bbox": [ + 106, + 689, + 452, + 701 + ], + "score": 1.0, + "content": "initialized 2-layer tanh-activated neural network with 2 units for each layer. The size of", + "type": "text" + }, + { + "bbox": [ + 452, + 689, + 461, + 699 + ], + "score": 0.44, + "content": "\\Pi", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 689, + 471, + 701 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 471, + 689, + 488, + 699 + ], + "score": 0.54, + "content": "2 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 700, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 85, + 701, + 100, + 712 + ], + "score": 1.0, + "content": "212", + "type": "text" + }, + { + "bbox": [ + 106, + 700, + 495, + 712 + ], + "score": 1.0, + "content": "the behavioral diversity of synthetic policies is verified (see Figure 7(b) in Appendix). We divide", + "type": "text" + }, + { + "bbox": [ + 495, + 700, + 504, + 710 + ], + "score": 0.32, + "content": "\\Pi", + "type": "inline_equation" + } + ], + "index": 47, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 710, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 85, + 712, + 100, + 723 + ], + "score": 1.0, + "content": "213", + "type": "text" + }, + { + "bbox": [ + 105, + 710, + 258, + 723 + ], + "score": 1.0, + "content": "into training set (i.e., known policies", + "type": "text" + }, + { + "bbox": [ + 258, + 711, + 271, + 722 + ], + "score": 0.86, + "content": "\\Pi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 710, + 423, + 723 + ], + "score": 1.0, + "content": ") and testing set (i.e., unseen policies", + "type": "text" + }, + { + "bbox": [ + 423, + 711, + 436, + 722 + ], + "score": 0.85, + "content": "\\Pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 710, + 505, + 723 + ], + "score": 1.0, + "content": "). We rollout the", + "type": "text" + } + ], + "index": 48, + "is_list_start_line": true + } + ], + "index": 46, + "bbox_fs": [ + 85, + 667, + 505, + 723 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 123, + 75, + 483, + 181 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 75, + 483, + 181 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 75, + 483, + 181 + ], + "spans": [ + { + "bbox": [ + 123, + 75, + 483, + 181 + ], + "score": 0.973, + "type": "image", + "image_path": "ca62a1096edd30ab0ac3480db0f68aa5589accbab003cbc10927be11f5143231.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 123, + 75, + 483, + 110.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 123, + 110.33333333333334, + 483, + 145.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 145.66666666666669, + 483, + 181.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 189, + 506, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 188, + 507, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 364, + 201 + ], + "score": 1.0, + "content": "Figure 3: Empirical evidences of two kinds of generalization of", + "type": "text" + }, + { + "bbox": [ + 365, + 189, + 396, + 199 + ], + "score": 0.25, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 188, + 507, + 201 + ], + "score": 1.0, + "content": ". (a) Global generalization:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 198, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 138, + 210 + ], + "score": 0.38, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 198, + 506, + 213 + ], + "score": 1.0, + "content": "shows comparable value estimation performance on testing policy set (red) after learning", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 364, + 223 + ], + "score": 1.0, + "content": "on training policy set (blue). (b) Local generalization: PeVFA", + "type": "text" + }, + { + "bbox": [ + 365, + 210, + 402, + 223 + ], + "score": 0.89, + "content": "( \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "shows lower losses than", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 185, + 235 + ], + "score": 1.0, + "content": "conventional VFA", + "type": "text" + }, + { + "bbox": [ + 185, + 222, + 203, + 234 + ], + "score": 0.81, + "content": "( V _ { \\phi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "before and after the value approximation training for successive policies", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 232, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 244 + ], + "score": 1.0, + "content": "along policy improvement path. In (b), the left axis is for approximation loss (lower is better) and the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 243, + 465, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 465, + 256 + ], + "score": 1.0, + "content": "right axis is for average return as a reference of the policy learning process (green curve).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 87, + 267, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "policies in the environment to collect trajectories, based on which we perform value approximation", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 303, + 290 + ], + "score": 1.0, + "content": "training. Our results show that a PeVFA trained on", + "type": "text" + }, + { + "bbox": [ + 303, + 278, + 316, + 289 + ], + "score": 0.89, + "content": "\\Pi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "achieves reasonable generalization performance", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 287, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 287, + 187, + 301 + ], + "score": 1.0, + "content": "when evaluating on", + "type": "text" + }, + { + "bbox": [ + 188, + 289, + 201, + 300 + ], + "score": 0.88, + "content": "\\Pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 287, + 506, + 301 + ], + "score": 1.0, + "content": ". The average losses on training and testing set are 1.782 and 2.071 over 6", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "trials. Figure 3(a) shows the value predictions for policies from training and testing set (100 for each).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 102, + 316, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "Next, we investigate the value generalization along policy improvement path, i.e., local generalization", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "as in Figure 2(b). We use a 2-layer 8-unit policy network trained by standard PPO algorithm [50] in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 422, + 351 + ], + "score": 1.0, + "content": "MuJoCo continuous control tasks. Parallel to the conventional value network", + "type": "text" + }, + { + "bbox": [ + 422, + 338, + 447, + 350 + ], + "score": 0.93, + "content": "V _ { \\phi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "(i.e., VFA) in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 347, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 104, + 347, + 164, + 362 + ], + "score": 1.0, + "content": "PPO, we set a", + "type": "text" + }, + { + "bbox": [ + 164, + 349, + 195, + 359 + ], + "score": 0.33, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 347, + 230, + 362 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 231, + 349, + 272, + 360 + ], + "score": 0.91, + "content": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 347, + 506, + 362 + ], + "score": 1.0, + "content": "as a reference for the comparison on value approximation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 358, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 104, + 358, + 186, + 374 + ], + "score": 1.0, + "content": "loss. Compared to", + "type": "text" + }, + { + "bbox": [ + 186, + 360, + 198, + 371 + ], + "score": 0.84, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 358, + 236, + 374 + ], + "score": 1.0, + "content": ", PeVFA", + "type": "text" + }, + { + "bbox": [ + 236, + 360, + 277, + 371 + ], + "score": 0.89, + "content": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 358, + 506, + 374 + ], + "score": 1.0, + "content": "takes RPR as input and approximates the values of all", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 369, + 507, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 179, + 385 + ], + "score": 1.0, + "content": "historical policies", + "type": "text" + }, + { + "bbox": [ + 179, + 370, + 218, + 383 + ], + "score": 0.91, + "content": "( \\{ \\pi _ { i } \\} _ { i = 0 } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 369, + 453, + 385 + ], + "score": 1.0, + "content": "in addition. We compare the value approximation losses of", + "type": "text" + }, + { + "bbox": [ + 453, + 371, + 465, + 383 + ], + "score": 0.89, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 369, + 507, + 385 + ], + "score": 1.0, + "content": "(red) and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 380, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 119, + 393 + ], + "score": 0.84, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 380, + 506, + 395 + ], + "score": 1.0, + "content": "(blue) before (solid) and after (dashed) updating with on-policy samples collected by the improved", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 134, + 405 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 135, + 394, + 155, + 404 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "at each iteration. Figure 3(b) shows the results for InvertedPendulum-v1 and Ant-v1.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "Results for all 7 MuJoCo tasks can be found in Appendix B.2. By comparing approximation losses", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 411, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 104, + 411, + 458, + 429 + ], + "score": 1.0, + "content": "before updating (red and blue solid curves), we can observe that the approximation loss of", + "type": "text" + }, + { + "bbox": [ + 459, + 414, + 505, + 426 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta _ { t } } ( \\chi _ { \\pi _ { t + 1 } } )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 424, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 279, + 439 + ], + "score": 1.0, + "content": "is almost consistently lower than that of", + "type": "text" + }, + { + "bbox": [ + 279, + 425, + 294, + 437 + ], + "score": 0.91, + "content": "V _ { \\phi _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 424, + 506, + 439 + ], + "score": 1.0, + "content": ". This means that the generalized value estimates", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 348, + 449 + ], + "score": 1.0, + "content": "offered by PeVFA are usually closer to the true values of", + "type": "text" + }, + { + "bbox": [ + 348, + 437, + 369, + 447 + ], + "score": 0.87, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 435, + 506, + 449 + ], + "score": 1.0, + "content": ", demonstrating the consequence", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 374, + 461 + ], + "score": 1.0, + "content": "arrived in Theorem 1. For the dashed curves, it shows that PeVFA", + "type": "text" + }, + { + "bbox": [ + 374, + 447, + 429, + 460 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta _ { t + 1 } } ( \\chi _ { \\pi _ { t + 1 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 444, + 506, + 461 + ], + "score": 1.0, + "content": "can achieve lower", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 456, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 197, + 472 + ], + "score": 1.0, + "content": "approximation loss for", + "type": "text" + }, + { + "bbox": [ + 198, + 459, + 218, + 469 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 456, + 312, + 472 + ], + "score": 1.0, + "content": "than conventional VFA", + "type": "text" + }, + { + "bbox": [ + 312, + 458, + 336, + 470 + ], + "score": 0.92, + "content": "V _ { \\phi _ { t + 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 456, + 506, + 472 + ], + "score": 1.0, + "content": "after the same number of training with the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 390, + 481 + ], + "score": 1.0, + "content": "same on-policy samples. The empirical evidence above indicates that", + "type": "text" + }, + { + "bbox": [ + 390, + 469, + 421, + 479 + ], + "score": 0.28, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "can be preferable to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "the conventional VFA for consecutive value approximation. The generalized value estimates along", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 491, + 408, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 408, + 503 + ], + "score": 1.0, + "content": "policy improvement path have the potential to expedite the process of GPI.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 21 + }, + { + "type": "title", + "bbox": [ + 100, + 509, + 289, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 289, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 289, + 522 + ], + "score": 1.0, + "content": "3.4 Reinforcement Learning with PeVFA", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 102, + 529, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 423, + 542 + ], + "score": 1.0, + "content": "Based on the results above, we expect to leverage the value generalization of", + "type": "text" + }, + { + "bbox": [ + 424, + 529, + 455, + 540 + ], + "score": 0.27, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "to facilitate", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "RL. In Algorithm 1, we propose a general description of RL algorithm under the paradigm of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "GPI with PeVFA. For each iteration, the interaction experiences of current policy and the policy", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 582, + 485, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 485, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 339, + 596 + ], + "score": 1.0, + "content": "Algorithm 1 RL under the paradigm of GPI with PeVFA", + "type": "text" + }, + { + "bbox": [ + 339, + 583, + 376, + 595 + ], + "score": 0.88, + "content": "( \\mathbb { V } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 582, + 485, + 596 + ], + "score": 1.0, + "content": "is used for demonstration)", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 108, + 597, + 500, + 718 + ], + "lines": [ + { + "bbox": [ + 109, + 596, + 478, + 610 + ], + "spans": [ + { + "bbox": [ + 109, + 596, + 188, + 610 + ], + "score": 1.0, + "content": "1: Initialize policy", + "type": "text" + }, + { + "bbox": [ + 189, + 600, + 200, + 608 + ], + "score": 0.83, + "content": "\\pi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 596, + 317, + 610 + ], + "score": 1.0, + "content": ", policy representation model", + "type": "text" + }, + { + "bbox": [ + 318, + 597, + 378, + 609 + ], + "score": 0.51, + "content": "g , \\mathrm { P e V F A } \\ \\mathbb { V } _ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 596, + 468, + 610 + ], + "score": 1.0, + "content": "and experience buffer", + "type": "text" + }, + { + "bbox": [ + 468, + 597, + 478, + 606 + ], + "score": 0.69, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 111, + 608, + 441, + 637 + ], + "spans": [ + { + "bbox": [ + 111, + 609, + 121, + 631 + ], + "score": 1.0, + "content": "2: 3:", + "type": "text" + }, + { + "bbox": [ + 122, + 608, + 174, + 637 + ], + "score": 1.0, + "content": "for iteration Rollout", + "type": "text" + }, + { + "bbox": [ + 174, + 609, + 223, + 619 + ], + "score": 0.83, + "content": "t = 0 , 1 , \\ldots", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 621, + 208, + 630 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 608, + 331, + 637 + ], + "score": 1.0, + "content": "dohe environment and obtain", + "type": "text" + }, + { + "bbox": [ + 331, + 619, + 338, + 629 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 608, + 386, + 637 + ], + "score": 1.0, + "content": "trajectories", + "type": "text" + }, + { + "bbox": [ + 386, + 618, + 441, + 631 + ], + "score": 0.89, + "content": "\\mathcal { T } _ { t } = \\{ \\tau _ { i } \\} _ { i = 0 } ^ { k }", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 111, + 628, + 484, + 643 + ], + "spans": [ + { + "bbox": [ + 111, + 630, + 121, + 642 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 628, + 214, + 643 + ], + "score": 1.0, + "content": "Get representation", + "type": "text" + }, + { + "bbox": [ + 214, + 630, + 262, + 642 + ], + "score": 0.93, + "content": "\\chi _ { \\pi _ { t } } = g ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 628, + 304, + 643 + ], + "score": 1.0, + "content": "for policy", + "type": "text" + }, + { + "bbox": [ + 305, + 631, + 315, + 641 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 628, + 400, + 643 + ], + "score": 1.0, + "content": "and add experiences", + "type": "text" + }, + { + "bbox": [ + 401, + 631, + 436, + 642 + ], + "score": 0.9, + "content": "( \\chi _ { \\pi _ { t } } , \\tau _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 628, + 474, + 643 + ], + "score": 1.0, + "content": "in buffer", + "type": "text" + }, + { + "bbox": [ + 475, + 630, + 484, + 639 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 111, + 639, + 217, + 653 + ], + "spans": [ + { + "bbox": [ + 111, + 641, + 121, + 653 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 137, + 639, + 147, + 653 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 147, + 641, + 163, + 651 + ], + "score": 0.55, + "content": "t \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 641, + 194, + 651 + ], + "score": 0.56, + "content": "M = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 639, + 217, + 653 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 110, + 646, + 455, + 670 + ], + "spans": [ + { + "bbox": [ + 110, + 652, + 121, + 663 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 149, + 646, + 216, + 670 + ], + "score": 1.0, + "content": "Update PeVFA", + "type": "text" + }, + { + "bbox": [ + 216, + 651, + 269, + 664 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { i } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 646, + 395, + 670 + ], + "score": 1.0, + "content": "for previous policies with data", + "type": "text" + }, + { + "bbox": [ + 395, + 650, + 455, + 664 + ], + "score": 0.91, + "content": "\\{ ( \\chi _ { \\pi _ { i } } , T _ { i } ) \\} _ { i = 0 } ^ { t - 1 }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 110, + 662, + 471, + 676 + ], + "spans": [ + { + "bbox": [ + 110, + 663, + 121, + 675 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 153, + 662, + 298, + 676 + ], + "score": 1.0, + "content": "Update policy representation model", + "type": "text" + }, + { + "bbox": [ + 298, + 664, + 304, + 674 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 662, + 471, + 676 + ], + "score": 1.0, + "content": ", e.g., with approaches provided in Sec. 4", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 110, + 673, + 166, + 685 + ], + "spans": [ + { + "bbox": [ + 110, + 674, + 121, + 685 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 673, + 166, + 684 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 110, + 683, + 430, + 698 + ], + "spans": [ + { + "bbox": [ + 110, + 685, + 121, + 696 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 136, + 683, + 201, + 698 + ], + "score": 1.0, + "content": "Update PeVFA", + "type": "text" + }, + { + "bbox": [ + 201, + 685, + 254, + 696 + ], + "score": 0.89, + "content": "\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 683, + 328, + 698 + ], + "score": 1.0, + "content": "for current policy", + "type": "text" + }, + { + "bbox": [ + 328, + 686, + 344, + 696 + ], + "score": 0.88, + "content": "\\chi _ { \\pi _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 683, + 375, + 698 + ], + "score": 1.0, + "content": "and set", + "type": "text" + }, + { + "bbox": [ + 376, + 685, + 430, + 696 + ], + "score": 0.86, + "content": "\\mathbb { V } _ { t } \\longleftarrow \\mathbb { V } _ { t - 1 }", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 694, + 464, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 121, + 707 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 136, + 694, + 169, + 710 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 169, + 697, + 180, + 706 + ], + "score": 0.84, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 694, + 201, + 710 + ], + "score": 1.0, + "content": "w.r.t", + "type": "text" + }, + { + "bbox": [ + 201, + 696, + 244, + 707 + ], + "score": 0.9, + "content": "\\mathbb { V } _ { t } ( s , \\chi _ { \\pi _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 694, + 412, + 710 + ], + "score": 1.0, + "content": "by policy improvement algorithm and set", + "type": "text" + }, + { + "bbox": [ + 412, + 697, + 464, + 707 + ], + "score": 0.83, + "content": "\\pi _ { t + 1 } \\longleftarrow \\pi _ { t }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 705, + 157, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 157, + 718 + ], + "score": 1.0, + "content": "11: end for", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 39.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 302, + 742, + 309, + 750 + ], + "lines": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "spans": [ + { + "bbox": [ + 302, + 741, + 310, + 752 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 84, + 270, + 101, + 546 + ], + "lines": [ + { + "bbox": [ + 86, + 270, + 100, + 280 + ], + "spans": [ + { + "bbox": [ + 86, + 270, + 100, + 280 + ], + "score": 1.0, + "content": "214", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 280, + 100, + 290 + ], + "spans": [ + { + "bbox": [ + 85, + 280, + 100, + 290 + ], + "score": 1.0, + "content": "215", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 290, + 100, + 301 + ], + "spans": [ + { + "bbox": [ + 85, + 290, + 100, + 301 + ], + "score": 1.0, + "content": "216", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 302, + 100, + 313 + ], + "spans": [ + { + "bbox": [ + 85, + 302, + 100, + 313 + ], + "score": 1.0, + "content": "217", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 318, + 100, + 329 + ], + "spans": [ + { + "bbox": [ + 85, + 318, + 100, + 329 + ], + "score": 1.0, + "content": "218", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 329, + 100, + 340 + ], + "spans": [ + { + "bbox": [ + 85, + 329, + 100, + 340 + ], + "score": 1.0, + "content": "219", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 340, + 100, + 351 + ], + "spans": [ + { + "bbox": [ + 86, + 340, + 100, + 351 + ], + "score": 1.0, + "content": "220", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 351, + 99, + 362 + ], + "spans": [ + { + "bbox": [ + 85, + 351, + 99, + 362 + ], + "score": 1.0, + "content": "221", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 361, + 100, + 372 + ], + "spans": [ + { + "bbox": [ + 86, + 361, + 100, + 372 + ], + "score": 1.0, + "content": "222", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 372, + 100, + 384 + ], + "spans": [ + { + "bbox": [ + 86, + 372, + 100, + 384 + ], + "score": 1.0, + "content": "223", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 384, + 100, + 394 + ], + "spans": [ + { + "bbox": [ + 86, + 384, + 100, + 394 + ], + "score": 1.0, + "content": "224", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 394, + 100, + 405 + ], + "spans": [ + { + "bbox": [ + 86, + 394, + 100, + 405 + ], + "score": 1.0, + "content": "225", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 405, + 100, + 416 + ], + "spans": [ + { + "bbox": [ + 86, + 405, + 100, + 416 + ], + "score": 1.0, + "content": "226", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 416, + 100, + 427 + ], + "spans": [ + { + "bbox": [ + 86, + 416, + 100, + 427 + ], + "score": 1.0, + "content": "227", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 427, + 100, + 438 + ], + "spans": [ + { + "bbox": [ + 86, + 427, + 100, + 438 + ], + "score": 1.0, + "content": "228", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 438, + 100, + 449 + ], + "spans": [ + { + "bbox": [ + 86, + 438, + 100, + 449 + ], + "score": 1.0, + "content": "229", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 449, + 99, + 461 + ], + "spans": [ + { + "bbox": [ + 86, + 449, + 99, + 461 + ], + "score": 1.0, + "content": "230", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 460, + 99, + 471 + ], + "spans": [ + { + "bbox": [ + 86, + 460, + 99, + 471 + ], + "score": 1.0, + "content": "231", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 471, + 100, + 482 + ], + "spans": [ + { + "bbox": [ + 86, + 471, + 100, + 482 + ], + "score": 1.0, + "content": "232", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 482, + 100, + 493 + ], + "spans": [ + { + "bbox": [ + 85, + 482, + 100, + 493 + ], + "score": 1.0, + "content": "233", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 493, + 100, + 504 + ], + "spans": [ + { + "bbox": [ + 85, + 493, + 100, + 504 + ], + "score": 1.0, + "content": "234", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 511, + 100, + 522 + ], + "spans": [ + { + "bbox": [ + 85, + 511, + 100, + 522 + ], + "score": 1.0, + "content": "235", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 531, + 100, + 542 + ], + "spans": [ + { + "bbox": [ + 85, + 531, + 100, + 542 + ], + "score": 1.0, + "content": "236", + "type": "text" + } + ] + }, + { + "bbox": [ + 86, + 542, + 100, + 551 + ], + "spans": [ + { + "bbox": [ + 86, + 542, + 100, + 551 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 9, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 123, + 75, + 483, + 181 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 123, + 75, + 483, + 181 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 75, + 483, + 181 + ], + "spans": [ + { + "bbox": [ + 123, + 75, + 483, + 181 + ], + "score": 0.973, + "type": "image", + "image_path": "ca62a1096edd30ab0ac3480db0f68aa5589accbab003cbc10927be11f5143231.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 123, + 75, + 483, + 110.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 123, + 110.33333333333334, + 483, + 145.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 123, + 145.66666666666669, + 483, + 181.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 189, + 506, + 255 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 188, + 507, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 364, + 201 + ], + "score": 1.0, + "content": "Figure 3: Empirical evidences of two kinds of generalization of", + "type": "text" + }, + { + "bbox": [ + 365, + 189, + 396, + 199 + ], + "score": 0.25, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 188, + 507, + 201 + ], + "score": 1.0, + "content": ". (a) Global generalization:", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 198, + 506, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 138, + 210 + ], + "score": 0.38, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 198, + 506, + 213 + ], + "score": 1.0, + "content": "shows comparable value estimation performance on testing policy set (red) after learning", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 210, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 364, + 223 + ], + "score": 1.0, + "content": "on training policy set (blue). (b) Local generalization: PeVFA", + "type": "text" + }, + { + "bbox": [ + 365, + 210, + 402, + 223 + ], + "score": 0.89, + "content": "( \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "shows lower losses than", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 185, + 235 + ], + "score": 1.0, + "content": "conventional VFA", + "type": "text" + }, + { + "bbox": [ + 185, + 222, + 203, + 234 + ], + "score": 0.81, + "content": "( V _ { \\phi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "before and after the value approximation training for successive policies", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 232, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 232, + 506, + 244 + ], + "score": 1.0, + "content": "along policy improvement path. In (b), the left axis is for approximation loss (lower is better) and the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 243, + 465, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 465, + 256 + ], + "score": 1.0, + "content": "right axis is for average return as a reference of the policy learning process (green curve).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 87, + 267, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "spans": [ + { + "bbox": [ + 104, + 266, + 506, + 280 + ], + "score": 1.0, + "content": "policies in the environment to collect trajectories, based on which we perform value approximation", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 303, + 290 + ], + "score": 1.0, + "content": "training. Our results show that a PeVFA trained on", + "type": "text" + }, + { + "bbox": [ + 303, + 278, + 316, + 289 + ], + "score": 0.89, + "content": "\\Pi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "achieves reasonable generalization performance", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 287, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 287, + 187, + 301 + ], + "score": 1.0, + "content": "when evaluating on", + "type": "text" + }, + { + "bbox": [ + 188, + 289, + 201, + 300 + ], + "score": 0.88, + "content": "\\Pi _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 287, + 506, + 301 + ], + "score": 1.0, + "content": ". The average losses on training and testing set are 1.782 and 2.071 over 6", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "trials. Figure 3(a) shows the value predictions for policies from training and testing set (100 for each).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 266, + 506, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 102, + 316, + 505, + 502 + ], + "lines": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "Next, we investigate the value generalization along policy improvement path, i.e., local generalization", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "as in Figure 2(b). We use a 2-layer 8-unit policy network trained by standard PPO algorithm [50] in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 422, + 351 + ], + "score": 1.0, + "content": "MuJoCo continuous control tasks. Parallel to the conventional value network", + "type": "text" + }, + { + "bbox": [ + 422, + 338, + 447, + 350 + ], + "score": 0.93, + "content": "V _ { \\phi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "(i.e., VFA) in", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 347, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 104, + 347, + 164, + 362 + ], + "score": 1.0, + "content": "PPO, we set a", + "type": "text" + }, + { + "bbox": [ + 164, + 349, + 195, + 359 + ], + "score": 0.33, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 347, + 230, + 362 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 231, + 349, + 272, + 360 + ], + "score": 0.91, + "content": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 347, + 506, + 362 + ], + "score": 1.0, + "content": "as a reference for the comparison on value approximation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 358, + 506, + 374 + ], + "spans": [ + { + "bbox": [ + 104, + 358, + 186, + 374 + ], + "score": 1.0, + "content": "loss. Compared to", + "type": "text" + }, + { + "bbox": [ + 186, + 360, + 198, + 371 + ], + "score": 0.84, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 358, + 236, + 374 + ], + "score": 1.0, + "content": ", PeVFA", + "type": "text" + }, + { + "bbox": [ + 236, + 360, + 277, + 371 + ], + "score": 0.89, + "content": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 358, + 506, + 374 + ], + "score": 1.0, + "content": "takes RPR as input and approximates the values of all", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 369, + 507, + 385 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 179, + 385 + ], + "score": 1.0, + "content": "historical policies", + "type": "text" + }, + { + "bbox": [ + 179, + 370, + 218, + 383 + ], + "score": 0.91, + "content": "( \\{ \\pi _ { i } \\} _ { i = 0 } ^ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 369, + 453, + 385 + ], + "score": 1.0, + "content": "in addition. We compare the value approximation losses of", + "type": "text" + }, + { + "bbox": [ + 453, + 371, + 465, + 383 + ], + "score": 0.89, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 369, + 507, + 385 + ], + "score": 1.0, + "content": "(red) and", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 380, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 119, + 393 + ], + "score": 0.84, + "content": "\\mathbb { V } _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 380, + 506, + 395 + ], + "score": 1.0, + "content": "(blue) before (solid) and after (dashed) updating with on-policy samples collected by the improved", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 134, + 405 + ], + "score": 1.0, + "content": "policy", + "type": "text" + }, + { + "bbox": [ + 135, + 394, + 155, + 404 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "at each iteration. Figure 3(b) shows the results for InvertedPendulum-v1 and Ant-v1.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "Results for all 7 MuJoCo tasks can be found in Appendix B.2. By comparing approximation losses", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 411, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 104, + 411, + 458, + 429 + ], + "score": 1.0, + "content": "before updating (red and blue solid curves), we can observe that the approximation loss of", + "type": "text" + }, + { + "bbox": [ + 459, + 414, + 505, + 426 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta _ { t } } ( \\chi _ { \\pi _ { t + 1 } } )", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 424, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 279, + 439 + ], + "score": 1.0, + "content": "is almost consistently lower than that of", + "type": "text" + }, + { + "bbox": [ + 279, + 425, + 294, + 437 + ], + "score": 0.91, + "content": "V _ { \\phi _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 424, + 506, + 439 + ], + "score": 1.0, + "content": ". This means that the generalized value estimates", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 348, + 449 + ], + "score": 1.0, + "content": "offered by PeVFA are usually closer to the true values of", + "type": "text" + }, + { + "bbox": [ + 348, + 437, + 369, + 447 + ], + "score": 0.87, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 435, + 506, + 449 + ], + "score": 1.0, + "content": ", demonstrating the consequence", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 444, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 374, + 461 + ], + "score": 1.0, + "content": "arrived in Theorem 1. For the dashed curves, it shows that PeVFA", + "type": "text" + }, + { + "bbox": [ + 374, + 447, + 429, + 460 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { \\theta _ { t + 1 } } ( \\chi _ { \\pi _ { t + 1 } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 444, + 506, + 461 + ], + "score": 1.0, + "content": "can achieve lower", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 456, + 506, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 197, + 472 + ], + "score": 1.0, + "content": "approximation loss for", + "type": "text" + }, + { + "bbox": [ + 198, + 459, + 218, + 469 + ], + "score": 0.89, + "content": "\\pi _ { t + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 456, + 312, + 472 + ], + "score": 1.0, + "content": "than conventional VFA", + "type": "text" + }, + { + "bbox": [ + 312, + 458, + 336, + 470 + ], + "score": 0.92, + "content": "V _ { \\phi _ { t + 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 456, + 506, + 472 + ], + "score": 1.0, + "content": "after the same number of training with the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 390, + 481 + ], + "score": 1.0, + "content": "same on-policy samples. The empirical evidence above indicates that", + "type": "text" + }, + { + "bbox": [ + 390, + 469, + 421, + 479 + ], + "score": 0.28, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "can be preferable to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "the conventional VFA for consecutive value approximation. The generalized value estimates along", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 491, + 408, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 408, + 503 + ], + "score": 1.0, + "content": "policy improvement path have the potential to expedite the process of GPI.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 316, + 507, + 503 + ] + }, + { + "type": "title", + "bbox": [ + 100, + 509, + 289, + 521 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 289, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 289, + 522 + ], + "score": 1.0, + "content": "3.4 Reinforcement Learning with PeVFA", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 102, + 529, + 505, + 562 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 423, + 542 + ], + "score": 1.0, + "content": "Based on the results above, we expect to leverage the value generalization of", + "type": "text" + }, + { + "bbox": [ + 424, + 529, + 455, + 540 + ], + "score": 0.27, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "to facilitate", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "RL. In Algorithm 1, we propose a general description of RL algorithm under the paradigm of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 564 + ], + "score": 1.0, + "content": "GPI with PeVFA. For each iteration, the interaction experiences of current policy and the policy", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 528, + 506, + 564 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 582, + 485, + 595 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 485, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 339, + 596 + ], + "score": 1.0, + "content": "Algorithm 1 RL under the paradigm of GPI with PeVFA", + "type": "text" + }, + { + "bbox": [ + 339, + 583, + 376, + 595 + ], + "score": 0.88, + "content": "( \\mathbb { V } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 582, + 485, + 596 + ], + "score": 1.0, + "content": "is used for demonstration)", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "index", + "bbox": [ + 108, + 597, + 500, + 718 + ], + "lines": [ + { + "bbox": [ + 109, + 596, + 478, + 610 + ], + "spans": [ + { + "bbox": [ + 109, + 596, + 188, + 610 + ], + "score": 1.0, + "content": "1: Initialize policy", + "type": "text" + }, + { + "bbox": [ + 189, + 600, + 200, + 608 + ], + "score": 0.83, + "content": "\\pi _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 596, + 317, + 610 + ], + "score": 1.0, + "content": ", policy representation model", + "type": "text" + }, + { + "bbox": [ + 318, + 597, + 378, + 609 + ], + "score": 0.51, + "content": "g , \\mathrm { P e V F A } \\ \\mathbb { V } _ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 596, + 468, + 610 + ], + "score": 1.0, + "content": "and experience buffer", + "type": "text" + }, + { + "bbox": [ + 468, + 597, + 478, + 606 + ], + "score": 0.69, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 608, + 441, + 637 + ], + "spans": [ + { + "bbox": [ + 111, + 609, + 121, + 631 + ], + "score": 1.0, + "content": "2: 3:", + "type": "text" + }, + { + "bbox": [ + 122, + 608, + 174, + 637 + ], + "score": 1.0, + "content": "for iteration Rollout", + "type": "text" + }, + { + "bbox": [ + 174, + 609, + 223, + 619 + ], + "score": 0.83, + "content": "t = 0 , 1 , \\ldots", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 621, + 208, + 630 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 608, + 331, + 637 + ], + "score": 1.0, + "content": "dohe environment and obtain", + "type": "text" + }, + { + "bbox": [ + 331, + 619, + 338, + 629 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 608, + 386, + 637 + ], + "score": 1.0, + "content": "trajectories", + "type": "text" + }, + { + "bbox": [ + 386, + 618, + 441, + 631 + ], + "score": 0.89, + "content": "\\mathcal { T } _ { t } = \\{ \\tau _ { i } \\} _ { i = 0 } ^ { k }", + "type": "inline_equation" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 628, + 484, + 643 + ], + "spans": [ + { + "bbox": [ + 111, + 630, + 121, + 642 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 136, + 628, + 214, + 643 + ], + "score": 1.0, + "content": "Get representation", + "type": "text" + }, + { + "bbox": [ + 214, + 630, + 262, + 642 + ], + "score": 0.93, + "content": "\\chi _ { \\pi _ { t } } = g ( \\pi )", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 628, + 304, + 643 + ], + "score": 1.0, + "content": "for policy", + "type": "text" + }, + { + "bbox": [ + 305, + 631, + 315, + 641 + ], + "score": 0.85, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 628, + 400, + 643 + ], + "score": 1.0, + "content": "and add experiences", + "type": "text" + }, + { + "bbox": [ + 401, + 631, + 436, + 642 + ], + "score": 0.9, + "content": "( \\chi _ { \\pi _ { t } } , \\tau _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 628, + 474, + 643 + ], + "score": 1.0, + "content": "in buffer", + "type": "text" + }, + { + "bbox": [ + 475, + 630, + 484, + 639 + ], + "score": 0.77, + "content": "\\mathcal { D }", + "type": "inline_equation" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 639, + 217, + 653 + ], + "spans": [ + { + "bbox": [ + 111, + 641, + 121, + 653 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 137, + 639, + 147, + 653 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 147, + 641, + 163, + 651 + ], + "score": 0.55, + "content": "t \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 641, + 194, + 651 + ], + "score": 0.56, + "content": "M = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 639, + 217, + 653 + ], + "score": 1.0, + "content": "then", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 646, + 455, + 670 + ], + "spans": [ + { + "bbox": [ + 110, + 652, + 121, + 663 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 149, + 646, + 216, + 670 + ], + "score": 1.0, + "content": "Update PeVFA", + "type": "text" + }, + { + "bbox": [ + 216, + 651, + 269, + 664 + ], + "score": 0.92, + "content": "\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { i } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 646, + 395, + 670 + ], + "score": 1.0, + "content": "for previous policies with data", + "type": "text" + }, + { + "bbox": [ + 395, + 650, + 455, + 664 + ], + "score": 0.91, + "content": "\\{ ( \\chi _ { \\pi _ { i } } , T _ { i } ) \\} _ { i = 0 } ^ { t - 1 }", + "type": "inline_equation" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 662, + 471, + 676 + ], + "spans": [ + { + "bbox": [ + 110, + 663, + 121, + 675 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 153, + 662, + 298, + 676 + ], + "score": 1.0, + "content": "Update policy representation model", + "type": "text" + }, + { + "bbox": [ + 298, + 664, + 304, + 674 + ], + "score": 0.76, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 662, + 471, + 676 + ], + "score": 1.0, + "content": ", e.g., with approaches provided in Sec. 4", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 673, + 166, + 685 + ], + "spans": [ + { + "bbox": [ + 110, + 674, + 121, + 685 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 137, + 673, + 166, + 684 + ], + "score": 1.0, + "content": "end if", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 683, + 430, + 698 + ], + "spans": [ + { + "bbox": [ + 110, + 685, + 121, + 696 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 136, + 683, + 201, + 698 + ], + "score": 1.0, + "content": "Update PeVFA", + "type": "text" + }, + { + "bbox": [ + 201, + 685, + 254, + 696 + ], + "score": 0.89, + "content": "\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 683, + 328, + 698 + ], + "score": 1.0, + "content": "for current policy", + "type": "text" + }, + { + "bbox": [ + 328, + 686, + 344, + 696 + ], + "score": 0.88, + "content": "\\chi _ { \\pi _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 683, + 375, + 698 + ], + "score": 1.0, + "content": "and set", + "type": "text" + }, + { + "bbox": [ + 376, + 685, + 430, + 696 + ], + "score": 0.86, + "content": "\\mathbb { V } _ { t } \\longleftarrow \\mathbb { V } _ { t - 1 }", + "type": "inline_equation" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 694, + 464, + 710 + ], + "spans": [ + { + "bbox": [ + 106, + 695, + 121, + 707 + ], + "score": 1.0, + "content": "10:", + "type": "text" + }, + { + "bbox": [ + 136, + 694, + 169, + 710 + ], + "score": 1.0, + "content": "Update", + "type": "text" + }, + { + "bbox": [ + 169, + 697, + 180, + 706 + ], + "score": 0.84, + "content": "\\pi _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 694, + 201, + 710 + ], + "score": 1.0, + "content": "w.r.t", + "type": "text" + }, + { + "bbox": [ + 201, + 696, + 244, + 707 + ], + "score": 0.9, + "content": "\\mathbb { V } _ { t } ( s , \\chi _ { \\pi _ { t } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 694, + 412, + 710 + ], + "score": 1.0, + "content": "by policy improvement algorithm and set", + "type": "text" + }, + { + "bbox": [ + 412, + 697, + 464, + 707 + ], + "score": 0.83, + "content": "\\pi _ { t + 1 } \\longleftarrow \\pi _ { t }", + "type": "inline_equation" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 705, + 157, + 718 + ], + "spans": [ + { + "bbox": [ + 106, + 705, + 157, + 718 + ], + "score": 1.0, + "content": "11: end for", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 86, + 279, + 99, + 288 + ], + "score": 1.0, + "content": "239", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 276, + 363, + 289 + ], + "score": 1.0, + "content": "representation are stored in a buffer (line 3-4). At an interval of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 363, + 277, + 375, + 286 + ], + "score": 0.74, + "content": "M", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 375, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "iterations, PeVFA is trained via", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 86, + 289, + 100, + 300 + ], + "score": 1.0, + "content": "240", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "value approximation for previous policies with the stored data and the policy representation model", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 85, + 300, + 99, + 311 + ], + "score": 1.0, + "content": "241", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "is updated according to the method used (line 5-8). This part is unique to PeVFA for preservation", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 85, + 311, + 100, + 321 + ], + "score": 1.0, + "content": "242", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "and generalization of knowledge of historical policies. Next, value approximation for current policy", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 86, + 323, + 99, + 332 + ], + "score": 1.0, + "content": "243", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 321, + 182, + 334 + ], + "score": 1.0, + "content": "is performed with", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 183, + 321, + 214, + 331 + ], + "score": 0.33, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 215, + 321, + 506, + 334 + ], + "score": 1.0, + "content": "(line 9). A key difference here is that the generalized value estimates", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 85, + 333, + 100, + 343 + ], + "score": 1.0, + "content": "244", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 331, + 127, + 345 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 127, + 331, + 174, + 343 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { t - 1 } ( \\chi _ { \\pi _ { t } } ) )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 174, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "are used as start points. Afterwards, a successive policy is obtained from typical", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 342, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 86, + 345, + 99, + 353 + ], + "score": 1.0, + "content": "245", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 342, + 506, + 355 + ], + "score": 1.0, + "content": "policy improvement (line 10). Algorithm 1 can be implemented in different ways and we propose an", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 86, + 356, + 99, + 365 + ], + "score": 1.0, + "content": "246", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "instance implemented based on PPO [50] in our experiments later. In the next section, we introduce", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 363, + 296, + 378 + ], + "spans": [ + { + "bbox": [ + 85, + 366, + 100, + 376 + ], + "score": 1.0, + "content": "247", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 363, + 296, + 378 + ], + "score": 1.0, + "content": "our methods for policy representation learning.", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 596, + 484, + 718 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 165, + 69, + 448, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 69, + 448, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 69, + 448, + 192 + ], + "spans": [ + { + "bbox": [ + 165, + 69, + 448, + 192 + ], + "score": 0.972, + "type": "image", + "image_path": "16592e2f21ae4564e2ea2f7b946434c197861a704746ab2783434fc39908bdb1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 69, + 448, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 110.0, + 448, + 151.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 151.0, + 448, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 203, + 505, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "Figure 4: The framework of policy representation training. Policy network parameters used for OPR", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "score": 1.0, + "content": "or policy state-action pairs used for SPR are fed into policy encoder with permutation-invariant (PI)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 368, + 238 + ], + "score": 1.0, + "content": "transformations followed by an MLP, producing the representation", + "type": "text" + }, + { + "bbox": [ + 368, + 227, + 381, + 237 + ], + "score": 0.86, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 225, + 433, + 238 + ], + "score": 1.0, + "content": ". Afterwards,", + "type": "text" + }, + { + "bbox": [ + 434, + 227, + 447, + 237 + ], + "score": 0.88, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "can be trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 308, + 249 + ], + "score": 1.0, + "content": "by gradients from the value approximation loss of", + "type": "text" + }, + { + "bbox": [ + 308, + 236, + 339, + 247 + ], + "score": 0.31, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "(i.e., End-to-End), as well as (optionally)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 246, + 442, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 442, + 261 + ], + "score": 1.0, + "content": "the auxiliary loss of policy recovery or the contrastive learning (i.e., InfoNCE) loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 86, + 276, + 505, + 376 + ], + "lines": [ + { + "bbox": [ + 86, + 276, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 86, + 279, + 99, + 288 + ], + "score": 1.0, + "content": "239", + "type": "text" + }, + { + "bbox": [ + 104, + 276, + 363, + 289 + ], + "score": 1.0, + "content": "representation are stored in a buffer (line 3-4). At an interval of", + "type": "text" + }, + { + "bbox": [ + 363, + 277, + 375, + 286 + ], + "score": 0.74, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 276, + 505, + 289 + ], + "score": 1.0, + "content": "iterations, PeVFA is trained via", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 86, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 86, + 289, + 100, + 300 + ], + "score": 1.0, + "content": "240", + "type": "text" + }, + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "value approximation for previous policies with the stored data and the policy representation model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 85, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 85, + 300, + 99, + 311 + ], + "score": 1.0, + "content": "241", + "type": "text" + }, + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "is updated according to the method used (line 5-8). This part is unique to PeVFA for preservation", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 85, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 85, + 311, + 100, + 321 + ], + "score": 1.0, + "content": "242", + "type": "text" + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "and generalization of knowledge of historical policies. Next, value approximation for current policy", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 86, + 321, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 86, + 323, + 99, + 332 + ], + "score": 1.0, + "content": "243", + "type": "text" + }, + { + "bbox": [ + 105, + 321, + 182, + 334 + ], + "score": 1.0, + "content": "is performed with", + "type": "text" + }, + { + "bbox": [ + 183, + 321, + 214, + 331 + ], + "score": 0.33, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 321, + 506, + 334 + ], + "score": 1.0, + "content": "(line 9). A key difference here is that the generalized value estimates", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 85, + 331, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 85, + 333, + 100, + 343 + ], + "score": 1.0, + "content": "244", + "type": "text" + }, + { + "bbox": [ + 105, + 331, + 127, + 345 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + }, + { + "bbox": [ + 127, + 331, + 174, + 343 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { t - 1 } ( \\chi _ { \\pi _ { t } } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 331, + 505, + 345 + ], + "score": 1.0, + "content": "are used as start points. Afterwards, a successive policy is obtained from typical", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 86, + 342, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 86, + 345, + 99, + 353 + ], + "score": 1.0, + "content": "245", + "type": "text" + }, + { + "bbox": [ + 105, + 342, + 506, + 355 + ], + "score": 1.0, + "content": "policy improvement (line 10). Algorithm 1 can be implemented in different ways and we propose an", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 86, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 86, + 356, + 99, + 365 + ], + "score": 1.0, + "content": "246", + "type": "text" + }, + { + "bbox": [ + 105, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "instance implemented based on PPO [50] in our experiments later. In the next section, we introduce", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 85, + 363, + 296, + 378 + ], + "spans": [ + { + "bbox": [ + 85, + 366, + 100, + 376 + ], + "score": 1.0, + "content": "247", + "type": "text" + }, + { + "bbox": [ + 105, + 363, + 296, + 378 + ], + "score": 1.0, + "content": "our methods for policy representation learning.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 86, + 391, + 288, + 405 + ], + "lines": [ + { + "bbox": [ + 83, + 390, + 289, + 408 + ], + "spans": [ + { + "bbox": [ + 83, + 390, + 289, + 408 + ], + "score": 1.0, + "content": "248 4 Policy Representation Learning", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 97, + 416, + 505, + 525 + ], + "lines": [ + { + "bbox": [ + 103, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 103, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "To derive practical deep RL algorithms, one key point is policy representation, i.e., a low-dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 427, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 506, + 439 + ], + "score": 1.0, + "content": "embedding of RL policy. Intuitively, policy representation influences the approximation and gener-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "alization of PeVFA. Thus, it is of interest to find an effective policy representation based on which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "the superiority of PeVFA can be leveraged to improve RL algorithms. To our knowledge, policy", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "representation is not well studied and it remains unclear on how to obtain an effective representation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "for an RL policy in a general case in practice. In previous section, we demonstrate the effectiveness", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "of using policy parameters as a naive representation when policy network is small, called RPR.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "However, a usual policy network may have large number of parameters, thus making it inefficient", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 502, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 506, + 517 + ], + "score": 1.0, + "content": "and even irrational to use RPR for approximation and generalization [17, 10]. More generally, policy", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 514, + 382, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 382, + 527 + ], + "score": 1.0, + "content": "parameters of the policy we wish to represent may not be accessible.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 87, + 531, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 86, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 86, + 533, + 100, + 543 + ], + "score": 1.0, + "content": "259", + "type": "text" + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "To this end, we propose a general framework of policy representation learning as illustrated in Figure", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 85, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 85, + 543, + 99, + 554 + ], + "score": 1.0, + "content": "260", + "type": "text" + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "4. The first thing to consider is data source, i.e., from which we can extract the information for an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 85, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 85, + 555, + 99, + 564 + ], + "score": 1.0, + "content": "261", + "type": "text" + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "effective policy representation. Recall that the policy is a distribution over state and action space", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 85, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 85, + 565, + 100, + 576 + ], + "score": 1.0, + "content": "262", + "type": "text" + }, + { + "bbox": [ + 106, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "of high dimensionality. The features of such a distribution is not directly available. Therefore, we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 85, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 85, + 576, + 99, + 586 + ], + "score": 1.0, + "content": "263", + "type": "text" + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "consider two kinds of data source below that indirectly contains the information of policies: 1) Surface", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 85, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 85, + 587, + 100, + 597 + ], + "score": 1.0, + "content": "264", + "type": "text" + }, + { + "bbox": [ + 105, + 585, + 198, + 598 + ], + "score": 1.0, + "content": "Policy Representation", + "type": "text" + }, + { + "bbox": [ + 198, + 586, + 223, + 596 + ], + "score": 0.35, + "content": "( S P R )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 585, + 505, + 598 + ], + "score": 1.0, + "content": ": The first data source is state-action pairs (or trajectories [14]), since", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 85, + 597, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 85, + 598, + 99, + 608 + ], + "score": 1.0, + "content": "265", + "type": "text" + }, + { + "bbox": [ + 106, + 597, + 505, + 608 + ], + "score": 1.0, + "content": "they reflect how policy may behave under such states. This data source is general since no explicit", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 85, + 608, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 85, + 609, + 99, + 619 + ], + "score": 1.0, + "content": "266", + "type": "text" + }, + { + "bbox": [ + 105, + 608, + 505, + 619 + ], + "score": 1.0, + "content": "form of policy is assumed. In a geometric view, learning policy representation from state-action pairs", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 85, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 85, + 620, + 99, + 630 + ], + "score": 1.0, + "content": "267", + "type": "text" + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "can be viewed as capturing the features of policy via scattering sample points on the curved surface", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 85, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 85, + 631, + 100, + 641 + ], + "score": 1.0, + "content": "268", + "type": "text" + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "of policy distribution. 2) Origin Policy Representation (OPR): The other data source is parameters of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 85, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 85, + 642, + 99, + 651 + ], + "score": 1.0, + "content": "269", + "type": "text" + }, + { + "bbox": [ + 104, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "policy since they determine the underlying form of policy distribution. Such a data source is often", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 85, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 85, + 653, + 99, + 663 + ], + "score": 1.0, + "content": "270", + "type": "text" + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "available during the learning process of deep RL algorithms when policy is parameterized by neural", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 86, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 86, + 663, + 99, + 673 + ], + "score": 1.0, + "content": "271", + "type": "text" + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "networks. Generally, we consider a policy network to be an MLP with well represented state features", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 86, + 672, + 426, + 686 + ], + "spans": [ + { + "bbox": [ + 86, + 675, + 100, + 685 + ], + "score": 1.0, + "content": "272", + "type": "text" + }, + { + "bbox": [ + 104, + 672, + 426, + 686 + ], + "score": 1.0, + "content": "(e.g., features extracted by CNN for pixels or by LSTM for sequences) as input.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 87, + 689, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 86, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 86, + 691, + 100, + 700 + ], + "score": 1.0, + "content": "273", + "type": "text" + }, + { + "bbox": [ + 104, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "The remaining question is how we extract the policy representation from the data sources mentioned", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 86, + 701, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 86, + 703, + 99, + 711 + ], + "score": 1.0, + "content": "274", + "type": "text" + }, + { + "bbox": [ + 105, + 701, + 505, + 712 + ], + "score": 1.0, + "content": "above. As shown in Figure 4, we use permutation-invariant (PI) transformations followed by an", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 86, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 86, + 712, + 100, + 722 + ], + "score": 1.0, + "content": "275", + "type": "text" + }, + { + "bbox": [ + 104, + 710, + 245, + 722 + ], + "score": 1.0, + "content": "MLP to encode the data of policy", + "type": "text" + }, + { + "bbox": [ + 245, + 713, + 253, + 721 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 710, + 331, + 722 + ], + "score": 1.0, + "content": "into an embedding", + "type": "text" + }, + { + "bbox": [ + 332, + 712, + 345, + 722 + ], + "score": 0.85, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "for both SPR and OPR. For SPR, each", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + } + ], + "page_idx": 6, + "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": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 165, + 69, + 448, + 192 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 165, + 69, + 448, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 165, + 69, + 448, + 192 + ], + "spans": [ + { + "bbox": [ + 165, + 69, + 448, + 192 + ], + "score": 0.972, + "type": "image", + "image_path": "16592e2f21ae4564e2ea2f7b946434c197861a704746ab2783434fc39908bdb1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 165, + 69, + 448, + 110.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 165, + 110.0, + 448, + 151.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 165, + 151.0, + 448, + 192.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 203, + 505, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 505, + 217 + ], + "score": 1.0, + "content": "Figure 4: The framework of policy representation training. Policy network parameters used for OPR", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "score": 1.0, + "content": "or policy state-action pairs used for SPR are fed into policy encoder with permutation-invariant (PI)", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 225, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 368, + 238 + ], + "score": 1.0, + "content": "transformations followed by an MLP, producing the representation", + "type": "text" + }, + { + "bbox": [ + 368, + 227, + 381, + 237 + ], + "score": 0.86, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 225, + 433, + 238 + ], + "score": 1.0, + "content": ". Afterwards,", + "type": "text" + }, + { + "bbox": [ + 434, + 227, + 447, + 237 + ], + "score": 0.88, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 225, + 505, + 238 + ], + "score": 1.0, + "content": "can be trained", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 235, + 506, + 249 + ], + "spans": [ + { + "bbox": [ + 105, + 235, + 308, + 249 + ], + "score": 1.0, + "content": "by gradients from the value approximation loss of", + "type": "text" + }, + { + "bbox": [ + 308, + 236, + 339, + 247 + ], + "score": 0.31, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 235, + 506, + 249 + ], + "score": 1.0, + "content": "(i.e., End-to-End), as well as (optionally)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 246, + 442, + 261 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 442, + 261 + ], + "score": 1.0, + "content": "the auxiliary loss of policy recovery or the contrastive learning (i.e., InfoNCE) loss.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "index", + "bbox": [ + 86, + 276, + 505, + 376 + ], + "lines": [], + "index": 12, + "bbox_fs": [ + 85, + 276, + 506, + 378 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 86, + 391, + 288, + 405 + ], + "lines": [ + { + "bbox": [ + 83, + 390, + 289, + 408 + ], + "spans": [ + { + "bbox": [ + 83, + 390, + 289, + 408 + ], + "score": 1.0, + "content": "248 4 Policy Representation Learning", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 97, + 416, + 505, + 525 + ], + "lines": [ + { + "bbox": [ + 103, + 416, + 506, + 429 + ], + "spans": [ + { + "bbox": [ + 103, + 416, + 506, + 429 + ], + "score": 1.0, + "content": "To derive practical deep RL algorithms, one key point is policy representation, i.e., a low-dimensional", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 427, + 506, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 506, + 439 + ], + "score": 1.0, + "content": "embedding of RL policy. Intuitively, policy representation influences the approximation and gener-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "alization of PeVFA. Thus, it is of interest to find an effective policy representation based on which", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 462 + ], + "score": 1.0, + "content": "the superiority of PeVFA can be leveraged to improve RL algorithms. To our knowledge, policy", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "representation is not well studied and it remains unclear on how to obtain an effective representation", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 483 + ], + "score": 1.0, + "content": "for an RL policy in a general case in practice. In previous section, we demonstrate the effectiveness", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "of using policy parameters as a naive representation when policy network is small, called RPR.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "However, a usual policy network may have large number of parameters, thus making it inefficient", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 502, + 506, + 517 + ], + "spans": [ + { + "bbox": [ + 104, + 502, + 506, + 517 + ], + "score": 1.0, + "content": "and even irrational to use RPR for approximation and generalization [17, 10]. More generally, policy", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 514, + 382, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 382, + 527 + ], + "score": 1.0, + "content": "parameters of the policy we wish to represent may not be accessible.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22.5, + "bbox_fs": [ + 103, + 416, + 506, + 527 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 531, + 505, + 684 + ], + "lines": [ + { + "bbox": [ + 86, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 86, + 533, + 100, + 543 + ], + "score": 1.0, + "content": "259", + "type": "text" + }, + { + "bbox": [ + 105, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "To this end, we propose a general framework of policy representation learning as illustrated in Figure", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 541, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 85, + 543, + 99, + 554 + ], + "score": 1.0, + "content": "260", + "type": "text" + }, + { + "bbox": [ + 105, + 541, + 506, + 554 + ], + "score": 1.0, + "content": "4. The first thing to consider is data source, i.e., from which we can extract the information for an", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 85, + 555, + 99, + 564 + ], + "score": 1.0, + "content": "261", + "type": "text" + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "effective policy representation. Recall that the policy is a distribution over state and action space", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 85, + 565, + 100, + 576 + ], + "score": 1.0, + "content": "262", + "type": "text" + }, + { + "bbox": [ + 106, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "of high dimensionality. The features of such a distribution is not directly available. Therefore, we", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 85, + 576, + 99, + 586 + ], + "score": 1.0, + "content": "263", + "type": "text" + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "consider two kinds of data source below that indirectly contains the information of policies: 1) Surface", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 585, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 85, + 587, + 100, + 597 + ], + "score": 1.0, + "content": "264", + "type": "text" + }, + { + "bbox": [ + 105, + 585, + 198, + 598 + ], + "score": 1.0, + "content": "Policy Representation", + "type": "text" + }, + { + "bbox": [ + 198, + 586, + 223, + 596 + ], + "score": 0.35, + "content": "( S P R )", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 585, + 505, + 598 + ], + "score": 1.0, + "content": ": The first data source is state-action pairs (or trajectories [14]), since", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 597, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 85, + 598, + 99, + 608 + ], + "score": 1.0, + "content": "265", + "type": "text" + }, + { + "bbox": [ + 106, + 597, + 505, + 608 + ], + "score": 1.0, + "content": "they reflect how policy may behave under such states. This data source is general since no explicit", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 608, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 85, + 609, + 99, + 619 + ], + "score": 1.0, + "content": "266", + "type": "text" + }, + { + "bbox": [ + 105, + 608, + 505, + 619 + ], + "score": 1.0, + "content": "form of policy is assumed. In a geometric view, learning policy representation from state-action pairs", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 85, + 620, + 99, + 630 + ], + "score": 1.0, + "content": "267", + "type": "text" + }, + { + "bbox": [ + 105, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "can be viewed as capturing the features of policy via scattering sample points on the curved surface", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 629, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 85, + 631, + 100, + 641 + ], + "score": 1.0, + "content": "268", + "type": "text" + }, + { + "bbox": [ + 105, + 629, + 505, + 641 + ], + "score": 1.0, + "content": "of policy distribution. 2) Origin Policy Representation (OPR): The other data source is parameters of", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 85, + 642, + 99, + 651 + ], + "score": 1.0, + "content": "269", + "type": "text" + }, + { + "bbox": [ + 104, + 639, + 506, + 653 + ], + "score": 1.0, + "content": "policy since they determine the underlying form of policy distribution. Such a data source is often", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 85, + 653, + 99, + 663 + ], + "score": 1.0, + "content": "270", + "type": "text" + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "available during the learning process of deep RL algorithms when policy is parameterized by neural", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 662, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 86, + 663, + 99, + 673 + ], + "score": 1.0, + "content": "271", + "type": "text" + }, + { + "bbox": [ + 105, + 662, + 505, + 675 + ], + "score": 1.0, + "content": "networks. Generally, we consider a policy network to be an MLP with well represented state features", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 672, + 426, + 686 + ], + "spans": [ + { + "bbox": [ + 86, + 675, + 100, + 685 + ], + "score": 1.0, + "content": "272", + "type": "text" + }, + { + "bbox": [ + 104, + 672, + 426, + 686 + ], + "score": 1.0, + "content": "(e.g., features extracted by CNN for pixels or by LSTM for sequences) as input.", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 688, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 86, + 691, + 100, + 700 + ], + "score": 1.0, + "content": "273", + "type": "text" + }, + { + "bbox": [ + 104, + 688, + 506, + 701 + ], + "score": 1.0, + "content": "The remaining question is how we extract the policy representation from the data sources mentioned", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 701, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 86, + 703, + 99, + 711 + ], + "score": 1.0, + "content": "274", + "type": "text" + }, + { + "bbox": [ + 105, + 701, + 505, + 712 + ], + "score": 1.0, + "content": "above. As shown in Figure 4, we use permutation-invariant (PI) transformations followed by an", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 86, + 712, + 100, + 722 + ], + "score": 1.0, + "content": "275", + "type": "text" + }, + { + "bbox": [ + 104, + 710, + 245, + 722 + ], + "score": 1.0, + "content": "MLP to encode the data of policy", + "type": "text" + }, + { + "bbox": [ + 245, + 713, + 253, + 721 + ], + "score": 0.74, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 710, + 331, + 722 + ], + "score": 1.0, + "content": "into an embedding", + "type": "text" + }, + { + "bbox": [ + 332, + 712, + 345, + 722 + ], + "score": 0.85, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "for both SPR and OPR. For SPR, each", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + } + ], + "index": 34.5, + "bbox_fs": [ + 85, + 531, + 506, + 686 + ] + }, + { + "type": "index", + "bbox": [ + 87, + 689, + 505, + 722 + ], + "lines": [], + "index": 43, + "bbox_fs": [ + 86, + 688, + 506, + 722 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 86, + 72, + 505, + 139 + ], + "lines": [ + { + "bbox": [ + 86, + 70, + 507, + 88 + ], + "spans": [ + { + "bbox": [ + 86, + 74, + 100, + 84 + ], + "score": 1.0, + "content": "276", + "type": "text" + }, + { + "bbox": [ + 104, + 70, + 184, + 88 + ], + "score": 1.0, + "content": "state-action pair of", + "type": "text" + }, + { + "bbox": [ + 184, + 72, + 237, + 85 + ], + "score": 0.93, + "content": "\\{ ( s _ { i } , a _ { i } ) \\} _ { i = 1 } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 70, + 507, + 88 + ], + "score": 1.0, + "content": "is fed into a common MLP, followed by a Mean-Reduce operation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 240, + 96 + ], + "score": 1.0, + "content": "on the outputted features across", + "type": "text" + }, + { + "bbox": [ + 240, + 84, + 247, + 93 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 83, + 506, + 96 + ], + "score": 1.0, + "content": ". For OPR, we perform PI transformation (similar as done for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 93, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 93, + 303, + 108 + ], + "score": 1.0, + "content": "state-action pairs) inner-layer weights and biases", + "type": "text" + }, + { + "bbox": [ + 304, + 94, + 358, + 106 + ], + "score": 0.93, + "content": "\\{ ( w _ { i } , b _ { i } ) \\} _ { i = 1 } ^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 93, + 464, + 108 + ], + "score": 1.0, + "content": "for each layer first, where", + "type": "text" + }, + { + "bbox": [ + 464, + 95, + 471, + 104 + ], + "score": 0.67, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 93, + 507, + 108 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 262, + 118 + ], + "score": 1.0, + "content": "the number of nodes in this layer and", + "type": "text" + }, + { + "bbox": [ + 263, + 106, + 286, + 117 + ], + "score": 0.91, + "content": "w _ { i } , b _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "is the income weight vector from previous layer and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "score": 1.0, + "content": "the bias of ith node; then we concatenate encoding of layers and obtain the OPR. A illustrative", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 369, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 369, + 140 + ], + "score": 1.0, + "content": "description for the encoding of OPR is in Figure 12 of Appendix.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 103, + 144, + 506, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 227, + 157 + ], + "score": 1.0, + "content": "To train the policy embedding", + "type": "text" + }, + { + "bbox": [ + 228, + 146, + 240, + 155 + ], + "score": 0.86, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "obtained above, the most straightforward way is to backpropagate", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 154, + 507, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 235, + 167 + ], + "score": 1.0, + "content": "the value approximation loss of", + "type": "text" + }, + { + "bbox": [ + 235, + 155, + 266, + 165 + ], + "score": 0.25, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 154, + 339, + 167 + ], + "score": 1.0, + "content": "in an End-to-End", + "type": "text" + }, + { + "bbox": [ + 339, + 155, + 364, + 166 + ], + "score": 0.5, + "content": "( E 2 E )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 154, + 507, + 167 + ], + "score": 1.0, + "content": "fashion as illustrated on the lower-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "right of Figure 4. In addition, we provide two self-supervised training losses for both OPR and SPR,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 174, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 104, + 174, + 506, + 191 + ], + "score": 1.0, + "content": "as illustrated on the upper-right of Figure 4. The first one is an auxiliary loss (AUX) of policy recovery", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 186, + 507, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 301, + 201 + ], + "score": 1.0, + "content": "[14], i.e., to recover the action distributions of", + "type": "text" + }, + { + "bbox": [ + 302, + 189, + 309, + 198 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 186, + 333, + 201 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 334, + 189, + 347, + 199 + ], + "score": 0.85, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 186, + 507, + 201 + ], + "score": 1.0, + "content": "under different states. To be specific,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 219, + 212 + ], + "score": 1.0, + "content": "an auxiliary policy decoder", + "type": "text" + }, + { + "bbox": [ + 219, + 198, + 261, + 210 + ], + "score": 0.92, + "content": "\\bar { \\pi } ( \\cdot | s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 197, + 506, + 212 + ], + "score": 1.0, + "content": "is trained through behavioral cloning, formally to minimize", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 208, + 507, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 204, + 224 + ], + "score": 1.0, + "content": "cross-entropy objective", + "type": "text" + }, + { + "bbox": [ + 204, + 209, + 336, + 222 + ], + "score": 0.77, + "content": "\\mathcal { L } _ { \\mathrm { A U X } } = - \\mathbb { E } _ { ( s , a ) } \\left[ \\log \\bar { \\pi } ( a | s , \\chi _ { \\pi } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 208, + 507, + 224 + ], + "score": 1.0, + "content": ". For the second one, we propose to train", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 219, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 119, + 232 + ], + "score": 0.84, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 219, + 223, + 233 + ], + "score": 1.0, + "content": "by Contrastive Learning", + "type": "text" + }, + { + "bbox": [ + 223, + 221, + 242, + 231 + ], + "score": 0.54, + "content": "( C L )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 219, + 507, + 233 + ], + "score": 1.0, + "content": "[54, 51]: policies are encouraged to be close to similar ones (i.e.,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 173, + 244 + ], + "score": 1.0, + "content": "positive samples", + "type": "text" + }, + { + "bbox": [ + 173, + 231, + 187, + 241 + ], + "score": 0.86, + "content": "\\pi ^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 230, + 419, + 244 + ], + "score": 1.0, + "content": "), and to be apart from different ones (i.e., negative samples", + "type": "text" + }, + { + "bbox": [ + 419, + 231, + 433, + 241 + ], + "score": 0.86, + "content": "\\pi ^ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 230, + 506, + 244 + ], + "score": 1.0, + "content": ") in representation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "space. For each policy, we construct positive samples by data augmentation on policy data, depending", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "on SPR or OPR considered; and different policies along the policy improvement path naturally", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 98, + 263, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 98, + 265, + 226, + 304 + ], + "score": 1.0, + "content": "the InfoNCE loss [41] below:", + "type": "text" + }, + { + "bbox": [ + 105, + 263, + 359, + 278 + ], + "score": 1.0, + "content": "provide negative samples for each other. Finally, the embedding", + "type": "text" + }, + { + "bbox": [ + 227, + 275, + 473, + 295 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { C L } } = - \\mathbb { E } _ { ( \\pi ^ { + } , \\{ \\pi ^ { - } \\} ) } \\left[ \\log \\frac { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) } { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) + \\sum _ { \\pi ^ { - } } \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { - } } ) } \\right] . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 265, + 372, + 275 + ], + "score": 0.84, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 263, + 506, + 278 + ], + "score": 1.0, + "content": "is optimized through minimizing", + "type": "text" + }, + { + "bbox": [ + 473, + 265, + 480, + 304 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 102, + 276, + 473, + 295 + ], + "lines": [ + { + "bbox": [ + 102, + 276, + 473, + 295 + ], + "spans": [], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 298, + 502, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 504, + 311 + ], + "score": 1.0, + "content": "Now, the training of policy representation model in Algorithm 1 can be performed with any com-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 308, + 504, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 504, + 323 + ], + "score": 1.0, + "content": "bination of data sources and training losses provided above. A pseudo-code of the overall policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "representation training framework and complete implementation details are provided in Appendix D.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "title", + "bbox": [ + 107, + 346, + 191, + 360 + ], + "lines": [ + { + "bbox": [ + 103, + 344, + 193, + 363 + ], + "spans": [ + { + "bbox": [ + 103, + 344, + 193, + 363 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 370, + 450, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 450, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 450, + 384 + ], + "score": 1.0, + "content": "In this section, we conduct experimental study with focus on the following questions:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 103, + 386, + 499, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 501, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 501, + 400 + ], + "score": 1.0, + "content": "Question 1 Can value generalization offered by PeVFA improve a deep RL algorithm in practice?", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 399, + 438, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 438, + 412 + ], + "score": 1.0, + "content": "Question 2 Can our proposed framework to learn effective policy representation?", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 104, + 416, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "Our experiments are conducted in several OpenAI Gym continuous control tasks (one from Box2D", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 427, + 495, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 495, + 440 + ], + "score": 1.0, + "content": "and five from MuJoCo) [6, 58]. All experimental details and curves can be found in Appendix B.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 105, + 443, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Algorithm Implementation. We use PPO [50] as the basic algorithm and propose a representative", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "implementation of Algorithm 1, called PPO-PeVFA. PPO is a policy optimization algorithm that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 378, + 478 + ], + "score": 1.0, + "content": "follows the paradigm of GPI (Figure 1, left). A value network", + "type": "text" + }, + { + "bbox": [ + 378, + 465, + 402, + 477 + ], + "score": 0.92, + "content": "V _ { \\phi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 465, + 475, + 478 + ], + "score": 1.0, + "content": "with parameters", + "type": "text" + }, + { + "bbox": [ + 475, + 466, + 483, + 477 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 390, + 488 + ], + "score": 1.0, + "content": "conventional VFA) is trained to approximate the value of current policy", + "type": "text" + }, + { + "bbox": [ + 390, + 479, + 397, + 486 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 476, + 425, + 488 + ], + "score": 1.0, + "content": "; while", + "type": "text" + }, + { + "bbox": [ + 426, + 478, + 433, + 486 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "is optimized with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 369, + 500 + ], + "score": 1.0, + "content": "respect to a surrogate objective [48] using advantages calculated by", + "type": "text" + }, + { + "bbox": [ + 369, + 488, + 381, + 499 + ], + "score": 0.85, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "and GAE [49]. Compared with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 277, + 510 + ], + "score": 1.0, + "content": "original PPO, PPO-PeVFA makes use of a", + "type": "text" + }, + { + "bbox": [ + 277, + 498, + 308, + 509 + ], + "score": 0.43, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 497, + 343, + 510 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 344, + 498, + 385, + 510 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 497, + 452, + 510 + ], + "score": 1.0, + "content": "with parameters", + "type": "text" + }, + { + "bbox": [ + 452, + 498, + 459, + 508 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 196, + 522 + ], + "score": 1.0, + "content": "the conventional VFA", + "type": "text" + }, + { + "bbox": [ + 196, + 509, + 221, + 521 + ], + "score": 0.9, + "content": "V _ { \\phi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 509, + 506, + 522 + ], + "score": 1.0, + "content": ", and follows the training scheme as in Algorithm 1. Note PPO-PeVFA", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 504, + 533 + ], + "score": 1.0, + "content": "uses the same policy optimization method as original PPO and only differs at value approximation.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 88, + 536, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 548 + ], + "score": 1.0, + "content": "Baselines and Variants. Except for original PPO as a default baseline, we use another two baselines:", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "1) PPO-PeVFA with randomly generated policy representation for each policy, denoted by Ran PR;", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "score": 1.0, + "content": "2) PPO-PeVFA with Raw Policy Representation (RPR), i.e., use the vector of all parameters of policy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 567, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 506, + 583 + ], + "score": 1.0, + "content": "network as representation as adopted in PVFs [10]. Our variants of PPO-PeVFA differ at the policy", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "representation used. In total, we consider 6 variants denoted by the combination of the policy data", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 591, + 441, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 591, + 441, + 603 + ], + "score": 1.0, + "content": "choice (i.e., OPR, SPR) and representation principle choice (i.e., E2E, CL, AUX).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "Experimental Details. For all baselines and variants, we use a normal-scale policy network with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 328, + 631 + ], + "score": 1.0, + "content": "2 layers and 64 units for each layer, resulting in over", + "type": "text" + }, + { + "bbox": [ + 328, + 618, + 340, + 628 + ], + "score": 0.5, + "content": "3 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "to 10k (e.g., Ant-v1) policy parameters", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "depending on the environments. We do not assume the access to pre-collected policies. Thus the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "score": 1.0, + "content": "size of policy set increases from 1 (i.e., the initial policy) during the learning process, to about 1k to", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "2 for a single trial. The dimensionality of all kinds of policy representation expect for RPR is set", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 180, + 674 + ], + "score": 1.0, + "content": "to 64. The buffer", + "type": "text" + }, + { + "bbox": [ + 180, + 662, + 190, + 672 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 662, + 262, + 674 + ], + "score": 1.0, + "content": "maintains recent", + "type": "text" + }, + { + "bbox": [ + 262, + 662, + 284, + 672 + ], + "score": 0.62, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "steps of interaction experience and the policy data of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "corresponding policy. The number of interaction step of each trial is 1M for InvDouPend-v1 and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 683, + 329, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 329, + 695 + ], + "score": 1.0, + "content": "LunarLander-v2, 4M for Ant-v1 and 2M for the others.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 101, + 699, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 712 + ], + "score": 1.0, + "content": "Results. The overall experimental results are summarized in Table 1. In Figure 5, we provide", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 711, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 724 + ], + "score": 1.0, + "content": "aggregated results across all environments expect for InvDouPend-v1 and LunarLander-v2 (since", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.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 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 85, + 82, + 101, + 741 + ], + "lines": [ + { + "bbox": [ + 84, + 85, + 101, + 96 + ], + "spans": [ + { + "bbox": [ + 84, + 85, + 101, + 96 + ], + "score": 1.0, + "content": "277", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 96, + 101, + 107 + ], + "spans": [ + { + "bbox": [ + 84, + 96, + 101, + 107 + ], + "score": 1.0, + "content": "278", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 107, + 101, + 119 + ], + "spans": [ + { + "bbox": [ + 85, + 107, + 101, + 119 + ], + "score": 1.0, + "content": "279", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 118, + 101, + 129 + ], + "spans": [ + { + "bbox": [ + 85, + 118, + 101, + 129 + ], + "score": 1.0, + "content": "280", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 129, + 100, + 140 + ], + "spans": [ + { + "bbox": [ + 85, + 129, + 100, + 140 + ], + "score": 1.0, + "content": "281", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 145, + 101, + 156 + ], + "spans": [ + { + "bbox": [ + 85, + 145, + 101, + 156 + ], + "score": 1.0, + "content": "282", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 156, + 101, + 168 + ], + "spans": [ + { + "bbox": [ + 84, + 156, + 101, + 168 + ], + "score": 1.0, + "content": "283", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 167, + 101, + 178 + ], + "spans": [ + { + "bbox": [ + 84, + 167, + 101, + 178 + ], + "score": 1.0, + "content": "284", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 178, + 101, + 190 + ], + "spans": [ + { + "bbox": [ + 85, + 178, + 101, + 190 + ], + "score": 1.0, + "content": "285", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 189, + 101, + 200 + ], + "spans": [ + { + "bbox": [ + 85, + 189, + 101, + 200 + ], + "score": 1.0, + "content": "286", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 200, + 100, + 212 + ], + "spans": [ + { + "bbox": [ + 85, + 200, + 100, + 212 + ], + "score": 1.0, + "content": "287", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 211, + 101, + 222 + ], + "spans": [ + { + "bbox": [ + 85, + 211, + 101, + 222 + ], + "score": 1.0, + "content": "288", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 222, + 101, + 233 + ], + "spans": [ + { + "bbox": [ + 85, + 222, + 101, + 233 + ], + "score": 1.0, + "content": "289", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 233, + 101, + 244 + ], + "spans": [ + { + "bbox": [ + 85, + 233, + 101, + 244 + ], + "score": 1.0, + "content": "290", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 243, + 100, + 255 + ], + "spans": [ + { + "bbox": [ + 85, + 243, + 100, + 255 + ], + "score": 1.0, + "content": "291", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 254, + 101, + 266 + ], + "spans": [ + { + "bbox": [ + 85, + 254, + 101, + 266 + ], + "score": 1.0, + "content": "292", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 265, + 101, + 277 + ], + "spans": [ + { + "bbox": [ + 85, + 265, + 101, + 277 + ], + "score": 1.0, + "content": "293", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 281, + 101, + 293 + ], + "spans": [ + { + "bbox": [ + 85, + 281, + 101, + 293 + ], + "score": 1.0, + "content": "294", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 300, + 101, + 311 + ], + "spans": [ + { + "bbox": [ + 84, + 300, + 101, + 311 + ], + "score": 1.0, + "content": "295", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 311, + 101, + 322 + ], + "spans": [ + { + "bbox": [ + 85, + 311, + 101, + 322 + ], + "score": 1.0, + "content": "296", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 321, + 101, + 335 + ], + "spans": [ + { + "bbox": [ + 85, + 321, + 101, + 335 + ], + "score": 1.0, + "content": "297", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 350, + 101, + 362 + ], + "spans": [ + { + "bbox": [ + 85, + 350, + 101, + 362 + ], + "score": 1.0, + "content": "298", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 371, + 101, + 386 + ], + "spans": [ + { + "bbox": [ + 84, + 371, + 101, + 386 + ], + "score": 1.0, + "content": "299", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 388, + 100, + 401 + ], + "spans": [ + { + "bbox": [ + 85, + 388, + 100, + 401 + ], + "score": 1.0, + "content": "300", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 402, + 100, + 414 + ], + "spans": [ + { + "bbox": [ + 85, + 402, + 100, + 414 + ], + "score": 1.0, + "content": "301", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 418, + 101, + 429 + ], + "spans": [ + { + "bbox": [ + 84, + 418, + 101, + 429 + ], + "score": 1.0, + "content": "302", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 429, + 101, + 443 + ], + "spans": [ + { + "bbox": [ + 85, + 429, + 101, + 443 + ], + "score": 1.0, + "content": "303", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 445, + 101, + 456 + ], + "spans": [ + { + "bbox": [ + 84, + 445, + 101, + 456 + ], + "score": 1.0, + "content": "304", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 456, + 101, + 468 + ], + "spans": [ + { + "bbox": [ + 85, + 456, + 101, + 468 + ], + "score": 1.0, + "content": "305", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 467, + 101, + 478 + ], + "spans": [ + { + "bbox": [ + 84, + 467, + 101, + 478 + ], + "score": 1.0, + "content": "306", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 478, + 101, + 489 + ], + "spans": [ + { + "bbox": [ + 85, + 478, + 101, + 489 + ], + "score": 1.0, + "content": "307", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 489, + 101, + 501 + ], + "spans": [ + { + "bbox": [ + 84, + 489, + 101, + 501 + ], + "score": 1.0, + "content": "308", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 501, + 101, + 511 + ], + "spans": [ + { + "bbox": [ + 84, + 501, + 101, + 511 + ], + "score": 1.0, + "content": "309", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 511, + 101, + 522 + ], + "spans": [ + { + "bbox": [ + 84, + 511, + 101, + 522 + ], + "score": 1.0, + "content": "310", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 522, + 101, + 533 + ], + "spans": [ + { + "bbox": [ + 85, + 522, + 101, + 533 + ], + "score": 1.0, + "content": "311", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 537, + 101, + 549 + ], + "spans": [ + { + "bbox": [ + 84, + 537, + 101, + 549 + ], + "score": 1.0, + "content": "312", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 549, + 101, + 560 + ], + "spans": [ + { + "bbox": [ + 84, + 549, + 101, + 560 + ], + "score": 1.0, + "content": "313", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 560, + 101, + 571 + ], + "spans": [ + { + "bbox": [ + 84, + 560, + 101, + 571 + ], + "score": 1.0, + "content": "314", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 571, + 101, + 582 + ], + "spans": [ + { + "bbox": [ + 84, + 571, + 101, + 582 + ], + "score": 1.0, + "content": "315", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 582, + 101, + 592 + ], + "spans": [ + { + "bbox": [ + 84, + 582, + 101, + 592 + ], + "score": 1.0, + "content": "316", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 593, + 101, + 605 + ], + "spans": [ + { + "bbox": [ + 85, + 593, + 101, + 605 + ], + "score": 1.0, + "content": "317", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 608, + 101, + 620 + ], + "spans": [ + { + "bbox": [ + 84, + 608, + 101, + 620 + ], + "score": 1.0, + "content": "318", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 620, + 101, + 631 + ], + "spans": [ + { + "bbox": [ + 84, + 620, + 101, + 631 + ], + "score": 1.0, + "content": "319", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 631, + 101, + 642 + ], + "spans": [ + { + "bbox": [ + 84, + 631, + 101, + 642 + ], + "score": 1.0, + "content": "320", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 642, + 101, + 653 + ], + "spans": [ + { + "bbox": [ + 85, + 642, + 101, + 653 + ], + "score": 1.0, + "content": "321", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 653, + 101, + 663 + ], + "spans": [ + { + "bbox": [ + 84, + 653, + 101, + 663 + ], + "score": 1.0, + "content": "322", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 663, + 101, + 675 + ], + "spans": [ + { + "bbox": [ + 84, + 663, + 101, + 675 + ], + "score": 1.0, + "content": "323", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 675, + 101, + 686 + ], + "spans": [ + { + "bbox": [ + 84, + 675, + 101, + 686 + ], + "score": 1.0, + "content": "324", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 685, + 101, + 698 + ], + "spans": [ + { + "bbox": [ + 85, + 685, + 101, + 698 + ], + "score": 1.0, + "content": "325", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 701, + 101, + 713 + ], + "spans": [ + { + "bbox": [ + 84, + 701, + 101, + 713 + ], + "score": 1.0, + "content": "326", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 712, + 100, + 723 + ], + "spans": [ + { + "bbox": [ + 85, + 712, + 100, + 723 + ], + "score": 1.0, + "content": "327", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 86, + 72, + 505, + 139 + ], + "lines": [ + { + "bbox": [ + 86, + 70, + 507, + 88 + ], + "spans": [ + { + "bbox": [ + 86, + 74, + 100, + 84 + ], + "score": 1.0, + "content": "276", + "type": "text" + }, + { + "bbox": [ + 104, + 70, + 184, + 88 + ], + "score": 1.0, + "content": "state-action pair of", + "type": "text" + }, + { + "bbox": [ + 184, + 72, + 237, + 85 + ], + "score": 0.93, + "content": "\\{ ( s _ { i } , a _ { i } ) \\} _ { i = 1 } ^ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 70, + 507, + 88 + ], + "score": 1.0, + "content": "is fed into a common MLP, followed by a Mean-Reduce operation", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 83, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 240, + 96 + ], + "score": 1.0, + "content": "on the outputted features across", + "type": "text" + }, + { + "bbox": [ + 240, + 84, + 247, + 93 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 83, + 506, + 96 + ], + "score": 1.0, + "content": ". For OPR, we perform PI transformation (similar as done for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 93, + 507, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 93, + 303, + 108 + ], + "score": 1.0, + "content": "state-action pairs) inner-layer weights and biases", + "type": "text" + }, + { + "bbox": [ + 304, + 94, + 358, + 106 + ], + "score": 0.93, + "content": "\\{ ( w _ { i } , b _ { i } ) \\} _ { i = 1 } ^ { h }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 93, + 464, + 108 + ], + "score": 1.0, + "content": "for each layer first, where", + "type": "text" + }, + { + "bbox": [ + 464, + 95, + 471, + 104 + ], + "score": 0.67, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 93, + 507, + 108 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 105, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 262, + 118 + ], + "score": 1.0, + "content": "the number of nodes in this layer and", + "type": "text" + }, + { + "bbox": [ + 263, + 106, + 286, + 117 + ], + "score": 0.91, + "content": "w _ { i } , b _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 105, + 505, + 118 + ], + "score": 1.0, + "content": "is the income weight vector from previous layer and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 506, + 129 + ], + "score": 1.0, + "content": "the bias of ith node; then we concatenate encoding of layers and obtain the OPR. A illustrative", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 127, + 369, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 369, + 140 + ], + "score": 1.0, + "content": "description for the encoding of OPR is in Figure 12 of Appendix.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 86, + 70, + 507, + 140 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 144, + 506, + 289 + ], + "lines": [ + { + "bbox": [ + 105, + 142, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 227, + 157 + ], + "score": 1.0, + "content": "To train the policy embedding", + "type": "text" + }, + { + "bbox": [ + 228, + 146, + 240, + 155 + ], + "score": 0.86, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 142, + 505, + 157 + ], + "score": 1.0, + "content": "obtained above, the most straightforward way is to backpropagate", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 154, + 507, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 235, + 167 + ], + "score": 1.0, + "content": "the value approximation loss of", + "type": "text" + }, + { + "bbox": [ + 235, + 155, + 266, + 165 + ], + "score": 0.25, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 154, + 339, + 167 + ], + "score": 1.0, + "content": "in an End-to-End", + "type": "text" + }, + { + "bbox": [ + 339, + 155, + 364, + 166 + ], + "score": 0.5, + "content": "( E 2 E )", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 154, + 507, + 167 + ], + "score": 1.0, + "content": "fashion as illustrated on the lower-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 177 + ], + "score": 1.0, + "content": "right of Figure 4. In addition, we provide two self-supervised training losses for both OPR and SPR,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 174, + 506, + 191 + ], + "spans": [ + { + "bbox": [ + 104, + 174, + 506, + 191 + ], + "score": 1.0, + "content": "as illustrated on the upper-right of Figure 4. The first one is an auxiliary loss (AUX) of policy recovery", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 186, + 507, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 301, + 201 + ], + "score": 1.0, + "content": "[14], i.e., to recover the action distributions of", + "type": "text" + }, + { + "bbox": [ + 302, + 189, + 309, + 198 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 186, + 333, + 201 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 334, + 189, + 347, + 199 + ], + "score": 0.85, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 186, + 507, + 201 + ], + "score": 1.0, + "content": "under different states. To be specific,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 197, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 219, + 212 + ], + "score": 1.0, + "content": "an auxiliary policy decoder", + "type": "text" + }, + { + "bbox": [ + 219, + 198, + 261, + 210 + ], + "score": 0.92, + "content": "\\bar { \\pi } ( \\cdot | s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 197, + 506, + 212 + ], + "score": 1.0, + "content": "is trained through behavioral cloning, formally to minimize", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 208, + 507, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 204, + 224 + ], + "score": 1.0, + "content": "cross-entropy objective", + "type": "text" + }, + { + "bbox": [ + 204, + 209, + 336, + 222 + ], + "score": 0.77, + "content": "\\mathcal { L } _ { \\mathrm { A U X } } = - \\mathbb { E } _ { ( s , a ) } \\left[ \\log \\bar { \\pi } ( a | s , \\chi _ { \\pi } ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 208, + 507, + 224 + ], + "score": 1.0, + "content": ". For the second one, we propose to train", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 219, + 507, + 233 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 119, + 232 + ], + "score": 0.84, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 219, + 223, + 233 + ], + "score": 1.0, + "content": "by Contrastive Learning", + "type": "text" + }, + { + "bbox": [ + 223, + 221, + 242, + 231 + ], + "score": 0.54, + "content": "( C L )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 219, + 507, + 233 + ], + "score": 1.0, + "content": "[54, 51]: policies are encouraged to be close to similar ones (i.e.,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 173, + 244 + ], + "score": 1.0, + "content": "positive samples", + "type": "text" + }, + { + "bbox": [ + 173, + 231, + 187, + 241 + ], + "score": 0.86, + "content": "\\pi ^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 230, + 419, + 244 + ], + "score": 1.0, + "content": "), and to be apart from different ones (i.e., negative samples", + "type": "text" + }, + { + "bbox": [ + 419, + 231, + 433, + 241 + ], + "score": 0.86, + "content": "\\pi ^ { - }", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 230, + 506, + 244 + ], + "score": 1.0, + "content": ") in representation", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 255 + ], + "score": 1.0, + "content": "space. For each policy, we construct positive samples by data augmentation on policy data, depending", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "on SPR or OPR considered; and different policies along the policy improvement path naturally", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 98, + 263, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 98, + 265, + 226, + 304 + ], + "score": 1.0, + "content": "the InfoNCE loss [41] below:", + "type": "text" + }, + { + "bbox": [ + 105, + 263, + 359, + 278 + ], + "score": 1.0, + "content": "provide negative samples for each other. Finally, the embedding", + "type": "text" + }, + { + "bbox": [ + 227, + 275, + 473, + 295 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { C L } } = - \\mathbb { E } _ { ( \\pi ^ { + } , \\{ \\pi ^ { - } \\} ) } \\left[ \\log \\frac { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) } { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) + \\sum _ { \\pi ^ { - } } \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { - } } ) } \\right] . } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 265, + 372, + 275 + ], + "score": 0.84, + "content": "\\chi _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 263, + 506, + 278 + ], + "score": 1.0, + "content": "is optimized through minimizing", + "type": "text" + }, + { + "bbox": [ + 473, + 265, + 480, + 304 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 11.5, + "bbox_fs": [ + 98, + 142, + 507, + 304 + ] + }, + { + "type": "text", + "bbox": [ + 102, + 276, + 473, + 295 + ], + "lines": [ + { + "bbox": [ + 102, + 276, + 473, + 295 + ], + "spans": [], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 102, + 276, + 473, + 295 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 298, + 502, + 332 + ], + "lines": [ + { + "bbox": [ + 106, + 299, + 504, + 311 + ], + "spans": [ + { + "bbox": [ + 106, + 299, + 504, + 311 + ], + "score": 1.0, + "content": "Now, the training of policy representation model in Algorithm 1 can be performed with any com-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 308, + 504, + 323 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 504, + 323 + ], + "score": 1.0, + "content": "bination of data sources and training losses provided above. A pseudo-code of the overall policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "representation training framework and complete implementation details are provided in Appendix D.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 299, + 505, + 333 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 346, + 191, + 360 + ], + "lines": [ + { + "bbox": [ + 103, + 344, + 193, + 363 + ], + "spans": [ + { + "bbox": [ + 103, + 344, + 193, + 363 + ], + "score": 1.0, + "content": "5 Experiments", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 108, + 370, + 450, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 450, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 450, + 384 + ], + "score": 1.0, + "content": "In this section, we conduct experimental study with focus on the following questions:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 369, + 450, + 384 + ] + }, + { + "type": "text", + "bbox": [ + 103, + 386, + 499, + 411 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 501, + 400 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 501, + 400 + ], + "score": 1.0, + "content": "Question 1 Can value generalization offered by PeVFA improve a deep RL algorithm in practice?", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 399, + 438, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 399, + 438, + 412 + ], + "score": 1.0, + "content": "Question 2 Can our proposed framework to learn effective policy representation?", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 385, + 501, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 416, + 503, + 439 + ], + "lines": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 505, + 428 + ], + "score": 1.0, + "content": "Our experiments are conducted in several OpenAI Gym continuous control tasks (one from Box2D", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 427, + 495, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 495, + 440 + ], + "score": 1.0, + "content": "and five from MuJoCo) [6, 58]. All experimental details and curves can be found in Appendix B.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 416, + 505, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 443, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Algorithm Implementation. We use PPO [50] as the basic algorithm and propose a representative", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 505, + 466 + ], + "score": 1.0, + "content": "implementation of Algorithm 1, called PPO-PeVFA. PPO is a policy optimization algorithm that", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 378, + 478 + ], + "score": 1.0, + "content": "follows the paradigm of GPI (Figure 1, left). A value network", + "type": "text" + }, + { + "bbox": [ + 378, + 465, + 402, + 477 + ], + "score": 0.92, + "content": "V _ { \\phi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 465, + 475, + 478 + ], + "score": 1.0, + "content": "with parameters", + "type": "text" + }, + { + "bbox": [ + 475, + 466, + 483, + 477 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 476, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 390, + 488 + ], + "score": 1.0, + "content": "conventional VFA) is trained to approximate the value of current policy", + "type": "text" + }, + { + "bbox": [ + 390, + 479, + 397, + 486 + ], + "score": 0.75, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 476, + 425, + 488 + ], + "score": 1.0, + "content": "; while", + "type": "text" + }, + { + "bbox": [ + 426, + 478, + 433, + 486 + ], + "score": 0.76, + "content": "\\pi", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 476, + 505, + 488 + ], + "score": 1.0, + "content": "is optimized with", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 369, + 500 + ], + "score": 1.0, + "content": "respect to a surrogate objective [48] using advantages calculated by", + "type": "text" + }, + { + "bbox": [ + 369, + 488, + 381, + 499 + ], + "score": 0.85, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "and GAE [49]. Compared with", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 277, + 510 + ], + "score": 1.0, + "content": "original PPO, PPO-PeVFA makes use of a", + "type": "text" + }, + { + "bbox": [ + 277, + 498, + 308, + 509 + ], + "score": 0.43, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 497, + 343, + 510 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 344, + 498, + 385, + 510 + ], + "score": 0.93, + "content": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 497, + 452, + 510 + ], + "score": 1.0, + "content": "with parameters", + "type": "text" + }, + { + "bbox": [ + 452, + 498, + 459, + 508 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 196, + 522 + ], + "score": 1.0, + "content": "the conventional VFA", + "type": "text" + }, + { + "bbox": [ + 196, + 509, + 221, + 521 + ], + "score": 0.9, + "content": "V _ { \\phi } ( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 509, + 506, + 522 + ], + "score": 1.0, + "content": ", and follows the training scheme as in Algorithm 1. Note PPO-PeVFA", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 519, + 504, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 504, + 533 + ], + "score": 1.0, + "content": "uses the same policy optimization method as original PPO and only differs at value approximation.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 443, + 506, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 88, + 536, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 506, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 548 + ], + "score": 1.0, + "content": "Baselines and Variants. Except for original PPO as a default baseline, we use another two baselines:", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 104, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "1) PPO-PeVFA with randomly generated policy representation for each policy, denoted by Ran PR;", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 572 + ], + "score": 1.0, + "content": "2) PPO-PeVFA with Raw Policy Representation (RPR), i.e., use the vector of all parameters of policy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 567, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 104, + 567, + 506, + 583 + ], + "score": 1.0, + "content": "network as representation as adopted in PVFs [10]. Our variants of PPO-PeVFA differ at the policy", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "representation used. In total, we consider 6 variants denoted by the combination of the policy data", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 591, + 441, + 603 + ], + "spans": [ + { + "bbox": [ + 104, + 591, + 441, + 603 + ], + "score": 1.0, + "content": "choice (i.e., OPR, SPR) and representation principle choice (i.e., E2E, CL, AUX).", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38.5, + "bbox_fs": [ + 104, + 536, + 506, + 603 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 606, + 505, + 695 + ], + "lines": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 505, + 620 + ], + "score": 1.0, + "content": "Experimental Details. For all baselines and variants, we use a normal-scale policy network with", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 328, + 631 + ], + "score": 1.0, + "content": "2 layers and 64 units for each layer, resulting in over", + "type": "text" + }, + { + "bbox": [ + 328, + 618, + 340, + 628 + ], + "score": 0.5, + "content": "3 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "to 10k (e.g., Ant-v1) policy parameters", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "score": 1.0, + "content": "depending on the environments. We do not assume the access to pre-collected policies. Thus the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 506, + 652 + ], + "score": 1.0, + "content": "size of policy set increases from 1 (i.e., the initial policy) during the learning process, to about 1k to", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 649, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 649, + 506, + 664 + ], + "score": 1.0, + "content": "2 for a single trial. The dimensionality of all kinds of policy representation expect for RPR is set", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 180, + 674 + ], + "score": 1.0, + "content": "to 64. The buffer", + "type": "text" + }, + { + "bbox": [ + 180, + 662, + 190, + 672 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 662, + 262, + 674 + ], + "score": 1.0, + "content": "maintains recent", + "type": "text" + }, + { + "bbox": [ + 262, + 662, + 284, + 672 + ], + "score": 0.62, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "steps of interaction experience and the policy data of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 506, + 685 + ], + "score": 1.0, + "content": "corresponding policy. The number of interaction step of each trial is 1M for InvDouPend-v1 and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 683, + 329, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 329, + 695 + ], + "score": 1.0, + "content": "LunarLander-v2, 4M for Ant-v1 and 2M for the others.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 45.5, + "bbox_fs": [ + 104, + 606, + 506, + 695 + ] + }, + { + "type": "text", + "bbox": [ + 101, + 699, + 503, + 722 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 504, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 504, + 712 + ], + "score": 1.0, + "content": "Results. The overall experimental results are summarized in Table 1. In Figure 5, we provide", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 711, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 506, + 724 + ], + "score": 1.0, + "content": "aggregated results across all environments expect for InvDouPend-v1 and LunarLander-v2 (since", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 50.5, + "bbox_fs": [ + 105, + 699, + 506, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 109, + 99, + 500, + 162 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 76, + 503, + 98 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 76, + 505, + 88 + ], + "spans": [ + { + "bbox": [ + 106, + 76, + 213, + 88 + ], + "score": 1.0, + "content": "Table 1: Average returns", + "type": "text" + }, + { + "bbox": [ + 214, + 77, + 223, + 87 + ], + "score": 0.7, + "content": "\\pm", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 76, + 505, + 88 + ], + "score": 1.0, + "content": "half a std) over 10 trials for algorithms. Each result is the maximum", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 87, + 446, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 87, + 446, + 99 + ], + "score": 1.0, + "content": "evaluation along the training process. Top two values for each environment are bold.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 109, + 99, + 500, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 99, + 500, + 162 + ], + "spans": [ + { + "bbox": [ + 109, + 99, + 500, + 162 + ], + "score": 0.976, + "html": "
EnvironmentsBenchmarksOrigin Policy Representation (Ours)Surface Policy Representation (Ours)
PPORan PRRPRE2ECLAUXE2ECLAUX
HalfCheetah-v1262124702325 ± 399.273171 ± 427.633725±348.553175±517.522774 ± 233.393349 ± 341.423216 ± 506.39
Hopper-v1163912261097 ± 213.472085 ± 310.912351 ± 231.112214 ± 360.782227 ± 297.352392 ± 263.932577 ± 217.73
Walker2d-v115051269317 ± 152.681856 ± 305.512038 ± 315.512044 ±316.321930.57 ± 456.022203 ± 381.951980 ± 325.54
Ant-v1283527422143 ± 406.643581 ± 185.434019 ± 162.473784 ± 268.993173 ± 184.753632 ± 134.273397 ± 200.03
InvDouPend-v1934493558856 ± 551.909357 ± 0.299355±0.649355±0.689355±0.899356±0.969355 ±1.42
LunarLander-v2219226-22±35.08238±3.37239 ± 3.70234 ± 3.47236± 3.13234 ± 3.13235±5.70
", + "type": "table", + "image_path": "2125a2c16d17e54a10aa09e7c215769e93511cfbf83fbbc503336bf666b4462b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 109, + 99, + 500, + 120.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 109, + 120.0, + 500, + 141.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 109, + 141.0, + 500, + 162.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 93, + 172, + 504, + 194 + ], + "lines": [ + { + "bbox": [ + 91, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 91, + 175, + 99, + 183 + ], + "score": 1.0, + "content": "28", + "type": "text" + }, + { + "bbox": [ + 104, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "most algorithms achieve near-optimal results), where all returns are normalized by the results of PPO", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 91, + 182, + 421, + 195 + ], + "spans": [ + { + "bbox": [ + 91, + 186, + 100, + 193 + ], + "score": 1.0, + "content": "29", + "type": "text" + }, + { + "bbox": [ + 103, + 182, + 421, + 195 + ], + "score": 1.0, + "content": "in Table 1. Full learning curves are omitted and can be found in Appendix F.2.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 337, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 338, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 338, + 210 + ], + "score": 1.0, + "content": "To Question 1. From Table 1, we can find that both PPO-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "score": 1.0, + "content": "PeVFA w/ OPR (E2E) and PPO-PeVFA w/ SPR (E2E)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 221, + 336, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 316, + 232 + ], + "score": 1.0, + "content": "outperforms PPO in all 6 tasks, and achieve over", + "type": "text" + }, + { + "bbox": [ + 316, + 221, + 336, + 232 + ], + "score": 0.84, + "content": "20 \\%", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 232, + 338, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 338, + 244 + ], + "score": 1.0, + "content": "improvement in Figure 5. This demonstrates the effec-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 243, + 338, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 151, + 255 + ], + "score": 1.0, + "content": "tiveness of", + "type": "text" + }, + { + "bbox": [ + 151, + 243, + 181, + 254 + ], + "score": 0.26, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 243, + 338, + 255 + ], + "score": 1.0, + "content": ". Moreover, the improvement is further", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 254, + 337, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 183, + 266 + ], + "score": 1.0, + "content": "enlarged (to about", + "type": "text" + }, + { + "bbox": [ + 183, + 254, + 204, + 265 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 254, + 337, + 266 + ], + "score": 1.0, + "content": ") by CL and AUX for both OPR", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 264, + 336, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 336, + 277 + ], + "score": 1.0, + "content": "and SPR. This indicates that the superiority of PeVFA can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 275, + 337, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 337, + 288 + ], + "score": 1.0, + "content": "be further utilized with better policy representation that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 286, + 319, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 319, + 299 + ], + "score": 1.0, + "content": "offers a more suitable space for value generalization.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "image", + "bbox": [ + 353, + 204, + 495, + 312 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 353, + 204, + 495, + 312 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 353, + 204, + 495, + 312 + ], + "spans": [ + { + "bbox": [ + 353, + 204, + 495, + 312 + ], + "score": 0.966, + "type": "image", + "image_path": "20a85c9161cb7eeda14c0b97ac6b6838b2911bc0a0e66da144a476b8c3115d94.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 353, + 204, + 495, + 258.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 353, + 258.0, + 495, + 312.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 318, + 505, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 343, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Figure 5: Normalized averaged returns", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 344, + 329, + 479, + 341 + ], + "spans": [ + { + "bbox": [ + 344, + 329, + 479, + 341 + ], + "score": 1.0, + "content": "aggregated over 4 MuJoCo tasks.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 26.5 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 105, + 303, + 336, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 337, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 337, + 315 + ], + "score": 1.0, + "content": "To Question 2. In Table 1, consistent degeneration is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 312, + 338, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 338, + 327 + ], + "score": 1.0, + "content": "observed for PPO-PeVFA w/ Ran PR due to the nega-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 325, + 337, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 337, + 337 + ], + "score": 1.0, + "content": "tive effects on generalization caused by the randomness", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 336, + 337, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 337, + 348 + ], + "score": 1.0, + "content": "and disorder of policy representation. This phenomenon", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 337, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 337, + 359 + ], + "score": 1.0, + "content": "seems to be more severe for PPO-PeVFA w/ RPR due", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 357, + 338, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 338, + 371 + ], + "score": 1.0, + "content": "to the complexity of high-dimensional parameter space.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 338, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 338, + 381 + ], + "score": 1.0, + "content": "In contrast, the improvement achieved by our proposed", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 379, + 338, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 338, + 392 + ], + "score": 1.0, + "content": "PPO-PeVFA variants shows that effective policy repre-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 338, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 338, + 403 + ], + "score": 1.0, + "content": "sentation can be learned from policy parameters (OPR)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 402, + 338, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 338, + 414 + ], + "score": 1.0, + "content": "and state-action pairs (SPR) though value approximation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 412, + 339, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 339, + 424 + ], + "score": 1.0, + "content": "loss (i.e., E2E) and further improved when additional self-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 424, + 337, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 337, + 434 + ], + "score": 1.0, + "content": "supervised representation learning is involved as CL and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 434, + 337, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 337, + 446 + ], + "score": 1.0, + "content": "AUX. Overall, OPR slightly outperforms SPR as CL does", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 446, + 338, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 338, + 457 + ], + "score": 1.0, + "content": "over AUX. We hypothesize that it is due to the stochas-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 456, + 337, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 337, + 468 + ], + "score": 1.0, + "content": "ticity of state-action pairs which serve as inputs of SPR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 467, + 337, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 337, + 478 + ], + "score": 1.0, + "content": "and training samples for AUX. This reveals the space for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 478, + 336, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 336, + 489 + ], + "score": 1.0, + "content": "future improvement. In addition, we visualize the learned", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 488, + 338, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 338, + 501 + ], + "score": 1.0, + "content": "representation in Figure 6. We can observe that policies", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 500, + 338, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 338, + 511 + ], + "score": 1.0, + "content": "from different trials are locally continuous and show dif-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 510, + 337, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 337, + 522 + ], + "score": 1.0, + "content": "ferent modes of embedding trajectories due to random", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 521, + 336, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 336, + 534 + ], + "score": 1.0, + "content": "initialization and optimization; while a global evolvement", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 533, + 338, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 338, + 545 + ], + "score": 1.0, + "content": "among trials emerges with respect to policy performance.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 30.5 + }, + { + "type": "image", + "bbox": [ + 357, + 348, + 494, + 455 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 357, + 348, + 494, + 455 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 357, + 348, + 494, + 455 + ], + "spans": [ + { + "bbox": [ + 357, + 348, + 494, + 455 + ], + "score": 0.97, + "type": "image", + "image_path": "ac8c916c244115b54aef4064f061a500686eb8885bd22f7a8cd07c919cc350ea.jpg" + } + ] + } + ], + "index": 38.0, + "virtual_lines": [ + { + "bbox": [ + 357, + 348, + 494, + 401.5 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 357, + 401.5, + 494, + 455.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 465, + 505, + 531 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 343, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 343, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "Figure 6: A t-SNE visualization for", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 343, + 476, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 343, + 476, + 505, + 487 + ], + "score": 1.0, + "content": "representations learned by PPO-PeVFA", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 343, + 487, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 343, + 487, + 506, + 498 + ], + "score": 1.0, + "content": "OPR (E2E) in Ant-v1. In total, 6k poli-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 343, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 343, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "cies from 5 trials (denoted by different", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 343, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 343, + 508, + 506, + 520 + ], + "score": 1.0, + "content": "markers) are plotted, which are colored", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 344, + 520, + 458, + 532 + ], + "spans": [ + { + "bbox": [ + 344, + 520, + 458, + 532 + ], + "score": 1.0, + "content": "according to average return.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5 + } + ], + "index": 42.25 + }, + { + "type": "title", + "bbox": [ + 94, + 560, + 275, + 574 + ], + "lines": [ + { + "bbox": [ + 92, + 559, + 276, + 575 + ], + "spans": [ + { + "bbox": [ + 92, + 559, + 276, + 575 + ], + "score": 1.0, + "content": "61 6 Conclusion and Future Work", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "In this paper, we propose Policy-extended Value Function Approximator (PeVFA) and study value", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "generalization among policies. We propose a new form of GPI based on PeVFA which is potentially", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "preferable to conventional VFA for value approximation. Moreover, we propose a general framework", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "to learn low-dimensional embedding of RL policy. Our experiments demonstrate the effectiveness of", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 245, + 642 + ], + "score": 1.0, + "content": "the generalization characteristic of", + "type": "text" + }, + { + "bbox": [ + 245, + 629, + 276, + 640 + ], + "score": 0.25, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "and our proposed policy representation learning methods.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 53 + }, + { + "type": "text", + "bbox": [ + 105, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "Our work opens up some research directions on value generalization among policies and policy", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "representation. A possible future study on the theory of value generalization among policies is to", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "consider the interplay between approximation error, policy improvement and local generalization", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "during GPI with PeVFA. Besides, analysis on influence factors of value generalization among policies", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 276, + 702 + ], + "score": 1.0, + "content": "(e.g., policy representation, architecture of", + "type": "text" + }, + { + "bbox": [ + 276, + 689, + 307, + 699 + ], + "score": 0.32, + "content": "{ \\mathrm { P e V F A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 688, + 403, + 702 + ], + "score": 1.0, + "content": ") and other utilization of", + "type": "text" + }, + { + "bbox": [ + 403, + 689, + 433, + 699 + ], + "score": 0.43, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "are expected. For", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "better policy representation, inspirations on OPR may be got from studies on Manifold Hypothesis of", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 106, + 711, + 502, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 502, + 722 + ], + "score": 1.0, + "content": "neural network; the selection of more informative state-action pairs for SPR is also worth research.", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 59 + } + ], + "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": [ + 109, + 99, + 500, + 162 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 76, + 503, + 98 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 76, + 505, + 88 + ], + "spans": [ + { + "bbox": [ + 106, + 76, + 213, + 88 + ], + "score": 1.0, + "content": "Table 1: Average returns", + "type": "text" + }, + { + "bbox": [ + 214, + 77, + 223, + 87 + ], + "score": 0.7, + "content": "\\pm", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 76, + 505, + 88 + ], + "score": 1.0, + "content": "half a std) over 10 trials for algorithms. Each result is the maximum", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 87, + 446, + 99 + ], + "spans": [ + { + "bbox": [ + 106, + 87, + 446, + 99 + ], + "score": 1.0, + "content": "evaluation along the training process. Top two values for each environment are bold.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 109, + 99, + 500, + 162 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 99, + 500, + 162 + ], + "spans": [ + { + "bbox": [ + 109, + 99, + 500, + 162 + ], + "score": 0.976, + "html": "
EnvironmentsBenchmarksOrigin Policy Representation (Ours)Surface Policy Representation (Ours)
PPORan PRRPRE2ECLAUXE2ECLAUX
HalfCheetah-v1262124702325 ± 399.273171 ± 427.633725±348.553175±517.522774 ± 233.393349 ± 341.423216 ± 506.39
Hopper-v1163912261097 ± 213.472085 ± 310.912351 ± 231.112214 ± 360.782227 ± 297.352392 ± 263.932577 ± 217.73
Walker2d-v115051269317 ± 152.681856 ± 305.512038 ± 315.512044 ±316.321930.57 ± 456.022203 ± 381.951980 ± 325.54
Ant-v1283527422143 ± 406.643581 ± 185.434019 ± 162.473784 ± 268.993173 ± 184.753632 ± 134.273397 ± 200.03
InvDouPend-v1934493558856 ± 551.909357 ± 0.299355±0.649355±0.689355±0.899356±0.969355 ±1.42
LunarLander-v2219226-22±35.08238±3.37239 ± 3.70234 ± 3.47236± 3.13234 ± 3.13235±5.70
", + "type": "table", + "image_path": "2125a2c16d17e54a10aa09e7c215769e93511cfbf83fbbc503336bf666b4462b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 109, + 99, + 500, + 120.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 109, + 120.0, + 500, + 141.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 109, + 141.0, + 500, + 162.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "index", + "bbox": [ + 93, + 172, + 504, + 194 + ], + "lines": [ + { + "bbox": [ + 91, + 172, + 505, + 184 + ], + "spans": [ + { + "bbox": [ + 91, + 175, + 99, + 183 + ], + "score": 1.0, + "content": "28", + "type": "text" + }, + { + "bbox": [ + 104, + 172, + 505, + 184 + ], + "score": 1.0, + "content": "most algorithms achieve near-optimal results), where all returns are normalized by the results of PPO", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 91, + 182, + 421, + 195 + ], + "spans": [ + { + "bbox": [ + 91, + 186, + 100, + 193 + ], + "score": 1.0, + "content": "29", + "type": "text" + }, + { + "bbox": [ + 103, + 182, + 421, + 195 + ], + "score": 1.0, + "content": "in Table 1. Full learning curves are omitted and can be found in Appendix F.2.", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + } + ], + "index": 5.5, + "bbox_fs": [ + 91, + 172, + 505, + 195 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 337, + 298 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 338, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 338, + 210 + ], + "score": 1.0, + "content": "To Question 1. From Table 1, we can find that both PPO-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 338, + 222 + ], + "score": 1.0, + "content": "PeVFA w/ OPR (E2E) and PPO-PeVFA w/ SPR (E2E)", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 221, + 336, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 316, + 232 + ], + "score": 1.0, + "content": "outperforms PPO in all 6 tasks, and achieve over", + "type": "text" + }, + { + "bbox": [ + 316, + 221, + 336, + 232 + ], + "score": 0.84, + "content": "20 \\%", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 232, + 338, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 232, + 338, + 244 + ], + "score": 1.0, + "content": "improvement in Figure 5. This demonstrates the effec-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 243, + 338, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 151, + 255 + ], + "score": 1.0, + "content": "tiveness of", + "type": "text" + }, + { + "bbox": [ + 151, + 243, + 181, + 254 + ], + "score": 0.26, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 243, + 338, + 255 + ], + "score": 1.0, + "content": ". Moreover, the improvement is further", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 254, + 337, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 183, + 266 + ], + "score": 1.0, + "content": "enlarged (to about", + "type": "text" + }, + { + "bbox": [ + 183, + 254, + 204, + 265 + ], + "score": 0.85, + "content": "40 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 254, + 337, + 266 + ], + "score": 1.0, + "content": ") by CL and AUX for both OPR", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 264, + 336, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 336, + 277 + ], + "score": 1.0, + "content": "and SPR. This indicates that the superiority of PeVFA can", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 275, + 337, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 337, + 288 + ], + "score": 1.0, + "content": "be further utilized with better policy representation that", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 286, + 319, + 299 + ], + "spans": [ + { + "bbox": [ + 106, + 286, + 319, + 299 + ], + "score": 1.0, + "content": "offers a more suitable space for value generalization.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 199, + 338, + 299 + ] + }, + { + "type": "image", + "bbox": [ + 353, + 204, + 495, + 312 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 353, + 204, + 495, + 312 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 353, + 204, + 495, + 312 + ], + "spans": [ + { + "bbox": [ + 353, + 204, + 495, + 312 + ], + "score": 0.966, + "type": "image", + "image_path": "20a85c9161cb7eeda14c0b97ac6b6838b2911bc0a0e66da144a476b8c3115d94.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 353, + 204, + 495, + 258.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 353, + 258.0, + 495, + 312.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 318, + 505, + 340 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 343, + 317, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 343, + 317, + 505, + 330 + ], + "score": 1.0, + "content": "Figure 5: Normalized averaged returns", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 344, + 329, + 479, + 341 + ], + "spans": [ + { + "bbox": [ + 344, + 329, + 479, + 341 + ], + "score": 1.0, + "content": "aggregated over 4 MuJoCo tasks.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 26.5 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 105, + 303, + 336, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 302, + 337, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 337, + 315 + ], + "score": 1.0, + "content": "To Question 2. In Table 1, consistent degeneration is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 312, + 338, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 338, + 327 + ], + "score": 1.0, + "content": "observed for PPO-PeVFA w/ Ran PR due to the nega-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 325, + 337, + 337 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 337, + 337 + ], + "score": 1.0, + "content": "tive effects on generalization caused by the randomness", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 336, + 337, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 337, + 348 + ], + "score": 1.0, + "content": "and disorder of policy representation. This phenomenon", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 347, + 337, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 337, + 359 + ], + "score": 1.0, + "content": "seems to be more severe for PPO-PeVFA w/ RPR due", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 357, + 338, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 357, + 338, + 371 + ], + "score": 1.0, + "content": "to the complexity of high-dimensional parameter space.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 369, + 338, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 338, + 381 + ], + "score": 1.0, + "content": "In contrast, the improvement achieved by our proposed", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 379, + 338, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 338, + 392 + ], + "score": 1.0, + "content": "PPO-PeVFA variants shows that effective policy repre-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 338, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 338, + 403 + ], + "score": 1.0, + "content": "sentation can be learned from policy parameters (OPR)", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 402, + 338, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 338, + 414 + ], + "score": 1.0, + "content": "and state-action pairs (SPR) though value approximation", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 412, + 339, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 339, + 424 + ], + "score": 1.0, + "content": "loss (i.e., E2E) and further improved when additional self-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 424, + 337, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 337, + 434 + ], + "score": 1.0, + "content": "supervised representation learning is involved as CL and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 434, + 337, + 446 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 337, + 446 + ], + "score": 1.0, + "content": "AUX. Overall, OPR slightly outperforms SPR as CL does", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 446, + 338, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 338, + 457 + ], + "score": 1.0, + "content": "over AUX. We hypothesize that it is due to the stochas-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 456, + 337, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 337, + 468 + ], + "score": 1.0, + "content": "ticity of state-action pairs which serve as inputs of SPR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 467, + 337, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 337, + 478 + ], + "score": 1.0, + "content": "and training samples for AUX. This reveals the space for", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 478, + 336, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 336, + 489 + ], + "score": 1.0, + "content": "future improvement. In addition, we visualize the learned", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 488, + 338, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 338, + 501 + ], + "score": 1.0, + "content": "representation in Figure 6. We can observe that policies", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 500, + 338, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 338, + 511 + ], + "score": 1.0, + "content": "from different trials are locally continuous and show dif-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 510, + 337, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 510, + 337, + 522 + ], + "score": 1.0, + "content": "ferent modes of embedding trajectories due to random", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 521, + 336, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 336, + 534 + ], + "score": 1.0, + "content": "initialization and optimization; while a global evolvement", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 533, + 338, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 338, + 545 + ], + "score": 1.0, + "content": "among trials emerges with respect to policy performance.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 302, + 339, + 545 + ] + }, + { + "type": "image", + "bbox": [ + 357, + 348, + 494, + 455 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 357, + 348, + 494, + 455 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 357, + 348, + 494, + 455 + ], + "spans": [ + { + "bbox": [ + 357, + 348, + 494, + 455 + ], + "score": 0.97, + "type": "image", + "image_path": "ac8c916c244115b54aef4064f061a500686eb8885bd22f7a8cd07c919cc350ea.jpg" + } + ] + } + ], + "index": 38.0, + "virtual_lines": [ + { + "bbox": [ + 357, + 348, + 494, + 401.5 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 357, + 401.5, + 494, + 455.0 + ], + "spans": [], + "index": 43 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 344, + 465, + 505, + 531 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 343, + 464, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 343, + 464, + 506, + 477 + ], + "score": 1.0, + "content": "Figure 6: A t-SNE visualization for", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 343, + 476, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 343, + 476, + 505, + 487 + ], + "score": 1.0, + "content": "representations learned by PPO-PeVFA", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 343, + 487, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 343, + 487, + 506, + 498 + ], + "score": 1.0, + "content": "OPR (E2E) in Ant-v1. In total, 6k poli-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 343, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 343, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "cies from 5 trials (denoted by different", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 343, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 343, + 508, + 506, + 520 + ], + "score": 1.0, + "content": "markers) are plotted, which are colored", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 344, + 520, + 458, + 532 + ], + "spans": [ + { + "bbox": [ + 344, + 520, + 458, + 532 + ], + "score": 1.0, + "content": "according to average return.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 46.5 + } + ], + "index": 42.25 + }, + { + "type": "title", + "bbox": [ + 94, + 560, + 275, + 574 + ], + "lines": [ + { + "bbox": [ + 92, + 559, + 276, + 575 + ], + "spans": [ + { + "bbox": [ + 92, + 559, + 276, + 575 + ], + "score": 1.0, + "content": "61 6 Conclusion and Future Work", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 50 + }, + { + "type": "text", + "bbox": [ + 106, + 585, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 597 + ], + "score": 1.0, + "content": "In this paper, we propose Policy-extended Value Function Approximator (PeVFA) and study value", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 506, + 609 + ], + "score": 1.0, + "content": "generalization among policies. We propose a new form of GPI based on PeVFA which is potentially", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 106, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "preferable to conventional VFA for value approximation. Moreover, we propose a general framework", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 631 + ], + "score": 1.0, + "content": "to learn low-dimensional embedding of RL policy. Our experiments demonstrate the effectiveness of", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 245, + 642 + ], + "score": 1.0, + "content": "the generalization characteristic of", + "type": "text" + }, + { + "bbox": [ + 245, + 629, + 276, + 640 + ], + "score": 0.25, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "and our proposed policy representation learning methods.", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 53, + "bbox_fs": [ + 105, + 586, + 506, + 642 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 645, + 505, + 722 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 659 + ], + "score": 1.0, + "content": "Our work opens up some research directions on value generalization among policies and policy", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "representation. A possible future study on the theory of value generalization among policies is to", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 681 + ], + "score": 1.0, + "content": "consider the interplay between approximation error, policy improvement and local generalization", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 691 + ], + "score": 1.0, + "content": "during GPI with PeVFA. Besides, analysis on influence factors of value generalization among policies", + "type": "text" + } + ], + "index": 59 + }, + { + "bbox": [ + 105, + 688, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 276, + 702 + ], + "score": 1.0, + "content": "(e.g., policy representation, architecture of", + "type": "text" + }, + { + "bbox": [ + 276, + 689, + 307, + 699 + ], + "score": 0.32, + "content": "{ \\mathrm { P e V F A } }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 688, + 403, + 702 + ], + "score": 1.0, + "content": ") and other utilization of", + "type": "text" + }, + { + "bbox": [ + 403, + 689, + 433, + 699 + ], + "score": 0.43, + "content": "\\mathrm { P e V F A }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 688, + 506, + 702 + ], + "score": 1.0, + "content": "are expected. For", + "type": "text" + } + ], + "index": 60 + }, + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 505, + 712 + ], + "score": 1.0, + "content": "better policy representation, inspirations on OPR may be got from studies on Manifold Hypothesis of", + "type": "text" + } + ], + "index": 61 + }, + { + "bbox": [ + 106, + 711, + 502, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 502, + 722 + ], + "score": 1.0, + "content": "neural network; the selection of more informative state-action pairs for SPR is also worth research.", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 59, + "bbox_fs": [ + 105, + 644, + 506, + 722 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 87, + 71, + 164, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 103, + 84, + 507, + 726 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 101 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 101 + ], + "score": 1.0, + "content": "[1] M. Andrychowicz, D. Crow, A. Ray, J. Schneider, R. Fong, P. Welinder, B. McGrew, J. Tobin, P. Abbeel,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 125, + 99, + 433, + 112 + ], + "spans": [ + { + "bbox": [ + 125, + 99, + 433, + 112 + ], + "score": 1.0, + "content": "and W. Zaremba. Hindsight experience replay. In NeurIPS, pages 5048–5058, 2017.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 108, + 115, + 507, + 130 + ], + "spans": [ + { + "bbox": [ + 108, + 115, + 507, + 130 + ], + "score": 1.0, + "content": "[2] M. Andrychowicz, A. Raichuk, P. Stanczyk, M. Orsini, S. Girgin, R. Marinier, L. Hussenot, M. Geist,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 124, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 124, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "O. Pietquin, M. Michalski, S. Gelly, and O. Bachem. What matters in on-policy reinforcement learning? A", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 125, + 136, + 338, + 149 + ], + "spans": [ + { + "bbox": [ + 125, + 136, + 338, + 149 + ], + "score": 1.0, + "content": "large-scale empirical study. CoRR, abs/2006.05990, 2020.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "[3] I. Arnekvist, D. Kragic, and J. A. Stork. VPE: variational policy embedding for transfer reinforcement", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 125, + 164, + 269, + 177 + ], + "spans": [ + { + "bbox": [ + 125, + 164, + 269, + 177 + ], + "score": 1.0, + "content": "learning. In ICRA, pages 36–42, 2019.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 109, + 180, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 109, + 180, + 507, + 196 + ], + "score": 1.0, + "content": "[4] M. G. Bellemare, W. Dabney, and R. Munos. A distributional perspective on reinforcement learning. In", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 126, + 191, + 276, + 203 + ], + "spans": [ + { + "bbox": [ + 126, + 191, + 276, + 203 + ], + "score": 1.0, + "content": "ICML, volume 70, pages 449–458, 2017.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 110, + 209, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 110, + 209, + 507, + 222 + ], + "score": 1.0, + "content": "[5] D. P. Bertsekas and J. N. Tsitsiklis. Neuro-dynamic programming, volume 3 of Optimization and neural", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 219, + 223, + 231 + ], + "spans": [ + { + "bbox": [ + 126, + 219, + 223, + 231 + ], + "score": 1.0, + "content": "computation series. 1996.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 109, + 236, + 507, + 250 + ], + "spans": [ + { + "bbox": [ + 109, + 236, + 507, + 250 + ], + "score": 1.0, + "content": "[6] G. Brockman, V. Cheung, L. Pettersson, J. Schneider, J. Schulman, J. Tang, and W. Zaremba. Openai gym.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 126, + 247, + 236, + 258 + ], + "spans": [ + { + "bbox": [ + 126, + 247, + 236, + 258 + ], + "score": 1.0, + "content": "CoRR, abs/1606.01540, 2016.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 110, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 110, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "[7] T. Chen, S. Kornblith, M. Norouzi, and G. E. Hinton. A simple framework for contrastive learning of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 275, + 321, + 286 + ], + "spans": [ + { + "bbox": [ + 126, + 275, + 321, + 286 + ], + "score": 1.0, + "content": "visual representations. CoRR, abs/2002.05709, 2020.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 110, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "[8] L. Engstrom, A. Ilyas, S. Santurkar, D. Tsipras, F. Janoos, L. Rudolph, and A. Madry. Implementation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 126, + 302, + 378, + 313 + ], + "spans": [ + { + "bbox": [ + 126, + 302, + 378, + 313 + ], + "score": 1.0, + "content": "matters in deep RL: A case study on PPO and TRPO. In ICLR, 2020.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 108, + 317, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 108, + 317, + 506, + 333 + ], + "score": 1.0, + "content": "[9] B. Eysenbach, X. Geng, S. Levine, and R. R. Salakhutdinov. Rewriting history with inverse RL: hindsight", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 125, + 329, + 321, + 343 + ], + "spans": [ + { + "bbox": [ + 125, + 329, + 321, + 343 + ], + "score": 1.0, + "content": "inference for policy improvement. In NeurIPS, 2020.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 347, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 469, + 358 + ], + "score": 1.0, + "content": "[10] F. Faccio and J. Schmidhuber. Parameter-based value functions. CoRR, abs/2006.09226, 2020.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 363, + 507, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 507, + 377 + ], + "score": 1.0, + "content": "[11] H. Fu, H. Tang, J. Hao, C. Chen, X. Feng, D. Li, and W. Liu. Towards effective context for meta-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 125, + 374, + 479, + 388 + ], + "spans": [ + { + "bbox": [ + 125, + 374, + 479, + 388 + ], + "score": 1.0, + "content": "reinforcement learning: an approach based on contrastive learning. CoRR, abs/2009.13891, 2020.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 393, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 404 + ], + "score": 1.0, + "content": "[12] S. Fujimoto, H. v. Hoof, and D. Meger. Addressing function approximation error in actor-critic methods.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 126, + 402, + 185, + 414 + ], + "spans": [ + { + "bbox": [ + 126, + 402, + 185, + 414 + ], + "score": 1.0, + "content": "In ICML, 2018.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "[13] A. Gaier, A. Asteroth, and J. Mouret. Discovering representations for black-box optimization. In GECCO,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 124, + 429, + 209, + 441 + ], + "spans": [ + { + "bbox": [ + 124, + 429, + 209, + 441 + ], + "score": 1.0, + "content": "pages 103–111, 2020.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "[14] A. Grover, M. Al-Shedivat, J. K. Gupta, Y. Burda, and H. Edwards. Learning policy representations in", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 124, + 455, + 370, + 469 + ], + "spans": [ + { + "bbox": [ + 124, + 455, + 370, + 469 + ], + "score": 1.0, + "content": "multiagent systems. In ICML, volume 80, pages 1797–1806, 2018.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 472, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 472, + 506, + 488 + ], + "score": 1.0, + "content": "[15] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 124, + 484, + 421, + 496 + ], + "spans": [ + { + "bbox": [ + 124, + 484, + 421, + 496 + ], + "score": 1.0, + "content": "reinforcement learning with a stochastic actor. In ICML, pages 1856–1865, 2018.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "[16] D. Hafner, T. P. Lillicrap, J. Ba, and M. Norouzi. Dream to control: Learning behaviors by latent", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 126, + 512, + 231, + 523 + ], + "spans": [ + { + "bbox": [ + 126, + 512, + 231, + 523 + ], + "score": 1.0, + "content": "imagination. In ICLR, 2020.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 529, + 501, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 501, + 541 + ], + "score": 1.0, + "content": "[17] J. Harb, T. Schaul, D. Precup, and P. Bacon. Policy evaluation networks. CoRR, abs/2002.11833, 2020.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "[18] K. Hausman, J. Tobias Springenberg, Z. Wang, N. Heess, and M. A. Riedmiller. Learning an embedding", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 125, + 556, + 309, + 569 + ], + "spans": [ + { + "bbox": [ + 125, + 556, + 309, + 569 + ], + "score": 1.0, + "content": "space for transferable robot skills. In ICLR, 2018.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 575, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 586 + ], + "score": 1.0, + "content": "[19] H. He and J. L. Boyd-Graber. Opponent modeling in deep reinforcement learning. In ICML, volume 48,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 124, + 584, + 217, + 596 + ], + "spans": [ + { + "bbox": [ + 124, + 584, + 217, + 596 + ], + "score": 1.0, + "content": "pages 1804–1813, 2016.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "[20] K. He, H. Fan, Y. Wu, S. Xie, and R. B. Girshick. Momentum contrast for unsupervised visual representation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 126, + 611, + 289, + 625 + ], + "spans": [ + { + "bbox": [ + 126, + 611, + 289, + 625 + ], + "score": 1.0, + "content": "learning. In CVPR, pages 9726–9735, 2020.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "[21] M. Igl, G. Farquhar, J. Luketina, W. Boehmer, and S. Whiteson. The impact of non-stationarity on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 123, + 638, + 406, + 652 + ], + "spans": [ + { + "bbox": [ + 123, + 638, + 406, + 652 + ], + "score": 1.0, + "content": "generalisation in deep reinforcement learning. CoRR, abs/2006.05826, 2020.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "[22] N. S. Keskar, D. Mudigere, J. Nocedal, M. Smelyanskiy, and P. T. P. Tang. On large-batch training for", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 125, + 666, + 378, + 680 + ], + "spans": [ + { + "bbox": [ + 125, + 666, + 378, + 680 + ], + "score": 1.0, + "content": "deep learning: Generalization gap and sharp minima. In ICLR, 2017.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 684, + 417, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 417, + 698 + ], + "score": 1.0, + "content": "[23] D. P. Kingma and M. Welling. Auto-encoding variational bayes. In ICLR, 2014.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 701, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 714 + ], + "score": 1.0, + "content": "[24] I. Kostrikov, D. Yarats, and R. Fergus. Image augmentation is all you need: Regularizing deep reinforcement", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 125, + 711, + 316, + 724 + ], + "spans": [ + { + "bbox": [ + 125, + 711, + 316, + 724 + ], + "score": 1.0, + "content": "learning from pixels. CoRR, abs/2004.13649, 2020.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 23.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 85, + 77, + 103, + 732 + ], + "lines": [ + { + "bbox": [ + 83, + 73, + 101, + 87 + ], + "spans": [ + { + "bbox": [ + 83, + 73, + 101, + 87 + ], + "score": 1.0, + "content": "374", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 89, + 101, + 103 + ], + "spans": [ + { + "bbox": [ + 83, + 89, + 101, + 103 + ], + "score": 1.0, + "content": "375", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 99, + 101, + 114 + ], + "spans": [ + { + "bbox": [ + 84, + 99, + 101, + 114 + ], + "score": 1.0, + "content": "376", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 116, + 101, + 130 + ], + "spans": [ + { + "bbox": [ + 84, + 116, + 101, + 130 + ], + "score": 1.0, + "content": "377", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 127, + 101, + 139 + ], + "spans": [ + { + "bbox": [ + 85, + 127, + 101, + 139 + ], + "score": 1.0, + "content": "378", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 137, + 101, + 150 + ], + "spans": [ + { + "bbox": [ + 85, + 137, + 101, + 150 + ], + "score": 1.0, + "content": "379", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 155, + 101, + 167 + ], + "spans": [ + { + "bbox": [ + 85, + 155, + 101, + 167 + ], + "score": 1.0, + "content": "380", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 164, + 101, + 181 + ], + "spans": [ + { + "bbox": [ + 84, + 164, + 101, + 181 + ], + "score": 1.0, + "content": "381", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 182, + 101, + 194 + ], + "spans": [ + { + "bbox": [ + 85, + 182, + 101, + 194 + ], + "score": 1.0, + "content": "382", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 191, + 101, + 207 + ], + "spans": [ + { + "bbox": [ + 84, + 191, + 101, + 207 + ], + "score": 1.0, + "content": "383", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 210, + 101, + 222 + ], + "spans": [ + { + "bbox": [ + 85, + 210, + 101, + 222 + ], + "score": 1.0, + "content": "384", + "type": "text" + } + ] + }, + { + "bbox": [ + 83, + 219, + 101, + 234 + ], + "spans": [ + { + "bbox": [ + 83, + 219, + 101, + 234 + ], + "score": 1.0, + "content": "385", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 237, + 101, + 249 + ], + "spans": [ + { + "bbox": [ + 84, + 237, + 101, + 249 + ], + "score": 1.0, + "content": "386", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 247, + 101, + 261 + ], + "spans": [ + { + "bbox": [ + 84, + 247, + 101, + 261 + ], + "score": 1.0, + "content": "387", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 265, + 101, + 276 + ], + "spans": [ + { + "bbox": [ + 84, + 265, + 101, + 276 + ], + "score": 1.0, + "content": "388", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 274, + 101, + 289 + ], + "spans": [ + { + "bbox": [ + 84, + 274, + 101, + 289 + ], + "score": 1.0, + "content": "389", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 292, + 101, + 304 + ], + "spans": [ + { + "bbox": [ + 85, + 292, + 101, + 304 + ], + "score": 1.0, + "content": "390", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 302, + 101, + 316 + ], + "spans": [ + { + "bbox": [ + 85, + 302, + 101, + 316 + ], + "score": 1.0, + "content": "391", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 320, + 101, + 331 + ], + "spans": [ + { + "bbox": [ + 85, + 320, + 101, + 331 + ], + "score": 1.0, + "content": "392", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 329, + 101, + 345 + ], + "spans": [ + { + "bbox": [ + 84, + 329, + 101, + 345 + ], + "score": 1.0, + "content": "393", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 346, + 101, + 362 + ], + "spans": [ + { + "bbox": [ + 84, + 346, + 101, + 362 + ], + "score": 1.0, + "content": "394", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 364, + 101, + 376 + ], + "spans": [ + { + "bbox": [ + 85, + 364, + 101, + 376 + ], + "score": 1.0, + "content": "395", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 374, + 101, + 390 + ], + "spans": [ + { + "bbox": [ + 84, + 374, + 101, + 390 + ], + "score": 1.0, + "content": "396", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 392, + 101, + 405 + ], + "spans": [ + { + "bbox": [ + 85, + 392, + 101, + 405 + ], + "score": 1.0, + "content": "397", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 402, + 101, + 416 + ], + "spans": [ + { + "bbox": [ + 84, + 402, + 101, + 416 + ], + "score": 1.0, + "content": "398", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 420, + 101, + 432 + ], + "spans": [ + { + "bbox": [ + 85, + 420, + 101, + 432 + ], + "score": 1.0, + "content": "399", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 430, + 101, + 446 + ], + "spans": [ + { + "bbox": [ + 84, + 430, + 101, + 446 + ], + "score": 1.0, + "content": "400", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 447, + 101, + 459 + ], + "spans": [ + { + "bbox": [ + 85, + 447, + 101, + 459 + ], + "score": 1.0, + "content": "401", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 457, + 101, + 471 + ], + "spans": [ + { + "bbox": [ + 84, + 457, + 101, + 471 + ], + "score": 1.0, + "content": "402", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 474, + 101, + 487 + ], + "spans": [ + { + "bbox": [ + 85, + 474, + 101, + 487 + ], + "score": 1.0, + "content": "403", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 484, + 101, + 500 + ], + "spans": [ + { + "bbox": [ + 84, + 484, + 101, + 500 + ], + "score": 1.0, + "content": "404", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 502, + 101, + 513 + ], + "spans": [ + { + "bbox": [ + 85, + 502, + 101, + 513 + ], + "score": 1.0, + "content": "405", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 512, + 101, + 526 + ], + "spans": [ + { + "bbox": [ + 84, + 512, + 101, + 526 + ], + "score": 1.0, + "content": "406", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 529, + 101, + 543 + ], + "spans": [ + { + "bbox": [ + 84, + 529, + 101, + 543 + ], + "score": 1.0, + "content": "407", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 546, + 101, + 559 + ], + "spans": [ + { + "bbox": [ + 85, + 546, + 101, + 559 + ], + "score": 1.0, + "content": "408", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 556, + 101, + 572 + ], + "spans": [ + { + "bbox": [ + 84, + 556, + 101, + 572 + ], + "score": 1.0, + "content": "409", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 574, + 101, + 586 + ], + "spans": [ + { + "bbox": [ + 85, + 574, + 101, + 586 + ], + "score": 1.0, + "content": "410", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 585, + 101, + 598 + ], + "spans": [ + { + "bbox": [ + 85, + 585, + 101, + 598 + ], + "score": 1.0, + "content": "411", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 602, + 101, + 614 + ], + "spans": [ + { + "bbox": [ + 85, + 602, + 101, + 614 + ], + "score": 1.0, + "content": "412", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 611, + 101, + 627 + ], + "spans": [ + { + "bbox": [ + 84, + 611, + 101, + 627 + ], + "score": 1.0, + "content": "413", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 630, + 101, + 641 + ], + "spans": [ + { + "bbox": [ + 85, + 630, + 101, + 641 + ], + "score": 1.0, + "content": "414", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 639, + 101, + 654 + ], + "spans": [ + { + "bbox": [ + 84, + 639, + 101, + 654 + ], + "score": 1.0, + "content": "415", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 657, + 101, + 669 + ], + "spans": [ + { + "bbox": [ + 85, + 657, + 101, + 669 + ], + "score": 1.0, + "content": "416", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 668, + 101, + 680 + ], + "spans": [ + { + "bbox": [ + 85, + 668, + 101, + 680 + ], + "score": 1.0, + "content": "417", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 685, + 101, + 699 + ], + "spans": [ + { + "bbox": [ + 84, + 685, + 101, + 699 + ], + "score": 1.0, + "content": "418", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 702, + 101, + 713 + ], + "spans": [ + { + "bbox": [ + 84, + 702, + 101, + 713 + ], + "score": 1.0, + "content": "419", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 713, + 101, + 724 + ], + "spans": [ + { + "bbox": [ + 85, + 713, + 101, + 724 + ], + "score": 1.0, + "content": "420", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 87, + 71, + 164, + 84 + ], + "lines": [ + { + "bbox": [ + 105, + 70, + 165, + 86 + ], + "spans": [ + { + "bbox": [ + 105, + 70, + 165, + 86 + ], + "score": 1.0, + "content": "References", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "list", + "bbox": [ + 103, + 84, + 507, + 726 + ], + "lines": [ + { + "bbox": [ + 110, + 90, + 506, + 101 + ], + "spans": [ + { + "bbox": [ + 110, + 90, + 506, + 101 + ], + "score": 1.0, + "content": "[1] M. Andrychowicz, D. Crow, A. Ray, J. Schneider, R. Fong, P. Welinder, B. McGrew, J. Tobin, P. Abbeel,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 125, + 99, + 433, + 112 + ], + "spans": [ + { + "bbox": [ + 125, + 99, + 433, + 112 + ], + "score": 1.0, + "content": "and W. Zaremba. Hindsight experience replay. In NeurIPS, pages 5048–5058, 2017.", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 115, + 507, + 130 + ], + "spans": [ + { + "bbox": [ + 108, + 115, + 507, + 130 + ], + "score": 1.0, + "content": "[2] M. Andrychowicz, A. Raichuk, P. Stanczyk, M. Orsini, S. Girgin, R. Marinier, L. Hussenot, M. Geist,", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 125, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 124, + 125, + 506, + 140 + ], + "score": 1.0, + "content": "O. Pietquin, M. Michalski, S. Gelly, and O. Bachem. What matters in on-policy reinforcement learning? A", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 125, + 136, + 338, + 149 + ], + "spans": [ + { + "bbox": [ + 125, + 136, + 338, + 149 + ], + "score": 1.0, + "content": "large-scale empirical study. CoRR, abs/2006.05990, 2020.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 155, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 505, + 166 + ], + "score": 1.0, + "content": "[3] I. Arnekvist, D. Kragic, and J. A. Stork. VPE: variational policy embedding for transfer reinforcement", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 125, + 164, + 269, + 177 + ], + "spans": [ + { + "bbox": [ + 125, + 164, + 269, + 177 + ], + "score": 1.0, + "content": "learning. In ICRA, pages 36–42, 2019.", + "type": "text" + } + ], + "index": 7, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 180, + 507, + 196 + ], + "spans": [ + { + "bbox": [ + 109, + 180, + 507, + 196 + ], + "score": 1.0, + "content": "[4] M. G. Bellemare, W. Dabney, and R. Munos. A distributional perspective on reinforcement learning. In", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 191, + 276, + 203 + ], + "spans": [ + { + "bbox": [ + 126, + 191, + 276, + 203 + ], + "score": 1.0, + "content": "ICML, volume 70, pages 449–458, 2017.", + "type": "text" + } + ], + "index": 9, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 209, + 507, + 222 + ], + "spans": [ + { + "bbox": [ + 110, + 209, + 507, + 222 + ], + "score": 1.0, + "content": "[5] D. P. Bertsekas and J. N. Tsitsiklis. Neuro-dynamic programming, volume 3 of Optimization and neural", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 126, + 219, + 223, + 231 + ], + "spans": [ + { + "bbox": [ + 126, + 219, + 223, + 231 + ], + "score": 1.0, + "content": "computation series. 1996.", + "type": "text" + } + ], + "index": 11, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 236, + 507, + 250 + ], + "spans": [ + { + "bbox": [ + 109, + 236, + 507, + 250 + ], + "score": 1.0, + "content": "[6] G. Brockman, V. Cheung, L. Pettersson, J. Schneider, J. Schulman, J. Tang, and W. Zaremba. Openai gym.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 247, + 236, + 258 + ], + "spans": [ + { + "bbox": [ + 126, + 247, + 236, + 258 + ], + "score": 1.0, + "content": "CoRR, abs/1606.01540, 2016.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 110, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "[7] T. Chen, S. Kornblith, M. Norouzi, and G. E. Hinton. A simple framework for contrastive learning of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 126, + 275, + 321, + 286 + ], + "spans": [ + { + "bbox": [ + 126, + 275, + 321, + 286 + ], + "score": 1.0, + "content": "visual representations. CoRR, abs/2002.05709, 2020.", + "type": "text" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 292, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 110, + 292, + 505, + 304 + ], + "score": 1.0, + "content": "[8] L. Engstrom, A. Ilyas, S. Santurkar, D. Tsipras, F. Janoos, L. Rudolph, and A. Madry. Implementation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 126, + 302, + 378, + 313 + ], + "spans": [ + { + "bbox": [ + 126, + 302, + 378, + 313 + ], + "score": 1.0, + "content": "matters in deep RL: A case study on PPO and TRPO. In ICLR, 2020.", + "type": "text" + } + ], + "index": 17, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 317, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 108, + 317, + 506, + 333 + ], + "score": 1.0, + "content": "[9] B. Eysenbach, X. Geng, S. Levine, and R. R. Salakhutdinov. Rewriting history with inverse RL: hindsight", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 329, + 321, + 343 + ], + "spans": [ + { + "bbox": [ + 125, + 329, + 321, + 343 + ], + "score": 1.0, + "content": "inference for policy improvement. In NeurIPS, 2020.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 347, + 469, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 469, + 358 + ], + "score": 1.0, + "content": "[10] F. Faccio and J. Schmidhuber. Parameter-based value functions. CoRR, abs/2006.09226, 2020.", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 363, + 507, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 507, + 377 + ], + "score": 1.0, + "content": "[11] H. Fu, H. Tang, J. Hao, C. Chen, X. Feng, D. Li, and W. Liu. Towards effective context for meta-", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 374, + 479, + 388 + ], + "spans": [ + { + "bbox": [ + 125, + 374, + 479, + 388 + ], + "score": 1.0, + "content": "reinforcement learning: an approach based on contrastive learning. CoRR, abs/2009.13891, 2020.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 393, + 506, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 393, + 506, + 404 + ], + "score": 1.0, + "content": "[12] S. Fujimoto, H. v. Hoof, and D. Meger. Addressing function approximation error in actor-critic methods.", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 402, + 185, + 414 + ], + "spans": [ + { + "bbox": [ + 126, + 402, + 185, + 414 + ], + "score": 1.0, + "content": "In ICML, 2018.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "[13] A. Gaier, A. Asteroth, and J. Mouret. Discovering representations for black-box optimization. In GECCO,", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 429, + 209, + 441 + ], + "spans": [ + { + "bbox": [ + 124, + 429, + 209, + 441 + ], + "score": 1.0, + "content": "pages 103–111, 2020.", + "type": "text" + } + ], + "index": 26, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 459 + ], + "score": 1.0, + "content": "[14] A. Grover, M. Al-Shedivat, J. K. Gupta, Y. Burda, and H. Edwards. Learning policy representations in", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 455, + 370, + 469 + ], + "spans": [ + { + "bbox": [ + 124, + 455, + 370, + 469 + ], + "score": 1.0, + "content": "multiagent systems. In ICML, volume 80, pages 1797–1806, 2018.", + "type": "text" + } + ], + "index": 28, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 472, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 104, + 472, + 506, + 488 + ], + "score": 1.0, + "content": "[15] T. Haarnoja, A. Zhou, P. Abbeel, and S. Levine. Soft actor-critic: Off-policy maximum entropy deep", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 484, + 421, + 496 + ], + "spans": [ + { + "bbox": [ + 124, + 484, + 421, + 496 + ], + "score": 1.0, + "content": "reinforcement learning with a stochastic actor. In ICML, pages 1856–1865, 2018.", + "type": "text" + } + ], + "index": 30, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "[16] D. Hafner, T. P. Lillicrap, J. Ba, and M. Norouzi. Dream to control: Learning behaviors by latent", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 512, + 231, + 523 + ], + "spans": [ + { + "bbox": [ + 126, + 512, + 231, + 523 + ], + "score": 1.0, + "content": "imagination. In ICLR, 2020.", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 529, + 501, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 501, + 541 + ], + "score": 1.0, + "content": "[17] J. Harb, T. Schaul, D. Precup, and P. Bacon. Policy evaluation networks. CoRR, abs/2002.11833, 2020.", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 506, + 560 + ], + "score": 1.0, + "content": "[18] K. Hausman, J. Tobias Springenberg, Z. Wang, N. Heess, and M. A. Riedmiller. Learning an embedding", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 556, + 309, + 569 + ], + "spans": [ + { + "bbox": [ + 125, + 556, + 309, + 569 + ], + "score": 1.0, + "content": "space for transferable robot skills. In ICLR, 2018.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 575, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 586 + ], + "score": 1.0, + "content": "[19] H. He and J. L. Boyd-Graber. Opponent modeling in deep reinforcement learning. In ICML, volume 48,", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 124, + 584, + 217, + 596 + ], + "spans": [ + { + "bbox": [ + 124, + 584, + 217, + 596 + ], + "score": 1.0, + "content": "pages 1804–1813, 2016.", + "type": "text" + } + ], + "index": 37, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "[20] K. He, H. Fan, Y. Wu, S. Xie, and R. B. Girshick. Momentum contrast for unsupervised visual representation", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 611, + 289, + 625 + ], + "spans": [ + { + "bbox": [ + 126, + 611, + 289, + 625 + ], + "score": 1.0, + "content": "learning. In CVPR, pages 9726–9735, 2020.", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "[21] M. Igl, G. Farquhar, J. Luketina, W. Boehmer, and S. Whiteson. The impact of non-stationarity on", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 123, + 638, + 406, + 652 + ], + "spans": [ + { + "bbox": [ + 123, + 638, + 406, + 652 + ], + "score": 1.0, + "content": "generalisation in deep reinforcement learning. CoRR, abs/2006.05826, 2020.", + "type": "text" + } + ], + "index": 41, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 656, + 506, + 669 + ], + "score": 1.0, + "content": "[22] N. S. Keskar, D. Mudigere, J. Nocedal, M. Smelyanskiy, and P. T. P. Tang. On large-batch training for", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 666, + 378, + 680 + ], + "spans": [ + { + "bbox": [ + 125, + 666, + 378, + 680 + ], + "score": 1.0, + "content": "deep learning: Generalization gap and sharp minima. In ICLR, 2017.", + "type": "text" + } + ], + "index": 43, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 684, + 417, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 417, + 698 + ], + "score": 1.0, + "content": "[23] D. P. Kingma and M. Welling. Auto-encoding variational bayes. In ICLR, 2014.", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 105, + 701, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 506, + 714 + ], + "score": 1.0, + "content": "[24] I. Kostrikov, D. Yarats, and R. Fergus. Image augmentation is all you need: Regularizing deep reinforcement", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 125, + 711, + 316, + 724 + ], + "spans": [ + { + "bbox": [ + 125, + 711, + 316, + 724 + ], + "score": 1.0, + "content": "learning from pixels. CoRR, abs/2004.13649, 2020.", + "type": "text" + } + ], + "index": 46, + "is_list_end_line": true + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 90, + 507, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 86, + 78, + 507, + 722 + ], + "lines": [ + { + "bbox": [ + 84, + 73, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 84, + 73, + 506, + 87 + ], + "score": 1.0, + "content": "421 [25] A. Kuznetsov, P. Shvechikov, A. Grishin, and D. P. Vetrov. Controlling overestimation bias with truncated", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 84, + 83, + 489, + 96 + ], + "spans": [ + { + "bbox": [ + 84, + 83, + 101, + 96 + ], + "score": 1.0, + "content": "422", + "type": "text" + }, + { + "bbox": [ + 124, + 83, + 489, + 96 + ], + "score": 1.0, + "content": "mixture of continuous distributional quantile critics. In ICML, volume 119, pages 5556–5566, 2020.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 85, + 101, + 504, + 115 + ], + "spans": [ + { + "bbox": [ + 85, + 103, + 101, + 114 + ], + "score": 1.0, + "content": "423", + "type": "text" + }, + { + "bbox": [ + 105, + 101, + 504, + 115 + ], + "score": 1.0, + "content": "[26] M. G. Lagoudakis and R. Parr. Least-squares policy iteration. J. Mach. Learn. Res., 4:1107–1149, 2003.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 84, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 84, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "424 [27] Q. Lan, Y. Pan, A. Fyshe, and M. White. Maxmin q-learning: Controlling the estimation bias of q-learning.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 84, + 128, + 185, + 144 + ], + "spans": [ + { + "bbox": [ + 84, + 131, + 101, + 144 + ], + "score": 1.0, + "content": "425", + "type": "text" + }, + { + "bbox": [ + 123, + 128, + 185, + 144 + ], + "score": 1.0, + "content": "In ICLR, 2020.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 85, + 150, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 85, + 150, + 101, + 160 + ], + "score": 1.0, + "content": "426", + "type": "text" + }, + { + "bbox": [ + 106, + 150, + 505, + 161 + ], + "score": 1.0, + "content": "[28] M. Laskin, K. Lee, A. Stooke, L. Pinto, P. Abbeel, and A. Srinivas. Reinforcement learning with augmented", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 85, + 160, + 257, + 172 + ], + "spans": [ + { + "bbox": [ + 85, + 160, + 100, + 172 + ], + "score": 1.0, + "content": "427", + "type": "text" + }, + { + "bbox": [ + 126, + 160, + 257, + 171 + ], + "score": 1.0, + "content": "data. CoRR, abs/2004.14990, 2020.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 84, + 177, + 507, + 191 + ], + "spans": [ + { + "bbox": [ + 84, + 177, + 104, + 190 + ], + "score": 1.0, + "content": "428", + "type": "text" + }, + { + "bbox": [ + 104, + 177, + 507, + 191 + ], + "score": 1.0, + "content": "[29] K. Lee, Y. Seo, S. Lee, H. Lee, and J. Shin. Context-aware dynamics model for generalization in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 85, + 187, + 373, + 201 + ], + "spans": [ + { + "bbox": [ + 85, + 189, + 100, + 200 + ], + "score": 1.0, + "content": "429", + "type": "text" + }, + { + "bbox": [ + 124, + 187, + 373, + 201 + ], + "score": 1.0, + "content": "model-based reinforcement learning. CoRR, abs/2005.06800, 2020.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 85, + 207, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 85, + 207, + 101, + 218 + ], + "score": 1.0, + "content": "430", + "type": "text" + }, + { + "bbox": [ + 105, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "[30] A. Levy, G. D. Konidaris, R. P. Jr., and K. Saenko. Learning multi-level hierarchies with hindsight. In", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 85, + 216, + 174, + 228 + ], + "spans": [ + { + "bbox": [ + 85, + 217, + 100, + 228 + ], + "score": 1.0, + "content": "431", + "type": "text" + }, + { + "bbox": [ + 124, + 216, + 174, + 228 + ], + "score": 1.0, + "content": "ICLR, 2019.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 85, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 85, + 236, + 103, + 246 + ], + "score": 1.0, + "content": "432", + "type": "text" + }, + { + "bbox": [ + 104, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "[31] T. P. Lillicrap, J. J. Hunt, A. Pritzel, N. Heess, T. Erez, Y. Tassa, D. Silver, and D. Wierstra. Continuous", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 85, + 243, + 336, + 258 + ], + "spans": [ + { + "bbox": [ + 85, + 245, + 100, + 257 + ], + "score": 1.0, + "content": "433", + "type": "text" + }, + { + "bbox": [ + 124, + 243, + 336, + 258 + ], + "score": 1.0, + "content": "control with deep reinforcement learning. In ICLR, 2015.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 86, + 264, + 468, + 275 + ], + "spans": [ + { + "bbox": [ + 86, + 264, + 101, + 275 + ], + "score": 1.0, + "content": "434", + "type": "text" + }, + { + "bbox": [ + 106, + 264, + 468, + 275 + ], + "score": 1.0, + "content": "[32] H. Liu, K. Simonyan, and Y. Yang. DARTS: differentiable architecture search. In ICLR, 2019.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 85, + 281, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 85, + 283, + 101, + 294 + ], + "score": 1.0, + "content": "435", + "type": "text" + }, + { + "bbox": [ + 104, + 281, + 506, + 296 + ], + "score": 1.0, + "content": "[33] R. Luo, F. Tian, T. Qin, E. Chen, and T. Liu. Neural architecture optimization. In NeurIPS, pages", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 84, + 292, + 195, + 305 + ], + "spans": [ + { + "bbox": [ + 84, + 292, + 101, + 305 + ], + "score": 1.0, + "content": "436", + "type": "text" + }, + { + "bbox": [ + 126, + 292, + 195, + 304 + ], + "score": 1.0, + "content": "7827–7838, 2018.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 85, + 311, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 85, + 311, + 103, + 322 + ], + "score": 1.0, + "content": "437", + "type": "text" + }, + { + "bbox": [ + 105, + 311, + 506, + 322 + ], + "score": 1.0, + "content": "[34] L. V. D. Maaten and G. E. Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9:", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 84, + 319, + 194, + 334 + ], + "spans": [ + { + "bbox": [ + 84, + 321, + 101, + 334 + ], + "score": 1.0, + "content": "438", + "type": "text" + }, + { + "bbox": [ + 125, + 319, + 194, + 333 + ], + "score": 1.0, + "content": "2579–2605, 2008.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 85, + 338, + 507, + 352 + ], + "spans": [ + { + "bbox": [ + 85, + 340, + 101, + 351 + ], + "score": 1.0, + "content": "439", + "type": "text" + }, + { + "bbox": [ + 104, + 338, + 507, + 352 + ], + "score": 1.0, + "content": "[35] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. A. Riedmiller,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 85, + 350, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 85, + 350, + 100, + 361 + ], + "score": 1.0, + "content": "440", + "type": "text" + }, + { + "bbox": [ + 126, + 350, + 505, + 361 + ], + "score": 1.0, + "content": "A. Fidjeland, G. Ostrovski, S. Petersen, C. Beattie, A. Sadik, I. Antonoglou, H. King, D. Kumaran,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 85, + 357, + 507, + 373 + ], + "spans": [ + { + "bbox": [ + 85, + 360, + 100, + 371 + ], + "score": 1.0, + "content": "441", + "type": "text" + }, + { + "bbox": [ + 124, + 357, + 507, + 373 + ], + "score": 1.0, + "content": "D. Wierstra, S. Legg, and D. Hassabis. Human-level control through deep reinforcement learning. Nature,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 85, + 367, + 226, + 381 + ], + "spans": [ + { + "bbox": [ + 85, + 370, + 100, + 381 + ], + "score": 1.0, + "content": "442", + "type": "text" + }, + { + "bbox": [ + 124, + 367, + 226, + 381 + ], + "score": 1.0, + "content": "518(7540):529–533, 2015.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 84, + 387, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 84, + 387, + 101, + 400 + ], + "score": 1.0, + "content": "443", + "type": "text" + }, + { + "bbox": [ + 105, + 388, + 506, + 399 + ], + "score": 1.0, + "content": "[36] V. Mnih, A. P. Badia, M. Mirza, A. Graves, T. P. Lillicrap, T. Harley, D. Silver, and K. Kavukcuoglu.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 84, + 398, + 390, + 411 + ], + "spans": [ + { + "bbox": [ + 84, + 398, + 101, + 411 + ], + "score": 1.0, + "content": "444", + "type": "text" + }, + { + "bbox": [ + 126, + 398, + 390, + 409 + ], + "score": 1.0, + "content": "Asynchronous methods for deep reinforcement learning. In ICML, 2016.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 84, + 416, + 507, + 429 + ], + "spans": [ + { + "bbox": [ + 84, + 416, + 104, + 428 + ], + "score": 1.0, + "content": "445", + "type": "text" + }, + { + "bbox": [ + 104, + 416, + 507, + 429 + ], + "score": 1.0, + "content": "[37] O. Nachum, S. Gu, H. Lee, and S. Levine. Data-efficient hierarchical reinforcement learning. CoRR,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 85, + 425, + 210, + 438 + ], + "spans": [ + { + "bbox": [ + 85, + 427, + 100, + 438 + ], + "score": 1.0, + "content": "446", + "type": "text" + }, + { + "bbox": [ + 124, + 425, + 210, + 437 + ], + "score": 1.0, + "content": "abs/1805.08296, 2018.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 85, + 444, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 85, + 446, + 101, + 456 + ], + "score": 1.0, + "content": "447", + "type": "text" + }, + { + "bbox": [ + 104, + 444, + 507, + 457 + ], + "score": 1.0, + "content": "[38] O. Nachum, S. Gu, H. Lee, and S. Levine. Near-optimal representation learning for hierarchical reinforce-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 84, + 454, + 239, + 468 + ], + "spans": [ + { + "bbox": [ + 84, + 455, + 101, + 468 + ], + "score": 1.0, + "content": "448", + "type": "text" + }, + { + "bbox": [ + 124, + 454, + 239, + 467 + ], + "score": 1.0, + "content": "ment learning. In ICLR, 2019.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 85, + 474, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 85, + 474, + 103, + 484 + ], + "score": 1.0, + "content": "449", + "type": "text" + }, + { + "bbox": [ + 105, + 474, + 506, + 485 + ], + "score": 1.0, + "content": "[39] Y. E. Nesterov and B. T. Polyak. Cubic regularization of newton method and its global performance. Math.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 84, + 483, + 250, + 496 + ], + "spans": [ + { + "bbox": [ + 84, + 483, + 101, + 496 + ], + "score": 1.0, + "content": "450", + "type": "text" + }, + { + "bbox": [ + 124, + 483, + 250, + 496 + ], + "score": 1.0, + "content": "Program., 108(1):177–205, 2006.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 85, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 85, + 502, + 101, + 513 + ], + "score": 1.0, + "content": "451", + "type": "text" + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "[40] R. Novak, Y. Bahri, D. A. Abolafia, J. Pennington, and J. Sohl-Dickstein. Sensitivity and generalization in", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 85, + 511, + 318, + 524 + ], + "spans": [ + { + "bbox": [ + 85, + 513, + 100, + 524 + ], + "score": 1.0, + "content": "452", + "type": "text" + }, + { + "bbox": [ + 124, + 511, + 318, + 524 + ], + "score": 1.0, + "content": "neural networks: an empirical study. In ICLR, 2018.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 84, + 530, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 84, + 530, + 507, + 543 + ], + "score": 1.0, + "content": "453 [41] A. Oord, Y. Li, and O. Vinyals. Representation learning with contrastive predictive coding. CoRR,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 85, + 540, + 211, + 552 + ], + "spans": [ + { + "bbox": [ + 85, + 541, + 100, + 552 + ], + "score": 1.0, + "content": "454", + "type": "text" + }, + { + "bbox": [ + 124, + 540, + 211, + 551 + ], + "score": 1.0, + "content": "abs/1807.03748, 2018.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 85, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 85, + 560, + 101, + 570 + ], + "score": 1.0, + "content": "455", + "type": "text" + }, + { + "bbox": [ + 104, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "[42] R. Raileanu, M. Goldstein, A. Szlam, and R. Fergus. Fast adaptation via policy-dynamics value functions.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 85, + 569, + 237, + 581 + ], + "spans": [ + { + "bbox": [ + 85, + 569, + 100, + 581 + ], + "score": 1.0, + "content": "456", + "type": "text" + }, + { + "bbox": [ + 126, + 569, + 237, + 580 + ], + "score": 1.0, + "content": "CoRR, abs/2007.02879, 2020.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 85, + 585, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 85, + 588, + 101, + 599 + ], + "score": 1.0, + "content": "457", + "type": "text" + }, + { + "bbox": [ + 104, + 585, + 507, + 601 + ], + "score": 1.0, + "content": "[43] K. Rakelly, A. Zhou, C. Finn, S. Levine, and D. Quillen. Efficient off-policy meta-reinforcement learning", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 84, + 597, + 421, + 611 + ], + "spans": [ + { + "bbox": [ + 84, + 597, + 101, + 611 + ], + "score": 1.0, + "content": "458", + "type": "text" + }, + { + "bbox": [ + 126, + 598, + 421, + 609 + ], + "score": 1.0, + "content": "via probabilistic context variables. In ICML, volume 97, pages 5331–5340, 2019.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 85, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 85, + 616, + 101, + 627 + ], + "score": 1.0, + "content": "459", + "type": "text" + }, + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "[44] N. Rakicevic, A. Cully, and P. Kormushev. Policy manifold search: Exploring the manifold hypothesis for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 85, + 626, + 352, + 638 + ], + "spans": [ + { + "bbox": [ + 85, + 627, + 100, + 638 + ], + "score": 1.0, + "content": "460", + "type": "text" + }, + { + "bbox": [ + 125, + 626, + 352, + 637 + ], + "score": 1.0, + "content": "diversity-based neuroevolution. CoRR, abs/2104.13424, 2021.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 85, + 644, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 85, + 645, + 101, + 656 + ], + "score": 1.0, + "content": "461", + "type": "text" + }, + { + "bbox": [ + 104, + 644, + 507, + 658 + ], + "score": 1.0, + "content": "[45] T. Schaul, D. Horgan, K. Gregor, and D. Silver. Universal value function approximators. In ICML,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 84, + 654, + 261, + 667 + ], + "spans": [ + { + "bbox": [ + 84, + 655, + 101, + 667 + ], + "score": 1.0, + "content": "462", + "type": "text" + }, + { + "bbox": [ + 125, + 654, + 261, + 667 + ], + "score": 1.0, + "content": "volume 37, pages 1312–1320, 2015.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 85, + 673, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 85, + 674, + 103, + 684 + ], + "score": 1.0, + "content": "463", + "type": "text" + }, + { + "bbox": [ + 105, + 673, + 505, + 684 + ], + "score": 1.0, + "content": "[46] B. Scherrer, M. Ghavamzadeh, V. Gabillon, B. Lesner, and M. Geist. Approximate modified policy iteration", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 84, + 683, + 429, + 696 + ], + "spans": [ + { + "bbox": [ + 84, + 683, + 101, + 696 + ], + "score": 1.0, + "content": "464", + "type": "text" + }, + { + "bbox": [ + 125, + 684, + 429, + 695 + ], + "score": 1.0, + "content": "and its application to the game of tetris. J. Mach. Learn. Res., 16:1629–1676, 2015.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 85, + 701, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 85, + 702, + 103, + 713 + ], + "score": 1.0, + "content": "465", + "type": "text" + }, + { + "bbox": [ + 104, + 701, + 506, + 714 + ], + "score": 1.0, + "content": "[47] J. S Schreck, C. W Coley, and K. JM Bishop. Learning retrosynthetic planning through simulated", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 85, + 711, + 324, + 724 + ], + "spans": [ + { + "bbox": [ + 85, + 713, + 101, + 723 + ], + "score": 1.0, + "content": "466", + "type": "text" + }, + { + "bbox": [ + 124, + 711, + 324, + 724 + ], + "score": 1.0, + "content": "experience. ACS central science, 5(6):970–981, 2019.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 22.5 + } + ], + "page_idx": 10, + "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": "11", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "index", + "bbox": [ + 86, + 78, + 507, + 722 + ], + "lines": [ + { + "bbox": [ + 84, + 73, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 84, + 73, + 506, + 87 + ], + "score": 1.0, + "content": "421 [25] A. Kuznetsov, P. Shvechikov, A. Grishin, and D. P. Vetrov. Controlling overestimation bias with truncated", + "type": "text" + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 83, + 489, + 96 + ], + "spans": [ + { + "bbox": [ + 84, + 83, + 101, + 96 + ], + "score": 1.0, + "content": "422", + "type": "text" + }, + { + "bbox": [ + 124, + 83, + 489, + 96 + ], + "score": 1.0, + "content": "mixture of continuous distributional quantile critics. In ICML, volume 119, pages 5556–5566, 2020.", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 101, + 504, + 115 + ], + "spans": [ + { + "bbox": [ + 85, + 103, + 101, + 114 + ], + "score": 1.0, + "content": "423", + "type": "text" + }, + { + "bbox": [ + 105, + 101, + 504, + 115 + ], + "score": 1.0, + "content": "[26] M. G. Lagoudakis and R. Parr. Least-squares policy iteration. J. Mach. Learn. Res., 4:1107–1149, 2003.", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 120, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 84, + 120, + 506, + 134 + ], + "score": 1.0, + "content": "424 [27] Q. Lan, Y. Pan, A. Fyshe, and M. White. Maxmin q-learning: Controlling the estimation bias of q-learning.", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 128, + 185, + 144 + ], + "spans": [ + { + "bbox": [ + 84, + 131, + 101, + 144 + ], + "score": 1.0, + "content": "425", + "type": "text" + }, + { + "bbox": [ + 123, + 128, + 185, + 144 + ], + "score": 1.0, + "content": "In ICLR, 2020.", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 150, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 85, + 150, + 101, + 160 + ], + "score": 1.0, + "content": "426", + "type": "text" + }, + { + "bbox": [ + 106, + 150, + 505, + 161 + ], + "score": 1.0, + "content": "[28] M. Laskin, K. Lee, A. Stooke, L. Pinto, P. Abbeel, and A. Srinivas. Reinforcement learning with augmented", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 160, + 257, + 172 + ], + "spans": [ + { + "bbox": [ + 85, + 160, + 100, + 172 + ], + "score": 1.0, + "content": "427", + "type": "text" + }, + { + "bbox": [ + 126, + 160, + 257, + 171 + ], + "score": 1.0, + "content": "data. CoRR, abs/2004.14990, 2020.", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 177, + 507, + 191 + ], + "spans": [ + { + "bbox": [ + 84, + 177, + 104, + 190 + ], + "score": 1.0, + "content": "428", + "type": "text" + }, + { + "bbox": [ + 104, + 177, + 507, + 191 + ], + "score": 1.0, + "content": "[29] K. Lee, Y. Seo, S. Lee, H. Lee, and J. Shin. Context-aware dynamics model for generalization in", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 187, + 373, + 201 + ], + "spans": [ + { + "bbox": [ + 85, + 189, + 100, + 200 + ], + "score": 1.0, + "content": "429", + "type": "text" + }, + { + "bbox": [ + 124, + 187, + 373, + 201 + ], + "score": 1.0, + "content": "model-based reinforcement learning. CoRR, abs/2005.06800, 2020.", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 207, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 85, + 207, + 101, + 218 + ], + "score": 1.0, + "content": "430", + "type": "text" + }, + { + "bbox": [ + 105, + 207, + 505, + 218 + ], + "score": 1.0, + "content": "[30] A. Levy, G. D. Konidaris, R. P. Jr., and K. Saenko. Learning multi-level hierarchies with hindsight. In", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 216, + 174, + 228 + ], + "spans": [ + { + "bbox": [ + 85, + 217, + 100, + 228 + ], + "score": 1.0, + "content": "431", + "type": "text" + }, + { + "bbox": [ + 124, + 216, + 174, + 228 + ], + "score": 1.0, + "content": "ICLR, 2019.", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 85, + 236, + 103, + 246 + ], + "score": 1.0, + "content": "432", + "type": "text" + }, + { + "bbox": [ + 104, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "[31] T. P. Lillicrap, J. J. Hunt, A. Pritzel, N. Heess, T. Erez, Y. Tassa, D. Silver, and D. Wierstra. Continuous", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 243, + 336, + 258 + ], + "spans": [ + { + "bbox": [ + 85, + 245, + 100, + 257 + ], + "score": 1.0, + "content": "433", + "type": "text" + }, + { + "bbox": [ + 124, + 243, + 336, + 258 + ], + "score": 1.0, + "content": "control with deep reinforcement learning. In ICLR, 2015.", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 86, + 264, + 468, + 275 + ], + "spans": [ + { + "bbox": [ + 86, + 264, + 101, + 275 + ], + "score": 1.0, + "content": "434", + "type": "text" + }, + { + "bbox": [ + 106, + 264, + 468, + 275 + ], + "score": 1.0, + "content": "[32] H. Liu, K. Simonyan, and Y. Yang. DARTS: differentiable architecture search. In ICLR, 2019.", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 281, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 85, + 283, + 101, + 294 + ], + "score": 1.0, + "content": "435", + "type": "text" + }, + { + "bbox": [ + 104, + 281, + 506, + 296 + ], + "score": 1.0, + "content": "[33] R. Luo, F. Tian, T. Qin, E. Chen, and T. Liu. Neural architecture optimization. In NeurIPS, pages", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 292, + 195, + 305 + ], + "spans": [ + { + "bbox": [ + 84, + 292, + 101, + 305 + ], + "score": 1.0, + "content": "436", + "type": "text" + }, + { + "bbox": [ + 126, + 292, + 195, + 304 + ], + "score": 1.0, + "content": "7827–7838, 2018.", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 311, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 85, + 311, + 103, + 322 + ], + "score": 1.0, + "content": "437", + "type": "text" + }, + { + "bbox": [ + 105, + 311, + 506, + 322 + ], + "score": 1.0, + "content": "[34] L. V. D. Maaten and G. E. Hinton. Visualizing data using t-sne. Journal of Machine Learning Research, 9:", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 319, + 194, + 334 + ], + "spans": [ + { + "bbox": [ + 84, + 321, + 101, + 334 + ], + "score": 1.0, + "content": "438", + "type": "text" + }, + { + "bbox": [ + 125, + 319, + 194, + 333 + ], + "score": 1.0, + "content": "2579–2605, 2008.", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 338, + 507, + 352 + ], + "spans": [ + { + "bbox": [ + 85, + 340, + 101, + 351 + ], + "score": 1.0, + "content": "439", + "type": "text" + }, + { + "bbox": [ + 104, + 338, + 507, + 352 + ], + "score": 1.0, + "content": "[35] V. Mnih, K. Kavukcuoglu, D. Silver, A. A. Rusu, J. Veness, M. G. Bellemare, A. Graves, M. A. Riedmiller,", + "type": "text" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 350, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 85, + 350, + 100, + 361 + ], + "score": 1.0, + "content": "440", + "type": "text" + }, + { + "bbox": [ + 126, + 350, + 505, + 361 + ], + "score": 1.0, + "content": "A. Fidjeland, G. Ostrovski, S. Petersen, C. Beattie, A. Sadik, I. Antonoglou, H. King, D. Kumaran,", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 357, + 507, + 373 + ], + "spans": [ + { + "bbox": [ + 85, + 360, + 100, + 371 + ], + "score": 1.0, + "content": "441", + "type": "text" + }, + { + "bbox": [ + 124, + 357, + 507, + 373 + ], + "score": 1.0, + "content": "D. Wierstra, S. Legg, and D. Hassabis. Human-level control through deep reinforcement learning. Nature,", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 367, + 226, + 381 + ], + "spans": [ + { + "bbox": [ + 85, + 370, + 100, + 381 + ], + "score": 1.0, + "content": "442", + "type": "text" + }, + { + "bbox": [ + 124, + 367, + 226, + 381 + ], + "score": 1.0, + "content": "518(7540):529–533, 2015.", + "type": "text" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 387, + 506, + 400 + ], + "spans": [ + { + "bbox": [ + 84, + 387, + 101, + 400 + ], + "score": 1.0, + "content": "443", + "type": "text" + }, + { + "bbox": [ + 105, + 388, + 506, + 399 + ], + "score": 1.0, + "content": "[36] V. Mnih, A. P. Badia, M. Mirza, A. Graves, T. P. Lillicrap, T. Harley, D. Silver, and K. Kavukcuoglu.", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 398, + 390, + 411 + ], + "spans": [ + { + "bbox": [ + 84, + 398, + 101, + 411 + ], + "score": 1.0, + "content": "444", + "type": "text" + }, + { + "bbox": [ + 126, + 398, + 390, + 409 + ], + "score": 1.0, + "content": "Asynchronous methods for deep reinforcement learning. In ICML, 2016.", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 416, + 507, + 429 + ], + "spans": [ + { + "bbox": [ + 84, + 416, + 104, + 428 + ], + "score": 1.0, + "content": "445", + "type": "text" + }, + { + "bbox": [ + 104, + 416, + 507, + 429 + ], + "score": 1.0, + "content": "[37] O. Nachum, S. Gu, H. Lee, and S. Levine. Data-efficient hierarchical reinforcement learning. CoRR,", + "type": "text" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 425, + 210, + 438 + ], + "spans": [ + { + "bbox": [ + 85, + 427, + 100, + 438 + ], + "score": 1.0, + "content": "446", + "type": "text" + }, + { + "bbox": [ + 124, + 425, + 210, + 437 + ], + "score": 1.0, + "content": "abs/1805.08296, 2018.", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 444, + 507, + 457 + ], + "spans": [ + { + "bbox": [ + 85, + 446, + 101, + 456 + ], + "score": 1.0, + "content": "447", + "type": "text" + }, + { + "bbox": [ + 104, + 444, + 507, + 457 + ], + "score": 1.0, + "content": "[38] O. Nachum, S. Gu, H. Lee, and S. Levine. Near-optimal representation learning for hierarchical reinforce-", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 454, + 239, + 468 + ], + "spans": [ + { + "bbox": [ + 84, + 455, + 101, + 468 + ], + "score": 1.0, + "content": "448", + "type": "text" + }, + { + "bbox": [ + 124, + 454, + 239, + 467 + ], + "score": 1.0, + "content": "ment learning. In ICLR, 2019.", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 474, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 85, + 474, + 103, + 484 + ], + "score": 1.0, + "content": "449", + "type": "text" + }, + { + "bbox": [ + 105, + 474, + 506, + 485 + ], + "score": 1.0, + "content": "[39] Y. E. Nesterov and B. T. Polyak. Cubic regularization of newton method and its global performance. Math.", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 483, + 250, + 496 + ], + "spans": [ + { + "bbox": [ + 84, + 483, + 101, + 496 + ], + "score": 1.0, + "content": "450", + "type": "text" + }, + { + "bbox": [ + 124, + 483, + 250, + 496 + ], + "score": 1.0, + "content": "Program., 108(1):177–205, 2006.", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 502, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 85, + 502, + 101, + 513 + ], + "score": 1.0, + "content": "451", + "type": "text" + }, + { + "bbox": [ + 105, + 502, + 505, + 514 + ], + "score": 1.0, + "content": "[40] R. Novak, Y. Bahri, D. A. Abolafia, J. Pennington, and J. Sohl-Dickstein. Sensitivity and generalization in", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 511, + 318, + 524 + ], + "spans": [ + { + "bbox": [ + 85, + 513, + 100, + 524 + ], + "score": 1.0, + "content": "452", + "type": "text" + }, + { + "bbox": [ + 124, + 511, + 318, + 524 + ], + "score": 1.0, + "content": "neural networks: an empirical study. In ICLR, 2018.", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 530, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 84, + 530, + 507, + 543 + ], + "score": 1.0, + "content": "453 [41] A. Oord, Y. Li, and O. Vinyals. Representation learning with contrastive predictive coding. CoRR,", + "type": "text" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 540, + 211, + 552 + ], + "spans": [ + { + "bbox": [ + 85, + 541, + 100, + 552 + ], + "score": 1.0, + "content": "454", + "type": "text" + }, + { + "bbox": [ + 124, + 540, + 211, + 551 + ], + "score": 1.0, + "content": "abs/1807.03748, 2018.", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 85, + 560, + 101, + 570 + ], + "score": 1.0, + "content": "455", + "type": "text" + }, + { + "bbox": [ + 104, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "[42] R. Raileanu, M. Goldstein, A. Szlam, and R. Fergus. Fast adaptation via policy-dynamics value functions.", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 569, + 237, + 581 + ], + "spans": [ + { + "bbox": [ + 85, + 569, + 100, + 581 + ], + "score": 1.0, + "content": "456", + "type": "text" + }, + { + "bbox": [ + 126, + 569, + 237, + 580 + ], + "score": 1.0, + "content": "CoRR, abs/2007.02879, 2020.", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 585, + 507, + 601 + ], + "spans": [ + { + "bbox": [ + 85, + 588, + 101, + 599 + ], + "score": 1.0, + "content": "457", + "type": "text" + }, + { + "bbox": [ + 104, + 585, + 507, + 601 + ], + "score": 1.0, + "content": "[43] K. Rakelly, A. Zhou, C. Finn, S. Levine, and D. Quillen. Efficient off-policy meta-reinforcement learning", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 597, + 421, + 611 + ], + "spans": [ + { + "bbox": [ + 84, + 597, + 101, + 611 + ], + "score": 1.0, + "content": "458", + "type": "text" + }, + { + "bbox": [ + 126, + 598, + 421, + 609 + ], + "score": 1.0, + "content": "via probabilistic context variables. In ICML, volume 97, pages 5331–5340, 2019.", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 85, + 616, + 101, + 627 + ], + "score": 1.0, + "content": "459", + "type": "text" + }, + { + "bbox": [ + 106, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "[44] N. Rakicevic, A. Cully, and P. Kormushev. Policy manifold search: Exploring the manifold hypothesis for", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 626, + 352, + 638 + ], + "spans": [ + { + "bbox": [ + 85, + 627, + 100, + 638 + ], + "score": 1.0, + "content": "460", + "type": "text" + }, + { + "bbox": [ + 125, + 626, + 352, + 637 + ], + "score": 1.0, + "content": "diversity-based neuroevolution. CoRR, abs/2104.13424, 2021.", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 644, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 85, + 645, + 101, + 656 + ], + "score": 1.0, + "content": "461", + "type": "text" + }, + { + "bbox": [ + 104, + 644, + 507, + 658 + ], + "score": 1.0, + "content": "[45] T. Schaul, D. Horgan, K. Gregor, and D. Silver. Universal value function approximators. In ICML,", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 654, + 261, + 667 + ], + "spans": [ + { + "bbox": [ + 84, + 655, + 101, + 667 + ], + "score": 1.0, + "content": "462", + "type": "text" + }, + { + "bbox": [ + 125, + 654, + 261, + 667 + ], + "score": 1.0, + "content": "volume 37, pages 1312–1320, 2015.", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 673, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 85, + 674, + 103, + 684 + ], + "score": 1.0, + "content": "463", + "type": "text" + }, + { + "bbox": [ + 105, + 673, + 505, + 684 + ], + "score": 1.0, + "content": "[46] B. Scherrer, M. Ghavamzadeh, V. Gabillon, B. Lesner, and M. Geist. Approximate modified policy iteration", + "type": "text" + } + ], + "index": 42, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 683, + 429, + 696 + ], + "spans": [ + { + "bbox": [ + 84, + 683, + 101, + 696 + ], + "score": 1.0, + "content": "464", + "type": "text" + }, + { + "bbox": [ + 125, + 684, + 429, + 695 + ], + "score": 1.0, + "content": "and its application to the game of tetris. J. Mach. Learn. Res., 16:1629–1676, 2015.", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 701, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 85, + 702, + 103, + 713 + ], + "score": 1.0, + "content": "465", + "type": "text" + }, + { + "bbox": [ + 104, + 701, + 506, + 714 + ], + "score": 1.0, + "content": "[47] J. S Schreck, C. W Coley, and K. JM Bishop. Learning retrosynthetic planning through simulated", + "type": "text" + } + ], + "index": 44, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 711, + 324, + 724 + ], + "spans": [ + { + "bbox": [ + 85, + 713, + 101, + 723 + ], + "score": 1.0, + "content": "466", + "type": "text" + }, + { + "bbox": [ + 124, + 711, + 324, + 724 + ], + "score": 1.0, + "content": "experience. ACS central science, 5(6):970–981, 2019.", + "type": "text" + } + ], + "index": 45, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 85, + 74, + 102, + 84 + ], + "score": 1.0, + "content": "467", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 103, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[48] J. Schulman, S. Levine, P. Abbeel, M. I. Jordan, and P. Moritz. Trust region policy optimization. In ICML,", + "type": "text", + "cross_page": true + } + ], + "index": 0, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 82, + 217, + 95 + ], + "spans": [ + { + "bbox": [ + 85, + 84, + 100, + 95 + ], + "score": 1.0, + "content": "468", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 82, + 217, + 95 + ], + "score": 1.0, + "content": "pages 1889–1897, 2015.", + "type": "text", + "cross_page": true + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 104, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 85, + 106, + 101, + 117 + ], + "score": 1.0, + "content": "469", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 103, + 104, + 507, + 120 + ], + "score": 1.0, + "content": "[49] J. Schulman, P. Moritz, S. Levine, M. I. Jordan, and P. Abbeel. High-dimensional continuous control using", + "type": "text", + "cross_page": true + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 115, + 308, + 128 + ], + "spans": [ + { + "bbox": [ + 85, + 117, + 100, + 128 + ], + "score": 1.0, + "content": "470", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 115, + 308, + 128 + ], + "score": 1.0, + "content": "generalized advantage estimation. In ICLR, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 85, + 139, + 102, + 150 + ], + "score": 1.0, + "content": "471", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "[50] J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov. Proximal policy optimization algorithms.", + "type": "text", + "cross_page": true + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 147, + 236, + 161 + ], + "spans": [ + { + "bbox": [ + 85, + 149, + 100, + 161 + ], + "score": 1.0, + "content": "472", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 147, + 236, + 159 + ], + "score": 1.0, + "content": "CoRR, abs/1707.06347, 2017.", + "type": "text", + "cross_page": true + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 85, + 171, + 101, + 182 + ], + "score": 1.0, + "content": "473", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "[51] M. Schwarzer, A. Anand, R. Goel, R. D. Hjelm, A. C. Courville, and P. Bachman. Data-efficient", + "type": "text", + "cross_page": true + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 181, + 479, + 195 + ], + "spans": [ + { + "bbox": [ + 84, + 181, + 101, + 195 + ], + "score": 1.0, + "content": "474", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 125, + 181, + 479, + 193 + ], + "score": 1.0, + "content": "reinforcement learning with momentum predictive representations. CoRR, abs/2007.05929, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 84, + 203, + 102, + 216 + ], + "score": 1.0, + "content": "475", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "[52] D. Silver, G. Lever, N. Heess, T. Degris, D. Wierstra, and M. A. Riedmiller. Deterministic policy gradient", + "type": "text", + "cross_page": true + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 212, + 287, + 225 + ], + "spans": [ + { + "bbox": [ + 85, + 214, + 100, + 225 + ], + "score": 1.0, + "content": "476", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 212, + 287, + 225 + ], + "score": 1.0, + "content": "algorithms. In ICML, pages 387–395, 2014.", + "type": "text", + "cross_page": true + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 236, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 85, + 236, + 101, + 248 + ], + "score": 1.0, + "content": "477", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 236, + 506, + 248 + ], + "score": 1.0, + "content": "[53] D. Silver, A. Huang, C. J. Maddison, A. Guez, L. Sifre, G. van den Driessche, J. Schrittwieser,", + "type": "text", + "cross_page": true + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 84, + 245, + 101, + 259 + ], + "score": 1.0, + "content": "478", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 244, + 506, + 258 + ], + "score": 1.0, + "content": "I. Antonoglou, V. Panneershelvam, M. Lanctot, S. Dieleman, D. Grewe, J. Nham, N. Kalchbrenner,", + "type": "text", + "cross_page": true + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 253, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 84, + 253, + 101, + 269 + ], + "score": 1.0, + "content": "479", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 125, + 255, + 505, + 269 + ], + "score": 1.0, + "content": "I. Sutskever, T. P. Lillicrap, M. Leach, K. Kavukcuoglu, T. Graepel, and D. Hassabis. Mastering the game", + "type": "text", + "cross_page": true + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 266, + 431, + 277 + ], + "spans": [ + { + "bbox": [ + 85, + 266, + 100, + 277 + ], + "score": 1.0, + "content": "480", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 125, + 266, + 431, + 277 + ], + "score": 1.0, + "content": "of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text", + "cross_page": true + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 286, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 85, + 289, + 102, + 299 + ], + "score": 1.0, + "content": "481", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 103, + 286, + 506, + 301 + ], + "score": 1.0, + "content": "[54] A. Srinivas, M. Laskin, and P. Abbeel. CURL: contrastive unsupervised representations for reinforcement", + "type": "text", + "cross_page": true + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 297, + 272, + 311 + ], + "spans": [ + { + "bbox": [ + 85, + 299, + 100, + 311 + ], + "score": 1.0, + "content": "482", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 297, + 272, + 311 + ], + "score": 1.0, + "content": "learning. CoRR, abs/2004.04136, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 85, + 321, + 101, + 332 + ], + "score": 1.0, + "content": "483", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "[55] R. S. Sutton and A. G. Barto. Reinforcement learning - an introduction. Adaptive computation and machine", + "type": "text", + "cross_page": true + } + ], + "index": 16, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 330, + 226, + 344 + ], + "spans": [ + { + "bbox": [ + 85, + 331, + 100, + 343 + ], + "score": 1.0, + "content": "484", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 125, + 330, + 226, + 344 + ], + "score": 1.0, + "content": "learning. MIT Press, 1998.", + "type": "text", + "cross_page": true + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 85, + 354, + 101, + 365 + ], + "score": 1.0, + "content": "485", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "[56] R. S. Sutton, J. Modayil, M. Delp, T. Degris, P. M. Pilarski, A. White, and D. Precup. Horde: a scalable", + "type": "text", + "cross_page": true + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 85, + 363, + 100, + 375 + ], + "score": 1.0, + "content": "486", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 126, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "real-time architecture for learning knowledge from unsupervised sensorimotor interaction. In AAMAS,", + "type": "text", + "cross_page": true + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 372, + 209, + 385 + ], + "spans": [ + { + "bbox": [ + 85, + 373, + 100, + 385 + ], + "score": 1.0, + "content": "487", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 372, + 209, + 385 + ], + "score": 1.0, + "content": "pages 761–768, 2011.", + "type": "text", + "cross_page": true + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 394, + 507, + 408 + ], + "spans": [ + { + "bbox": [ + 85, + 396, + 102, + 407 + ], + "score": 1.0, + "content": "488", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 394, + 507, + 408 + ], + "score": 1.0, + "content": "[57] A. Tacchetti, H. F. Song, P. A. M. Mediano, V. Flores Zambaldi, J. Kramár, N. C. Rabinowitz, Th. Graepel,", + "type": "text", + "cross_page": true + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 404, + 498, + 419 + ], + "spans": [ + { + "bbox": [ + 85, + 406, + 100, + 418 + ], + "score": 1.0, + "content": "489", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 404, + 498, + 419 + ], + "score": 1.0, + "content": "M. Botvinick, and P. W. Battaglia. Relational forward models for multi-agent learning. In ICLR, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 85, + 429, + 102, + 440 + ], + "score": 1.0, + "content": "490", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "[58] E. Todorov, T. Erez, and Y. Tassa. Mujoco: A physics engine for model-based control. 2012 IEEE/RSJ", + "type": "text", + "cross_page": true + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 436, + 434, + 451 + ], + "spans": [ + { + "bbox": [ + 85, + 438, + 100, + 450 + ], + "score": 1.0, + "content": "491", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 436, + 434, + 451 + ], + "score": 1.0, + "content": "International Conference on Intelligent Robots and Systems, pages 5026–5033, 2012.", + "type": "text", + "cross_page": true + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 85, + 461, + 101, + 472 + ], + "score": 1.0, + "content": "492", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "[59] Y. H. Tsai, Y. Wu, R. Salakhutdinov, and L. Morency. Demystifying self-supervised learning: An", + "type": "text", + "cross_page": true + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 471, + 364, + 483 + ], + "spans": [ + { + "bbox": [ + 85, + 471, + 100, + 483 + ], + "score": 1.0, + "content": "493", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 127, + 471, + 364, + 480 + ], + "score": 1.0, + "content": "information-theoretical framework. CoRR, abs/2006.05576, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 85, + 493, + 102, + 505 + ], + "score": 1.0, + "content": "494", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "[60] T. Unterthiner, D. Keysers, S. Gelly, O. Bousquet, and I. O. Tolstikhin. Predicting neural network accuracy", + "type": "text", + "cross_page": true + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 503, + 290, + 515 + ], + "spans": [ + { + "bbox": [ + 85, + 503, + 100, + 515 + ], + "score": 1.0, + "content": "495", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 126, + 503, + 290, + 515 + ], + "score": 1.0, + "content": "from weights. CoRR, abs/2002.11448, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 85, + 526, + 102, + 537 + ], + "score": 1.0, + "content": "496", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "[61] H. v. Hasselt. Double q-learning. In J. D. Lafferty, C. K. I. Williams, J. Shawe-Taylor, R. S. Zemel, and", + "type": "text", + "cross_page": true + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 84, + 534, + 322, + 549 + ], + "spans": [ + { + "bbox": [ + 84, + 534, + 100, + 549 + ], + "score": 1.0, + "content": "497", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 534, + 322, + 549 + ], + "score": 1.0, + "content": "A. Culotta, editors, NeurIPS, pages 2613–2621, 2010.", + "type": "text", + "cross_page": true + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 557, + 507, + 570 + ], + "spans": [ + { + "bbox": [ + 85, + 558, + 101, + 569 + ], + "score": 1.0, + "content": "498", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 104, + 557, + 507, + 570 + ], + "score": 1.0, + "content": "[62] O. Vinyals, I. Babuschkin, W. M. Czarnecki, M. Mathieu, A. Dudzik, J. Chung, D. H. Choi, R. Powell,", + "type": "text", + "cross_page": true + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 568, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 85, + 568, + 100, + 579 + ], + "score": 1.0, + "content": "499", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 126, + 568, + 506, + 579 + ], + "score": 1.0, + "content": "T. Ewalds, P. Georgiev, J. Oh, D. Horgan, M. Kroiss, I. Danihelka, A. Huang, L. Sifre, T. Cai, J. P. Agapiou,", + "type": "text", + "cross_page": true + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 576, + 507, + 591 + ], + "spans": [ + { + "bbox": [ + 85, + 578, + 100, + 590 + ], + "score": 1.0, + "content": "500", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 576, + 507, + 591 + ], + "score": 1.0, + "content": "M. Jaderberg, A. S. Vezhnevets, R. Leblond, T. Pohlen, V. Dalibard, D. Budden, Y. Sulsky, J. Molloy,", + "type": "text", + "cross_page": true + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 85, + 587, + 100, + 599 + ], + "score": 1.0, + "content": "501", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 125, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "T. L. Paine, C. Gulcehre, Z. Wang, T. Pfaff, Y. Wu, R. Ring, D. Yogatama, D. Wünsch, K. McKinney,", + "type": "text", + "cross_page": true + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 85, + 598, + 100, + 610 + ], + "score": 1.0, + "content": "502", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 126, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "O. Smith, T. Schaul, T. Lillicrap, K. Kavukcuoglu, D. Hassabis, C. Apps, and D. Silver. Grandmaster level", + "type": "text", + "cross_page": true + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 606, + 455, + 620 + ], + "spans": [ + { + "bbox": [ + 85, + 608, + 100, + 620 + ], + "score": 1.0, + "content": "503", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 606, + 455, + 620 + ], + "score": 1.0, + "content": "in starcraft ii using multi-agent reinforcement learning. Nature, 575(7782):350–354, 2019.", + "type": "text", + "cross_page": true + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 630, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 85, + 630, + 102, + 641 + ], + "score": 1.0, + "content": "504", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 630, + 506, + 642 + ], + "score": 1.0, + "content": "[63] H. Wang, N. S. Keskar, C. Xiong, and R. Socher. Identifying generalization properties in neural networks.", + "type": "text", + "cross_page": true + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 640, + 237, + 652 + ], + "spans": [ + { + "bbox": [ + 85, + 640, + 100, + 652 + ], + "score": 1.0, + "content": "505", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 125, + 640, + 237, + 651 + ], + "score": 1.0, + "content": "CoRR, abs/1809.07402, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 663, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 85, + 663, + 101, + 674 + ], + "score": 1.0, + "content": "506", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 663, + 505, + 674 + ], + "score": 1.0, + "content": "[64] R. Wang, R. Yu, B. An, and Z. Rabinovich. I2hrl: Interactive influence-based hierarchical reinforcement", + "type": "text", + "cross_page": true + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 671, + 288, + 685 + ], + "spans": [ + { + "bbox": [ + 85, + 673, + 100, + 685 + ], + "score": 1.0, + "content": "507", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 125, + 671, + 288, + 685 + ], + "score": 1.0, + "content": "learning. In IJCAI, pages 3131–3138, 2020.", + "type": "text", + "cross_page": true + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 694, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 85, + 695, + 101, + 707 + ], + "score": 1.0, + "content": "508", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "score": 1.0, + "content": "[65] J. You, B. Liu, Z. Ying, V. S. Pande, and J. Leskovec. Graph convolutional policy network for goal-directed", + "type": "text", + "cross_page": true + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 85, + 704, + 387, + 718 + ], + "spans": [ + { + "bbox": [ + 85, + 705, + 100, + 717 + ], + "score": 1.0, + "content": "509", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 124, + 704, + 387, + 718 + ], + "score": 1.0, + "content": "molecular graph generation. In NeurIPS 2018, pages 6412–6422, 2018.", + "type": "text", + "cross_page": true + } + ], + "index": 42, + "is_list_start_line": true + } + ], + "index": 22.5, + "bbox_fs": [ + 84, + 73, + 507, + 724 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 84, + 56, + 507, + 725 + ], + "lines": [ + { + "bbox": [ + 85, + 72, + 506, + 87 + ], + "spans": [ + { + "bbox": [ + 85, + 74, + 102, + 84 + ], + "score": 1.0, + "content": "467", + "type": "text" + }, + { + "bbox": [ + 103, + 72, + 506, + 87 + ], + "score": 1.0, + "content": "[48] J. Schulman, S. Levine, P. Abbeel, M. I. Jordan, and P. Moritz. Trust region policy optimization. In ICML,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 85, + 82, + 217, + 95 + ], + "spans": [ + { + "bbox": [ + 85, + 84, + 100, + 95 + ], + "score": 1.0, + "content": "468", + "type": "text" + }, + { + "bbox": [ + 124, + 82, + 217, + 95 + ], + "score": 1.0, + "content": "pages 1889–1897, 2015.", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 85, + 104, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 85, + 106, + 101, + 117 + ], + "score": 1.0, + "content": "469", + "type": "text" + }, + { + "bbox": [ + 103, + 104, + 507, + 120 + ], + "score": 1.0, + "content": "[49] J. Schulman, P. Moritz, S. Levine, M. I. Jordan, and P. Abbeel. High-dimensional continuous control using", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 85, + 115, + 308, + 128 + ], + "spans": [ + { + "bbox": [ + 85, + 117, + 100, + 128 + ], + "score": 1.0, + "content": "470", + "type": "text" + }, + { + "bbox": [ + 124, + 115, + 308, + 128 + ], + "score": 1.0, + "content": "generalized advantage estimation. In ICLR, 2016.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 85, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 85, + 139, + 102, + 150 + ], + "score": 1.0, + "content": "471", + "type": "text" + }, + { + "bbox": [ + 105, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "[50] J. Schulman, F. Wolski, P. Dhariwal, A. Radford, and O. Klimov. Proximal policy optimization algorithms.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 85, + 147, + 236, + 161 + ], + "spans": [ + { + "bbox": [ + 85, + 149, + 100, + 161 + ], + "score": 1.0, + "content": "472", + "type": "text" + }, + { + "bbox": [ + 124, + 147, + 236, + 159 + ], + "score": 1.0, + "content": "CoRR, abs/1707.06347, 2017.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 85, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 85, + 171, + 101, + 182 + ], + "score": 1.0, + "content": "473", + "type": "text" + }, + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "[51] M. Schwarzer, A. Anand, R. Goel, R. D. Hjelm, A. C. Courville, and P. Bachman. Data-efficient", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 84, + 181, + 479, + 195 + ], + "spans": [ + { + "bbox": [ + 84, + 181, + 101, + 195 + ], + "score": 1.0, + "content": "474", + "type": "text" + }, + { + "bbox": [ + 125, + 181, + 479, + 193 + ], + "score": 1.0, + "content": "reinforcement learning with momentum predictive representations. CoRR, abs/2007.05929, 2020.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 84, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 84, + 203, + 102, + 216 + ], + "score": 1.0, + "content": "475", + "type": "text" + }, + { + "bbox": [ + 106, + 203, + 505, + 215 + ], + "score": 1.0, + "content": "[52] D. Silver, G. Lever, N. Heess, T. Degris, D. Wierstra, and M. A. Riedmiller. Deterministic policy gradient", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 85, + 212, + 287, + 225 + ], + "spans": [ + { + "bbox": [ + 85, + 214, + 100, + 225 + ], + "score": 1.0, + "content": "476", + "type": "text" + }, + { + "bbox": [ + 124, + 212, + 287, + 225 + ], + "score": 1.0, + "content": "algorithms. In ICML, pages 387–395, 2014.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 85, + 236, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 85, + 236, + 101, + 248 + ], + "score": 1.0, + "content": "477", + "type": "text" + }, + { + "bbox": [ + 105, + 236, + 506, + 248 + ], + "score": 1.0, + "content": "[53] D. Silver, A. Huang, C. J. Maddison, A. Guez, L. Sifre, G. van den Driessche, J. Schrittwieser,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 84, + 244, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 84, + 245, + 101, + 259 + ], + "score": 1.0, + "content": "478", + "type": "text" + }, + { + "bbox": [ + 124, + 244, + 506, + 258 + ], + "score": 1.0, + "content": "I. Antonoglou, V. Panneershelvam, M. Lanctot, S. Dieleman, D. Grewe, J. Nham, N. Kalchbrenner,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 84, + 253, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 84, + 253, + 101, + 269 + ], + "score": 1.0, + "content": "479", + "type": "text" + }, + { + "bbox": [ + 125, + 255, + 505, + 269 + ], + "score": 1.0, + "content": "I. Sutskever, T. P. Lillicrap, M. Leach, K. Kavukcuoglu, T. Graepel, and D. Hassabis. Mastering the game", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 85, + 266, + 431, + 277 + ], + "spans": [ + { + "bbox": [ + 85, + 266, + 100, + 277 + ], + "score": 1.0, + "content": "480", + "type": "text" + }, + { + "bbox": [ + 125, + 266, + 431, + 277 + ], + "score": 1.0, + "content": "of go with deep neural networks and tree search. Nature, 529(7587):484–489, 2016.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 85, + 286, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 85, + 289, + 102, + 299 + ], + "score": 1.0, + "content": "481", + "type": "text" + }, + { + "bbox": [ + 103, + 286, + 506, + 301 + ], + "score": 1.0, + "content": "[54] A. Srinivas, M. Laskin, and P. Abbeel. CURL: contrastive unsupervised representations for reinforcement", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 85, + 297, + 272, + 311 + ], + "spans": [ + { + "bbox": [ + 85, + 299, + 100, + 311 + ], + "score": 1.0, + "content": "482", + "type": "text" + }, + { + "bbox": [ + 124, + 297, + 272, + 311 + ], + "score": 1.0, + "content": "learning. CoRR, abs/2004.04136, 2020.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 85, + 320, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 85, + 321, + 101, + 332 + ], + "score": 1.0, + "content": "483", + "type": "text" + }, + { + "bbox": [ + 105, + 320, + 505, + 333 + ], + "score": 1.0, + "content": "[55] R. S. Sutton and A. G. Barto. Reinforcement learning - an introduction. Adaptive computation and machine", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 85, + 330, + 226, + 344 + ], + "spans": [ + { + "bbox": [ + 85, + 331, + 100, + 343 + ], + "score": 1.0, + "content": "484", + "type": "text" + }, + { + "bbox": [ + 125, + 330, + 226, + 344 + ], + "score": 1.0, + "content": "learning. MIT Press, 1998.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 85, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 85, + 354, + 101, + 365 + ], + "score": 1.0, + "content": "485", + "type": "text" + }, + { + "bbox": [ + 105, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "[56] R. S. Sutton, J. Modayil, M. Delp, T. Degris, P. M. Pilarski, A. White, and D. Precup. Horde: a scalable", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 85, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 85, + 363, + 100, + 375 + ], + "score": 1.0, + "content": "486", + "type": "text" + }, + { + "bbox": [ + 126, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "real-time architecture for learning knowledge from unsupervised sensorimotor interaction. In AAMAS,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 85, + 372, + 209, + 385 + ], + "spans": [ + { + "bbox": [ + 85, + 373, + 100, + 385 + ], + "score": 1.0, + "content": "487", + "type": "text" + }, + { + "bbox": [ + 124, + 372, + 209, + 385 + ], + "score": 1.0, + "content": "pages 761–768, 2011.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 85, + 394, + 507, + 408 + ], + "spans": [ + { + "bbox": [ + 85, + 396, + 102, + 407 + ], + "score": 1.0, + "content": "488", + "type": "text" + }, + { + "bbox": [ + 105, + 394, + 507, + 408 + ], + "score": 1.0, + "content": "[57] A. Tacchetti, H. F. Song, P. A. M. Mediano, V. Flores Zambaldi, J. Kramár, N. C. Rabinowitz, Th. Graepel,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 85, + 404, + 498, + 419 + ], + "spans": [ + { + "bbox": [ + 85, + 406, + 100, + 418 + ], + "score": 1.0, + "content": "489", + "type": "text" + }, + { + "bbox": [ + 124, + 404, + 498, + 419 + ], + "score": 1.0, + "content": "M. Botvinick, and P. W. Battaglia. Relational forward models for multi-agent learning. In ICLR, 2019.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 85, + 428, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 85, + 429, + 102, + 440 + ], + "score": 1.0, + "content": "490", + "type": "text" + }, + { + "bbox": [ + 105, + 428, + 505, + 440 + ], + "score": 1.0, + "content": "[58] E. Todorov, T. Erez, and Y. Tassa. Mujoco: A physics engine for model-based control. 2012 IEEE/RSJ", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 85, + 436, + 434, + 451 + ], + "spans": [ + { + "bbox": [ + 85, + 438, + 100, + 450 + ], + "score": 1.0, + "content": "491", + "type": "text" + }, + { + "bbox": [ + 124, + 436, + 434, + 451 + ], + "score": 1.0, + "content": "International Conference on Intelligent Robots and Systems, pages 5026–5033, 2012.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 85, + 460, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 85, + 461, + 101, + 472 + ], + "score": 1.0, + "content": "492", + "type": "text" + }, + { + "bbox": [ + 105, + 460, + 505, + 472 + ], + "score": 1.0, + "content": "[59] Y. H. Tsai, Y. Wu, R. Salakhutdinov, and L. Morency. Demystifying self-supervised learning: An", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 85, + 471, + 364, + 483 + ], + "spans": [ + { + "bbox": [ + 85, + 471, + 100, + 483 + ], + "score": 1.0, + "content": "493", + "type": "text" + }, + { + "bbox": [ + 127, + 471, + 364, + 480 + ], + "score": 1.0, + "content": "information-theoretical framework. CoRR, abs/2006.05576, 2020.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 85, + 491, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 85, + 493, + 102, + 505 + ], + "score": 1.0, + "content": "494", + "type": "text" + }, + { + "bbox": [ + 104, + 491, + 505, + 506 + ], + "score": 1.0, + "content": "[60] T. Unterthiner, D. Keysers, S. Gelly, O. Bousquet, and I. O. Tolstikhin. Predicting neural network accuracy", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 85, + 503, + 290, + 515 + ], + "spans": [ + { + "bbox": [ + 85, + 503, + 100, + 515 + ], + "score": 1.0, + "content": "495", + "type": "text" + }, + { + "bbox": [ + 126, + 503, + 290, + 515 + ], + "score": 1.0, + "content": "from weights. CoRR, abs/2002.11448, 2020.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 85, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 85, + 526, + 102, + 537 + ], + "score": 1.0, + "content": "496", + "type": "text" + }, + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "[61] H. v. Hasselt. Double q-learning. In J. D. Lafferty, C. K. I. Williams, J. Shawe-Taylor, R. S. Zemel, and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 84, + 534, + 322, + 549 + ], + "spans": [ + { + "bbox": [ + 84, + 534, + 100, + 549 + ], + "score": 1.0, + "content": "497", + "type": "text" + }, + { + "bbox": [ + 124, + 534, + 322, + 549 + ], + "score": 1.0, + "content": "A. Culotta, editors, NeurIPS, pages 2613–2621, 2010.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 85, + 557, + 507, + 570 + ], + "spans": [ + { + "bbox": [ + 85, + 558, + 101, + 569 + ], + "score": 1.0, + "content": "498", + "type": "text" + }, + { + "bbox": [ + 104, + 557, + 507, + 570 + ], + "score": 1.0, + "content": "[62] O. Vinyals, I. Babuschkin, W. M. Czarnecki, M. Mathieu, A. Dudzik, J. Chung, D. H. Choi, R. Powell,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 85, + 568, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 85, + 568, + 100, + 579 + ], + "score": 1.0, + "content": "499", + "type": "text" + }, + { + "bbox": [ + 126, + 568, + 506, + 579 + ], + "score": 1.0, + "content": "T. Ewalds, P. Georgiev, J. Oh, D. Horgan, M. Kroiss, I. Danihelka, A. Huang, L. Sifre, T. Cai, J. P. Agapiou,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 85, + 576, + 507, + 591 + ], + "spans": [ + { + "bbox": [ + 85, + 578, + 100, + 590 + ], + "score": 1.0, + "content": "500", + "type": "text" + }, + { + "bbox": [ + 124, + 576, + 507, + 591 + ], + "score": 1.0, + "content": "M. Jaderberg, A. S. Vezhnevets, R. Leblond, T. Pohlen, V. Dalibard, D. Budden, Y. Sulsky, J. Molloy,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 85, + 587, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 85, + 587, + 100, + 599 + ], + "score": 1.0, + "content": "501", + "type": "text" + }, + { + "bbox": [ + 125, + 587, + 506, + 601 + ], + "score": 1.0, + "content": "T. L. Paine, C. Gulcehre, Z. Wang, T. Pfaff, Y. Wu, R. Ring, D. Yogatama, D. Wünsch, K. McKinney,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 85, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 85, + 598, + 100, + 610 + ], + "score": 1.0, + "content": "502", + "type": "text" + }, + { + "bbox": [ + 126, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "O. Smith, T. Schaul, T. Lillicrap, K. Kavukcuoglu, D. Hassabis, C. Apps, and D. Silver. Grandmaster level", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 85, + 606, + 455, + 620 + ], + "spans": [ + { + "bbox": [ + 85, + 608, + 100, + 620 + ], + "score": 1.0, + "content": "503", + "type": "text" + }, + { + "bbox": [ + 124, + 606, + 455, + 620 + ], + "score": 1.0, + "content": "in starcraft ii using multi-agent reinforcement learning. Nature, 575(7782):350–354, 2019.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 85, + 630, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 85, + 630, + 102, + 641 + ], + "score": 1.0, + "content": "504", + "type": "text" + }, + { + "bbox": [ + 105, + 630, + 506, + 642 + ], + "score": 1.0, + "content": "[63] H. Wang, N. S. Keskar, C. Xiong, and R. Socher. Identifying generalization properties in neural networks.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 85, + 640, + 237, + 652 + ], + "spans": [ + { + "bbox": [ + 85, + 640, + 100, + 652 + ], + "score": 1.0, + "content": "505", + "type": "text" + }, + { + "bbox": [ + 125, + 640, + 237, + 651 + ], + "score": 1.0, + "content": "CoRR, abs/1809.07402, 2018.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 85, + 663, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 85, + 663, + 101, + 674 + ], + "score": 1.0, + "content": "506", + "type": "text" + }, + { + "bbox": [ + 105, + 663, + 505, + 674 + ], + "score": 1.0, + "content": "[64] R. Wang, R. Yu, B. An, and Z. Rabinovich. I2hrl: Interactive influence-based hierarchical reinforcement", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 85, + 671, + 288, + 685 + ], + "spans": [ + { + "bbox": [ + 85, + 673, + 100, + 685 + ], + "score": 1.0, + "content": "507", + "type": "text" + }, + { + "bbox": [ + 125, + 671, + 288, + 685 + ], + "score": 1.0, + "content": "learning. In IJCAI, pages 3131–3138, 2020.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 85, + 694, + 506, + 708 + ], + "spans": [ + { + "bbox": [ + 85, + 695, + 101, + 707 + ], + "score": 1.0, + "content": "508", + "type": "text" + }, + { + "bbox": [ + 105, + 694, + 506, + 708 + ], + "score": 1.0, + "content": "[65] J. You, B. Liu, Z. Ying, V. S. Pande, and J. Leskovec. Graph convolutional policy network for goal-directed", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 85, + 704, + 387, + 718 + ], + "spans": [ + { + "bbox": [ + 85, + 705, + 100, + 717 + ], + "score": 1.0, + "content": "509", + "type": "text" + }, + { + "bbox": [ + 124, + 704, + 387, + 718 + ], + "score": 1.0, + "content": "molecular graph generation. In NeurIPS 2018, pages 6412–6422, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 21 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 741, + 311, + 751 + ], + "lines": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "spans": [ + { + "bbox": [ + 299, + 740, + 313, + 754 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "index", + "bbox": [ + 84, + 56, + 507, + 725 + ], + "lines": [], + "index": 21, + "bbox_fs": [ + 84, + 72, + 507, + 718 + ], + "lines_deleted": true + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 131, + 92, + 202, + 102 + ], + "lines": [ + { + "bbox": [ + 130, + 90, + 204, + 103 + ], + "spans": [ + { + "bbox": [ + 130, + 90, + 204, + 103 + ], + "score": 1.0, + "content": "1. For all authors...", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 147, + 105, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 146, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 146, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper’s contribu-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 162, + 115, + 246, + 127 + ], + "spans": [ + { + "bbox": [ + 162, + 115, + 246, + 127 + ], + "score": 1.0, + "content": "tions and scope? [Yes]", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 145, + 126, + 464, + 140 + ], + "spans": [ + { + "bbox": [ + 145, + 126, + 464, + 140 + ], + "score": 1.0, + "content": "(b) Did you describe the limitations of your work? [Yes] See the future work in Sec. 6.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 147, + 139, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 147, + 139, + 505, + 151 + ], + "score": 1.0, + "content": "(c) Did you discuss any potential negative societal impacts of your work? [No] Our work is on", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 162, + 149, + 475, + 160 + ], + "spans": [ + { + "bbox": [ + 162, + 149, + 475, + 160 + ], + "score": 1.0, + "content": "general Reinforcement Learning study. No specific practical application is considered.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 146, + 160, + 503, + 173 + ], + "spans": [ + { + "bbox": [ + 146, + 160, + 503, + 173 + ], + "score": 1.0, + "content": "(d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes]", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 131, + 175, + 286, + 186 + ], + "lines": [ + { + "bbox": [ + 130, + 174, + 288, + 187 + ], + "spans": [ + { + "bbox": [ + 130, + 174, + 288, + 187 + ], + "score": 1.0, + "content": "2. If you are including theoretical results...", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 147, + 189, + 420, + 212 + ], + "lines": [ + { + "bbox": [ + 147, + 188, + 422, + 201 + ], + "spans": [ + { + "bbox": [ + 147, + 188, + 422, + 201 + ], + "score": 1.0, + "content": "(a) Did you state the full set of assumptions of all theoretical results? [Yes]", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 146, + 200, + 396, + 213 + ], + "spans": [ + { + "bbox": [ + 146, + 200, + 396, + 213 + ], + "score": 1.0, + "content": "(b) Did you include complete proofs of all theoretical results? [Yes]", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 131, + 216, + 231, + 226 + ], + "lines": [ + { + "bbox": [ + 129, + 214, + 233, + 227 + ], + "spans": [ + { + "bbox": [ + 129, + 214, + 233, + 227 + ], + "score": 1.0, + "content": "3. If you ran experiments...", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 147, + 229, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 146, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 146, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "(a) Did you include the code, data, and instructions needed to reproduce the main experimental", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 162, + 239, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 162, + 239, + 505, + 249 + ], + "score": 1.0, + "content": "results (either in the supplemental material or as a URL)? [No] Our experimental environment", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 161, + 249, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 161, + 249, + 506, + 260 + ], + "score": 1.0, + "content": "are public and standard. All the information needed to reproduce our results is provided in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 161, + 258, + 392, + 271 + ], + "spans": [ + { + "bbox": [ + 161, + 258, + 392, + 271 + ], + "score": 1.0, + "content": "main body and appendix. Code will be available publicly soon.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 146, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 146, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "(b) Did you specify all the training details (e.g., data splits, hyperparameters, how they were chosen)?", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 162, + 281, + 464, + 291 + ], + "spans": [ + { + "bbox": [ + 162, + 281, + 464, + 291 + ], + "score": 1.0, + "content": "[Yes] Partially in main body and all details can be found in the appendix document.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 147, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 147, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "(c) Did you report error bars (e.g., with respect to the random seed after running experiments", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 162, + 302, + 246, + 314 + ], + "spans": [ + { + "bbox": [ + 162, + 302, + 246, + 314 + ], + "score": 1.0, + "content": "multiple times)? [Yes]", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 147, + 315, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 147, + 315, + 506, + 326 + ], + "score": 1.0, + "content": "(d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 162, + 325, + 313, + 336 + ], + "spans": [ + { + "bbox": [ + 162, + 325, + 313, + 336 + ], + "score": 1.0, + "content": "internal cluster, or cloud provider)? [Yes]", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 132, + 339, + 470, + 349 + ], + "lines": [ + { + "bbox": [ + 129, + 337, + 471, + 351 + ], + "spans": [ + { + "bbox": [ + 129, + 337, + 471, + 351 + ], + "score": 1.0, + "content": "4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets...", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 147, + 353, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 146, + 353, + 398, + 363 + ], + "spans": [ + { + "bbox": [ + 146, + 353, + 398, + 363 + ], + "score": 1.0, + "content": "(a) If your work uses existing assets, did you cite the creators? [Yes]", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 146, + 364, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 146, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "(b) Did you mention the license of the assets? [Yes] We use a free education licence for students for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 161, + 374, + 198, + 385 + ], + "spans": [ + { + "bbox": [ + 161, + 374, + 198, + 385 + ], + "score": 1.0, + "content": "MuJoCo.", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 147, + 386, + 474, + 398 + ], + "spans": [ + { + "bbox": [ + 147, + 386, + 474, + 398 + ], + "score": 1.0, + "content": "(c) Did you include any new assets either in the supplemental material or as a URL? [No]", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 146, + 398, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 146, + 398, + 506, + 409 + ], + "score": 1.0, + "content": "(d) Did you discuss whether and how consent was obtained from people whose data you’re us-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 162, + 408, + 236, + 420 + ], + "spans": [ + { + "bbox": [ + 162, + 408, + 236, + 420 + ], + "score": 1.0, + "content": "ing/curating? [N/A]", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 147, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 147, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "(e) Did you discuss whether the data you are using/curating contains personally identifiable informa-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 162, + 431, + 281, + 442 + ], + "spans": [ + { + "bbox": [ + 162, + 431, + 281, + 442 + ], + "score": 1.0, + "content": "tion or offensive content? [N/A]", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 131, + 444, + 403, + 455 + ], + "lines": [ + { + "bbox": [ + 129, + 442, + 404, + 457 + ], + "spans": [ + { + "bbox": [ + 129, + 442, + 404, + 457 + ], + "score": 1.0, + "content": "5. If you used crowdsourcing or conducted research with human subjects...", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 147, + 458, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 146, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 146, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "(a) Did you include the full text of instructions given to participants and screenshots, if applicable?", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 161, + 468, + 187, + 480 + ], + "spans": [ + { + "bbox": [ + 161, + 468, + 187, + 480 + ], + "score": 1.0, + "content": "[N/A]", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 147, + 479, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 147, + 479, + 506, + 492 + ], + "score": 1.0, + "content": "(b) Did you describe any potential participant risks, with links to Institutional Review Board (IRB)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 161, + 491, + 277, + 501 + ], + "spans": [ + { + "bbox": [ + 161, + 491, + 277, + 501 + ], + "score": 1.0, + "content": "approvals, if applicable? [N/A]", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 147, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 147, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "(c) Did you include the estimated hourly wage paid to participants and the total amount spent on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 161, + 513, + 284, + 523 + ], + "spans": [ + { + "bbox": [ + 161, + 513, + 284, + 523 + ], + "score": 1.0, + "content": "participant compensation? [N/A]", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33.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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 83, + 73, + 102, + 532 + ], + "lines": [ + { + "bbox": [ + 85, + 74, + 100, + 87 + ], + "spans": [ + { + "bbox": [ + 85, + 74, + 100, + 87 + ], + "score": 1.0, + "content": "510", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 92, + 100, + 104 + ], + "spans": [ + { + "bbox": [ + 85, + 92, + 100, + 104 + ], + "score": 1.0, + "content": "511", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 105, + 101, + 118 + ], + "spans": [ + { + "bbox": [ + 84, + 105, + 101, + 118 + ], + "score": 1.0, + "content": "512", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 116, + 101, + 128 + ], + "spans": [ + { + "bbox": [ + 84, + 116, + 101, + 128 + ], + "score": 1.0, + "content": "513", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 127, + 101, + 141 + ], + "spans": [ + { + "bbox": [ + 84, + 127, + 101, + 141 + ], + "score": 1.0, + "content": "514", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 140, + 101, + 151 + ], + "spans": [ + { + "bbox": [ + 84, + 140, + 101, + 151 + ], + "score": 1.0, + "content": "515", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 150, + 101, + 162 + ], + "spans": [ + { + "bbox": [ + 84, + 150, + 101, + 162 + ], + "score": 1.0, + "content": "516", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 162, + 101, + 176 + ], + "spans": [ + { + "bbox": [ + 84, + 162, + 101, + 176 + ], + "score": 1.0, + "content": "517", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 176, + 101, + 188 + ], + "spans": [ + { + "bbox": [ + 85, + 176, + 101, + 188 + ], + "score": 1.0, + "content": "518", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 190, + 100, + 203 + ], + "spans": [ + { + "bbox": [ + 85, + 190, + 100, + 203 + ], + "score": 1.0, + "content": "519", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 202, + 100, + 215 + ], + "spans": [ + { + "bbox": [ + 85, + 202, + 100, + 215 + ], + "score": 1.0, + "content": "520", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 216, + 100, + 229 + ], + "spans": [ + { + "bbox": [ + 85, + 216, + 100, + 229 + ], + "score": 1.0, + "content": "521", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 229, + 100, + 241 + ], + "spans": [ + { + "bbox": [ + 85, + 229, + 100, + 241 + ], + "score": 1.0, + "content": "522", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 240, + 101, + 252 + ], + "spans": [ + { + "bbox": [ + 85, + 240, + 101, + 252 + ], + "score": 1.0, + "content": "523", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 249, + 101, + 261 + ], + "spans": [ + { + "bbox": [ + 85, + 249, + 101, + 261 + ], + "score": 1.0, + "content": "524", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 260, + 101, + 272 + ], + "spans": [ + { + "bbox": [ + 85, + 260, + 101, + 272 + ], + "score": 1.0, + "content": "525", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 271, + 101, + 283 + ], + "spans": [ + { + "bbox": [ + 84, + 271, + 101, + 283 + ], + "score": 1.0, + "content": "526", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 281, + 101, + 294 + ], + "spans": [ + { + "bbox": [ + 85, + 281, + 101, + 294 + ], + "score": 1.0, + "content": "527", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 293, + 101, + 305 + ], + "spans": [ + { + "bbox": [ + 85, + 293, + 101, + 305 + ], + "score": 1.0, + "content": "528", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 303, + 100, + 316 + ], + "spans": [ + { + "bbox": [ + 85, + 303, + 100, + 316 + ], + "score": 1.0, + "content": "529", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 315, + 100, + 327 + ], + "spans": [ + { + "bbox": [ + 85, + 315, + 100, + 327 + ], + "score": 1.0, + "content": "530", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 326, + 100, + 339 + ], + "spans": [ + { + "bbox": [ + 84, + 326, + 100, + 339 + ], + "score": 1.0, + "content": "531", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 339, + 101, + 353 + ], + "spans": [ + { + "bbox": [ + 84, + 339, + 101, + 353 + ], + "score": 1.0, + "content": "532", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 353, + 100, + 366 + ], + "spans": [ + { + "bbox": [ + 85, + 353, + 100, + 366 + ], + "score": 1.0, + "content": "533", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 365, + 101, + 376 + ], + "spans": [ + { + "bbox": [ + 85, + 365, + 101, + 376 + ], + "score": 1.0, + "content": "534", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 375, + 101, + 388 + ], + "spans": [ + { + "bbox": [ + 85, + 375, + 101, + 388 + ], + "score": 1.0, + "content": "535", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 387, + 100, + 400 + ], + "spans": [ + { + "bbox": [ + 85, + 387, + 100, + 400 + ], + "score": 1.0, + "content": "536", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 399, + 100, + 411 + ], + "spans": [ + { + "bbox": [ + 85, + 399, + 100, + 411 + ], + "score": 1.0, + "content": "537", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 409, + 101, + 421 + ], + "spans": [ + { + "bbox": [ + 85, + 409, + 101, + 421 + ], + "score": 1.0, + "content": "538", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 421, + 101, + 433 + ], + "spans": [ + { + "bbox": [ + 85, + 421, + 101, + 433 + ], + "score": 1.0, + "content": "539", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 431, + 100, + 443 + ], + "spans": [ + { + "bbox": [ + 85, + 431, + 100, + 443 + ], + "score": 1.0, + "content": "540", + "type": "text" + } + ] + }, + { + "bbox": [ + 85, + 444, + 100, + 458 + ], + "spans": [ + { + "bbox": [ + 85, + 444, + 100, + 458 + ], + "score": 1.0, + "content": "541", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 459, + 101, + 470 + ], + "spans": [ + { + "bbox": [ + 84, + 459, + 101, + 470 + ], + "score": 1.0, + "content": "542", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 468, + 101, + 482 + ], + "spans": [ + { + "bbox": [ + 84, + 468, + 101, + 482 + ], + "score": 1.0, + "content": "543", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 480, + 101, + 492 + ], + "spans": [ + { + "bbox": [ + 84, + 480, + 101, + 492 + ], + "score": 1.0, + "content": "544", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 491, + 101, + 503 + ], + "spans": [ + { + "bbox": [ + 84, + 491, + 101, + 503 + ], + "score": 1.0, + "content": "545", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 502, + 101, + 516 + ], + "spans": [ + { + "bbox": [ + 84, + 502, + 101, + 516 + ], + "score": 1.0, + "content": "546", + "type": "text" + } + ] + }, + { + "bbox": [ + 84, + 513, + 101, + 524 + ], + "spans": [ + { + "bbox": [ + 84, + 513, + 101, + 524 + ], + "score": 1.0, + "content": "547", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 86, + 71, + 156, + 84 + ], + "lines": [ + { + "bbox": [ + 104, + 70, + 158, + 86 + ], + "spans": [ + { + "bbox": [ + 104, + 70, + 158, + 86 + ], + "score": 1.0, + "content": "Checklist", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 131, + 92, + 202, + 102 + ], + "lines": [ + { + "bbox": [ + 130, + 90, + 204, + 103 + ], + "spans": [ + { + "bbox": [ + 130, + 90, + 204, + 103 + ], + "score": 1.0, + "content": "1. For all authors...", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 130, + 90, + 204, + 103 + ] + }, + { + "type": "list", + "bbox": [ + 147, + 105, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 146, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 146, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "(a) Do the main claims made in the abstract and introduction accurately reflect the paper’s contribu-", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 115, + 246, + 127 + ], + "spans": [ + { + "bbox": [ + 162, + 115, + 246, + 127 + ], + "score": 1.0, + "content": "tions and scope? [Yes]", + "type": "text" + } + ], + "index": 2, + "is_list_end_line": true + }, + { + "bbox": [ + 145, + 126, + 464, + 140 + ], + "spans": [ + { + "bbox": [ + 145, + 126, + 464, + 140 + ], + "score": 1.0, + "content": "(b) Did you describe the limitations of your work? [Yes] See the future work in Sec. 6.", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 139, + 505, + 151 + ], + "spans": [ + { + "bbox": [ + 147, + 139, + 505, + 151 + ], + "score": 1.0, + "content": "(c) Did you discuss any potential negative societal impacts of your work? [No] Our work is on", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 149, + 475, + 160 + ], + "spans": [ + { + "bbox": [ + 162, + 149, + 475, + 160 + ], + "score": 1.0, + "content": "general Reinforcement Learning study. No specific practical application is considered.", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 160, + 503, + 173 + ], + "spans": [ + { + "bbox": [ + 146, + 160, + 503, + 173 + ], + "score": 1.0, + "content": "(d) Have you read the ethics review guidelines and ensured that your paper conforms to them? [Yes]", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + } + ], + "index": 3.5, + "bbox_fs": [ + 145, + 104, + 506, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 175, + 286, + 186 + ], + "lines": [ + { + "bbox": [ + 130, + 174, + 288, + 187 + ], + "spans": [ + { + "bbox": [ + 130, + 174, + 288, + 187 + ], + "score": 1.0, + "content": "2. If you are including theoretical results...", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 130, + 174, + 288, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 147, + 189, + 420, + 212 + ], + "lines": [ + { + "bbox": [ + 147, + 188, + 422, + 201 + ], + "spans": [ + { + "bbox": [ + 147, + 188, + 422, + 201 + ], + "score": 1.0, + "content": "(a) Did you state the full set of assumptions of all theoretical results? [Yes]", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 146, + 200, + 396, + 213 + ], + "spans": [ + { + "bbox": [ + 146, + 200, + 396, + 213 + ], + "score": 1.0, + "content": "(b) Did you include complete proofs of all theoretical results? [Yes]", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 146, + 188, + 422, + 213 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 216, + 231, + 226 + ], + "lines": [ + { + "bbox": [ + 129, + 214, + 233, + 227 + ], + "spans": [ + { + "bbox": [ + 129, + 214, + 233, + 227 + ], + "score": 1.0, + "content": "3. If you ran experiments...", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 129, + 214, + 233, + 227 + ] + }, + { + "type": "list", + "bbox": [ + 147, + 229, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 146, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 146, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "(a) Did you include the code, data, and instructions needed to reproduce the main experimental", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 239, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 162, + 239, + 505, + 249 + ], + "score": 1.0, + "content": "results (either in the supplemental material or as a URL)? [No] Our experimental environment", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 161, + 249, + 506, + 260 + ], + "spans": [ + { + "bbox": [ + 161, + 249, + 506, + 260 + ], + "score": 1.0, + "content": "are public and standard. All the information needed to reproduce our results is provided in the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 161, + 258, + 392, + 271 + ], + "spans": [ + { + "bbox": [ + 161, + 258, + 392, + 271 + ], + "score": 1.0, + "content": "main body and appendix. Code will be available publicly soon.", + "type": "text" + } + ], + "index": 14, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 270, + 505, + 283 + ], + "spans": [ + { + "bbox": [ + 146, + 270, + 505, + 283 + ], + "score": 1.0, + "content": "(b) Did you specify all the training details (e.g., data splits, hyperparameters, how they were chosen)?", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 281, + 464, + 291 + ], + "spans": [ + { + "bbox": [ + 162, + 281, + 464, + 291 + ], + "score": 1.0, + "content": "[Yes] Partially in main body and all details can be found in the appendix document.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 293, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 147, + 293, + 505, + 304 + ], + "score": 1.0, + "content": "(c) Did you report error bars (e.g., with respect to the random seed after running experiments", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 302, + 246, + 314 + ], + "spans": [ + { + "bbox": [ + 162, + 302, + 246, + 314 + ], + "score": 1.0, + "content": "multiple times)? [Yes]", + "type": "text" + } + ], + "index": 18, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 315, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 147, + 315, + 506, + 326 + ], + "score": 1.0, + "content": "(d) Did you include the total amount of compute and the type of resources used (e.g., type of GPUs,", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 325, + 313, + 336 + ], + "spans": [ + { + "bbox": [ + 162, + 325, + 313, + 336 + ], + "score": 1.0, + "content": "internal cluster, or cloud provider)? [Yes]", + "type": "text" + } + ], + "index": 20, + "is_list_end_line": true + } + ], + "index": 15.5, + "bbox_fs": [ + 146, + 228, + 506, + 336 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 339, + 470, + 349 + ], + "lines": [ + { + "bbox": [ + 129, + 337, + 471, + 351 + ], + "spans": [ + { + "bbox": [ + 129, + 337, + 471, + 351 + ], + "score": 1.0, + "content": "4. If you are using existing assets (e.g., code, data, models) or curating/releasing new assets...", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21, + "bbox_fs": [ + 129, + 337, + 471, + 351 + ] + }, + { + "type": "list", + "bbox": [ + 147, + 353, + 505, + 442 + ], + "lines": [ + { + "bbox": [ + 146, + 353, + 398, + 363 + ], + "spans": [ + { + "bbox": [ + 146, + 353, + 398, + 363 + ], + "score": 1.0, + "content": "(a) If your work uses existing assets, did you cite the creators? [Yes]", + "type": "text" + } + ], + "index": 22, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 364, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 146, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "(b) Did you mention the license of the assets? [Yes] We use a free education licence for students for", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 374, + 198, + 385 + ], + "spans": [ + { + "bbox": [ + 161, + 374, + 198, + 385 + ], + "score": 1.0, + "content": "MuJoCo.", + "type": "text" + } + ], + "index": 24, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 386, + 474, + 398 + ], + "spans": [ + { + "bbox": [ + 147, + 386, + 474, + 398 + ], + "score": 1.0, + "content": "(c) Did you include any new assets either in the supplemental material or as a URL? [No]", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 146, + 398, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 146, + 398, + 506, + 409 + ], + "score": 1.0, + "content": "(d) Did you discuss whether and how consent was obtained from people whose data you’re us-", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 408, + 236, + 420 + ], + "spans": [ + { + "bbox": [ + 162, + 408, + 236, + 420 + ], + "score": 1.0, + "content": "ing/curating? [N/A]", + "type": "text" + } + ], + "index": 27, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 420, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 147, + 420, + 506, + 432 + ], + "score": 1.0, + "content": "(e) Did you discuss whether the data you are using/curating contains personally identifiable informa-", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 162, + 431, + 281, + 442 + ], + "spans": [ + { + "bbox": [ + 162, + 431, + 281, + 442 + ], + "score": 1.0, + "content": "tion or offensive content? [N/A]", + "type": "text" + } + ], + "index": 29, + "is_list_end_line": true + } + ], + "index": 25.5, + "bbox_fs": [ + 146, + 353, + 506, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 131, + 444, + 403, + 455 + ], + "lines": [ + { + "bbox": [ + 129, + 442, + 404, + 457 + ], + "spans": [ + { + "bbox": [ + 129, + 442, + 404, + 457 + ], + "score": 1.0, + "content": "5. If you used crowdsourcing or conducted research with human subjects...", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 129, + 442, + 404, + 457 + ] + }, + { + "type": "list", + "bbox": [ + 147, + 458, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 146, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 146, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "(a) Did you include the full text of instructions given to participants and screenshots, if applicable?", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 468, + 187, + 480 + ], + "spans": [ + { + "bbox": [ + 161, + 468, + 187, + 480 + ], + "score": 1.0, + "content": "[N/A]", + "type": "text" + } + ], + "index": 32, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 479, + 506, + 492 + ], + "spans": [ + { + "bbox": [ + 147, + 479, + 506, + 492 + ], + "score": 1.0, + "content": "(b) Did you describe any potential participant risks, with links to Institutional Review Board (IRB)", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 491, + 277, + 501 + ], + "spans": [ + { + "bbox": [ + 161, + 491, + 277, + 501 + ], + "score": 1.0, + "content": "approvals, if applicable? [N/A]", + "type": "text" + } + ], + "index": 34, + "is_list_end_line": true + }, + { + "bbox": [ + 147, + 501, + 505, + 514 + ], + "spans": [ + { + "bbox": [ + 147, + 501, + 505, + 514 + ], + "score": 1.0, + "content": "(c) Did you include the estimated hourly wage paid to participants and the total amount spent on", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 161, + 513, + 284, + 523 + ], + "spans": [ + { + "bbox": [ + 161, + 513, + 284, + 523 + ], + "score": 1.0, + "content": "participant compensation? [N/A]", + "type": "text" + } + ], + "index": 36, + "is_list_end_line": true + } + ], + "index": 33.5, + "bbox_fs": [ + 146, + 457, + 506, + 523 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_model.json b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_model.json new file mode 100644 index 0000000000000000000000000000000000000000..dabd4335f5ee19edac1b6fa55a91dd3dd52d92ea --- /dev/null +++ b/parse/train/Dx3x05MlFwj/Dx3x05MlFwj_model.json @@ -0,0 +1,29135 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 254, + 772, + 1305, + 772, + 1305, + 1349, + 254, + 1349 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 249, + 1480, + 1405, + 1480, + 1405, + 1876, + 249, + 1876 + ], + "score": 0.973 + }, + { + "category_id": 0, + "poly": [ + 374, + 271, + 1327, + 271, + 1327, + 382, + 374, + 382 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 253, + 1889, + 1401, + 1889, + 1401, + 1983, + 253, + 1983 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 720, + 499, + 986, + 499, + 986, + 620, + 720, + 620 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 788, + 701, + 913, + 701, + 913, + 737, + 788, + 737 + ], + "score": 0.893 + }, + { + "category_id": 0, + "poly": [ + 252, + 1409, + 530, + 1409, + 530, + 1447, + 252, + 1447 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 287, + 2033, + 1387, + 2033, + 1387, + 2062, + 287, + 2062 + ], + "score": 0.813 + }, + { + "category_id": 13, + "poly": [ + 1250, + 1288, + 1304, + 1288, + 1304, + 1317, + 1250, + 1317 + ], + "score": 0.85, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 891, + 864, + 979, + 864, + 979, + 893, + 891, + 893 + ], + "score": 0.26, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 269.0, + 1312.0, + 269.0, + 1312.0, + 330.0, + 384.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 325.0, + 1331.0, + 325.0, + 1331.0, + 387.0, + 368.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 698.0, + 920.0, + 698.0, + 920.0, + 742.0, + 782.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1407.0, + 535.0, + 1407.0, + 535.0, + 1453.0, + 241.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2029.0, + 1391.0, + 2029.0, + 1391.0, + 2066.0, + 294.0, + 2066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 781.0, + 277.0, + 781.0, + 277.0, + 803.0, + 259.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 771.0, + 1308.0, + 771.0, + 1308.0, + 808.0, + 396.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 810.0, + 277.0, + 810.0, + 277.0, + 834.0, + 259.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 804.0, + 1306.0, + 804.0, + 1306.0, + 837.0, + 393.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 841.0, + 277.0, + 841.0, + 277.0, + 864.0, + 258.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 830.0, + 1306.0, + 830.0, + 1306.0, + 870.0, + 392.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 870.0, + 280.0, + 870.0, + 280.0, + 897.0, + 257.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 864.0, + 890.0, + 864.0, + 890.0, + 897.0, + 391.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 864.0, + 1308.0, + 864.0, + 1308.0, + 897.0, + 980.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 259.0, + 901.0, + 278.0, + 901.0, + 278.0, + 925.0, + 259.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 894.0, + 1307.0, + 894.0, + 1307.0, + 930.0, + 393.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 931.0, + 277.0, + 931.0, + 277.0, + 955.0, + 258.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 922.0, + 1309.0, + 922.0, + 1309.0, + 961.0, + 390.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 959.0, + 280.0, + 959.0, + 280.0, + 986.0, + 257.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 952.0, + 1307.0, + 952.0, + 1307.0, + 990.0, + 393.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 992.0, + 277.0, + 992.0, + 277.0, + 1017.0, + 258.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 984.0, + 1307.0, + 984.0, + 1307.0, + 1021.0, + 395.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 257.0, + 1022.0, + 280.0, + 1022.0, + 280.0, + 1048.0, + 257.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1015.0, + 1307.0, + 1015.0, + 1307.0, + 1051.0, + 393.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1051.0, + 280.0, + 1051.0, + 280.0, + 1079.0, + 250.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1045.0, + 1307.0, + 1045.0, + 1307.0, + 1082.0, + 393.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1083.0, + 277.0, + 1083.0, + 277.0, + 1108.0, + 251.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1075.0, + 1306.0, + 1075.0, + 1306.0, + 1110.0, + 393.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1111.0, + 280.0, + 1111.0, + 280.0, + 1140.0, + 248.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1104.0, + 1307.0, + 1104.0, + 1307.0, + 1143.0, + 393.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 251.0, + 1143.0, + 277.0, + 1143.0, + 277.0, + 1169.0, + 251.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1135.0, + 1307.0, + 1135.0, + 1307.0, + 1173.0, + 392.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1172.0, + 280.0, + 1172.0, + 280.0, + 1200.0, + 248.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1166.0, + 1308.0, + 1166.0, + 1308.0, + 1202.0, + 393.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1202.0, + 280.0, + 1202.0, + 280.0, + 1230.0, + 248.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1192.0, + 1307.0, + 1192.0, + 1307.0, + 1236.0, + 390.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1232.0, + 280.0, + 1232.0, + 280.0, + 1260.0, + 248.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1229.0, + 1307.0, + 1229.0, + 1307.0, + 1260.0, + 392.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1264.0, + 278.0, + 1264.0, + 278.0, + 1292.0, + 248.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1258.0, + 1307.0, + 1258.0, + 1307.0, + 1292.0, + 391.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1293.0, + 280.0, + 1293.0, + 280.0, + 1321.0, + 248.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1287.0, + 1249.0, + 1287.0, + 1249.0, + 1324.0, + 393.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 1287.0, + 1308.0, + 1287.0, + 1308.0, + 1324.0, + 1305.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1325.0, + 277.0, + 1325.0, + 277.0, + 1350.0, + 250.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1318.0, + 1233.0, + 1318.0, + 1233.0, + 1353.0, + 392.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1486.0, + 277.0, + 1486.0, + 277.0, + 1511.0, + 249.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1479.0, + 1405.0, + 1479.0, + 1405.0, + 1515.0, + 292.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1517.0, + 277.0, + 1517.0, + 277.0, + 1544.0, + 249.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1511.0, + 1405.0, + 1511.0, + 1405.0, + 1544.0, + 295.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1548.0, + 277.0, + 1548.0, + 277.0, + 1573.0, + 249.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1579.0, + 292.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1577.0, + 277.0, + 1577.0, + 277.0, + 1604.0, + 249.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1572.0, + 1405.0, + 1572.0, + 1405.0, + 1608.0, + 293.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1607.0, + 277.0, + 1607.0, + 277.0, + 1634.0, + 247.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1602.0, + 1405.0, + 1602.0, + 1405.0, + 1638.0, + 293.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1638.0, + 277.0, + 1638.0, + 277.0, + 1664.0, + 247.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1630.0, + 1408.0, + 1630.0, + 1408.0, + 1668.0, + 292.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1669.0, + 277.0, + 1669.0, + 277.0, + 1695.0, + 247.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1659.0, + 1407.0, + 1659.0, + 1407.0, + 1701.0, + 289.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1699.0, + 277.0, + 1699.0, + 277.0, + 1726.0, + 247.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1692.0, + 1404.0, + 1692.0, + 1404.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1728.0, + 277.0, + 1728.0, + 277.0, + 1756.0, + 247.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1722.0, + 1407.0, + 1722.0, + 1407.0, + 1757.0, + 292.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1758.0, + 280.0, + 1758.0, + 280.0, + 1788.0, + 246.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1753.0, + 1407.0, + 1753.0, + 1407.0, + 1789.0, + 295.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1790.0, + 277.0, + 1790.0, + 277.0, + 1818.0, + 249.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1784.0, + 1405.0, + 1784.0, + 1405.0, + 1819.0, + 293.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1820.0, + 277.0, + 1820.0, + 277.0, + 1847.0, + 249.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1814.0, + 1407.0, + 1814.0, + 1407.0, + 1850.0, + 295.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1851.0, + 277.0, + 1851.0, + 277.0, + 1878.0, + 249.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1845.0, + 803.0, + 1845.0, + 803.0, + 1879.0, + 292.0, + 1879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1896.0, + 278.0, + 1896.0, + 278.0, + 1920.0, + 250.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1889.0, + 1406.0, + 1889.0, + 1406.0, + 1926.0, + 288.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1927.0, + 278.0, + 1927.0, + 278.0, + 1950.0, + 247.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1919.0, + 1404.0, + 1919.0, + 1404.0, + 1953.0, + 291.0, + 1953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1951.0, + 1406.0, + 1951.0, + 1406.0, + 1988.0, + 247.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 496.0, + 989.0, + 496.0, + 989.0, + 533.0, + 717.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 527.0, + 913.0, + 527.0, + 913.0, + 563.0, + 787.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 557.0, + 902.0, + 557.0, + 902.0, + 592.0, + 797.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 593.0, + 890.0, + 593.0, + 890.0, + 619.0, + 808.0, + 619.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 250, + 1702, + 1405, + 1702, + 1405, + 2008, + 250, + 2008 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 250, + 1372, + 1404, + 1372, + 1404, + 1587, + 250, + 1587 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 249, + 1024, + 1405, + 1024, + 1405, + 1358, + 249, + 1358 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 249, + 644, + 1404, + 644, + 1404, + 1011, + 249, + 1011 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 297, + 461, + 1405, + 461, + 1405, + 586, + 297, + 586 + ], + "score": 0.962 + }, + { + "category_id": 0, + "poly": [ + 254, + 1631, + 547, + 1631, + 547, + 1669, + 254, + 1669 + ], + "score": 0.898 + }, + { + "category_id": 3, + "poly": [ + 391, + 201, + 1301, + 201, + 1301, + 430, + 391, + 430 + ], + "score": 0.788 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.713 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.172 + }, + { + "category_id": 3, + "poly": [ + 389, + 1, + 1303, + 1, + 1303, + 433, + 389, + 433 + ], + "score": 0.112 + }, + { + "category_id": 13, + "poly": [ + 1070, + 492, + 1159, + 492, + 1159, + 526, + 1070, + 526 + ], + "score": 0.92, + "latex": "\\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } )" + }, + { + "category_id": 13, + "poly": [ + 1233, + 525, + 1279, + 525, + 1279, + 555, + 1233, + 555 + ], + "score": 0.9, + "latex": "\\phi , \\theta" + }, + { + "category_id": 13, + "poly": [ + 739, + 494, + 773, + 494, + 773, + 527, + 739, + 527 + ], + "score": 0.88, + "latex": "V _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 849, + 1297, + 903, + 1297, + 903, + 1326, + 849, + 1326 + ], + "score": 0.87, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 867, + 529, + 887, + 529, + 887, + 552, + 867, + 552 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 423, + 230, + 447, + 230, + 447, + 245, + 423, + 245 + ], + "score": 0.35, + "latex": "\\pi _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 836, + 1494, + 882, + 1494, + 882, + 1523, + 836, + 1523 + ], + "score": 0.28, + "latex": "1 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 461.0, + 1408.0, + 461.0, + 1408.0, + 498.0, + 295.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 738.0, + 492.0, + 738.0, + 527.0, + 294.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 492.0, + 1069.0, + 492.0, + 1069.0, + 527.0, + 774.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 492.0, + 1405.0, + 492.0, + 1405.0, + 527.0, + 1160.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 525.0, + 866.0, + 525.0, + 866.0, + 559.0, + 294.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 525.0, + 1232.0, + 525.0, + 1232.0, + 559.0, + 888.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 525.0, + 1405.0, + 525.0, + 1405.0, + 559.0, + 1280.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 555.0, + 1279.0, + 555.0, + 1279.0, + 588.0, + 295.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1628.0, + 553.0, + 1628.0, + 553.0, + 1672.0, + 242.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 207.0, + 1226.0, + 207.0, + 1226.0, + 234.0, + 1190.0, + 234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 213.0, + 1296.0, + 213.0, + 1296.0, + 223.0, + 1275.0, + 223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 221.0, + 595.0, + 221.0, + 595.0, + 248.0, + 562.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 225.0, + 800.0, + 225.0, + 800.0, + 236.0, + 777.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 235.0, + 1020.0, + 235.0, + 1020.0, + 246.0, + 1011.0, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 231.0, + 1194.0, + 231.0, + 1194.0, + 245.0, + 1182.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 248.0, + 568.0, + 248.0, + 568.0, + 258.0, + 559.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 291.0, + 995.0, + 291.0, + 995.0, + 339.0, + 905.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 294.0, + 1173.0, + 294.0, + 1173.0, + 337.0, + 1082.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 322.0, + 1269.0, + 322.0, + 1269.0, + 330.0, + 1261.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 312.0, + 1298.0, + 312.0, + 1298.0, + 327.0, + 1274.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 339.0, + 529.0, + 339.0, + 529.0, + 376.0, + 484.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 347.0, + 915.0, + 347.0, + 915.0, + 392.0, + 812.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 344.0, + 1083.0, + 344.0, + 1083.0, + 394.0, + 992.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 341.0, + 1257.0, + 341.0, + 1257.0, + 386.0, + 1167.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 400.0, + 635.0, + 400.0, + 635.0, + 423.0, + 516.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 397.0, + 826.0, + 397.0, + 826.0, + 425.0, + 720.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 398.0, + 1051.0, + 398.0, + 1051.0, + 424.0, + 921.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 398.0, + 1255.0, + 398.0, + 1255.0, + 423.0, + 1116.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 208.0, + 880.0, + 208.0, + 880.0, + 236.0, + 849.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 208.5, + 1054.0, + 208.5, + 1054.0, + 235.0, + 1025.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.25, + 220.0, + 725.25, + 220.0, + 725.25, + 246.0, + 699.25, + 246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.25, + 221.5, + 450.25, + 221.5, + 450.25, + 248.5, + 420.25, + 248.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.25, + 234.0, + 978.25, + 234.0, + 978.25, + 264.0, + 925.25, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.75, + 232.0, + 1150.75, + 232.0, + 1150.75, + 260.0, + 1098.75, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.25, + 259.5, + 532.25, + 259.5, + 532.25, + 288.0, + 480.25, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.75, + 255.0, + 654.75, + 255.0, + 654.75, + 281.5, + 607.75, + 281.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 343.5, + 427.0, + 343.5, + 427.0, + 373.5, + 397.0, + 373.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 344.0, + 638.0, + 344.0, + 638.0, + 367.5, + 619.0, + 367.5 + ], + "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": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2093.0, + 838.0, + 2093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 221.0, + 422.0, + 221.0, + 422.0, + 249.0, + 418.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 221.0, + 453.0, + 221.0, + 453.0, + 249.0, + 448.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 221.0, + 801.0, + 221.0, + 801.0, + 239.0, + 776.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 236.0, + 1020.0, + 236.0, + 1020.0, + 245.0, + 1011.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 209.0, + 1057.0, + 209.0, + 1057.0, + 238.0, + 1022.0, + 238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 203.0, + 1227.0, + 203.0, + 1227.0, + 242.0, + 1184.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 248.0, + 698.0, + 248.0, + 698.0, + 256.0, + 691.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 258.0, + 651.0, + 258.0, + 651.0, + 280.0, + 608.0, + 280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 292.0, + 997.0, + 292.0, + 997.0, + 339.0, + 903.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 294.0, + 1172.0, + 294.0, + 1172.0, + 338.0, + 1083.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 312.0, + 1298.0, + 312.0, + 1298.0, + 326.0, + 1273.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 322.0, + 1270.0, + 322.0, + 1270.0, + 330.0, + 1260.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 348.0, + 916.0, + 348.0, + 916.0, + 391.0, + 814.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 345.0, + 1082.0, + 345.0, + 1082.0, + 393.0, + 993.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 343.0, + 1257.0, + 343.0, + 1257.0, + 385.0, + 1168.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 400.0, + 634.0, + 400.0, + 634.0, + 424.0, + 516.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 399.0, + 826.0, + 399.0, + 826.0, + 423.0, + 729.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 396.0, + 1051.0, + 396.0, + 1051.0, + 426.0, + 918.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 397.0, + 1256.0, + 397.0, + 1256.0, + 423.0, + 1116.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 209.0, + 879.0, + 209.0, + 879.0, + 236.5, + 849.0, + 236.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 223.5, + 592.0, + 223.5, + 592.0, + 246.5, + 563.0, + 246.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 219.5, + 726.0, + 219.5, + 726.0, + 246.5, + 697.0, + 246.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 234.5, + 977.0, + 234.5, + 977.0, + 263.5, + 926.0, + 263.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.25, + 233.0, + 1149.25, + 233.0, + 1149.25, + 259.0, + 1101.25, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.75, + 259.0, + 531.75, + 259.0, + 531.75, + 289.0, + 480.75, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 327.0, + 1096.0, + 327.0, + 1096.0, + 331.0, + 1086.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.25, + 344.5, + 431.25, + 344.5, + 431.25, + 373.5, + 393.25, + 373.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.75, + 344.5, + 518.75, + 344.5, + 518.75, + 371.5, + 492.75, + 371.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.25, + 344.5, + 637.25, + 344.5, + 637.25, + 368.0, + 618.25, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1709.0, + 278.0, + 1709.0, + 278.0, + 1734.0, + 248.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1701.0, + 1405.0, + 1701.0, + 1405.0, + 1737.0, + 294.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1738.0, + 280.0, + 1738.0, + 280.0, + 1767.0, + 246.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1731.0, + 1408.0, + 1731.0, + 1408.0, + 1770.0, + 293.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1769.0, + 277.0, + 1769.0, + 277.0, + 1795.0, + 248.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1762.0, + 1409.0, + 1762.0, + 1409.0, + 1799.0, + 292.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1797.0, + 278.0, + 1797.0, + 278.0, + 1827.0, + 246.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1792.0, + 1407.0, + 1792.0, + 1407.0, + 1828.0, + 293.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1830.0, + 277.0, + 1830.0, + 277.0, + 1856.0, + 248.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1823.0, + 1407.0, + 1823.0, + 1407.0, + 1858.0, + 293.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1859.0, + 277.0, + 1859.0, + 277.0, + 1887.0, + 248.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1854.0, + 1407.0, + 1854.0, + 1407.0, + 1889.0, + 295.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1891.0, + 277.0, + 1891.0, + 277.0, + 1916.0, + 248.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1920.0, + 277.0, + 1920.0, + 277.0, + 1946.0, + 248.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1915.0, + 1405.0, + 1915.0, + 1405.0, + 1950.0, + 294.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1951.0, + 278.0, + 1951.0, + 278.0, + 1977.0, + 248.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1946.0, + 1407.0, + 1946.0, + 1407.0, + 1981.0, + 293.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1982.0, + 277.0, + 1982.0, + 277.0, + 2007.0, + 248.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1976.0, + 882.0, + 1976.0, + 882.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 1377.0, + 277.0, + 1377.0, + 277.0, + 1404.0, + 250.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1372.0, + 1404.0, + 1372.0, + 1404.0, + 1407.0, + 294.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1409.0, + 277.0, + 1409.0, + 277.0, + 1435.0, + 248.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1403.0, + 1406.0, + 1403.0, + 1406.0, + 1438.0, + 294.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1440.0, + 278.0, + 1440.0, + 278.0, + 1466.0, + 248.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1434.0, + 1406.0, + 1434.0, + 1406.0, + 1468.0, + 294.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1471.0, + 278.0, + 1471.0, + 278.0, + 1495.0, + 248.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1465.0, + 1406.0, + 1465.0, + 1406.0, + 1498.0, + 291.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1499.0, + 278.0, + 1499.0, + 278.0, + 1525.0, + 248.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1495.0, + 835.0, + 1495.0, + 835.0, + 1526.0, + 294.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1495.0, + 1404.0, + 1495.0, + 1404.0, + 1526.0, + 883.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1531.0, + 278.0, + 1531.0, + 278.0, + 1556.0, + 248.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1524.0, + 1406.0, + 1524.0, + 1406.0, + 1559.0, + 291.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 1561.0, + 278.0, + 1561.0, + 278.0, + 1587.0, + 248.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1555.0, + 1399.0, + 1555.0, + 1399.0, + 1589.0, + 293.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1030.0, + 277.0, + 1030.0, + 277.0, + 1057.0, + 249.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1023.0, + 1411.0, + 1023.0, + 1411.0, + 1061.0, + 295.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1061.0, + 277.0, + 1061.0, + 277.0, + 1088.0, + 249.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1051.0, + 1405.0, + 1051.0, + 1405.0, + 1092.0, + 292.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1091.0, + 277.0, + 1091.0, + 277.0, + 1118.0, + 247.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1119.0, + 295.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1120.0, + 277.0, + 1120.0, + 277.0, + 1149.0, + 247.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1116.0, + 1405.0, + 1116.0, + 1405.0, + 1150.0, + 295.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1152.0, + 277.0, + 1152.0, + 277.0, + 1179.0, + 247.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1146.0, + 1405.0, + 1146.0, + 1405.0, + 1180.0, + 296.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1182.0, + 277.0, + 1182.0, + 277.0, + 1209.0, + 247.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1175.0, + 1407.0, + 1175.0, + 1407.0, + 1211.0, + 292.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 1210.0, + 280.0, + 1210.0, + 280.0, + 1241.0, + 246.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1205.0, + 1407.0, + 1205.0, + 1407.0, + 1243.0, + 292.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1243.0, + 277.0, + 1243.0, + 277.0, + 1270.0, + 247.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1234.0, + 1407.0, + 1234.0, + 1407.0, + 1272.0, + 293.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1272.0, + 277.0, + 1272.0, + 277.0, + 1300.0, + 249.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1264.0, + 1407.0, + 1264.0, + 1407.0, + 1301.0, + 292.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 1302.0, + 277.0, + 1302.0, + 277.0, + 1329.0, + 249.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1294.0, + 848.0, + 1294.0, + 848.0, + 1335.0, + 292.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1294.0, + 1405.0, + 1294.0, + 1405.0, + 1335.0, + 904.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 1333.0, + 277.0, + 1333.0, + 277.0, + 1359.0, + 247.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 835.0, + 1329.0, + 835.0, + 1359.0, + 295.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 651.0, + 277.0, + 651.0, + 277.0, + 678.0, + 249.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 644.0, + 1406.0, + 644.0, + 1406.0, + 682.0, + 293.0, + 682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 682.0, + 277.0, + 682.0, + 277.0, + 708.0, + 247.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 676.0, + 1404.0, + 676.0, + 1404.0, + 709.0, + 294.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 711.0, + 277.0, + 711.0, + 277.0, + 739.0, + 247.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 704.0, + 1406.0, + 704.0, + 1406.0, + 741.0, + 292.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 743.0, + 277.0, + 743.0, + 277.0, + 770.0, + 247.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 736.0, + 1407.0, + 736.0, + 1407.0, + 773.0, + 293.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 772.0, + 277.0, + 772.0, + 277.0, + 800.0, + 247.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 765.0, + 1407.0, + 765.0, + 1407.0, + 802.0, + 292.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 802.0, + 279.0, + 802.0, + 279.0, + 829.0, + 247.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 1406.0, + 794.0, + 1406.0, + 831.0, + 293.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 833.0, + 277.0, + 833.0, + 277.0, + 861.0, + 247.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 826.0, + 1406.0, + 826.0, + 1406.0, + 863.0, + 293.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 863.0, + 277.0, + 863.0, + 277.0, + 889.0, + 247.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 858.0, + 1406.0, + 858.0, + 1406.0, + 891.0, + 293.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 894.0, + 277.0, + 894.0, + 277.0, + 920.0, + 247.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 883.0, + 1406.0, + 883.0, + 1406.0, + 927.0, + 293.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 924.0, + 277.0, + 924.0, + 277.0, + 951.0, + 247.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 919.0, + 1406.0, + 919.0, + 1406.0, + 952.0, + 294.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 955.0, + 277.0, + 955.0, + 277.0, + 981.0, + 247.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 946.0, + 1406.0, + 946.0, + 1406.0, + 984.0, + 292.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 247.0, + 985.0, + 279.0, + 985.0, + 279.0, + 1011.0, + 247.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 979.0, + 1211.0, + 979.0, + 1211.0, + 1016.0, + 292.0, + 1016.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 245, + 580, + 1406, + 580, + 1406, + 1160, + 245, + 1160 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 248, + 203, + 1405, + 203, + 1405, + 568, + 248, + 568 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 242, + 1468, + 1404, + 1468, + 1404, + 1591, + 242, + 1591 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 242, + 1173, + 1404, + 1173, + 1404, + 1356, + 242, + 1356 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 248, + 1682, + 1404, + 1682, + 1404, + 1901, + 248, + 1901 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 244, + 1914, + 1404, + 1914, + 1404, + 2008, + 244, + 2008 + ], + "score": 0.953 + }, + { + "category_id": 0, + "poly": [ + 246, + 1397, + 1010, + 1397, + 1010, + 1437, + 246, + 1437 + ], + "score": 0.929 + }, + { + "category_id": 0, + "poly": [ + 286, + 1627, + 510, + 1627, + 510, + 1659, + 286, + 1659 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2085, + 841, + 2085 + ], + "score": 0.622 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.438 + }, + { + "category_id": 13, + "poly": [ + 551, + 642, + 779, + 642, + 779, + 676, + 551, + 676 + ], + "score": 0.93, + "latex": "J ( \\pi ) = \\mathbb { E } _ { \\rho _ { 0 } } [ v ^ { \\pi } ( s _ { 0 } ) ]" + }, + { + "category_id": 13, + "poly": [ + 615, + 1745, + 762, + 1745, + 762, + 1782, + 615, + 1782 + ], + "score": 0.93, + "latex": "\\pi \\in P ( { \\cal A } ) ^ { | S | }" + }, + { + "category_id": 13, + "poly": [ + 1214, + 1839, + 1398, + 1839, + 1398, + 1873, + 1214, + 1873 + ], + "score": 0.93, + "latex": "r _ { t + 1 } = r ( s _ { t } , a _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1182, + 1945, + 1268, + 1945, + 1268, + 1979, + 1182, + 1979 + ], + "score": 0.93, + "latex": "\\mathbb { V } ( s , \\pi )" + }, + { + "category_id": 13, + "poly": [ + 912, + 1683, + 1074, + 1683, + 1074, + 1717, + 912, + 1717 + ], + "score": 0.93, + "latex": "\\langle S , \\mathcal { A } , r , \\mathcal { P } , \\gamma \\rangle" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1714, + 1374, + 1714, + 1374, + 1747, + 1264, + 1747 + ], + "score": 0.92, + "latex": "\\gamma \\in [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 379, + 1945, + 571, + 1945, + 571, + 1979, + 379, + 1979 + ], + "score": 0.92, + "latex": "\\mathbb { V } ( s , \\pi ) = v ^ { \\pi } ( s )" + }, + { + "category_id": 13, + "poly": [ + 653, + 1809, + 719, + 1809, + 719, + 1841, + 653, + 1841 + ], + "score": 0.92, + "latex": "v ^ { \\pi } ( s )" + }, + { + "category_id": 13, + "poly": [ + 639, + 1977, + 753, + 1977, + 753, + 2009, + 639, + 2009 + ], + "score": 0.92, + "latex": "\\mathbb { Q } ( s , a , \\pi )" + }, + { + "category_id": 13, + "poly": [ + 977, + 1915, + 1161, + 1915, + 1161, + 1944, + 977, + 1944 + ], + "score": 0.91, + "latex": "\\mathbb { V } : \\mathcal { S } \\times \\Pi \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1976, + 1189, + 1976, + 1189, + 2008, + 1128, + 2008 + ], + "score": 0.91, + "latex": "\\mathbb { V } ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 711, + 1838, + 1098, + 1838, + 1098, + 1875, + 711, + 1875 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { v ^ { \\pi } ( s ) = \\mathbb { E } _ { \\pi } \\left[ \\sum _ { t = 0 } ^ { \\infty } \\bar { \\gamma } ^ { t } r _ { t + 1 } \\vert s _ { 0 } = s \\right] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 972, + 647, + 1064, + 647, + 1064, + 675, + 972, + 675 + ], + "score": 0.9, + "latex": "s _ { 0 } \\sim \\rho _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 782, + 1947, + 861, + 1947, + 861, + 1974, + 782, + 1974 + ], + "score": 0.89, + "latex": "\\pi \\in \\Pi" + }, + { + "category_id": 13, + "poly": [ + 655, + 1947, + 727, + 1947, + 727, + 1974, + 655, + 1974 + ], + "score": 0.88, + "latex": "s \\in { \\mathcal { S } }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1780, + 848, + 1780, + 848, + 1807, + 816, + 1807 + ], + "score": 0.87, + "latex": "\\pi ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 383, + 1870, + 423, + 1870, + 423, + 1897, + 383, + 1897 + ], + "score": 0.86, + "latex": "V ^ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1152, + 1685, + 1175, + 1685, + 1175, + 1712, + 1152, + 1712 + ], + "score": 0.81, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 911, + 1716, + 936, + 1716, + 936, + 1742, + 911, + 1742 + ], + "score": 0.8, + "latex": "\\mathcal { P }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1684, + 1402, + 1684, + 1402, + 1711, + 1376, + 1711 + ], + "score": 0.76, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 523, + 1845, + 543, + 1845, + 543, + 1867, + 523, + 1867 + ], + "score": 0.75, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 514, + 1720, + 530, + 1720, + 530, + 1741, + 514, + 1741 + ], + "score": 0.72, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 682, + 1846, + 698, + 1846, + 698, + 1866, + 682, + 1866 + ], + "score": 0.65, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 297, + 648, + 318, + 648, + 318, + 671, + 297, + 671 + ], + "score": 0.4, + "latex": "\\pi" + }, + { + "category_id": 15, + "poly": [ + 233.0, + 1394.0, + 1017.0, + 1394.0, + 1017.0, + 1446.0, + 233.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1623.0, + 515.0, + 1623.0, + 515.0, + 1663.0, + 294.0, + 1663.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": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2091.0, + 838.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 588.0, + 278.0, + 588.0, + 278.0, + 615.0, + 249.0, + 615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 579.0, + 1409.0, + 579.0, + 1409.0, + 619.0, + 291.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 619.0, + 276.0, + 619.0, + 276.0, + 646.0, + 248.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 611.0, + 1406.0, + 611.0, + 1406.0, + 650.0, + 292.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 650.0, + 278.0, + 650.0, + 278.0, + 675.0, + 248.0, + 675.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 640.0, + 296.0, + 640.0, + 296.0, + 681.0, + 291.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 640.0, + 550.0, + 640.0, + 550.0, + 681.0, + 319.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 640.0, + 971.0, + 640.0, + 971.0, + 681.0, + 780.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 640.0, + 1409.0, + 640.0, + 1409.0, + 681.0, + 1065.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 679.0, + 278.0, + 679.0, + 278.0, + 705.0, + 248.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 669.0, + 1409.0, + 669.0, + 1409.0, + 712.0, + 291.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 709.0, + 278.0, + 709.0, + 278.0, + 736.0, + 248.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 699.0, + 1407.0, + 699.0, + 1407.0, + 743.0, + 290.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 740.0, + 278.0, + 740.0, + 278.0, + 766.0, + 248.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 732.0, + 1410.0, + 732.0, + 1410.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 769.0, + 278.0, + 769.0, + 278.0, + 796.0, + 248.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 757.0, + 1407.0, + 757.0, + 1407.0, + 804.0, + 292.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 800.0, + 278.0, + 800.0, + 278.0, + 826.0, + 248.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 793.0, + 1407.0, + 793.0, + 1407.0, + 830.0, + 292.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 831.0, + 278.0, + 831.0, + 278.0, + 858.0, + 248.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 824.0, + 1407.0, + 824.0, + 1407.0, + 859.0, + 291.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 861.0, + 278.0, + 861.0, + 278.0, + 887.0, + 248.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 854.0, + 1409.0, + 854.0, + 1409.0, + 891.0, + 292.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 890.0, + 279.0, + 890.0, + 279.0, + 919.0, + 240.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 885.0, + 1406.0, + 885.0, + 1406.0, + 922.0, + 294.0, + 922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 920.0, + 278.0, + 920.0, + 278.0, + 950.0, + 240.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 914.0, + 1405.0, + 914.0, + 1405.0, + 951.0, + 292.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 950.0, + 279.0, + 950.0, + 279.0, + 979.0, + 238.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 942.0, + 1406.0, + 942.0, + 1406.0, + 983.0, + 291.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 980.0, + 279.0, + 980.0, + 279.0, + 1009.0, + 240.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 974.0, + 1406.0, + 974.0, + 1406.0, + 1011.0, + 294.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1012.0, + 278.0, + 1012.0, + 278.0, + 1037.0, + 240.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1004.0, + 1407.0, + 1004.0, + 1407.0, + 1044.0, + 292.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1043.0, + 278.0, + 1043.0, + 278.0, + 1068.0, + 240.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1036.0, + 1406.0, + 1036.0, + 1406.0, + 1073.0, + 294.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1073.0, + 278.0, + 1073.0, + 278.0, + 1098.0, + 241.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1068.0, + 1405.0, + 1068.0, + 1405.0, + 1101.0, + 295.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1102.0, + 279.0, + 1102.0, + 279.0, + 1132.0, + 240.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1098.0, + 1405.0, + 1098.0, + 1405.0, + 1132.0, + 294.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1134.0, + 278.0, + 1134.0, + 278.0, + 1160.0, + 241.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1109.0, + 1129.0, + 1109.0, + 1162.0, + 294.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 210.0, + 278.0, + 210.0, + 278.0, + 236.0, + 249.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 201.0, + 1407.0, + 201.0, + 1407.0, + 240.0, + 292.0, + 240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 239.0, + 278.0, + 239.0, + 278.0, + 265.0, + 249.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 232.0, + 1408.0, + 232.0, + 1408.0, + 269.0, + 294.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 269.0, + 278.0, + 269.0, + 278.0, + 296.0, + 248.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 264.0, + 1405.0, + 264.0, + 1405.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 246.0, + 298.0, + 279.0, + 298.0, + 279.0, + 330.0, + 246.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 294.0, + 1406.0, + 294.0, + 1406.0, + 330.0, + 294.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 331.0, + 278.0, + 331.0, + 278.0, + 359.0, + 248.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 325.0, + 1408.0, + 325.0, + 1408.0, + 362.0, + 295.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 362.0, + 278.0, + 362.0, + 278.0, + 387.0, + 248.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 354.0, + 1408.0, + 354.0, + 1408.0, + 391.0, + 294.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 391.0, + 278.0, + 391.0, + 278.0, + 417.0, + 248.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 385.0, + 1405.0, + 385.0, + 1405.0, + 419.0, + 295.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 421.0, + 278.0, + 421.0, + 278.0, + 449.0, + 248.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 415.0, + 1407.0, + 415.0, + 1407.0, + 452.0, + 292.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 452.0, + 278.0, + 452.0, + 278.0, + 479.0, + 248.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 445.0, + 1407.0, + 445.0, + 1407.0, + 482.0, + 294.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 248.0, + 482.0, + 278.0, + 482.0, + 278.0, + 508.0, + 248.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 474.0, + 1407.0, + 474.0, + 1407.0, + 512.0, + 292.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 512.0, + 278.0, + 512.0, + 278.0, + 539.0, + 249.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 506.0, + 1408.0, + 506.0, + 1408.0, + 543.0, + 294.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 249.0, + 543.0, + 278.0, + 543.0, + 278.0, + 569.0, + 249.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 536.0, + 1228.0, + 536.0, + 1228.0, + 573.0, + 292.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1474.0, + 277.0, + 1474.0, + 277.0, + 1500.0, + 241.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1467.0, + 1407.0, + 1467.0, + 1407.0, + 1506.0, + 292.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1502.0, + 279.0, + 1502.0, + 279.0, + 1532.0, + 239.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1495.0, + 1407.0, + 1495.0, + 1407.0, + 1535.0, + 292.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1535.0, + 277.0, + 1535.0, + 277.0, + 1562.0, + 241.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1564.0, + 295.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1564.0, + 277.0, + 1564.0, + 277.0, + 1591.0, + 241.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1559.0, + 1378.0, + 1559.0, + 1378.0, + 1594.0, + 295.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1180.0, + 277.0, + 1180.0, + 277.0, + 1204.0, + 241.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1172.0, + 1404.0, + 1172.0, + 1404.0, + 1206.0, + 295.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1208.0, + 277.0, + 1208.0, + 277.0, + 1237.0, + 239.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1204.0, + 1405.0, + 1204.0, + 1405.0, + 1239.0, + 292.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1238.0, + 277.0, + 1238.0, + 277.0, + 1266.0, + 239.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1233.0, + 1405.0, + 1233.0, + 1405.0, + 1268.0, + 293.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1268.0, + 279.0, + 1268.0, + 279.0, + 1296.0, + 239.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1259.0, + 1407.0, + 1259.0, + 1407.0, + 1301.0, + 292.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1299.0, + 279.0, + 1299.0, + 279.0, + 1328.0, + 239.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1295.0, + 1405.0, + 1295.0, + 1405.0, + 1329.0, + 292.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1330.0, + 279.0, + 1330.0, + 279.0, + 1358.0, + 239.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1325.0, + 956.0, + 1325.0, + 956.0, + 1357.0, + 295.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1687.0, + 276.0, + 1687.0, + 276.0, + 1715.0, + 241.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1681.0, + 911.0, + 1681.0, + 911.0, + 1719.0, + 294.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 1681.0, + 1151.0, + 1681.0, + 1151.0, + 1719.0, + 1075.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1681.0, + 1375.0, + 1681.0, + 1375.0, + 1719.0, + 1176.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1681.0, + 1407.0, + 1681.0, + 1407.0, + 1719.0, + 1403.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1718.0, + 278.0, + 1718.0, + 278.0, + 1745.0, + 241.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1713.0, + 513.0, + 1713.0, + 513.0, + 1748.0, + 292.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1713.0, + 910.0, + 1713.0, + 910.0, + 1748.0, + 531.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1713.0, + 1263.0, + 1713.0, + 1263.0, + 1748.0, + 937.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1713.0, + 1406.0, + 1713.0, + 1406.0, + 1748.0, + 1375.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1753.0, + 278.0, + 1753.0, + 278.0, + 1782.0, + 241.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1744.0, + 614.0, + 1744.0, + 614.0, + 1783.0, + 294.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1744.0, + 1407.0, + 1744.0, + 1407.0, + 1783.0, + 763.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1785.0, + 278.0, + 1785.0, + 278.0, + 1809.0, + 242.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1780.0, + 815.0, + 1780.0, + 815.0, + 1811.0, + 295.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1780.0, + 1404.0, + 1780.0, + 1404.0, + 1811.0, + 849.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1813.0, + 279.0, + 1813.0, + 279.0, + 1871.0, + 241.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 1806.0, + 522.0, + 1806.0, + 522.0, + 1890.0, + 282.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1806.0, + 652.0, + 1806.0, + 652.0, + 1890.0, + 544.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1806.0, + 1213.0, + 1806.0, + 1213.0, + 1890.0, + 1099.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1806.0, + 1421.0, + 1806.0, + 1421.0, + 1890.0, + 1399.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1874.0, + 279.0, + 1874.0, + 279.0, + 1901.0, + 241.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1869.0, + 382.0, + 1869.0, + 382.0, + 1902.0, + 294.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 424.0, + 1869.0, + 961.0, + 1869.0, + 961.0, + 1902.0, + 424.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1919.0, + 279.0, + 1919.0, + 279.0, + 1946.0, + 241.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1910.0, + 976.0, + 1910.0, + 976.0, + 1951.0, + 287.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1951.0, + 1162.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1953.0, + 278.0, + 1953.0, + 278.0, + 1976.0, + 243.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1942.0, + 378.0, + 1942.0, + 378.0, + 1983.0, + 289.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1942.0, + 654.0, + 1942.0, + 654.0, + 1983.0, + 572.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1942.0, + 781.0, + 1942.0, + 781.0, + 1983.0, + 728.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1942.0, + 1181.0, + 1942.0, + 1181.0, + 1983.0, + 862.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1942.0, + 1408.0, + 1942.0, + 1408.0, + 1983.0, + 1269.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1980.0, + 279.0, + 1980.0, + 279.0, + 2007.0, + 241.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1976.0, + 638.0, + 1976.0, + 638.0, + 2010.0, + 290.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1976.0, + 1127.0, + 1976.0, + 1127.0, + 2010.0, + 754.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1976.0, + 1405.0, + 1976.0, + 1405.0, + 2010.0, + 1190.0, + 2010.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 240, + 998, + 1405, + 998, + 1405, + 1306, + 240, + 1306 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 242, + 1393, + 1405, + 1393, + 1405, + 1517, + 242, + 1517 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 244, + 818, + 1405, + 818, + 1405, + 911, + 244, + 911 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 342, + 210, + 1359, + 210, + 1359, + 536, + 342, + 536 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 295, + 556, + 1405, + 556, + 1405, + 681, + 295, + 681 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 242, + 1529, + 1406, + 1529, + 1406, + 1655, + 242, + 1655 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 579, + 918, + 1121, + 918, + 1121, + 989, + 579, + 989 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 248, + 711, + 1406, + 711, + 1406, + 807, + 248, + 807 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 249, + 1898, + 1404, + 1898, + 1404, + 2009, + 249, + 2009 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 248, + 1672, + 1406, + 1672, + 1406, + 1774, + 248, + 1774 + ], + "score": 0.937 + }, + { + "category_id": 0, + "poly": [ + 274, + 1337, + 1080, + 1337, + 1080, + 1371, + 274, + 1371 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 292, + 1784, + 1404, + 1784, + 1404, + 1878, + 292, + 1878 + ], + "score": 0.917 + }, + { + "category_id": 9, + "poly": [ + 1366, + 938, + 1400, + 938, + 1400, + 969, + 1366, + 969 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2085, + 840, + 2085 + ], + "score": 0.766 + }, + { + "category_id": 13, + "poly": [ + 1031, + 996, + 1374, + 996, + 1374, + 1036, + 1031, + 1036 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\| f \\| _ { p , \\rho } = ( \\int _ { s } \\rho ( \\mathrm { d } s ) | f ( s ) | ^ { p } ) ^ { 1 / p } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 577, + 916, + 1119, + 916, + 1119, + 991, + 577, + 991 + ], + "score": 0.93, + "latex": "F _ { \\mu , p , \\rho } ( \\theta , g , \\Pi ) = \\sum _ { \\pi \\in \\Pi } \\mu ( \\pi ) \\| \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) - V ^ { \\pi } \\| _ { p , \\rho } ," + }, + { + "category_id": 13, + "poly": [ + 673, + 773, + 786, + 773, + 786, + 808, + 673, + 808 + ], + "score": 0.93, + "latex": "\\bar { \\{ V ^ { \\pi } \\} } _ { \\pi \\in \\Pi }" + }, + { + "category_id": 13, + "poly": [ + 722, + 1031, + 847, + 1031, + 847, + 1063, + 722, + 1063 + ], + "score": 0.92, + "latex": "f : S \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1560, + 1398, + 1560, + 1398, + 1594, + 1081, + 1594 + ], + "score": 0.92, + "latex": "f _ { \\theta } ( \\pi ) = \\| \\mathbb { V } _ { \\theta } ( \\pi ) - V ^ { \\bar { \\pi } } \\| \\ge 0" + }, + { + "category_id": 13, + "poly": [ + 369, + 849, + 551, + 849, + 551, + 883, + 369, + 883 + ], + "score": 0.92, + "latex": "\\chi _ { \\pi } \\bar { = } g ( \\pi ) \\in \\mathcal X" + }, + { + "category_id": 13, + "poly": [ + 503, + 1816, + 631, + 1816, + 631, + 1848, + 503, + 1848 + ], + "score": 0.92, + "latex": "L \\in [ 0 , \\infty )" + }, + { + "category_id": 13, + "poly": [ + 656, + 1740, + 765, + 1740, + 765, + 1773, + 656, + 1773 + ], + "score": 0.92, + "latex": "\\gamma \\in [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 395, + 1740, + 578, + 1740, + 578, + 1775, + 395, + 1775 + ], + "score": 0.91, + "latex": "f _ { \\hat { \\theta } } ( \\pi ) \\leq \\gamma f _ { \\theta } ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 693, + 1816, + 1049, + 1816, + 1049, + 1849, + 693, + 1849 + ], + "score": 0.91, + "latex": "| f _ { \\theta } ( { \\boldsymbol \\pi } ) - f _ { \\theta } ( { \\boldsymbol \\pi } ^ { \\prime } ) | \\leq L \\cdot d ( { \\boldsymbol \\pi } , { \\boldsymbol \\pi } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 887, + 851, + 959, + 851, + 959, + 878, + 887, + 878 + ], + "score": 0.91, + "latex": "\\theta \\in \\Theta" + }, + { + "category_id": 13, + "poly": [ + 520, + 1273, + 569, + 1273, + 569, + 1306, + 520, + 1306 + ], + "score": 0.91, + "latex": "\\| \\cdot \\|" + }, + { + "category_id": 13, + "poly": [ + 600, + 819, + 799, + 819, + 799, + 850, + 600, + 850 + ], + "score": 0.9, + "latex": "g : \\Pi \\mathcal { X } \\subseteq \\mathbb { R } ^ { n }" + }, + { + "category_id": 13, + "poly": [ + 974, + 1561, + 1050, + 1561, + 1050, + 1590, + 974, + 1590 + ], + "score": 0.9, + "latex": "\\pi \\in \\Pi" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1816, + 1178, + 1816, + 1178, + 1845, + 1094, + 1845 + ], + "score": 0.9, + "latex": "\\pi ^ { \\prime } \\in \\Pi" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1705, + 1397, + 1705, + 1397, + 1742, + 1266, + 1742 + ], + "score": 0.9, + "latex": "\\hat { \\theta } = \\mathcal { P } _ { \\pi } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 431, + 1032, + 466, + 1032, + 466, + 1064, + 431, + 1064 + ], + "score": 0.9, + "latex": "L _ { p }" + }, + { + "category_id": 13, + "poly": [ + 658, + 1932, + 1030, + 1932, + 1030, + 1977, + 658, + 1977 + ], + "score": 0.89, + "latex": "\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots ," + }, + { + "category_id": 13, + "poly": [ + 861, + 1244, + 895, + 1244, + 895, + 1273, + 861, + 1273 + ], + "score": 0.89, + "latex": "L _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 771, + 651, + 830, + 651, + 830, + 680, + 771, + 680 + ], + "score": 0.89, + "latex": "\\pi _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 685, + 1622, + 713, + 1622, + 713, + 1654, + 685, + 1654 + ], + "score": 0.88, + "latex": "f _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1234, + 1674, + 1403, + 1674, + 1403, + 1704, + 1234, + 1704 + ], + "score": 0.87, + "latex": "\\mathcal { P } _ { \\pi } : \\Theta \\to \\Theta" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1537, + 1397, + 1537, + 1397, + 1561, + 1308, + 1561 + ], + "score": 0.87, + "latex": "\\chi _ { \\pi } = \\pi" + }, + { + "category_id": 13, + "poly": [ + 670, + 852, + 706, + 852, + 706, + 880, + 670, + 880 + ], + "score": 0.86, + "latex": "\\mathbb { V } _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 780, + 1561, + 815, + 1561, + 815, + 1592, + 780, + 1592 + ], + "score": 0.84, + "latex": "\\mathbb { V } _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 790, + 1248, + 808, + 1248, + 808, + 1275, + 790, + 1275 + ], + "score": 0.81, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1038, + 1146, + 1038, + 1146, + 1063, + 1125, + 1063 + ], + "score": 0.81, + "latex": "\\mu" + }, + { + "category_id": 13, + "poly": [ + 1318, + 622, + 1347, + 622, + 1347, + 648, + 1318, + 648 + ], + "score": 0.79, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 484, + 1715, + 504, + 1715, + 504, + 1740, + 484, + 1740 + ], + "score": 0.79, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 298, + 1037, + 315, + 1037, + 315, + 1063, + 298, + 1063 + ], + "score": 0.77, + "latex": "\\rho" + }, + { + "category_id": 13, + "poly": [ + 1128, + 825, + 1148, + 825, + 1148, + 847, + 1128, + 847 + ], + "score": 0.77, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1042, + 826, + 1062, + 826, + 1062, + 847, + 1042, + 847 + ], + "score": 0.75, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 777, + 1787, + 798, + 1787, + 798, + 1813, + 777, + 1813 + ], + "score": 0.72, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 452, + 1680, + 470, + 1680, + 470, + 1702, + 452, + 1702 + ], + "score": 0.69, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1715, + 1169, + 1715, + 1169, + 1737, + 1150, + 1737 + ], + "score": 0.66, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1791, + 1057, + 1791, + 1057, + 1813, + 1036, + 1813 + ], + "score": 0.66, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 372, + 1006, + 422, + 1006, + 422, + 1031, + 372, + 1031 + ], + "score": 0.64, + "latex": "\\mu , \\rho" + }, + { + "category_id": 13, + "poly": [ + 719, + 1786, + 747, + 1786, + 747, + 1816, + 719, + 1816 + ], + "score": 0.61, + "latex": "f _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 452, + 1787, + 473, + 1787, + 473, + 1813, + 452, + 1813 + ], + "score": 0.59, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 580, + 1849, + 603, + 1849, + 603, + 1873, + 580, + 1873 + ], + "score": 0.46, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 858, + 744, + 944, + 744, + 944, + 772, + 858, + 772 + ], + "score": 0.37, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 628, + 1486, + 713, + 1486, + 713, + 1515, + 628, + 1515 + ], + "score": 0.35, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 1023, + 714, + 1049, + 714, + 1049, + 742, + 1023, + 742 + ], + "score": 0.33, + "latex": "\\mathbb { V }" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1456, + 1291, + 1456, + 1291, + 1486, + 1239, + 1486 + ], + "score": 0.28, + "latex": "2 ( \\mathbf { b } ) ," + }, + { + "category_id": 13, + "poly": [ + 1021, + 556, + 1105, + 556, + 1105, + 586, + 1021, + 586 + ], + "score": 0.26, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 214.0, + 770.0, + 214.0, + 770.0, + 236.0, + 733.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 219.0, + 844.0, + 219.0, + 844.0, + 231.0, + 809.0, + 231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 214.0, + 919.0, + 214.0, + 919.0, + 236.0, + 880.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 214.0, + 1190.0, + 214.0, + 1190.0, + 239.0, + 1140.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 219.0, + 1266.0, + 219.0, + 1266.0, + 235.0, + 1227.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 242.0, + 1176.0, + 242.0, + 1176.0, + 266.0, + 1150.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 274.0, + 877.0, + 274.0, + 877.0, + 307.0, + 805.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 274.0, + 1293.0, + 274.0, + 1293.0, + 306.0, + 1209.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 297.0, + 682.0, + 297.0, + 682.0, + 338.0, + 608.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 381.0, + 867.0, + 381.0, + 867.0, + 414.0, + 793.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 394.0, + 1218.0, + 394.0, + 1218.0, + 418.0, + 1089.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 420.0, + 1343.0, + 420.0, + 1343.0, + 447.0, + 1129.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 450.0, + 449.0, + 450.0, + 449.0, + 473.0, + 365.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 447.0, + 569.0, + 447.0, + 569.0, + 476.0, + 463.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 440.0, + 752.0, + 440.0, + 752.0, + 474.0, + 638.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 444.0, + 1352.0, + 444.0, + 1352.0, + 472.0, + 1128.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 475.0, + 411.0, + 475.0, + 411.0, + 488.0, + 386.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 467.0, + 534.0, + 467.0, + 534.0, + 497.0, + 420.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 466.0, + 867.0, + 466.0, + 867.0, + 496.0, + 636.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 465.0, + 1231.0, + 465.0, + 1231.0, + 497.0, + 1127.0, + 497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 505.0, + 594.0, + 505.0, + 594.0, + 536.0, + 334.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 505.0, + 1114.0, + 505.0, + 1114.0, + 536.0, + 855.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.25, + 213.5, + 722.25, + 213.5, + 722.25, + 235.5, + 682.25, + 235.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 271.0, + 1108.0, + 271.0, + 1108.0, + 315.0, + 941.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 310.5, + 1118.0, + 310.5, + 1118.0, + 335.5, + 1077.0, + 335.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 347.0, + 1037.0, + 347.0, + 1037.0, + 374.0, + 1005.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 390.5, + 963.0, + 390.5, + 963.0, + 417.5, + 933.0, + 417.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 372.5, + 1007.0, + 372.5, + 1007.0, + 390.0, + 963.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.75, + 421.5, + 903.75, + 421.5, + 903.75, + 448.5, + 876.75, + 448.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 554.0, + 1020.0, + 554.0, + 1020.0, + 592.0, + 293.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 554.0, + 1405.0, + 554.0, + 1405.0, + 592.0, + 1106.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 588.0, + 1403.0, + 588.0, + 1403.0, + 621.0, + 295.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 617.0, + 1317.0, + 617.0, + 1317.0, + 655.0, + 293.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 617.0, + 1405.0, + 617.0, + 1405.0, + 655.0, + 1348.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 648.0, + 770.0, + 648.0, + 770.0, + 683.0, + 294.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 648.0, + 1199.0, + 648.0, + 1199.0, + 683.0, + 831.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1333.0, + 1084.0, + 1333.0, + 1084.0, + 1377.0, + 293.0, + 1377.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": [ + 240.0, + 1004.0, + 277.0, + 1004.0, + 277.0, + 1032.0, + 240.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 994.0, + 371.0, + 994.0, + 371.0, + 1040.0, + 289.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 994.0, + 1030.0, + 994.0, + 1030.0, + 1040.0, + 423.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 994.0, + 1410.0, + 994.0, + 1410.0, + 1040.0, + 1375.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1037.0, + 277.0, + 1037.0, + 277.0, + 1061.0, + 241.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1030.0, + 297.0, + 1030.0, + 297.0, + 1067.0, + 291.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1030.0, + 430.0, + 1030.0, + 430.0, + 1067.0, + 316.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 1030.0, + 721.0, + 1030.0, + 721.0, + 1067.0, + 467.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1030.0, + 1124.0, + 1030.0, + 1124.0, + 1067.0, + 848.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1030.0, + 1407.0, + 1030.0, + 1407.0, + 1067.0, + 1147.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1065.0, + 278.0, + 1065.0, + 278.0, + 1093.0, + 240.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1060.0, + 1406.0, + 1060.0, + 1406.0, + 1096.0, + 294.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1097.0, + 277.0, + 1097.0, + 277.0, + 1121.0, + 240.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1090.0, + 1406.0, + 1090.0, + 1406.0, + 1125.0, + 294.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1126.0, + 277.0, + 1126.0, + 277.0, + 1155.0, + 239.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1121.0, + 1406.0, + 1121.0, + 1406.0, + 1157.0, + 294.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1158.0, + 278.0, + 1158.0, + 278.0, + 1183.0, + 240.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1152.0, + 1406.0, + 1152.0, + 1406.0, + 1188.0, + 294.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1186.0, + 280.0, + 1186.0, + 280.0, + 1214.0, + 239.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1180.0, + 1408.0, + 1180.0, + 1408.0, + 1217.0, + 293.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1220.0, + 278.0, + 1220.0, + 278.0, + 1244.0, + 240.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 1406.0, + 1212.0, + 1406.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1249.0, + 278.0, + 1249.0, + 278.0, + 1273.0, + 240.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1243.0, + 789.0, + 1243.0, + 789.0, + 1278.0, + 293.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1243.0, + 860.0, + 1243.0, + 860.0, + 1278.0, + 809.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1243.0, + 1406.0, + 1243.0, + 1406.0, + 1278.0, + 896.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1280.0, + 278.0, + 1280.0, + 278.0, + 1304.0, + 240.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1272.0, + 519.0, + 1272.0, + 519.0, + 1306.0, + 293.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1272.0, + 695.0, + 1272.0, + 695.0, + 1306.0, + 570.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1400.0, + 278.0, + 1400.0, + 278.0, + 1426.0, + 241.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1392.0, + 1405.0, + 1392.0, + 1405.0, + 1431.0, + 292.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1430.0, + 278.0, + 1430.0, + 278.0, + 1456.0, + 241.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1424.0, + 1405.0, + 1424.0, + 1405.0, + 1459.0, + 295.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1458.0, + 279.0, + 1458.0, + 279.0, + 1489.0, + 239.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1452.0, + 1238.0, + 1452.0, + 1238.0, + 1490.0, + 293.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1452.0, + 1406.0, + 1452.0, + 1406.0, + 1490.0, + 1292.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1486.0, + 278.0, + 1486.0, + 278.0, + 1521.0, + 240.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1482.0, + 627.0, + 1482.0, + 627.0, + 1522.0, + 292.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1482.0, + 1298.0, + 1482.0, + 1298.0, + 1522.0, + 714.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 826.0, + 281.0, + 826.0, + 281.0, + 849.0, + 243.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 817.0, + 599.0, + 817.0, + 599.0, + 855.0, + 289.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 817.0, + 1041.0, + 817.0, + 1041.0, + 855.0, + 800.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 817.0, + 1127.0, + 817.0, + 1127.0, + 855.0, + 1063.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 817.0, + 1406.0, + 817.0, + 1406.0, + 855.0, + 1149.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 857.0, + 278.0, + 857.0, + 278.0, + 879.0, + 243.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 849.0, + 368.0, + 849.0, + 368.0, + 885.0, + 291.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 849.0, + 669.0, + 849.0, + 669.0, + 885.0, + 552.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 707.0, + 849.0, + 886.0, + 849.0, + 886.0, + 885.0, + 707.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 849.0, + 1406.0, + 849.0, + 1406.0, + 885.0, + 960.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 887.0, + 278.0, + 887.0, + 278.0, + 910.0, + 243.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 879.0, + 810.0, + 879.0, + 810.0, + 915.0, + 290.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1535.0, + 278.0, + 1535.0, + 278.0, + 1562.0, + 241.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1526.0, + 1307.0, + 1526.0, + 1307.0, + 1568.0, + 291.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1526.0, + 1411.0, + 1526.0, + 1411.0, + 1568.0, + 1398.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1565.0, + 279.0, + 1565.0, + 279.0, + 1592.0, + 241.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1557.0, + 779.0, + 1557.0, + 779.0, + 1598.0, + 291.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1557.0, + 973.0, + 1557.0, + 973.0, + 1598.0, + 816.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1557.0, + 1080.0, + 1557.0, + 1080.0, + 1598.0, + 1051.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 1557.0, + 1410.0, + 1557.0, + 1410.0, + 1598.0, + 1399.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1596.0, + 278.0, + 1596.0, + 278.0, + 1623.0, + 241.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1591.0, + 1406.0, + 1591.0, + 1406.0, + 1626.0, + 295.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1627.0, + 279.0, + 1627.0, + 279.0, + 1653.0, + 241.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1622.0, + 684.0, + 1622.0, + 684.0, + 1657.0, + 293.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1622.0, + 1290.0, + 1622.0, + 1290.0, + 1657.0, + 714.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 720.0, + 277.0, + 720.0, + 277.0, + 743.0, + 243.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 711.0, + 1022.0, + 711.0, + 1022.0, + 749.0, + 290.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 711.0, + 1408.0, + 711.0, + 1408.0, + 749.0, + 1050.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 244.0, + 750.0, + 278.0, + 750.0, + 278.0, + 774.0, + 244.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 743.0, + 857.0, + 743.0, + 857.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 743.0, + 1406.0, + 743.0, + 1406.0, + 777.0, + 945.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 780.0, + 279.0, + 780.0, + 279.0, + 807.0, + 243.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 770.0, + 672.0, + 770.0, + 672.0, + 812.0, + 291.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 770.0, + 1383.0, + 770.0, + 1383.0, + 812.0, + 787.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1905.0, + 280.0, + 1905.0, + 280.0, + 1930.0, + 243.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1899.0, + 1403.0, + 1899.0, + 1403.0, + 1932.0, + 292.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1951.0, + 280.0, + 1951.0, + 280.0, + 1976.0, + 243.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1943.0, + 657.0, + 1943.0, + 657.0, + 1980.0, + 291.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1947.0, + 1402.0, + 1947.0, + 1402.0, + 1976.0, + 1031.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1981.0, + 281.0, + 1981.0, + 281.0, + 2006.0, + 243.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1976.0, + 1390.0, + 1976.0, + 1390.0, + 2009.0, + 291.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1927.0, + 816.0, + 1927.0, + 816.0, + 1981.0, + 709.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.75, + 1929.5, + 915.75, + 1929.5, + 915.75, + 1980.0, + 816.75, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.75, + 1930.5, + 985.75, + 1930.5, + 985.75, + 1966.0, + 923.75, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 243.0, + 1680.0, + 279.0, + 1680.0, + 279.0, + 1704.0, + 243.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1670.0, + 451.0, + 1670.0, + 451.0, + 1708.0, + 288.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 471.0, + 1670.0, + 1233.0, + 1670.0, + 1233.0, + 1708.0, + 471.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 244.0, + 1715.0, + 279.0, + 1715.0, + 279.0, + 1738.0, + 244.0, + 1738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1707.0, + 483.0, + 1707.0, + 483.0, + 1746.0, + 291.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1707.0, + 1149.0, + 1707.0, + 1149.0, + 1746.0, + 505.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1707.0, + 1265.0, + 1707.0, + 1265.0, + 1746.0, + 1170.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1707.0, + 1408.0, + 1707.0, + 1408.0, + 1746.0, + 1398.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1739.0, + 394.0, + 1739.0, + 394.0, + 1775.0, + 239.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 1739.0, + 655.0, + 1739.0, + 655.0, + 1775.0, + 579.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 1739.0, + 776.0, + 1739.0, + 776.0, + 1775.0, + 766.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1781.0, + 451.0, + 1781.0, + 451.0, + 1821.0, + 293.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 1781.0, + 718.0, + 1781.0, + 718.0, + 1821.0, + 474.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1781.0, + 776.0, + 1781.0, + 776.0, + 1821.0, + 748.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 1781.0, + 1035.0, + 1781.0, + 1035.0, + 1821.0, + 799.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 1781.0, + 1406.0, + 1781.0, + 1406.0, + 1821.0, + 1058.0, + 1821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1814.0, + 502.0, + 1814.0, + 502.0, + 1852.0, + 293.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1814.0, + 692.0, + 1814.0, + 692.0, + 1852.0, + 632.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1814.0, + 1093.0, + 1814.0, + 1093.0, + 1852.0, + 1050.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 1814.0, + 1405.0, + 1814.0, + 1405.0, + 1852.0, + 1179.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1844.0, + 579.0, + 1844.0, + 579.0, + 1881.0, + 292.0, + 1881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1844.0, + 615.0, + 1844.0, + 615.0, + 1881.0, + 604.0, + 1881.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 243, + 1503, + 1405, + 1503, + 1405, + 1627, + 243, + 1627 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 281, + 1716, + 1403, + 1716, + 1403, + 1841, + 281, + 1841 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 241, + 1274, + 1405, + 1274, + 1405, + 1491, + 241, + 1491 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 240, + 967, + 1403, + 967, + 1403, + 1154, + 240, + 1154 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 241, + 1853, + 1402, + 1853, + 1402, + 2008, + 241, + 2008 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 242, + 654, + 1404, + 654, + 1404, + 809, + 242, + 809 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 240, + 427, + 1405, + 427, + 1405, + 643, + 240, + 643 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 256, + 202, + 1403, + 202, + 1403, + 266, + 256, + 266 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 279, + 817, + 1398, + 817, + 1398, + 897, + 279, + 897 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 270, + 275, + 1405, + 275, + 1405, + 362, + 270, + 362 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 295, + 1661, + 606, + 1661, + 606, + 1694, + 295, + 1694 + ], + "score": 0.876 + }, + { + "category_id": 1, + "poly": [ + 263, + 374, + 1223, + 374, + 1223, + 417, + 263, + 417 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 268, + 909, + 1393, + 909, + 1393, + 954, + 268, + 954 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 267, + 1175, + 1402, + 1175, + 1402, + 1258, + 267, + 1258 + ], + "score": 0.743 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.699 + }, + { + "category_id": 8, + "poly": [ + 267, + 1175, + 1402, + 1175, + 1402, + 1258, + 267, + 1258 + ], + "score": 0.235 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2085, + 841, + 2085 + ], + "score": 0.108 + }, + { + "category_id": 13, + "poly": [ + 705, + 1306, + 796, + 1306, + 796, + 1340, + 705, + 1340 + ], + "score": 0.93, + "latex": "\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 902, + 1276, + 1021, + 1276, + 1021, + 1310, + 902, + 1310 + ], + "score": 0.93, + "latex": "\\mathbb { V } _ { \\boldsymbol { \\theta } _ { t } } \\big ( \\pi _ { t + 1 } \\big )" + }, + { + "category_id": 13, + "poly": [ + 965, + 288, + 1161, + 288, + 1161, + 322, + 965, + 322 + ], + "score": 0.92, + "latex": "f _ { \\theta } ( \\pi _ { 1 } ) \\le f _ { \\theta } ( \\pi _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 490, + 1306, + 581, + 1306, + 581, + 1340, + 490, + 1340 + ], + "score": 0.92, + "latex": "\\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 666, + 322, + 1002, + 322, + 1002, + 360, + 666, + 360 + ], + "score": 0.92, + "latex": "\\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } ) = \\hat { L } \\cdot d ( \\pi _ { 1 } , \\pi _ { 2 } )" + }, + { + "category_id": 13, + "poly": [ + 299, + 1221, + 476, + 1221, + 476, + 1256, + 299, + 1256 + ], + "score": 0.91, + "latex": "\\| V ^ { \\pi _ { t } } - V ^ { \\pi _ { t + 1 } } \\|" + }, + { + "category_id": 13, + "poly": [ + 644, + 428, + 697, + 428, + 697, + 460, + 644, + 460 + ], + "score": 0.91, + "latex": "\\mathcal { P } _ { \\pi _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 997, + 863, + 1254, + 863, + 1254, + 894, + 997, + 894 + ], + "score": 0.91, + "latex": "\\mathcal { M } _ { t } = L _ { t } \\cdot d ( \\pi _ { t } , \\pi _ { t + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 1290, + 287, + 1405, + 287, + 1405, + 324, + 1290, + 324 + ], + "score": 0.9, + "latex": "f _ { \\hat { \\theta } } ( \\pi _ { 2 } ) \\leq" + }, + { + "category_id": 13, + "poly": [ + 512, + 1340, + 553, + 1340, + 553, + 1372, + 512, + 1372 + ], + "score": 0.9, + "latex": "V _ { \\phi _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 374, + 1310, + 431, + 1310, + 431, + 1340, + 374, + 1340 + ], + "score": 0.89, + "latex": "\\pi _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 433, + 489, + 462, + 489, + 462, + 523, + 433, + 523 + ], + "score": 0.89, + "latex": "f _ { \\hat { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 556, + 862, + 912, + 862, + 912, + 896, + 556, + 896 + ], + "score": 0.89, + "latex": "f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\gamma _ { t } f _ { \\theta _ { t - 1 } } ( \\pi _ { t } ) + \\mathcal { M } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 376, + 750, + 433, + 750, + 433, + 777, + 376, + 777 + ], + "score": 0.89, + "latex": "\\pi _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 323, + 580, + 323, + 580, + 360, + 297, + 360 + ], + "score": 0.88, + "latex": "\\gamma f _ { \\theta } ( \\pi _ { 2 } ) + \\mathcal { M } ( \\pi _ { 1 } , \\pi _ { 2 } , \\hat { L } )" + }, + { + "category_id": 13, + "poly": [ + 542, + 1222, + 911, + 1222, + 911, + 1256, + 542, + 1256 + ], + "score": 0.88, + "latex": "f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\| \\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } ) - V ^ { \\pi _ { t + 1 } } \\|" + }, + { + "category_id": 13, + "poly": [ + 1119, + 611, + 1148, + 611, + 1148, + 645, + 1119, + 645 + ], + "score": 0.88, + "latex": "f _ { \\hat { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 720, + 354, + 720, + 354, + 748, + 297, + 748 + ], + "score": 0.88, + "latex": "\\pi _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 383, + 862, + 447, + 862, + 447, + 891, + 383, + 891 + ], + "score": 0.88, + "latex": "t \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1179, + 826, + 1209, + 826, + 1209, + 861, + 1179, + 861 + ], + "score": 0.87, + "latex": "\\hat { L _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 447, + 380, + 502, + 380, + 502, + 413, + 447, + 413 + ], + "score": 0.87, + "latex": "\\mathcal { P } _ { \\pi _ { 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 830, + 1076, + 830, + 1076, + 863, + 1025, + 863 + ], + "score": 0.87, + "latex": "\\mathcal { P } _ { \\pi _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 886, + 553, + 918, + 553, + 918, + 579, + 886, + 579 + ], + "score": 0.87, + "latex": "\\pi _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1056, + 1783, + 1092, + 1783, + 1092, + 1811, + 1056, + 1811 + ], + "score": 0.87, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 968, + 433, + 1001, + 433, + 1001, + 458, + 968, + 458 + ], + "score": 0.87, + "latex": "\\pi _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 719, + 1977, + 755, + 1977, + 755, + 2007, + 719, + 2007 + ], + "score": 0.86, + "latex": "\\Pi _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 470, + 275, + 587, + 275, + 587, + 319, + 470, + 319 + ], + "score": 0.86, + "latex": "\\theta \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\hat { \\theta } ." + }, + { + "category_id": 13, + "poly": [ + 1176, + 1976, + 1213, + 1976, + 1213, + 2006, + 1176, + 2006 + ], + "score": 0.85, + "latex": "\\Pi _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 585, + 582, + 616, + 582, + 616, + 609, + 585, + 609 + ], + "score": 0.85, + "latex": "\\pi _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 695, + 689, + 724, + 689, + 724, + 716, + 695, + 716 + ], + "score": 0.85, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1311, + 1175, + 1311, + 1175, + 1338, + 1147, + 1338 + ], + "score": 0.85, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 373, + 614, + 404, + 614, + 404, + 640, + 373, + 640 + ], + "score": 0.85, + "latex": "\\pi _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 639, + 238, + 670, + 238, + 670, + 264, + 639, + 264 + ], + "score": 0.85, + "latex": "\\pi _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 876, + 292, + 908, + 292, + 908, + 319, + 876, + 319 + ], + "score": 0.85, + "latex": "\\pi _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 477, + 1749, + 513, + 1749, + 513, + 1779, + 477, + 1779 + ], + "score": 0.84, + "latex": "\\mathbb { V } _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 297, + 752, + 326, + 752, + 326, + 776, + 297, + 776 + ], + "score": 0.84, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 468, + 816, + 830, + 816, + 830, + 861, + 468, + 861 + ], + "score": 0.84, + "latex": "\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } . . ." + }, + { + "category_id": 13, + "poly": [ + 531, + 383, + 562, + 383, + 562, + 414, + 531, + 414 + ], + "score": 0.83, + "latex": "\\gamma _ { g }" + }, + { + "category_id": 13, + "poly": [ + 705, + 379, + 834, + 379, + 834, + 414, + 705, + 414 + ], + "score": 0.82, + "latex": "( \\gamma _ { g } \\in [ 0 , 1 )" + }, + { + "category_id": 13, + "poly": [ + 685, + 283, + 707, + 283, + 707, + 317, + 685, + 317 + ], + "score": 0.82, + "latex": "\\hat { L }" + }, + { + "category_id": 13, + "poly": [ + 889, + 459, + 925, + 459, + 925, + 486, + 889, + 486 + ], + "score": 0.82, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 746, + 489, + 782, + 489, + 782, + 516, + 746, + 516 + ], + "score": 0.81, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 693, + 907, + 1392, + 907, + 1392, + 955, + 693, + 955 + ], + "score": 0.81, + "latex": "\\begin{array} { r } { f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq \\prod _ { i = 0 } ^ { t } \\gamma _ { t } f _ { \\theta _ { - 1 } } ( \\pi _ { 0 } ) + \\sum _ { i = 0 } ^ { t - 1 } \\prod _ { j = i + 1 } ^ { t } \\gamma _ { j } \\mathcal M _ { i } + \\mathcal M _ { t } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 895, + 833, + 923, + 833, + 923, + 862, + 895, + 862 + ], + "score": 0.79, + "latex": "\\gamma _ { t }" + }, + { + "category_id": 13, + "poly": [ + 624, + 286, + 653, + 286, + 653, + 324, + 624, + 324 + ], + "score": 0.76, + "latex": "f _ { \\hat { \\theta } }" + }, + { + "category_id": 13, + "poly": [ + 529, + 1177, + 893, + 1177, + 893, + 1221, + 529, + 1221 + ], + "score": 0.75, + "latex": "\\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } ." + }, + { + "category_id": 13, + "poly": [ + 1372, + 837, + 1400, + 837, + 1400, + 861, + 1372, + 861 + ], + "score": 0.69, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 1388, + 658, + 1401, + 658, + 1401, + 682, + 1388, + 682 + ], + "score": 0.68, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1190, + 1100, + 1190, + 1100, + 1223, + 1026, + 1223 + ], + "score": 0.68, + "latex": "t \\geq 0 ," + }, + { + "category_id": 13, + "poly": [ + 1113, + 830, + 1148, + 830, + 1148, + 862, + 1113, + 862 + ], + "score": 0.67, + "latex": "f _ { \\theta _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 886, + 382, + 919, + 382, + 919, + 411, + 886, + 411 + ], + "score": 0.66, + "latex": "\\pi _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1189, + 1403, + 1189, + 1403, + 1225, + 1136, + 1225 + ], + "score": 0.63, + "latex": "f _ { \\theta _ { t } } ( \\pi _ { t } ) + f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\leq" + }, + { + "category_id": 13, + "poly": [ + 1188, + 463, + 1220, + 463, + 1220, + 488, + 1188, + 488 + ], + "score": 0.61, + "latex": "\\pi _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1145, + 463, + 1176, + 463, + 1176, + 488, + 1145, + 488 + ], + "score": 0.58, + "latex": "\\pi _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1310, + 1915, + 1356, + 1915, + 1356, + 1943, + 1310, + 1943 + ], + "score": 0.54, + "latex": "2 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 490, + 1398, + 576, + 1398, + 576, + 1427, + 490, + 1427 + ], + "score": 0.49, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1915, + 1282, + 1915, + 1282, + 1942, + 1258, + 1942 + ], + "score": 0.44, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 760, + 1459, + 846, + 1459, + 846, + 1488, + 760, + 1488 + ], + "score": 0.41, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 546, + 1810, + 617, + 1810, + 617, + 1840, + 546, + 1840 + ], + "score": 0.4, + "latex": "( R P R )" + }, + { + "category_id": 13, + "poly": [ + 962, + 685, + 1047, + 685, + 1047, + 714, + 962, + 714 + ], + "score": 0.4, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 1119, + 549, + 1205, + 549, + 1205, + 578, + 1119, + 578 + ], + "score": 0.4, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 812, + 1060, + 900, + 1060, + 900, + 1089, + 812, + 1089 + ], + "score": 0.38, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 796, + 1886, + 820, + 1886, + 820, + 1912, + 796, + 1912 + ], + "score": 0.37, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 988, + 368, + 1218, + 368, + 1218, + 421, + 988, + 421 + ], + "score": 0.37, + "latex": "\\begin{array} { r } { f _ { \\theta } ( \\pi _ { 2 } ) > \\frac { \\hat { L } \\cdot d ( \\pi _ { 1 } , \\pi _ { 2 } ) } { 1 - \\gamma } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1144, + 462, + 1220, + 462, + 1220, + 489, + 1144, + 489 + ], + "score": 0.36, + "latex": "\\pi _ { 1 } , \\pi _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1945, + 1402, + 1945, + 1402, + 1974, + 1376, + 1974 + ], + "score": 0.32, + "latex": "\\Pi" + }, + { + "category_id": 13, + "poly": [ + 741, + 1429, + 828, + 1429, + 828, + 1457, + 741, + 1457 + ], + "score": 0.28, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 14, + "poly": [ + 525, + 1174, + 1405, + 1174, + 1405, + 1254, + 525, + 1254 + ], + "score": 0.26, + "latex": "\\begin{array} { r l } & { \\theta _ { - 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 0 } } } \\theta _ { 0 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 1 } } } \\theta _ { 1 } \\xrightarrow { \\mathcal { P } _ { \\pi _ { 2 } } } \\dots , f o r a n y t \\ge 0 , \\ i f f _ { \\theta _ { t } } ( \\pi _ { t } ) + f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le } \\\\ & { n f _ { \\theta _ { t } } ( \\pi _ { t + 1 } ) \\le \\| \\mathbb { V } _ { \\theta _ { t } } ( \\pi _ { t } ) - V ^ { \\pi _ { t + 1 } } \\| . } \\end{array}" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1657.0, + 612.0, + 1657.0, + 612.0, + 1703.0, + 293.0, + 1703.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": [ + 838.0, + 2058.0, + 862.0, + 2058.0, + 862.0, + 2092.0, + 838.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1509.0, + 277.0, + 1509.0, + 277.0, + 1536.0, + 239.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1503.0, + 1404.0, + 1503.0, + 1404.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1540.0, + 276.0, + 1540.0, + 276.0, + 1566.0, + 239.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1536.0, + 1404.0, + 1536.0, + 1404.0, + 1566.0, + 294.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1571.0, + 277.0, + 1571.0, + 277.0, + 1597.0, + 239.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1564.0, + 1408.0, + 1564.0, + 1408.0, + 1599.0, + 294.0, + 1599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1600.0, + 277.0, + 1600.0, + 277.0, + 1627.0, + 240.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1592.0, + 1374.0, + 1592.0, + 1374.0, + 1632.0, + 290.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1750.0, + 296.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1749.0, + 476.0, + 1749.0, + 476.0, + 1782.0, + 295.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1749.0, + 1405.0, + 1749.0, + 1405.0, + 1782.0, + 514.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1780.0, + 1055.0, + 1780.0, + 1055.0, + 1812.0, + 296.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1780.0, + 1405.0, + 1780.0, + 1405.0, + 1812.0, + 1093.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1809.0, + 545.0, + 1809.0, + 545.0, + 1842.0, + 295.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1809.0, + 1184.0, + 1809.0, + 1184.0, + 1842.0, + 618.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1281.0, + 278.0, + 1281.0, + 278.0, + 1308.0, + 240.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1275.0, + 901.0, + 1275.0, + 901.0, + 1313.0, + 292.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 1275.0, + 1408.0, + 1275.0, + 1408.0, + 1313.0, + 1022.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1312.0, + 279.0, + 1312.0, + 279.0, + 1339.0, + 238.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1306.0, + 373.0, + 1306.0, + 373.0, + 1344.0, + 294.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1306.0, + 489.0, + 1306.0, + 489.0, + 1344.0, + 432.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1306.0, + 704.0, + 1306.0, + 704.0, + 1344.0, + 582.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1306.0, + 1146.0, + 1306.0, + 1146.0, + 1344.0, + 797.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1306.0, + 1408.0, + 1306.0, + 1408.0, + 1344.0, + 1176.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1343.0, + 278.0, + 1343.0, + 278.0, + 1370.0, + 240.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1335.0, + 511.0, + 1335.0, + 511.0, + 1374.0, + 292.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1335.0, + 1408.0, + 1335.0, + 1408.0, + 1374.0, + 554.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1375.0, + 278.0, + 1375.0, + 278.0, + 1399.0, + 241.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1368.0, + 1406.0, + 1368.0, + 1406.0, + 1401.0, + 292.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1405.0, + 277.0, + 1405.0, + 277.0, + 1428.0, + 241.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1397.0, + 489.0, + 1397.0, + 489.0, + 1431.0, + 292.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1397.0, + 1406.0, + 1397.0, + 1406.0, + 1431.0, + 577.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1436.0, + 278.0, + 1436.0, + 278.0, + 1459.0, + 241.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1428.0, + 740.0, + 1428.0, + 740.0, + 1462.0, + 292.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1428.0, + 1406.0, + 1428.0, + 1406.0, + 1462.0, + 829.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1464.0, + 278.0, + 1464.0, + 278.0, + 1491.0, + 240.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1457.0, + 759.0, + 1457.0, + 759.0, + 1495.0, + 292.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1457.0, + 1385.0, + 1457.0, + 1385.0, + 1495.0, + 847.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 975.0, + 277.0, + 975.0, + 277.0, + 999.0, + 241.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 967.0, + 1406.0, + 967.0, + 1406.0, + 1003.0, + 293.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1004.0, + 279.0, + 1004.0, + 279.0, + 1032.0, + 240.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 999.0, + 1404.0, + 999.0, + 1404.0, + 1035.0, + 293.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1034.0, + 278.0, + 1034.0, + 278.0, + 1062.0, + 240.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1028.0, + 1406.0, + 1028.0, + 1406.0, + 1064.0, + 293.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1064.0, + 279.0, + 1064.0, + 279.0, + 1093.0, + 240.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1059.0, + 811.0, + 1059.0, + 811.0, + 1095.0, + 294.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 1059.0, + 1406.0, + 1059.0, + 1406.0, + 1095.0, + 901.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1094.0, + 279.0, + 1094.0, + 279.0, + 1122.0, + 240.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1403.0, + 1090.0, + 1403.0, + 1122.0, + 293.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1127.0, + 277.0, + 1127.0, + 277.0, + 1151.0, + 241.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1121.0, + 1394.0, + 1121.0, + 1394.0, + 1155.0, + 294.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1860.0, + 278.0, + 1860.0, + 278.0, + 1885.0, + 240.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1853.0, + 1405.0, + 1853.0, + 1405.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1891.0, + 278.0, + 1891.0, + 278.0, + 1916.0, + 240.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1881.0, + 795.0, + 1881.0, + 795.0, + 1920.0, + 292.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1920.0, + 821.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1919.0, + 278.0, + 1919.0, + 278.0, + 1948.0, + 238.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1915.0, + 1257.0, + 1915.0, + 1257.0, + 1948.0, + 295.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1915.0, + 1309.0, + 1915.0, + 1309.0, + 1948.0, + 1283.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1915.0, + 1403.0, + 1915.0, + 1403.0, + 1948.0, + 1357.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1949.0, + 279.0, + 1949.0, + 279.0, + 1978.0, + 238.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1945.0, + 1375.0, + 1945.0, + 1375.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1980.0, + 279.0, + 1980.0, + 279.0, + 2009.0, + 238.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1974.0, + 718.0, + 1974.0, + 718.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 1974.0, + 1175.0, + 1974.0, + 1175.0, + 2010.0, + 756.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2010.0, + 1214.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 660.0, + 277.0, + 660.0, + 277.0, + 685.0, + 241.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 653.0, + 1387.0, + 653.0, + 1387.0, + 690.0, + 293.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 653.0, + 1405.0, + 653.0, + 1405.0, + 690.0, + 1402.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 690.0, + 277.0, + 690.0, + 277.0, + 716.0, + 241.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 681.0, + 694.0, + 681.0, + 694.0, + 722.0, + 292.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 681.0, + 961.0, + 681.0, + 961.0, + 722.0, + 725.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 681.0, + 1405.0, + 681.0, + 1405.0, + 722.0, + 1048.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 722.0, + 277.0, + 722.0, + 277.0, + 747.0, + 241.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 716.0, + 296.0, + 716.0, + 296.0, + 750.0, + 293.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 716.0, + 1405.0, + 716.0, + 1405.0, + 750.0, + 355.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 750.0, + 279.0, + 750.0, + 279.0, + 779.0, + 239.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 745.0, + 296.0, + 745.0, + 296.0, + 782.0, + 293.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 745.0, + 375.0, + 745.0, + 375.0, + 782.0, + 327.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 745.0, + 1407.0, + 745.0, + 1407.0, + 782.0, + 434.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 782.0, + 276.0, + 782.0, + 276.0, + 807.0, + 241.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 777.0, + 1359.0, + 777.0, + 1359.0, + 810.0, + 293.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 432.0, + 277.0, + 432.0, + 277.0, + 459.0, + 241.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 425.0, + 643.0, + 425.0, + 643.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 425.0, + 967.0, + 425.0, + 967.0, + 464.0, + 698.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 425.0, + 1406.0, + 425.0, + 1406.0, + 464.0, + 1002.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 463.0, + 276.0, + 463.0, + 276.0, + 490.0, + 240.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 455.0, + 888.0, + 455.0, + 888.0, + 496.0, + 291.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 455.0, + 1143.0, + 455.0, + 1143.0, + 496.0, + 926.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 455.0, + 1405.0, + 455.0, + 1405.0, + 496.0, + 1221.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 491.0, + 280.0, + 491.0, + 280.0, + 522.0, + 239.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 486.0, + 432.0, + 486.0, + 432.0, + 524.0, + 291.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 486.0, + 745.0, + 486.0, + 745.0, + 524.0, + 463.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 486.0, + 1408.0, + 486.0, + 1408.0, + 524.0, + 783.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 524.0, + 278.0, + 524.0, + 278.0, + 551.0, + 240.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 518.0, + 1404.0, + 518.0, + 1404.0, + 553.0, + 294.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 553.0, + 278.0, + 553.0, + 278.0, + 580.0, + 240.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 548.0, + 885.0, + 548.0, + 885.0, + 583.0, + 293.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 548.0, + 1118.0, + 548.0, + 1118.0, + 583.0, + 919.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 548.0, + 1405.0, + 548.0, + 1405.0, + 583.0, + 1206.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 584.0, + 278.0, + 584.0, + 278.0, + 611.0, + 241.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 579.0, + 584.0, + 579.0, + 584.0, + 614.0, + 295.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 579.0, + 1405.0, + 579.0, + 1405.0, + 614.0, + 617.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 615.0, + 278.0, + 615.0, + 278.0, + 641.0, + 241.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 603.0, + 372.0, + 603.0, + 372.0, + 652.0, + 292.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 603.0, + 1118.0, + 603.0, + 1118.0, + 652.0, + 405.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 603.0, + 1160.0, + 603.0, + 1160.0, + 652.0, + 1149.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 250.0, + 210.0, + 280.0, + 210.0, + 280.0, + 235.0, + 250.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 199.0, + 1405.0, + 199.0, + 1405.0, + 242.0, + 288.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 244.0, + 233.0, + 638.0, + 233.0, + 638.0, + 269.0, + 244.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 233.0, + 1094.0, + 233.0, + 1094.0, + 269.0, + 671.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 822.0, + 467.0, + 822.0, + 467.0, + 867.0, + 294.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 858.0, + 382.0, + 858.0, + 382.0, + 898.0, + 291.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 858.0, + 555.0, + 858.0, + 555.0, + 898.0, + 448.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 858.0, + 996.0, + 858.0, + 996.0, + 898.0, + 913.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 858.0, + 1264.0, + 858.0, + 1264.0, + 898.0, + 1255.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 812.0, + 623.0, + 812.0, + 623.0, + 864.0, + 522.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 812.0, + 728.0, + 812.0, + 728.0, + 866.0, + 627.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 808.5, + 1411.0, + 808.5, + 1411.0, + 879.0, + 722.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 255.0, + 260.0, + 469.0, + 260.0, + 469.0, + 335.0, + 255.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 260.0, + 623.0, + 260.0, + 623.0, + 335.0, + 588.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 260.0, + 684.0, + 260.0, + 684.0, + 335.0, + 654.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 260.0, + 875.0, + 260.0, + 875.0, + 335.0, + 708.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 260.0, + 964.0, + 260.0, + 964.0, + 335.0, + 909.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 260.0, + 1289.0, + 260.0, + 1289.0, + 335.0, + 1162.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1406.0, + 260.0, + 1415.0, + 260.0, + 1415.0, + 335.0, + 1406.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 320.0, + 296.0, + 320.0, + 296.0, + 365.0, + 260.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 320.0, + 665.0, + 320.0, + 665.0, + 365.0, + 581.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 320.0, + 1015.0, + 320.0, + 1015.0, + 365.0, + 1003.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 244.0, + 362.0, + 1229.0, + 362.0, + 1229.0, + 426.0, + 244.0, + 426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 254.0, + 903.0, + 692.0, + 903.0, + 692.0, + 960.0, + 254.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 903.0, + 1398.0, + 903.0, + 1398.0, + 960.0, + 1393.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 260.0, + 1183.0, + 524.0, + 1183.0, + 524.0, + 1227.0, + 260.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 261.0, + 1228.0, + 281.0, + 1228.0, + 281.0, + 1252.0, + 261.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1212.0, + 298.0, + 1212.0, + 298.0, + 1262.0, + 286.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1212.0, + 524.0, + 1212.0, + 524.0, + 1262.0, + 477.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.75, + 1172.5, + 692.75, + 1172.5, + 692.75, + 1225.0, + 586.75, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 698.0, + 1171.5, + 803.0, + 1171.5, + 803.0, + 1225.5, + 698.0, + 1225.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.75, + 1169.5, + 876.75, + 1169.5, + 876.75, + 1213.5, + 811.75, + 1213.5 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 344, + 210, + 1342, + 210, + 1342, + 505, + 344, + 505 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 286, + 878, + 1405, + 878, + 1405, + 1395, + 286, + 1395 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 295, + 525, + 1406, + 525, + 1406, + 709, + 295, + 709 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 286, + 1472, + 1403, + 1472, + 1403, + 1563, + 286, + 1563 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 244, + 742, + 1405, + 742, + 1405, + 865, + 244, + 865 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 279, + 1415, + 804, + 1415, + 804, + 1448, + 279, + 1448 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 303, + 1659, + 1390, + 1659, + 1390, + 1997, + 303, + 1997 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 859, + 2062, + 859, + 2085, + 840, + 2085 + ], + "score": 0.755 + }, + { + "category_id": 0, + "poly": [ + 298, + 1619, + 1348, + 1619, + 1348, + 1655, + 298, + 1655 + ], + "score": 0.391 + }, + { + "category_id": 7, + "poly": [ + 300, + 1965, + 433, + 1965, + 433, + 1993, + 300, + 1993 + ], + "score": 0.249 + }, + { + "category_id": 2, + "poly": [ + 240, + 758, + 276, + 758, + 276, + 1519, + 240, + 1519 + ], + "score": 0.106 + }, + { + "category_id": 2, + "poly": [ + 234, + 750, + 281, + 750, + 281, + 1507, + 234, + 1507 + ], + "score": 0.103 + }, + { + "category_id": 6, + "poly": [ + 298, + 1619, + 1348, + 1619, + 1348, + 1655, + 298, + 1655 + ], + "score": 0.098 + }, + { + "category_id": 13, + "poly": [ + 1174, + 940, + 1242, + 940, + 1242, + 973, + 1174, + 973 + ], + "score": 0.93, + "latex": "V _ { \\phi } ( s )" + }, + { + "category_id": 13, + "poly": [ + 597, + 1751, + 729, + 1751, + 729, + 1784, + 597, + 1784 + ], + "score": 0.93, + "latex": "\\chi _ { \\pi _ { t } } = g ( \\pi )" + }, + { + "category_id": 13, + "poly": [ + 869, + 1273, + 934, + 1273, + 934, + 1308, + 869, + 1308 + ], + "score": 0.92, + "latex": "V _ { \\phi _ { t + 1 } }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1243, + 1194, + 1243, + 1194, + 1278, + 1041, + 1278 + ], + "score": 0.92, + "latex": "\\mathbb { V } _ { \\theta _ { t + 1 } } ( \\chi _ { \\pi _ { t + 1 } } )" + }, + { + "category_id": 13, + "poly": [ + 601, + 1811, + 749, + 1811, + 749, + 1845, + 601, + 1845 + ], + "score": 0.92, + "latex": "\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { i } } )" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1151, + 1403, + 1151, + 1403, + 1186, + 1275, + 1186 + ], + "score": 0.92, + "latex": "\\mathbb { V } _ { \\theta _ { t } } ( \\chi _ { \\pi _ { t + 1 } } )" + }, + { + "category_id": 13, + "poly": [ + 776, + 1183, + 818, + 1183, + 818, + 1215, + 776, + 1215 + ], + "score": 0.91, + "latex": "V _ { \\phi _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 1099, + 1808, + 1264, + 1808, + 1264, + 1847, + 1099, + 1847 + ], + "score": 0.91, + "latex": "\\{ ( \\chi _ { \\pi _ { i } } , T _ { i } ) \\} _ { i = 0 } ^ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 642, + 970, + 757, + 970, + 757, + 1001, + 642, + 1001 + ], + "score": 0.91, + "latex": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )" + }, + { + "category_id": 13, + "poly": [ + 499, + 1030, + 608, + 1030, + 608, + 1064, + 499, + 1064 + ], + "score": 0.91, + "latex": "( \\{ \\pi _ { i } \\} _ { i = 0 } ^ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1114, + 1753, + 1213, + 1753, + 1213, + 1784, + 1114, + 1784 + ], + "score": 0.9, + "latex": "( \\chi _ { \\pi _ { t } } , \\tau _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 560, + 1934, + 679, + 1934, + 679, + 1966, + 560, + 1966 + ], + "score": 0.9, + "latex": "\\mathbb { V } _ { t } ( s , \\chi _ { \\pi _ { t } } )" + }, + { + "category_id": 13, + "poly": [ + 1014, + 586, + 1119, + 586, + 1119, + 620, + 1014, + 620 + ], + "score": 0.89, + "latex": "( \\mathbb { V } _ { \\theta } ( \\chi _ { \\pi } ) )" + }, + { + "category_id": 13, + "poly": [ + 1074, + 1718, + 1226, + 1718, + 1226, + 1753, + 1074, + 1753 + ], + "score": 0.89, + "latex": "\\mathcal { T } _ { t } = \\{ \\tau _ { i } \\} _ { i = 0 } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 657, + 1002, + 770, + 1002, + 770, + 1032, + 657, + 1032 + ], + "score": 0.89, + "latex": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )" + }, + { + "category_id": 13, + "poly": [ + 375, + 1096, + 432, + 1096, + 432, + 1124, + 375, + 1124 + ], + "score": 0.89, + "latex": "\\pi _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 550, + 1276, + 606, + 1276, + 606, + 1305, + 550, + 1305 + ], + "score": 0.89, + "latex": "\\pi _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1031, + 1294, + 1031, + 1294, + 1064, + 1261, + 1064 + ], + "score": 0.89, + "latex": "V _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 844, + 773, + 880, + 773, + 880, + 803, + 844, + 803 + ], + "score": 0.89, + "latex": "\\Pi _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 560, + 1903, + 708, + 1903, + 708, + 1935, + 560, + 1935 + ], + "score": 0.89, + "latex": "\\mathbb { V } _ { t - 1 } ( s , \\chi _ { \\pi _ { t } } )" + }, + { + "category_id": 13, + "poly": [ + 523, + 803, + 559, + 803, + 559, + 834, + 523, + 834 + ], + "score": 0.88, + "latex": "\\Pi _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 943, + 1622, + 1047, + 1622, + 1047, + 1655, + 943, + 1655 + ], + "score": 0.88, + "latex": "( \\mathbb { V } ( s , \\chi _ { \\pi } )" + }, + { + "category_id": 13, + "poly": [ + 913, + 1908, + 956, + 1908, + 956, + 1936, + 913, + 1936 + ], + "score": 0.88, + "latex": "\\chi _ { \\pi _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 968, + 1216, + 1025, + 1216, + 1025, + 1244, + 968, + 1244 + ], + "score": 0.87, + "latex": "\\pi _ { t + 1 }" + }, + { + "category_id": 13, + "poly": [ + 1045, + 1903, + 1197, + 1903, + 1197, + 1935, + 1045, + 1935 + ], + "score": 0.86, + "latex": "\\mathbb { V } _ { t } \\longleftarrow \\mathbb { V } _ { t - 1 }" + }, + { + "category_id": 13, + "poly": [ + 848, + 1755, + 877, + 1755, + 877, + 1782, + 848, + 1782 + ], + "score": 0.85, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 551, + 1726, + 580, + 1726, + 580, + 1751, + 551, + 1751 + ], + "score": 0.85, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1061, + 332, + 1061, + 332, + 1092, + 297, + 1092 + ], + "score": 0.84, + "latex": "\\mathbb { V } _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 472, + 1937, + 502, + 1937, + 502, + 1963, + 472, + 1963 + ], + "score": 0.84, + "latex": "\\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 518, + 1000, + 552, + 1000, + 552, + 1032, + 518, + 1032 + ], + "score": 0.84, + "latex": "V _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 525, + 1667, + 556, + 1667, + 556, + 1691, + 525, + 1691 + ], + "score": 0.83, + "latex": "\\pi _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1938, + 1290, + 1938, + 1290, + 1965, + 1147, + 1965 + ], + "score": 0.83, + "latex": "\\pi _ { t + 1 } \\longleftarrow \\pi _ { t }" + }, + { + "category_id": 13, + "poly": [ + 485, + 1693, + 620, + 1693, + 620, + 1722, + 485, + 1722 + ], + "score": 0.83, + "latex": "t = 0 , 1 , \\ldots" + }, + { + "category_id": 13, + "poly": [ + 515, + 617, + 565, + 617, + 565, + 651, + 515, + 651 + ], + "score": 0.81, + "latex": "( V _ { \\phi } )" + }, + { + "category_id": 13, + "poly": [ + 922, + 1722, + 941, + 1722, + 941, + 1748, + 922, + 1748 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1752, + 1346, + 1752, + 1346, + 1777, + 1320, + 1777 + ], + "score": 0.77, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 830, + 1847, + 847, + 1847, + 847, + 1874, + 830, + 1874 + ], + "score": 0.76, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1302, + 1661, + 1328, + 1661, + 1328, + 1686, + 1302, + 1686 + ], + "score": 0.69, + "latex": "\\mathcal { D }" + }, + { + "category_id": 13, + "poly": [ + 883, + 1666, + 900, + 1666, + 900, + 1692, + 883, + 1692 + ], + "score": 0.63, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 998, + 1660, + 1051, + 1660, + 1051, + 1692, + 998, + 1692 + ], + "score": 0.57, + "latex": "\\mathbb { V } _ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 456, + 1781, + 541, + 1781, + 541, + 1810, + 456, + 1810 + ], + "score": 0.56, + "latex": "M = 0" + }, + { + "category_id": 13, + "poly": [ + 410, + 1781, + 453, + 1781, + 453, + 1811, + 410, + 1811 + ], + "score": 0.55, + "latex": "t \\%" + }, + { + "category_id": 13, + "poly": [ + 885, + 1660, + 1051, + 1660, + 1051, + 1692, + 885, + 1692 + ], + "score": 0.51, + "latex": "g , \\mathrm { P e V F A } \\ \\mathbb { V } _ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 556, + 384, + 556, + 384, + 585, + 297, + 585 + ], + "score": 0.38, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 457, + 970, + 542, + 970, + 542, + 998, + 457, + 998 + ], + "score": 0.33, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1304, + 1171, + 1304, + 1171, + 1333, + 1085, + 1333 + ], + "score": 0.28, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 1178, + 1472, + 1265, + 1472, + 1265, + 1501, + 1178, + 1501 + ], + "score": 0.27, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 1014, + 526, + 1100, + 526, + 1100, + 554, + 1014, + 554 + ], + "score": 0.25, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 213.0, + 837.0, + 213.0, + 837.0, + 227.0, + 746.0, + 227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 213.0, + 1178.0, + 213.0, + 1178.0, + 228.0, + 1144.0, + 228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 232.0, + 395.0, + 232.0, + 395.0, + 241.0, + 384.0, + 241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 225.0, + 482.0, + 225.0, + 482.0, + 245.0, + 398.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 226.0, + 593.0, + 226.0, + 593.0, + 236.0, + 585.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 219.0, + 646.0, + 219.0, + 646.0, + 235.0, + 618.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 231.0, + 762.0, + 231.0, + 762.0, + 249.0, + 674.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 226.0, + 933.0, + 226.0, + 933.0, + 252.0, + 777.0, + 252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 219.0, + 964.0, + 219.0, + 964.0, + 235.0, + 939.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 219.0, + 1016.0, + 219.0, + 1016.0, + 235.0, + 988.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 233.0, + 1131.0, + 233.0, + 1131.0, + 248.0, + 1045.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 232.0, + 1305.0, + 232.0, + 1305.0, + 250.0, + 1242.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 222.0, + 1333.0, + 222.0, + 1333.0, + 234.0, + 1311.0, + 234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 244.0, + 392.0, + 244.0, + 392.0, + 253.0, + 383.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 240.0, + 479.0, + 240.0, + 479.0, + 258.0, + 399.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 248.0, + 644.0, + 248.0, + 644.0, + 260.0, + 619.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 245.0, + 754.0, + 245.0, + 754.0, + 260.0, + 676.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 248.0, + 959.0, + 248.0, + 959.0, + 261.0, + 940.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 249.0, + 1016.0, + 249.0, + 1016.0, + 261.0, + 989.0, + 261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 244.0, + 1124.0, + 244.0, + 1124.0, + 262.0, + 1044.0, + 262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 248.0, + 1334.0, + 248.0, + 1334.0, + 263.0, + 1309.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 261.0, + 363.0, + 261.0, + 363.0, + 402.0, + 348.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 273.0, + 645.0, + 273.0, + 645.0, + 289.0, + 618.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 255.0, + 777.0, + 255.0, + 777.0, + 292.0, + 673.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 274.0, + 959.0, + 274.0, + 959.0, + 288.0, + 940.0, + 288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 274.0, + 1016.0, + 274.0, + 1016.0, + 290.0, + 988.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 256.0, + 1143.0, + 256.0, + 1143.0, + 290.0, + 1043.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 274.0, + 1334.0, + 274.0, + 1334.0, + 290.0, + 1309.0, + 290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 606.0, + 292.0, + 646.0, + 292.0, + 646.0, + 379.0, + 606.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 303.0, + 959.0, + 303.0, + 959.0, + 315.0, + 940.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 295.0, + 1016.0, + 295.0, + 1016.0, + 319.0, + 977.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 304.0, + 1130.0, + 304.0, + 1130.0, + 311.0, + 1120.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 304.0, + 1331.0, + 304.0, + 1331.0, + 316.0, + 1310.0, + 316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 328.0, + 645.0, + 328.0, + 645.0, + 344.0, + 618.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 309.0, + 1013.0, + 309.0, + 1013.0, + 381.0, + 941.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 331.0, + 1327.0, + 331.0, + 1327.0, + 343.0, + 1312.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 310.0, + 1346.0, + 310.0, + 1346.0, + 364.0, + 1328.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 355.0, + 645.0, + 355.0, + 645.0, + 371.0, + 618.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 358.0, + 957.0, + 358.0, + 957.0, + 370.0, + 941.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 358.0, + 1015.0, + 358.0, + 1015.0, + 370.0, + 989.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 360.0, + 1326.0, + 360.0, + 1326.0, + 369.0, + 1312.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 382.0, + 646.0, + 382.0, + 646.0, + 398.0, + 622.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 384.0, + 959.0, + 384.0, + 959.0, + 397.0, + 941.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 383.0, + 1016.0, + 383.0, + 1016.0, + 399.0, + 988.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 387.0, + 1326.0, + 387.0, + 1326.0, + 396.0, + 1314.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 411.0, + 645.0, + 411.0, + 645.0, + 424.0, + 623.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 414.0, + 953.0, + 414.0, + 953.0, + 423.0, + 941.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 410.0, + 1016.0, + 410.0, + 1016.0, + 427.0, + 992.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 414.0, + 1328.0, + 414.0, + 1328.0, + 423.0, + 1315.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 424.0, + 391.0, + 424.0, + 391.0, + 433.0, + 383.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 444.0, + 383.0, + 444.0, + 383.0, + 453.0, + 374.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 444.0, + 562.0, + 444.0, + 562.0, + 469.0, + 402.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 438.0, + 644.0, + 438.0, + 644.0, + 451.0, + 620.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 445.0, + 666.0, + 445.0, + 666.0, + 458.0, + 652.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 444.0, + 723.0, + 444.0, + 723.0, + 461.0, + 703.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 445.0, + 831.0, + 445.0, + 831.0, + 472.0, + 751.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 444.0, + 886.0, + 444.0, + 886.0, + 461.0, + 867.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 444.0, + 941.0, + 444.0, + 941.0, + 461.0, + 921.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 439.0, + 960.0, + 439.0, + 960.0, + 452.0, + 945.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 439.0, + 1015.0, + 439.0, + 1015.0, + 452.0, + 991.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 447.0, + 1034.0, + 447.0, + 1034.0, + 458.0, + 1024.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 446.0, + 1091.0, + 446.0, + 1091.0, + 460.0, + 1075.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 446.0, + 1201.0, + 446.0, + 1201.0, + 472.0, + 1121.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1239.0, + 447.0, + 1254.0, + 447.0, + 1254.0, + 460.0, + 1239.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 447.0, + 1309.0, + 447.0, + 1309.0, + 460.0, + 1292.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 439.0, + 1333.0, + 439.0, + 1333.0, + 452.0, + 1315.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 475.0, + 605.0, + 475.0, + 605.0, + 504.0, + 336.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 475.0, + 1102.0, + 475.0, + 1102.0, + 506.0, + 844.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 281.0, + 549.0, + 281.0, + 549.0, + 295.0, + 533.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 354.5, + 446.0, + 354.5, + 446.0, + 367.5, + 423.0, + 367.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.25, + 305.0, + 556.25, + 305.0, + 556.25, + 333.0, + 432.25, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.25, + 391.5, + 430.25, + 391.5, + 430.25, + 400.5, + 403.25, + 400.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 524.0, + 1013.0, + 524.0, + 1013.0, + 560.0, + 294.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 524.0, + 1409.0, + 524.0, + 1409.0, + 560.0, + 1101.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 551.0, + 296.0, + 551.0, + 296.0, + 594.0, + 293.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 551.0, + 1406.0, + 551.0, + 1406.0, + 594.0, + 385.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 587.0, + 1013.0, + 587.0, + 1013.0, + 622.0, + 294.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 587.0, + 1404.0, + 587.0, + 1404.0, + 622.0, + 1120.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 614.0, + 514.0, + 614.0, + 514.0, + 653.0, + 293.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 614.0, + 1406.0, + 614.0, + 1406.0, + 653.0, + 566.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 646.0, + 1406.0, + 646.0, + 1406.0, + 680.0, + 293.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 677.0, + 1292.0, + 677.0, + 1292.0, + 712.0, + 295.0, + 712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1412.0, + 804.0, + 1412.0, + 804.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2060.0, + 862.0, + 2060.0, + 862.0, + 2091.0, + 840.0, + 2091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1618.0, + 942.0, + 1618.0, + 942.0, + 1658.0, + 295.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1618.0, + 1349.0, + 1618.0, + 1349.0, + 1658.0, + 1048.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1960.0, + 438.0, + 1960.0, + 438.0, + 1996.0, + 297.0, + 1996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 751.0, + 278.0, + 751.0, + 278.0, + 778.0, + 239.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 778.0, + 278.0, + 778.0, + 278.0, + 808.0, + 238.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 809.0, + 279.0, + 809.0, + 279.0, + 839.0, + 238.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 840.0, + 278.0, + 840.0, + 278.0, + 871.0, + 238.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 884.0, + 279.0, + 884.0, + 279.0, + 915.0, + 238.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 915.0, + 278.0, + 915.0, + 278.0, + 946.0, + 238.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 945.0, + 278.0, + 945.0, + 278.0, + 975.0, + 239.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 975.0, + 277.0, + 975.0, + 277.0, + 1006.0, + 238.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1005.0, + 278.0, + 1005.0, + 278.0, + 1036.0, + 239.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1036.0, + 278.0, + 1036.0, + 278.0, + 1067.0, + 239.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1067.0, + 278.0, + 1067.0, + 278.0, + 1097.0, + 239.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1096.0, + 278.0, + 1096.0, + 278.0, + 1127.0, + 239.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1127.0, + 278.0, + 1127.0, + 278.0, + 1158.0, + 239.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1156.0, + 278.0, + 1156.0, + 278.0, + 1188.0, + 239.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1187.0, + 278.0, + 1187.0, + 278.0, + 1218.0, + 239.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1218.0, + 278.0, + 1218.0, + 278.0, + 1249.0, + 239.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1248.0, + 278.0, + 1248.0, + 278.0, + 1279.0, + 239.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1278.0, + 277.0, + 1278.0, + 277.0, + 1310.0, + 239.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1309.0, + 278.0, + 1309.0, + 278.0, + 1340.0, + 239.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1339.0, + 278.0, + 1339.0, + 278.0, + 1370.0, + 238.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1370.0, + 278.0, + 1370.0, + 278.0, + 1402.0, + 238.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1421.0, + 278.0, + 1421.0, + 278.0, + 1452.0, + 238.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1476.0, + 279.0, + 1476.0, + 279.0, + 1508.0, + 238.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1506.0, + 278.0, + 1506.0, + 278.0, + 1532.0, + 239.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 751.0, + 277.0, + 751.0, + 277.0, + 779.0, + 239.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 780.0, + 277.0, + 780.0, + 277.0, + 809.0, + 239.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 810.0, + 277.0, + 810.0, + 277.0, + 839.0, + 239.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 842.0, + 277.0, + 842.0, + 277.0, + 872.0, + 240.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 885.0, + 277.0, + 885.0, + 277.0, + 915.0, + 239.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 917.0, + 277.0, + 917.0, + 277.0, + 946.0, + 239.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 947.0, + 277.0, + 947.0, + 277.0, + 976.0, + 239.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 978.0, + 275.0, + 978.0, + 275.0, + 1004.0, + 240.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1006.0, + 277.0, + 1006.0, + 277.0, + 1036.0, + 239.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1037.0, + 277.0, + 1037.0, + 277.0, + 1067.0, + 240.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1068.0, + 277.0, + 1068.0, + 277.0, + 1097.0, + 240.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1098.0, + 277.0, + 1098.0, + 277.0, + 1128.0, + 240.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1128.0, + 277.0, + 1128.0, + 277.0, + 1157.0, + 240.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 241.0, + 1160.0, + 276.0, + 1160.0, + 276.0, + 1186.0, + 241.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1189.0, + 277.0, + 1189.0, + 277.0, + 1218.0, + 239.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1220.0, + 277.0, + 1220.0, + 277.0, + 1249.0, + 240.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1248.0, + 277.0, + 1248.0, + 277.0, + 1281.0, + 240.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1280.0, + 276.0, + 1280.0, + 276.0, + 1309.0, + 239.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1311.0, + 277.0, + 1311.0, + 277.0, + 1340.0, + 240.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1343.0, + 276.0, + 1343.0, + 276.0, + 1369.0, + 240.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1372.0, + 277.0, + 1372.0, + 277.0, + 1401.0, + 239.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1423.0, + 277.0, + 1423.0, + 277.0, + 1453.0, + 239.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1479.0, + 277.0, + 1479.0, + 277.0, + 1508.0, + 239.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1618.0, + 942.0, + 1618.0, + 942.0, + 1658.0, + 295.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1618.0, + 1349.0, + 1618.0, + 1349.0, + 1658.0, + 1048.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 879.0, + 1404.0, + 879.0, + 1404.0, + 912.0, + 296.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 909.0, + 1405.0, + 909.0, + 1405.0, + 945.0, + 293.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 935.0, + 1173.0, + 935.0, + 1173.0, + 977.0, + 292.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 935.0, + 1406.0, + 935.0, + 1406.0, + 977.0, + 1243.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 966.0, + 456.0, + 966.0, + 456.0, + 1008.0, + 291.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 966.0, + 641.0, + 966.0, + 641.0, + 1008.0, + 543.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 966.0, + 1407.0, + 966.0, + 1407.0, + 1008.0, + 758.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 996.0, + 517.0, + 996.0, + 517.0, + 1040.0, + 291.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 996.0, + 656.0, + 996.0, + 656.0, + 1040.0, + 553.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 771.0, + 996.0, + 1408.0, + 996.0, + 1408.0, + 1040.0, + 771.0, + 1040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1027.0, + 498.0, + 1027.0, + 498.0, + 1071.0, + 291.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1027.0, + 1260.0, + 1027.0, + 1260.0, + 1071.0, + 609.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1027.0, + 1409.0, + 1027.0, + 1409.0, + 1071.0, + 1295.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1058.0, + 1408.0, + 1058.0, + 1408.0, + 1098.0, + 333.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1090.0, + 374.0, + 1090.0, + 374.0, + 1126.0, + 294.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 1090.0, + 1408.0, + 1090.0, + 1408.0, + 1126.0, + 433.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1120.0, + 1407.0, + 1120.0, + 1407.0, + 1157.0, + 292.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1143.0, + 1274.0, + 1143.0, + 1274.0, + 1194.0, + 291.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 1143.0, + 1409.0, + 1143.0, + 1409.0, + 1194.0, + 1404.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1180.0, + 775.0, + 1180.0, + 775.0, + 1220.0, + 292.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 819.0, + 1180.0, + 1408.0, + 1180.0, + 1408.0, + 1220.0, + 819.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1210.0, + 967.0, + 1210.0, + 967.0, + 1248.0, + 293.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 1210.0, + 1406.0, + 1210.0, + 1406.0, + 1248.0, + 1026.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1235.0, + 1040.0, + 1235.0, + 1040.0, + 1283.0, + 292.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1235.0, + 1408.0, + 1235.0, + 1408.0, + 1283.0, + 1195.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1269.0, + 549.0, + 1269.0, + 549.0, + 1313.0, + 292.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 607.0, + 1269.0, + 868.0, + 1269.0, + 868.0, + 1313.0, + 607.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 1269.0, + 1407.0, + 1269.0, + 1407.0, + 1313.0, + 935.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1302.0, + 1084.0, + 1302.0, + 1084.0, + 1338.0, + 292.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1302.0, + 1405.0, + 1302.0, + 1405.0, + 1338.0, + 1172.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1329.0, + 1408.0, + 1329.0, + 1408.0, + 1372.0, + 292.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1364.0, + 1134.0, + 1364.0, + 1134.0, + 1399.0, + 293.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1469.0, + 1177.0, + 1469.0, + 1177.0, + 1508.0, + 293.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1469.0, + 1406.0, + 1469.0, + 1406.0, + 1508.0, + 1266.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 1407.0, + 1498.0, + 1407.0, + 1538.0, + 292.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1569.0, + 293.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 748.0, + 278.0, + 748.0, + 278.0, + 774.0, + 240.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 739.0, + 1406.0, + 739.0, + 1406.0, + 780.0, + 291.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 776.0, + 279.0, + 776.0, + 279.0, + 806.0, + 237.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 770.0, + 843.0, + 770.0, + 843.0, + 808.0, + 293.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 808.0, + 881.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 806.0, + 278.0, + 806.0, + 278.0, + 837.0, + 237.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 799.0, + 522.0, + 799.0, + 522.0, + 837.0, + 291.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 799.0, + 1406.0, + 799.0, + 1406.0, + 837.0, + 560.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 838.0, + 278.0, + 838.0, + 278.0, + 865.0, + 240.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 831.0, + 1406.0, + 831.0, + 1406.0, + 869.0, + 293.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1658.0, + 524.0, + 1658.0, + 524.0, + 1695.0, + 304.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1658.0, + 882.0, + 1658.0, + 882.0, + 1695.0, + 557.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1658.0, + 1301.0, + 1658.0, + 1301.0, + 1695.0, + 1052.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1694.0, + 337.0, + 1694.0, + 337.0, + 1755.0, + 309.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1690.0, + 484.0, + 1690.0, + 484.0, + 1771.0, + 340.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1690.0, + 921.0, + 1690.0, + 921.0, + 1771.0, + 621.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1690.0, + 1073.0, + 1690.0, + 1073.0, + 1771.0, + 942.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1690.0, + 1241.0, + 1690.0, + 1241.0, + 1771.0, + 1227.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1751.0, + 337.0, + 1751.0, + 337.0, + 1784.0, + 309.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1746.0, + 596.0, + 1746.0, + 596.0, + 1788.0, + 380.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1746.0, + 847.0, + 1746.0, + 847.0, + 1788.0, + 730.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1746.0, + 1113.0, + 1746.0, + 1113.0, + 1788.0, + 878.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1746.0, + 1319.0, + 1746.0, + 1319.0, + 1788.0, + 1214.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1746.0, + 1352.0, + 1746.0, + 1352.0, + 1788.0, + 1347.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1781.0, + 337.0, + 1781.0, + 337.0, + 1816.0, + 309.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1777.0, + 409.0, + 1777.0, + 409.0, + 1816.0, + 382.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1777.0, + 603.0, + 1777.0, + 603.0, + 1816.0, + 542.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1812.0, + 337.0, + 1812.0, + 337.0, + 1844.0, + 307.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1796.0, + 600.0, + 1796.0, + 600.0, + 1863.0, + 416.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1796.0, + 1098.0, + 1796.0, + 1098.0, + 1863.0, + 750.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 1796.0, + 1278.0, + 1796.0, + 1278.0, + 1863.0, + 1265.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1842.0, + 337.0, + 1842.0, + 337.0, + 1875.0, + 307.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 1839.0, + 829.0, + 1839.0, + 829.0, + 1878.0, + 425.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1839.0, + 1310.0, + 1839.0, + 1310.0, + 1878.0, + 848.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1873.0, + 337.0, + 1873.0, + 337.0, + 1905.0, + 307.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1872.0, + 462.0, + 1872.0, + 462.0, + 1902.0, + 381.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1903.0, + 338.0, + 1903.0, + 338.0, + 1935.0, + 306.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1898.0, + 559.0, + 1898.0, + 559.0, + 1940.0, + 380.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 1898.0, + 912.0, + 1898.0, + 912.0, + 1940.0, + 709.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1898.0, + 1044.0, + 1898.0, + 1044.0, + 1940.0, + 957.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1933.0, + 338.0, + 1933.0, + 338.0, + 1966.0, + 296.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1928.0, + 471.0, + 1928.0, + 471.0, + 1974.0, + 379.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 1928.0, + 559.0, + 1928.0, + 559.0, + 1974.0, + 503.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1928.0, + 1146.0, + 1928.0, + 1146.0, + 1974.0, + 680.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1928.0, + 1295.0, + 1928.0, + 1295.0, + 1974.0, + 1291.0, + 1974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1965.0, + 337.0, + 1965.0, + 337.0, + 1992.0, + 299.0, + 1992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1961.0, + 437.0, + 1961.0, + 437.0, + 1995.0, + 341.0, + 1995.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 239, + 767, + 1404, + 767, + 1404, + 1045, + 239, + 1045 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 271, + 1156, + 1403, + 1156, + 1403, + 1461, + 271, + 1461 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 243, + 1475, + 1404, + 1475, + 1404, + 1902, + 243, + 1902 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 460, + 194, + 1247, + 194, + 1247, + 536, + 460, + 536 + ], + "score": 0.972 + }, + { + "category_id": 4, + "poly": [ + 295, + 565, + 1404, + 565, + 1404, + 720, + 295, + 720 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 243, + 1914, + 1403, + 1914, + 1403, + 2008, + 243, + 2008 + ], + "score": 0.955 + }, + { + "category_id": 0, + "poly": [ + 241, + 1087, + 800, + 1087, + 800, + 1127, + 241, + 1127 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 858, + 2061, + 858, + 2084, + 841, + 2084 + ], + "score": 0.713 + }, + { + "category_id": 2, + "poly": [ + 841, + 2061, + 859, + 2061, + 859, + 2084, + 841, + 2084 + ], + "score": 0.104 + }, + { + "category_id": 13, + "poly": [ + 354, + 921, + 485, + 921, + 485, + 955, + 354, + 955 + ], + "score": 0.93, + "latex": "\\mathbb { V } _ { t - 1 } ( \\chi _ { \\pi _ { t } } ) )" + }, + { + "category_id": 13, + "poly": [ + 1206, + 632, + 1242, + 632, + 1242, + 660, + 1206, + 660 + ], + "score": 0.88, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1024, + 632, + 1059, + 632, + 1059, + 660, + 1024, + 660 + ], + "score": 0.86, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 923, + 1980, + 959, + 1980, + 959, + 2008, + 923, + 2008 + ], + "score": 0.85, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1011, + 771, + 1043, + 771, + 1043, + 797, + 1011, + 797 + ], + "score": 0.74, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 683, + 1981, + 703, + 1981, + 703, + 2003, + 683, + 2003 + ], + "score": 0.74, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 552, + 1628, + 620, + 1628, + 620, + 1658, + 552, + 1658 + ], + "score": 0.35, + "latex": "( S P R )" + }, + { + "category_id": 13, + "poly": [ + 509, + 892, + 597, + 892, + 597, + 921, + 509, + 921 + ], + "score": 0.33, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 857, + 658, + 942, + 658, + 942, + 687, + 857, + 687 + ], + "score": 0.31, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 194.0, + 1128.0, + 194.0, + 1128.0, + 220.0, + 1002.0, + 220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 240.0, + 926.0, + 240.0, + 926.0, + 258.0, + 907.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 231.0, + 1059.0, + 231.0, + 1059.0, + 263.0, + 1010.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 238.0, + 1229.0, + 238.0, + 1229.0, + 268.0, + 1171.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 254.0, + 1121.0, + 254.0, + 1121.0, + 282.0, + 1075.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 254.0, + 1200.0, + 254.0, + 1200.0, + 281.0, + 1135.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 260.0, + 1237.0, + 260.0, + 1237.0, + 277.0, + 1212.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 276.0, + 624.0, + 276.0, + 624.0, + 307.0, + 467.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 289.0, + 806.0, + 289.0, + 806.0, + 318.0, + 679.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 269.0, + 1060.0, + 269.0, + 1060.0, + 303.0, + 1007.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 278.0, + 1248.0, + 278.0, + 1248.0, + 311.0, + 1138.0, + 311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 326.0, + 597.0, + 326.0, + 597.0, + 376.0, + 487.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 351.0, + 912.0, + 351.0, + 912.0, + 363.0, + 900.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 317.0, + 1113.0, + 317.0, + 1113.0, + 369.0, + 1021.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 318.0, + 1248.0, + 318.0, + 1248.0, + 370.0, + 1139.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 397.0, + 591.0, + 397.0, + 591.0, + 449.0, + 495.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 384.0, + 671.0, + 384.0, + 671.0, + 393.0, + 661.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 366.0, + 730.0, + 366.0, + 730.0, + 415.0, + 679.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 374.0, + 811.0, + 374.0, + 811.0, + 402.0, + 765.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 376.0, + 922.0, + 376.0, + 922.0, + 431.0, + 849.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 433.0, + 954.0, + 433.0, + 954.0, + 441.0, + 947.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 411.0, + 1032.0, + 411.0, + 1032.0, + 440.0, + 985.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 386.0, + 1245.0, + 386.0, + 1245.0, + 421.0, + 1143.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 455.0, + 1056.0, + 455.0, + 1056.0, + 468.0, + 1045.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 442.0, + 1105.0, + 442.0, + 1105.0, + 471.0, + 1058.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 437.0, + 1246.0, + 437.0, + 1246.0, + 478.0, + 1147.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 483.0, + 920.0, + 483.0, + 920.0, + 504.0, + 900.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 477.0, + 1034.0, + 477.0, + 1034.0, + 505.0, + 986.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 502.0, + 1115.0, + 502.0, + 1115.0, + 532.0, + 1051.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 565.0, + 1405.0, + 565.0, + 1405.0, + 603.0, + 294.0, + 603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 596.0, + 1406.0, + 596.0, + 1406.0, + 632.0, + 294.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 625.0, + 1023.0, + 625.0, + 1023.0, + 662.0, + 294.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 625.0, + 1205.0, + 625.0, + 1205.0, + 662.0, + 1060.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 625.0, + 1405.0, + 625.0, + 1405.0, + 662.0, + 1243.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 654.0, + 856.0, + 654.0, + 856.0, + 694.0, + 293.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 654.0, + 1406.0, + 654.0, + 1406.0, + 694.0, + 943.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 685.0, + 1229.0, + 685.0, + 1229.0, + 725.0, + 293.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 1084.0, + 804.0, + 1084.0, + 804.0, + 1135.0, + 232.0, + 1135.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": [ + 840.0, + 2059.0, + 860.0, + 2059.0, + 860.0, + 2092.0, + 840.0, + 2092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 776.0, + 277.0, + 776.0, + 277.0, + 801.0, + 240.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 768.0, + 1010.0, + 768.0, + 1010.0, + 804.0, + 290.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 768.0, + 1405.0, + 768.0, + 1405.0, + 804.0, + 1044.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 805.0, + 279.0, + 805.0, + 279.0, + 834.0, + 239.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 800.0, + 1405.0, + 800.0, + 1405.0, + 835.0, + 292.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 835.0, + 277.0, + 835.0, + 277.0, + 864.0, + 238.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 830.0, + 1405.0, + 830.0, + 1405.0, + 865.0, + 292.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 865.0, + 279.0, + 865.0, + 279.0, + 894.0, + 238.0, + 894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 859.0, + 1405.0, + 859.0, + 1405.0, + 897.0, + 293.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 898.0, + 277.0, + 898.0, + 277.0, + 923.0, + 239.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 892.0, + 508.0, + 892.0, + 508.0, + 928.0, + 293.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 892.0, + 1407.0, + 892.0, + 1407.0, + 928.0, + 598.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 926.0, + 279.0, + 926.0, + 279.0, + 955.0, + 238.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 922.0, + 353.0, + 922.0, + 353.0, + 959.0, + 293.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 922.0, + 1405.0, + 922.0, + 1405.0, + 959.0, + 486.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 959.0, + 277.0, + 959.0, + 277.0, + 983.0, + 239.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 952.0, + 1407.0, + 952.0, + 1407.0, + 987.0, + 292.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 989.0, + 277.0, + 989.0, + 277.0, + 1014.0, + 239.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 982.0, + 1405.0, + 982.0, + 1405.0, + 1015.0, + 294.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1018.0, + 279.0, + 1018.0, + 279.0, + 1046.0, + 238.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1011.0, + 824.0, + 1011.0, + 824.0, + 1050.0, + 292.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1157.0, + 1406.0, + 1157.0, + 1406.0, + 1192.0, + 288.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1187.0, + 1408.0, + 1187.0, + 1408.0, + 1222.0, + 293.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1216.0, + 1406.0, + 1216.0, + 1406.0, + 1252.0, + 294.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1245.0, + 1404.0, + 1245.0, + 1404.0, + 1284.0, + 293.0, + 1284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1278.0, + 1405.0, + 1278.0, + 1405.0, + 1312.0, + 292.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1406.0, + 1308.0, + 1406.0, + 1344.0, + 294.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1338.0, + 1408.0, + 1338.0, + 1408.0, + 1373.0, + 293.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1367.0, + 1407.0, + 1367.0, + 1407.0, + 1403.0, + 292.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1395.0, + 1407.0, + 1395.0, + 1407.0, + 1438.0, + 290.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1429.0, + 1063.0, + 1429.0, + 1063.0, + 1464.0, + 292.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1481.0, + 278.0, + 1481.0, + 278.0, + 1509.0, + 239.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1476.0, + 1405.0, + 1476.0, + 1405.0, + 1511.0, + 292.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1510.0, + 277.0, + 1510.0, + 277.0, + 1539.0, + 238.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1505.0, + 1407.0, + 1505.0, + 1407.0, + 1540.0, + 292.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1542.0, + 277.0, + 1542.0, + 277.0, + 1569.0, + 238.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1535.0, + 1407.0, + 1535.0, + 1407.0, + 1572.0, + 292.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1572.0, + 278.0, + 1572.0, + 278.0, + 1600.0, + 238.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1568.0, + 1405.0, + 1568.0, + 1405.0, + 1600.0, + 295.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1601.0, + 277.0, + 1601.0, + 277.0, + 1630.0, + 238.0, + 1630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1595.0, + 1405.0, + 1595.0, + 1405.0, + 1632.0, + 292.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1631.0, + 278.0, + 1631.0, + 278.0, + 1659.0, + 238.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1626.0, + 551.0, + 1626.0, + 551.0, + 1662.0, + 294.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1626.0, + 1405.0, + 1626.0, + 1405.0, + 1662.0, + 621.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1663.0, + 277.0, + 1663.0, + 277.0, + 1691.0, + 238.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1659.0, + 1405.0, + 1659.0, + 1405.0, + 1691.0, + 295.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1692.0, + 277.0, + 1692.0, + 277.0, + 1720.0, + 238.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1690.0, + 1404.0, + 1690.0, + 1404.0, + 1721.0, + 294.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1723.0, + 277.0, + 1723.0, + 277.0, + 1751.0, + 238.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1718.0, + 1407.0, + 1718.0, + 1407.0, + 1753.0, + 293.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1753.0, + 278.0, + 1753.0, + 278.0, + 1781.0, + 238.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1749.0, + 1405.0, + 1749.0, + 1405.0, + 1781.0, + 293.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1784.0, + 277.0, + 1784.0, + 277.0, + 1811.0, + 238.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1777.0, + 1408.0, + 1777.0, + 1408.0, + 1814.0, + 290.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1814.0, + 277.0, + 1814.0, + 277.0, + 1842.0, + 238.0, + 1842.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": [ + 239.0, + 1844.0, + 277.0, + 1844.0, + 277.0, + 1872.0, + 239.0, + 1872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1839.0, + 1405.0, + 1839.0, + 1405.0, + 1875.0, + 293.0, + 1875.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1875.0, + 278.0, + 1875.0, + 278.0, + 1903.0, + 239.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1868.0, + 1186.0, + 1868.0, + 1186.0, + 1906.0, + 291.0, + 1906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1920.0, + 278.0, + 1920.0, + 278.0, + 1946.0, + 240.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1913.0, + 1406.0, + 1913.0, + 1406.0, + 1949.0, + 291.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 1953.0, + 277.0, + 1953.0, + 277.0, + 1976.0, + 240.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1948.0, + 1404.0, + 1948.0, + 1404.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1980.0, + 278.0, + 1980.0, + 278.0, + 2007.0, + 239.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1974.0, + 682.0, + 1974.0, + 682.0, + 2008.0, + 291.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 704.0, + 1974.0, + 922.0, + 1974.0, + 922.0, + 2008.0, + 704.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2008.0, + 960.0, + 2008.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 239, + 200, + 1404, + 200, + 1404, + 387, + 239, + 387 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 295, + 1686, + 1404, + 1686, + 1404, + 1931, + 295, + 1931 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 293, + 830, + 1397, + 830, + 1397, + 923, + 293, + 923 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 290, + 1156, + 1398, + 1156, + 1398, + 1220, + 290, + 1220 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 287, + 400, + 1406, + 400, + 1406, + 804, + 287, + 804 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 288, + 1073, + 1388, + 1073, + 1388, + 1143, + 288, + 1143 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 247, + 1489, + 1404, + 1489, + 1404, + 1675, + 247, + 1675 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 301, + 1029, + 1252, + 1029, + 1252, + 1063, + 301, + 1063 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 281, + 1944, + 1398, + 1944, + 1398, + 2008, + 281, + 2008 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 298, + 963, + 533, + 963, + 533, + 1000, + 298, + 1000 + ], + "score": 0.89 + }, + { + "category_id": 1, + "poly": [ + 292, + 1231, + 1404, + 1231, + 1404, + 1477, + 292, + 1477 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 840, + 2062, + 858, + 2062, + 858, + 2085, + 840, + 2085 + ], + "score": 0.791 + }, + { + "category_id": 1, + "poly": [ + 284, + 768, + 1316, + 768, + 1316, + 820, + 284, + 820 + ], + "score": 0.237 + }, + { + "category_id": 2, + "poly": [ + 237, + 228, + 283, + 228, + 283, + 2060, + 237, + 2060 + ], + "score": 0.216 + }, + { + "category_id": 13, + "poly": [ + 513, + 201, + 659, + 201, + 659, + 237, + 513, + 237 + ], + "score": 0.93, + "latex": "\\{ ( s _ { i } , a _ { i } ) \\} _ { i = 1 } ^ { k }" + }, + { + "category_id": 13, + "poly": [ + 845, + 262, + 995, + 262, + 995, + 297, + 845, + 297 + ], + "score": 0.93, + "latex": "\\{ ( w _ { i } , b _ { i } ) \\} _ { i = 1 } ^ { h }" + }, + { + "category_id": 13, + "poly": [ + 956, + 1385, + 1070, + 1385, + 1070, + 1417, + 956, + 1417 + ], + "score": 0.93, + "latex": "\\mathbb { V } _ { \\theta } ( s , \\chi _ { \\pi } )" + }, + { + "category_id": 13, + "poly": [ + 611, + 551, + 725, + 551, + 725, + 584, + 611, + 584 + ], + "score": 0.92, + "latex": "\\bar { \\pi } ( \\cdot | s , \\chi _ { \\pi } )" + }, + { + "category_id": 13, + "poly": [ + 1051, + 1294, + 1119, + 1294, + 1119, + 1327, + 1051, + 1327 + ], + "score": 0.92, + "latex": "V _ { \\phi } ( s )" + }, + { + "category_id": 13, + "poly": [ + 731, + 296, + 797, + 296, + 797, + 326, + 731, + 326 + ], + "score": 0.91, + "latex": "w _ { i } , b _ { i }" + }, + { + "category_id": 13, + "poly": [ + 547, + 1415, + 614, + 1415, + 614, + 1449, + 547, + 1449 + ], + "score": 0.9, + "latex": "V _ { \\phi } ( s )" + }, + { + "category_id": 13, + "poly": [ + 631, + 764, + 1314, + 764, + 1314, + 820, + 631, + 820 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\mathcal { L } _ { \\mathrm { C L } } = - \\mathbb { E } _ { ( \\pi ^ { + } , \\{ \\pi ^ { - } \\} ) } \\left[ \\log \\frac { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) } { \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { + } } ) + \\sum _ { \\pi ^ { - } } \\exp ( \\chi _ { \\pi } ^ { T } W \\chi _ { \\pi ^ { - } } ) } \\right] . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1165, + 643, + 1203, + 643, + 1203, + 672, + 1165, + 672 + ], + "score": 0.86, + "latex": "\\pi ^ { - }" + }, + { + "category_id": 13, + "poly": [ + 634, + 406, + 669, + 406, + 669, + 433, + 634, + 433 + ], + "score": 0.86, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 482, + 643, + 520, + 643, + 520, + 672, + 482, + 672 + ], + "score": 0.86, + "latex": "\\pi ^ { + }" + }, + { + "category_id": 13, + "poly": [ + 928, + 526, + 964, + 526, + 964, + 554, + 928, + 554 + ], + "score": 0.85, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1027, + 1356, + 1059, + 1356, + 1059, + 1387, + 1027, + 1387 + ], + "score": 0.85, + "latex": "V _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 297, + 616, + 332, + 616, + 332, + 645, + 297, + 645 + ], + "score": 0.84, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1000, + 738, + 1036, + 738, + 1036, + 765, + 1000, + 765 + ], + "score": 0.84, + "latex": "\\chi _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 1322, + 1295, + 1343, + 1295, + 1343, + 1325, + 1322, + 1325 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1258, + 1386, + 1276, + 1386, + 1276, + 1412, + 1258, + 1412 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 669, + 236, + 688, + 236, + 688, + 261, + 669, + 261 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 568, + 583, + 936, + 583, + 936, + 617, + 568, + 617 + ], + "score": 0.77, + "latex": "\\mathcal { L } _ { \\mathrm { A U X } } = - \\mathbb { E } _ { ( s , a ) } \\left[ \\log \\bar { \\pi } ( a | s , \\chi _ { \\pi } ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 1184, + 1329, + 1204, + 1329, + 1204, + 1351, + 1184, + 1351 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 839, + 526, + 860, + 526, + 860, + 550, + 839, + 550 + ], + "score": 0.76, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 502, + 1841, + 530, + 1841, + 530, + 1868, + 502, + 1868 + ], + "score": 0.75, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1331, + 1105, + 1331, + 1105, + 1352, + 1085, + 1352 + ], + "score": 0.75, + "latex": "\\pi" + }, + { + "category_id": 13, + "poly": [ + 1290, + 265, + 1310, + 265, + 1310, + 291, + 1290, + 291 + ], + "score": 0.67, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 729, + 1840, + 791, + 1840, + 791, + 1869, + 729, + 1869 + ], + "score": 0.62, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 621, + 615, + 674, + 615, + 674, + 644, + 621, + 644 + ], + "score": 0.54, + "latex": "( C L )" + }, + { + "category_id": 13, + "poly": [ + 944, + 432, + 1013, + 432, + 1013, + 462, + 944, + 462 + ], + "score": 0.5, + "latex": "( E 2 E )" + }, + { + "category_id": 13, + "poly": [ + 913, + 1719, + 946, + 1719, + 946, + 1746, + 913, + 1746 + ], + "score": 0.5, + "latex": "3 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 771, + 1385, + 856, + 1385, + 856, + 1414, + 771, + 1414 + ], + "score": 0.43, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 632, + 769, + 862, + 769, + 862, + 816, + 632, + 816 + ], + "score": 0.39, + "latex": "\\mathcal { L } _ { \\mathrm { C L } } = - \\mathbb { E } _ { ( \\pi ^ { + } , \\{ \\pi ^ { - } \\} ) }" + }, + { + "category_id": 13, + "poly": [ + 655, + 432, + 741, + 432, + 741, + 460, + 655, + 460 + ], + "score": 0.25, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 956.0, + 538.0, + 956.0, + 538.0, + 1011.0, + 288.0, + 1011.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": [ + 235.0, + 238.0, + 281.0, + 238.0, + 281.0, + 269.0, + 235.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 269.0, + 281.0, + 269.0, + 281.0, + 299.0, + 235.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 299.0, + 281.0, + 299.0, + 281.0, + 331.0, + 237.0, + 331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 329.0, + 281.0, + 329.0, + 281.0, + 361.0, + 237.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 361.0, + 278.0, + 361.0, + 278.0, + 391.0, + 237.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 405.0, + 281.0, + 405.0, + 281.0, + 436.0, + 237.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 436.0, + 281.0, + 436.0, + 281.0, + 468.0, + 235.0, + 468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 464.0, + 281.0, + 464.0, + 281.0, + 496.0, + 235.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 496.0, + 281.0, + 496.0, + 281.0, + 528.0, + 237.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 526.0, + 281.0, + 526.0, + 281.0, + 556.0, + 237.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 556.0, + 278.0, + 556.0, + 278.0, + 589.0, + 237.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 587.0, + 281.0, + 587.0, + 281.0, + 619.0, + 237.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 619.0, + 281.0, + 619.0, + 281.0, + 649.0, + 237.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 649.0, + 281.0, + 649.0, + 281.0, + 679.0, + 237.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 677.0, + 278.0, + 677.0, + 278.0, + 709.0, + 237.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 707.0, + 281.0, + 707.0, + 281.0, + 739.0, + 237.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 737.0, + 281.0, + 737.0, + 281.0, + 772.0, + 237.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 782.0, + 281.0, + 782.0, + 281.0, + 814.0, + 237.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 834.0, + 281.0, + 834.0, + 281.0, + 866.0, + 235.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 864.0, + 281.0, + 864.0, + 281.0, + 896.0, + 237.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 894.0, + 281.0, + 894.0, + 281.0, + 933.0, + 237.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 973.0, + 281.0, + 973.0, + 281.0, + 1007.0, + 237.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1033.0, + 283.0, + 1033.0, + 283.0, + 1074.0, + 235.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1080.0, + 278.0, + 1080.0, + 278.0, + 1114.0, + 237.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1118.0, + 278.0, + 1118.0, + 278.0, + 1152.0, + 237.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1162.0, + 281.0, + 1162.0, + 281.0, + 1194.0, + 235.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1192.0, + 281.0, + 1192.0, + 281.0, + 1231.0, + 237.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1237.0, + 281.0, + 1237.0, + 281.0, + 1269.0, + 235.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1269.0, + 281.0, + 1269.0, + 281.0, + 1301.0, + 237.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1299.0, + 281.0, + 1299.0, + 281.0, + 1329.0, + 235.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1329.0, + 281.0, + 1329.0, + 281.0, + 1361.0, + 237.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1359.0, + 281.0, + 1359.0, + 281.0, + 1392.0, + 235.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1392.0, + 281.0, + 1392.0, + 281.0, + 1422.0, + 235.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1420.0, + 281.0, + 1420.0, + 281.0, + 1450.0, + 235.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1450.0, + 281.0, + 1450.0, + 281.0, + 1482.0, + 237.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1494.0, + 281.0, + 1494.0, + 281.0, + 1526.0, + 235.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1526.0, + 281.0, + 1526.0, + 281.0, + 1557.0, + 235.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1557.0, + 281.0, + 1557.0, + 281.0, + 1587.0, + 235.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1587.0, + 281.0, + 1587.0, + 281.0, + 1619.0, + 235.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1617.0, + 283.0, + 1617.0, + 283.0, + 1647.0, + 235.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1649.0, + 281.0, + 1649.0, + 281.0, + 1683.0, + 237.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1691.0, + 281.0, + 1691.0, + 281.0, + 1724.0, + 235.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1724.0, + 281.0, + 1724.0, + 281.0, + 1754.0, + 235.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1754.0, + 281.0, + 1754.0, + 281.0, + 1786.0, + 235.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1784.0, + 281.0, + 1784.0, + 281.0, + 1814.0, + 237.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1814.0, + 281.0, + 1814.0, + 281.0, + 1844.0, + 235.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1844.0, + 281.0, + 1844.0, + 281.0, + 1877.0, + 235.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1875.0, + 281.0, + 1875.0, + 281.0, + 1907.0, + 235.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1905.0, + 281.0, + 1905.0, + 281.0, + 1939.0, + 237.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1949.0, + 281.0, + 1949.0, + 281.0, + 1981.0, + 235.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1979.0, + 278.0, + 1979.0, + 278.0, + 2011.0, + 237.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 208.0, + 279.0, + 208.0, + 279.0, + 236.0, + 239.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 197.0, + 512.0, + 197.0, + 512.0, + 245.0, + 289.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 197.0, + 1409.0, + 197.0, + 1409.0, + 245.0, + 660.0, + 245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 240.0, + 276.0, + 240.0, + 276.0, + 264.0, + 239.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 232.0, + 668.0, + 232.0, + 668.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 232.0, + 1407.0, + 232.0, + 1407.0, + 268.0, + 689.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 268.0, + 279.0, + 268.0, + 279.0, + 296.0, + 238.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 259.0, + 844.0, + 259.0, + 844.0, + 302.0, + 289.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 259.0, + 1289.0, + 259.0, + 1289.0, + 302.0, + 996.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 259.0, + 1409.0, + 259.0, + 1409.0, + 302.0, + 1311.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 299.0, + 279.0, + 299.0, + 279.0, + 327.0, + 238.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 292.0, + 730.0, + 292.0, + 730.0, + 329.0, + 292.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 329.0, + 798.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 331.0, + 277.0, + 331.0, + 277.0, + 355.0, + 239.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 322.0, + 1407.0, + 322.0, + 1407.0, + 359.0, + 293.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 359.0, + 277.0, + 359.0, + 277.0, + 387.0, + 238.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 354.0, + 1026.0, + 354.0, + 1026.0, + 390.0, + 294.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1686.0, + 1405.0, + 1686.0, + 1405.0, + 1723.0, + 294.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1715.0, + 912.0, + 1715.0, + 912.0, + 1755.0, + 292.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1715.0, + 1407.0, + 1715.0, + 1407.0, + 1755.0, + 947.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1783.0, + 295.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1780.0, + 1406.0, + 1780.0, + 1406.0, + 1813.0, + 294.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1805.0, + 1407.0, + 1805.0, + 1407.0, + 1846.0, + 290.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1840.0, + 501.0, + 1840.0, + 501.0, + 1873.0, + 294.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1840.0, + 728.0, + 1840.0, + 728.0, + 1873.0, + 531.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 792.0, + 1840.0, + 1406.0, + 1840.0, + 1406.0, + 1873.0, + 792.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1870.0, + 1406.0, + 1870.0, + 1406.0, + 1903.0, + 293.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1898.0, + 915.0, + 1898.0, + 915.0, + 1933.0, + 293.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 831.0, + 1401.0, + 831.0, + 1401.0, + 864.0, + 296.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 857.0, + 1402.0, + 857.0, + 1402.0, + 898.0, + 293.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 891.0, + 1403.0, + 891.0, + 1403.0, + 926.0, + 292.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1156.0, + 1403.0, + 1156.0, + 1403.0, + 1191.0, + 295.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1187.0, + 1376.0, + 1187.0, + 1376.0, + 1223.0, + 295.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 397.0, + 633.0, + 397.0, + 633.0, + 437.0, + 294.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 397.0, + 1405.0, + 397.0, + 1405.0, + 437.0, + 670.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 429.0, + 654.0, + 429.0, + 654.0, + 466.0, + 294.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 429.0, + 943.0, + 429.0, + 943.0, + 466.0, + 742.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 429.0, + 1409.0, + 429.0, + 1409.0, + 466.0, + 1014.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1408.0, + 460.0, + 1408.0, + 494.0, + 293.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 485.0, + 1407.0, + 485.0, + 1407.0, + 531.0, + 290.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 517.0, + 838.0, + 517.0, + 838.0, + 560.0, + 292.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 517.0, + 927.0, + 517.0, + 927.0, + 560.0, + 861.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 517.0, + 1409.0, + 517.0, + 1409.0, + 560.0, + 965.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 548.0, + 610.0, + 548.0, + 610.0, + 589.0, + 293.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 548.0, + 1406.0, + 548.0, + 1406.0, + 589.0, + 726.0, + 589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 580.0, + 567.0, + 580.0, + 567.0, + 624.0, + 292.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 580.0, + 1409.0, + 580.0, + 1409.0, + 624.0, + 937.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 610.0, + 296.0, + 610.0, + 296.0, + 649.0, + 292.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 610.0, + 620.0, + 610.0, + 620.0, + 649.0, + 333.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 610.0, + 1409.0, + 610.0, + 1409.0, + 649.0, + 675.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 640.0, + 481.0, + 640.0, + 481.0, + 679.0, + 292.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 640.0, + 1164.0, + 640.0, + 1164.0, + 679.0, + 521.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1204.0, + 640.0, + 1406.0, + 640.0, + 1406.0, + 679.0, + 1204.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 710.0, + 294.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 700.0, + 1405.0, + 700.0, + 1405.0, + 740.0, + 293.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 999.0, + 732.0, + 999.0, + 773.0, + 293.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 732.0, + 1406.0, + 732.0, + 1406.0, + 773.0, + 1037.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 760.0, + 630.0, + 760.0, + 630.0, + 817.0, + 291.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 780.0, + 1320.0, + 780.0, + 1320.0, + 804.0, + 1288.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1071.0, + 1393.0, + 1071.0, + 1393.0, + 1113.0, + 297.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1109.0, + 1218.0, + 1109.0, + 1218.0, + 1145.0, + 297.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1495.0, + 278.0, + 1495.0, + 278.0, + 1523.0, + 239.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1491.0, + 1406.0, + 1491.0, + 1406.0, + 1523.0, + 294.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1525.0, + 278.0, + 1525.0, + 278.0, + 1554.0, + 239.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1517.0, + 1406.0, + 1517.0, + 1406.0, + 1558.0, + 291.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1556.0, + 278.0, + 1556.0, + 278.0, + 1585.0, + 239.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1547.0, + 1407.0, + 1547.0, + 1407.0, + 1590.0, + 290.0, + 1590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1587.0, + 279.0, + 1587.0, + 279.0, + 1615.0, + 239.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1577.0, + 1406.0, + 1577.0, + 1406.0, + 1620.0, + 290.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 1616.0, + 279.0, + 1616.0, + 279.0, + 1645.0, + 239.0, + 1645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1611.0, + 1406.0, + 1611.0, + 1406.0, + 1647.0, + 291.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 242.0, + 1650.0, + 277.0, + 1650.0, + 277.0, + 1674.0, + 242.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1642.0, + 1225.0, + 1642.0, + 1225.0, + 1676.0, + 291.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 1251.0, + 1025.0, + 1251.0, + 1068.0, + 294.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1402.0, + 1944.0, + 1402.0, + 1979.0, + 296.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1406.0, + 1975.0, + 1406.0, + 2012.0, + 293.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 1403.0, + 1231.0, + 1403.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1263.0, + 1405.0, + 1263.0, + 1405.0, + 1296.0, + 295.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1293.0, + 1050.0, + 1293.0, + 1050.0, + 1330.0, + 294.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 1293.0, + 1321.0, + 1293.0, + 1321.0, + 1330.0, + 1120.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1293.0, + 1406.0, + 1293.0, + 1406.0, + 1330.0, + 1344.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1324.0, + 1084.0, + 1324.0, + 1084.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1324.0, + 1183.0, + 1324.0, + 1183.0, + 1358.0, + 1106.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1324.0, + 1405.0, + 1324.0, + 1405.0, + 1358.0, + 1205.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1026.0, + 1353.0, + 1026.0, + 1390.0, + 294.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1390.0, + 1060.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1383.0, + 770.0, + 1383.0, + 770.0, + 1419.0, + 292.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 857.0, + 1383.0, + 955.0, + 1383.0, + 955.0, + 1419.0, + 857.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1383.0, + 1257.0, + 1383.0, + 1257.0, + 1419.0, + 1071.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1383.0, + 1406.0, + 1383.0, + 1406.0, + 1419.0, + 1277.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 546.0, + 1414.0, + 546.0, + 1451.0, + 294.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1414.0, + 1406.0, + 1414.0, + 1406.0, + 1451.0, + 615.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1444.0, + 1401.0, + 1444.0, + 1401.0, + 1481.0, + 294.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 273.0, + 737.0, + 630.0, + 737.0, + 630.0, + 846.0, + 273.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 737.0, + 1334.0, + 737.0, + 1334.0, + 846.0, + 1315.0, + 846.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 293, + 842, + 936, + 842, + 936, + 1510, + 293, + 1510 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 303, + 275, + 1389, + 275, + 1389, + 451, + 303, + 451 + ], + "score": 0.976, + "html": "
EnvironmentsBenchmarksOrigin Policy Representation (Ours)Surface Policy Representation (Ours)
PPORan PRRPRE2ECLAUXE2ECLAUX
HalfCheetah-v1262124702325 ± 399.273171 ± 427.633725±348.553175±517.522774 ± 233.393349 ± 341.423216 ± 506.39
Hopper-v1163912261097 ± 213.472085 ± 310.912351 ± 231.112214 ± 360.782227 ± 297.352392 ± 263.932577 ± 217.73
Walker2d-v115051269317 ± 152.681856 ± 305.512038 ± 315.512044 ±316.321930.57 ± 456.022203 ± 381.951980 ± 325.54
Ant-v1283527422143 ± 406.643581 ± 185.434019 ± 162.473784 ± 268.993173 ± 184.753632 ± 134.273397 ± 200.03
InvDouPend-v1934493558856 ± 551.909357 ± 0.299355±0.649355±0.689355±0.899356±0.969355 ±1.42
LunarLander-v2219226-22±35.08238±3.37239 ± 3.70234 ± 3.47236± 3.13234 ± 3.13235±5.70
" + }, + { + "category_id": 1, + "poly": [ + 296, + 555, + 937, + 555, + 937, + 829, + 296, + 829 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 294, + 1793, + 1403, + 1793, + 1403, + 2008, + 294, + 2008 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 993, + 968, + 1373, + 968, + 1373, + 1264, + 993, + 1264 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 956, + 1292, + 1404, + 1292, + 1404, + 1475, + 956, + 1475 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 982, + 567, + 1376, + 567, + 1376, + 869, + 982, + 869 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 296, + 1626, + 1404, + 1626, + 1404, + 1780, + 296, + 1780 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 259, + 480, + 1401, + 480, + 1401, + 541, + 259, + 541 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 956, + 885, + 1403, + 885, + 1403, + 946, + 956, + 946 + ], + "score": 0.946 + }, + { + "category_id": 6, + "poly": [ + 297, + 213, + 1398, + 213, + 1398, + 274, + 297, + 274 + ], + "score": 0.932 + }, + { + "category_id": 0, + "poly": [ + 263, + 1556, + 765, + 1556, + 765, + 1595, + 263, + 1595 + ], + "score": 0.916 + }, + { + "category_id": 2, + "poly": [ + 840, + 2061, + 859, + 2061, + 859, + 2084, + 840, + 2084 + ], + "score": 0.803 + }, + { + "category_id": 13, + "poly": [ + 511, + 707, + 567, + 707, + 567, + 737, + 511, + 737 + ], + "score": 0.85, + "latex": "40 \\%" + }, + { + "category_id": 13, + "poly": [ + 880, + 616, + 936, + 616, + 936, + 645, + 880, + 645 + ], + "score": 0.84, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 595, + 216, + 621, + 216, + 621, + 243, + 595, + 243 + ], + "score": 0.7, + "latex": "\\pm" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1915, + 1205, + 1915, + 1205, + 1944, + 1121, + 1944 + ], + "score": 0.43, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 768, + 1915, + 853, + 1915, + 853, + 1944, + 768, + 1944 + ], + "score": 0.32, + "latex": "{ \\mathrm { P e V F A } }" + }, + { + "category_id": 13, + "poly": [ + 422, + 677, + 505, + 677, + 505, + 706, + 422, + 706 + ], + "score": 0.26, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1749, + 767, + 1749, + 767, + 1778, + 683, + 1778 + ], + "score": 0.25, + "latex": "\\mathrm { P e V F A }" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1008.0, + 1371.0, + 1008.0, + 1371.0, + 1025.0, + 1341.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1061.0, + 1371.0, + 1061.0, + 1371.0, + 1079.0, + 1341.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1115.0, + 1371.0, + 1115.0, + 1371.0, + 1133.0, + 1341.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1161.0, + 1301.0, + 1161.0, + 1301.0, + 1182.0, + 1259.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1166.0, + 1372.0, + 1166.0, + 1372.0, + 1187.0, + 1343.0, + 1187.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1178.0, + 1299.0, + 1178.0, + 1299.0, + 1195.0, + 1261.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1191.0, + 1301.0, + 1191.0, + 1301.0, + 1213.0, + 1258.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1207.0, + 1301.0, + 1207.0, + 1301.0, + 1228.0, + 1258.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1222.0, + 1301.0, + 1222.0, + 1301.0, + 1243.0, + 1258.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1226.0, + 1352.0, + 1226.0, + 1352.0, + 1237.0, + 1343.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1238.0, + 1301.0, + 1238.0, + 1301.0, + 1258.0, + 1258.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1291.0, + 1406.0, + 1291.0, + 1406.0, + 1325.0, + 954.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1324.0, + 1405.0, + 1324.0, + 1405.0, + 1353.0, + 954.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1353.0, + 1408.0, + 1353.0, + 1408.0, + 1386.0, + 955.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1383.0, + 1407.0, + 1383.0, + 1407.0, + 1416.0, + 954.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1413.0, + 1406.0, + 1413.0, + 1406.0, + 1446.0, + 954.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 1446.0, + 1273.0, + 1446.0, + 1273.0, + 1478.0, + 956.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 562.0, + 1004.0, + 562.0, + 1004.0, + 853.0, + 980.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 582.0, + 1087.0, + 582.0, + 1087.0, + 599.0, + 1053.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 600.0, + 1019.0, + 600.0, + 1019.0, + 614.0, + 998.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 597.0, + 1193.0, + 597.0, + 1193.0, + 616.0, + 1056.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 612.0, + 1171.0, + 612.0, + 1171.0, + 633.0, + 1054.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 631.0, + 1018.0, + 631.0, + 1018.0, + 646.0, + 998.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 628.0, + 1203.0, + 628.0, + 1203.0, + 649.0, + 1056.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 645.0, + 1202.0, + 645.0, + 1202.0, + 666.0, + 1056.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 662.0, + 1019.0, + 662.0, + 1019.0, + 676.0, + 997.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 660.0, + 1200.0, + 660.0, + 1200.0, + 683.0, + 1055.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 677.0, + 1198.0, + 677.0, + 1198.0, + 699.0, + 1054.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 691.0, + 1021.0, + 691.0, + 1021.0, + 709.0, + 996.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 694.0, + 1207.0, + 694.0, + 1207.0, + 715.0, + 1054.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 710.0, + 1205.0, + 710.0, + 1205.0, + 732.0, + 1056.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 723.0, + 1022.0, + 723.0, + 1022.0, + 740.0, + 996.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 754.0, + 1022.0, + 754.0, + 1022.0, + 771.0, + 996.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 786.0, + 1018.0, + 786.0, + 1018.0, + 801.0, + 997.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 816.0, + 1021.0, + 816.0, + 1021.0, + 833.0, + 996.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1026.0, + 841.0, + 1049.0, + 841.0, + 1049.0, + 855.0, + 1026.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 840.0, + 1111.0, + 840.0, + 1111.0, + 856.0, + 1056.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 839.0, + 1273.0, + 839.0, + 1273.0, + 857.0, + 1122.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 841.0, + 1306.0, + 841.0, + 1306.0, + 855.0, + 1283.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1314.0, + 841.0, + 1339.0, + 841.0, + 1339.0, + 855.0, + 1314.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 841.0, + 1368.0, + 841.0, + 1368.0, + 855.0, + 1347.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 853.0, + 1268.0, + 853.0, + 1268.0, + 869.0, + 1125.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 799.5, + 1067.0, + 799.5, + 1067.0, + 807.0, + 1040.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 883.0, + 1405.0, + 883.0, + 1405.0, + 919.0, + 955.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 916.0, + 1331.0, + 916.0, + 1331.0, + 948.0, + 956.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 212.0, + 594.0, + 212.0, + 594.0, + 247.0, + 295.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 212.0, + 1403.0, + 212.0, + 1403.0, + 247.0, + 622.0, + 247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 244.0, + 1239.0, + 244.0, + 1239.0, + 276.0, + 295.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 258.0, + 1554.0, + 769.0, + 1554.0, + 769.0, + 1598.0, + 258.0, + 1598.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": [ + 294.0, + 841.0, + 938.0, + 841.0, + 938.0, + 877.0, + 294.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 941.0, + 869.0, + 941.0, + 910.0, + 294.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 904.0, + 937.0, + 904.0, + 937.0, + 937.0, + 296.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 935.0, + 937.0, + 935.0, + 937.0, + 969.0, + 297.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 964.0, + 938.0, + 964.0, + 938.0, + 998.0, + 294.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 993.0, + 941.0, + 993.0, + 941.0, + 1031.0, + 295.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1025.0, + 939.0, + 1025.0, + 939.0, + 1061.0, + 294.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1054.0, + 940.0, + 1054.0, + 940.0, + 1090.0, + 295.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 939.0, + 1086.0, + 939.0, + 1120.0, + 294.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1117.0, + 939.0, + 1117.0, + 939.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1146.0, + 942.0, + 1146.0, + 942.0, + 1179.0, + 293.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1179.0, + 938.0, + 1179.0, + 938.0, + 1207.0, + 294.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1208.0, + 937.0, + 1208.0, + 937.0, + 1239.0, + 295.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1239.0, + 940.0, + 1239.0, + 940.0, + 1270.0, + 295.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1268.0, + 938.0, + 1268.0, + 938.0, + 1302.0, + 295.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1299.0, + 937.0, + 1299.0, + 937.0, + 1330.0, + 297.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1330.0, + 936.0, + 1330.0, + 936.0, + 1359.0, + 295.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1358.0, + 939.0, + 1358.0, + 939.0, + 1392.0, + 293.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1389.0, + 940.0, + 1389.0, + 940.0, + 1420.0, + 297.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1419.0, + 937.0, + 1419.0, + 937.0, + 1452.0, + 296.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1449.0, + 936.0, + 1449.0, + 936.0, + 1484.0, + 297.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1481.0, + 939.0, + 1481.0, + 939.0, + 1515.0, + 295.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 555.0, + 941.0, + 555.0, + 941.0, + 586.0, + 295.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 583.0, + 939.0, + 583.0, + 939.0, + 618.0, + 293.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 615.0, + 879.0, + 615.0, + 879.0, + 646.0, + 294.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 646.0, + 939.0, + 646.0, + 939.0, + 678.0, + 295.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 675.0, + 421.0, + 675.0, + 421.0, + 709.0, + 294.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 675.0, + 939.0, + 675.0, + 939.0, + 709.0, + 506.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 706.0, + 510.0, + 706.0, + 510.0, + 739.0, + 295.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 706.0, + 937.0, + 706.0, + 937.0, + 739.0, + 568.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 736.0, + 936.0, + 736.0, + 936.0, + 771.0, + 293.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 766.0, + 937.0, + 766.0, + 937.0, + 801.0, + 293.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 796.0, + 887.0, + 796.0, + 887.0, + 831.0, + 295.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1832.0, + 293.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1823.0, + 1406.0, + 1823.0, + 1406.0, + 1860.0, + 292.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1851.0, + 1406.0, + 1851.0, + 1406.0, + 1892.0, + 292.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1883.0, + 1405.0, + 1883.0, + 1405.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1913.0, + 767.0, + 1913.0, + 767.0, + 1950.0, + 292.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1913.0, + 1120.0, + 1913.0, + 1120.0, + 1950.0, + 854.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1913.0, + 1406.0, + 1913.0, + 1406.0, + 1950.0, + 1206.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1946.0, + 1405.0, + 1946.0, + 1405.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1977.0, + 1396.0, + 1977.0, + 1396.0, + 2008.0, + 296.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1628.0, + 1404.0, + 1628.0, + 1404.0, + 1661.0, + 296.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1655.0, + 1406.0, + 1655.0, + 1406.0, + 1694.0, + 293.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1724.0, + 295.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1716.0, + 1406.0, + 1716.0, + 1406.0, + 1753.0, + 295.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1748.0, + 682.0, + 1748.0, + 682.0, + 1785.0, + 295.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1748.0, + 1407.0, + 1748.0, + 1407.0, + 1785.0, + 768.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 254.0, + 488.0, + 276.0, + 488.0, + 276.0, + 509.0, + 254.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 479.0, + 1403.0, + 479.0, + 1403.0, + 512.0, + 289.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 254.0, + 518.0, + 278.0, + 518.0, + 278.0, + 538.0, + 254.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 508.0, + 1172.0, + 508.0, + 1172.0, + 543.0, + 288.0, + 543.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 287, + 236, + 1411, + 236, + 1411, + 2018, + 287, + 2018 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 866, + 2061, + 866, + 2087, + 836, + 2087 + ], + "score": 0.835 + }, + { + "category_id": 0, + "poly": [ + 243, + 199, + 457, + 199, + 457, + 235, + 243, + 235 + ], + "score": 0.713 + }, + { + "category_id": 2, + "poly": [ + 238, + 215, + 287, + 215, + 287, + 2035, + 238, + 2035 + ], + "score": 0.193 + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2057.0, + 870.0, + 2057.0, + 870.0, + 2095.0, + 832.0, + 2095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 207.0, + 278.0, + 207.0, + 278.0, + 235.0, + 239.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 196.0, + 460.0, + 196.0, + 460.0, + 239.0, + 293.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 205.0, + 283.0, + 205.0, + 283.0, + 243.0, + 232.0, + 243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 249.0, + 283.0, + 249.0, + 283.0, + 287.0, + 232.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 277.0, + 283.0, + 277.0, + 283.0, + 317.0, + 235.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 323.0, + 283.0, + 323.0, + 283.0, + 363.0, + 235.0, + 363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 355.0, + 281.0, + 355.0, + 281.0, + 387.0, + 237.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 383.0, + 281.0, + 383.0, + 281.0, + 417.0, + 237.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 431.0, + 281.0, + 431.0, + 281.0, + 465.0, + 237.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 457.0, + 281.0, + 457.0, + 281.0, + 503.0, + 235.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 507.0, + 281.0, + 507.0, + 281.0, + 541.0, + 237.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 533.0, + 283.0, + 533.0, + 283.0, + 575.0, + 235.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 585.0, + 281.0, + 585.0, + 281.0, + 617.0, + 237.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 232.0, + 609.0, + 283.0, + 609.0, + 283.0, + 651.0, + 232.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 661.0, + 281.0, + 661.0, + 281.0, + 693.0, + 235.0, + 693.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 687.0, + 283.0, + 687.0, + 283.0, + 727.0, + 235.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 737.0, + 281.0, + 737.0, + 281.0, + 769.0, + 235.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 763.0, + 283.0, + 763.0, + 283.0, + 803.0, + 235.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 813.0, + 281.0, + 813.0, + 281.0, + 845.0, + 237.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 841.0, + 281.0, + 841.0, + 281.0, + 879.0, + 237.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 889.0, + 281.0, + 889.0, + 281.0, + 921.0, + 237.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 915.0, + 283.0, + 915.0, + 283.0, + 959.0, + 235.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 963.0, + 283.0, + 963.0, + 283.0, + 1007.0, + 235.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1013.0, + 281.0, + 1013.0, + 281.0, + 1047.0, + 237.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1039.0, + 283.0, + 1039.0, + 283.0, + 1085.0, + 235.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1091.0, + 281.0, + 1091.0, + 281.0, + 1125.0, + 237.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1117.0, + 283.0, + 1117.0, + 283.0, + 1157.0, + 235.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1167.0, + 281.0, + 1167.0, + 281.0, + 1201.0, + 237.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1195.0, + 283.0, + 1195.0, + 283.0, + 1239.0, + 235.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1243.0, + 281.0, + 1243.0, + 281.0, + 1277.0, + 237.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1271.0, + 283.0, + 1271.0, + 283.0, + 1311.0, + 235.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1319.0, + 281.0, + 1319.0, + 281.0, + 1353.0, + 237.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1347.0, + 283.0, + 1347.0, + 283.0, + 1389.0, + 235.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1397.0, + 281.0, + 1397.0, + 281.0, + 1427.0, + 237.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1423.0, + 283.0, + 1423.0, + 283.0, + 1463.0, + 235.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1471.0, + 283.0, + 1471.0, + 283.0, + 1511.0, + 235.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1519.0, + 281.0, + 1519.0, + 281.0, + 1553.0, + 237.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1547.0, + 283.0, + 1547.0, + 283.0, + 1591.0, + 235.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1597.0, + 281.0, + 1597.0, + 281.0, + 1629.0, + 237.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1625.0, + 281.0, + 1625.0, + 281.0, + 1663.0, + 237.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1673.0, + 281.0, + 1673.0, + 281.0, + 1707.0, + 237.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1699.0, + 283.0, + 1699.0, + 283.0, + 1743.0, + 235.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1751.0, + 281.0, + 1751.0, + 281.0, + 1781.0, + 237.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1777.0, + 283.0, + 1777.0, + 283.0, + 1819.0, + 235.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1827.0, + 281.0, + 1827.0, + 281.0, + 1859.0, + 237.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1857.0, + 281.0, + 1857.0, + 281.0, + 1891.0, + 237.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1903.0, + 283.0, + 1903.0, + 283.0, + 1943.0, + 235.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1951.0, + 281.0, + 1951.0, + 281.0, + 1983.0, + 235.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1981.0, + 281.0, + 1981.0, + 281.0, + 2013.0, + 237.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 251.0, + 1406.0, + 251.0, + 1406.0, + 282.0, + 308.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 276.0, + 1205.0, + 276.0, + 1205.0, + 313.0, + 348.0, + 313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 321.0, + 1411.0, + 321.0, + 1411.0, + 362.0, + 302.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 349.0, + 1407.0, + 349.0, + 1407.0, + 390.0, + 346.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 380.0, + 941.0, + 380.0, + 941.0, + 415.0, + 348.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 431.0, + 1404.0, + 431.0, + 1404.0, + 462.0, + 308.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 457.0, + 748.0, + 457.0, + 748.0, + 494.0, + 348.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 502.0, + 1409.0, + 502.0, + 1409.0, + 545.0, + 304.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 533.0, + 767.0, + 533.0, + 767.0, + 564.0, + 350.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 582.0, + 1409.0, + 582.0, + 1409.0, + 619.0, + 306.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 611.0, + 621.0, + 611.0, + 621.0, + 643.0, + 350.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 656.0, + 1409.0, + 656.0, + 1409.0, + 696.0, + 304.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 688.0, + 658.0, + 688.0, + 658.0, + 719.0, + 350.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 733.0, + 1407.0, + 733.0, + 1407.0, + 770.0, + 306.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 764.0, + 893.0, + 764.0, + 893.0, + 796.0, + 350.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 813.0, + 1404.0, + 813.0, + 1404.0, + 845.0, + 308.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 841.0, + 1050.0, + 841.0, + 1050.0, + 872.0, + 350.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 882.0, + 1407.0, + 882.0, + 1407.0, + 927.0, + 300.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 915.0, + 893.0, + 915.0, + 893.0, + 953.0, + 348.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 964.0, + 1304.0, + 964.0, + 1304.0, + 996.0, + 296.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1011.0, + 1409.0, + 1011.0, + 1409.0, + 1049.0, + 292.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1041.0, + 1333.0, + 1041.0, + 1333.0, + 1078.0, + 348.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1092.0, + 1407.0, + 1092.0, + 1407.0, + 1123.0, + 294.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1119.0, + 514.0, + 1119.0, + 514.0, + 1151.0, + 350.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1164.0, + 1407.0, + 1164.0, + 1407.0, + 1201.0, + 292.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1194.0, + 581.0, + 1194.0, + 581.0, + 1227.0, + 346.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 1406.0, + 1239.0, + 1406.0, + 1276.0, + 294.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1266.0, + 1029.0, + 1266.0, + 1029.0, + 1305.0, + 346.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1313.0, + 1407.0, + 1313.0, + 1407.0, + 1358.0, + 291.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1345.0, + 1170.0, + 1345.0, + 1170.0, + 1380.0, + 346.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1394.0, + 1407.0, + 1394.0, + 1407.0, + 1429.0, + 292.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1423.0, + 644.0, + 1423.0, + 644.0, + 1454.0, + 350.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1470.0, + 1392.0, + 1470.0, + 1392.0, + 1503.0, + 292.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1519.0, + 1407.0, + 1519.0, + 1407.0, + 1556.0, + 294.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1547.0, + 860.0, + 1547.0, + 860.0, + 1582.0, + 348.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1598.0, + 1406.0, + 1598.0, + 1406.0, + 1629.0, + 296.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 1623.0, + 604.0, + 1623.0, + 604.0, + 1656.0, + 346.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1672.0, + 1407.0, + 1672.0, + 1407.0, + 1709.0, + 294.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 1699.0, + 805.0, + 1699.0, + 805.0, + 1737.0, + 350.0, + 1737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1748.0, + 1406.0, + 1748.0, + 1406.0, + 1786.0, + 294.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1774.0, + 1130.0, + 1774.0, + 1130.0, + 1813.0, + 344.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1823.0, + 1407.0, + 1823.0, + 1407.0, + 1860.0, + 294.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1852.0, + 1050.0, + 1852.0, + 1050.0, + 1890.0, + 348.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1901.0, + 1159.0, + 1901.0, + 1159.0, + 1939.0, + 294.0, + 1939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1948.0, + 1407.0, + 1948.0, + 1407.0, + 1986.0, + 292.0, + 1986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1976.0, + 878.0, + 1976.0, + 878.0, + 2013.0, + 348.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 240, + 217, + 1411, + 217, + 1411, + 2008, + 240, + 2008 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 835, + 2060, + 864, + 2060, + 864, + 2087, + 835, + 2087 + ], + "score": 0.83 + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2058.0, + 869.0, + 2058.0, + 869.0, + 2097.0, + 831.0, + 2097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 204.0, + 1407.0, + 204.0, + 1407.0, + 242.0, + 236.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 232.0, + 281.0, + 232.0, + 281.0, + 269.0, + 236.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 232.0, + 1360.0, + 232.0, + 1360.0, + 269.0, + 347.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 287.0, + 281.0, + 287.0, + 281.0, + 317.0, + 238.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 283.0, + 1401.0, + 283.0, + 1401.0, + 321.0, + 293.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 334.0, + 1407.0, + 334.0, + 1407.0, + 374.0, + 236.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 364.0, + 283.0, + 364.0, + 283.0, + 401.0, + 236.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 358.0, + 516.0, + 358.0, + 516.0, + 400.0, + 344.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 417.0, + 281.0, + 417.0, + 281.0, + 447.0, + 238.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 417.0, + 1405.0, + 417.0, + 1405.0, + 449.0, + 295.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 447.0, + 279.0, + 447.0, + 279.0, + 478.0, + 238.0, + 478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 445.0, + 714.0, + 445.0, + 714.0, + 476.0, + 351.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 494.0, + 289.0, + 494.0, + 289.0, + 529.0, + 236.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 494.0, + 1409.0, + 494.0, + 1409.0, + 531.0, + 291.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 526.0, + 279.0, + 526.0, + 279.0, + 557.0, + 238.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 522.0, + 1038.0, + 522.0, + 1038.0, + 559.0, + 347.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 577.0, + 281.0, + 577.0, + 281.0, + 606.0, + 238.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 575.0, + 1405.0, + 575.0, + 1405.0, + 606.0, + 293.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 604.0, + 279.0, + 604.0, + 279.0, + 636.0, + 238.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 602.0, + 484.0, + 602.0, + 484.0, + 634.0, + 347.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 656.0, + 287.0, + 656.0, + 287.0, + 685.0, + 238.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 652.0, + 1407.0, + 652.0, + 1407.0, + 689.0, + 291.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 683.0, + 279.0, + 683.0, + 279.0, + 715.0, + 238.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 677.0, + 935.0, + 677.0, + 935.0, + 717.0, + 345.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 240.0, + 736.0, + 281.0, + 736.0, + 281.0, + 766.0, + 240.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 734.0, + 1300.0, + 734.0, + 1300.0, + 766.0, + 295.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 787.0, + 283.0, + 787.0, + 283.0, + 817.0, + 238.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 782.0, + 1407.0, + 782.0, + 1407.0, + 823.0, + 289.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 813.0, + 283.0, + 813.0, + 283.0, + 849.0, + 236.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 813.0, + 543.0, + 813.0, + 543.0, + 845.0, + 351.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 866.0, + 287.0, + 866.0, + 287.0, + 896.0, + 238.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 864.0, + 1407.0, + 864.0, + 1407.0, + 896.0, + 293.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 892.0, + 283.0, + 892.0, + 283.0, + 929.0, + 236.0, + 929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 888.0, + 540.0, + 888.0, + 540.0, + 926.0, + 349.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 945.0, + 281.0, + 945.0, + 281.0, + 975.0, + 238.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 939.0, + 1409.0, + 939.0, + 1409.0, + 979.0, + 289.0, + 979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 973.0, + 279.0, + 973.0, + 279.0, + 1004.0, + 238.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 973.0, + 1405.0, + 973.0, + 1405.0, + 1004.0, + 351.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1000.0, + 279.0, + 1000.0, + 279.0, + 1032.0, + 238.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 992.0, + 1411.0, + 992.0, + 1411.0, + 1038.0, + 345.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1028.0, + 279.0, + 1028.0, + 279.0, + 1059.0, + 238.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1022.0, + 629.0, + 1022.0, + 629.0, + 1061.0, + 347.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1077.0, + 283.0, + 1077.0, + 283.0, + 1113.0, + 236.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1079.0, + 1407.0, + 1079.0, + 1407.0, + 1111.0, + 293.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1107.0, + 283.0, + 1107.0, + 283.0, + 1142.0, + 236.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1107.0, + 1086.0, + 1107.0, + 1086.0, + 1138.0, + 351.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1156.0, + 289.0, + 1156.0, + 289.0, + 1191.0, + 236.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1156.0, + 1409.0, + 1156.0, + 1409.0, + 1193.0, + 291.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1187.0, + 279.0, + 1187.0, + 279.0, + 1219.0, + 238.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1183.0, + 585.0, + 1183.0, + 585.0, + 1215.0, + 347.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1239.0, + 283.0, + 1239.0, + 283.0, + 1268.0, + 238.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1235.0, + 1409.0, + 1235.0, + 1409.0, + 1272.0, + 291.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1264.0, + 281.0, + 1264.0, + 281.0, + 1300.0, + 234.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1262.0, + 664.0, + 1262.0, + 664.0, + 1298.0, + 345.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1317.0, + 287.0, + 1317.0, + 287.0, + 1347.0, + 238.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1317.0, + 1407.0, + 1317.0, + 1407.0, + 1349.0, + 293.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1343.0, + 281.0, + 1343.0, + 281.0, + 1380.0, + 236.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1343.0, + 696.0, + 1343.0, + 696.0, + 1380.0, + 347.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1396.0, + 283.0, + 1396.0, + 283.0, + 1426.0, + 238.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1396.0, + 1405.0, + 1396.0, + 1405.0, + 1428.0, + 293.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1426.0, + 279.0, + 1426.0, + 279.0, + 1457.0, + 238.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1422.0, + 885.0, + 1422.0, + 885.0, + 1457.0, + 345.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1473.0, + 1409.0, + 1473.0, + 1409.0, + 1510.0, + 236.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1504.0, + 279.0, + 1504.0, + 279.0, + 1536.0, + 238.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1501.0, + 587.0, + 1501.0, + 587.0, + 1532.0, + 347.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1556.0, + 281.0, + 1556.0, + 281.0, + 1585.0, + 238.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1550.0, + 1407.0, + 1550.0, + 1407.0, + 1589.0, + 289.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1583.0, + 279.0, + 1583.0, + 279.0, + 1615.0, + 238.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1581.0, + 659.0, + 1581.0, + 659.0, + 1613.0, + 351.0, + 1613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1634.0, + 281.0, + 1634.0, + 281.0, + 1664.0, + 238.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1627.0, + 1409.0, + 1627.0, + 1409.0, + 1672.0, + 289.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1660.0, + 281.0, + 1660.0, + 281.0, + 1698.0, + 236.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1662.0, + 1171.0, + 1662.0, + 1171.0, + 1694.0, + 351.0, + 1694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1713.0, + 281.0, + 1713.0, + 281.0, + 1743.0, + 238.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1713.0, + 1405.0, + 1713.0, + 1405.0, + 1745.0, + 295.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1743.0, + 279.0, + 1743.0, + 279.0, + 1774.0, + 238.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1741.0, + 978.0, + 1741.0, + 978.0, + 1772.0, + 349.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1794.0, + 281.0, + 1794.0, + 281.0, + 1824.0, + 238.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1790.0, + 1409.0, + 1790.0, + 1409.0, + 1828.0, + 291.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1820.0, + 283.0, + 1820.0, + 283.0, + 1855.0, + 236.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1818.0, + 726.0, + 1818.0, + 726.0, + 1855.0, + 349.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1873.0, + 287.0, + 1873.0, + 287.0, + 1902.0, + 238.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1871.0, + 1405.0, + 1871.0, + 1405.0, + 1902.0, + 293.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1898.0, + 283.0, + 1898.0, + 283.0, + 1934.0, + 236.0, + 1934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1900.0, + 1193.0, + 1900.0, + 1193.0, + 1932.0, + 349.0, + 1932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1952.0, + 287.0, + 1952.0, + 287.0, + 1981.0, + 238.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1948.0, + 1407.0, + 1948.0, + 1407.0, + 1985.0, + 289.0, + 1985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1981.0, + 281.0, + 1981.0, + 281.0, + 2011.0, + 238.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1977.0, + 901.0, + 1977.0, + 901.0, + 2013.0, + 345.0, + 2013.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 236, + 157, + 1411, + 157, + 1411, + 2016, + 236, + 2016 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 835, + 2060, + 866, + 2060, + 866, + 2087, + 835, + 2087 + ], + "score": 0.826 + }, + { + "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": [ + 238.0, + 207.0, + 284.0, + 207.0, + 284.0, + 236.0, + 238.0, + 236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 201.0, + 1407.0, + 201.0, + 1407.0, + 242.0, + 288.0, + 242.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 234.0, + 280.0, + 234.0, + 280.0, + 266.0, + 238.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 230.0, + 604.0, + 230.0, + 604.0, + 264.0, + 345.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 297.0, + 282.0, + 297.0, + 282.0, + 327.0, + 238.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 289.0, + 1409.0, + 289.0, + 1409.0, + 336.0, + 288.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 325.0, + 280.0, + 325.0, + 280.0, + 358.0, + 238.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 321.0, + 857.0, + 321.0, + 857.0, + 358.0, + 347.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 387.0, + 284.0, + 387.0, + 284.0, + 417.0, + 238.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 382.0, + 1407.0, + 382.0, + 1407.0, + 421.0, + 292.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 415.0, + 280.0, + 415.0, + 280.0, + 448.0, + 238.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 411.0, + 658.0, + 411.0, + 658.0, + 444.0, + 347.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 476.0, + 282.0, + 476.0, + 282.0, + 507.0, + 238.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 472.0, + 1405.0, + 472.0, + 1405.0, + 511.0, + 292.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 503.0, + 282.0, + 503.0, + 282.0, + 542.0, + 236.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 505.0, + 1332.0, + 505.0, + 1332.0, + 538.0, + 349.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 564.0, + 284.0, + 564.0, + 284.0, + 601.0, + 236.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 566.0, + 1403.0, + 566.0, + 1403.0, + 599.0, + 296.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 595.0, + 280.0, + 595.0, + 280.0, + 627.0, + 238.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 591.0, + 799.0, + 591.0, + 799.0, + 627.0, + 345.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 658.0, + 282.0, + 658.0, + 282.0, + 689.0, + 238.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 656.0, + 1407.0, + 656.0, + 1407.0, + 689.0, + 294.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 682.0, + 282.0, + 682.0, + 282.0, + 721.0, + 236.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 678.0, + 1407.0, + 678.0, + 1407.0, + 717.0, + 347.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 705.0, + 283.0, + 705.0, + 283.0, + 749.0, + 235.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 709.0, + 1405.0, + 709.0, + 1405.0, + 748.0, + 349.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 740.0, + 280.0, + 740.0, + 280.0, + 772.0, + 238.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 740.0, + 1198.0, + 740.0, + 1198.0, + 772.0, + 349.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 803.0, + 284.0, + 803.0, + 284.0, + 833.0, + 238.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 797.0, + 1407.0, + 797.0, + 1407.0, + 838.0, + 288.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 831.0, + 280.0, + 831.0, + 280.0, + 864.0, + 238.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 827.0, + 758.0, + 827.0, + 758.0, + 864.0, + 347.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 893.0, + 282.0, + 893.0, + 282.0, + 923.0, + 238.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 889.0, + 1405.0, + 889.0, + 1405.0, + 927.0, + 292.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 921.0, + 280.0, + 921.0, + 280.0, + 954.0, + 238.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 917.0, + 628.0, + 917.0, + 628.0, + 956.0, + 349.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 984.0, + 282.0, + 984.0, + 282.0, + 1015.0, + 238.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 982.0, + 1403.0, + 982.0, + 1403.0, + 1015.0, + 294.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1011.0, + 280.0, + 1011.0, + 280.0, + 1044.0, + 238.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1011.0, + 1405.0, + 1011.0, + 1405.0, + 1044.0, + 351.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1038.0, + 280.0, + 1038.0, + 280.0, + 1070.0, + 238.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1036.0, + 582.0, + 1036.0, + 582.0, + 1070.0, + 347.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1101.0, + 284.0, + 1101.0, + 284.0, + 1131.0, + 238.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1097.0, + 1409.0, + 1097.0, + 1409.0, + 1135.0, + 292.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1129.0, + 280.0, + 1129.0, + 280.0, + 1162.0, + 238.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1123.0, + 1385.0, + 1123.0, + 1385.0, + 1164.0, + 345.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1193.0, + 284.0, + 1193.0, + 284.0, + 1223.0, + 238.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1219.0, + 280.0, + 1219.0, + 280.0, + 1252.0, + 238.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1213.0, + 1208.0, + 1213.0, + 1208.0, + 1254.0, + 347.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1282.0, + 282.0, + 1282.0, + 282.0, + 1313.0, + 238.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1280.0, + 1405.0, + 1280.0, + 1405.0, + 1313.0, + 294.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1309.0, + 280.0, + 1309.0, + 280.0, + 1342.0, + 238.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1309.0, + 1013.0, + 1309.0, + 1013.0, + 1335.0, + 353.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1372.0, + 284.0, + 1372.0, + 284.0, + 1403.0, + 238.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1366.0, + 1405.0, + 1366.0, + 1405.0, + 1407.0, + 290.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1399.0, + 280.0, + 1399.0, + 280.0, + 1431.0, + 238.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1399.0, + 806.0, + 1399.0, + 806.0, + 1431.0, + 351.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1462.0, + 284.0, + 1462.0, + 284.0, + 1493.0, + 238.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1460.0, + 1405.0, + 1460.0, + 1405.0, + 1493.0, + 294.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 236.0, + 1486.0, + 280.0, + 1486.0, + 280.0, + 1525.0, + 236.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1486.0, + 897.0, + 1486.0, + 897.0, + 1525.0, + 347.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1552.0, + 282.0, + 1552.0, + 282.0, + 1582.0, + 238.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1548.0, + 1409.0, + 1548.0, + 1409.0, + 1584.0, + 290.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1578.0, + 280.0, + 1578.0, + 280.0, + 1611.0, + 238.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1578.0, + 1407.0, + 1578.0, + 1407.0, + 1611.0, + 351.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1607.0, + 280.0, + 1607.0, + 280.0, + 1640.0, + 238.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1601.0, + 1409.0, + 1601.0, + 1409.0, + 1642.0, + 347.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1633.0, + 280.0, + 1633.0, + 280.0, + 1666.0, + 238.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1631.0, + 1407.0, + 1631.0, + 1407.0, + 1670.0, + 349.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1662.0, + 280.0, + 1662.0, + 280.0, + 1695.0, + 238.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1662.0, + 1403.0, + 1662.0, + 1403.0, + 1695.0, + 351.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1691.0, + 280.0, + 1691.0, + 280.0, + 1723.0, + 238.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1686.0, + 1266.0, + 1686.0, + 1266.0, + 1723.0, + 345.0, + 1723.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1752.0, + 284.0, + 1752.0, + 284.0, + 1782.0, + 238.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1752.0, + 1407.0, + 1752.0, + 1407.0, + 1784.0, + 294.0, + 1784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1780.0, + 280.0, + 1780.0, + 280.0, + 1813.0, + 238.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1778.0, + 660.0, + 1778.0, + 660.0, + 1811.0, + 349.0, + 1811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1844.0, + 282.0, + 1844.0, + 282.0, + 1874.0, + 238.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1842.0, + 1405.0, + 1842.0, + 1405.0, + 1874.0, + 294.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1870.0, + 280.0, + 1870.0, + 280.0, + 1903.0, + 238.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 349.0, + 1866.0, + 802.0, + 1866.0, + 802.0, + 1905.0, + 349.0, + 1905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1933.0, + 282.0, + 1933.0, + 282.0, + 1964.0, + 238.0, + 1964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1929.0, + 1407.0, + 1929.0, + 1407.0, + 1968.0, + 292.0, + 1968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 238.0, + 1960.0, + 280.0, + 1960.0, + 280.0, + 1993.0, + 238.0, + 1993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1956.0, + 1077.0, + 1956.0, + 1077.0, + 1995.0, + 347.0, + 1995.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 410, + 981, + 1405, + 981, + 1405, + 1228, + 410, + 1228 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 410, + 638, + 1404, + 638, + 1404, + 931, + 410, + 931 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 410, + 293, + 1404, + 293, + 1404, + 479, + 410, + 479 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 410, + 1273, + 1405, + 1273, + 1405, + 1455, + 410, + 1455 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 410, + 526, + 1167, + 526, + 1167, + 590, + 410, + 590 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 366, + 600, + 643, + 600, + 643, + 628, + 366, + 628 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 366, + 488, + 796, + 488, + 796, + 517, + 366, + 517 + ], + "score": 0.9 + }, + { + "category_id": 1, + "poly": [ + 366, + 256, + 563, + 256, + 563, + 284, + 366, + 284 + ], + "score": 0.889 + }, + { + "category_id": 1, + "poly": [ + 367, + 942, + 1306, + 942, + 1306, + 972, + 367, + 972 + ], + "score": 0.866 + }, + { + "category_id": 1, + "poly": [ + 364, + 1235, + 1120, + 1235, + 1120, + 1264, + 364, + 1264 + ], + "score": 0.853 + }, + { + "category_id": 2, + "poly": [ + 836, + 2061, + 865, + 2061, + 865, + 2085, + 836, + 2085 + ], + "score": 0.832 + }, + { + "category_id": 0, + "poly": [ + 241, + 199, + 435, + 199, + 435, + 235, + 241, + 235 + ], + "score": 0.664 + }, + { + "category_id": 2, + "poly": [ + 233, + 205, + 285, + 205, + 285, + 1478, + 233, + 1478 + ], + "score": 0.274 + }, + { + "category_id": 2, + "poly": [ + 241, + 199, + 435, + 199, + 435, + 235, + 241, + 235 + ], + "score": 0.241 + }, + { + "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": [ + 239.0, + 207.0, + 281.0, + 207.0, + 281.0, + 235.0, + 239.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 196.0, + 440.0, + 196.0, + 440.0, + 239.0, + 290.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 208.0, + 280.0, + 208.0, + 280.0, + 244.0, + 237.0, + 244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 257.0, + 280.0, + 257.0, + 280.0, + 289.0, + 237.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 294.0, + 281.0, + 294.0, + 281.0, + 328.0, + 235.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 324.0, + 281.0, + 324.0, + 281.0, + 358.0, + 235.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 355.0, + 283.0, + 355.0, + 283.0, + 394.0, + 234.0, + 394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 390.0, + 281.0, + 390.0, + 281.0, + 422.0, + 235.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 418.0, + 281.0, + 418.0, + 281.0, + 451.0, + 235.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 450.0, + 283.0, + 450.0, + 283.0, + 491.0, + 235.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 490.0, + 281.0, + 490.0, + 281.0, + 524.0, + 237.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 528.0, + 280.0, + 528.0, + 280.0, + 564.0, + 237.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 563.0, + 280.0, + 563.0, + 280.0, + 598.0, + 237.0, + 598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 600.0, + 278.0, + 600.0, + 278.0, + 637.0, + 237.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 638.0, + 280.0, + 638.0, + 280.0, + 671.0, + 237.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 667.0, + 281.0, + 667.0, + 281.0, + 700.0, + 237.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 694.0, + 281.0, + 694.0, + 281.0, + 727.0, + 237.0, + 727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 723.0, + 281.0, + 723.0, + 281.0, + 757.0, + 237.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 754.0, + 281.0, + 754.0, + 281.0, + 787.0, + 235.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 783.0, + 281.0, + 783.0, + 281.0, + 817.0, + 237.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 816.0, + 281.0, + 816.0, + 281.0, + 849.0, + 237.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 844.0, + 280.0, + 844.0, + 280.0, + 879.0, + 237.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 876.0, + 280.0, + 876.0, + 280.0, + 910.0, + 237.0, + 910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 906.0, + 280.0, + 906.0, + 280.0, + 942.0, + 235.0, + 942.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 942.0, + 281.0, + 942.0, + 281.0, + 982.0, + 235.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 982.0, + 280.0, + 982.0, + 280.0, + 1017.0, + 237.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1015.0, + 281.0, + 1015.0, + 281.0, + 1047.0, + 237.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1043.0, + 281.0, + 1043.0, + 281.0, + 1079.0, + 237.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1076.0, + 280.0, + 1076.0, + 280.0, + 1112.0, + 237.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1109.0, + 280.0, + 1109.0, + 280.0, + 1142.0, + 237.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1138.0, + 281.0, + 1138.0, + 281.0, + 1172.0, + 237.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1170.0, + 281.0, + 1170.0, + 281.0, + 1203.0, + 237.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1199.0, + 280.0, + 1199.0, + 280.0, + 1233.0, + 237.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 237.0, + 1236.0, + 278.0, + 1236.0, + 278.0, + 1273.0, + 237.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1275.0, + 281.0, + 1275.0, + 281.0, + 1308.0, + 235.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1302.0, + 283.0, + 1302.0, + 283.0, + 1341.0, + 234.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1336.0, + 281.0, + 1336.0, + 281.0, + 1369.0, + 235.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1365.0, + 281.0, + 1365.0, + 281.0, + 1399.0, + 235.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 234.0, + 1395.0, + 283.0, + 1395.0, + 283.0, + 1434.0, + 234.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 235.0, + 1425.0, + 281.0, + 1425.0, + 281.0, + 1458.0, + 235.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 239.0, + 207.0, + 281.0, + 207.0, + 281.0, + 235.0, + 239.0, + 235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 196.0, + 440.0, + 196.0, + 440.0, + 239.0, + 290.0, + 239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 981.0, + 1107.0, + 981.0, + 1107.0, + 1011.0, + 408.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1012.0, + 1405.0, + 1012.0, + 1405.0, + 1046.0, + 407.0, + 1046.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1041.0, + 552.0, + 1041.0, + 552.0, + 1072.0, + 449.0, + 1072.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1073.0, + 1318.0, + 1073.0, + 1318.0, + 1107.0, + 409.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1107.0, + 1407.0, + 1107.0, + 1407.0, + 1138.0, + 406.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1136.0, + 658.0, + 1136.0, + 658.0, + 1167.0, + 450.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 1167.0, + 1408.0, + 1167.0, + 1408.0, + 1201.0, + 410.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1198.0, + 781.0, + 1198.0, + 781.0, + 1228.0, + 450.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 636.0, + 1405.0, + 636.0, + 1405.0, + 668.0, + 408.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 666.0, + 1405.0, + 666.0, + 1405.0, + 694.0, + 451.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 692.0, + 1406.0, + 692.0, + 1406.0, + 724.0, + 449.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 717.0, + 1089.0, + 717.0, + 1089.0, + 754.0, + 449.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 752.0, + 1405.0, + 752.0, + 1405.0, + 787.0, + 406.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 783.0, + 1289.0, + 783.0, + 1289.0, + 811.0, + 451.0, + 811.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 815.0, + 1404.0, + 815.0, + 1404.0, + 846.0, + 410.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 841.0, + 684.0, + 841.0, + 684.0, + 874.0, + 450.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 875.0, + 1406.0, + 875.0, + 1406.0, + 906.0, + 410.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 903.0, + 872.0, + 903.0, + 872.0, + 934.0, + 450.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 291.0, + 1407.0, + 291.0, + 1407.0, + 325.0, + 407.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 321.0, + 685.0, + 321.0, + 685.0, + 354.0, + 450.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 351.0, + 1290.0, + 351.0, + 1290.0, + 389.0, + 404.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 388.0, + 1405.0, + 388.0, + 1405.0, + 420.0, + 409.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 416.0, + 1320.0, + 416.0, + 1320.0, + 447.0, + 450.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 447.0, + 1399.0, + 447.0, + 1399.0, + 481.0, + 406.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1270.0, + 1407.0, + 1270.0, + 1407.0, + 1306.0, + 406.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1300.0, + 521.0, + 1300.0, + 521.0, + 1334.0, + 449.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1333.0, + 1406.0, + 1333.0, + 1406.0, + 1367.0, + 409.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1364.0, + 772.0, + 1364.0, + 772.0, + 1394.0, + 449.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 1394.0, + 1404.0, + 1394.0, + 1404.0, + 1428.0, + 411.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 1426.0, + 789.0, + 1426.0, + 789.0, + 1455.0, + 449.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 524.0, + 1173.0, + 524.0, + 1173.0, + 559.0, + 409.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 558.0, + 1100.0, + 558.0, + 1100.0, + 592.0, + 406.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 597.0, + 648.0, + 597.0, + 648.0, + 632.0, + 361.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 485.0, + 801.0, + 485.0, + 801.0, + 521.0, + 362.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 252.0, + 568.0, + 252.0, + 568.0, + 287.0, + 363.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 938.0, + 1309.0, + 938.0, + 1309.0, + 977.0, + 359.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 1230.0, + 1123.0, + 1230.0, + 1123.0, + 1270.0, + 360.0, + 1270.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/S1lIMn05F7/S1lIMn05F7.md b/parse/train/S1lIMn05F7/S1lIMn05F7.md new file mode 100644 index 0000000000000000000000000000000000000000..f6eee59f6f3e25bc9308fb43f08d723a225ffcd0 --- /dev/null +++ b/parse/train/S1lIMn05F7/S1lIMn05F7.md @@ -0,0 +1,380 @@ +# A DIRECT APPROACH TO ROBUST DEEP LEARNINGUSING ADVERSARIAL NETWORKS + +Huaxia Wang +Department of Electrical and Computer Engineering +Stevens Institute of Technology +Hoboken, NJ 07030, USA +hwang38@stevens.edu +Chun-Nam Yu +Nokia Bell Labs +600 Mountain Avenue +Murray Hill, NJ 07974, USA +chun-nam.yu@nokia-bell-labs.com + +# ABSTRACT + +Deep neural networks have been shown to perform well in many classical machine learning problems, especially in image classification tasks. However, researchers have found that neural networks can be easily fooled, and they are surprisingly sensitive to small perturbations imperceptible to humans. Carefully crafted input images (adversarial examples) can force a well-trained neural network to provide arbitrary outputs. Including adversarial examples during training is a popular defense mechanism against adversarial attacks. In this paper we propose a new defensive mechanism under the generative adversarial network (GAN) framework. We model the adversarial noise using a generative network, trained jointly with a classification discriminative network as a minimax game. We show empirically that our adversarial network approach works well against black box attacks, with performance on par with state-of-art methods such as ensemble adversarial training and adversarial training with projected gradient descent. + +# 1 INTRODUCTION + +Deep neural networks have been successfully applied to a variety of tasks, including image classification (Krizhevsky et al., 2012), speech recognition (Graves et al., 2013), and human-level playing of video games through deep reinforcement learning (Mnih et al., 2015). However, Szegedy et al. (2014) showed that convolutional neural networks (CNN) are extremely sensitive to carefully crafted small perturbations added to the input images. Since then, many adversarial examples generating methods have been proposed, including Jacobian based saliency map attack (JSMA) (Papernot et al., 2016a), projected gradient descent (PGD) attack (Madry et al., 2018), and C&W’s attack (Carlini & Wagner, 2017). In general, there are two types of attack models: white box attack and black box attack. Attackers in white box attack model have complete knowledge of the target network, including network’s architecture and parameters. Whereas in black box attacks, attackers only have partial or no information on the target network (Papernot et al., 2017). + +Various defensive methods have been proposed to mitigate the effect of the adversarial examples. Adversarial training which augments the training set with adversarial examples shows good defensive performance in terms of white box attacks (Kurakin et al., 2017; Madry et al., 2018). Apart from adversarial training, there are many other defensive approaches including defensive distillation (Papernot et al., 2016b), using randomization at inference time (Xie et al., 2018), and thermometer encoding (Buckman et al., 2018), etc. + +In this paper, we propose a defensive method based on generative adversarial network (GAN) (Goodfellow et al., 2014). Instead of using the generative network to generate samples that can fool the discriminative network as real data, we train the generative network to generate (additive) adversarial noise that can fool the discriminative network into misclassifying the input image. This allows flexible modeling of the adversarial noise by the generative network, which can take in the original image or a random vector or even the class label to create different types of noise. The discriminative networks used in our approach are just the usual neural networks designed for their specific classification tasks. The purpose of the discriminative network is to classify both clean and adversarial example with correct label, while the generative network aims to generate powerful perturbations to fool the discriminative network. This approach is simple and it directly uses the minimax game concept employed by GAN. Our main contributions include: + +• We show that our adversarial network approach can produce neural networks that are robust towards black box attacks. In the experiments they show similar, and in some cases better, performance when compared to state-of-art defense methods such as ensemble adversarial training (Tramer et al., 2018) and adversarial training with projected gradient \` descent (Madry et al., 2018). To our best knowledge we are also the first to study the joint training of a generative attack network and a discriminative network. • We study the effectiveness of different generative networks in attacking a trained discriminative network, and show that a variety of generative networks, including those taking in random noise or labels as inputs, can be effective in attacks. We also show that training against these generative networks can provide robustness against different attacks. + +The rest of the paper is organized as follows. In Section 2, related works including multiple attack and defense methods are discussed. Section 3 presents our defensive method in details. Experimental results are shown in Section 4, with conclusions of the paper in Section 5. + +# 2 RELATED WORKS + +In this section, we briefly review the attack and defense methods in neural network training. + +# 2.1 ATTACK MODEL + +Given a neural network model $D _ { \theta }$ parameterized by $\theta$ trained for classification, an input image $\boldsymbol { x } \in \mathbb { R } ^ { d }$ and its label $y$ , we want to find a small adversarial perturbation $\Delta x$ such that $x + \Delta x$ is not classified as $y$ . The minimum norm solution $\Delta x$ can be described as: + +$$ +\operatorname* { a r g m i n } _ { \Delta x } \| \Delta x \| \quad \mathrm { s . t . } \ \arg \operatorname* { m a x } D _ { \theta } ( x + \Delta x ) \neq y , +$$ + +where arg max $D _ { \theta } ( x )$ gives the predicted class for input $x$ . Szegedy et al. (2014) introduced the first method to generate adversarial examples by considering the following optimization problem, + +$$ +\Delta x = \underset { z } { \arg \operatorname* { m i n } } \lambda \| z \| + L ( D _ { \theta } ( x + z ) , \hat { y } ) , \quad x + z \in [ 0 , 1 ] ^ { d } +$$ + +where $L$ is a distance function measuring the closeness of the output $D _ { \theta } ( x + z )$ with some target $\hat { y } \neq$ $y$ . The objective is minimized using box-constrained L-BFGS. Goodfellow et al. (2015) introduced the fast gradient sign method (FGS) to generate adversarial examples in one step, which can be represented as $\Delta x { \mathbf { \bar { \phi } } } = \epsilon \cdot \mathrm { s i g n } \left( \nabla _ { x } l ( D _ { \theta } ( { \bar { { x } } } ) , y ) \right)$ , where $l$ is the cross-entropy loss used in neural networks training. Madry et al. (2018) argues with strong evidence that projected gradient descent (PGD), which can be viewed as an iterative version of the fast gradient sign method, is the strongest attack using only first-order gradient information. Papernot et al. (2017) presented a Jacobian-based saliency-map attack (J-BSMA) model to generate adversarial examples by changing a small number of pixels. Moosavi-Dezfooli et al. (2017) showed that there exist a single/universal small image perturbation that fools all natural images. Papernot et al. (2017) introduced the first demonstration of black-box attacks against neural network classifiers. The adversary has no information about the architecture and parameters of the neural networks, and does not have access to large training dataset. + +# 2.2 DEFENSE MODEL + +In order to mitigate the effect of the generated adversarial examples, various defensive methods have been proposed. Papernot et al. (2016b) introduced distillation as a defense to adversarial examples. Lou et al. (2016) introduced a foveation-based mechanism to alleviate adversarial examples. + +The idea of adversarial training was first proposed by Szegedy et al. (2014). The effect of adversarial examples can be reduced through explicitly training the model with both original and perturbed adversarial images. Adversarial training can be viewed as a minimax game, + +$$ +\theta ^ { * } = \underset { \theta } { \arg \operatorname* { m i n } } \operatorname { E } _ { x , y } \underset { \Delta x } { \operatorname* { m a x } } l ( D _ { \theta } ( x + \Delta x ) , y ) . +$$ + +![](images/23802e87c1be4f67cbfc9eb8c53124ad25c8bbddfc15716d481f690141d3401b.jpg) +Figure 1: Architecture diagram of our adversarial networks + +The inner maximization requires a separate oracle for generating the perturbations $\Delta x$ . FGS is a common method for generating the adversarial perturbations $\Delta x$ due to its speed. Madry et al. (2018) advocates the use of PGD in generating adversarial examples. Moreover, a cascade adversarial training is presented in Na et al. (2018), which injects adversarial examples from an already defended network added with adversarial images from the network being trained. + +There are a few recent works on using GANs for generating and defending against adversarial examples. Samangouei et al. (2018) and Ilyas et al. (2017) use GAN for defense by learning the manifold of input distribution with GAN, and then project any input examples onto this learned manifold before classification to filter out any potential adversarial noise. Our approach is more direct because we do not learn the input distribution and no input denoising is involved. Both Baluja & Fischer (2018) and Xiao et al. (2018) train neural networks to generate adversarial examples by maximizing the loss over a fixed pre-trained discriminative network. They show that they can train neural networks to effectively attack undefended discriminative networks while ensuring the generated adversarial examples look similar to the original samples. Our work is different from these because instead of having a fixed discriminative network, we co-train the discriminative network together with the adversarial generative network in a minimax game. Xiao et al. (2018) also train a second discriminative network as in typical GANs, but their discriminative network is used for ensuring the generated images look like the original samples, and not for classification. Lee et al. (2017) also considered the use of GAN to train robust discriminative networks. However, the inputs to their generative network is the gradient of the discriminative network with respect to the input image $x$ , not just the image $x$ as in our current work. This causes complex dependence of the gradient of the generative network parameters to the discriminative network parameters, and makes the parameter updates for the generative network more complicated. Also there is no single minimax objective that they are solving for in their work; the update rules for the discriminative and generative networks optimize related but different objectives. + +# 3 METHOD + +In generative adversarial networks (GAN) (Goodfellow et al., 2014), the goal is to learn a generative neural network that can model a distribution of unlabeled training examples. The generative network transforms a random input vector into an output that is similar to the training examples, and there is a separate discriminative network that tries to distinguish the real training examples against samples generated by the generative network. The generative and discriminative networks are trained jointly with gradient descent, and at equilibrium we want the samples from the generative network to be indistinguishable from the real training data by the discriminative network, i.e., the discriminative network does no better than doing a random coin flip. + +We adopt the GAN approach in generating adversarial noise for a discriminative model to train against. This approach has already been hinted at in Tramer et al. (2018), but they decided to train \` against a static set of adversarial models instead of training against a generative noise network that can dynamically adapt in a truly GAN fashion. In this work we show that this idea can be carried out fruitfully to train robust discriminative neural networks. + +Given an input $x$ with correct label $y$ , from the viewpoint of the adversary we want to find additive noise $\Delta x$ such that $x + \Delta x$ will be incorrectly classified by the discriminative neural network to some other labels $\hat { y } \ne y$ . We model this additive noise as $\epsilon G ( x )$ , where $G$ is a generative neural network that generates instance specific noise based on the input $x$ and $\epsilon$ is the scaling factor that controls the size of the noise. Notice that unlike white box attack methods such as FGS or PGD, once trained $G$ does not need to know the parameters of the discriminative network that it is attacking. $G$ can also take in other inputs to generate adversarial noise, e.g., Gaussian random vector $z \in { \mathbb { R } ^ { d } }$ as in typical GAN, or even the class label $y$ . For simplicity we assume $G$ takes in $x$ as input in the descriptions below. + +Suppose we have a training set $\left\{ ( x _ { 1 } , y _ { 1 } ) , \dotsc , ( x _ { n } , y _ { n } ) \right\}$ of image-label pairs. Let $D _ { \theta }$ be the discriminator network (for classification) parameterized by $\theta$ , and $G _ { \phi }$ be the generator network parameterized by $\phi$ . We want to solve the following minimax game between $D _ { \theta }$ and $G _ { \phi }$ : + +$$ +\operatorname* { m i n } _ { \theta } \operatorname* { m a x } _ { \phi } \sum _ { i = 1 } ^ { n } l ( D _ { \theta } ( x _ { i } ) , y _ { i } ) + \lambda \sum _ { i = 1 } ^ { n } l ( D _ { \theta } ( x _ { i } + \epsilon G _ { \phi } ( x _ { i } ) ) , y _ { i } ) , +$$ + +where $l$ is the cross-entropy loss, $\lambda$ is the trade-off parameter between minimizing the loss on normal examples versus minimizing the loss on the adversarial examples, and $\epsilon$ is the magnitude of the noise. See Figure 1 for an illustration of the model. + +In this work we focus on perturbations based on $\ell _ { \infty }$ norm. This can be achieved easily by adding a tanh layer as the final layer of the generator network $G _ { \phi }$ , which normalizes the output to the range of $[ - 1 , 1 ]$ . Perturbations based on $\ell _ { 1 }$ or $\ell _ { 2 }$ norms can be accommodated by having the appropriate normalization layers in the final layer of $G _ { \phi }$ . + +We now explain the intuition of our approach. Ideally, we would like to find a solution $\theta$ that has small risk on clean examples + +$$ +R \left( \theta \right) = \sum _ { i = 1 } ^ { n } l ( D _ { \theta } ( x _ { i } ) , y _ { i } ) , +$$ + +and also small risk on the adversarial examples under maximum perturbation of size $\epsilon$ + +$$ +R _ { a d v } ( \theta ) = \sum _ { i = 1 } ^ { n } \operatorname* { m a x } _ { \Delta x , \| \Delta x \| \leq \epsilon } l ( D _ { \theta } ( x _ { i } + \Delta x ) , y _ { i } ) . +$$ + +However, except for simple datasets like MNIST, there are usually fairly large differences between the solutions of $R ( \theta )$ and solutions of $R _ { a d v } ( \theta )$ under the same model class $D _ { \theta }$ (Tsipras et al., 2018). Optimizing for the risk under white box attacks $R _ { a d v } ( \theta )$ involves tradeoff on the risk on clean data $R ( \theta )$ . Note that $R _ { a d v } ( \theta )$ represent the risk under white box attacks, since we are free to choose the perturbation $\Delta x$ with knowledge of $\theta$ . This can be approximated using the powerful PGD attack. + +Instead of allowing the perturbations $\Delta x$ to be completely free, we model the adversary as a neural network $G _ { \phi }$ with finite capacity + +$$ +R _ { G } ( \theta ) = \operatorname* { m a x } _ { \phi } \sum _ { i = 1 } ^ { n } l ( D _ { \theta } ( x _ { i } + \epsilon G _ { \phi } ( x _ { i } ) ) , y _ { i } ) . +$$ + +Here the adversarial noise $G _ { \phi } ( x _ { i } )$ is not allowed to directly depend on the discriminative network parameters $\theta$ . Also, the generative network parameter $\phi$ is shared across all examples, not computed per example like $\Delta x$ . We believe this is closer to the situation of defending against black box attacks, when the adversary does not know the discriminator network parameters. However, we still want $G _ { \phi }$ to be expressive enough to represent powerful attacks, so that $D _ { \theta }$ has a good adversary to train against. Previous work (Xiao et al., 2018; Baluja & Fischer, 2018) show that there are powerful classes of $G _ { \phi }$ that can attack trained classifiers $D _ { \theta }$ effectively. + +In traditional GANs we are most interested in the distributions learned by the generative network. The discriminative network is a helper that drives the training, but can be discarded afterwards. In our setting we are interested in both the discriminative network and the generative network. The generative network in our formulation can give us a powerful adversary for attacking, while the discriminative network can give us a robust classifier that can defend against adversarial noise. + +# 3.1 STABILIZING THE GAN TRAINING + +The stability and convergence of GAN training is still an area of active research (Mescheder et al., 2018). In this paper we adopt gradient regularization (Mescheder et al., 2017) to stabilize the gradient descent/ascent training. Denote the minimax objective in Eq. 4 as $F ( \theta , \phi )$ . With the generative + +network parameter fixed at $\phi _ { k }$ , instead of minimizing the usual objective $F ( \theta , \phi _ { k } )$ to update $\theta$ for the discriminator network, we instead try to minimize the regularized objective + +$$ +F ( \theta , \phi _ { k } ) + \frac { \gamma } { 2 } \| \nabla _ { \phi } F ( \theta , \phi _ { k } ) \| ^ { 2 } , +$$ + +where $\gamma$ is the regularization parameter for gradient regularization. Minimizing the gradient norm $\| \nabla _ { \phi } F ( \theta , \phi _ { k } ) \| ^ { 2 }$ jointly makes sure that the norm of the gradient for $\phi$ at $\phi _ { k }$ does not grow when we update $\theta$ to reduce the objective $F ( \theta , \phi _ { k } )$ . This is important because if the gradient norm $\| \nabla _ { \phi } \bar { F } ( \theta , \phi _ { k } ) \| ^ { 2 }$ becomes large after an update of $\theta$ , it is easy to update $\phi$ to make the objective large again, leading to zigzagging behaviour and slow convergence. Note that the gradient norm term is zero at a saddle point according to the first-order optimality conditions, so the regularizer does not change the set of solutions. With these we update $\theta$ using SGD with step size $\eta _ { D }$ : + +$$ +\begin{array} { l } { { \displaystyle \theta _ { l + 1 } = \theta _ { l } - \eta _ { D } \nabla _ { \theta } [ F ( \theta _ { l } , \phi _ { k } ) + \frac { \gamma } { 2 } \| \nabla _ { \phi } F ( \theta _ { l } , \phi _ { k } ) \| ^ { 2 } ] } } \\ { { \displaystyle \quad \quad = \theta _ { l } - \eta _ { D } [ \nabla _ { \theta } F ( \theta _ { l } , \phi _ { k } ) + \gamma \nabla _ { \theta \phi } ^ { 2 } F ( \theta _ { l } , \phi _ { k } ) \nabla _ { \phi } F ( \theta _ { l } , \phi _ { k } ) ] } } \end{array} +$$ + +The Hessian-vector product term $\nabla _ { \theta \phi } ^ { 2 } F ( \theta _ { l } , \phi _ { k } ) \nabla _ { \phi } F ( \theta _ { l } , \phi _ { k } )$ can be computed with double backpropagation provided by packages like Tensorflow/PyTorch, but we find it faster to compute it with finite difference approximation. Recall that for a function $f ( x )$ with gradient $g ( x )$ and Hessian $H ( x )$ , the Hessian-vector product $H ( x ) v$ can be approximated by $( g ( x + h v ) - g ( x ) ) / h$ for small $h$ (Pearlmutter, 1994). Therefore we approximate: + +$$ +\nabla _ { \theta \phi } ^ { 2 } F ( \theta _ { l } , \phi _ { k } ) \nabla _ { \phi } F ( \theta _ { l } , \phi _ { k } ) \approx \nabla _ { \theta } [ \frac { F ( \theta _ { l } , \phi _ { k } + h v ) - F ( \theta _ { l } , \phi _ { k } ) } { h } ] , +$$ + +where $v = \nabla _ { \phi } F ( \theta _ { l } , \phi _ { k } )$ . Note that $\phi _ { k } + h v$ is exactly a gradient step for generative network $G _ { \phi }$ . Setting $h$ to be too small can lead to numerical instability. We therefore correlate $h$ with the gradient step size and set $h = \eta _ { G } / 1 0$ to capture the curvature at the scale of the gradient ascent algorithm. + +We update the generative network parameters $\phi$ with using (stochastic) gradient ascent. With the discriminative network parameters fixed at $\theta _ { l }$ and step size $\eta _ { G }$ , we update: + +$$ +\phi _ { k + 1 } = \phi _ { k } + \eta _ { G } \nabla _ { \phi } F ( \theta _ { l } , \phi _ { k } ) . +$$ + +We do not add a gradient regularization term for $\phi$ , since empirically we find that adding gradient regularization to $\theta$ is sufficient to stabilize the training. + +# 3.2 GENERATIVE AND DISCRIMINATIVE NETWORK PARAMETER UPDATES + +In the experiments we train both the discriminative network and generative network from scratch with random weight initializations. We do not need to pre-train the discriminative network with clean examples, or the generative network against some fixed discriminative networks, to arrive at good saddle point solutions. + +In our experiments we find that the discriminative networks $D _ { \theta }$ we use tend to overpower the generative network $G _ { \phi }$ if we just perform simultaneous parameter updates to both networks. This can lead to saddle point solutions where it seems $G _ { \phi }$ cannot be improved locally against $D _ { \theta }$ , but in reality can be made more powerful by just running more gradient steps on $\phi$ . In other words we want the region around the saddle point solution to be relatively flat for $G _ { \phi }$ . To make the generative network more powerful so that the discriminative network has a good adversary to train against, we adopt the following strategy. For each update of $\theta$ for $D _ { \theta }$ , we perform multiple gradient steps on $\phi$ using the same mini-batch. This allows the generative network to learn to map the inputs in the mini-batch to adversarial noises with high loss directly, compared to running multiple gradient steps on different mini-batches. In the experiments we run 5 gradient steps on each mini-batch. We fix the tradeoff parameter $\lambda$ (Eq. 4) over loss on clean examples and adversarial loss at 1. We also fix the gradient regularization parameter $\gamma$ (Eq. 8) at 0.01, which works well for different datasets. + +# 4 EXPERIMENTS + +We implemented our adversarial network approach using Tensorflow(Abadi et al., 2016), with the experiments run on several machines each with 4 GTX1080 Ti GPUs. In addition to our adversarial + +networks, we also train standard undefended models and models trained with adversarial training using PGD for comparison. For attacks we focus on the commonly used fast gradient sign (FGS) method, and the more powerful projected gradient descent (PGD) method. + +For the fast gradient sign (FGS) attack, we compute the adversarial image by + +$$ +\begin{array} { r } { \hat { x } _ { i } = \mathrm { P r o j } _ { X } \left( x _ { i } + \epsilon \mathrm { s i g n } \nabla _ { x } l ( D _ { \theta } ( x _ { i } ) , y _ { i } ) \right) , } \end{array} +$$ + +where $\mathrm { P r o j } _ { X }$ projects onto the feasible range of rescaled pixel values $X$ (e.g., [-1,1]). + +For the projected gradient descent (PGD) attack, we iterate the fast gradient sign attack multiple times with projection, with random initialization near the starting point neighbourhood. + +$$ +\begin{array} { r l } & { ~ \hat { x } _ { i } ^ { 0 } = \mathrm { P r o j } _ { X } \left( x _ { i } + \epsilon u \right) } \\ & { \hat { x } _ { i } ^ { k + 1 } = \mathrm { P r o j } _ { B _ { \epsilon } ^ { \infty } ( x _ { i } ) \cap X } \left( \hat { x } _ { i } ^ { k } + \delta \operatorname { s i g n } \nabla _ { x } \boldsymbol { l } ( D _ { \theta } ( \hat { x } _ { i } ^ { k } ) , y _ { i } ) \right) , } \end{array} +$$ + +where $u \in \mathbb { R } ^ { d }$ is a uniform random vector in $[ - 1 , 1 ] ^ { d }$ , $\delta$ is the step size, and $B _ { \epsilon } ^ { \infty } ( x _ { i } )$ is an $\ell _ { \infty }$ ball centered around the input $x _ { i }$ with radius $\epsilon$ . In the experiments we set $\delta$ to be a quarter of the perturbation $\epsilon$ , i.e., $\epsilon / 4$ , and the number of PGD steps $k$ to be 10. We adopt exactly the same PGD attack procedure when generating adversarial examples in PGD adversarial training. Our implementation is available at https://github.com/whxbergkamp/RobustDL_GAN. + +# 4.1 MNIST + +For MNIST the inputs are black and white images of digits of size $2 8 \mathbf { x } 2 8$ with pixel values scaled between 0 and 1. We rescale the inputs to the range of [-1,1]. Following previous work (Kannan et al., 2018), we study perturbations of $\epsilon = 0 . 3$ (in the original scale of [0,1]). We use a simple convolutional neural network similar to LeNet5 as our discriminator networks for all training methods. For our adversarial approach we use an encoder-decoder network for the generator. See Model D1 and Model G0 in the Appendix for the details of these networks. We use SGD with learning rate of $\eta _ { D } = 0 . 0 1$ and momentum 0.9, batch size of 64, and run for 200k iterations for all the discriminative networks. The learning rates are decreased by a factor of 10 after $1 0 0 \mathrm { k }$ iterations. We use SGD with a fixed learning rate $\eta _ { G } = 0 . 0 1$ with momentum 0.9 for the generative network. We use weight decay of 1E-4 for standard and adversarial PGD training, and 1E-5 for our adversarial network approach (for both $D _ { \theta }$ and $G _ { \phi }$ ). For this dataset we find that we can improve the robustness of $D _ { \theta }$ by running more updates on $G _ { \phi }$ , so we run 5 updates on $G _ { \phi }$ (each update contains 5 gradient steps described in Section 3.2 ) for each update on $D _ { \theta }$ . + +Table 1(left) shows the white box attack accuracies of different models, under perturbations of $\epsilon =$ 0.3 for input pixel values between 0 and 1. Adversarial training with PGD performs best under white box attacks. Its accuracies stay above $90 \%$ under FGS and PGD attacks. Our adversarial network model performs much better than the undefended standard training model, but there is still a gap in accuracies compared to the PGD model. However, the PGD model has a small but noticeable drop in accuracy on clean examples compared to the standard model and adversarial network model. + +Table 1(right) shows the black box attack accuracies of different models. We generate the black box attack images by running the FGS and PGD attacks on surrogate models A’, B’ and $\mathrm { C } '$ . These surrogate models are trained in the same way as their counterparts (standard - A, PGD - B, adversarial network - C) with the same network architecture, but using a different random seed. We notice that the black box attacks tend to be the most effective on models trained with the same method (A’ on A, $\mathbf { B } ^ { \prime }$ on B, and $\mathrm { C } '$ on C). Although adversarial PGD beats our adversarial network approach on white box attacks, they have comparable performance on these black box attacks. Interestingly, the adversarial examples from adversarial PGD (B’) and adversarial networks $\mathbf { \pi } ( \mathbf { C } ^ { \prime } )$ do not transfer well to the undefended standard model. The undefended model still have accuracies between $8 5 - 9 5 \%$ . + +# 4.2 SVHN + +For the Street View House Number(SVHN) data, we use the original training set, augmented with $8 0 \mathrm { k }$ randomly sampled images from the extra set as our training data. The test set remains the same and we do not perform any preprocessing on the images apart from scaling it to the range of [-1,1]. We study perturbations of size $\epsilon = 0 . 0 5$ (in the range of [0,1]). We use a version of ResNet-18(He + +Table 1: Classification accuracies under white box and black box attack on MNIST $\epsilon = 0 . 3$ ) + +
training method\attackwhite boxblack box
No Noise FGSPGDFGS(A)PGD(A')FGS(B')PGD(B')))FGS(C')PGD(C')
standard(A)99.40%23.70%0.00%39.49%3.41%90.56%86.10%94.21%91.36%
adversarial PGD(B)98.70%95.46%92.92%95.78%96.18%95.58%95.01%97.05%96.48%
adversarial network(C)99.32%94.66%87.09%95.75%96.19%96.15%95.24%96.96%95.78%
+ +
training method\attackwhite boxblack box
No Noise FGSPGDFGS(A')PGD(A')FGS(B’)PGD(B')FGS(C')]PGD(C')
standard(A)96.34%64.64%3.69%69.47% 49.92%56.46%44.25%89.71%83.02%
adversarial PGD(B)87.45%55.94%42.96%85.21%83.46% 59.09%48.20%87.41%83.23%
adversarial network(C)96.34%91.51%37.97%90.02%88.04%75.34%57.52%91.48%81.68%
+ +Table 2: Classification accuracies under white box and black box attacks on SVHN $\epsilon = 0 . 0 5$ ) + +et al., 2016) adapted to $3 2 \mathrm { x } 3 2 $ images as our discriminative networks. For the generator in our adversarial network we use an encoder-decoder network based on residual blocks from ResNet. See Model D2 and Model G1 in the Appendix for details. For the discriminative networks we use SGD with learning rate of $\eta _ { D } = 0 . 0 1$ and momentum 0.9, batch size of 64, weight decay of 1E-4 and run for $1 0 0 \mathrm { k }$ iterations, and then decrease the learning rate to 0.001 and run for another $1 0 0 \mathrm { k }$ iterations. For the generative network we use SGD with a fixed learning rate of $\eta _ { G } = 0 . 0 1$ and momentum 0.9, and use weight decay of 1E-4. + +Table 2(left) shows the white box attack accuracies of the models. Adversarial PGD performs best against PGD attacks, but has lower accuracies on clean data and against FGS attacks, since it is difficult to optimize over all three objectives with finite network capacity. Our adversarial network approach has the best accuracies on clean data and against FGS attacks, and also improved accuracies against PGD over standard training. + +Table 2(right) shows the black box attack accuracies of the models. As before A’, B’, C’ are networks trained in the same ways as their counterparts, but with a different random seed. We can see that the adversarial network approach performs best across most attacks, except the PGD attack from its own copy $\mathbf { C } '$ . It is also interesting to note that for this dataset, adversarial examples generated from the adversarial PGD model $\mathbf { B } ^ { \ast }$ have the strongest attack power across all models. In the other two datasets, adversarial examples generated from a model are usually most effective against their counterparts that are trained in the same way. + +# 4.3 CIFAR10 + +For CIFAR10 we scale the $3 2 \mathrm { x } 3 2 $ inputs to the range of [-1,1]. We also perform data augmentation by randomly padding and cropping the images by at most 4 pixels, and randomly flipping the images left to right. In this experiment we use the same discriminative and generative networks as in SVHN. We study perturbations of size $\epsilon = 8 / 2 5 6$ . We train the discriminative networks with batch size of 64, and learning rate of $\eta _ { D } = 0 . 1$ for 100k iterations, and decrease learning rate to 0.01 for another 100k iterations. We use Adam with learning rate $\eta _ { G } ~ = ~ 0 . 0 0 2$ , $\beta _ { 1 } ~ = ~ 0 . 5$ , $\beta _ { 2 } ~ = ~ 0 . 9 9 9$ for the generative network. We use weight decay 1E-4 for standard training, and 1E-5 for adversarial PGD and our adversarial networks. + +Table 3(left) shows the white box accuracies of different models under attack with $\epsilon = 8 / 2 5 6$ . The PGD model has the best accuracy under PGD attack, but suffer a considerably lower accuracy on clean data and FGS attack. One reason for this is that it is difficult to balance between the objective of getting good accuracies on clean examples and good accuracies on very hard PGD attack adversarial examples with a discriminative network of limited capacity. Our adversarial model is able to keep up with the standard model in terms of accuracies on clean examples, and improve upon it on accuracies against FGS and PGD attacks. + +Table 3(right) shows the black box attack accuracies of the models. Our adversarial network method works better than the other approaches in general, except for the PGD attack from the most similar model C’. The adversarial PGD model also works quite well except against its own closest model $\mathbf { B } ^ { \prime }$ , and offers the smallest drop in accuracies in general. But its overall results are not the best since it suffers from the disadvantage of having a lower baseline accuracy on clean examples. + +Table 3: Classification accuracies under white box and black box attack on CIFAR10 $\epsilon = 8 / 2 5 6 )$ + +
training method\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B')FGS(C')PGD(C')
standard(A)91.59%57.31%1.32%67.99%22.88%77.13%75.06%73.34%55.34%
adversarial PGD(B)75.30%47.63%41.16%74.04%74.23%57.73%55.72%73.31%73.09%
adversarial network(C)91.08%72.81%44.28%81.74%79.48%77.23%74.04%78.51%66.74%
+ +Table 4: Classification accuracies under white box and black box attacks on ensemble adversarial training and adversarial networks on different datasets + +
training method\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B') IFGS(C')PGD(C')
ensemble(MNIST,ε=0.3)98.65%2.52%0.00%90.91% 93.91%90.94%88.12%90.79%89.61%
adv. net(MNIST,ε=0.3)99.03%94.66%87.09%95.75% 96.19%96.15%95.24%96.96%95.78%
ensemble(SVHN,e=0.05)95.30%79.16%2.74%95.32% 93.88%67.97%54.81%95.60%93.21%
adv. net(SVHN,e=0.05)96.34%91.51%37.97%90.02% 88.04%75.34%57.52%91.48%81.68%
ensemble(CIFAR10,e= 887.17%57.91%11.35%85.01% 85.19%68.76%67.41%79.64%70.98%
adv. net(CIFAR10,ε= 2591.08%72.81%44.28%81.74%79.48% 77.23%74.04%78.51%66.74%
+ +We have also performed experiments on CIFAR10 using a wider version of ResNet (Zagoruyko & Komodakis, 2016) by multiplying the number of filters by 10 in each of the convolutional layers. These wider version of ResNets have higher accuracies, but the relative strengths of the methods are similar to those presented here. In addition we have experiments on CIFAR100, and the results are qualitatively similar to CIFAR10. All these results are presented in the Appendix due to space restrictions. + +# 4.4 COMPARING AGAINST ENSEMBLE ADVERSARIAL TRAINING + +We also compare against a version of ensemble adversarial training (Tramer et al., 2018) on the \` above 3 datasets. Ensemble adversarial training works by including adversarial examples generated from static pre-trained models to enlarge the training set, and then train a new model on top of it. The quality of solutions depends on the type of adversarial examples included. Here we construct adversarial examples by running FGS (Eq. 10) and PGD (Eq. 11) on an undefended model, i.e., FGS(A) and PGD(A) in the previous tables. Here for FGS we substitute the target label $y$ with the most likely class arg max $\bar { D _ { \theta } } ( x )$ to avoid the problem of label leakage. Following Tramer et al. \` (2018) we also include another attack using the least likely class: + +$$ +\hat { x } _ { i } = \mathrm { P r o j } _ { X } \left( x _ { i } - \epsilon \mathrm { s i g n } \nabla _ { x } l ( D _ { \theta } ( x _ { i } ) , y _ { L L } ) \right) , +$$ + +where $y _ { L L } = \arg \operatorname* { m i n } D _ { \theta } ( x _ { i } )$ is the least likely class. We include all these adversarial examples together with the original clean data for training. We use the same perturbations $\epsilon$ as in the respective experiments above. + +Table 4 shows the results comparing ensemble adversarial training (EAT) with our adversarial networks approach. On MNIST, adversarial networks is better on white box attacks and also better on all black box attacks using models trained with standard training(A’), adversarial PGD(B’), and our adversarial networks approach(C’) with different random seeds. On SVHN and CIFAR10 adversarial networks is better on white box attacks, and both methods have wins and losses on the black box attacks, depending on the attacks used. In general adversarial networks seem to have better white box attack accuracies since they are trained dynamically with a varying adversary. The black box accuracies depend a lot on the dataset and the type of attacks used. There is no definitive conclusion on whether training against a static set of adversaries as in EAT or training against a dynamically adjusting adversary as in adversarial networks is a better approach against black box attacks. This is an interesting question requiring further research. + +Table 5: Attack performance of various generator networks against an undefended network in terms of test accuracies. First column is the accuracy on the discriminative model $D _ { \theta }$ that the generative attacker $G _ { \phi }$ is trained on (similar to white box attacks). The next three columns are the attack accuracies on other models by the learned $G _ { \phi }$ (similar to black box attacks) + +
GeneratorOriginal (A)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.59%90.54%75.71%89.21%
autoencoder(8 filters)31.07%41.40%74.56%84.59%
autoencoder(64 filters)6.08%14.74%75.52%86.64%
random Gaussian45.27%58.68%75.02%87.33%
label11.17%23.29%74.78%82.43%
+ +Table 6: Classification accuracies under white box and black box attacks on CIFAR10 for adversarial networks trained with different generative adversaries $\zeta = 8 / 2 5 6 )$ ) + +
training method\attackwhite boxblack box
No NoiseFGSPGDFGS(A')PGD(A')FGS(B')PGD(B')
autoencoder(8 filters)88.70%67.28%33.56%78.94%74.15%70.70%68.54%
autoencoder(64 filters)89.10%67.05%33.38%79.56%74.40%70.52%68.66%
random Gaussian89.73%69.43%35.16%80.09%76.02%71.22%69.66%
label88.72%67.09%37.70%80.95%77.80%70.90%68.81%
+ +# 4.5 EXAMINING THE GENERATIVE NETWORKS + +We also did a more in-depth study on the generative network with CIFAR10. We want to understand how the capacity of the generative network affects the quality of saddle point solution, and also the power of the generative networks themselves as adversarial attack methods. First we study the ability of the generative networks to learn to attack a fixed undefended discriminative network. The architectures of the generative networks (G1, G2, G3) are described in the Appendix. Here we study a narrow (G1, $k = 8$ ) and a wide version (G1, $k = 6 4$ ) of autoencoder networks using the input images as inputs, and also decoder networks $G ( z )$ using random Gaussian vectors $z \in \mathring { \mathbb { R } } ^ { d }$ (G2) or networks $G ( y )$ using the labels $y$ (G3) as inputs. We run SGD for $2 0 0 \mathrm { k }$ iterations with step size 0.01 and momentum of 0.9, and use weight decay of 1E-5. We report test accuracies on the original discriminator after attacks. + +From Table 5 the wide autoencoder is more powerful than the narrow autoencoder in attacking the undefended discriminator network across different models. As a white-box attack method, the wide autoencoder is close to PGD in terms of attack power $( 6 . 0 8 \%$ vs $1 . 3 2 \%$ in Table 3(left)) on the undefended model. As a black-box attack method on the undefended model $\mathbf { A } '$ , it works even better than PGD ( $1 4 . 7 4 \%$ vs $2 2 . 8 8 \%$ in Table 3(right)). However, on defended models trained with PGD and our adversarial network approach the trained generator networks do not have much effect. PGD is especially robust with very small drops in accuracies against these attacks. + +It is interesting that generator network $G ( z )$ with random Gaussian $z$ as inputs and $G ( y )$ with label as input works well against undefended models A and $\mathbf { A } '$ , reducing the accuracies by more than $30 \%$ , even though they are not as effective as using the image as input. $G ( z )$ is essentially a distribution of random adversarial noise that we add to the image without knowing the image or label. $G ( y )$ is a generator network with many parameters, but after training it is essentially a set of 10 class conditional $3 2 \mathbf { x } 3 2 \mathbf { x } 3$ filters. We have also performed similar experiments on attacking models trained with adversarial PGD and our adversarial networks using the above generative networks. The results are included in the Appendix due to space restrictions. + +We also co-train these different generative networks with our discriminative network (D2) on CIFAR10. The results are shown in Table 6. It is slightly surprising that they all produce very similar performance in terms of white box and black box attacks, even as they have different attack powers against undefended networks. The generative networks do have very similar decoder portions, and this could be a reason why they all converge to saddle points of similar quality. + +# 4.6 DISCUSSIONS + +In the experiments above we see that adversarial PGD training usually works best on white box attacks, but there is a tradeoff between accuracies on clean data against accuracies on adversarial examples due to finite model capacity. We can try to use models with larger capacity, but there is always a tradeoff between the two, especially for larger perturbations $\epsilon$ . There are some recent works that indicate training for standard accuracy and training for adversarial accuracy (e.g., with PGD) are two fairly different problems (Schmidt et al., 2018; Tsipras et al., 2018). Examples generated from PGD are particularly difficult to train against. This makes adversarial PGD training disadvantaged in many black box attack situations, when compared with models trained with weaker adversaries, e.g., ensemble adversarial training and our adversarial networks method. + +We have also observed in the experiments that for black box attacks, the most effective adversarial examples are usually those constructed from models trained using the same method but with different random seed. This suggests hiding the knowledge of the training method from the attacker could be an important factor in defending against black box attacks. Defending against black box attacks is closely related to the question of the transferability of adversarial examples. Although there are some previous works exploring this question (Liu et al., 2017), the underlying factors affecting transferability are still not well understood. + +In our experimentation with the architectures of the discriminative and generative networks, the choice of architectures of $G _ { \phi }$ does not seem to have a big effect on the quality of solution. The dynamics of training, such as the step size used and the number of iterations to run for each network during gradient descent/ascent, seem to have a bigger effect on the saddle point solution quality than the network architecture. It would be interesting to find classes of generative network architectures that lead to substantially different saddle points when trained against a particular discriminative network architecture. Also, recent works have shown that there are connected flat regions in the minima of neural network loss landscapes (Garipov et al., 2018; Draxler et al., 2018). We believe that the same might hold true for GANs, and it would be interesting to explore how the training dynamics can lead to different GAN solutions that might have different robustness properties. + +Our approach can be extended with multiple discriminative networks playing against multiple generative networks. It can also be combined with ensemble adversarial training, where some adversarial examples come from static pre-trained models, while some other come from dynamically adjusting generative networks. + +# 5 CONCLUSIONS + +We have proposed an adversarial network approach to learning discriminative neural networks that are robust to adversarial noise, especially under black box attacks. For future work we are interested in extending the experiments to ImageNet, and exploring the choice of architectures of the discriminative and generative networks and their interaction. + +# REFERENCES + +Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: a system for largescale machine learning. In OSDI, volume 16, pp. 265–283, 2016. + +Shumeet Baluja and Ian Fischer. Adversarial transformation networks: Learning to generate adversarial examples. In AAAI Conference on Artificial Intelligence, 2018. + +Jacob Buckman, Aurko Roy, Colin Raffel, and Ian Goodfellow. Thermometer encoding: One hot way to resist adversarial examples. In International Conference on Learning Representations, 2018. + +Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In 2017 IEEE Symposium on Security and Privacy (SP), pp. 39–57. IEEE, 2017. + +Felix Draxler, Kambis Veschgini, Manfred Salmhofer, and Fred A Hamprecht. Essentially no barriers in neural network energy landscape. In International Conference on Machine Learning, 2018. + +Timur Garipov, Pavel Izmailov, Dmitrii Podoprikhin, Dmitry P Vetrov, and Andrew Gordon Wilson. Loss surfaces, mode connectivity, and fast ensembling of DNNs. Advances in Neural Information Processing Systems, 2018. + +Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. + +Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In International Conference on Learning Representations, 2015. + +Alex Graves, Abdel-Rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recurrent neural networks. In Acoustics, speech and signal processing (ICASSP), 2013 IEEE International Conference on, pp. 6645–6649. IEEE, 2013. + +Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. + +Andrew Ilyas, Ajil Jalal, Eirini Asteri, Constantinos Daskalakis, and Alexandros G Dimakis. The robust manifold defense: Adversarial training using generative models. arXiv preprint arXiv:1712.09196, 2017. + +Harini Kannan, Alexey Kurakin, and Ian Goodfellow. Adversarial logit pairing. arXiv preprint arXiv:1803.06373, 2018. + +Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, pp. 1097–1105, 2012. + +Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In International Conference on Learning Representations, 2017. + +Hyeungill Lee, Sungyeob Han, and Jungwoo Lee. Generative adversarial trainer: Defense to adversarial perturbations with GAN. arXiv preprint arXiv:1705.03387, 2017. + +Yanpei Liu, Xinyun Chen, Chang Liu, and Dawn Song. Delving into transferable adversarial examples and black-box attacks. In International Conference on Learning Representations, 2017. + +Yan Lou, Xavier Boix, Gemma Roig, Tomaso Poggio, and Qi Zhao. Foveation-based mechanisms alleviate adversarial examples. Technical report, Center for Brains, Minds and Machines (CBMM), arXiv, 2016. + +Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu. Towards deep learning models resistant to adversarial attacks. In International Conference on Learning Representations, 2018. + +Lars Mescheder, Sebastian Nowozin, and Andreas Geiger. The numerics of GANs. In Advances in Neural Information Processing Systems, pp. 1825–1835, 2017. + +Lars Mescheder, Andreas Geiger, and Sebastian Nowozin. Which training methods for GANs do actually converge? In International Conference on Machine Learning, pp. 3478–3487, 2018. + +Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529, 2015. + +Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal adversarial perturbations. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1765–1773, 2017. + +Taesik Na, Jong Hwan Ko, and Saibal Mukhopadhyay. Cascade adversarial machine learning regularized with a unified embedding. In International Conference on Learning Representations, 2018. + +Nicolas Papernot, Patrick McDaniel, Somesh Jha, Matt Fredrikson, Z Berkay Celik, and Ananthram Swami. The limitations of deep learning in adversarial settings. In Security and Privacy (EuroS&P), 2016 IEEE European Symposium on, pp. 372–387. IEEE, 2016a. + +Nicolas Papernot, Patrick McDaniel, Xi Wu, Somesh Jha, and Ananthram Swami. Distillation as a defense to adversarial perturbations against deep neural networks. In 2016 IEEE Symposium on Security and Privacy $( S P )$ , pp. 582–597. IEEE, 2016b. + +Nicolas Papernot, Patrick McDaniel, Ian Goodfellow, Somesh Jha, Z Berkay Celik, and Ananthram Swami. Practical black-box attacks against machine learning. In Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security, pp. 506–519. ACM, 2017. + +Barak A Pearlmutter. Fast exact multiplication by the Hessian. Neural computation, 6(1):147–160, 1994. + +Pouya Samangouei, Maya Kabkab, and Rama Chellappa. Defense-GAN: Protecting classifiers against adversarial attacks using generative models. In International Conference on Learning Representations, 2018. + +Ludwig Schmidt, Shibani Santurkar, Dimitris Tsipras, Kunal Talwar, and Aleksander Madry. Adversarially robust generalization requires more data. In Advances in Neural Information Processing Systems, 2018. + +Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In International Conference on Learning Representations, 2014. + +Florian Tramer, Alexey Kurakin, Nicolas Papernot, Ian Goodfellow, Dan Boneh, and Patrick Mc- \` Daniel. Ensemble adversarial training: Attacks and defenses. In International Conference on Learning Representations, 2018. + +Dimitris Tsipras, Shibani Santurkar, Logan Engstrom, Alexander Turner, and Aleksander Madry. Robustness may be at odds with accuracy. arXiv preprint arXiv:1805.12152, 2018. + +Chaowei Xiao, Bo Li, Jun-Yan Zhu, Warren He, Mingyan Liu, and Dawn Song. Generating adversarial examples with adversarial networks. In Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence, 2018. + +Cihang Xie, Jianyu Wang, Zhishuai Zhang, Zhou Ren, and Alan Yuille. Mitigating adversarial effects through randomization. In International Conference on Learning Representations, 2018. + +Sergey Zagoruyko and Nikos Komodakis. Wide residual networks. In British Machine Vision Confernece (BMVC), 2016. + +# APPENDIX + +# NETWORK ARCHITECTURES + +Our networks are mostly based on ResNet. Figure 2 shows the residual block used in our networks. We denote a residual block with $k$ copies of $d \times d$ filters, with a stride of $s$ in the first convolution as residual-block $( d , s , k )$ . A stride of 2 means the inputs are downsampled by a factor of 2. The notation $\mathrm { c o n v } 2 \mathrm { d } ( d , \ : s , \ : k )$ refers to a convolutional layer with $k$ copies of $d \times d$ filters, convolved with stride $s$ , and similarly for the deconvolution deconv $2 \mathrm { d } ( d , s , k )$ . The notations maxpool $( s )$ and avgpool(s) denote max-pooling and average pooling operations with strides $s$ . FC denotes a fully connected layer, while BN denotes a batch normalization layer. + +Figure 3 shows the discriminative networks used in this paper. D1 is a simple convolutional neural network used in the MNIST experiments. D2 is the standard version of ResNet. Figure 4 shows the generative networks used in this paper. G0 and G1 are encoder-decoder networks, while G2 and G3 are decoder networks using a random vector and a one-hot encoding of the label respectively. The generative networks are parameterized by a factor $k$ determining the number of filters used (width of network). As default we use $k = 6 4$ , and $k = 1 6$ for networks using labels as inputs. + +![](images/1ea0ce3b43da3757a7918ce2e4590b39b9ea745d64239f2b06ae107f43159b0c.jpg) +Figure 2: Residual block used in the network definitions + +![](images/d822e2068943f26380b553ff146d93b82e57b4954ce15f7c28533f32b39186a3.jpg) +Figure 3: Discriminative networks used in this paper + +# EXTRA RESULTS ON CIFAR100 AND WIDE RESNET ON CIFAR10 + +The discriminative and generative networks in our CIFAR100 experiment have the same network architecture as the CIFAR10 experiment, except that the output layer dimension of the D network is 100 other than 10 in CIFAR10. We use learning rate of 0.1 for the first $1 0 0 \mathrm { k }$ iterations, and 0.01 for another $1 0 0 \mathrm { k }$ iterations. The batch size is 64 and weight decay is 1E-5. + +Table 7(left) presents the white box attack accuracies of different models with $\epsilon = 8 / 2 5 6$ . From the table we can see that the PGD adversarial training has the best defensive performance under PGD attack, but still suffers performance degradation on clean image and FGS attack. Our adversarial model gives similar classification performance as the standard model on clean image, and improves classification accuracies on FGS and PGD attack. Table 7(right) shows the black box attack accuracies of different models. Our adversarial network approach gives the best classification accuracy in most cases, except the FGS and PGD attack from model $\mathbf { C } '$ . + +
training method attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A') FGS(B') PGD(B') FGS(C') PGD(C')
standard(A)70.11%31.27%4.61%44.24%32.55%53.65%50.51%47.82%34.99%
adversarial PGD(B)55.53%32.13%28.48%53.91%54.62%41.80%40.61%54.55% 53.57%
adversarial network(C)70.99 %41.86%18.25%58.11%56.94% 53.15% 51.87%53.35%46.61%
+ +Table 7: Classification accuracies under white box and black box attacks on CIFAR100 $\epsilon = 8 / 2 5 6 )$ ) + +![](images/db4f9913b00a33a68bd33683287f87e68d164083684db42626b5da8f905e2640.jpg) +Figure 4: Generative networks used in this paper + +Table 8: Classification accuracies under white box and black box attacks on CIFAR10 with Wide ResNet $( \epsilon = 8 / 2 5 6 )$ ) + +
training method\attackwhite boxblack box
No Noise FGSPGDFGS(A)])PGD(A') FGS(B')PGD(B') FGS(C') PGD(C")
standard(A)94.69%62.36%1.08%69.89% 9.14%85.05%82.82%76.27%45.16%
adversarial PGD(B)83.50%67.92%60.15%83.21% 82.96%72.66%68.82%82.01%78.59%
adversarial network(C)91.32%73.77%49.55%83.29 % 81.65%79.32%76.00%79.32%62.71%
+ +Table 8 gives the results on CIFAR10 using a wider version of Resnet (Model D2), by multiplying the number of filters in each convolutional layer by a factor of 10. Some of the previous works in the literature use models of larger capacity for training adversarially robust models, so we perform experiments on these large capacity models here. First the accuracies increase across the board with larger capacity models. The accuracy gap on clean data between adversarial PGD and standard training still exists, but now there is also a small accuracy gap between our adversarial network approach and standard training. For the rest of the white box and black accuracies the story is similar, the models are weakest against attacks trained with the same method but with a different random seed. Our adversarial network approach has very good performance across different attacks, even as it is not always the winner for each individual attack. Table 9 gives the results of Wide ResNet on CIFAR100, and the results are qualitatively similar. + +# EXTRA RESULTS ON ATTACKING USING GENERATIVE NETWORKS AND THEIR TRANSFERABILITY + +Following Section 4.5, we run extra experiments on using different generative networks to attack networks trained with adversarial PGD and our adversarial networks approach, in addition to the + +
training method\attackwhite boxblack box
No Noise FGSPGDFGS(A) PGD(A)]FGS(B') PGD(B’) FGS(C')PGD(C')
standard(A)79.22%44.86%6.38%48.52% 13.42%65.18%63.56%53.17%28.04%
adversarial PGD(B)66.68%45.54%38.36%64.81% 64.84%53.41%49.77%64.35%62.44%
adversarial network(C)80.21%57.21%30.27%65.37% 58.27%67.38%64.28%61.11%40.27%
+ +Table 9: Classification accuracies under white box and black box attacks on CIFAR100 with Wide Resnet $\epsilon = 8 / 2 5 6 )$ + +Table 10: Attack performance of various generator networks against a network trained with adversarial PGD in terms of test accuracies. First column is the accuracy on the discriminative model $D _ { \theta }$ that the generative attacker $G _ { \phi }$ is trained on (similar to white box attacks). The next three columns are the attack accuracies on other models by the learned $G _ { \phi }$ (similar to black box attacks) + +
GeneratorOriginal (B)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy75.30%90.54%75.71%89.21%
autoencoder(8 filters)72.74%88.38%73.07%87.89%
autoencoder(64 filters)71.26%87.64%71.98%87.02%
random Gaussian74.13%88.71%74.70%88.45%
label70.15%84.95%70.10%84.96%
+ +Table 11: Attack performance of various generator networks against our adversarial network in terms of test accuracies. First column is the accuracy on the discriminative model $D _ { \theta }$ that the generative attacker $G _ { \phi }$ is trained on (similar to white box attacks). The next three columns are the attack accuracies on other models by the learned $G _ { \phi }$ (similar to black box attacks) + +
GeneratorOriginal (C)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.08%90.54%75.71%89.21%
autoencoder(8 filters)74.66%66.95%74.42%80.55%
autoencoder(64 filters)53.68%46.37%73.08%72.18%
random Gaussian85.91%71.00%75.00%86.55%
label81.46%77.46%73.09%83.98%
+ +undefended network in Section 4.5. Table 10 shows the results of various generative networks in attacking a network trained with adversarial PGD. The adversarial PGD network is very robust, and the generative networks can at most reduce the accuracy by $5 \%$ . Interestingly, the strongest attack come from the more restrictive generative network using only the label as input. It is also the most successful in transferring to other networks. However, since the adversarial PGD network is so robust, none of the generative networks can learn much from it in generating adversarial examples. + +Table 11 shows the results of various generative networks in attacking our adversarial network. Our adversarial network is not as robust as adversarial PGD under white box attack, and the autoencoder(64 filters) network can reduce its accuracy from over $90 \%$ to $53 \%$ . Nonetheless, it is still much more robust than the undefended network. Interestingly, in addition to transferring well to the adversarial network trained with a different random seed $\mathbf { \pi } ( \mathbf { C } )$ , the autoencoder(64 filters) network also transfers well to the undefended network, reducing its accuracy to $46 \%$ . \ No newline at end of file diff --git a/parse/train/S1lIMn05F7/S1lIMn05F7_content_list.json b/parse/train/S1lIMn05F7/S1lIMn05F7_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..3a55aeb2fc7796f74de7da5205efd3c86ad89f5a --- /dev/null +++ b/parse/train/S1lIMn05F7/S1lIMn05F7_content_list.json @@ -0,0 +1,1954 @@ +[ + { + "type": "text", + "text": "A DIRECT APPROACH TO ROBUST DEEP LEARNINGUSING ADVERSARIAL NETWORKS", + "text_level": 1, + "bbox": [ + 176, + 98, + 790, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Huaxia Wang \nDepartment of Electrical and Computer Engineering \nStevens Institute of Technology \nHoboken, NJ 07030, USA \nhwang38@stevens.edu \nChun-Nam Yu \nNokia Bell Labs \n600 Mountain Avenue \nMurray Hill, NJ 07974, USA \nchun-nam.yu@nokia-bell-labs.com ", + "bbox": [ + 184, + 170, + 526, + 239 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 544, + 171, + 851, + 239 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 276, + 544, + 291 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep neural networks have been shown to perform well in many classical machine learning problems, especially in image classification tasks. However, researchers have found that neural networks can be easily fooled, and they are surprisingly sensitive to small perturbations imperceptible to humans. Carefully crafted input images (adversarial examples) can force a well-trained neural network to provide arbitrary outputs. Including adversarial examples during training is a popular defense mechanism against adversarial attacks. In this paper we propose a new defensive mechanism under the generative adversarial network (GAN) framework. We model the adversarial noise using a generative network, trained jointly with a classification discriminative network as a minimax game. We show empirically that our adversarial network approach works well against black box attacks, with performance on par with state-of-art methods such as ensemble adversarial training and adversarial training with projected gradient descent. ", + "bbox": [ + 233, + 309, + 764, + 489 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 516, + 336, + 532 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Deep neural networks have been successfully applied to a variety of tasks, including image classification (Krizhevsky et al., 2012), speech recognition (Graves et al., 2013), and human-level playing of video games through deep reinforcement learning (Mnih et al., 2015). However, Szegedy et al. (2014) showed that convolutional neural networks (CNN) are extremely sensitive to carefully crafted small perturbations added to the input images. Since then, many adversarial examples generating methods have been proposed, including Jacobian based saliency map attack (JSMA) (Papernot et al., 2016a), projected gradient descent (PGD) attack (Madry et al., 2018), and C&W’s attack (Carlini & Wagner, 2017). In general, there are two types of attack models: white box attack and black box attack. Attackers in white box attack model have complete knowledge of the target network, including network’s architecture and parameters. Whereas in black box attacks, attackers only have partial or no information on the target network (Papernot et al., 2017). ", + "bbox": [ + 174, + 547, + 825, + 700 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Various defensive methods have been proposed to mitigate the effect of the adversarial examples. Adversarial training which augments the training set with adversarial examples shows good defensive performance in terms of white box attacks (Kurakin et al., 2017; Madry et al., 2018). Apart from adversarial training, there are many other defensive approaches including defensive distillation (Papernot et al., 2016b), using randomization at inference time (Xie et al., 2018), and thermometer encoding (Buckman et al., 2018), etc. ", + "bbox": [ + 174, + 708, + 823, + 791 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we propose a defensive method based on generative adversarial network (GAN) (Goodfellow et al., 2014). Instead of using the generative network to generate samples that can fool the discriminative network as real data, we train the generative network to generate (additive) adversarial noise that can fool the discriminative network into misclassifying the input image. This allows flexible modeling of the adversarial noise by the generative network, which can take in the original image or a random vector or even the class label to create different types of noise. The discriminative networks used in our approach are just the usual neural networks designed for their specific classification tasks. The purpose of the discriminative network is to classify both clean and adversarial example with correct label, while the generative network aims to generate powerful perturbations to fool the discriminative network. This approach is simple and it directly uses the minimax game concept employed by GAN. Our main contributions include: ", + "bbox": [ + 174, + 799, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We show that our adversarial network approach can produce neural networks that are robust towards black box attacks. In the experiments they show similar, and in some cases better, performance when compared to state-of-art defense methods such as ensemble adversarial training (Tramer et al., 2018) and adversarial training with projected gradient \\` descent (Madry et al., 2018). To our best knowledge we are also the first to study the joint training of a generative attack network and a discriminative network. • We study the effectiveness of different generative networks in attacking a trained discriminative network, and show that a variety of generative networks, including those taking in random noise or labels as inputs, can be effective in attacks. We also show that training against these generative networks can provide robustness against different attacks. ", + "bbox": [ + 215, + 142, + 825, + 286 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The rest of the paper is organized as follows. In Section 2, related works including multiple attack and defense methods are discussed. Section 3 presents our defensive method in details. Experimental results are shown in Section 4, with conclusions of the paper in Section 5. ", + "bbox": [ + 178, + 296, + 825, + 339 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORKS ", + "text_level": 1, + "bbox": [ + 176, + 358, + 354, + 375 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In this section, we briefly review the attack and defense methods in neural network training. ", + "bbox": [ + 171, + 388, + 772, + 404 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 ATTACK MODEL ", + "text_level": 1, + "bbox": [ + 174, + 420, + 328, + 435 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Given a neural network model $D _ { \\theta }$ parameterized by $\\theta$ trained for classification, an input image $\\boldsymbol { x } \\in \\mathbb { R } ^ { d }$ and its label $y$ , we want to find a small adversarial perturbation $\\Delta x$ such that $x + \\Delta x$ is not classified as $y$ . The minimum norm solution $\\Delta x$ can be described as: ", + "bbox": [ + 174, + 446, + 823, + 488 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/a1a80e5922102dd52a7867083d1873c89a451de4057c1e2aa335bccee5401440.jpg", + "text": "$$\n\\operatorname* { a r g m i n } _ { \\Delta x } \\| \\Delta x \\| \\quad \\mathrm { s . t . } \\ \\arg \\operatorname* { m a x } D _ { \\theta } ( x + \\Delta x ) \\neq y ,\n$$", + "text_format": "latex", + "bbox": [ + 338, + 492, + 660, + 518 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where arg max $D _ { \\theta } ( x )$ gives the predicted class for input $x$ . Szegedy et al. (2014) introduced the first method to generate adversarial examples by considering the following optimization problem, ", + "bbox": [ + 174, + 522, + 828, + 550 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/f734765ed1d831704f689a79757bef422a34a4403c30246d69f994d8171459a4.jpg", + "text": "$$\n\\Delta x = \\underset { z } { \\arg \\operatorname* { m i n } } \\lambda \\| z \\| + L ( D _ { \\theta } ( x + z ) , \\hat { y } ) , \\quad x + z \\in [ 0 , 1 ] ^ { d }\n$$", + "text_format": "latex", + "bbox": [ + 303, + 555, + 694, + 580 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $L$ is a distance function measuring the closeness of the output $D _ { \\theta } ( x + z )$ with some target $\\hat { y } \\neq$ $y$ . The objective is minimized using box-constrained L-BFGS. Goodfellow et al. (2015) introduced the fast gradient sign method (FGS) to generate adversarial examples in one step, which can be represented as $\\Delta x { \\mathbf { \\bar { \\phi } } } = \\epsilon \\cdot \\mathrm { s i g n } \\left( \\nabla _ { x } l ( D _ { \\theta } ( { \\bar { { x } } } ) , y ) \\right)$ , where $l$ is the cross-entropy loss used in neural networks training. Madry et al. (2018) argues with strong evidence that projected gradient descent (PGD), which can be viewed as an iterative version of the fast gradient sign method, is the strongest attack using only first-order gradient information. Papernot et al. (2017) presented a Jacobian-based saliency-map attack (J-BSMA) model to generate adversarial examples by changing a small number of pixels. Moosavi-Dezfooli et al. (2017) showed that there exist a single/universal small image perturbation that fools all natural images. Papernot et al. (2017) introduced the first demonstration of black-box attacks against neural network classifiers. The adversary has no information about the architecture and parameters of the neural networks, and does not have access to large training dataset. ", + "bbox": [ + 173, + 584, + 825, + 765 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.2 DEFENSE MODEL ", + "text_level": 1, + "bbox": [ + 174, + 781, + 336, + 795 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In order to mitigate the effect of the generated adversarial examples, various defensive methods have been proposed. Papernot et al. (2016b) introduced distillation as a defense to adversarial examples. Lou et al. (2016) introduced a foveation-based mechanism to alleviate adversarial examples. ", + "bbox": [ + 174, + 806, + 825, + 849 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "The idea of adversarial training was first proposed by Szegedy et al. (2014). The effect of adversarial examples can be reduced through explicitly training the model with both original and perturbed adversarial images. Adversarial training can be viewed as a minimax game, ", + "bbox": [ + 174, + 856, + 825, + 898 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/4f91c1aab9aebc24acc731159bb955118fdeb6cb0e10d6cbb22848ac0ce55a24.jpg", + "text": "$$\n\\theta ^ { * } = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\operatorname { E } _ { x , y } \\underset { \\Delta x } { \\operatorname* { m a x } } l ( D _ { \\theta } ( x + \\Delta x ) , y ) .\n$$", + "text_format": "latex", + "bbox": [ + 356, + 902, + 642, + 926 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/23802e87c1be4f67cbfc9eb8c53124ad25c8bbddfc15716d481f690141d3401b.jpg", + "image_caption": [ + "Figure 1: Architecture diagram of our adversarial networks " + ], + "image_footnote": [], + "bbox": [ + 186, + 119, + 821, + 208 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "The inner maximization requires a separate oracle for generating the perturbations $\\Delta x$ . FGS is a common method for generating the adversarial perturbations $\\Delta x$ due to its speed. Madry et al. (2018) advocates the use of PGD in generating adversarial examples. Moreover, a cascade adversarial training is presented in Na et al. (2018), which injects adversarial examples from an already defended network added with adversarial images from the network being trained. ", + "bbox": [ + 174, + 275, + 825, + 344 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "There are a few recent works on using GANs for generating and defending against adversarial examples. Samangouei et al. (2018) and Ilyas et al. (2017) use GAN for defense by learning the manifold of input distribution with GAN, and then project any input examples onto this learned manifold before classification to filter out any potential adversarial noise. Our approach is more direct because we do not learn the input distribution and no input denoising is involved. Both Baluja & Fischer (2018) and Xiao et al. (2018) train neural networks to generate adversarial examples by maximizing the loss over a fixed pre-trained discriminative network. They show that they can train neural networks to effectively attack undefended discriminative networks while ensuring the generated adversarial examples look similar to the original samples. Our work is different from these because instead of having a fixed discriminative network, we co-train the discriminative network together with the adversarial generative network in a minimax game. Xiao et al. (2018) also train a second discriminative network as in typical GANs, but their discriminative network is used for ensuring the generated images look like the original samples, and not for classification. Lee et al. (2017) also considered the use of GAN to train robust discriminative networks. However, the inputs to their generative network is the gradient of the discriminative network with respect to the input image $x$ , not just the image $x$ as in our current work. This causes complex dependence of the gradient of the generative network parameters to the discriminative network parameters, and makes the parameter updates for the generative network more complicated. Also there is no single minimax objective that they are solving for in their work; the update rules for the discriminative and generative networks optimize related but different objectives. ", + "bbox": [ + 174, + 352, + 825, + 628 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 METHOD ", + "text_level": 1, + "bbox": [ + 176, + 652, + 281, + 669 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In generative adversarial networks (GAN) (Goodfellow et al., 2014), the goal is to learn a generative neural network that can model a distribution of unlabeled training examples. The generative network transforms a random input vector into an output that is similar to the training examples, and there is a separate discriminative network that tries to distinguish the real training examples against samples generated by the generative network. The generative and discriminative networks are trained jointly with gradient descent, and at equilibrium we want the samples from the generative network to be indistinguishable from the real training data by the discriminative network, i.e., the discriminative network does no better than doing a random coin flip. ", + "bbox": [ + 174, + 686, + 825, + 797 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We adopt the GAN approach in generating adversarial noise for a discriminative model to train against. This approach has already been hinted at in Tramer et al. (2018), but they decided to train \\` against a static set of adversarial models instead of training against a generative noise network that can dynamically adapt in a truly GAN fashion. In this work we show that this idea can be carried out fruitfully to train robust discriminative neural networks. ", + "bbox": [ + 174, + 805, + 823, + 875 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Given an input $x$ with correct label $y$ , from the viewpoint of the adversary we want to find additive noise $\\Delta x$ such that $x + \\Delta x$ will be incorrectly classified by the discriminative neural network to some other labels $\\hat { y } \\ne y$ . We model this additive noise as $\\epsilon G ( x )$ , where $G$ is a generative neural network that generates instance specific noise based on the input $x$ and $\\epsilon$ is the scaling factor that controls the size of the noise. Notice that unlike white box attack methods such as FGS or PGD, once trained $G$ does not need to know the parameters of the discriminative network that it is attacking. $G$ can also take in other inputs to generate adversarial noise, e.g., Gaussian random vector $z \\in { \\mathbb { R } ^ { d } }$ as in typical GAN, or even the class label $y$ . For simplicity we assume $G$ takes in $x$ as input in the descriptions below. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 188 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Suppose we have a training set $\\left\\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\right\\}$ of image-label pairs. Let $D _ { \\theta }$ be the discriminator network (for classification) parameterized by $\\theta$ , and $G _ { \\phi }$ be the generator network parameterized by $\\phi$ . We want to solve the following minimax game between $D _ { \\theta }$ and $G _ { \\phi }$ : ", + "bbox": [ + 174, + 194, + 823, + 237 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/9560b4da2793f7a9a7413f28b5088670b8be4690e3b5d043effe5ce7c62c5296.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\theta } \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 295, + 238, + 700, + 280 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "where $l$ is the cross-entropy loss, $\\lambda$ is the trade-off parameter between minimizing the loss on normal examples versus minimizing the loss on the adversarial examples, and $\\epsilon$ is the magnitude of the noise. See Figure 1 for an illustration of the model. ", + "bbox": [ + 174, + 280, + 823, + 321 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In this work we focus on perturbations based on $\\ell _ { \\infty }$ norm. This can be achieved easily by adding a tanh layer as the final layer of the generator network $G _ { \\phi }$ , which normalizes the output to the range of $[ - 1 , 1 ]$ . Perturbations based on $\\ell _ { 1 }$ or $\\ell _ { 2 }$ norms can be accommodated by having the appropriate normalization layers in the final layer of $G _ { \\phi }$ . ", + "bbox": [ + 173, + 329, + 825, + 386 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We now explain the intuition of our approach. Ideally, we would like to find a solution $\\theta$ that has small risk on clean examples ", + "bbox": [ + 173, + 392, + 823, + 420 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/a581ab3223aca5f2b0dd6ef54493d6553380843a8ea64d274fddcf94faecdbf9.jpg", + "text": "$$\nR \\left( \\theta \\right) = \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) ,\n$$", + "text_format": "latex", + "bbox": [ + 410, + 417, + 586, + 459 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "and also small risk on the adversarial examples under maximum perturbation of size $\\epsilon$ ", + "bbox": [ + 171, + 459, + 736, + 473 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/8a787f17e1966e71811e25180520327494062d983e9ddf8782b4e81d5b0161db.jpg", + "text": "$$\nR _ { a d v } ( \\theta ) = \\sum _ { i = 1 } ^ { n } \\operatorname* { m a x } _ { \\Delta x , \\| \\Delta x \\| \\leq \\epsilon } l ( D _ { \\theta } ( x _ { i } + \\Delta x ) , y _ { i } ) .\n$$", + "text_format": "latex", + "bbox": [ + 343, + 474, + 655, + 515 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "However, except for simple datasets like MNIST, there are usually fairly large differences between the solutions of $R ( \\theta )$ and solutions of $R _ { a d v } ( \\theta )$ under the same model class $D _ { \\theta }$ (Tsipras et al., 2018). Optimizing for the risk under white box attacks $R _ { a d v } ( \\theta )$ involves tradeoff on the risk on clean data $R ( \\theta )$ . Note that $R _ { a d v } ( \\theta )$ represent the risk under white box attacks, since we are free to choose the perturbation $\\Delta x$ with knowledge of $\\theta$ . This can be approximated using the powerful PGD attack. ", + "bbox": [ + 174, + 516, + 825, + 585 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Instead of allowing the perturbations $\\Delta x$ to be completely free, we model the adversary as a neural network $G _ { \\phi }$ with finite capacity ", + "bbox": [ + 173, + 592, + 821, + 621 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/36a45133098923ff6ac477aa8d1dede5fcdca6f59ad18e642663b8a40e6b22da.jpg", + "text": "$$\nR _ { G } ( \\theta ) = \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) .\n$$", + "text_format": "latex", + "bbox": [ + 351, + 623, + 647, + 664 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Here the adversarial noise $G _ { \\phi } ( x _ { i } )$ is not allowed to directly depend on the discriminative network parameters $\\theta$ . Also, the generative network parameter $\\phi$ is shared across all examples, not computed per example like $\\Delta x$ . We believe this is closer to the situation of defending against black box attacks, when the adversary does not know the discriminator network parameters. However, we still want $G _ { \\phi }$ to be expressive enough to represent powerful attacks, so that $D _ { \\theta }$ has a good adversary to train against. Previous work (Xiao et al., 2018; Baluja & Fischer, 2018) show that there are powerful classes of $G _ { \\phi }$ that can attack trained classifiers $D _ { \\theta }$ effectively. ", + "bbox": [ + 174, + 665, + 825, + 763 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In traditional GANs we are most interested in the distributions learned by the generative network. The discriminative network is a helper that drives the training, but can be discarded afterwards. In our setting we are interested in both the discriminative network and the generative network. The generative network in our formulation can give us a powerful adversary for attacking, while the discriminative network can give us a robust classifier that can defend against adversarial noise. ", + "bbox": [ + 174, + 768, + 825, + 840 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1 STABILIZING THE GAN TRAINING ", + "text_level": 1, + "bbox": [ + 176, + 856, + 454, + 869 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The stability and convergence of GAN training is still an area of active research (Mescheder et al., 2018). In this paper we adopt gradient regularization (Mescheder et al., 2017) to stabilize the gradient descent/ascent training. Denote the minimax objective in Eq. 4 as $F ( \\theta , \\phi )$ . With the generative ", + "bbox": [ + 174, + 881, + 823, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "network parameter fixed at $\\phi _ { k }$ , instead of minimizing the usual objective $F ( \\theta , \\phi _ { k } )$ to update $\\theta$ for the discriminator network, we instead try to minimize the regularized objective ", + "bbox": [ + 171, + 103, + 823, + 132 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/5f4f5ac081762fa2cfb320a8dd08ae68727ff227bc3965079301a23b0bd1cfe3.jpg", + "text": "$$\nF ( \\theta , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 } ,\n$$", + "text_format": "latex", + "bbox": [ + 397, + 137, + 599, + 164 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $\\gamma$ is the regularization parameter for gradient regularization. Minimizing the gradient norm $\\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 }$ jointly makes sure that the norm of the gradient for $\\phi$ at $\\phi _ { k }$ does not grow when we update $\\theta$ to reduce the objective $F ( \\theta , \\phi _ { k } )$ . This is important because if the gradient norm $\\| \\nabla _ { \\phi } \\bar { F } ( \\theta , \\phi _ { k } ) \\| ^ { 2 }$ becomes large after an update of $\\theta$ , it is easy to update $\\phi$ to make the objective large again, leading to zigzagging behaviour and slow convergence. Note that the gradient norm term is zero at a saddle point according to the first-order optimality conditions, so the regularizer does not change the set of solutions. With these we update $\\theta$ using SGD with step size $\\eta _ { D }$ : ", + "bbox": [ + 174, + 167, + 825, + 267 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/fd46f8b8edb81bf1ca56ee7a4c61ded8e3c174f69ca16e035fcd418460761bb6.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle \\theta _ { l + 1 } = \\theta _ { l } - \\eta _ { D } \\nabla _ { \\theta } [ F ( \\theta _ { l } , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\| ^ { 2 } ] } } \\\\ { { \\displaystyle \\quad \\quad = \\theta _ { l } - \\eta _ { D } [ \\nabla _ { \\theta } F ( \\theta _ { l } , \\phi _ { k } ) + \\gamma \\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) ] } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 295, + 271, + 702, + 320 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "The Hessian-vector product term $\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )$ can be computed with double backpropagation provided by packages like Tensorflow/PyTorch, but we find it faster to compute it with finite difference approximation. Recall that for a function $f ( x )$ with gradient $g ( x )$ and Hessian $H ( x )$ , the Hessian-vector product $H ( x ) v$ can be approximated by $( g ( x + h v ) - g ( x ) ) / h$ for small $h$ (Pearlmutter, 1994). Therefore we approximate: ", + "bbox": [ + 173, + 324, + 825, + 397 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/5a8982f963d7e7e9f8395cb52a1d29366dea6675be2946b96396baa3502c8e13.jpg", + "text": "$$\n\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\approx \\nabla _ { \\theta } [ \\frac { F ( \\theta _ { l } , \\phi _ { k } + h v ) - F ( \\theta _ { l } , \\phi _ { k } ) } { h } ] ,\n$$", + "text_format": "latex", + "bbox": [ + 285, + 401, + 710, + 434 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where $v = \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )$ . Note that $\\phi _ { k } + h v$ is exactly a gradient step for generative network $G _ { \\phi }$ . Setting $h$ to be too small can lead to numerical instability. We therefore correlate $h$ with the gradient step size and set $h = \\eta _ { G } / 1 0$ to capture the curvature at the scale of the gradient ascent algorithm. ", + "bbox": [ + 174, + 438, + 825, + 481 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We update the generative network parameters $\\phi$ with using (stochastic) gradient ascent. With the discriminative network parameters fixed at $\\theta _ { l }$ and step size $\\eta _ { G }$ , we update: ", + "bbox": [ + 173, + 487, + 823, + 515 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/89481601b2ec85e5fa8bf9d0afa2e9376c96d6b1aa8684f309254083d964db1a.jpg", + "text": "$$\n\\phi _ { k + 1 } = \\phi _ { k } + \\eta _ { G } \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) .\n$$", + "text_format": "latex", + "bbox": [ + 395, + 521, + 601, + 539 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We do not add a gradient regularization term for $\\phi$ , since empirically we find that adding gradient regularization to $\\theta$ is sufficient to stabilize the training. ", + "bbox": [ + 174, + 542, + 825, + 571 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 GENERATIVE AND DISCRIMINATIVE NETWORK PARAMETER UPDATES ", + "text_level": 1, + "bbox": [ + 174, + 588, + 700, + 603 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In the experiments we train both the discriminative network and generative network from scratch with random weight initializations. We do not need to pre-train the discriminative network with clean examples, or the generative network against some fixed discriminative networks, to arrive at good saddle point solutions. ", + "bbox": [ + 174, + 613, + 825, + 670 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In our experiments we find that the discriminative networks $D _ { \\theta }$ we use tend to overpower the generative network $G _ { \\phi }$ if we just perform simultaneous parameter updates to both networks. This can lead to saddle point solutions where it seems $G _ { \\phi }$ cannot be improved locally against $D _ { \\theta }$ , but in reality can be made more powerful by just running more gradient steps on $\\phi$ . In other words we want the region around the saddle point solution to be relatively flat for $G _ { \\phi }$ . To make the generative network more powerful so that the discriminative network has a good adversary to train against, we adopt the following strategy. For each update of $\\theta$ for $D _ { \\theta }$ , we perform multiple gradient steps on $\\phi$ using the same mini-batch. This allows the generative network to learn to map the inputs in the mini-batch to adversarial noises with high loss directly, compared to running multiple gradient steps on different mini-batches. In the experiments we run 5 gradient steps on each mini-batch. We fix the tradeoff parameter $\\lambda$ (Eq. 4) over loss on clean examples and adversarial loss at 1. We also fix the gradient regularization parameter $\\gamma$ (Eq. 8) at 0.01, which works well for different datasets. ", + "bbox": [ + 173, + 676, + 825, + 844 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 864, + 326, + 880 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We implemented our adversarial network approach using Tensorflow(Abadi et al., 2016), with the experiments run on several machines each with 4 GTX1080 Ti GPUs. In addition to our adversarial ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "networks, we also train standard undefended models and models trained with adversarial training using PGD for comparison. For attacks we focus on the commonly used fast gradient sign (FGS) method, and the more powerful projected gradient descent (PGD) method. ", + "bbox": [ + 174, + 103, + 825, + 146 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the fast gradient sign (FGS) attack, we compute the adversarial image by ", + "bbox": [ + 173, + 152, + 678, + 167 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/c2579e7a55a1d162d111ca6a29321133484b4d686fa531f17c71423f4eeebd1c.jpg", + "text": "$$\n\\begin{array} { r } { \\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 356, + 174, + 640, + 193 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $\\mathrm { P r o j } _ { X }$ projects onto the feasible range of rescaled pixel values $X$ (e.g., [-1,1]). ", + "bbox": [ + 171, + 199, + 730, + 214 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the projected gradient descent (PGD) attack, we iterate the fast gradient sign attack multiple times with projection, with random initialization near the starting point neighbourhood. ", + "bbox": [ + 173, + 219, + 825, + 250 + ], + "page_idx": 5 + }, + { + "type": "equation", + "img_path": "images/c925e99614085ec87280984677e77ae923d80fa98aa7802d08edf1823ce3a707.jpg", + "text": "$$\n\\begin{array} { r l } & { ~ \\hat { x } _ { i } ^ { 0 } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon u \\right) } \\\\ & { \\hat { x } _ { i } ^ { k + 1 } = \\mathrm { P r o j } _ { B _ { \\epsilon } ^ { \\infty } ( x _ { i } ) \\cap X } \\left( \\hat { x } _ { i } ^ { k } + \\delta \\operatorname { s i g n } \\nabla _ { x } \\boldsymbol { l } ( D _ { \\theta } ( \\hat { x } _ { i } ^ { k } ) , y _ { i } ) \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 315, + 256, + 681, + 299 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "where $u \\in \\mathbb { R } ^ { d }$ is a uniform random vector in $[ - 1 , 1 ] ^ { d }$ , $\\delta$ is the step size, and $B _ { \\epsilon } ^ { \\infty } ( x _ { i } )$ is an $\\ell _ { \\infty }$ ball centered around the input $x _ { i }$ with radius $\\epsilon$ . In the experiments we set $\\delta$ to be a quarter of the perturbation $\\epsilon$ , i.e., $\\epsilon / 4$ , and the number of PGD steps $k$ to be 10. We adopt exactly the same PGD attack procedure when generating adversarial examples in PGD adversarial training. Our implementation is available at https://github.com/whxbergkamp/RobustDL_GAN. ", + "bbox": [ + 174, + 305, + 825, + 377 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.1 MNIST ", + "text_level": 1, + "bbox": [ + 174, + 393, + 269, + 409 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For MNIST the inputs are black and white images of digits of size $2 8 \\mathbf { x } 2 8$ with pixel values scaled between 0 and 1. We rescale the inputs to the range of [-1,1]. Following previous work (Kannan et al., 2018), we study perturbations of $\\epsilon = 0 . 3$ (in the original scale of [0,1]). We use a simple convolutional neural network similar to LeNet5 as our discriminator networks for all training methods. For our adversarial approach we use an encoder-decoder network for the generator. See Model D1 and Model G0 in the Appendix for the details of these networks. We use SGD with learning rate of $\\eta _ { D } = 0 . 0 1$ and momentum 0.9, batch size of 64, and run for 200k iterations for all the discriminative networks. The learning rates are decreased by a factor of 10 after $1 0 0 \\mathrm { k }$ iterations. We use SGD with a fixed learning rate $\\eta _ { G } = 0 . 0 1$ with momentum 0.9 for the generative network. We use weight decay of 1E-4 for standard and adversarial PGD training, and 1E-5 for our adversarial network approach (for both $D _ { \\theta }$ and $G _ { \\phi }$ ). For this dataset we find that we can improve the robustness of $D _ { \\theta }$ by running more updates on $G _ { \\phi }$ , so we run 5 updates on $G _ { \\phi }$ (each update contains 5 gradient steps described in Section 3.2 ) for each update on $D _ { \\theta }$ . ", + "bbox": [ + 173, + 420, + 825, + 602 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1(left) shows the white box attack accuracies of different models, under perturbations of $\\epsilon =$ 0.3 for input pixel values between 0 and 1. Adversarial training with PGD performs best under white box attacks. Its accuracies stay above $90 \\%$ under FGS and PGD attacks. Our adversarial network model performs much better than the undefended standard training model, but there is still a gap in accuracies compared to the PGD model. However, the PGD model has a small but noticeable drop in accuracy on clean examples compared to the standard model and adversarial network model. ", + "bbox": [ + 174, + 608, + 825, + 691 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Table 1(right) shows the black box attack accuracies of different models. We generate the black box attack images by running the FGS and PGD attacks on surrogate models A’, B’ and $\\mathrm { C } '$ . These surrogate models are trained in the same way as their counterparts (standard - A, PGD - B, adversarial network - C) with the same network architecture, but using a different random seed. We notice that the black box attacks tend to be the most effective on models trained with the same method (A’ on A, $\\mathbf { B } ^ { \\prime }$ on B, and $\\mathrm { C } '$ on C). Although adversarial PGD beats our adversarial network approach on white box attacks, they have comparable performance on these black box attacks. Interestingly, the adversarial examples from adversarial PGD (B’) and adversarial networks $\\mathbf { \\pi } ( \\mathbf { C } ^ { \\prime } )$ do not transfer well to the undefended standard model. The undefended model still have accuracies between $8 5 - 9 5 \\%$ . ", + "bbox": [ + 173, + 698, + 825, + 824 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4.2 SVHN ", + "text_level": 1, + "bbox": [ + 174, + 840, + 261, + 854 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For the Street View House Number(SVHN) data, we use the original training set, augmented with $8 0 \\mathrm { k }$ randomly sampled images from the extra set as our training data. The test set remains the same and we do not perform any preprocessing on the images apart from scaling it to the range of [-1,1]. We study perturbations of size $\\epsilon = 0 . 0 5$ (in the range of [0,1]). We use a version of ResNet-18(He ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/f19eea7773720a72291c9ad7cb663200fb9f6e2610aed6320e288e3bff7ef6f3.jpg", + "table_caption": [ + "Table 1: Classification accuracies under white box and black box attack on MNIST $\\epsilon = 0 . 3$ ) " + ], + "table_footnote": [], + "table_body": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)PGD(A')FGS(B')PGD(B')))FGS(C')PGD(C')
standard(A)99.40%23.70%0.00%39.49%3.41%90.56%86.10%94.21%91.36%
adversarial PGD(B)98.70%95.46%92.92%95.78%96.18%95.58%95.01%97.05%96.48%
adversarial network(C)99.32%94.66%87.09%95.75%96.19%96.15%95.24%96.96%95.78%
", + "bbox": [ + 176, + 101, + 844, + 166 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/f9c98d36971fc76b0e16f5aa91111a41e9164ecce27b7bbca6e5e200cbc7b715.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A')PGD(A')FGS(B’)PGD(B')FGS(C')]PGD(C')
standard(A)96.34%64.64%3.69%69.47% 49.92%56.46%44.25%89.71%83.02%
adversarial PGD(B)87.45%55.94%42.96%85.21%83.46% 59.09%48.20%87.41%83.23%
adversarial network(C)96.34%91.51%37.97%90.02%88.04%75.34%57.52%91.48%81.68%
", + "bbox": [ + 178, + 208, + 844, + 275 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 2: Classification accuracies under white box and black box attacks on SVHN $\\epsilon = 0 . 0 5$ ) ", + "bbox": [ + 186, + 285, + 808, + 299 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "et al., 2016) adapted to $3 2 \\mathrm { x } 3 2 $ images as our discriminative networks. For the generator in our adversarial network we use an encoder-decoder network based on residual blocks from ResNet. See Model D2 and Model G1 in the Appendix for details. For the discriminative networks we use SGD with learning rate of $\\eta _ { D } = 0 . 0 1$ and momentum 0.9, batch size of 64, weight decay of 1E-4 and run for $1 0 0 \\mathrm { k }$ iterations, and then decrease the learning rate to 0.001 and run for another $1 0 0 \\mathrm { k }$ iterations. For the generative network we use SGD with a fixed learning rate of $\\eta _ { G } = 0 . 0 1$ and momentum 0.9, and use weight decay of 1E-4. ", + "bbox": [ + 174, + 330, + 825, + 429 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 2(left) shows the white box attack accuracies of the models. Adversarial PGD performs best against PGD attacks, but has lower accuracies on clean data and against FGS attacks, since it is difficult to optimize over all three objectives with finite network capacity. Our adversarial network approach has the best accuracies on clean data and against FGS attacks, and also improved accuracies against PGD over standard training. ", + "bbox": [ + 174, + 435, + 823, + 506 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 2(right) shows the black box attack accuracies of the models. As before A’, B’, C’ are networks trained in the same ways as their counterparts, but with a different random seed. We can see that the adversarial network approach performs best across most attacks, except the PGD attack from its own copy $\\mathbf { C } '$ . It is also interesting to note that for this dataset, adversarial examples generated from the adversarial PGD model $\\mathbf { B } ^ { \\ast }$ have the strongest attack power across all models. In the other two datasets, adversarial examples generated from a model are usually most effective against their counterparts that are trained in the same way. ", + "bbox": [ + 174, + 512, + 825, + 609 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "4.3 CIFAR10 ", + "text_level": 1, + "bbox": [ + 174, + 631, + 284, + 645 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "For CIFAR10 we scale the $3 2 \\mathrm { x } 3 2 $ inputs to the range of [-1,1]. We also perform data augmentation by randomly padding and cropping the images by at most 4 pixels, and randomly flipping the images left to right. In this experiment we use the same discriminative and generative networks as in SVHN. We study perturbations of size $\\epsilon = 8 / 2 5 6$ . We train the discriminative networks with batch size of 64, and learning rate of $\\eta _ { D } = 0 . 1$ for 100k iterations, and decrease learning rate to 0.01 for another 100k iterations. We use Adam with learning rate $\\eta _ { G } ~ = ~ 0 . 0 0 2$ , $\\beta _ { 1 } ~ = ~ 0 . 5$ , $\\beta _ { 2 } ~ = ~ 0 . 9 9 9$ for the generative network. We use weight decay 1E-4 for standard training, and 1E-5 for adversarial PGD and our adversarial networks. ", + "bbox": [ + 174, + 659, + 825, + 770 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 3(left) shows the white box accuracies of different models under attack with $\\epsilon = 8 / 2 5 6$ . The PGD model has the best accuracy under PGD attack, but suffer a considerably lower accuracy on clean data and FGS attack. One reason for this is that it is difficult to balance between the objective of getting good accuracies on clean examples and good accuracies on very hard PGD attack adversarial examples with a discriminative network of limited capacity. Our adversarial model is able to keep up with the standard model in terms of accuracies on clean examples, and improve upon it on accuracies against FGS and PGD attacks. ", + "bbox": [ + 174, + 776, + 825, + 875 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Table 3(right) shows the black box attack accuracies of the models. Our adversarial network method works better than the other approaches in general, except for the PGD attack from the most similar model C’. The adversarial PGD model also works quite well except against its own closest model $\\mathbf { B } ^ { \\prime }$ , and offers the smallest drop in accuracies in general. But its overall results are not the best since it suffers from the disadvantage of having a lower baseline accuracy on clean examples. ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/50f9a2b2a6df14972affc7bb7caedefa8b152db4623eaffcba816d91985e9340.jpg", + "table_caption": [ + "Table 3: Classification accuracies under white box and black box attack on CIFAR10 $\\epsilon = 8 / 2 5 6 )$ " + ], + "table_footnote": [], + "table_body": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B')FGS(C')PGD(C')
standard(A)91.59%57.31%1.32%67.99%22.88%77.13%75.06%73.34%55.34%
adversarial PGD(B)75.30%47.63%41.16%74.04%74.23%57.73%55.72%73.31%73.09%
adversarial network(C)91.08%72.81%44.28%81.74%79.48%77.23%74.04%78.51%66.74%
", + "bbox": [ + 176, + 101, + 844, + 167 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/39752662d9ddb551f82a1e568fd04f859cd6f9db04032161c587e9569961c33d.jpg", + "table_caption": [ + "Table 4: Classification accuracies under white box and black box attacks on ensemble adversarial training and adversarial networks on different datasets " + ], + "table_footnote": [], + "table_body": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B') IFGS(C')PGD(C')
ensemble(MNIST,ε=0.3)98.65%2.52%0.00%90.91% 93.91%90.94%88.12%90.79%89.61%
adv. net(MNIST,ε=0.3)99.03%94.66%87.09%95.75% 96.19%96.15%95.24%96.96%95.78%
ensemble(SVHN,e=0.05)95.30%79.16%2.74%95.32% 93.88%67.97%54.81%95.60%93.21%
adv. net(SVHN,e=0.05)96.34%91.51%37.97%90.02% 88.04%75.34%57.52%91.48%81.68%
ensemble(CIFAR10,e= 887.17%57.91%11.35%85.01% 85.19%68.76%67.41%79.64%70.98%
adv. net(CIFAR10,ε= 2591.08%72.81%44.28%81.74%79.48% 77.23%74.04%78.51%66.74%
", + "bbox": [ + 174, + 210, + 877, + 324 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 395, + 823, + 424 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We have also performed experiments on CIFAR10 using a wider version of ResNet (Zagoruyko & Komodakis, 2016) by multiplying the number of filters by 10 in each of the convolutional layers. These wider version of ResNets have higher accuracies, but the relative strengths of the methods are similar to those presented here. In addition we have experiments on CIFAR100, and the results are qualitatively similar to CIFAR10. All these results are presented in the Appendix due to space restrictions. ", + "bbox": [ + 174, + 429, + 825, + 513 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.4 COMPARING AGAINST ENSEMBLE ADVERSARIAL TRAINING ", + "text_level": 1, + "bbox": [ + 174, + 537, + 630, + 553 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We also compare against a version of ensemble adversarial training (Tramer et al., 2018) on the \\` above 3 datasets. Ensemble adversarial training works by including adversarial examples generated from static pre-trained models to enlarge the training set, and then train a new model on top of it. The quality of solutions depends on the type of adversarial examples included. Here we construct adversarial examples by running FGS (Eq. 10) and PGD (Eq. 11) on an undefended model, i.e., FGS(A) and PGD(A) in the previous tables. Here for FGS we substitute the target label $y$ with the most likely class arg max $\\bar { D _ { \\theta } } ( x )$ to avoid the problem of label leakage. Following Tramer et al. \\` (2018) we also include another attack using the least likely class: ", + "bbox": [ + 173, + 566, + 825, + 679 + ], + "page_idx": 7 + }, + { + "type": "equation", + "img_path": "images/eb990fcab410857dbbc092ed8caf132273e3fda29ded45323073aa77151a64c9.jpg", + "text": "$$\n\\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } - \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { L L } ) \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 349, + 691, + 647, + 709 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "where $y _ { L L } = \\arg \\operatorname* { m i n } D _ { \\theta } ( x _ { i } )$ is the least likely class. We include all these adversarial examples together with the original clean data for training. We use the same perturbations $\\epsilon$ as in the respective experiments above. ", + "bbox": [ + 174, + 720, + 825, + 763 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 4 shows the results comparing ensemble adversarial training (EAT) with our adversarial networks approach. On MNIST, adversarial networks is better on white box attacks and also better on all black box attacks using models trained with standard training(A’), adversarial PGD(B’), and our adversarial networks approach(C’) with different random seeds. On SVHN and CIFAR10 adversarial networks is better on white box attacks, and both methods have wins and losses on the black box attacks, depending on the attacks used. In general adversarial networks seem to have better white box attack accuracies since they are trained dynamically with a varying adversary. The black box accuracies depend a lot on the dataset and the type of attacks used. There is no definitive conclusion on whether training against a static set of adversaries as in EAT or training against a dynamically adjusting adversary as in adversarial networks is a better approach against black box attacks. This is an interesting question requiring further research. ", + "bbox": [ + 173, + 770, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/e259bf98642f50d6aadd89804045cd8c59f91839617fa3dd1932608969a46462.jpg", + "table_caption": [ + "Table 5: Attack performance of various generator networks against an undefended network in terms of test accuracies. First column is the accuracy on the discriminative model $D _ { \\theta }$ that the generative attacker $G _ { \\phi }$ is trained on (similar to white box attacks). The next three columns are the attack accuracies on other models by the learned $G _ { \\phi }$ (similar to black box attacks) " + ], + "table_footnote": [], + "table_body": "
GeneratorOriginal (A)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.59%90.54%75.71%89.21%
autoencoder(8 filters)31.07%41.40%74.56%84.59%
autoencoder(64 filters)6.08%14.74%75.52%86.64%
random Gaussian45.27%58.68%75.02%87.33%
label11.17%23.29%74.78%82.43%
", + "bbox": [ + 178, + 99, + 820, + 179 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/15e1682603b5fc77054ead02cd0dfdee831977a7f5820e77dbab800045e1c10c.jpg", + "table_caption": [ + "Table 6: Classification accuracies under white box and black box attacks on CIFAR10 for adversarial networks trained with different generative adversaries $\\zeta = 8 / 2 5 6 )$ ) " + ], + "table_footnote": [], + "table_body": "
training method\\attackwhite boxblack box
No NoiseFGSPGDFGS(A')PGD(A')FGS(B')PGD(B')
autoencoder(8 filters)88.70%67.28%33.56%78.94%74.15%70.70%68.54%
autoencoder(64 filters)89.10%67.05%33.38%79.56%74.40%70.52%68.66%
random Gaussian89.73%69.43%35.16%80.09%76.02%71.22%69.66%
label88.72%67.09%37.70%80.95%77.80%70.90%68.81%
", + "bbox": [ + 174, + 281, + 823, + 362 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.5 EXAMINING THE GENERATIVE NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 449, + 511, + 463 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We also did a more in-depth study on the generative network with CIFAR10. We want to understand how the capacity of the generative network affects the quality of saddle point solution, and also the power of the generative networks themselves as adversarial attack methods. First we study the ability of the generative networks to learn to attack a fixed undefended discriminative network. The architectures of the generative networks (G1, G2, G3) are described in the Appendix. Here we study a narrow (G1, $k = 8$ ) and a wide version (G1, $k = 6 4$ ) of autoencoder networks using the input images as inputs, and also decoder networks $G ( z )$ using random Gaussian vectors $z \\in \\mathring { \\mathbb { R } } ^ { d }$ (G2) or networks $G ( y )$ using the labels $y$ (G3) as inputs. We run SGD for $2 0 0 \\mathrm { k }$ iterations with step size 0.01 and momentum of 0.9, and use weight decay of 1E-5. We report test accuracies on the original discriminator after attacks. ", + "bbox": [ + 174, + 484, + 825, + 625 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "From Table 5 the wide autoencoder is more powerful than the narrow autoencoder in attacking the undefended discriminator network across different models. As a white-box attack method, the wide autoencoder is close to PGD in terms of attack power $( 6 . 0 8 \\%$ vs $1 . 3 2 \\%$ in Table 3(left)) on the undefended model. As a black-box attack method on the undefended model $\\mathbf { A } '$ , it works even better than PGD ( $1 4 . 7 4 \\%$ vs $2 2 . 8 8 \\%$ in Table 3(right)). However, on defended models trained with PGD and our adversarial network approach the trained generator networks do not have much effect. PGD is especially robust with very small drops in accuracies against these attacks. ", + "bbox": [ + 174, + 631, + 825, + 728 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "It is interesting that generator network $G ( z )$ with random Gaussian $z$ as inputs and $G ( y )$ with label as input works well against undefended models A and $\\mathbf { A } '$ , reducing the accuracies by more than $30 \\%$ , even though they are not as effective as using the image as input. $G ( z )$ is essentially a distribution of random adversarial noise that we add to the image without knowing the image or label. $G ( y )$ is a generator network with many parameters, but after training it is essentially a set of 10 class conditional $3 2 \\mathbf { x } 3 2 \\mathbf { x } 3$ filters. We have also performed similar experiments on attacking models trained with adversarial PGD and our adversarial networks using the above generative networks. The results are included in the Appendix due to space restrictions. ", + "bbox": [ + 174, + 734, + 825, + 847 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We also co-train these different generative networks with our discriminative network (D2) on CIFAR10. The results are shown in Table 6. It is slightly surprising that they all produce very similar performance in terms of white box and black box attacks, even as they have different attack powers against undefended networks. The generative networks do have very similar decoder portions, and this could be a reason why they all converge to saddle points of similar quality. ", + "bbox": [ + 174, + 854, + 823, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.6 DISCUSSIONS ", + "text_level": 1, + "bbox": [ + 174, + 103, + 310, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In the experiments above we see that adversarial PGD training usually works best on white box attacks, but there is a tradeoff between accuracies on clean data against accuracies on adversarial examples due to finite model capacity. We can try to use models with larger capacity, but there is always a tradeoff between the two, especially for larger perturbations $\\epsilon$ . There are some recent works that indicate training for standard accuracy and training for adversarial accuracy (e.g., with PGD) are two fairly different problems (Schmidt et al., 2018; Tsipras et al., 2018). Examples generated from PGD are particularly difficult to train against. This makes adversarial PGD training disadvantaged in many black box attack situations, when compared with models trained with weaker adversaries, e.g., ensemble adversarial training and our adversarial networks method. ", + "bbox": [ + 174, + 131, + 825, + 256 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We have also observed in the experiments that for black box attacks, the most effective adversarial examples are usually those constructed from models trained using the same method but with different random seed. This suggests hiding the knowledge of the training method from the attacker could be an important factor in defending against black box attacks. Defending against black box attacks is closely related to the question of the transferability of adversarial examples. Although there are some previous works exploring this question (Liu et al., 2017), the underlying factors affecting transferability are still not well understood. ", + "bbox": [ + 174, + 263, + 823, + 361 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "In our experimentation with the architectures of the discriminative and generative networks, the choice of architectures of $G _ { \\phi }$ does not seem to have a big effect on the quality of solution. The dynamics of training, such as the step size used and the number of iterations to run for each network during gradient descent/ascent, seem to have a bigger effect on the saddle point solution quality than the network architecture. It would be interesting to find classes of generative network architectures that lead to substantially different saddle points when trained against a particular discriminative network architecture. Also, recent works have shown that there are connected flat regions in the minima of neural network loss landscapes (Garipov et al., 2018; Draxler et al., 2018). We believe that the same might hold true for GANs, and it would be interesting to explore how the training dynamics can lead to different GAN solutions that might have different robustness properties. ", + "bbox": [ + 174, + 367, + 825, + 507 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Our approach can be extended with multiple discriminative networks playing against multiple generative networks. It can also be combined with ensemble adversarial training, where some adversarial examples come from static pre-trained models, while some other come from dynamically adjusting generative networks. ", + "bbox": [ + 176, + 513, + 825, + 569 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 593, + 328, + 609 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We have proposed an adversarial network approach to learning discriminative neural networks that are robust to adversarial noise, especially under black box attacks. For future work we are interested in extending the experiments to ImageNet, and exploring the choice of architectures of the discriminative and generative networks and their interaction. ", + "bbox": [ + 176, + 627, + 823, + 683 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 708, + 285, + 723 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: a system for largescale machine learning. In OSDI, volume 16, pp. 265–283, 2016. ", + "bbox": [ + 174, + 733, + 825, + 776 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Shumeet Baluja and Ian Fischer. Adversarial transformation networks: Learning to generate adversarial examples. In AAAI Conference on Artificial Intelligence, 2018. ", + "bbox": [ + 171, + 791, + 823, + 820 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jacob Buckman, Aurko Roy, Colin Raffel, and Ian Goodfellow. Thermometer encoding: One hot way to resist adversarial examples. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 835, + 825, + 878 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In 2017 IEEE Symposium on Security and Privacy (SP), pp. 39–57. IEEE, 2017. ", + "bbox": [ + 173, + 895, + 825, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Felix Draxler, Kambis Veschgini, Manfred Salmhofer, and Fred A Hamprecht. Essentially no barriers in neural network energy landscape. In International Conference on Machine Learning, 2018. ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Timur Garipov, Pavel Izmailov, Dmitrii Podoprikhin, Dmitry P Vetrov, and Andrew Gordon Wilson. Loss surfaces, mode connectivity, and fast ensembling of DNNs. Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 178, + 154, + 821, + 196 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair, Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural information processing systems, pp. 2672–2680, 2014. ", + "bbox": [ + 173, + 205, + 823, + 250 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial examples. In International Conference on Learning Representations, 2015. ", + "bbox": [ + 173, + 257, + 823, + 287 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Graves, Abdel-Rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recurrent neural networks. In Acoustics, speech and signal processing (ICASSP), 2013 IEEE International Conference on, pp. 6645–6649. IEEE, 2013. ", + "bbox": [ + 174, + 295, + 821, + 338 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recognition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp. 770–778, 2016. ", + "bbox": [ + 174, + 347, + 825, + 388 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrew Ilyas, Ajil Jalal, Eirini Asteri, Constantinos Daskalakis, and Alexandros G Dimakis. The robust manifold defense: Adversarial training using generative models. arXiv preprint arXiv:1712.09196, 2017. ", + "bbox": [ + 174, + 397, + 825, + 440 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Harini Kannan, Alexey Kurakin, and Ian Goodfellow. Adversarial logit pairing. arXiv preprint arXiv:1803.06373, 2018. ", + "bbox": [ + 171, + 449, + 823, + 479 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems, pp. 1097–1105, 2012. ", + "bbox": [ + 173, + 487, + 823, + 530 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 173, + 537, + 823, + 568 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hyeungill Lee, Sungyeob Han, and Jungwoo Lee. Generative adversarial trainer: Defense to adversarial perturbations with GAN. arXiv preprint arXiv:1705.03387, 2017. ", + "bbox": [ + 173, + 575, + 823, + 606 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yanpei Liu, Xinyun Chen, Chang Liu, and Dawn Song. Delving into transferable adversarial examples and black-box attacks. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 173, + 613, + 823, + 643 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yan Lou, Xavier Boix, Gemma Roig, Tomaso Poggio, and Qi Zhao. Foveation-based mechanisms alleviate adversarial examples. Technical report, Center for Brains, Minds and Machines (CBMM), arXiv, 2016. ", + "bbox": [ + 174, + 651, + 821, + 694 + ], + "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. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 703, + 823, + 746 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lars Mescheder, Sebastian Nowozin, and Andreas Geiger. The numerics of GANs. In Advances in Neural Information Processing Systems, pp. 1825–1835, 2017. ", + "bbox": [ + 169, + 753, + 823, + 784 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Lars Mescheder, Andreas Geiger, and Sebastian Nowozin. Which training methods for GANs do actually converge? In International Conference on Machine Learning, pp. 3478–3487, 2018. ", + "bbox": [ + 171, + 791, + 823, + 821 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Bellemare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level control through deep reinforcement learning. Nature, 518(7540):529, 2015. ", + "bbox": [ + 176, + 829, + 823, + 872 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal adversarial perturbations. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, pp. 1765–1773, 2017. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Taesik Na, Jong Hwan Ko, and Saibal Mukhopadhyay. Cascade adversarial machine learning regularized with a unified embedding. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Nicolas Papernot, Patrick McDaniel, Somesh Jha, Matt Fredrikson, Z Berkay Celik, and Ananthram Swami. The limitations of deep learning in adversarial settings. In Security and Privacy (EuroS&P), 2016 IEEE European Symposium on, pp. 372–387. IEEE, 2016a. ", + "bbox": [ + 176, + 155, + 823, + 198 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Nicolas Papernot, Patrick McDaniel, Xi Wu, Somesh Jha, and Ananthram Swami. Distillation as a defense to adversarial perturbations against deep neural networks. In 2016 IEEE Symposium on Security and Privacy $( S P )$ , pp. 582–597. IEEE, 2016b. ", + "bbox": [ + 176, + 205, + 823, + 250 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Nicolas Papernot, Patrick McDaniel, Ian Goodfellow, Somesh Jha, Z Berkay Celik, and Ananthram Swami. Practical black-box attacks against machine learning. In Proceedings of the 2017 ACM on Asia Conference on Computer and Communications Security, pp. 506–519. ACM, 2017. ", + "bbox": [ + 174, + 257, + 825, + 300 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Barak A Pearlmutter. Fast exact multiplication by the Hessian. Neural computation, 6(1):147–160, 1994. ", + "bbox": [ + 173, + 308, + 823, + 338 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pouya Samangouei, Maya Kabkab, and Rama Chellappa. Defense-GAN: Protecting classifiers against adversarial attacks using generative models. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 174, + 345, + 825, + 388 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ludwig Schmidt, Shibani Santurkar, Dimitris Tsipras, Kunal Talwar, and Aleksander Madry. Adversarially robust generalization requires more data. In Advances in Neural Information Processing Systems, 2018. ", + "bbox": [ + 173, + 397, + 825, + 440 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfellow, and Rob Fergus. Intriguing properties of neural networks. In International Conference on Learning Representations, 2014. ", + "bbox": [ + 173, + 449, + 825, + 492 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Ian Goodfellow, Dan Boneh, and Patrick Mc- \\` Daniel. Ensemble adversarial training: Attacks and defenses. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 176, + 500, + 823, + 542 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Dimitris Tsipras, Shibani Santurkar, Logan Engstrom, Alexander Turner, and Aleksander Madry. Robustness may be at odds with accuracy. arXiv preprint arXiv:1805.12152, 2018. ", + "bbox": [ + 169, + 551, + 821, + 582 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Chaowei Xiao, Bo Li, Jun-Yan Zhu, Warren He, Mingyan Liu, and Dawn Song. Generating adversarial examples with adversarial networks. In Proceedings of the Twenty-Seventh International Joint Conference on Artificial Intelligence, 2018. ", + "bbox": [ + 174, + 589, + 823, + 632 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Cihang Xie, Jianyu Wang, Zhishuai Zhang, Zhou Ren, and Alan Yuille. Mitigating adversarial effects through randomization. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 171, + 641, + 823, + 670 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sergey Zagoruyko and Nikos Komodakis. Wide residual networks. In British Machine Vision Confernece (BMVC), 2016. ", + "bbox": [ + 173, + 679, + 821, + 707 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 734, + 263, + 750 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "NETWORK ARCHITECTURES ", + "text_level": 1, + "bbox": [ + 176, + 765, + 370, + 779 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Our networks are mostly based on ResNet. Figure 2 shows the residual block used in our networks. We denote a residual block with $k$ copies of $d \\times d$ filters, with a stride of $s$ in the first convolution as residual-block $( d , s , k )$ . A stride of 2 means the inputs are downsampled by a factor of 2. The notation $\\mathrm { c o n v } 2 \\mathrm { d } ( d , \\ : s , \\ : k )$ refers to a convolutional layer with $k$ copies of $d \\times d$ filters, convolved with stride $s$ , and similarly for the deconvolution deconv $2 \\mathrm { d } ( d , s , k )$ . The notations maxpool $( s )$ and avgpool(s) denote max-pooling and average pooling operations with strides $s$ . FC denotes a fully connected layer, while BN denotes a batch normalization layer. ", + "bbox": [ + 174, + 791, + 825, + 888 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Figure 3 shows the discriminative networks used in this paper. D1 is a simple convolutional neural network used in the MNIST experiments. D2 is the standard version of ResNet. Figure 4 shows the generative networks used in this paper. G0 and G1 are encoder-decoder networks, while G2 and G3 are decoder networks using a random vector and a one-hot encoding of the label respectively. The generative networks are parameterized by a factor $k$ determining the number of filters used (width of network). As default we use $k = 6 4$ , and $k = 1 6$ for networks using labels as inputs. ", + "bbox": [ + 174, + 895, + 823, + 924 + ], + "page_idx": 11 + }, + { + "type": "image", + "img_path": "images/1ea0ce3b43da3757a7918ce2e4590b39b9ea745d64239f2b06ae107f43159b0c.jpg", + "image_caption": [ + "Figure 2: Residual block used in the network definitions " + ], + "image_footnote": [], + "bbox": [ + 406, + 111, + 584, + 305 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/d822e2068943f26380b553ff146d93b82e57b4954ce15f7c28533f32b39186a3.jpg", + "image_caption": [ + "Figure 3: Discriminative networks used in this paper " + ], + "image_footnote": [], + "bbox": [ + 346, + 363, + 651, + 484 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 540, + 825, + 595 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "EXTRA RESULTS ON CIFAR100 AND WIDE RESNET ON CIFAR10 ", + "text_level": 1, + "bbox": [ + 176, + 616, + 638, + 631 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The discriminative and generative networks in our CIFAR100 experiment have the same network architecture as the CIFAR10 experiment, except that the output layer dimension of the D network is 100 other than 10 in CIFAR10. We use learning rate of 0.1 for the first $1 0 0 \\mathrm { k }$ iterations, and 0.01 for another $1 0 0 \\mathrm { k }$ iterations. The batch size is 64 and weight decay is 1E-5. ", + "bbox": [ + 174, + 642, + 825, + 699 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Table 7(left) presents the white box attack accuracies of different models with $\\epsilon = 8 / 2 5 6$ . From the table we can see that the PGD adversarial training has the best defensive performance under PGD attack, but still suffers performance degradation on clean image and FGS attack. Our adversarial model gives similar classification performance as the standard model on clean image, and improves classification accuracies on FGS and PGD attack. Table 7(right) shows the black box attack accuracies of different models. Our adversarial network approach gives the best classification accuracy in most cases, except the FGS and PGD attack from model $\\mathbf { C } '$ . ", + "bbox": [ + 173, + 705, + 825, + 804 + ], + "page_idx": 12 + }, + { + "type": "table", + "img_path": "images/053c0732ce3a7ad728db830af47b0f3636b83734c7f2abc1f1cc265c8bb8deb7.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
training method attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A') FGS(B') PGD(B') FGS(C') PGD(C')
standard(A)70.11%31.27%4.61%44.24%32.55%53.65%50.51%47.82%34.99%
adversarial PGD(B)55.53%32.13%28.48%53.91%54.62%41.80%40.61%54.55% 53.57%
adversarial network(C)70.99 %41.86%18.25%58.11%56.94% 53.15% 51.87%53.35%46.61%
", + "bbox": [ + 176, + 828, + 843, + 895 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Table 7: Classification accuracies under white box and black box attacks on CIFAR100 $\\epsilon = 8 / 2 5 6 )$ ) ", + "bbox": [ + 174, + 905, + 825, + 920 + ], + "page_idx": 12 + }, + { + "type": "image", + "img_path": "images/db4f9913b00a33a68bd33683287f87e68d164083684db42626b5da8f905e2640.jpg", + "image_caption": [ + "Figure 4: Generative networks used in this paper " + ], + "image_footnote": [], + "bbox": [ + 272, + 112, + 723, + 376 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/a8054258e857bbc4a769fb88626ac8f26cf045e2848672154e657286e5e820b4.jpg", + "table_caption": [ + "Table 8: Classification accuracies under white box and black box attacks on CIFAR10 with Wide ResNet $( \\epsilon = 8 / 2 5 6 )$ ) " + ], + "table_footnote": [], + "table_body": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)])PGD(A') FGS(B')PGD(B') FGS(C') PGD(C")
standard(A)94.69%62.36%1.08%69.89% 9.14%85.05%82.82%76.27%45.16%
adversarial PGD(B)83.50%67.92%60.15%83.21% 82.96%72.66%68.82%82.01%78.59%
adversarial network(C)91.32%73.77%49.55%83.29 % 81.65%79.32%76.00%79.32%62.71%
", + "bbox": [ + 176, + 417, + 843, + 484 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Table 8 gives the results on CIFAR10 using a wider version of Resnet (Model D2), by multiplying the number of filters in each convolutional layer by a factor of 10. Some of the previous works in the literature use models of larger capacity for training adversarially robust models, so we perform experiments on these large capacity models here. First the accuracies increase across the board with larger capacity models. The accuracy gap on clean data between adversarial PGD and standard training still exists, but now there is also a small accuracy gap between our adversarial network approach and standard training. For the rest of the white box and black accuracies the story is similar, the models are weakest against attacks trained with the same method but with a different random seed. Our adversarial network approach has very good performance across different attacks, even as it is not always the winner for each individual attack. Table 9 gives the results of Wide ResNet on CIFAR100, and the results are qualitatively similar. ", + "bbox": [ + 173, + 550, + 825, + 704 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "EXTRA RESULTS ON ATTACKING USING GENERATIVE NETWORKS AND THEIR TRANSFERABILITY ", + "text_level": 1, + "bbox": [ + 174, + 723, + 704, + 750 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Following Section 4.5, we run extra experiments on using different generative networks to attack networks trained with adversarial PGD and our adversarial networks approach, in addition to the ", + "bbox": [ + 176, + 762, + 828, + 791 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/aaccba286392006d84868795f9cfa9d7b90a5ab184bb52ad77771b91f15dbde0.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A) PGD(A)]FGS(B') PGD(B’) FGS(C')PGD(C')
standard(A)79.22%44.86%6.38%48.52% 13.42%65.18%63.56%53.17%28.04%
adversarial PGD(B)66.68%45.54%38.36%64.81% 64.84%53.41%49.77%64.35%62.44%
adversarial network(C)80.21%57.21%30.27%65.37% 58.27%67.38%64.28%61.11%40.27%
", + "bbox": [ + 176, + 814, + 843, + 881 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Table 9: Classification accuracies under white box and black box attacks on CIFAR100 with Wide Resnet $\\epsilon = 8 / 2 5 6 )$ ", + "bbox": [ + 171, + 891, + 826, + 920 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/70fb95a79e7677c2a0ee25b0aca6fa54c8d320ff15093fc1baebcda9874564bf.jpg", + "table_caption": [ + "Table 10: Attack performance of various generator networks against a network trained with adversarial PGD in terms of test accuracies. First column is the accuracy on the discriminative model $D _ { \\theta }$ that the generative attacker $G _ { \\phi }$ is trained on (similar to white box attacks). The next three columns are the attack accuracies on other models by the learned $G _ { \\phi }$ (similar to black box attacks) " + ], + "table_footnote": [], + "table_body": "
GeneratorOriginal (B)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy75.30%90.54%75.71%89.21%
autoencoder(8 filters)72.74%88.38%73.07%87.89%
autoencoder(64 filters)71.26%87.64%71.98%87.02%
random Gaussian74.13%88.71%74.70%88.45%
label70.15%84.95%70.10%84.96%
", + "bbox": [ + 178, + 99, + 820, + 179 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/443135b84e367c33cc683f0b603609efc7e4b66f7c2dd55729d0c11313194176.jpg", + "table_caption": [ + "Table 11: Attack performance of various generator networks against our adversarial network in terms of test accuracies. First column is the accuracy on the discriminative model $D _ { \\theta }$ that the generative attacker $G _ { \\phi }$ is trained on (similar to white box attacks). The next three columns are the attack accuracies on other models by the learned $G _ { \\phi }$ (similar to black box attacks) " + ], + "table_footnote": [], + "table_body": "
GeneratorOriginal (C)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.08%90.54%75.71%89.21%
autoencoder(8 filters)74.66%66.95%74.42%80.55%
autoencoder(64 filters)53.68%46.37%73.08%72.18%
random Gaussian85.91%71.00%75.00%86.55%
label81.46%77.46%73.09%83.98%
", + "bbox": [ + 178, + 260, + 820, + 339 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "undefended network in Section 4.5. Table 10 shows the results of various generative networks in attacking a network trained with adversarial PGD. The adversarial PGD network is very robust, and the generative networks can at most reduce the accuracy by $5 \\%$ . Interestingly, the strongest attack come from the more restrictive generative network using only the label as input. It is also the most successful in transferring to other networks. However, since the adversarial PGD network is so robust, none of the generative networks can learn much from it in generating adversarial examples. ", + "bbox": [ + 174, + 431, + 825, + 516 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Table 11 shows the results of various generative networks in attacking our adversarial network. Our adversarial network is not as robust as adversarial PGD under white box attack, and the autoencoder(64 filters) network can reduce its accuracy from over $90 \\%$ to $53 \\%$ . Nonetheless, it is still much more robust than the undefended network. Interestingly, in addition to transferring well to the adversarial network trained with a different random seed $\\mathbf { \\pi } ( \\mathbf { C } )$ , the autoencoder(64 filters) network also transfers well to the undefended network, reducing its accuracy to $46 \\%$ . ", + "bbox": [ + 174, + 522, + 825, + 607 + ], + "page_idx": 14 + } +] \ No newline at end of file diff --git a/parse/train/S1lIMn05F7/S1lIMn05F7_middle.json b/parse/train/S1lIMn05F7/S1lIMn05F7_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..70f9e3d71dd4f574de2e22628a0d2703e68a7f5b --- /dev/null +++ b/parse/train/S1lIMn05F7/S1lIMn05F7_middle.json @@ -0,0 +1,44732 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 484, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 487, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 487, + 97 + ], + "score": 1.0, + "content": "A DIRECT APPROACH TO ROBUST DEEP LEARNING", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 361, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 361, + 118 + ], + "score": 1.0, + "content": "USING ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 135, + 322, + 190 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 174, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 174, + 149 + ], + "score": 1.0, + "content": "Huaxia Wang", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 145, + 324, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 324, + 159 + ], + "score": 1.0, + "content": "Department of Electrical and Computer Engineering", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 155, + 241, + 171 + ], + "spans": [ + { + "bbox": [ + 111, + 155, + 241, + 171 + ], + "score": 1.0, + "content": "Stevens Institute of Technology", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 112, + 168, + 220, + 179 + ], + "spans": [ + { + "bbox": [ + 112, + 168, + 220, + 179 + ], + "score": 1.0, + "content": "Hoboken, NJ 07030, USA", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 112, + 180, + 228, + 191 + ], + "spans": [ + { + "bbox": [ + 112, + 180, + 228, + 191 + ], + "score": 1.0, + "content": "hwang38@stevens.edu", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 333, + 136, + 521, + 190 + ], + "lines": [ + { + "bbox": [ + 333, + 134, + 397, + 148 + ], + "spans": [ + { + "bbox": [ + 333, + 134, + 397, + 148 + ], + "score": 1.0, + "content": "Chun-Nam Yu", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 332, + 145, + 401, + 158 + ], + "spans": [ + { + "bbox": [ + 332, + 145, + 401, + 158 + ], + "score": 1.0, + "content": "Nokia Bell Labs", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 332, + 155, + 426, + 169 + ], + "spans": [ + { + "bbox": [ + 332, + 155, + 426, + 169 + ], + "score": 1.0, + "content": "600 Mountain Avenue", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 332, + 168, + 452, + 179 + ], + "spans": [ + { + "bbox": [ + 332, + 168, + 452, + 179 + ], + "score": 1.0, + "content": "Murray Hill, NJ 07974, USA", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 333, + 179, + 522, + 191 + ], + "spans": [ + { + "bbox": [ + 333, + 179, + 522, + 191 + ], + "score": 1.0, + "content": "chun-nam.yu@nokia-bell-labs.com", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 278, + 219, + 333, + 231 + ], + "lines": [ + { + "bbox": [ + 276, + 219, + 335, + 232 + ], + "spans": [ + { + "bbox": [ + 276, + 219, + 335, + 232 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 388 + ], + "lines": [ + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "Deep neural networks have been shown to perform well in many classical machine", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "learning problems, especially in image classification tasks. However, researchers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 266, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 280 + ], + "score": 1.0, + "content": "have found that neural networks can be easily fooled, and they are surprisingly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "sensitive to small perturbations imperceptible to humans. Carefully crafted input", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 288, + 469, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 301 + ], + "score": 1.0, + "content": "images (adversarial examples) can force a well-trained neural network to provide", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "arbitrary outputs. Including adversarial examples during training is a popular de-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "fense mechanism against adversarial attacks. In this paper we propose a new de-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "fensive mechanism under the generative adversarial network (GAN) framework.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "score": 1.0, + "content": "We model the adversarial noise using a generative network, trained jointly with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "a classification discriminative network as a minimax game. We show empirically", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "score": 1.0, + "content": "that our adversarial network approach works well against black box attacks, with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 366, + 469, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 469, + 377 + ], + "score": 1.0, + "content": "performance on par with state-of-art methods such as ensemble adversarial train-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 377, + 383, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 383, + 388 + ], + "score": 1.0, + "content": "ing and adversarial training with projected gradient descent.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 409, + 206, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "Deep neural networks have been successfully applied to a variety of tasks, including image classifi-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 444, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 460 + ], + "score": 1.0, + "content": "cation (Krizhevsky et al., 2012), speech recognition (Graves et al., 2013), and human-level playing", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "score": 1.0, + "content": "of video games through deep reinforcement learning (Mnih et al., 2015). However, Szegedy et al.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "(2014) showed that convolutional neural networks (CNN) are extremely sensitive to carefully crafted", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "score": 1.0, + "content": "small perturbations added to the input images. Since then, many adversarial examples generating", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "score": 1.0, + "content": "methods have been proposed, including Jacobian based saliency map attack (JSMA) (Papernot et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "2016a), projected gradient descent (PGD) attack (Madry et al., 2018), and C&W’s attack (Carlini", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "& Wagner, 2017). In general, there are two types of attack models: white box attack and black", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "score": 1.0, + "content": "box attack. Attackers in white box attack model have complete knowledge of the target network,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 534, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 545 + ], + "score": 1.0, + "content": "including network’s architecture and parameters. Whereas in black box attacks, attackers only have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 544, + 388, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 388, + 557 + ], + "score": 1.0, + "content": "partial or no information on the target network (Papernot et al., 2017).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 504, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Various defensive methods have been proposed to mitigate the effect of the adversarial examples.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Adversarial training which augments the training set with adversarial examples shows good defen-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "sive performance in terms of white box attacks (Kurakin et al., 2017; Madry et al., 2018). Apart from", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "score": 1.0, + "content": "adversarial training, there are many other defensive approaches including defensive distillation (Pa-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "pernot et al., 2016b), using randomization at inference time (Xie et al., 2018), and thermometer", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 616, + 258, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 258, + 629 + ], + "score": 1.0, + "content": "encoding (Buckman et al., 2018), etc.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 633, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "In this paper, we propose a defensive method based on generative adversarial network (GAN) (Good-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "fellow et al., 2014). Instead of using the generative network to generate samples that can fool the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "discriminative network as real data, we train the generative network to generate (additive) adversar-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "ial noise that can fool the discriminative network into misclassifying the input image. This allows", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "flexible modeling of the adversarial noise by the generative network, which can take in the original", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "image or a random vector or even the class label to create different types of noise. The discriminative", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "networks used in our approach are just the usual neural networks designed for their specific classi-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "fication tasks. The purpose of the discriminative network is to classify both clean and adversarial", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "example with correct label, while the generative network aims to generate powerful perturbations", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48 + } + ], + "page_idx": 0, + "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": [ + 303, + 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, + 484, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 78, + 487, + 97 + ], + "spans": [ + { + "bbox": [ + 106, + 78, + 487, + 97 + ], + "score": 1.0, + "content": "A DIRECT APPROACH TO ROBUST DEEP LEARNING", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 97, + 361, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 97, + 361, + 118 + ], + "score": 1.0, + "content": "USING ADVERSARIAL NETWORKS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "list", + "bbox": [ + 113, + 135, + 322, + 190 + ], + "lines": [ + { + "bbox": [ + 111, + 133, + 174, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 133, + 174, + 149 + ], + "score": 1.0, + "content": "Huaxia Wang", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 145, + 324, + 159 + ], + "spans": [ + { + "bbox": [ + 111, + 145, + 324, + 159 + ], + "score": 1.0, + "content": "Department of Electrical and Computer Engineering", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 155, + 241, + 171 + ], + "spans": [ + { + "bbox": [ + 111, + 155, + 241, + 171 + ], + "score": 1.0, + "content": "Stevens Institute of Technology", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 168, + 220, + 179 + ], + "spans": [ + { + "bbox": [ + 112, + 168, + 220, + 179 + ], + "score": 1.0, + "content": "Hoboken, NJ 07030, USA", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 180, + 228, + 191 + ], + "spans": [ + { + "bbox": [ + 112, + 180, + 228, + 191 + ], + "score": 1.0, + "content": "hwang38@stevens.edu", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + }, + { + "bbox": [ + 333, + 134, + 397, + 148 + ], + "spans": [ + { + "bbox": [ + 333, + 134, + 397, + 148 + ], + "score": 1.0, + "content": "Chun-Nam Yu", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 332, + 145, + 401, + 158 + ], + "spans": [ + { + "bbox": [ + 332, + 145, + 401, + 158 + ], + "score": 1.0, + "content": "Nokia Bell Labs", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 332, + 155, + 426, + 169 + ], + "spans": [ + { + "bbox": [ + 332, + 155, + 426, + 169 + ], + "score": 1.0, + "content": "600 Mountain Avenue", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 332, + 168, + 452, + 179 + ], + "spans": [ + { + "bbox": [ + 332, + 168, + 452, + 179 + ], + "score": 1.0, + "content": "Murray Hill, NJ 07974, USA", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 333, + 179, + 522, + 191 + ], + "spans": [ + { + "bbox": [ + 333, + 179, + 522, + 191 + ], + "score": 1.0, + "content": "chun-nam.yu@nokia-bell-labs.com", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + } + ], + "index": 6, + "bbox_fs": [ + 111, + 133, + 324, + 191 + ] + }, + { + "type": "list", + "bbox": [ + 333, + 136, + 521, + 190 + ], + "lines": [], + "index": 7, + "bbox_fs": [ + 332, + 134, + 522, + 191 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 278, + 219, + 333, + 231 + ], + "lines": [ + { + "bbox": [ + 276, + 219, + 335, + 232 + ], + "spans": [ + { + "bbox": [ + 276, + 219, + 335, + 232 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 143, + 245, + 468, + 388 + ], + "lines": [ + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "spans": [ + { + "bbox": [ + 142, + 245, + 469, + 257 + ], + "score": 1.0, + "content": "Deep neural networks have been shown to perform well in many classical machine", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "spans": [ + { + "bbox": [ + 141, + 256, + 470, + 268 + ], + "score": 1.0, + "content": "learning problems, especially in image classification tasks. However, researchers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 266, + 469, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 266, + 469, + 280 + ], + "score": 1.0, + "content": "have found that neural networks can be easily fooled, and they are surprisingly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "sensitive to small perturbations imperceptible to humans. Carefully crafted input", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 288, + 469, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 288, + 469, + 301 + ], + "score": 1.0, + "content": "images (adversarial examples) can force a well-trained neural network to provide", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 470, + 312 + ], + "score": 1.0, + "content": "arbitrary outputs. Including adversarial examples during training is a popular de-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "spans": [ + { + "bbox": [ + 141, + 311, + 470, + 323 + ], + "score": 1.0, + "content": "fense mechanism against adversarial attacks. In this paper we propose a new de-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 321, + 469, + 334 + ], + "score": 1.0, + "content": "fensive mechanism under the generative adversarial network (GAN) framework.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 332, + 470, + 345 + ], + "score": 1.0, + "content": "We model the adversarial noise using a generative network, trained jointly with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 343, + 469, + 356 + ], + "score": 1.0, + "content": "a classification discriminative network as a minimax game. We show empirically", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "spans": [ + { + "bbox": [ + 142, + 355, + 469, + 366 + ], + "score": 1.0, + "content": "that our adversarial network approach works well against black box attacks, with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 366, + 469, + 377 + ], + "spans": [ + { + "bbox": [ + 141, + 366, + 469, + 377 + ], + "score": 1.0, + "content": "performance on par with state-of-art methods such as ensemble adversarial train-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 377, + 383, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 377, + 383, + 388 + ], + "score": 1.0, + "content": "ing and adversarial training with projected gradient descent.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 19, + "bbox_fs": [ + 141, + 245, + 470, + 388 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 409, + 206, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 208, + 425 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 434, + 505, + 555 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 447 + ], + "score": 1.0, + "content": "Deep neural networks have been successfully applied to a variety of tasks, including image classifi-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 444, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 505, + 460 + ], + "score": 1.0, + "content": "cation (Krizhevsky et al., 2012), speech recognition (Graves et al., 2013), and human-level playing", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 505, + 470 + ], + "score": 1.0, + "content": "of video games through deep reinforcement learning (Mnih et al., 2015). However, Szegedy et al.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "(2014) showed that convolutional neural networks (CNN) are extremely sensitive to carefully crafted", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 492 + ], + "score": 1.0, + "content": "small perturbations added to the input images. Since then, many adversarial examples generating", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "score": 1.0, + "content": "methods have been proposed, including Jacobian based saliency map attack (JSMA) (Papernot et al.,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 506, + 514 + ], + "score": 1.0, + "content": "2016a), projected gradient descent (PGD) attack (Madry et al., 2018), and C&W’s attack (Carlini", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "& Wagner, 2017). In general, there are two types of attack models: white box attack and black", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 504, + 534 + ], + "score": 1.0, + "content": "box attack. Attackers in white box attack model have complete knowledge of the target network,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 534, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 545 + ], + "score": 1.0, + "content": "including network’s architecture and parameters. Whereas in black box attacks, attackers only have", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 544, + 388, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 388, + 557 + ], + "score": 1.0, + "content": "partial or no information on the target network (Papernot et al., 2017).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 434, + 506, + 557 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 561, + 504, + 627 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "Various defensive methods have been proposed to mitigate the effect of the adversarial examples.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 505, + 585 + ], + "score": 1.0, + "content": "Adversarial training which augments the training set with adversarial examples shows good defen-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 506, + 595 + ], + "score": 1.0, + "content": "sive performance in terms of white box attacks (Kurakin et al., 2017; Madry et al., 2018). Apart from", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 505, + 606 + ], + "score": 1.0, + "content": "adversarial training, there are many other defensive approaches including defensive distillation (Pa-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "pernot et al., 2016b), using randomization at inference time (Xie et al., 2018), and thermometer", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 616, + 258, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 258, + 629 + ], + "score": 1.0, + "content": "encoding (Buckman et al., 2018), etc.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 561, + 506, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 633, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 505, + 646 + ], + "score": 1.0, + "content": "In this paper, we propose a defensive method based on generative adversarial network (GAN) (Good-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 505, + 657 + ], + "score": 1.0, + "content": "fellow et al., 2014). Instead of using the generative network to generate samples that can fool the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "discriminative network as real data, we train the generative network to generate (additive) adversar-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 505, + 678 + ], + "score": 1.0, + "content": "ial noise that can fool the discriminative network into misclassifying the input image. This allows", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "flexible modeling of the adversarial noise by the generative network, which can take in the original", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "image or a random vector or even the class label to create different types of noise. The discriminative", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "networks used in our approach are just the usual neural networks designed for their specific classi-", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "fication tasks. The purpose of the discriminative network is to classify both clean and adversarial", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "example with correct label, while the generative network aims to generate powerful perturbations", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "to fool the discriminative network. This approach is simple and it directly uses the minimax game", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 351, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 351, + 106 + ], + "score": 1.0, + "content": "concept employed by GAN. Our main contributions include:", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 632, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "to fool the discriminative network. This approach is simple and it directly uses the minimax game", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 351, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 351, + 106 + ], + "score": 1.0, + "content": "concept employed by GAN. Our main contributions include:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 132, + 113, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 132, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 132, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "• We show that our adversarial network approach can produce neural networks that are ro-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 142, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 142, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "bust towards black box attacks. In the experiments they show similar, and in some cases", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 141, + 136, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 141, + 136, + 505, + 147 + ], + "score": 1.0, + "content": "better, performance when compared to state-of-art defense methods such as ensemble ad-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 142, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 142, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "versarial training (Tramer et al., 2018) and adversarial training with projected gradient `", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 156, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 141, + 156, + 506, + 171 + ], + "score": 1.0, + "content": "descent (Madry et al., 2018). To our best knowledge we are also the first to study the joint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 168, + 418, + 180 + ], + "spans": [ + { + "bbox": [ + 141, + 168, + 418, + 180 + ], + "score": 1.0, + "content": "training of a generative attack network and a discriminative network.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 136, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 136, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "• We study the effectiveness of different generative networks in attacking a trained discrim-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 141, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "inative network, and show that a variety of generative networks, including those taking in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 140, + 203, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 140, + 203, + 506, + 218 + ], + "score": 1.0, + "content": "random noise or labels as inputs, can be effective in attacks. We also show that training", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 216, + 471, + 228 + ], + "spans": [ + { + "bbox": [ + 142, + 216, + 471, + 228 + ], + "score": 1.0, + "content": "against these generative networks can provide robustness against different attacks.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 109, + 235, + 505, + 269 + ], + "lines": [ + { + "bbox": [ + 107, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 107, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "The rest of the paper is organized as follows. In Section 2, related works including multiple attack", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "and defense methods are discussed. Section 3 presents our defensive method in details. Experimen-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 257, + 415, + 270 + ], + "spans": [ + { + "bbox": [ + 107, + 257, + 415, + 270 + ], + "score": 1.0, + "content": "tal results are shown in Section 4, with conclusions of the paper in Section 5.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "title", + "bbox": [ + 108, + 284, + 217, + 297 + ], + "lines": [ + { + "bbox": [ + 104, + 282, + 218, + 300 + ], + "spans": [ + { + "bbox": [ + 104, + 282, + 218, + 300 + ], + "score": 1.0, + "content": "2 RELATED WORKS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 105, + 308, + 473, + 320 + ], + "lines": [ + { + "bbox": [ + 104, + 307, + 475, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 307, + 475, + 323 + ], + "score": 1.0, + "content": "In this section, we briefly review the attack and defense methods in neural network training.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 107, + 333, + 201, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 203, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 203, + 346 + ], + "score": 1.0, + "content": "2.1 ATTACK MODEL", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 504, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 236, + 368 + ], + "score": 1.0, + "content": "Given a neural network model", + "type": "text" + }, + { + "bbox": [ + 236, + 355, + 250, + 365 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 352, + 326, + 368 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 326, + 355, + 333, + 364 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 352, + 506, + 368 + ], + "score": 1.0, + "content": "trained for classification, an input image", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 107, + 365, + 137, + 375 + ], + "score": 0.91, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 364, + 189, + 376 + ], + "score": 1.0, + "content": "and its label", + "type": "text" + }, + { + "bbox": [ + 189, + 367, + 196, + 377 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 364, + 392, + 376 + ], + "score": 1.0, + "content": ", we want to find a small adversarial perturbation", + "type": "text" + }, + { + "bbox": [ + 392, + 366, + 407, + 375 + ], + "score": 0.86, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 364, + 446, + 376 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 447, + 366, + 479, + 376 + ], + "score": 0.91, + "content": "x + \\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "is not", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 375, + 384, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 156, + 388 + ], + "score": 1.0, + "content": "classified as", + "type": "text" + }, + { + "bbox": [ + 157, + 378, + 163, + 388 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 375, + 285, + 388 + ], + "score": 1.0, + "content": ". The minimum norm solution", + "type": "text" + }, + { + "bbox": [ + 285, + 376, + 300, + 386 + ], + "score": 0.88, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 375, + 384, + 388 + ], + "score": 1.0, + "content": "can be described as:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 390, + 404, + 411 + ], + "lines": [ + { + "bbox": [ + 207, + 390, + 404, + 411 + ], + "spans": [ + { + "bbox": [ + 207, + 390, + 404, + 411 + ], + "score": 0.89, + "content": "\\operatorname* { a r g m i n } _ { \\Delta x } \\| \\Delta x \\| \\quad \\mathrm { s . t . } \\ \\arg \\operatorname* { m a x } D _ { \\theta } ( x + \\Delta x ) \\neq y ,", + "type": "interline_equation", + "image_path": "a1a80e5922102dd52a7867083d1873c89a451de4057c1e2aa335bccee5401440.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 207, + 390, + 404, + 411 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 507, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 504, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 170, + 426 + ], + "score": 1.0, + "content": "where arg max", + "type": "text" + }, + { + "bbox": [ + 171, + 414, + 198, + 426 + ], + "score": 0.93, + "content": "D _ { \\theta } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 413, + 340, + 426 + ], + "score": 1.0, + "content": "gives the predicted class for input", + "type": "text" + }, + { + "bbox": [ + 341, + 416, + 347, + 424 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 413, + 504, + 426 + ], + "score": 1.0, + "content": ". Szegedy et al. (2014) introduced the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 425, + 497, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 497, + 438 + ], + "score": 1.0, + "content": "first method to generate adversarial examples by considering the following optimization problem,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 440, + 425, + 460 + ], + "lines": [ + { + "bbox": [ + 186, + 440, + 425, + 460 + ], + "spans": [ + { + "bbox": [ + 186, + 440, + 425, + 460 + ], + "score": 0.89, + "content": "\\Delta x = \\underset { z } { \\arg \\operatorname* { m i n } } \\lambda \\| z \\| + L ( D _ { \\theta } ( x + z ) , \\hat { y } ) , \\quad x + z \\in [ 0 , 1 ] ^ { d }", + "type": "interline_equation", + "image_path": "f734765ed1d831704f689a79757bef422a34a4403c30246d69f994d8171459a4.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 186, + 440, + 425, + 460 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 463, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 133, + 476 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 464, + 141, + 473 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 463, + 377, + 476 + ], + "score": 1.0, + "content": "is a distance function measuring the closeness of the output", + "type": "text" + }, + { + "bbox": [ + 377, + 463, + 418, + 475 + ], + "score": 0.92, + "content": "D _ { \\theta } ( x + z )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 463, + 487, + 476 + ], + "score": 1.0, + "content": "with some target", + "type": "text" + }, + { + "bbox": [ + 487, + 465, + 506, + 475 + ], + "score": 0.88, + "content": "\\hat { y } \\neq", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 113, + 486 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 474, + 506, + 487 + ], + "score": 1.0, + "content": ". The objective is minimized using box-constrained L-BFGS. Goodfellow et al. (2015) introduced", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "the fast gradient sign method (FGS) to generate adversarial examples in one step, which can be", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 168, + 510 + ], + "score": 1.0, + "content": "represented as", + "type": "text" + }, + { + "bbox": [ + 168, + 496, + 298, + 508 + ], + "score": 0.89, + "content": "\\Delta x { \\mathbf { \\bar { \\phi } } } = \\epsilon \\cdot \\mathrm { s i g n } \\left( \\nabla _ { x } l ( D _ { \\theta } ( { \\bar { { x } } } ) , y ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 495, + 332, + 510 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 333, + 497, + 337, + 506 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "is the cross-entropy loss used in neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "networks training. Madry et al. (2018) argues with strong evidence that projected gradient descent", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "(PGD), which can be viewed as an iterative version of the fast gradient sign method, is the strongest", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "attack using only first-order gradient information. Papernot et al. (2017) presented a Jacobian-based", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "saliency-map attack (J-BSMA) model to generate adversarial examples by changing a small number", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "of pixels. Moosavi-Dezfooli et al. (2017) showed that there exist a single/universal small image", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "perturbation that fools all natural images. Papernot et al. (2017) introduced the first demonstration", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "of black-box attacks against neural network classifiers. The adversary has no information about", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "the architecture and parameters of the neural networks, and does not have access to large training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 595, + 140, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 140, + 607 + ], + "score": 1.0, + "content": "dataset.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 107, + 619, + 206, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 208, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 208, + 632 + ], + "score": 1.0, + "content": "2.2 DEFENSE MODEL", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "In order to mitigate the effect of the generated adversarial examples, various defensive methods have", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "been proposed. Papernot et al. (2016b) introduced distillation as a defense to adversarial examples.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 662, + 475, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 475, + 674 + ], + "score": 1.0, + "content": "Lou et al. (2016) introduced a foveation-based mechanism to alleviate adversarial examples.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "The idea of adversarial training was first proposed by Szegedy et al. (2014). The effect of adversarial", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "examples can be reduced through explicitly training the model with both original and perturbed", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 700, + 411, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 411, + 713 + ], + "score": 1.0, + "content": "adversarial images. Adversarial training can be viewed as a minimax game,", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 715, + 393, + 734 + ], + "lines": [ + { + "bbox": [ + 218, + 715, + 393, + 734 + ], + "spans": [ + { + "bbox": [ + 218, + 715, + 393, + 734 + ], + "score": 0.94, + "content": "\\theta ^ { * } = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\operatorname { E } _ { x , y } \\underset { \\Delta x } { \\operatorname* { m a x } } l ( D _ { \\theta } ( x + \\Delta x ) , y ) .", + "type": "interline_equation", + "image_path": "4f91c1aab9aebc24acc731159bb955118fdeb6cb0e10d6cbb22848ac0ce55a24.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 218, + 715, + 393, + 734 + ], + "spans": [], + "index": 45 + } + ] + } + ], + "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, + 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": [ + 105, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 132, + 113, + 505, + 227 + ], + "lines": [ + { + "bbox": [ + 132, + 114, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 132, + 114, + 505, + 126 + ], + "score": 1.0, + "content": "• We show that our adversarial network approach can produce neural networks that are ro-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 142, + 125, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 142, + 125, + 505, + 137 + ], + "score": 1.0, + "content": "bust towards black box attacks. In the experiments they show similar, and in some cases", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 141, + 136, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 141, + 136, + 505, + 147 + ], + "score": 1.0, + "content": "better, performance when compared to state-of-art defense methods such as ensemble ad-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 142, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 142, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "versarial training (Tramer et al., 2018) and adversarial training with projected gradient `", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 156, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 141, + 156, + 506, + 171 + ], + "score": 1.0, + "content": "descent (Madry et al., 2018). To our best knowledge we are also the first to study the joint", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 168, + 418, + 180 + ], + "spans": [ + { + "bbox": [ + 141, + 168, + 418, + 180 + ], + "score": 1.0, + "content": "training of a generative attack network and a discriminative network.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 136, + 182, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 136, + 182, + 505, + 196 + ], + "score": 1.0, + "content": "• We study the effectiveness of different generative networks in attacking a trained discrim-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 141, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "inative network, and show that a variety of generative networks, including those taking in", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 140, + 203, + 506, + 218 + ], + "spans": [ + { + "bbox": [ + 140, + 203, + 506, + 218 + ], + "score": 1.0, + "content": "random noise or labels as inputs, can be effective in attacks. We also show that training", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 142, + 216, + 471, + 228 + ], + "spans": [ + { + "bbox": [ + 142, + 216, + 471, + 228 + ], + "score": 1.0, + "content": "against these generative networks can provide robustness against different attacks.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 6.5, + "bbox_fs": [ + 132, + 114, + 506, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 235, + 505, + 269 + ], + "lines": [ + { + "bbox": [ + 107, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 107, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "The rest of the paper is organized as follows. In Section 2, related works including multiple attack", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "and defense methods are discussed. Section 3 presents our defensive method in details. Experimen-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 257, + 415, + 270 + ], + "spans": [ + { + "bbox": [ + 107, + 257, + 415, + 270 + ], + "score": 1.0, + "content": "tal results are shown in Section 4, with conclusions of the paper in Section 5.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 235, + 505, + 270 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 284, + 217, + 297 + ], + "lines": [ + { + "bbox": [ + 104, + 282, + 218, + 300 + ], + "spans": [ + { + "bbox": [ + 104, + 282, + 218, + 300 + ], + "score": 1.0, + "content": "2 RELATED WORKS", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 105, + 308, + 473, + 320 + ], + "lines": [ + { + "bbox": [ + 104, + 307, + 475, + 323 + ], + "spans": [ + { + "bbox": [ + 104, + 307, + 475, + 323 + ], + "score": 1.0, + "content": "In this section, we briefly review the attack and defense methods in neural network training.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16, + "bbox_fs": [ + 104, + 307, + 475, + 323 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 333, + 201, + 345 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 203, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 203, + 346 + ], + "score": 1.0, + "content": "2.1 ATTACK MODEL", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 354, + 504, + 387 + ], + "lines": [ + { + "bbox": [ + 105, + 352, + 506, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 236, + 368 + ], + "score": 1.0, + "content": "Given a neural network model", + "type": "text" + }, + { + "bbox": [ + 236, + 355, + 250, + 365 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 352, + 326, + 368 + ], + "score": 1.0, + "content": "parameterized by", + "type": "text" + }, + { + "bbox": [ + 326, + 355, + 333, + 364 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 352, + 506, + 368 + ], + "score": 1.0, + "content": "trained for classification, an input image", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 364, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 107, + 365, + 137, + 375 + ], + "score": 0.91, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 364, + 189, + 376 + ], + "score": 1.0, + "content": "and its label", + "type": "text" + }, + { + "bbox": [ + 189, + 367, + 196, + 377 + ], + "score": 0.78, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 364, + 392, + 376 + ], + "score": 1.0, + "content": ", we want to find a small adversarial perturbation", + "type": "text" + }, + { + "bbox": [ + 392, + 366, + 407, + 375 + ], + "score": 0.86, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 364, + 446, + 376 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 447, + 366, + 479, + 376 + ], + "score": 0.91, + "content": "x + \\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 364, + 505, + 376 + ], + "score": 1.0, + "content": "is not", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 375, + 384, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 156, + 388 + ], + "score": 1.0, + "content": "classified as", + "type": "text" + }, + { + "bbox": [ + 157, + 378, + 163, + 388 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 375, + 285, + 388 + ], + "score": 1.0, + "content": ". The minimum norm solution", + "type": "text" + }, + { + "bbox": [ + 285, + 376, + 300, + 386 + ], + "score": 0.88, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 375, + 384, + 388 + ], + "score": 1.0, + "content": "can be described as:", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 352, + 506, + 388 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 390, + 404, + 411 + ], + "lines": [ + { + "bbox": [ + 207, + 390, + 404, + 411 + ], + "spans": [ + { + "bbox": [ + 207, + 390, + 404, + 411 + ], + "score": 0.89, + "content": "\\operatorname* { a r g m i n } _ { \\Delta x } \\| \\Delta x \\| \\quad \\mathrm { s . t . } \\ \\arg \\operatorname* { m a x } D _ { \\theta } ( x + \\Delta x ) \\neq y ,", + "type": "interline_equation", + "image_path": "a1a80e5922102dd52a7867083d1873c89a451de4057c1e2aa335bccee5401440.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 207, + 390, + 404, + 411 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 507, + 436 + ], + "lines": [ + { + "bbox": [ + 106, + 413, + 504, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 413, + 170, + 426 + ], + "score": 1.0, + "content": "where arg max", + "type": "text" + }, + { + "bbox": [ + 171, + 414, + 198, + 426 + ], + "score": 0.93, + "content": "D _ { \\theta } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 413, + 340, + 426 + ], + "score": 1.0, + "content": "gives the predicted class for input", + "type": "text" + }, + { + "bbox": [ + 341, + 416, + 347, + 424 + ], + "score": 0.77, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 413, + 504, + 426 + ], + "score": 1.0, + "content": ". Szegedy et al. (2014) introduced the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 425, + 497, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 497, + 438 + ], + "score": 1.0, + "content": "first method to generate adversarial examples by considering the following optimization problem,", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 413, + 504, + 438 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 440, + 425, + 460 + ], + "lines": [ + { + "bbox": [ + 186, + 440, + 425, + 460 + ], + "spans": [ + { + "bbox": [ + 186, + 440, + 425, + 460 + ], + "score": 0.89, + "content": "\\Delta x = \\underset { z } { \\arg \\operatorname* { m i n } } \\lambda \\| z \\| + L ( D _ { \\theta } ( x + z ) , \\hat { y } ) , \\quad x + z \\in [ 0 , 1 ] ^ { d }", + "type": "interline_equation", + "image_path": "f734765ed1d831704f689a79757bef422a34a4403c30246d69f994d8171459a4.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 186, + 440, + 425, + 460 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 463, + 505, + 606 + ], + "lines": [ + { + "bbox": [ + 106, + 463, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 463, + 133, + 476 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 464, + 141, + 473 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 463, + 377, + 476 + ], + "score": 1.0, + "content": "is a distance function measuring the closeness of the output", + "type": "text" + }, + { + "bbox": [ + 377, + 463, + 418, + 475 + ], + "score": 0.92, + "content": "D _ { \\theta } ( x + z )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 463, + 487, + 476 + ], + "score": 1.0, + "content": "with some target", + "type": "text" + }, + { + "bbox": [ + 487, + 465, + 506, + 475 + ], + "score": 0.88, + "content": "\\hat { y } \\neq", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 474, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 113, + 486 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 474, + 506, + 487 + ], + "score": 1.0, + "content": ". The objective is minimized using box-constrained L-BFGS. Goodfellow et al. (2015) introduced", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "the fast gradient sign method (FGS) to generate adversarial examples in one step, which can be", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 495, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 168, + 510 + ], + "score": 1.0, + "content": "represented as", + "type": "text" + }, + { + "bbox": [ + 168, + 496, + 298, + 508 + ], + "score": 0.89, + "content": "\\Delta x { \\mathbf { \\bar { \\phi } } } = \\epsilon \\cdot \\mathrm { s i g n } \\left( \\nabla _ { x } l ( D _ { \\theta } ( { \\bar { { x } } } ) , y ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 495, + 332, + 510 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 333, + 497, + 337, + 506 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 495, + 506, + 510 + ], + "score": 1.0, + "content": "is the cross-entropy loss used in neural", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "networks training. Madry et al. (2018) argues with strong evidence that projected gradient descent", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "(PGD), which can be viewed as an iterative version of the fast gradient sign method, is the strongest", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 505, + 542 + ], + "score": 1.0, + "content": "attack using only first-order gradient information. Papernot et al. (2017) presented a Jacobian-based", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "saliency-map attack (J-BSMA) model to generate adversarial examples by changing a small number", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "of pixels. Moosavi-Dezfooli et al. (2017) showed that there exist a single/universal small image", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 505, + 575 + ], + "score": 1.0, + "content": "perturbation that fools all natural images. Papernot et al. (2017) introduced the first demonstration", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 505, + 585 + ], + "score": 1.0, + "content": "of black-box attacks against neural network classifiers. The adversary has no information about", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 597 + ], + "score": 1.0, + "content": "the architecture and parameters of the neural networks, and does not have access to large training", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 595, + 140, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 140, + 607 + ], + "score": 1.0, + "content": "dataset.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 463, + 506, + 607 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 619, + 206, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 208, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 208, + 632 + ], + "score": 1.0, + "content": "2.2 DEFENSE MODEL", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 505, + 652 + ], + "score": 1.0, + "content": "In order to mitigate the effect of the generated adversarial examples, various defensive methods have", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 505, + 663 + ], + "score": 1.0, + "content": "been proposed. Papernot et al. (2016b) introduced distillation as a defense to adversarial examples.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 662, + 475, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 475, + 674 + ], + "score": 1.0, + "content": "Lou et al. (2016) introduced a foveation-based mechanism to alleviate adversarial examples.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 640, + 505, + 674 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 678, + 505, + 712 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "The idea of adversarial training was first proposed by Szegedy et al. (2014). The effect of adversarial", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 505, + 702 + ], + "score": 1.0, + "content": "examples can be reduced through explicitly training the model with both original and perturbed", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 700, + 411, + 713 + ], + "spans": [ + { + "bbox": [ + 105, + 700, + 411, + 713 + ], + "score": 1.0, + "content": "adversarial images. Adversarial training can be viewed as a minimax game,", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 678, + 505, + 713 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 715, + 393, + 734 + ], + "lines": [ + { + "bbox": [ + 218, + 715, + 393, + 734 + ], + "spans": [ + { + "bbox": [ + 218, + 715, + 393, + 734 + ], + "score": 0.94, + "content": "\\theta ^ { * } = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\operatorname { E } _ { x , y } \\underset { \\Delta x } { \\operatorname* { m a x } } l ( D _ { \\theta } ( x + \\Delta x ) , y ) .", + "type": "interline_equation", + "image_path": "4f91c1aab9aebc24acc731159bb955118fdeb6cb0e10d6cbb22848ac0ce55a24.jpg" + } + ] + } + ], + "index": 45, + "virtual_lines": [ + { + "bbox": [ + 218, + 715, + 393, + 734 + ], + "spans": [], + "index": 45 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 95, + 503, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 95, + 503, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 95, + 503, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 95, + 503, + 165 + ], + "score": 0.929, + "type": "image", + "image_path": "23802e87c1be4f67cbfc9eb8c53124ad25c8bbddfc15716d481f690141d3401b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 95, + 503, + 118.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 118.33333333333333, + 503, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 141.66666666666666, + 503, + 165.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 185, + 183, + 424, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 186, + 182, + 425, + 196 + ], + "spans": [ + { + "bbox": [ + 186, + 182, + 425, + 196 + ], + "score": 1.0, + "content": "Figure 1: Architecture diagram of our adversarial networks", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 445, + 230 + ], + "score": 1.0, + "content": "The inner maximization requires a separate oracle for generating the perturbations", + "type": "text" + }, + { + "bbox": [ + 445, + 218, + 460, + 228 + ], + "score": 0.81, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 217, + 506, + 230 + ], + "score": 1.0, + "content": ". FGS is a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 359, + 241 + ], + "score": 1.0, + "content": "common method for generating the adversarial perturbations", + "type": "text" + }, + { + "bbox": [ + 360, + 230, + 375, + 240 + ], + "score": 0.83, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "due to its speed. Madry et al.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "(2018) advocates the use of PGD in generating adversarial examples. Moreover, a cascade adver-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "sarial training is presented in Na et al. (2018), which injects adversarial examples from an already", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 262, + 432, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 432, + 275 + ], + "score": 1.0, + "content": "defended network added with adversarial images from the network being trained.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 292 + ], + "score": 1.0, + "content": "There are a few recent works on using GANs for generating and defending against adversarial exam-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "ples. Samangouei et al. (2018) and Ilyas et al. (2017) use GAN for defense by learning the manifold", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 300, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 314 + ], + "score": 1.0, + "content": "of input distribution with GAN, and then project any input examples onto this learned manifold be-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "fore classification to filter out any potential adversarial noise. Our approach is more direct because", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "we do not learn the input distribution and no input denoising is involved. Both Baluja & Fischer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "(2018) and Xiao et al. (2018) train neural networks to generate adversarial examples by maximiz-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "ing the loss over a fixed pre-trained discriminative network. They show that they can train neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "networks to effectively attack undefended discriminative networks while ensuring the generated ad-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "versarial examples look similar to the original samples. Our work is different from these because", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "score": 1.0, + "content": "instead of having a fixed discriminative network, we co-train the discriminative network together", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "with the adversarial generative network in a minimax game. Xiao et al. (2018) also train a second", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "discriminative network as in typical GANs, but their discriminative network is used for ensuring the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "generated images look like the original samples, and not for classification. Lee et al. (2017) also", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "considered the use of GAN to train robust discriminative networks. However, the inputs to their", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 494, + 446 + ], + "score": 1.0, + "content": "generative network is the gradient of the discriminative network with respect to the input image", + "type": "text" + }, + { + "bbox": [ + 494, + 435, + 501, + 443 + ], + "score": 0.65, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 432, + 506, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 180, + 456 + ], + "score": 1.0, + "content": "not just the image", + "type": "text" + }, + { + "bbox": [ + 181, + 446, + 188, + 453 + ], + "score": 0.72, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "as in our current work. This causes complex dependence of the gradient of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "generative network parameters to the discriminative network parameters, and makes the parameter", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "updates for the generative network more complicated. Also there is no single minimax objective that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "they are solving for in their work; the update rules for the discriminative and generative networks", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 270, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 270, + 500 + ], + "score": 1.0, + "content": "optimize related but different objectives.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 517, + 172, + 530 + ], + "lines": [ + { + "bbox": [ + 104, + 515, + 174, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 174, + 533 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "In generative adversarial networks (GAN) (Goodfellow et al., 2014), the goal is to learn a generative", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "neural network that can model a distribution of unlabeled training examples. The generative network", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "transforms a random input vector into an output that is similar to the training examples, and there is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "a separate discriminative network that tries to distinguish the real training examples against samples", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "generated by the generative network. The generative and discriminative networks are trained jointly", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "with gradient descent, and at equilibrium we want the samples from the generative network to be", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "indistinguishable from the real training data by the discriminative network, i.e., the discriminative", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 620, + 323, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 323, + 635 + ], + "score": 1.0, + "content": "network does no better than doing a random coin flip.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 638, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "We adopt the GAN approach in generating adversarial noise for a discriminative model to train", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "against. This approach has already been hinted at in Tramer et al. (2018), but they decided to train `", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "against a static set of adversarial models instead of training against a generative noise network that", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "score": 1.0, + "content": "can dynamically adapt in a truly GAN fashion. In this work we show that this idea can be carried", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 682, + 346, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 346, + 694 + ], + "score": 1.0, + "content": "out fruitfully to train robust discriminative neural networks.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 168, + 711 + ], + "score": 1.0, + "content": "Given an input", + "type": "text" + }, + { + "bbox": [ + 168, + 701, + 175, + 709 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 699, + 249, + 711 + ], + "score": 1.0, + "content": "with correct label", + "type": "text" + }, + { + "bbox": [ + 249, + 701, + 256, + 710 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 699, + 505, + 711 + ], + "score": 1.0, + "content": ", from the viewpoint of the adversary we want to find additive", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 131, + 722 + ], + "score": 1.0, + "content": "noise", + "type": "text" + }, + { + "bbox": [ + 131, + 710, + 146, + 720 + ], + "score": 0.83, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 709, + 187, + 722 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 188, + 710, + 222, + 720 + ], + "score": 0.9, + "content": "x + \\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "will be incorrectly classified by the discriminative neural network to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 180, + 732 + ], + "score": 1.0, + "content": "some other labels", + "type": "text" + }, + { + "bbox": [ + 181, + 721, + 208, + 732 + ], + "score": 0.91, + "content": "\\hat { y } \\ne y", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 720, + 347, + 732 + ], + "score": 1.0, + "content": ". We model this additive noise as", + "type": "text" + }, + { + "bbox": [ + 347, + 722, + 372, + 732 + ], + "score": 0.93, + "content": "\\epsilon G ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 720, + 405, + 732 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 405, + 721, + 414, + 730 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "is a generative neural", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 2, + "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, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 95, + 503, + 165 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 95, + 503, + 165 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 95, + 503, + 165 + ], + "spans": [ + { + "bbox": [ + 114, + 95, + 503, + 165 + ], + "score": 0.929, + "type": "image", + "image_path": "23802e87c1be4f67cbfc9eb8c53124ad25c8bbddfc15716d481f690141d3401b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 95, + 503, + 118.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 118.33333333333333, + 503, + 141.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 141.66666666666666, + 503, + 165.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 185, + 183, + 424, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 186, + 182, + 425, + 196 + ], + "spans": [ + { + "bbox": [ + 186, + 182, + 425, + 196 + ], + "score": 1.0, + "content": "Figure 1: Architecture diagram of our adversarial networks", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 107, + 218, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 106, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 106, + 217, + 445, + 230 + ], + "score": 1.0, + "content": "The inner maximization requires a separate oracle for generating the perturbations", + "type": "text" + }, + { + "bbox": [ + 445, + 218, + 460, + 228 + ], + "score": 0.81, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 217, + 506, + 230 + ], + "score": 1.0, + "content": ". FGS is a", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 230, + 505, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 359, + 241 + ], + "score": 1.0, + "content": "common method for generating the adversarial perturbations", + "type": "text" + }, + { + "bbox": [ + 360, + 230, + 375, + 240 + ], + "score": 0.83, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 230, + 505, + 241 + ], + "score": 1.0, + "content": "due to its speed. Madry et al.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "(2018) advocates the use of PGD in generating adversarial examples. Moreover, a cascade adver-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 252, + 505, + 264 + ], + "score": 1.0, + "content": "sarial training is presented in Na et al. (2018), which injects adversarial examples from an already", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 262, + 432, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 432, + 275 + ], + "score": 1.0, + "content": "defended network added with adversarial images from the network being trained.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 217, + 506, + 275 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 105, + 278, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 292 + ], + "score": 1.0, + "content": "There are a few recent works on using GANs for generating and defending against adversarial exam-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 505, + 303 + ], + "score": 1.0, + "content": "ples. Samangouei et al. (2018) and Ilyas et al. (2017) use GAN for defense by learning the manifold", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 300, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 314 + ], + "score": 1.0, + "content": "of input distribution with GAN, and then project any input examples onto this learned manifold be-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 506, + 325 + ], + "score": 1.0, + "content": "fore classification to filter out any potential adversarial noise. Our approach is more direct because", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 323, + 505, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 323, + 505, + 335 + ], + "score": 1.0, + "content": "we do not learn the input distribution and no input denoising is involved. Both Baluja & Fischer", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "(2018) and Xiao et al. (2018) train neural networks to generate adversarial examples by maximiz-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 357 + ], + "score": 1.0, + "content": "ing the loss over a fixed pre-trained discriminative network. They show that they can train neural", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 356, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 368 + ], + "score": 1.0, + "content": "networks to effectively attack undefended discriminative networks while ensuring the generated ad-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "versarial examples look similar to the original samples. Our work is different from these because", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 389 + ], + "score": 1.0, + "content": "instead of having a fixed discriminative network, we co-train the discriminative network together", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 106, + 389, + 505, + 401 + ], + "score": 1.0, + "content": "with the adversarial generative network in a minimax game. Xiao et al. (2018) also train a second", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "discriminative network as in typical GANs, but their discriminative network is used for ensuring the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 506, + 423 + ], + "score": 1.0, + "content": "generated images look like the original samples, and not for classification. Lee et al. (2017) also", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "considered the use of GAN to train robust discriminative networks. However, the inputs to their", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 432, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 494, + 446 + ], + "score": 1.0, + "content": "generative network is the gradient of the discriminative network with respect to the input image", + "type": "text" + }, + { + "bbox": [ + 494, + 435, + 501, + 443 + ], + "score": 0.65, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 432, + 506, + 446 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 180, + 456 + ], + "score": 1.0, + "content": "not just the image", + "type": "text" + }, + { + "bbox": [ + 181, + 446, + 188, + 453 + ], + "score": 0.72, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "as in our current work. This causes complex dependence of the gradient of the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 506, + 468 + ], + "score": 1.0, + "content": "generative network parameters to the discriminative network parameters, and makes the parameter", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 506, + 478 + ], + "score": 1.0, + "content": "updates for the generative network more complicated. Also there is no single minimax objective that", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 490 + ], + "score": 1.0, + "content": "they are solving for in their work; the update rules for the discriminative and generative networks", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 488, + 270, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 270, + 500 + ], + "score": 1.0, + "content": "optimize related but different objectives.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 278, + 506, + 500 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 517, + 172, + 530 + ], + "lines": [ + { + "bbox": [ + 104, + 515, + 174, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 515, + 174, + 533 + ], + "score": 1.0, + "content": "3 METHOD", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 544, + 505, + 632 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "In generative adversarial networks (GAN) (Goodfellow et al., 2014), the goal is to learn a generative", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "neural network that can model a distribution of unlabeled training examples. The generative network", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 505, + 578 + ], + "score": 1.0, + "content": "transforms a random input vector into an output that is similar to the training examples, and there is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 104, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "a separate discriminative network that tries to distinguish the real training examples against samples", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 104, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "generated by the generative network. The generative and discriminative networks are trained jointly", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 599, + 505, + 612 + ], + "score": 1.0, + "content": "with gradient descent, and at equilibrium we want the samples from the generative network to be", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 623 + ], + "score": 1.0, + "content": "indistinguishable from the real training data by the discriminative network, i.e., the discriminative", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 620, + 323, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 323, + 635 + ], + "score": 1.0, + "content": "network does no better than doing a random coin flip.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 545, + 506, + 635 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 638, + 504, + 693 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 651 + ], + "score": 1.0, + "content": "We adopt the GAN approach in generating adversarial noise for a discriminative model to train", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 662 + ], + "score": 1.0, + "content": "against. This approach has already been hinted at in Tramer et al. (2018), but they decided to train `", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 506, + 672 + ], + "score": 1.0, + "content": "against a static set of adversarial models instead of training against a generative noise network that", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 683 + ], + "score": 1.0, + "content": "can dynamically adapt in a truly GAN fashion. In this work we show that this idea can be carried", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 682, + 346, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 346, + 694 + ], + "score": 1.0, + "content": "out fruitfully to train robust discriminative neural networks.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 637, + 506, + 694 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 168, + 711 + ], + "score": 1.0, + "content": "Given an input", + "type": "text" + }, + { + "bbox": [ + 168, + 701, + 175, + 709 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 699, + 249, + 711 + ], + "score": 1.0, + "content": "with correct label", + "type": "text" + }, + { + "bbox": [ + 249, + 701, + 256, + 710 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 699, + 505, + 711 + ], + "score": 1.0, + "content": ", from the viewpoint of the adversary we want to find additive", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 131, + 722 + ], + "score": 1.0, + "content": "noise", + "type": "text" + }, + { + "bbox": [ + 131, + 710, + 146, + 720 + ], + "score": 0.83, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 709, + 187, + 722 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 188, + 710, + 222, + 720 + ], + "score": 0.9, + "content": "x + \\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "will be incorrectly classified by the discriminative neural network to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 180, + 732 + ], + "score": 1.0, + "content": "some other labels", + "type": "text" + }, + { + "bbox": [ + 181, + 721, + 208, + 732 + ], + "score": 0.91, + "content": "\\hat { y } \\ne y", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 720, + 347, + 732 + ], + "score": 1.0, + "content": ". We model this additive noise as", + "type": "text" + }, + { + "bbox": [ + 347, + 722, + 372, + 732 + ], + "score": 0.93, + "content": "\\epsilon G ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 720, + 405, + 732 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 405, + 721, + 414, + 730 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "is a generative neural", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 371, + 95 + ], + "score": 1.0, + "content": "network that generates instance specific noise based on the input", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 372, + 85, + 379, + 92 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 379, + 82, + 397, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 398, + 85, + 404, + 93 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 404, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "is the scaling factor that", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "controls the size of the noise. Notice that unlike white box attack methods such as FGS or PGD, once", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 137, + 117 + ], + "score": 1.0, + "content": "trained", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 137, + 105, + 146, + 115 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 147, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "does not need to know the parameters of the discriminative network that it is attacking.", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 114, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 107, + 116, + 116, + 126 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 116, + 114, + 472, + 128 + ], + "score": 1.0, + "content": "can also take in other inputs to generate adversarial noise, e.g., Gaussian random vector", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 473, + 115, + 504, + 126 + ], + "score": 0.9, + "content": "z \\in { \\mathbb { R } ^ { d } }", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 276, + 138 + ], + "score": 1.0, + "content": "as in typical GAN, or even the class label", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 276, + 128, + 282, + 138 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 283, + 126, + 393, + 138 + ], + "score": 1.0, + "content": ". For simplicity we assume", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 393, + 127, + 402, + 136 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 403, + 126, + 437, + 138 + ], + "score": 1.0, + "content": "takes in", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 437, + 128, + 444, + 136 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 444, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "as input in the", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 186, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 186, + 149 + ], + "score": 1.0, + "content": "descriptions below.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 699, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 371, + 95 + ], + "score": 1.0, + "content": "network that generates instance specific noise based on the input", + "type": "text" + }, + { + "bbox": [ + 372, + 85, + 379, + 92 + ], + "score": 0.73, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 82, + 397, + 95 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 398, + 85, + 404, + 93 + ], + "score": 0.69, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "is the scaling factor that", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "controls the size of the noise. Notice that unlike white box attack methods such as FGS or PGD, once", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 137, + 117 + ], + "score": 1.0, + "content": "trained", + "type": "text" + }, + { + "bbox": [ + 137, + 105, + 146, + 115 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 103, + 505, + 117 + ], + "score": 1.0, + "content": "does not need to know the parameters of the discriminative network that it is attacking.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 107, + 114, + 504, + 128 + ], + "spans": [ + { + "bbox": [ + 107, + 116, + 116, + 126 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 114, + 472, + 128 + ], + "score": 1.0, + "content": "can also take in other inputs to generate adversarial noise, e.g., Gaussian random vector", + "type": "text" + }, + { + "bbox": [ + 473, + 115, + 504, + 126 + ], + "score": 0.9, + "content": "z \\in { \\mathbb { R } ^ { d } }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 276, + 138 + ], + "score": 1.0, + "content": "as in typical GAN, or even the class label", + "type": "text" + }, + { + "bbox": [ + 276, + 128, + 282, + 138 + ], + "score": 0.76, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 126, + 393, + 138 + ], + "score": 1.0, + "content": ". For simplicity we assume", + "type": "text" + }, + { + "bbox": [ + 393, + 127, + 402, + 136 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 126, + 437, + 138 + ], + "score": 1.0, + "content": "takes in", + "type": "text" + }, + { + "bbox": [ + 437, + 128, + 444, + 136 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "as input in the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 138, + 186, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 186, + 149 + ], + "score": 1.0, + "content": "descriptions below.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 504, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 237, + 168 + ], + "score": 1.0, + "content": "Suppose we have a training set", + "type": "text" + }, + { + "bbox": [ + 237, + 154, + 335, + 166 + ], + "score": 0.91, + "content": "\\left\\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 153, + 443, + 168 + ], + "score": 1.0, + "content": "of image-label pairs. Let", + "type": "text" + }, + { + "bbox": [ + 443, + 155, + 457, + 165 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "be the dis-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 331, + 178 + ], + "score": 1.0, + "content": "criminator network (for classification) parameterized by", + "type": "text" + }, + { + "bbox": [ + 331, + 167, + 337, + 175 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 165, + 358, + 178 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 358, + 166, + 372, + 177 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "be the generator network param-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 439, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 153, + 190 + ], + "score": 1.0, + "content": "eterized by", + "type": "text" + }, + { + "bbox": [ + 153, + 177, + 160, + 187 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 176, + 389, + 190 + ], + "score": 1.0, + "content": ". We want to solve the following minimax game between", + "type": "text" + }, + { + "bbox": [ + 389, + 177, + 402, + 187 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 176, + 421, + 190 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 421, + 177, + 435, + 189 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 176, + 439, + 190 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 189, + 429, + 222 + ], + "lines": [ + { + "bbox": [ + 181, + 189, + 429, + 222 + ], + "spans": [ + { + "bbox": [ + 181, + 189, + 429, + 222 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\theta } \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) ,", + "type": "interline_equation", + "image_path": "9560b4da2793f7a9a7413f28b5088670b8be4690e3b5d043effe5ce7c62c5296.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 181, + 189, + 429, + 200.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 181, + 200.0, + 429, + 211.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 181, + 211.0, + 429, + 222.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 504, + 255 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 133, + 235 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 223, + 137, + 232 + ], + "score": 0.75, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 222, + 237, + 235 + ], + "score": 1.0, + "content": "is the cross-entropy loss,", + "type": "text" + }, + { + "bbox": [ + 238, + 223, + 245, + 232 + ], + "score": 0.84, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "is the trade-off parameter between minimizing the loss on normal", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 382, + 246 + ], + "score": 1.0, + "content": "examples versus minimizing the loss on the adversarial examples, and", + "type": "text" + }, + { + "bbox": [ + 383, + 236, + 388, + 243 + ], + "score": 0.75, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "is the magnitude of the noise.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 244, + 286, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 286, + 256 + ], + "score": 1.0, + "content": "See Figure 1 for an illustration of the model.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 301, + 274 + ], + "score": 1.0, + "content": "In this work we focus on perturbations based on", + "type": "text" + }, + { + "bbox": [ + 302, + 261, + 315, + 272 + ], + "score": 0.89, + "content": "\\ell _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 261, + 506, + 274 + ], + "score": 1.0, + "content": "norm. This can be achieved easily by adding a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 320, + 285 + ], + "score": 1.0, + "content": "tanh layer as the final layer of the generator network", + "type": "text" + }, + { + "bbox": [ + 320, + 273, + 334, + 284 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 271, + 505, + 285 + ], + "score": 1.0, + "content": ", which normalizes the output to the range", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 118, + 296 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 283, + 146, + 295 + ], + "score": 0.9, + "content": "[ - 1 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 283, + 246, + 296 + ], + "score": 1.0, + "content": ". Perturbations based on", + "type": "text" + }, + { + "bbox": [ + 246, + 284, + 256, + 294 + ], + "score": 0.88, + "content": "\\ell _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 283, + 268, + 296 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 268, + 284, + 278, + 294 + ], + "score": 0.88, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 283, + 505, + 296 + ], + "score": 1.0, + "content": "norms can be accommodated by having the appropriate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 294, + 287, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 269, + 307 + ], + "score": 1.0, + "content": "normalization layers in the final layer of", + "type": "text" + }, + { + "bbox": [ + 269, + 295, + 283, + 307 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 294, + 287, + 307 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 463, + 323 + ], + "score": 1.0, + "content": "We now explain the intuition of our approach. Ideally, we would like to find a solution", + "type": "text" + }, + { + "bbox": [ + 463, + 312, + 470, + 321 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "that has", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 322, + 224, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 224, + 334 + ], + "score": 1.0, + "content": "small risk on clean examples", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 331, + 359, + 364 + ], + "lines": [ + { + "bbox": [ + 251, + 331, + 359, + 364 + ], + "spans": [ + { + "bbox": [ + 251, + 331, + 359, + 364 + ], + "score": 0.95, + "content": "R \\left( \\theta \\right) = \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) ,", + "type": "interline_equation", + "image_path": "a581ab3223aca5f2b0dd6ef54493d6553380843a8ea64d274fddcf94faecdbf9.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 251, + 331, + 359, + 347.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 251, + 347.5, + 359, + 364.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 364, + 451, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 450, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 444, + 377 + ], + "score": 1.0, + "content": "and also small risk on the adversarial examples under maximum perturbation of size", + "type": "text" + }, + { + "bbox": [ + 445, + 366, + 450, + 373 + ], + "score": 0.68, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 376, + 401, + 408 + ], + "lines": [ + { + "bbox": [ + 210, + 376, + 401, + 408 + ], + "spans": [ + { + "bbox": [ + 210, + 376, + 401, + 408 + ], + "score": 0.94, + "content": "R _ { a d v } ( \\theta ) = \\sum _ { i = 1 } ^ { n } \\operatorname* { m a x } _ { \\Delta x , \\| \\Delta x \\| \\leq \\epsilon } l ( D _ { \\theta } ( x _ { i } + \\Delta x ) , y _ { i } ) .", + "type": "interline_equation", + "image_path": "8a787f17e1966e71811e25180520327494062d983e9ddf8782b4e81d5b0161db.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 376, + 401, + 392.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 210, + 392.0, + 401, + 408.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "However, except for simple datasets like MNIST, there are usually fairly large differences between", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 419, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 170, + 433 + ], + "score": 1.0, + "content": "the solutions of", + "type": "text" + }, + { + "bbox": [ + 170, + 421, + 191, + 432 + ], + "score": 0.91, + "content": "R ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 419, + 257, + 433 + ], + "score": 1.0, + "content": "and solutions of", + "type": "text" + }, + { + "bbox": [ + 258, + 421, + 291, + 432 + ], + "score": 0.93, + "content": "R _ { a d v } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 419, + 403, + 433 + ], + "score": 1.0, + "content": "under the same model class", + "type": "text" + }, + { + "bbox": [ + 404, + 420, + 417, + 431 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 419, + 505, + 433 + ], + "score": 1.0, + "content": "(Tsipras et al., 2018).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 299, + 444 + ], + "score": 1.0, + "content": "Optimizing for the risk under white box attacks", + "type": "text" + }, + { + "bbox": [ + 299, + 432, + 333, + 443 + ], + "score": 0.92, + "content": "R _ { a d v } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "involves tradeoff on the risk on clean data", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 440, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 443, + 128, + 454 + ], + "score": 0.91, + "content": "R ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 440, + 172, + 456 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 173, + 443, + 207, + 454 + ], + "score": 0.93, + "content": "R _ { a d v } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 440, + 505, + 456 + ], + "score": 1.0, + "content": "represent the risk under white box attacks, since we are free to choose the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 452, + 495, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 158, + 466 + ], + "score": 1.0, + "content": "perturbation", + "type": "text" + }, + { + "bbox": [ + 158, + 455, + 172, + 462 + ], + "score": 0.88, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 452, + 252, + 466 + ], + "score": 1.0, + "content": "with knowledge of", + "type": "text" + }, + { + "bbox": [ + 252, + 455, + 257, + 462 + ], + "score": 0.88, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 452, + 495, + 466 + ], + "score": 1.0, + "content": ". This can be approximated using the powerful PGD attack.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 469, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 256, + 482 + ], + "score": 1.0, + "content": "Instead of allowing the perturbations", + "type": "text" + }, + { + "bbox": [ + 257, + 472, + 271, + 479 + ], + "score": 0.89, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "to be completely free, we model the adversary as a neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 480, + 236, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 142, + 494 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 142, + 482, + 155, + 493 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 480, + 236, + 494 + ], + "score": 1.0, + "content": "with finite capacity", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 494, + 396, + 526 + ], + "lines": [ + { + "bbox": [ + 215, + 494, + 396, + 526 + ], + "spans": [ + { + "bbox": [ + 215, + 494, + 396, + 526 + ], + "score": 0.95, + "content": "R _ { G } ( \\theta ) = \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) .", + "type": "interline_equation", + "image_path": "36a45133098923ff6ac477aa8d1dede5fcdca6f59ad18e642663b8a40e6b22da.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 494, + 396, + 510.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 215, + 510.0, + 396, + 526.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 214, + 541 + ], + "score": 1.0, + "content": "Here the adversarial noise", + "type": "text" + }, + { + "bbox": [ + 215, + 528, + 245, + 540 + ], + "score": 0.93, + "content": "G _ { \\phi } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "is not allowed to directly depend on the discriminative network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 153, + 551 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 539, + 159, + 548 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 539, + 321, + 551 + ], + "score": 1.0, + "content": ". Also, the generative network parameter", + "type": "text" + }, + { + "bbox": [ + 321, + 539, + 329, + 550 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "is shared across all examples, not computed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 174, + 562 + ], + "score": 1.0, + "content": "per example like", + "type": "text" + }, + { + "bbox": [ + 174, + 550, + 189, + 559 + ], + "score": 0.83, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 549, + 505, + 562 + ], + "score": 1.0, + "content": ". We believe this is closer to the situation of defending against black box attacks,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 561, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 572 + ], + "score": 1.0, + "content": "when the adversary does not know the discriminator network parameters. However, we still want", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 107, + 572, + 120, + 584 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 571, + 371, + 584 + ], + "score": 1.0, + "content": "to be expressive enough to represent powerful attacks, so that", + "type": "text" + }, + { + "bbox": [ + 371, + 572, + 385, + 582 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "has a good adversary to train", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "against. Previous work (Xiao et al., 2018; Baluja & Fischer, 2018) show that there are powerful", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 593, + 356, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 147, + 606 + ], + "score": 1.0, + "content": "classes of", + "type": "text" + }, + { + "bbox": [ + 147, + 593, + 162, + 606 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 593, + 295, + 606 + ], + "score": 1.0, + "content": "that can attack trained classifiers", + "type": "text" + }, + { + "bbox": [ + 295, + 594, + 309, + 604 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 593, + 356, + 606 + ], + "score": 1.0, + "content": "effectively.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "In traditional GANs we are most interested in the distributions learned by the generative network.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 621, + 504, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 504, + 633 + ], + "score": 1.0, + "content": "The discriminative network is a helper that drives the training, but can be discarded afterwards. In", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 632, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 504, + 644 + ], + "score": 1.0, + "content": "our setting we are interested in both the discriminative network and the generative network. The", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "generative network in our formulation can give us a powerful adversary for attacking, while the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 653, + 486, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 486, + 667 + ], + "score": 1.0, + "content": "discriminative network can give us a robust classifier that can defend against adversarial noise.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44 + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 278, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 279, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 279, + 691 + ], + "score": 1.0, + "content": "3.1 STABILIZING THE GAN TRAINING", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "The stability and convergence of GAN training is still an area of active research (Mescheder et al.,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "2018). In this paper we adopt gradient regularization (Mescheder et al., 2017) to stabilize the gradi-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 387, + 732 + ], + "score": 1.0, + "content": "ent descent/ascent training. Denote the minimax objective in Eq. 4 as", + "type": "text" + }, + { + "bbox": [ + 388, + 721, + 419, + 732 + ], + "score": 0.92, + "content": "F ( \\theta , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 721, + 505, + 732 + ], + "score": 1.0, + "content": ". With the generative", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + } + ], + "page_idx": 3, + "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, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 149 + ], + "lines": [], + "index": 2.5, + "bbox_fs": [ + 105, + 82, + 506, + 149 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 154, + 504, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 506, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 237, + 168 + ], + "score": 1.0, + "content": "Suppose we have a training set", + "type": "text" + }, + { + "bbox": [ + 237, + 154, + 335, + 166 + ], + "score": 0.91, + "content": "\\left\\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 336, + 153, + 443, + 168 + ], + "score": 1.0, + "content": "of image-label pairs. Let", + "type": "text" + }, + { + "bbox": [ + 443, + 155, + 457, + 165 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 153, + 506, + 168 + ], + "score": 1.0, + "content": "be the dis-", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 331, + 178 + ], + "score": 1.0, + "content": "criminator network (for classification) parameterized by", + "type": "text" + }, + { + "bbox": [ + 331, + 167, + 337, + 175 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 165, + 358, + 178 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 358, + 166, + 372, + 177 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "be the generator network param-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 439, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 153, + 190 + ], + "score": 1.0, + "content": "eterized by", + "type": "text" + }, + { + "bbox": [ + 153, + 177, + 160, + 187 + ], + "score": 0.83, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 176, + 389, + 190 + ], + "score": 1.0, + "content": ". We want to solve the following minimax game between", + "type": "text" + }, + { + "bbox": [ + 389, + 177, + 402, + 187 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 176, + 421, + 190 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 421, + 177, + 435, + 189 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 176, + 439, + 190 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 153, + 506, + 190 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 189, + 429, + 222 + ], + "lines": [ + { + "bbox": [ + 181, + 189, + 429, + 222 + ], + "spans": [ + { + "bbox": [ + 181, + 189, + 429, + 222 + ], + "score": 0.94, + "content": "\\operatorname* { m i n } _ { \\theta } \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) ,", + "type": "interline_equation", + "image_path": "9560b4da2793f7a9a7413f28b5088670b8be4690e3b5d043effe5ce7c62c5296.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 181, + 189, + 429, + 200.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 181, + 200.0, + 429, + 211.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 181, + 211.0, + 429, + 222.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 504, + 255 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 133, + 235 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 223, + 137, + 232 + ], + "score": 0.75, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 222, + 237, + 235 + ], + "score": 1.0, + "content": "is the cross-entropy loss,", + "type": "text" + }, + { + "bbox": [ + 238, + 223, + 245, + 232 + ], + "score": 0.84, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 222, + 505, + 235 + ], + "score": 1.0, + "content": "is the trade-off parameter between minimizing the loss on normal", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 382, + 246 + ], + "score": 1.0, + "content": "examples versus minimizing the loss on the adversarial examples, and", + "type": "text" + }, + { + "bbox": [ + 383, + 236, + 388, + 243 + ], + "score": 0.75, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 388, + 233, + 505, + 246 + ], + "score": 1.0, + "content": "is the magnitude of the noise.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 244, + 286, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 286, + 256 + ], + "score": 1.0, + "content": "See Figure 1 for an illustration of the model.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 222, + 505, + 256 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 261, + 505, + 306 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 301, + 274 + ], + "score": 1.0, + "content": "In this work we focus on perturbations based on", + "type": "text" + }, + { + "bbox": [ + 302, + 261, + 315, + 272 + ], + "score": 0.89, + "content": "\\ell _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 261, + 506, + 274 + ], + "score": 1.0, + "content": "norm. This can be achieved easily by adding a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 320, + 285 + ], + "score": 1.0, + "content": "tanh layer as the final layer of the generator network", + "type": "text" + }, + { + "bbox": [ + 320, + 273, + 334, + 284 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 271, + 505, + 285 + ], + "score": 1.0, + "content": ", which normalizes the output to the range", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 283, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 118, + 296 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 283, + 146, + 295 + ], + "score": 0.9, + "content": "[ - 1 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 283, + 246, + 296 + ], + "score": 1.0, + "content": ". Perturbations based on", + "type": "text" + }, + { + "bbox": [ + 246, + 284, + 256, + 294 + ], + "score": 0.88, + "content": "\\ell _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 283, + 268, + 296 + ], + "score": 1.0, + "content": "or", + "type": "text" + }, + { + "bbox": [ + 268, + 284, + 278, + 294 + ], + "score": 0.88, + "content": "\\ell _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 283, + 505, + 296 + ], + "score": 1.0, + "content": "norms can be accommodated by having the appropriate", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 294, + 287, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 269, + 307 + ], + "score": 1.0, + "content": "normalization layers in the final layer of", + "type": "text" + }, + { + "bbox": [ + 269, + 295, + 283, + 307 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 294, + 287, + 307 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 261, + 506, + 307 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 311, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 310, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 463, + 323 + ], + "score": 1.0, + "content": "We now explain the intuition of our approach. Ideally, we would like to find a solution", + "type": "text" + }, + { + "bbox": [ + 463, + 312, + 470, + 321 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 310, + 505, + 323 + ], + "score": 1.0, + "content": "that has", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 322, + 224, + 334 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 224, + 334 + ], + "score": 1.0, + "content": "small risk on clean examples", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 310, + 505, + 334 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 251, + 331, + 359, + 364 + ], + "lines": [ + { + "bbox": [ + 251, + 331, + 359, + 364 + ], + "spans": [ + { + "bbox": [ + 251, + 331, + 359, + 364 + ], + "score": 0.95, + "content": "R \\left( \\theta \\right) = \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) ,", + "type": "interline_equation", + "image_path": "a581ab3223aca5f2b0dd6ef54493d6553380843a8ea64d274fddcf94faecdbf9.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 251, + 331, + 359, + 347.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 251, + 347.5, + 359, + 364.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 364, + 451, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 362, + 450, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 362, + 444, + 377 + ], + "score": 1.0, + "content": "and also small risk on the adversarial examples under maximum perturbation of size", + "type": "text" + }, + { + "bbox": [ + 445, + 366, + 450, + 373 + ], + "score": 0.68, + "content": "\\epsilon", + "type": "inline_equation" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 362, + 450, + 377 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 376, + 401, + 408 + ], + "lines": [ + { + "bbox": [ + 210, + 376, + 401, + 408 + ], + "spans": [ + { + "bbox": [ + 210, + 376, + 401, + 408 + ], + "score": 0.94, + "content": "R _ { a d v } ( \\theta ) = \\sum _ { i = 1 } ^ { n } \\operatorname* { m a x } _ { \\Delta x , \\| \\Delta x \\| \\leq \\epsilon } l ( D _ { \\theta } ( x _ { i } + \\Delta x ) , y _ { i } ) .", + "type": "interline_equation", + "image_path": "8a787f17e1966e71811e25180520327494062d983e9ddf8782b4e81d5b0161db.jpg" + } + ] + } + ], + "index": 24.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 376, + 401, + 392.0 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 210, + 392.0, + 401, + 408.0 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 409, + 505, + 464 + ], + "lines": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "However, except for simple datasets like MNIST, there are usually fairly large differences between", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 419, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 170, + 433 + ], + "score": 1.0, + "content": "the solutions of", + "type": "text" + }, + { + "bbox": [ + 170, + 421, + 191, + 432 + ], + "score": 0.91, + "content": "R ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 419, + 257, + 433 + ], + "score": 1.0, + "content": "and solutions of", + "type": "text" + }, + { + "bbox": [ + 258, + 421, + 291, + 432 + ], + "score": 0.93, + "content": "R _ { a d v } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 419, + 403, + 433 + ], + "score": 1.0, + "content": "under the same model class", + "type": "text" + }, + { + "bbox": [ + 404, + 420, + 417, + 431 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 419, + 505, + 433 + ], + "score": 1.0, + "content": "(Tsipras et al., 2018).", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 299, + 444 + ], + "score": 1.0, + "content": "Optimizing for the risk under white box attacks", + "type": "text" + }, + { + "bbox": [ + 299, + 432, + 333, + 443 + ], + "score": 0.92, + "content": "R _ { a d v } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "involves tradeoff on the risk on clean data", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 440, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 443, + 128, + 454 + ], + "score": 0.91, + "content": "R ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 440, + 172, + 456 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 173, + 443, + 207, + 454 + ], + "score": 0.93, + "content": "R _ { a d v } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 440, + 505, + 456 + ], + "score": 1.0, + "content": "represent the risk under white box attacks, since we are free to choose the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 452, + 495, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 158, + 466 + ], + "score": 1.0, + "content": "perturbation", + "type": "text" + }, + { + "bbox": [ + 158, + 455, + 172, + 462 + ], + "score": 0.88, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 452, + 252, + 466 + ], + "score": 1.0, + "content": "with knowledge of", + "type": "text" + }, + { + "bbox": [ + 252, + 455, + 257, + 462 + ], + "score": 0.88, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 452, + 495, + 466 + ], + "score": 1.0, + "content": ". This can be approximated using the powerful PGD attack.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 408, + 505, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 469, + 503, + 492 + ], + "lines": [ + { + "bbox": [ + 106, + 469, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 256, + 482 + ], + "score": 1.0, + "content": "Instead of allowing the perturbations", + "type": "text" + }, + { + "bbox": [ + 257, + 472, + 271, + 479 + ], + "score": 0.89, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 469, + 505, + 482 + ], + "score": 1.0, + "content": "to be completely free, we model the adversary as a neural", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 480, + 236, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 142, + 494 + ], + "score": 1.0, + "content": "network", + "type": "text" + }, + { + "bbox": [ + 142, + 482, + 155, + 493 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 480, + 236, + 494 + ], + "score": 1.0, + "content": "with finite capacity", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 469, + 505, + 494 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 494, + 396, + 526 + ], + "lines": [ + { + "bbox": [ + 215, + 494, + 396, + 526 + ], + "spans": [ + { + "bbox": [ + 215, + 494, + 396, + 526 + ], + "score": 0.95, + "content": "R _ { G } ( \\theta ) = \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) .", + "type": "interline_equation", + "image_path": "36a45133098923ff6ac477aa8d1dede5fcdca6f59ad18e642663b8a40e6b22da.jpg" + } + ] + } + ], + "index": 33.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 494, + 396, + 510.0 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 215, + 510.0, + 396, + 526.0 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 527, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 527, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 214, + 541 + ], + "score": 1.0, + "content": "Here the adversarial noise", + "type": "text" + }, + { + "bbox": [ + 215, + 528, + 245, + 540 + ], + "score": 0.93, + "content": "G _ { \\phi } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 527, + 506, + 541 + ], + "score": 1.0, + "content": "is not allowed to directly depend on the discriminative network", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 153, + 551 + ], + "score": 1.0, + "content": "parameters", + "type": "text" + }, + { + "bbox": [ + 153, + 539, + 159, + 548 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 539, + 321, + 551 + ], + "score": 1.0, + "content": ". Also, the generative network parameter", + "type": "text" + }, + { + "bbox": [ + 321, + 539, + 329, + 550 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "is shared across all examples, not computed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 174, + 562 + ], + "score": 1.0, + "content": "per example like", + "type": "text" + }, + { + "bbox": [ + 174, + 550, + 189, + 559 + ], + "score": 0.83, + "content": "\\Delta x", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 549, + 505, + 562 + ], + "score": 1.0, + "content": ". We believe this is closer to the situation of defending against black box attacks,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 561, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 572 + ], + "score": 1.0, + "content": "when the adversary does not know the discriminator network parameters. However, we still want", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 107, + 572, + 120, + 584 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 571, + 371, + 584 + ], + "score": 1.0, + "content": "to be expressive enough to represent powerful attacks, so that", + "type": "text" + }, + { + "bbox": [ + 371, + 572, + 385, + 582 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "has a good adversary to train", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 595 + ], + "score": 1.0, + "content": "against. Previous work (Xiao et al., 2018; Baluja & Fischer, 2018) show that there are powerful", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 593, + 356, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 147, + 606 + ], + "score": 1.0, + "content": "classes of", + "type": "text" + }, + { + "bbox": [ + 147, + 593, + 162, + 606 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 593, + 295, + 606 + ], + "score": 1.0, + "content": "that can attack trained classifiers", + "type": "text" + }, + { + "bbox": [ + 295, + 594, + 309, + 604 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 593, + 356, + 606 + ], + "score": 1.0, + "content": "effectively.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 527, + 506, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 609, + 505, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 504, + 622 + ], + "score": 1.0, + "content": "In traditional GANs we are most interested in the distributions learned by the generative network.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 621, + 504, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 621, + 504, + 633 + ], + "score": 1.0, + "content": "The discriminative network is a helper that drives the training, but can be discarded afterwards. In", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 632, + 504, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 504, + 644 + ], + "score": 1.0, + "content": "our setting we are interested in both the discriminative network and the generative network. The", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "generative network in our formulation can give us a powerful adversary for attacking, while the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 653, + 486, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 486, + 667 + ], + "score": 1.0, + "content": "discriminative network can give us a robust classifier that can defend against adversarial noise.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 609, + 505, + 667 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 278, + 689 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 279, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 279, + 691 + ], + "score": 1.0, + "content": "3.1 STABILIZING THE GAN TRAINING", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "The stability and convergence of GAN training is still an area of active research (Mescheder et al.,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 721 + ], + "score": 1.0, + "content": "2018). In this paper we adopt gradient regularization (Mescheder et al., 2017) to stabilize the gradi-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 387, + 732 + ], + "score": 1.0, + "content": "ent descent/ascent training. Denote the minimax objective in Eq. 4 as", + "type": "text" + }, + { + "bbox": [ + 388, + 721, + 419, + 732 + ], + "score": 0.92, + "content": "F ( \\theta , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 721, + 505, + 732 + ], + "score": 1.0, + "content": ". With the generative", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49, + "bbox_fs": [ + 106, + 699, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 217, + 95 + ], + "score": 1.0, + "content": "network parameter fixed at", + "type": "text" + }, + { + "bbox": [ + 218, + 83, + 230, + 94 + ], + "score": 0.89, + "content": "\\phi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 82, + 403, + 95 + ], + "score": 1.0, + "content": ", instead of minimizing the usual objective", + "type": "text" + }, + { + "bbox": [ + 404, + 82, + 441, + 95 + ], + "score": 0.94, + "content": "F ( \\theta , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 82, + 483, + 95 + ], + "score": 1.0, + "content": "to update", + "type": "text" + }, + { + "bbox": [ + 483, + 83, + 489, + 92 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "score": 1.0, + "content": "the discriminator network, we instead try to minimize the regularized objective", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 109, + 367, + 130 + ], + "lines": [ + { + "bbox": [ + 243, + 109, + 367, + 130 + ], + "spans": [ + { + "bbox": [ + 243, + 109, + 367, + 130 + ], + "score": 0.94, + "content": "F ( \\theta , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 } ,", + "type": "interline_equation", + "image_path": "5f4f5ac081762fa2cfb320a8dd08ae68727ff227bc3965079301a23b0bd1cfe3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 243, + 109, + 367, + 130 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 133, + 505, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 133, + 147 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 136, + 141, + 145 + ], + "score": 0.82, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "is the regularization parameter for gradient regularization. Minimizing the gradient norm", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 107, + 145, + 171, + 157 + ], + "score": 0.91, + "content": "\\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 145, + 386, + 158 + ], + "score": 1.0, + "content": "jointly makes sure that the norm of the gradient for", + "type": "text" + }, + { + "bbox": [ + 387, + 146, + 394, + 156 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 145, + 406, + 158 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 406, + 146, + 418, + 156 + ], + "score": 0.89, + "content": "\\phi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "does not grow when", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 153, + 169 + ], + "score": 1.0, + "content": "we update", + "type": "text" + }, + { + "bbox": [ + 153, + 157, + 159, + 166 + ], + "score": 0.84, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 156, + 261, + 169 + ], + "score": 1.0, + "content": "to reduce the objective", + "type": "text" + }, + { + "bbox": [ + 261, + 156, + 298, + 168 + ], + "score": 0.93, + "content": "F ( \\theta , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 156, + 505, + 169 + ], + "score": 1.0, + "content": ". This is important because if the gradient norm", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 166, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 167, + 171, + 180 + ], + "score": 0.92, + "content": "\\| \\nabla _ { \\phi } \\bar { F } ( \\theta , \\phi _ { k } ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 166, + 312, + 180 + ], + "score": 1.0, + "content": "becomes large after an update of", + "type": "text" + }, + { + "bbox": [ + 312, + 167, + 318, + 177 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 166, + 405, + 180 + ], + "score": 1.0, + "content": ", it is easy to update", + "type": "text" + }, + { + "bbox": [ + 405, + 167, + 412, + 178 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 166, + 505, + 180 + ], + "score": 1.0, + "content": "to make the objective", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "large again, leading to zigzagging behaviour and slow convergence. Note that the gradient norm", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "term is zero at a saddle point according to the first-order optimality conditions, so the regularizer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 470, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 342, + 214 + ], + "score": 1.0, + "content": "does not change the set of solutions. With these we update", + "type": "text" + }, + { + "bbox": [ + 342, + 200, + 348, + 210 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 198, + 452, + 214 + ], + "score": 1.0, + "content": "using SGD with step size", + "type": "text" + }, + { + "bbox": [ + 453, + 201, + 466, + 212 + ], + "score": 0.85, + "content": "\\eta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 198, + 470, + 214 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 215, + 430, + 254 + ], + "lines": [ + { + "bbox": [ + 181, + 215, + 430, + 254 + ], + "spans": [ + { + "bbox": [ + 181, + 215, + 430, + 254 + ], + "score": 0.92, + "content": "\\begin{array} { l } { { \\displaystyle \\theta _ { l + 1 } = \\theta _ { l } - \\eta _ { D } \\nabla _ { \\theta } [ F ( \\theta _ { l } , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\| ^ { 2 } ] } } \\\\ { { \\displaystyle \\quad \\quad = \\theta _ { l } - \\eta _ { D } [ \\nabla _ { \\theta } F ( \\theta _ { l } , \\phi _ { k } ) + \\gamma \\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) ] } } \\end{array}", + "type": "interline_equation", + "image_path": "fd46f8b8edb81bf1ca56ee7a4c61ded8e3c174f69ca16e035fcd418460761bb6.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 181, + 215, + 430, + 228.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 181, + 228.0, + 430, + 241.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 181, + 241.0, + 430, + 254.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 244, + 273 + ], + "score": 1.0, + "content": "The Hessian-vector product term", + "type": "text" + }, + { + "bbox": [ + 245, + 258, + 353, + 272 + ], + "score": 0.92, + "content": "\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 257, + 506, + 273 + ], + "score": 1.0, + "content": "can be computed with double back-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "propagation provided by packages like Tensorflow/PyTorch, but we find it faster to compute it with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 350, + 293 + ], + "score": 1.0, + "content": "finite difference approximation. Recall that for a function", + "type": "text" + }, + { + "bbox": [ + 350, + 281, + 370, + 293 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 281, + 430, + 293 + ], + "score": 1.0, + "content": "with gradient", + "type": "text" + }, + { + "bbox": [ + 431, + 281, + 450, + 293 + ], + "score": 0.89, + "content": "g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "and Hessian", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 107, + 292, + 130, + 304 + ], + "score": 0.9, + "content": "H ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 291, + 244, + 306 + ], + "score": 1.0, + "content": ", the Hessian-vector product", + "type": "text" + }, + { + "bbox": [ + 244, + 292, + 273, + 304 + ], + "score": 0.93, + "content": "H ( x ) v", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 291, + 374, + 306 + ], + "score": 1.0, + "content": "can be approximated by", + "type": "text" + }, + { + "bbox": [ + 374, + 292, + 465, + 304 + ], + "score": 0.9, + "content": "( g ( x + h v ) - g ( x ) ) / h", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "for small", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 302, + 309, + 316 + ], + "spans": [ + { + "bbox": [ + 107, + 304, + 114, + 313 + ], + "score": 0.77, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 302, + 309, + 316 + ], + "score": 1.0, + "content": "(Pearlmutter, 1994). Therefore we approximate:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 318, + 435, + 344 + ], + "lines": [ + { + "bbox": [ + 175, + 318, + 435, + 344 + ], + "spans": [ + { + "bbox": [ + 175, + 318, + 435, + 344 + ], + "score": 0.93, + "content": "\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\approx \\nabla _ { \\theta } [ \\frac { F ( \\theta _ { l } , \\phi _ { k } + h v ) - F ( \\theta _ { l } , \\phi _ { k } ) } { h } ] ,", + "type": "interline_equation", + "image_path": "5a8982f963d7e7e9f8395cb52a1d29366dea6675be2946b96396baa3502c8e13.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 175, + 318, + 435, + 344 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 133, + 361 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 347, + 207, + 360 + ], + "score": 0.92, + "content": "v = \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 345, + 252, + 361 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 253, + 348, + 289, + 359 + ], + "score": 0.92, + "content": "\\phi _ { k } + h v", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 345, + 487, + 361 + ], + "score": 1.0, + "content": "is exactly a gradient step for generative network", + "type": "text" + }, + { + "bbox": [ + 487, + 348, + 501, + 360 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 345, + 505, + 361 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 137, + 370 + ], + "score": 1.0, + "content": "Setting", + "type": "text" + }, + { + "bbox": [ + 137, + 360, + 144, + 368 + ], + "score": 0.76, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 358, + 427, + 370 + ], + "score": 1.0, + "content": "to be too small can lead to numerical instability. We therefore correlate", + "type": "text" + }, + { + "bbox": [ + 428, + 359, + 435, + 368 + ], + "score": 0.82, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "with the gradient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 369, + 496, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 173, + 381 + ], + "score": 1.0, + "content": "step size and set", + "type": "text" + }, + { + "bbox": [ + 174, + 369, + 220, + 381 + ], + "score": 0.92, + "content": "h = \\eta _ { G } / 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 369, + 496, + 381 + ], + "score": 1.0, + "content": "to capture the curvature at the scale of the gradient ascent algorithm.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 295, + 398 + ], + "score": 1.0, + "content": "We update the generative network parameters", + "type": "text" + }, + { + "bbox": [ + 295, + 387, + 302, + 398 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "with using (stochastic) gradient ascent. With the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 396, + 405, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 279, + 410 + ], + "score": 1.0, + "content": "discriminative network parameters fixed at", + "type": "text" + }, + { + "bbox": [ + 279, + 398, + 288, + 408 + ], + "score": 0.88, + "content": "\\theta _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 396, + 342, + 410 + ], + "score": 1.0, + "content": "and step size", + "type": "text" + }, + { + "bbox": [ + 343, + 399, + 355, + 409 + ], + "score": 0.85, + "content": "\\eta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 396, + 405, + 410 + ], + "score": 1.0, + "content": ", we update:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 413, + 368, + 427 + ], + "lines": [ + { + "bbox": [ + 242, + 413, + 368, + 427 + ], + "spans": [ + { + "bbox": [ + 242, + 413, + 368, + 427 + ], + "score": 0.92, + "content": "\\phi _ { k + 1 } = \\phi _ { k } + \\eta _ { G } \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) .", + "type": "interline_equation", + "image_path": "89481601b2ec85e5fa8bf9d0afa2e9376c96d6b1aa8684f309254083d964db1a.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 242, + 413, + 368, + 427 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 305, + 443 + ], + "score": 1.0, + "content": "We do not add a gradient regularization term for", + "type": "text" + }, + { + "bbox": [ + 306, + 432, + 313, + 442 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 429, + 505, + 443 + ], + "score": 1.0, + "content": ", since empirically we find that adding gradient", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 441, + 327, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 174, + 455 + ], + "score": 1.0, + "content": "regularization to", + "type": "text" + }, + { + "bbox": [ + 174, + 442, + 181, + 451 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 441, + 327, + 455 + ], + "score": 1.0, + "content": "is sufficient to stabilize the training.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 107, + 466, + 429, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 430, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 430, + 479 + ], + "score": 1.0, + "content": "3.2 GENERATIVE AND DISCRIMINATIVE NETWORK PARAMETER UPDATES", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 498 + ], + "score": 1.0, + "content": "In the experiments we train both the discriminative network and generative network from scratch", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "score": 1.0, + "content": "with random weight initializations. We do not need to pre-train the discriminative network with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "clean examples, or the generative network against some fixed discriminative networks, to arrive at", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 520, + 221, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 221, + 532 + ], + "score": 1.0, + "content": "good saddle point solutions.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 344, + 550 + ], + "score": 1.0, + "content": "In our experiments we find that the discriminative networks", + "type": "text" + }, + { + "bbox": [ + 345, + 537, + 358, + 548 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 536, + 505, + 550 + ], + "score": 1.0, + "content": "we use tend to overpower the gener-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 162, + 560 + ], + "score": 1.0, + "content": "ative network", + "type": "text" + }, + { + "bbox": [ + 162, + 548, + 176, + 560 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "if we just perform simultaneous parameter updates to both networks. This can lead", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 271, + 572 + ], + "score": 1.0, + "content": "to saddle point solutions where it seems", + "type": "text" + }, + { + "bbox": [ + 272, + 559, + 286, + 571 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 558, + 432, + 572 + ], + "score": 1.0, + "content": "cannot be improved locally against", + "type": "text" + }, + { + "bbox": [ + 432, + 559, + 446, + 570 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 558, + 505, + 572 + ], + "score": 1.0, + "content": ", but in reality", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 380, + 584 + ], + "score": 1.0, + "content": "can be made more powerful by just running more gradient steps on", + "type": "text" + }, + { + "bbox": [ + 380, + 570, + 387, + 581 + ], + "score": 0.82, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 570, + 506, + 584 + ], + "score": 1.0, + "content": ". In other words we want the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 356, + 594 + ], + "score": 1.0, + "content": "region around the saddle point solution to be relatively flat for", + "type": "text" + }, + { + "bbox": [ + 356, + 581, + 370, + 593 + ], + "score": 0.92, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 581, + 506, + 594 + ], + "score": 1.0, + "content": ". To make the generative network", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "more powerful so that the discriminative network has a good adversary to train against, we adopt the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 262, + 616 + ], + "score": 1.0, + "content": "following strategy. For each update of", + "type": "text" + }, + { + "bbox": [ + 262, + 603, + 268, + 613 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 603, + 284, + 616 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 284, + 603, + 298, + 614 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 603, + 457, + 616 + ], + "score": 1.0, + "content": ", we perform multiple gradient steps on", + "type": "text" + }, + { + "bbox": [ + 457, + 603, + 465, + 614 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "using the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "same mini-batch. This allows the generative network to learn to map the inputs in the mini-batch to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 625, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 506, + 637 + ], + "score": 1.0, + "content": "adversarial noises with high loss directly, compared to running multiple gradient steps on different", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 635, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 647 + ], + "score": 1.0, + "content": "mini-batches. In the experiments we run 5 gradient steps on each mini-batch. We fix the tradeoff", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 149, + 659 + ], + "score": 1.0, + "content": "parameter", + "type": "text" + }, + { + "bbox": [ + 149, + 647, + 156, + 657 + ], + "score": 0.69, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "(Eq. 4) over loss on clean examples and adversarial loss at 1. We also fix the gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 657, + 438, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 206, + 669 + ], + "score": 1.0, + "content": "regularization parameter", + "type": "text" + }, + { + "bbox": [ + 206, + 659, + 214, + 669 + ], + "score": 0.78, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 657, + 438, + 669 + ], + "score": 1.0, + "content": "(Eq. 8) at 0.01, which works well for different datasets.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 37.5 + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 200, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 201, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 201, + 699 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We implemented our adversarial network approach using Tensorflow(Abadi et al., 2016), with the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "experiments run on several machines each with 4 GTX1080 Ti GPUs. In addition to our adversarial", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.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, + 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, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 217, + 95 + ], + "score": 1.0, + "content": "network parameter fixed at", + "type": "text" + }, + { + "bbox": [ + 218, + 83, + 230, + 94 + ], + "score": 0.89, + "content": "\\phi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 82, + 403, + 95 + ], + "score": 1.0, + "content": ", instead of minimizing the usual objective", + "type": "text" + }, + { + "bbox": [ + 404, + 82, + 441, + 95 + ], + "score": 0.94, + "content": "F ( \\theta , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 82, + 483, + 95 + ], + "score": 1.0, + "content": "to update", + "type": "text" + }, + { + "bbox": [ + 483, + 83, + 489, + 92 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 424, + 106 + ], + "score": 1.0, + "content": "the discriminator network, we instead try to minimize the regularized objective", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 109, + 367, + 130 + ], + "lines": [ + { + "bbox": [ + 243, + 109, + 367, + 130 + ], + "spans": [ + { + "bbox": [ + 243, + 109, + 367, + 130 + ], + "score": 0.94, + "content": "F ( \\theta , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 } ,", + "type": "interline_equation", + "image_path": "5f4f5ac081762fa2cfb320a8dd08ae68727ff227bc3965079301a23b0bd1cfe3.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 243, + 109, + 367, + 130 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 133, + 505, + 212 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 133, + 147 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 136, + 141, + 145 + ], + "score": 0.82, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "is the regularization parameter for gradient regularization. Minimizing the gradient norm", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 107, + 145, + 171, + 157 + ], + "score": 0.91, + "content": "\\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 145, + 386, + 158 + ], + "score": 1.0, + "content": "jointly makes sure that the norm of the gradient for", + "type": "text" + }, + { + "bbox": [ + 387, + 146, + 394, + 156 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 145, + 406, + 158 + ], + "score": 1.0, + "content": "at", + "type": "text" + }, + { + "bbox": [ + 406, + 146, + 418, + 156 + ], + "score": 0.89, + "content": "\\phi _ { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "does not grow when", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 156, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 156, + 153, + 169 + ], + "score": 1.0, + "content": "we update", + "type": "text" + }, + { + "bbox": [ + 153, + 157, + 159, + 166 + ], + "score": 0.84, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 156, + 261, + 169 + ], + "score": 1.0, + "content": "to reduce the objective", + "type": "text" + }, + { + "bbox": [ + 261, + 156, + 298, + 168 + ], + "score": 0.93, + "content": "F ( \\theta , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 156, + 505, + 169 + ], + "score": 1.0, + "content": ". This is important because if the gradient norm", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 107, + 166, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 167, + 171, + 180 + ], + "score": 0.92, + "content": "\\| \\nabla _ { \\phi } \\bar { F } ( \\theta , \\phi _ { k } ) \\| ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 166, + 312, + 180 + ], + "score": 1.0, + "content": "becomes large after an update of", + "type": "text" + }, + { + "bbox": [ + 312, + 167, + 318, + 177 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 166, + 405, + 180 + ], + "score": 1.0, + "content": ", it is easy to update", + "type": "text" + }, + { + "bbox": [ + 405, + 167, + 412, + 178 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 166, + 505, + 180 + ], + "score": 1.0, + "content": "to make the objective", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 505, + 191 + ], + "score": 1.0, + "content": "large again, leading to zigzagging behaviour and slow convergence. Note that the gradient norm", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "term is zero at a saddle point according to the first-order optimality conditions, so the regularizer", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 198, + 470, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 342, + 214 + ], + "score": 1.0, + "content": "does not change the set of solutions. With these we update", + "type": "text" + }, + { + "bbox": [ + 342, + 200, + 348, + 210 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 198, + 452, + 214 + ], + "score": 1.0, + "content": "using SGD with step size", + "type": "text" + }, + { + "bbox": [ + 453, + 201, + 466, + 212 + ], + "score": 0.85, + "content": "\\eta _ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 198, + 470, + 214 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 133, + 505, + 214 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 181, + 215, + 430, + 254 + ], + "lines": [ + { + "bbox": [ + 181, + 215, + 430, + 254 + ], + "spans": [ + { + "bbox": [ + 181, + 215, + 430, + 254 + ], + "score": 0.92, + "content": "\\begin{array} { l } { { \\displaystyle \\theta _ { l + 1 } = \\theta _ { l } - \\eta _ { D } \\nabla _ { \\theta } [ F ( \\theta _ { l } , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\| ^ { 2 } ] } } \\\\ { { \\displaystyle \\quad \\quad = \\theta _ { l } - \\eta _ { D } [ \\nabla _ { \\theta } F ( \\theta _ { l } , \\phi _ { k } ) + \\gamma \\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) ] } } \\end{array}", + "type": "interline_equation", + "image_path": "fd46f8b8edb81bf1ca56ee7a4c61ded8e3c174f69ca16e035fcd418460761bb6.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 181, + 215, + 430, + 228.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 181, + 228.0, + 430, + 241.0 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 181, + 241.0, + 430, + 254.0 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 505, + 315 + ], + "lines": [ + { + "bbox": [ + 105, + 257, + 506, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 244, + 273 + ], + "score": 1.0, + "content": "The Hessian-vector product term", + "type": "text" + }, + { + "bbox": [ + 245, + 258, + 353, + 272 + ], + "score": 0.92, + "content": "\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 257, + 506, + 273 + ], + "score": 1.0, + "content": "can be computed with double back-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "propagation provided by packages like Tensorflow/PyTorch, but we find it faster to compute it with", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 350, + 293 + ], + "score": 1.0, + "content": "finite difference approximation. Recall that for a function", + "type": "text" + }, + { + "bbox": [ + 350, + 281, + 370, + 293 + ], + "score": 0.92, + "content": "f ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 281, + 430, + 293 + ], + "score": 1.0, + "content": "with gradient", + "type": "text" + }, + { + "bbox": [ + 431, + 281, + 450, + 293 + ], + "score": 0.89, + "content": "g ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "and Hessian", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 291, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 107, + 292, + 130, + 304 + ], + "score": 0.9, + "content": "H ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 291, + 244, + 306 + ], + "score": 1.0, + "content": ", the Hessian-vector product", + "type": "text" + }, + { + "bbox": [ + 244, + 292, + 273, + 304 + ], + "score": 0.93, + "content": "H ( x ) v", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 291, + 374, + 306 + ], + "score": 1.0, + "content": "can be approximated by", + "type": "text" + }, + { + "bbox": [ + 374, + 292, + 465, + 304 + ], + "score": 0.9, + "content": "( g ( x + h v ) - g ( x ) ) / h", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 291, + 505, + 306 + ], + "score": 1.0, + "content": "for small", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 302, + 309, + 316 + ], + "spans": [ + { + "bbox": [ + 107, + 304, + 114, + 313 + ], + "score": 0.77, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 302, + 309, + 316 + ], + "score": 1.0, + "content": "(Pearlmutter, 1994). Therefore we approximate:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 257, + 506, + 316 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 175, + 318, + 435, + 344 + ], + "lines": [ + { + "bbox": [ + 175, + 318, + 435, + 344 + ], + "spans": [ + { + "bbox": [ + 175, + 318, + 435, + 344 + ], + "score": 0.93, + "content": "\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\approx \\nabla _ { \\theta } [ \\frac { F ( \\theta _ { l } , \\phi _ { k } + h v ) - F ( \\theta _ { l } , \\phi _ { k } ) } { h } ] ,", + "type": "interline_equation", + "image_path": "5a8982f963d7e7e9f8395cb52a1d29366dea6675be2946b96396baa3502c8e13.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 175, + 318, + 435, + 344 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 505, + 381 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 133, + 361 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 347, + 207, + 360 + ], + "score": 0.92, + "content": "v = \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 345, + 252, + 361 + ], + "score": 1.0, + "content": ". Note that", + "type": "text" + }, + { + "bbox": [ + 253, + 348, + 289, + 359 + ], + "score": 0.92, + "content": "\\phi _ { k } + h v", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 345, + 487, + 361 + ], + "score": 1.0, + "content": "is exactly a gradient step for generative network", + "type": "text" + }, + { + "bbox": [ + 487, + 348, + 501, + 360 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 345, + 505, + 361 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 358, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 358, + 137, + 370 + ], + "score": 1.0, + "content": "Setting", + "type": "text" + }, + { + "bbox": [ + 137, + 360, + 144, + 368 + ], + "score": 0.76, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 358, + 427, + 370 + ], + "score": 1.0, + "content": "to be too small can lead to numerical instability. We therefore correlate", + "type": "text" + }, + { + "bbox": [ + 428, + 359, + 435, + 368 + ], + "score": 0.82, + "content": "h", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 358, + 505, + 370 + ], + "score": 1.0, + "content": "with the gradient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 369, + 496, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 173, + 381 + ], + "score": 1.0, + "content": "step size and set", + "type": "text" + }, + { + "bbox": [ + 174, + 369, + 220, + 381 + ], + "score": 0.92, + "content": "h = \\eta _ { G } / 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 369, + 496, + 381 + ], + "score": 1.0, + "content": "to capture the curvature at the scale of the gradient ascent algorithm.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 345, + 505, + 381 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 504, + 408 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 295, + 398 + ], + "score": 1.0, + "content": "We update the generative network parameters", + "type": "text" + }, + { + "bbox": [ + 295, + 387, + 302, + 398 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "with using (stochastic) gradient ascent. With the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 396, + 405, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 279, + 410 + ], + "score": 1.0, + "content": "discriminative network parameters fixed at", + "type": "text" + }, + { + "bbox": [ + 279, + 398, + 288, + 408 + ], + "score": 0.88, + "content": "\\theta _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 396, + 342, + 410 + ], + "score": 1.0, + "content": "and step size", + "type": "text" + }, + { + "bbox": [ + 343, + 399, + 355, + 409 + ], + "score": 0.85, + "content": "\\eta _ { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 396, + 405, + 410 + ], + "score": 1.0, + "content": ", we update:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 385, + 505, + 410 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 413, + 368, + 427 + ], + "lines": [ + { + "bbox": [ + 242, + 413, + 368, + 427 + ], + "spans": [ + { + "bbox": [ + 242, + 413, + 368, + 427 + ], + "score": 0.92, + "content": "\\phi _ { k + 1 } = \\phi _ { k } + \\eta _ { G } \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) .", + "type": "interline_equation", + "image_path": "89481601b2ec85e5fa8bf9d0afa2e9376c96d6b1aa8684f309254083d964db1a.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 242, + 413, + 368, + 427 + ], + "spans": [], + "index": 24 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 430, + 505, + 453 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 305, + 443 + ], + "score": 1.0, + "content": "We do not add a gradient regularization term for", + "type": "text" + }, + { + "bbox": [ + 306, + 432, + 313, + 442 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 429, + 505, + 443 + ], + "score": 1.0, + "content": ", since empirically we find that adding gradient", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 441, + 327, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 174, + 455 + ], + "score": 1.0, + "content": "regularization to", + "type": "text" + }, + { + "bbox": [ + 174, + 442, + 181, + 451 + ], + "score": 0.8, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 441, + 327, + 455 + ], + "score": 1.0, + "content": "is sufficient to stabilize the training.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 429, + 505, + 455 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 466, + 429, + 478 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 430, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 430, + 479 + ], + "score": 1.0, + "content": "3.2 GENERATIVE AND DISCRIMINATIVE NETWORK PARAMETER UPDATES", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 486, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 498 + ], + "score": 1.0, + "content": "In the experiments we train both the discriminative network and generative network from scratch", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 509 + ], + "score": 1.0, + "content": "with random weight initializations. We do not need to pre-train the discriminative network with", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "clean examples, or the generative network against some fixed discriminative networks, to arrive at", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 520, + 221, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 221, + 532 + ], + "score": 1.0, + "content": "good saddle point solutions.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 488, + 505, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 536, + 505, + 669 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 505, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 344, + 550 + ], + "score": 1.0, + "content": "In our experiments we find that the discriminative networks", + "type": "text" + }, + { + "bbox": [ + 345, + 537, + 358, + 548 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 536, + 505, + 550 + ], + "score": 1.0, + "content": "we use tend to overpower the gener-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 162, + 560 + ], + "score": 1.0, + "content": "ative network", + "type": "text" + }, + { + "bbox": [ + 162, + 548, + 176, + 560 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "if we just perform simultaneous parameter updates to both networks. This can lead", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 558, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 271, + 572 + ], + "score": 1.0, + "content": "to saddle point solutions where it seems", + "type": "text" + }, + { + "bbox": [ + 272, + 559, + 286, + 571 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 558, + 432, + 572 + ], + "score": 1.0, + "content": "cannot be improved locally against", + "type": "text" + }, + { + "bbox": [ + 432, + 559, + 446, + 570 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 558, + 505, + 572 + ], + "score": 1.0, + "content": ", but in reality", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 570, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 380, + 584 + ], + "score": 1.0, + "content": "can be made more powerful by just running more gradient steps on", + "type": "text" + }, + { + "bbox": [ + 380, + 570, + 387, + 581 + ], + "score": 0.82, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 570, + 506, + 584 + ], + "score": 1.0, + "content": ". In other words we want the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 581, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 356, + 594 + ], + "score": 1.0, + "content": "region around the saddle point solution to be relatively flat for", + "type": "text" + }, + { + "bbox": [ + 356, + 581, + 370, + 593 + ], + "score": 0.92, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 581, + 506, + 594 + ], + "score": 1.0, + "content": ". To make the generative network", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 604 + ], + "score": 1.0, + "content": "more powerful so that the discriminative network has a good adversary to train against, we adopt the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 262, + 616 + ], + "score": 1.0, + "content": "following strategy. For each update of", + "type": "text" + }, + { + "bbox": [ + 262, + 603, + 268, + 613 + ], + "score": 0.79, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 603, + 284, + 616 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 284, + 603, + 298, + 614 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 603, + 457, + 616 + ], + "score": 1.0, + "content": ", we perform multiple gradient steps on", + "type": "text" + }, + { + "bbox": [ + 457, + 603, + 465, + 614 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 465, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "using the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "same mini-batch. This allows the generative network to learn to map the inputs in the mini-batch to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 625, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 506, + 637 + ], + "score": 1.0, + "content": "adversarial noises with high loss directly, compared to running multiple gradient steps on different", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 635, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 647 + ], + "score": 1.0, + "content": "mini-batches. In the experiments we run 5 gradient steps on each mini-batch. We fix the tradeoff", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 647, + 505, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 149, + 659 + ], + "score": 1.0, + "content": "parameter", + "type": "text" + }, + { + "bbox": [ + 149, + 647, + 156, + 657 + ], + "score": 0.69, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 647, + 505, + 659 + ], + "score": 1.0, + "content": "(Eq. 4) over loss on clean examples and adversarial loss at 1. We also fix the gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 657, + 438, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 206, + 669 + ], + "score": 1.0, + "content": "regularization parameter", + "type": "text" + }, + { + "bbox": [ + 206, + 659, + 214, + 669 + ], + "score": 0.78, + "content": "\\gamma", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 657, + 438, + 669 + ], + "score": 1.0, + "content": "(Eq. 8) at 0.01, which works well for different datasets.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 536, + 506, + 669 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 685, + 200, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 684, + 201, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 684, + 201, + 699 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "We implemented our adversarial network approach using Tensorflow(Abadi et al., 2016), with the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 732 + ], + "score": 1.0, + "content": "experiments run on several machines each with 4 GTX1080 Ti GPUs. In addition to our adversarial", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 505, + 96 + ], + "score": 1.0, + "content": "networks, we also train standard undefended models and models trained with adversarial training", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "using PGD for comparison. For attacks we focus on the commonly used fast gradient sign (FGS)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 405, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 405, + 117 + ], + "score": 1.0, + "content": "method, and the more powerful projected gradient descent (PGD) method.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 415, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 416, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 416, + 136 + ], + "score": 1.0, + "content": "For the fast gradient sign (FGS) attack, we compute the adversarial image by", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 138, + 392, + 153 + ], + "lines": [ + { + "bbox": [ + 218, + 138, + 392, + 153 + ], + "spans": [ + { + "bbox": [ + 218, + 138, + 392, + 153 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "c2579e7a55a1d162d111ca6a29321133484b4d686fa531f17c71423f4eeebd1c.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 218, + 138, + 392, + 153 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 158, + 447, + 170 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 447, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 133, + 171 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 159, + 158, + 171 + ], + "score": 0.89, + "content": "\\mathrm { P r o j } _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 157, + 383, + 171 + ], + "score": 1.0, + "content": "projects onto the feasible range of rescaled pixel values", + "type": "text" + }, + { + "bbox": [ + 383, + 158, + 393, + 168 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 157, + 447, + 171 + ], + "score": 1.0, + "content": "(e.g., [-1,1]).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 505, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 174, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 504, + 187 + ], + "score": 1.0, + "content": "For the projected gradient descent (PGD) attack, we iterate the fast gradient sign attack multiple", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 186, + 457, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 457, + 199 + ], + "score": 1.0, + "content": "times with projection, with random initialization near the starting point neighbourhood.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 203, + 417, + 237 + ], + "lines": [ + { + "bbox": [ + 193, + 203, + 417, + 237 + ], + "spans": [ + { + "bbox": [ + 193, + 203, + 417, + 237 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { ~ \\hat { x } _ { i } ^ { 0 } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon u \\right) } \\\\ & { \\hat { x } _ { i } ^ { k + 1 } = \\mathrm { P r o j } _ { B _ { \\epsilon } ^ { \\infty } ( x _ { i } ) \\cap X } \\left( \\hat { x } _ { i } ^ { k } + \\delta \\operatorname { s i g n } \\nabla _ { x } \\boldsymbol { l } ( D _ { \\theta } ( \\hat { x } _ { i } ^ { k } ) , y _ { i } ) \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "c925e99614085ec87280984677e77ae923d80fa98aa7802d08edf1823ce3a707.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 193, + 203, + 417, + 220.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 193, + 220.0, + 417, + 237.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 133, + 256 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 243, + 165, + 254 + ], + "score": 0.92, + "content": "u \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 241, + 289, + 256 + ], + "score": 1.0, + "content": "is a uniform random vector in", + "type": "text" + }, + { + "bbox": [ + 289, + 243, + 322, + 255 + ], + "score": 0.89, + "content": "[ - 1 , 1 ] ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 241, + 326, + 256 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 244, + 333, + 253 + ], + "score": 0.68, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 241, + 415, + 256 + ], + "score": 1.0, + "content": "is the step size, and", + "type": "text" + }, + { + "bbox": [ + 415, + 243, + 449, + 255 + ], + "score": 0.93, + "content": "B _ { \\epsilon } ^ { \\infty } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 241, + 472, + 256 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 473, + 244, + 486, + 255 + ], + "score": 0.89, + "content": "\\ell _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 241, + 505, + 256 + ], + "score": 1.0, + "content": "ball", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 254, + 504, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 210, + 266 + ], + "score": 1.0, + "content": "centered around the input", + "type": "text" + }, + { + "bbox": [ + 211, + 256, + 221, + 265 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 254, + 269, + 266 + ], + "score": 1.0, + "content": "with radius", + "type": "text" + }, + { + "bbox": [ + 269, + 257, + 275, + 264 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 254, + 383, + 266 + ], + "score": 1.0, + "content": ". In the experiments we set", + "type": "text" + }, + { + "bbox": [ + 383, + 255, + 389, + 264 + ], + "score": 0.8, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 254, + 504, + 266 + ], + "score": 1.0, + "content": "to be a quarter of the pertur-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 134, + 277 + ], + "score": 1.0, + "content": "bation", + "type": "text" + }, + { + "bbox": [ + 134, + 268, + 139, + 275 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 265, + 160, + 277 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 160, + 265, + 176, + 277 + ], + "score": 0.89, + "content": "\\epsilon / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 265, + 300, + 277 + ], + "score": 1.0, + "content": ", and the number of PGD steps", + "type": "text" + }, + { + "bbox": [ + 300, + 266, + 307, + 275 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "to be 10. We adopt exactly the same PGD attack", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "score": 1.0, + "content": "procedure when generating adversarial examples in PGD adversarial training. Our implementation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 288, + 425, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 425, + 300 + ], + "score": 1.0, + "content": "is available at https://github.com/whxbergkamp/RobustDL_GAN.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "title", + "bbox": [ + 107, + 312, + 165, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 166, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 166, + 326 + ], + "score": 1.0, + "content": "4.1 MNIST", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 378, + 345 + ], + "score": 1.0, + "content": "For MNIST the inputs are black and white images of digits of size", + "type": "text" + }, + { + "bbox": [ + 378, + 334, + 405, + 344 + ], + "score": 0.58, + "content": "2 8 \\mathbf { x } 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "with pixel values scaled", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "between 0 and 1. We rescale the inputs to the range of [-1,1]. Following previous work (Kannan", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 269, + 368 + ], + "score": 1.0, + "content": "et al., 2018), we study perturbations of", + "type": "text" + }, + { + "bbox": [ + 269, + 356, + 304, + 366 + ], + "score": 0.89, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 355, + 505, + 368 + ], + "score": 1.0, + "content": "(in the original scale of [0,1]). We use a simple", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 367, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 504, + 379 + ], + "score": 1.0, + "content": "convolutional neural network similar to LeNet5 as our discriminator networks for all training meth-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "ods. For our adversarial approach we use an encoder-decoder network for the generator. See Model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "score": 1.0, + "content": "D1 and Model G0 in the Appendix for the details of these networks. We use SGD with learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 104, + 399, + 135, + 411 + ], + "score": 1.0, + "content": "rate of", + "type": "text" + }, + { + "bbox": [ + 136, + 399, + 181, + 411 + ], + "score": 0.91, + "content": "\\eta _ { D } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "and momentum 0.9, batch size of 64, and run for 200k iterations for all the dis-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 423, + 422 + ], + "score": 1.0, + "content": "criminative networks. The learning rates are decreased by a factor of 10 after", + "type": "text" + }, + { + "bbox": [ + 423, + 410, + 444, + 421 + ], + "score": 0.43, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "iterations. We", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 248, + 434 + ], + "score": 1.0, + "content": "use SGD with a fixed learning rate", + "type": "text" + }, + { + "bbox": [ + 248, + 421, + 293, + 433 + ], + "score": 0.91, + "content": "\\eta _ { G } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "with momentum 0.9 for the generative network. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "use weight decay of 1E-4 for standard and adversarial PGD training, and 1E-5 for our adversarial", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 217, + 456 + ], + "score": 1.0, + "content": "network approach (for both", + "type": "text" + }, + { + "bbox": [ + 217, + 443, + 231, + 454 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 443, + 248, + 456 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 249, + 443, + 263, + 455 + ], + "score": 0.84, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "). For this dataset we find that we can improve the robustness", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 117, + 467 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 454, + 131, + 465 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 454, + 246, + 467 + ], + "score": 1.0, + "content": "by running more updates on", + "type": "text" + }, + { + "bbox": [ + 246, + 455, + 261, + 466 + ], + "score": 0.88, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 454, + 358, + 467 + ], + "score": 1.0, + "content": ", so we run 5 updates on", + "type": "text" + }, + { + "bbox": [ + 358, + 454, + 372, + 466 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "(each update contains 5 gradient", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 465, + 327, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 309, + 478 + ], + "score": 1.0, + "content": "steps described in Section 3.2 ) for each update on", + "type": "text" + }, + { + "bbox": [ + 309, + 466, + 323, + 476 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 465, + 327, + 478 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 487, + 494 + ], + "score": 1.0, + "content": "Table 1(left) shows the white box attack accuracies of different models, under perturbations of", + "type": "text" + }, + { + "bbox": [ + 488, + 484, + 505, + 493 + ], + "score": 0.82, + "content": "\\epsilon =", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "0.3 for input pixel values between 0 and 1. Adversarial training with PGD performs best under white", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 261, + 515 + ], + "score": 1.0, + "content": "box attacks. Its accuracies stay above", + "type": "text" + }, + { + "bbox": [ + 262, + 504, + 282, + 514 + ], + "score": 0.87, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 504, + 505, + 515 + ], + "score": 1.0, + "content": "under FGS and PGD attacks. Our adversarial network", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "model performs much better than the undefended standard training model, but there is still a gap in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "accuracies compared to the PGD model. However, the PGD model has a small but noticeable drop", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 538, + 488, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 488, + 548 + ], + "score": 1.0, + "content": "in accuracy on clean examples compared to the standard model and adversarial network model.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 553, + 505, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "Table 1(right) shows the black box attack accuracies of different models. We generate the black box", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 445, + 577 + ], + "score": 1.0, + "content": "attack images by running the FGS and PGD attacks on surrogate models A’, B’ and", + "type": "text" + }, + { + "bbox": [ + 445, + 565, + 456, + 575 + ], + "score": 0.28, + "content": "\\mathrm { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ". These sur-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 588 + ], + "score": 1.0, + "content": "rogate models are trained in the same way as their counterparts (standard - A, PGD - B, adversarial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "network - C) with the same network architecture, but using a different random seed. We notice that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "score": 1.0, + "content": "the black box attacks tend to be the most effective on models trained with the same method (A’ on", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 119, + 622 + ], + "score": 1.0, + "content": "A,", + "type": "text" + }, + { + "bbox": [ + 119, + 609, + 131, + 619 + ], + "score": 0.45, + "content": "\\mathbf { B } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 608, + 176, + 622 + ], + "score": 1.0, + "content": "on B, and", + "type": "text" + }, + { + "bbox": [ + 176, + 609, + 187, + 619 + ], + "score": 0.4, + "content": "\\mathrm { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "on C). Although adversarial PGD beats our adversarial network approach on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 619, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 504, + 632 + ], + "score": 1.0, + "content": "white box attacks, they have comparable performance on these black box attacks. Interestingly, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 405, + 643 + ], + "score": 1.0, + "content": "adversarial examples from adversarial PGD (B’) and adversarial networks", + "type": "text" + }, + { + "bbox": [ + 406, + 631, + 423, + 642 + ], + "score": 0.43, + "content": "\\mathbf { \\pi } ( \\mathbf { C } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "do not transfer well", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 641, + 496, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 459, + 653 + ], + "score": 1.0, + "content": "to the undefended standard model. The undefended model still have accuracies between", + "type": "text" + }, + { + "bbox": [ + 459, + 641, + 492, + 652 + ], + "score": 0.86, + "content": "8 5 - 9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 641, + 496, + 653 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39 + }, + { + "type": "title", + "bbox": [ + 107, + 666, + 160, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 162, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 162, + 680 + ], + "score": 1.0, + "content": "4.2 SVHN", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "For the Street View House Number(SVHN) data, we use the original training set, augmented with", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 123, + 709 + ], + "score": 0.61, + "content": "8 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "randomly sampled images from the extra set as our training data. The test set remains the same", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "and we do not perform any preprocessing on the images apart from scaling it to the range of [-1,1].", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 231, + 732 + ], + "score": 1.0, + "content": "We study perturbations of size", + "type": "text" + }, + { + "bbox": [ + 231, + 721, + 268, + 731 + ], + "score": 0.88, + "content": "\\epsilon = 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "(in the range of [0,1]). We use a version of ResNet-18(He", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 5, + "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": [ + 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": "text", + "bbox": [ + 107, + 82, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 505, + 96 + ], + "score": 1.0, + "content": "networks, we also train standard undefended models and models trained with adversarial training", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "using PGD for comparison. For attacks we focus on the commonly used fast gradient sign (FGS)", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 405, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 405, + 117 + ], + "score": 1.0, + "content": "method, and the more powerful projected gradient descent (PGD) method.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 80, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 415, + 133 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 416, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 416, + 136 + ], + "score": 1.0, + "content": "For the fast gradient sign (FGS) attack, we compute the adversarial image by", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 119, + 416, + 136 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 218, + 138, + 392, + 153 + ], + "lines": [ + { + "bbox": [ + 218, + 138, + 392, + 153 + ], + "spans": [ + { + "bbox": [ + 218, + 138, + 392, + 153 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "c2579e7a55a1d162d111ca6a29321133484b4d686fa531f17c71423f4eeebd1c.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 218, + 138, + 392, + 153 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 158, + 447, + 170 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 447, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 133, + 171 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 159, + 158, + 171 + ], + "score": 0.89, + "content": "\\mathrm { P r o j } _ { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 157, + 383, + 171 + ], + "score": 1.0, + "content": "projects onto the feasible range of rescaled pixel values", + "type": "text" + }, + { + "bbox": [ + 383, + 158, + 393, + 168 + ], + "score": 0.81, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 157, + 447, + 171 + ], + "score": 1.0, + "content": "(e.g., [-1,1]).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 157, + 447, + 171 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 505, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 174, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 504, + 187 + ], + "score": 1.0, + "content": "For the projected gradient descent (PGD) attack, we iterate the fast gradient sign attack multiple", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 186, + 457, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 457, + 199 + ], + "score": 1.0, + "content": "times with projection, with random initialization near the starting point neighbourhood.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 174, + 504, + 199 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 193, + 203, + 417, + 237 + ], + "lines": [ + { + "bbox": [ + 193, + 203, + 417, + 237 + ], + "spans": [ + { + "bbox": [ + 193, + 203, + 417, + 237 + ], + "score": 0.92, + "content": "\\begin{array} { r l } & { ~ \\hat { x } _ { i } ^ { 0 } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon u \\right) } \\\\ & { \\hat { x } _ { i } ^ { k + 1 } = \\mathrm { P r o j } _ { B _ { \\epsilon } ^ { \\infty } ( x _ { i } ) \\cap X } \\left( \\hat { x } _ { i } ^ { k } + \\delta \\operatorname { s i g n } \\nabla _ { x } \\boldsymbol { l } ( D _ { \\theta } ( \\hat { x } _ { i } ^ { k } ) , y _ { i } ) \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "c925e99614085ec87280984677e77ae923d80fa98aa7802d08edf1823ce3a707.jpg" + } + ] + } + ], + "index": 8.5, + "virtual_lines": [ + { + "bbox": [ + 193, + 203, + 417, + 220.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 193, + 220.0, + 417, + 237.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 242, + 505, + 299 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 133, + 256 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 243, + 165, + 254 + ], + "score": 0.92, + "content": "u \\in \\mathbb { R } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 241, + 289, + 256 + ], + "score": 1.0, + "content": "is a uniform random vector in", + "type": "text" + }, + { + "bbox": [ + 289, + 243, + 322, + 255 + ], + "score": 0.89, + "content": "[ - 1 , 1 ] ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 241, + 326, + 256 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 244, + 333, + 253 + ], + "score": 0.68, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 241, + 415, + 256 + ], + "score": 1.0, + "content": "is the step size, and", + "type": "text" + }, + { + "bbox": [ + 415, + 243, + 449, + 255 + ], + "score": 0.93, + "content": "B _ { \\epsilon } ^ { \\infty } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 241, + 472, + 256 + ], + "score": 1.0, + "content": "is an", + "type": "text" + }, + { + "bbox": [ + 473, + 244, + 486, + 255 + ], + "score": 0.89, + "content": "\\ell _ { \\infty }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 241, + 505, + 256 + ], + "score": 1.0, + "content": "ball", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 254, + 504, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 210, + 266 + ], + "score": 1.0, + "content": "centered around the input", + "type": "text" + }, + { + "bbox": [ + 211, + 256, + 221, + 265 + ], + "score": 0.85, + "content": "x _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 254, + 269, + 266 + ], + "score": 1.0, + "content": "with radius", + "type": "text" + }, + { + "bbox": [ + 269, + 257, + 275, + 264 + ], + "score": 0.7, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 254, + 383, + 266 + ], + "score": 1.0, + "content": ". In the experiments we set", + "type": "text" + }, + { + "bbox": [ + 383, + 255, + 389, + 264 + ], + "score": 0.8, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 254, + 504, + 266 + ], + "score": 1.0, + "content": "to be a quarter of the pertur-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 265, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 106, + 265, + 134, + 277 + ], + "score": 1.0, + "content": "bation", + "type": "text" + }, + { + "bbox": [ + 134, + 268, + 139, + 275 + ], + "score": 0.66, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 265, + 160, + 277 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 160, + 265, + 176, + 277 + ], + "score": 0.89, + "content": "\\epsilon / 4", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 265, + 300, + 277 + ], + "score": 1.0, + "content": ", and the number of PGD steps", + "type": "text" + }, + { + "bbox": [ + 300, + 266, + 307, + 275 + ], + "score": 0.82, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 265, + 505, + 277 + ], + "score": 1.0, + "content": "to be 10. We adopt exactly the same PGD attack", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 506, + 289 + ], + "score": 1.0, + "content": "procedure when generating adversarial examples in PGD adversarial training. Our implementation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 288, + 425, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 425, + 300 + ], + "score": 1.0, + "content": "is available at https://github.com/whxbergkamp/RobustDL_GAN.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 241, + 506, + 300 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 312, + 165, + 324 + ], + "lines": [ + { + "bbox": [ + 105, + 312, + 166, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 166, + 326 + ], + "score": 1.0, + "content": "4.1 MNIST", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 333, + 505, + 477 + ], + "lines": [ + { + "bbox": [ + 106, + 334, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 106, + 334, + 378, + 345 + ], + "score": 1.0, + "content": "For MNIST the inputs are black and white images of digits of size", + "type": "text" + }, + { + "bbox": [ + 378, + 334, + 405, + 344 + ], + "score": 0.58, + "content": "2 8 \\mathbf { x } 2 8", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 334, + 505, + 345 + ], + "score": 1.0, + "content": "with pixel values scaled", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 505, + 357 + ], + "score": 1.0, + "content": "between 0 and 1. We rescale the inputs to the range of [-1,1]. Following previous work (Kannan", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 355, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 269, + 368 + ], + "score": 1.0, + "content": "et al., 2018), we study perturbations of", + "type": "text" + }, + { + "bbox": [ + 269, + 356, + 304, + 366 + ], + "score": 0.89, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 355, + 505, + 368 + ], + "score": 1.0, + "content": "(in the original scale of [0,1]). We use a simple", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 367, + 504, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 504, + 379 + ], + "score": 1.0, + "content": "convolutional neural network similar to LeNet5 as our discriminator networks for all training meth-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 505, + 390 + ], + "score": 1.0, + "content": "ods. For our adversarial approach we use an encoder-decoder network for the generator. See Model", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "spans": [ + { + "bbox": [ + 104, + 386, + 506, + 402 + ], + "score": 1.0, + "content": "D1 and Model G0 in the Appendix for the details of these networks. We use SGD with learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 104, + 399, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 104, + 399, + 135, + 411 + ], + "score": 1.0, + "content": "rate of", + "type": "text" + }, + { + "bbox": [ + 136, + 399, + 181, + 411 + ], + "score": 0.91, + "content": "\\eta _ { D } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 399, + 505, + 411 + ], + "score": 1.0, + "content": "and momentum 0.9, batch size of 64, and run for 200k iterations for all the dis-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 423, + 422 + ], + "score": 1.0, + "content": "criminative networks. The learning rates are decreased by a factor of 10 after", + "type": "text" + }, + { + "bbox": [ + 423, + 410, + 444, + 421 + ], + "score": 0.43, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "iterations. We", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 421, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 248, + 434 + ], + "score": 1.0, + "content": "use SGD with a fixed learning rate", + "type": "text" + }, + { + "bbox": [ + 248, + 421, + 293, + 433 + ], + "score": 0.91, + "content": "\\eta _ { G } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 421, + 505, + 434 + ], + "score": 1.0, + "content": "with momentum 0.9 for the generative network. We", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "use weight decay of 1E-4 for standard and adversarial PGD training, and 1E-5 for our adversarial", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 443, + 217, + 456 + ], + "score": 1.0, + "content": "network approach (for both", + "type": "text" + }, + { + "bbox": [ + 217, + 443, + 231, + 454 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 443, + 248, + 456 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 249, + 443, + 263, + 455 + ], + "score": 0.84, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "). For this dataset we find that we can improve the robustness", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 454, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 117, + 467 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 117, + 454, + 131, + 465 + ], + "score": 0.89, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 454, + 246, + 467 + ], + "score": 1.0, + "content": "by running more updates on", + "type": "text" + }, + { + "bbox": [ + 246, + 455, + 261, + 466 + ], + "score": 0.88, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 454, + 358, + 467 + ], + "score": 1.0, + "content": ", so we run 5 updates on", + "type": "text" + }, + { + "bbox": [ + 358, + 454, + 372, + 466 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 454, + 505, + 467 + ], + "score": 1.0, + "content": "(each update contains 5 gradient", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 465, + 327, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 309, + 478 + ], + "score": 1.0, + "content": "steps described in Section 3.2 ) for each update on", + "type": "text" + }, + { + "bbox": [ + 309, + 466, + 323, + 476 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 465, + 327, + 478 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 22, + "bbox_fs": [ + 104, + 334, + 506, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 482, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 487, + 494 + ], + "score": 1.0, + "content": "Table 1(left) shows the white box attack accuracies of different models, under perturbations of", + "type": "text" + }, + { + "bbox": [ + 488, + 484, + 505, + 493 + ], + "score": 0.82, + "content": "\\epsilon =", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 505 + ], + "score": 1.0, + "content": "0.3 for input pixel values between 0 and 1. Adversarial training with PGD performs best under white", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 504, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 261, + 515 + ], + "score": 1.0, + "content": "box attacks. Its accuracies stay above", + "type": "text" + }, + { + "bbox": [ + 262, + 504, + 282, + 514 + ], + "score": 0.87, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 504, + 505, + 515 + ], + "score": 1.0, + "content": "under FGS and PGD attacks. Our adversarial network", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 505, + 528 + ], + "score": 1.0, + "content": "model performs much better than the undefended standard training model, but there is still a gap in", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 506, + 539 + ], + "score": 1.0, + "content": "accuracies compared to the PGD model. However, the PGD model has a small but noticeable drop", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 538, + 488, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 488, + 548 + ], + "score": 1.0, + "content": "in accuracy on clean examples compared to the standard model and adversarial network model.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 482, + 506, + 548 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 553, + 505, + 653 + ], + "lines": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 506, + 566 + ], + "score": 1.0, + "content": "Table 1(right) shows the black box attack accuracies of different models. We generate the black box", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 445, + 577 + ], + "score": 1.0, + "content": "attack images by running the FGS and PGD attacks on surrogate models A’, B’ and", + "type": "text" + }, + { + "bbox": [ + 445, + 565, + 456, + 575 + ], + "score": 0.28, + "content": "\\mathrm { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 564, + 506, + 577 + ], + "score": 1.0, + "content": ". These sur-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 575, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 588 + ], + "score": 1.0, + "content": "rogate models are trained in the same way as their counterparts (standard - A, PGD - B, adversarial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 599 + ], + "score": 1.0, + "content": "network - C) with the same network architecture, but using a different random seed. We notice that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "score": 1.0, + "content": "the black box attacks tend to be the most effective on models trained with the same method (A’ on", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 608, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 119, + 622 + ], + "score": 1.0, + "content": "A,", + "type": "text" + }, + { + "bbox": [ + 119, + 609, + 131, + 619 + ], + "score": 0.45, + "content": "\\mathbf { B } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 608, + 176, + 622 + ], + "score": 1.0, + "content": "on B, and", + "type": "text" + }, + { + "bbox": [ + 176, + 609, + 187, + 619 + ], + "score": 0.4, + "content": "\\mathrm { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 608, + 505, + 622 + ], + "score": 1.0, + "content": "on C). Although adversarial PGD beats our adversarial network approach on", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 619, + 504, + 632 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 504, + 632 + ], + "score": 1.0, + "content": "white box attacks, they have comparable performance on these black box attacks. Interestingly, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 405, + 643 + ], + "score": 1.0, + "content": "adversarial examples from adversarial PGD (B’) and adversarial networks", + "type": "text" + }, + { + "bbox": [ + 406, + 631, + 423, + 642 + ], + "score": 0.43, + "content": "\\mathbf { \\pi } ( \\mathbf { C } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 630, + 505, + 643 + ], + "score": 1.0, + "content": "do not transfer well", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 641, + 496, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 459, + 653 + ], + "score": 1.0, + "content": "to the undefended standard model. The undefended model still have accuracies between", + "type": "text" + }, + { + "bbox": [ + 459, + 641, + 492, + 652 + ], + "score": 0.86, + "content": "8 5 - 9 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 641, + 496, + 653 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 553, + 506, + 653 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 666, + 160, + 677 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 162, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 162, + 680 + ], + "score": 1.0, + "content": "4.2 SVHN", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "For the Street View House Number(SVHN) data, we use the original training set, augmented with", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 123, + 709 + ], + "score": 0.61, + "content": "8 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "randomly sampled images from the extra set as our training data. The test set remains the same", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "and we do not perform any preprocessing on the images apart from scaling it to the range of [-1,1].", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 231, + 732 + ], + "score": 1.0, + "content": "We study perturbations of size", + "type": "text" + }, + { + "bbox": [ + 231, + 721, + 268, + 731 + ], + "score": 0.88, + "content": "\\epsilon = 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "(in the range of [0,1]). We use a version of ResNet-18(He", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 687, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 517, + 132 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 517, + 132 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 517, + 132 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 517, + 132 + ], + "score": 0.973, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)PGD(A')FGS(B')PGD(B')))FGS(C')PGD(C')
standard(A)99.40%23.70%0.00%39.49%3.41%90.56%86.10%94.21%91.36%
adversarial PGD(B)98.70%95.46%92.92%95.78%96.18%95.58%95.01%97.05%96.48%
adversarial network(C)99.32%94.66%87.09%95.75%96.19%96.15%95.24%96.96%95.78%
", + "type": "table", + "image_path": "f19eea7773720a72291c9ad7cb663200fb9f6e2610aed6320e288e3bff7ef6f3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 517, + 97.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 97.33333333333333, + 517, + 114.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 114.66666666666666, + 517, + 132.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 117, + 140, + 492, + 152 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 138, + 492, + 154 + ], + "spans": [ + { + "bbox": [ + 118, + 138, + 456, + 154 + ], + "score": 1.0, + "content": "Table 1: Classification accuracies under white box and black box attack on MNIST", + "type": "text" + }, + { + "bbox": [ + 456, + 141, + 488, + 151 + ], + "score": 0.8, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 138, + 492, + 154 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 109, + 165, + 517, + 218 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 165, + 517, + 218 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 165, + 517, + 218 + ], + "spans": [ + { + "bbox": [ + 109, + 165, + 517, + 218 + ], + "score": 0.959, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A')PGD(A')FGS(B’)PGD(B')FGS(C')]PGD(C')
standard(A)96.34%64.64%3.69%69.47% 49.92%56.46%44.25%89.71%83.02%
adversarial PGD(B)87.45%55.94%42.96%85.21%83.46% 59.09%48.20%87.41%83.23%
adversarial network(C)96.34%91.51%37.97%90.02%88.04%75.34%57.52%91.48%81.68%
", + "type": "table", + "image_path": "f9c98d36971fc76b0e16f5aa91111a41e9164ecce27b7bbca6e5e200cbc7b715.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 109, + 165, + 517, + 182.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 109, + 182.66666666666666, + 517, + 200.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 109, + 200.33333333333331, + 517, + 217.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 114, + 226, + 495, + 237 + ], + "lines": [ + { + "bbox": [ + 115, + 223, + 495, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 453, + 240 + ], + "score": 1.0, + "content": "Table 2: Classification accuracies under white box and black box attacks on SVHN", + "type": "text" + }, + { + "bbox": [ + 453, + 227, + 491, + 237 + ], + "score": 0.78, + "content": "\\epsilon = 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 223, + 495, + 240 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 206, + 275 + ], + "score": 1.0, + "content": "et al., 2016) adapted to", + "type": "text" + }, + { + "bbox": [ + 207, + 263, + 233, + 273 + ], + "score": 0.53, + "content": "3 2 \\mathrm { x } 3 2 ", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "images as our discriminative networks. For the generator in our", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 274, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 285 + ], + "score": 1.0, + "content": "adversarial network we use an encoder-decoder network based on residual blocks from ResNet. See", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "Model D2 and Model G1 in the Appendix for details. For the discriminative networks we use SGD", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 190, + 308 + ], + "score": 1.0, + "content": "with learning rate of", + "type": "text" + }, + { + "bbox": [ + 190, + 296, + 234, + 307 + ], + "score": 0.9, + "content": "\\eta _ { D } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "and momentum 0.9, batch size of 64, weight decay of 1E-4 and run", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 306, + 504, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 121, + 317 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 307, + 142, + 317 + ], + "score": 0.43, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 306, + 441, + 317 + ], + "score": 1.0, + "content": "iterations, and then decrease the learning rate to 0.001 and run for another", + "type": "text" + }, + { + "bbox": [ + 441, + 307, + 462, + 317 + ], + "score": 0.29, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 306, + 504, + 317 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 378, + 330 + ], + "score": 1.0, + "content": "For the generative network we use SGD with a fixed learning rate of", + "type": "text" + }, + { + "bbox": [ + 379, + 318, + 422, + 329 + ], + "score": 0.9, + "content": "\\eta _ { G } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "and momentum 0.9,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 329, + 230, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 230, + 341 + ], + "score": 1.0, + "content": "and use weight decay of 1E-4.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 504, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "Table 2(left) shows the white box attack accuracies of the models. Adversarial PGD performs best", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "against PGD attacks, but has lower accuracies on clean data and against FGS attacks, since it is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "difficult to optimize over all three objectives with finite network capacity. Our adversarial network", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "approach has the best accuracies on clean data and against FGS attacks, and also improved accura-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 270, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 270, + 403 + ], + "score": 1.0, + "content": "cies against PGD over standard training.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "Table 2(right) shows the black box attack accuracies of the models. As before A’, B’, C’ are networks", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "trained in the same ways as their counterparts, but with a different random seed. We can see that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "the adversarial network approach performs best across most attacks, except the PGD attack from", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 161, + 452 + ], + "score": 1.0, + "content": "its own copy", + "type": "text" + }, + { + "bbox": [ + 162, + 439, + 172, + 450 + ], + "score": 0.28, + "content": "\\mathbf { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 439, + 505, + 452 + ], + "score": 1.0, + "content": ". It is also interesting to note that for this dataset, adversarial examples generated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 239, + 462 + ], + "score": 1.0, + "content": "from the adversarial PGD model", + "type": "text" + }, + { + "bbox": [ + 240, + 450, + 251, + 460 + ], + "score": 0.46, + "content": "\\mathbf { B } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "have the strongest attack power across all models. In the other", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "two datasets, adversarial examples generated from a model are usually most effective against their", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 289, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 289, + 485 + ], + "score": 1.0, + "content": "counterparts that are trained in the same way.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 107, + 500, + 174, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 175, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 175, + 513 + ], + "score": 1.0, + "content": "4.3 CIFAR10", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 215, + 535 + ], + "score": 1.0, + "content": "For CIFAR10 we scale the", + "type": "text" + }, + { + "bbox": [ + 216, + 523, + 242, + 533 + ], + "score": 0.75, + "content": "3 2 \\mathrm { x } 3 2 ", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "inputs to the range of [-1,1]. We also perform data augmentation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "by randomly padding and cropping the images by at most 4 pixels, and randomly flipping the images", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "left to right. In this experiment we use the same discriminative and generative networks as in SVHN.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 231, + 567 + ], + "score": 1.0, + "content": "We study perturbations of size", + "type": "text" + }, + { + "bbox": [ + 231, + 555, + 276, + 567 + ], + "score": 0.9, + "content": "\\epsilon = 8 / 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 555, + 506, + 567 + ], + "score": 1.0, + "content": ". We train the discriminative networks with batch size of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 201, + 579 + ], + "score": 1.0, + "content": "64, and learning rate of", + "type": "text" + }, + { + "bbox": [ + 202, + 567, + 242, + 578 + ], + "score": 0.91, + "content": "\\eta _ { D } = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "for 100k iterations, and decrease learning rate to 0.01 for another", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 314, + 590 + ], + "score": 1.0, + "content": "100k iterations. We use Adam with learning rate", + "type": "text" + }, + { + "bbox": [ + 315, + 577, + 368, + 588 + ], + "score": 0.88, + "content": "\\eta _ { G } ~ = ~ 0 . 0 0 2", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 576, + 373, + 590 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 374, + 577, + 415, + 588 + ], + "score": 0.88, + "content": "\\beta _ { 1 } ~ = ~ 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 576, + 420, + 590 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 421, + 577, + 473, + 588 + ], + "score": 0.89, + "content": "\\beta _ { 2 } ~ = ~ 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "for the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "generative network. We use weight decay 1E-4 for standard training, and 1E-5 for adversarial PGD", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 600, + 227, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 227, + 610 + ], + "score": 1.0, + "content": "and our adversarial networks.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 438, + 628 + ], + "score": 1.0, + "content": "Table 3(left) shows the white box accuracies of different models under attack with", + "type": "text" + }, + { + "bbox": [ + 438, + 616, + 482, + 628 + ], + "score": 0.91, + "content": "\\epsilon = 8 / 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "PGD model has the best accuracy under PGD attack, but suffer a considerably lower accuracy on", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "clean data and FGS attack. One reason for this is that it is difficult to balance between the objective of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "getting good accuracies on clean examples and good accuracies on very hard PGD attack adversarial", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 674 + ], + "score": 1.0, + "content": "examples with a discriminative network of limited capacity. Our adversarial model is able to keep up", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "with the standard model in terms of accuracies on clean examples, and improve upon it on accuracies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 682, + 230, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 230, + 693 + ], + "score": 1.0, + "content": "against FGS and PGD attacks.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Table 3(right) shows the black box attack accuracies of the models. Our adversarial network method", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "works better than the other approaches in general, except for the PGD attack from the most similar", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "model C’. The adversarial PGD model also works quite well except against its own closest model", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 6, + "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": [ + 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": "table", + "bbox": [ + 108, + 80, + 517, + 132 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 517, + 132 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 517, + 132 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 517, + 132 + ], + "score": 0.973, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)PGD(A')FGS(B')PGD(B')))FGS(C')PGD(C')
standard(A)99.40%23.70%0.00%39.49%3.41%90.56%86.10%94.21%91.36%
adversarial PGD(B)98.70%95.46%92.92%95.78%96.18%95.58%95.01%97.05%96.48%
adversarial network(C)99.32%94.66%87.09%95.75%96.19%96.15%95.24%96.96%95.78%
", + "type": "table", + "image_path": "f19eea7773720a72291c9ad7cb663200fb9f6e2610aed6320e288e3bff7ef6f3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 517, + 97.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 97.33333333333333, + 517, + 114.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 114.66666666666666, + 517, + 132.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 117, + 140, + 492, + 152 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 118, + 138, + 492, + 154 + ], + "spans": [ + { + "bbox": [ + 118, + 138, + 456, + 154 + ], + "score": 1.0, + "content": "Table 1: Classification accuracies under white box and black box attack on MNIST", + "type": "text" + }, + { + "bbox": [ + 456, + 141, + 488, + 151 + ], + "score": 0.8, + "content": "\\epsilon = 0 . 3", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 138, + 492, + 154 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 109, + 165, + 517, + 218 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 165, + 517, + 218 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 165, + 517, + 218 + ], + "spans": [ + { + "bbox": [ + 109, + 165, + 517, + 218 + ], + "score": 0.959, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A')PGD(A')FGS(B’)PGD(B')FGS(C')]PGD(C')
standard(A)96.34%64.64%3.69%69.47% 49.92%56.46%44.25%89.71%83.02%
adversarial PGD(B)87.45%55.94%42.96%85.21%83.46% 59.09%48.20%87.41%83.23%
adversarial network(C)96.34%91.51%37.97%90.02%88.04%75.34%57.52%91.48%81.68%
", + "type": "table", + "image_path": "f9c98d36971fc76b0e16f5aa91111a41e9164ecce27b7bbca6e5e200cbc7b715.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 109, + 165, + 517, + 182.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 109, + 182.66666666666666, + 517, + 200.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 109, + 200.33333333333331, + 517, + 217.99999999999997 + ], + "spans": [], + "index": 6 + } + ] + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 114, + 226, + 495, + 237 + ], + "lines": [ + { + "bbox": [ + 115, + 223, + 495, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 223, + 453, + 240 + ], + "score": 1.0, + "content": "Table 2: Classification accuracies under white box and black box attacks on SVHN", + "type": "text" + }, + { + "bbox": [ + 453, + 227, + 491, + 237 + ], + "score": 0.78, + "content": "\\epsilon = 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 223, + 495, + 240 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 115, + 223, + 495, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 340 + ], + "lines": [ + { + "bbox": [ + 105, + 262, + 505, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 206, + 275 + ], + "score": 1.0, + "content": "et al., 2016) adapted to", + "type": "text" + }, + { + "bbox": [ + 207, + 263, + 233, + 273 + ], + "score": 0.53, + "content": "3 2 \\mathrm { x } 3 2 ", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 262, + 505, + 275 + ], + "score": 1.0, + "content": "images as our discriminative networks. For the generator in our", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 274, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 285 + ], + "score": 1.0, + "content": "adversarial network we use an encoder-decoder network based on residual blocks from ResNet. See", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "Model D2 and Model G1 in the Appendix for details. For the discriminative networks we use SGD", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 296, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 190, + 308 + ], + "score": 1.0, + "content": "with learning rate of", + "type": "text" + }, + { + "bbox": [ + 190, + 296, + 234, + 307 + ], + "score": 0.9, + "content": "\\eta _ { D } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 296, + 505, + 308 + ], + "score": 1.0, + "content": "and momentum 0.9, batch size of 64, weight decay of 1E-4 and run", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 306, + 504, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 121, + 317 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 121, + 307, + 142, + 317 + ], + "score": 0.43, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 306, + 441, + 317 + ], + "score": 1.0, + "content": "iterations, and then decrease the learning rate to 0.001 and run for another", + "type": "text" + }, + { + "bbox": [ + 441, + 307, + 462, + 317 + ], + "score": 0.29, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 306, + 504, + 317 + ], + "score": 1.0, + "content": "iterations.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 378, + 330 + ], + "score": 1.0, + "content": "For the generative network we use SGD with a fixed learning rate of", + "type": "text" + }, + { + "bbox": [ + 379, + 318, + 422, + 329 + ], + "score": 0.9, + "content": "\\eta _ { G } = 0 . 0 1", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "and momentum 0.9,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 329, + 230, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 230, + 341 + ], + "score": 1.0, + "content": "and use weight decay of 1E-4.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 262, + 505, + 341 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 504, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 345, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 345, + 506, + 357 + ], + "score": 1.0, + "content": "Table 2(left) shows the white box attack accuracies of the models. Adversarial PGD performs best", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "against PGD attacks, but has lower accuracies on clean data and against FGS attacks, since it is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 367, + 505, + 379 + ], + "score": 1.0, + "content": "difficult to optimize over all three objectives with finite network capacity. Our adversarial network", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "approach has the best accuracies on clean data and against FGS attacks, and also improved accura-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 388, + 270, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 270, + 403 + ], + "score": 1.0, + "content": "cies against PGD over standard training.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 345, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 406, + 505, + 483 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 418 + ], + "score": 1.0, + "content": "Table 2(right) shows the black box attack accuracies of the models. As before A’, B’, C’ are networks", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 417, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 106, + 417, + 505, + 429 + ], + "score": 1.0, + "content": "trained in the same ways as their counterparts, but with a different random seed. We can see that", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "the adversarial network approach performs best across most attacks, except the PGD attack from", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 439, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 161, + 452 + ], + "score": 1.0, + "content": "its own copy", + "type": "text" + }, + { + "bbox": [ + 162, + 439, + 172, + 450 + ], + "score": 0.28, + "content": "\\mathbf { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 439, + 505, + 452 + ], + "score": 1.0, + "content": ". It is also interesting to note that for this dataset, adversarial examples generated", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 450, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 239, + 462 + ], + "score": 1.0, + "content": "from the adversarial PGD model", + "type": "text" + }, + { + "bbox": [ + 240, + 450, + 251, + 460 + ], + "score": 0.46, + "content": "\\mathbf { B } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 450, + 505, + 462 + ], + "score": 1.0, + "content": "have the strongest attack power across all models. In the other", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "two datasets, adversarial examples generated from a model are usually most effective against their", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 473, + 289, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 289, + 485 + ], + "score": 1.0, + "content": "counterparts that are trained in the same way.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 406, + 505, + 485 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 500, + 174, + 511 + ], + "lines": [ + { + "bbox": [ + 105, + 499, + 175, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 175, + 513 + ], + "score": 1.0, + "content": "4.3 CIFAR10", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 522, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 505, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 215, + 535 + ], + "score": 1.0, + "content": "For CIFAR10 we scale the", + "type": "text" + }, + { + "bbox": [ + 216, + 523, + 242, + 533 + ], + "score": 0.75, + "content": "3 2 \\mathrm { x } 3 2 ", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 521, + 505, + 535 + ], + "score": 1.0, + "content": "inputs to the range of [-1,1]. We also perform data augmentation", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 546 + ], + "score": 1.0, + "content": "by randomly padding and cropping the images by at most 4 pixels, and randomly flipping the images", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "left to right. In this experiment we use the same discriminative and generative networks as in SVHN.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 555, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 231, + 567 + ], + "score": 1.0, + "content": "We study perturbations of size", + "type": "text" + }, + { + "bbox": [ + 231, + 555, + 276, + 567 + ], + "score": 0.9, + "content": "\\epsilon = 8 / 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 555, + 506, + 567 + ], + "score": 1.0, + "content": ". We train the discriminative networks with batch size of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 565, + 201, + 579 + ], + "score": 1.0, + "content": "64, and learning rate of", + "type": "text" + }, + { + "bbox": [ + 202, + 567, + 242, + 578 + ], + "score": 0.91, + "content": "\\eta _ { D } = 0 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "for 100k iterations, and decrease learning rate to 0.01 for another", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 576, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 314, + 590 + ], + "score": 1.0, + "content": "100k iterations. We use Adam with learning rate", + "type": "text" + }, + { + "bbox": [ + 315, + 577, + 368, + 588 + ], + "score": 0.88, + "content": "\\eta _ { G } ~ = ~ 0 . 0 0 2", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 576, + 373, + 590 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 374, + 577, + 415, + 588 + ], + "score": 0.88, + "content": "\\beta _ { 1 } ~ = ~ 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 576, + 420, + 590 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 421, + 577, + 473, + 588 + ], + "score": 0.89, + "content": "\\beta _ { 2 } ~ = ~ 0 . 9 9 9", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 576, + 506, + 590 + ], + "score": 1.0, + "content": "for the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 505, + 600 + ], + "score": 1.0, + "content": "generative network. We use weight decay 1E-4 for standard training, and 1E-5 for adversarial PGD", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 600, + 227, + 610 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 227, + 610 + ], + "score": 1.0, + "content": "and our adversarial networks.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 521, + 506, + 610 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 615, + 505, + 693 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 438, + 628 + ], + "score": 1.0, + "content": "Table 3(left) shows the white box accuracies of different models under attack with", + "type": "text" + }, + { + "bbox": [ + 438, + 616, + 482, + 628 + ], + "score": 0.91, + "content": "\\epsilon = 8 / 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "PGD model has the best accuracy under PGD attack, but suffer a considerably lower accuracy on", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 650 + ], + "score": 1.0, + "content": "clean data and FGS attack. One reason for this is that it is difficult to balance between the objective of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 660 + ], + "score": 1.0, + "content": "getting good accuracies on clean examples and good accuracies on very hard PGD attack adversarial", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 505, + 674 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 505, + 674 + ], + "score": 1.0, + "content": "examples with a discriminative network of limited capacity. Our adversarial model is able to keep up", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 670, + 505, + 684 + ], + "score": 1.0, + "content": "with the standard model in terms of accuracies on clean examples, and improve upon it on accuracies", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 682, + 230, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 230, + 693 + ], + "score": 1.0, + "content": "against FGS and PGD attacks.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 615, + 506, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 711 + ], + "score": 1.0, + "content": "Table 3(right) shows the black box attack accuracies of the models. Our adversarial network method", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 709, + 506, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 721 + ], + "score": 1.0, + "content": "works better than the other approaches in general, except for the PGD attack from the most similar", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "model C’. The adversarial PGD model also works quite well except against its own closest model", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 117, + 324 + ], + "score": 0.48, + "content": "\\mathbf { B } ^ { \\prime }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 118, + 313, + 505, + 326 + ], + "score": 1.0, + "content": ", and offers the smallest drop in accuracies in general. But its overall results are not the best since", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 324, + 458, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 458, + 337 + ], + "score": 1.0, + "content": "it suffers from the disadvantage of having a lower baseline accuracy on clean examples.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 80, + 517, + 133 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 517, + 133 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 517, + 133 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 517, + 133 + ], + "score": 0.973, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B')FGS(C')PGD(C')
standard(A)91.59%57.31%1.32%67.99%22.88%77.13%75.06%73.34%55.34%
adversarial PGD(B)75.30%47.63%41.16%74.04%74.23%57.73%55.72%73.31%73.09%
adversarial network(C)91.08%72.81%44.28%81.74%79.48%77.23%74.04%78.51%66.74%
", + "type": "table", + "image_path": "50f9a2b2a6df14972affc7bb7caedefa8b152db4623eaffcba816d91985e9340.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 517, + 97.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 97.66666666666667, + 517, + 115.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 115.33333333333334, + 517, + 133.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 140, + 502, + 152 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 137, + 502, + 154 + ], + "spans": [ + { + "bbox": [ + 108, + 137, + 453, + 154 + ], + "score": 1.0, + "content": "Table 3: Classification accuracies under white box and black box attack on CIFAR10", + "type": "text" + }, + { + "bbox": [ + 454, + 140, + 500, + 153 + ], + "score": 0.79, + "content": "\\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 137, + 502, + 154 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 107, + 167, + 537, + 257 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 167, + 537, + 257 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 167, + 537, + 257 + ], + "spans": [ + { + "bbox": [ + 107, + 167, + 537, + 257 + ], + "score": 0.978, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B') IFGS(C')PGD(C')
ensemble(MNIST,ε=0.3)98.65%2.52%0.00%90.91% 93.91%90.94%88.12%90.79%89.61%
adv. net(MNIST,ε=0.3)99.03%94.66%87.09%95.75% 96.19%96.15%95.24%96.96%95.78%
ensemble(SVHN,e=0.05)95.30%79.16%2.74%95.32% 93.88%67.97%54.81%95.60%93.21%
adv. net(SVHN,e=0.05)96.34%91.51%37.97%90.02% 88.04%75.34%57.52%91.48%81.68%
ensemble(CIFAR10,e= 887.17%57.91%11.35%85.01% 85.19%68.76%67.41%79.64%70.98%
adv. net(CIFAR10,ε= 2591.08%72.81%44.28%81.74%79.48% 77.23%74.04%78.51%66.74%
", + "type": "table", + "image_path": "39752662d9ddb551f82a1e568fd04f859cd6f9db04032161c587e9569961c33d.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 167, + 537, + 197.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 197.0, + 537, + 227.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 227.0, + 537, + 257.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 264, + 504, + 287 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "Table 4: Classification accuracies under white box and black box attacks on ensemble adversarial", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 276, + 325, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 325, + 287 + ], + "score": 1.0, + "content": "training and adversarial networks on different datasets", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 504, + 336 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 117, + 324 + ], + "score": 0.48, + "content": "\\mathbf { B } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 313, + 505, + 326 + ], + "score": 1.0, + "content": ", and offers the smallest drop in accuracies in general. But its overall results are not the best since", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 324, + 458, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 458, + 337 + ], + "score": 1.0, + "content": "it suffers from the disadvantage of having a lower baseline accuracy on clean examples.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 504, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 504, + 353 + ], + "score": 1.0, + "content": "We have also performed experiments on CIFAR10 using a wider version of ResNet (Zagoruyko &", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "Komodakis, 2016) by multiplying the number of filters by 10 in each of the convolutional layers.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "These wider version of ResNets have higher accuracies, but the relative strengths of the methods", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "are similar to those presented here. In addition we have experiments on CIFAR100, and the results", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "are qualitatively similar to CIFAR10. All these results are presented in the Appendix due to space", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 397, + 156, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 156, + 408 + ], + "score": 1.0, + "content": "restrictions.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 426, + 386, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 387, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 387, + 439 + ], + "score": 1.0, + "content": "4.4 COMPARING AGAINST ENSEMBLE ADVERSARIAL TRAINING", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 449, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "We also compare against a version of ensemble adversarial training (Tramer et al., 2018) on the `", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "above 3 datasets. Ensemble adversarial training works by including adversarial examples generated", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "from static pre-trained models to enlarge the training set, and then train a new model on top of it.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "The quality of solutions depends on the type of adversarial examples included. Here we construct", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "adversarial examples by running FGS (Eq. 10) and PGD (Eq. 11) on an undefended model, i.e.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 461, + 516 + ], + "score": 1.0, + "content": "FGS(A) and PGD(A) in the previous tables. Here for FGS we substitute the target label", + "type": "text" + }, + { + "bbox": [ + 462, + 506, + 469, + 516 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "with the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 214, + 528 + ], + "score": 1.0, + "content": "most likely class arg max", + "type": "text" + }, + { + "bbox": [ + 214, + 515, + 241, + 527 + ], + "score": 0.92, + "content": "\\bar { D _ { \\theta } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "to avoid the problem of label leakage. Following Tramer et al. `", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 527, + 368, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 368, + 539 + ], + "score": 1.0, + "content": "(2018) we also include another attack using the least likely class:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 548, + 396, + 562 + ], + "lines": [ + { + "bbox": [ + 214, + 548, + 396, + 562 + ], + "spans": [ + { + "bbox": [ + 214, + 548, + 396, + 562 + ], + "score": 0.91, + "content": "\\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } - \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { L L } ) \\right) ,", + "type": "interline_equation", + "image_path": "eb990fcab410857dbbc092ed8caf132273e3fda29ded45323073aa77151a64c9.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 214, + 548, + 396, + 562 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 571, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 133, + 584 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 572, + 231, + 584 + ], + "score": 0.91, + "content": "y _ { L L } = \\arg \\operatorname* { m i n } D _ { \\theta } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "is the least likely class. We include all these adversarial examples", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 422, + 595 + ], + "score": 1.0, + "content": "together with the original clean data for training. We use the same perturbations", + "type": "text" + }, + { + "bbox": [ + 422, + 585, + 428, + 593 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "as in the respective", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 594, + 187, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 187, + 606 + ], + "score": 1.0, + "content": "experiments above.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "Table 4 shows the results comparing ensemble adversarial training (EAT) with our adversarial net-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "works approach. On MNIST, adversarial networks is better on white box attacks and also better on", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 633, + 504, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 504, + 645 + ], + "score": 1.0, + "content": "all black box attacks using models trained with standard training(A’), adversarial PGD(B’), and our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "adversarial networks approach(C’) with different random seeds. On SVHN and CIFAR10 adversar-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 655, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 504, + 667 + ], + "score": 1.0, + "content": "ial networks is better on white box attacks, and both methods have wins and losses on the black box", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "attacks, depending on the attacks used. In general adversarial networks seem to have better white", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "box attack accuracies since they are trained dynamically with a varying adversary. The black box", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "accuracies depend a lot on the dataset and the type of attacks used. There is no definitive conclusion", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "on whether training against a static set of adversaries as in EAT or training against a dynamically", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "adjusting adversary as in adversarial networks is a better approach against black box attacks. This", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 315, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 315, + 732 + ], + "score": 1.0, + "content": "is an interesting question requiring further research.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 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": [ + 108, + 80, + 517, + 133 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 80, + 517, + 133 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 80, + 517, + 133 + ], + "spans": [ + { + "bbox": [ + 108, + 80, + 517, + 133 + ], + "score": 0.973, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B')FGS(C')PGD(C')
standard(A)91.59%57.31%1.32%67.99%22.88%77.13%75.06%73.34%55.34%
adversarial PGD(B)75.30%47.63%41.16%74.04%74.23%57.73%55.72%73.31%73.09%
adversarial network(C)91.08%72.81%44.28%81.74%79.48%77.23%74.04%78.51%66.74%
", + "type": "table", + "image_path": "50f9a2b2a6df14972affc7bb7caedefa8b152db4623eaffcba816d91985e9340.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 80, + 517, + 97.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 97.66666666666667, + 517, + 115.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 115.33333333333334, + 517, + 133.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 140, + 502, + 152 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 137, + 502, + 154 + ], + "spans": [ + { + "bbox": [ + 108, + 137, + 453, + 154 + ], + "score": 1.0, + "content": "Table 3: Classification accuracies under white box and black box attack on CIFAR10", + "type": "text" + }, + { + "bbox": [ + 454, + 140, + 500, + 153 + ], + "score": 0.79, + "content": "\\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 137, + 502, + 154 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 107, + 167, + 537, + 257 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 167, + 537, + 257 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 167, + 537, + 257 + ], + "spans": [ + { + "bbox": [ + 107, + 167, + 537, + 257 + ], + "score": 0.978, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B') IFGS(C')PGD(C')
ensemble(MNIST,ε=0.3)98.65%2.52%0.00%90.91% 93.91%90.94%88.12%90.79%89.61%
adv. net(MNIST,ε=0.3)99.03%94.66%87.09%95.75% 96.19%96.15%95.24%96.96%95.78%
ensemble(SVHN,e=0.05)95.30%79.16%2.74%95.32% 93.88%67.97%54.81%95.60%93.21%
adv. net(SVHN,e=0.05)96.34%91.51%37.97%90.02% 88.04%75.34%57.52%91.48%81.68%
ensemble(CIFAR10,e= 887.17%57.91%11.35%85.01% 85.19%68.76%67.41%79.64%70.98%
adv. net(CIFAR10,ε= 2591.08%72.81%44.28%81.74%79.48% 77.23%74.04%78.51%66.74%
", + "type": "table", + "image_path": "39752662d9ddb551f82a1e568fd04f859cd6f9db04032161c587e9569961c33d.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 167, + 537, + 197.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 197.0, + 537, + 227.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 227.0, + 537, + 257.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 264, + 504, + 287 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "Table 4: Classification accuracies under white box and black box attacks on ensemble adversarial", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 276, + 325, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 325, + 287 + ], + "score": 1.0, + "content": "training and adversarial networks on different datasets", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 107, + 313, + 504, + 336 + ], + "lines": [], + "index": 9.5, + "bbox_fs": [ + 105, + 313, + 505, + 337 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 340, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 504, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 504, + 353 + ], + "score": 1.0, + "content": "We have also performed experiments on CIFAR10 using a wider version of ResNet (Zagoruyko &", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "Komodakis, 2016) by multiplying the number of filters by 10 in each of the convolutional layers.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "These wider version of ResNets have higher accuracies, but the relative strengths of the methods", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 505, + 386 + ], + "score": 1.0, + "content": "are similar to those presented here. In addition we have experiments on CIFAR100, and the results", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 399 + ], + "score": 1.0, + "content": "are qualitatively similar to CIFAR10. All these results are presented in the Appendix due to space", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 397, + 156, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 156, + 408 + ], + "score": 1.0, + "content": "restrictions.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 342, + 506, + 408 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 426, + 386, + 438 + ], + "lines": [ + { + "bbox": [ + 106, + 426, + 387, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 387, + 439 + ], + "score": 1.0, + "content": "4.4 COMPARING AGAINST ENSEMBLE ADVERSARIAL TRAINING", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 106, + 449, + 505, + 538 + ], + "lines": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 506, + 462 + ], + "score": 1.0, + "content": "We also compare against a version of ensemble adversarial training (Tramer et al., 2018) on the `", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 506, + 473 + ], + "score": 1.0, + "content": "above 3 datasets. Ensemble adversarial training works by including adversarial examples generated", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "from static pre-trained models to enlarge the training set, and then train a new model on top of it.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 483, + 505, + 495 + ], + "score": 1.0, + "content": "The quality of solutions depends on the type of adversarial examples included. Here we construct", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 506 + ], + "score": 1.0, + "content": "adversarial examples by running FGS (Eq. 10) and PGD (Eq. 11) on an undefended model, i.e.,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 461, + 516 + ], + "score": 1.0, + "content": "FGS(A) and PGD(A) in the previous tables. Here for FGS we substitute the target label", + "type": "text" + }, + { + "bbox": [ + 462, + 506, + 469, + 516 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "with the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 515, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 214, + 528 + ], + "score": 1.0, + "content": "most likely class arg max", + "type": "text" + }, + { + "bbox": [ + 214, + 515, + 241, + 527 + ], + "score": 0.92, + "content": "\\bar { D _ { \\theta } } ( x )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 516, + 505, + 528 + ], + "score": 1.0, + "content": "to avoid the problem of label leakage. Following Tramer et al. `", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 527, + 368, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 368, + 539 + ], + "score": 1.0, + "content": "(2018) we also include another attack using the least likely class:", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 449, + 506, + 539 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 548, + 396, + 562 + ], + "lines": [ + { + "bbox": [ + 214, + 548, + 396, + 562 + ], + "spans": [ + { + "bbox": [ + 214, + 548, + 396, + 562 + ], + "score": 0.91, + "content": "\\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } - \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { L L } ) \\right) ,", + "type": "interline_equation", + "image_path": "eb990fcab410857dbbc092ed8caf132273e3fda29ded45323073aa77151a64c9.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 214, + 548, + 396, + 562 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 571, + 505, + 605 + ], + "lines": [ + { + "bbox": [ + 105, + 571, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 133, + 584 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 572, + 231, + 584 + ], + "score": 0.91, + "content": "y _ { L L } = \\arg \\operatorname* { m i n } D _ { \\theta } ( x _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 571, + 505, + 584 + ], + "score": 1.0, + "content": "is the least likely class. We include all these adversarial examples", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 583, + 422, + 595 + ], + "score": 1.0, + "content": "together with the original clean data for training. We use the same perturbations", + "type": "text" + }, + { + "bbox": [ + 422, + 585, + 428, + 593 + ], + "score": 0.72, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "as in the respective", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 594, + 187, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 187, + 606 + ], + "score": 1.0, + "content": "experiments above.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 571, + 505, + 606 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "Table 4 shows the results comparing ensemble adversarial training (EAT) with our adversarial net-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "works approach. On MNIST, adversarial networks is better on white box attacks and also better on", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 633, + 504, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 504, + 645 + ], + "score": 1.0, + "content": "all black box attacks using models trained with standard training(A’), adversarial PGD(B’), and our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "adversarial networks approach(C’) with different random seeds. On SVHN and CIFAR10 adversar-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 655, + 504, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 504, + 667 + ], + "score": 1.0, + "content": "ial networks is better on white box attacks, and both methods have wins and losses on the black box", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "attacks, depending on the attacks used. In general adversarial networks seem to have better white", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 505, + 690 + ], + "score": 1.0, + "content": "box attack accuracies since they are trained dynamically with a varying adversary. The black box", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "accuracies depend a lot on the dataset and the type of attacks used. There is no definitive conclusion", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "on whether training against a static set of adversaries as in EAT or training against a dynamically", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "adjusting adversary as in adversarial networks is a better approach against black box attacks. This", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 315, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 315, + 732 + ], + "score": 1.0, + "content": "is an interesting question requiring further research.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 611, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "score": 0.976, + "html": "
GeneratorOriginal (A)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.59%90.54%75.71%89.21%
autoencoder(8 filters)31.07%41.40%74.56%84.59%
autoencoder(64 filters)6.08%14.74%75.52%86.64%
random Gaussian45.27%58.68%75.02%87.33%
label11.17%23.29%74.78%82.43%
", + "type": "table", + "image_path": "e259bf98642f50d6aadd89804045cd8c59f91839617fa3dd1932608969a46462.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 502, + 100.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 100.0, + 502, + 121.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 121.0, + 502, + 142.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 151, + 505, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "score": 1.0, + "content": "Table 5: Attack performance of various generator networks against an undefended network in terms", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 413, + 174 + ], + "score": 1.0, + "content": "of test accuracies. First column is the accuracy on the discriminative model", + "type": "text" + }, + { + "bbox": [ + 413, + 162, + 427, + 173 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "that the generative", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 141, + 185 + ], + "score": 1.0, + "content": "attacker", + "type": "text" + }, + { + "bbox": [ + 142, + 173, + 156, + 185 + ], + "score": 0.92, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "is trained on (similar to white box attacks). The next three columns are the attack", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 184, + 410, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 276, + 196 + ], + "score": 1.0, + "content": "accuracies on other models by the learned", + "type": "text" + }, + { + "bbox": [ + 276, + 184, + 290, + 196 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 184, + 410, + 196 + ], + "score": 1.0, + "content": "(similar to black box attacks)", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 107, + 223, + 504, + 287 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 223, + 504, + 287 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 223, + 504, + 287 + ], + "spans": [ + { + "bbox": [ + 107, + 223, + 504, + 287 + ], + "score": 0.977, + "html": "
training method\\attackwhite boxblack box
No NoiseFGSPGDFGS(A')PGD(A')FGS(B')PGD(B')
autoencoder(8 filters)88.70%67.28%33.56%78.94%74.15%70.70%68.54%
autoencoder(64 filters)89.10%67.05%33.38%79.56%74.40%70.52%68.66%
random Gaussian89.73%69.43%35.16%80.09%76.02%71.22%69.66%
label88.72%67.09%37.70%80.95%77.80%70.90%68.81%
", + "type": "table", + "image_path": "15e1682603b5fc77054ead02cd0dfdee831977a7f5820e77dbab800045e1c10c.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 107, + 223, + 504, + 244.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 107, + 244.33333333333334, + 504, + 265.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 265.6666666666667, + 504, + 287.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 294, + 504, + 317 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 295, + 504, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 504, + 306 + ], + "score": 1.0, + "content": "Table 6: Classification accuracies under white box and black box attacks on CIFAR10 for adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 306, + 374, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 325, + 317 + ], + "score": 1.0, + "content": "networks trained with different generative adversaries", + "type": "text" + }, + { + "bbox": [ + 326, + 306, + 372, + 317 + ], + "score": 0.85, + "content": "\\zeta = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 306, + 374, + 317 + ], + "score": 0.525, + "content": ")", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 9.25 + }, + { + "type": "title", + "bbox": [ + 107, + 356, + 313, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 315, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 315, + 369 + ], + "score": 1.0, + "content": "4.5 EXAMINING THE GENERATIVE NETWORKS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "We also did a more in-depth study on the generative network with CIFAR10. We want to understand", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "how the capacity of the generative network affects the quality of saddle point solution, and also", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "the power of the generative networks themselves as adversarial attack methods. First we study the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "ability of the generative networks to learn to attack a fixed undefended discriminative network. The", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "architectures of the generative networks (G1, G2, G3) are described in the Appendix. Here we study", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 166, + 452 + ], + "score": 1.0, + "content": "a narrow (G1,", + "type": "text" + }, + { + "bbox": [ + 167, + 440, + 195, + 450 + ], + "score": 0.87, + "content": "k = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 439, + 300, + 452 + ], + "score": 1.0, + "content": ") and a wide version (G1,", + "type": "text" + }, + { + "bbox": [ + 301, + 440, + 334, + 450 + ], + "score": 0.88, + "content": "k = 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 439, + 506, + 452 + ], + "score": 1.0, + "content": ") of autoencoder networks using the input", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 288, + 464 + ], + "score": 1.0, + "content": "images as inputs, and also decoder networks", + "type": "text" + }, + { + "bbox": [ + 288, + 451, + 309, + 462 + ], + "score": 0.91, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 450, + 439, + 464 + ], + "score": 1.0, + "content": "using random Gaussian vectors", + "type": "text" + }, + { + "bbox": [ + 440, + 450, + 471, + 461 + ], + "score": 0.9, + "content": "z \\in \\mathring { \\mathbb { R } } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "(G2) or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 146, + 474 + ], + "score": 1.0, + "content": "networks", + "type": "text" + }, + { + "bbox": [ + 146, + 461, + 168, + 474 + ], + "score": 0.92, + "content": "G ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 461, + 237, + 474 + ], + "score": 1.0, + "content": "using the labels", + "type": "text" + }, + { + "bbox": [ + 237, + 463, + 244, + 473 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 461, + 383, + 474 + ], + "score": 1.0, + "content": "(G3) as inputs. We run SGD for", + "type": "text" + }, + { + "bbox": [ + 383, + 462, + 405, + 472 + ], + "score": 0.34, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "iterations with step size", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "0.01 and momentum of 0.9, and use weight decay of 1E-5. We report test accuracies on the original", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 484, + 216, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 216, + 495 + ], + "score": 1.0, + "content": "discriminator after attacks.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "From Table 5 the wide autoencoder is more powerful than the narrow autoencoder in attacking the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 512, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 504, + 522 + ], + "score": 1.0, + "content": "undefended discriminator network across different models. As a white-box attack method, the wide", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 335, + 534 + ], + "score": 1.0, + "content": "autoencoder is close to PGD in terms of attack power", + "type": "text" + }, + { + "bbox": [ + 336, + 523, + 364, + 533 + ], + "score": 0.84, + "content": "( 6 . 0 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 522, + 378, + 534 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 379, + 522, + 406, + 533 + ], + "score": 0.86, + "content": "1 . 3 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "in Table 3(left)) on the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 410, + 545 + ], + "score": 1.0, + "content": "undefended model. As a black-box attack method on the undefended model", + "type": "text" + }, + { + "bbox": [ + 410, + 534, + 420, + 543 + ], + "score": 0.42, + "content": "\\mathbf { A } '", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 533, + 505, + 545 + ], + "score": 1.0, + "content": ", it works even better", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 153, + 556 + ], + "score": 1.0, + "content": "than PGD (", + "type": "text" + }, + { + "bbox": [ + 153, + 545, + 185, + 555 + ], + "score": 0.8, + "content": "1 4 . 7 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 545, + 197, + 556 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 198, + 545, + 230, + 555 + ], + "score": 0.89, + "content": "2 2 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "in Table 3(right)). However, on defended models trained with PGD", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "and our adversarial network approach the trained generator networks do not have much effect. PGD", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 566, + 416, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 416, + 578 + ], + "score": 1.0, + "content": "is especially robust with very small drops in accuracies against these attacks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 262, + 595 + ], + "score": 1.0, + "content": "It is interesting that generator network", + "type": "text" + }, + { + "bbox": [ + 262, + 583, + 284, + 595 + ], + "score": 0.92, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 583, + 377, + 595 + ], + "score": 1.0, + "content": "with random Gaussian", + "type": "text" + }, + { + "bbox": [ + 377, + 585, + 384, + 593 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 583, + 439, + 595 + ], + "score": 1.0, + "content": "as inputs and", + "type": "text" + }, + { + "bbox": [ + 440, + 583, + 461, + 595 + ], + "score": 0.92, + "content": "G ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "with label", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 333, + 606 + ], + "score": 1.0, + "content": "as input works well against undefended models A and", + "type": "text" + }, + { + "bbox": [ + 333, + 595, + 344, + 604 + ], + "score": 0.57, + "content": "\\mathbf { A } '", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 594, + 505, + 606 + ], + "score": 1.0, + "content": ", reducing the accuracies by more than", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 126, + 615 + ], + "score": 0.85, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 604, + 401, + 618 + ], + "score": 1.0, + "content": ", even though they are not as effective as using the image as input.", + "type": "text" + }, + { + "bbox": [ + 401, + 605, + 423, + 617 + ], + "score": 0.91, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "is essentially a dis-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "tribution of random adversarial noise that we add to the image without knowing the image or label.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 107, + 627, + 128, + 639 + ], + "score": 0.91, + "content": "G ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "is a generator network with many parameters, but after training it is essentially a set of 10", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 175, + 650 + ], + "score": 1.0, + "content": "class conditional", + "type": "text" + }, + { + "bbox": [ + 176, + 638, + 212, + 649 + ], + "score": 0.86, + "content": "3 2 \\mathbf { x } 3 2 \\mathbf { x } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "filters. We have also performed similar experiments on attacking models", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "trained with adversarial PGD and our adversarial networks using the above generative networks.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 659, + 372, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 372, + 672 + ], + "score": 1.0, + "content": "The results are included in the Appendix due to space restrictions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "We also co-train these different generative networks with our discriminative network (D2) on CI-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "FAR10. The results are shown in Table 6. It is slightly surprising that they all produce very similar", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "performance in terms of white box and black box attacks, even as they have different attack powers", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "against undefended networks. The generative networks do have very similar decoder portions, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 423, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 423, + 734 + ], + "score": 1.0, + "content": "this could be a reason why they all converge to saddle points of similar quality.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40 + } + ], + "page_idx": 8, + "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, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "score": 0.976, + "html": "
GeneratorOriginal (A)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.59%90.54%75.71%89.21%
autoencoder(8 filters)31.07%41.40%74.56%84.59%
autoencoder(64 filters)6.08%14.74%75.52%86.64%
random Gaussian45.27%58.68%75.02%87.33%
label11.17%23.29%74.78%82.43%
", + "type": "table", + "image_path": "e259bf98642f50d6aadd89804045cd8c59f91839617fa3dd1932608969a46462.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 502, + 100.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 100.0, + 502, + 121.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 121.0, + 502, + 142.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 151, + 505, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "score": 1.0, + "content": "Table 5: Attack performance of various generator networks against an undefended network in terms", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 162, + 505, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 413, + 174 + ], + "score": 1.0, + "content": "of test accuracies. First column is the accuracy on the discriminative model", + "type": "text" + }, + { + "bbox": [ + 413, + 162, + 427, + 173 + ], + "score": 0.88, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 162, + 505, + 174 + ], + "score": 1.0, + "content": "that the generative", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 141, + 185 + ], + "score": 1.0, + "content": "attacker", + "type": "text" + }, + { + "bbox": [ + 142, + 173, + 156, + 185 + ], + "score": 0.92, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "is trained on (similar to white box attacks). The next three columns are the attack", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 184, + 410, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 276, + 196 + ], + "score": 1.0, + "content": "accuracies on other models by the learned", + "type": "text" + }, + { + "bbox": [ + 276, + 184, + 290, + 196 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 184, + 410, + 196 + ], + "score": 1.0, + "content": "(similar to black box attacks)", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 107, + 223, + 504, + 287 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 223, + 504, + 287 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 223, + 504, + 287 + ], + "spans": [ + { + "bbox": [ + 107, + 223, + 504, + 287 + ], + "score": 0.977, + "html": "
training method\\attackwhite boxblack box
No NoiseFGSPGDFGS(A')PGD(A')FGS(B')PGD(B')
autoencoder(8 filters)88.70%67.28%33.56%78.94%74.15%70.70%68.54%
autoencoder(64 filters)89.10%67.05%33.38%79.56%74.40%70.52%68.66%
random Gaussian89.73%69.43%35.16%80.09%76.02%71.22%69.66%
label88.72%67.09%37.70%80.95%77.80%70.90%68.81%
", + "type": "table", + "image_path": "15e1682603b5fc77054ead02cd0dfdee831977a7f5820e77dbab800045e1c10c.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 107, + 223, + 504, + 244.33333333333334 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 107, + 244.33333333333334, + 504, + 265.6666666666667 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 107, + 265.6666666666667, + 504, + 287.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 294, + 504, + 317 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 295, + 504, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 504, + 306 + ], + "score": 1.0, + "content": "Table 6: Classification accuracies under white box and black box attacks on CIFAR10 for adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 306, + 374, + 317 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 325, + 317 + ], + "score": 1.0, + "content": "networks trained with different generative adversaries", + "type": "text" + }, + { + "bbox": [ + 326, + 306, + 372, + 317 + ], + "score": 0.85, + "content": "\\zeta = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 306, + 374, + 317 + ], + "score": 0.525, + "content": ")", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + } + ], + "index": 9.25 + }, + { + "type": "title", + "bbox": [ + 107, + 356, + 313, + 367 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 315, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 315, + 369 + ], + "score": 1.0, + "content": "4.5 EXAMINING THE GENERATIVE NETWORKS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 384, + 505, + 495 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "We also did a more in-depth study on the generative network with CIFAR10. We want to understand", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "how the capacity of the generative network affects the quality of saddle point solution, and also", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 506, + 419 + ], + "score": 1.0, + "content": "the power of the generative networks themselves as adversarial attack methods. First we study the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "ability of the generative networks to learn to attack a fixed undefended discriminative network. The", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 504, + 441 + ], + "score": 1.0, + "content": "architectures of the generative networks (G1, G2, G3) are described in the Appendix. Here we study", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 439, + 506, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 166, + 452 + ], + "score": 1.0, + "content": "a narrow (G1,", + "type": "text" + }, + { + "bbox": [ + 167, + 440, + 195, + 450 + ], + "score": 0.87, + "content": "k = 8", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 439, + 300, + 452 + ], + "score": 1.0, + "content": ") and a wide version (G1,", + "type": "text" + }, + { + "bbox": [ + 301, + 440, + 334, + 450 + ], + "score": 0.88, + "content": "k = 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 439, + 506, + 452 + ], + "score": 1.0, + "content": ") of autoencoder networks using the input", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 288, + 464 + ], + "score": 1.0, + "content": "images as inputs, and also decoder networks", + "type": "text" + }, + { + "bbox": [ + 288, + 451, + 309, + 462 + ], + "score": 0.91, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 450, + 439, + 464 + ], + "score": 1.0, + "content": "using random Gaussian vectors", + "type": "text" + }, + { + "bbox": [ + 440, + 450, + 471, + 461 + ], + "score": 0.9, + "content": "z \\in \\mathring { \\mathbb { R } } ^ { d }", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "(G2) or", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 461, + 505, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 146, + 474 + ], + "score": 1.0, + "content": "networks", + "type": "text" + }, + { + "bbox": [ + 146, + 461, + 168, + 474 + ], + "score": 0.92, + "content": "G ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 461, + 237, + 474 + ], + "score": 1.0, + "content": "using the labels", + "type": "text" + }, + { + "bbox": [ + 237, + 463, + 244, + 473 + ], + "score": 0.73, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 461, + 383, + 474 + ], + "score": 1.0, + "content": "(G3) as inputs. We run SGD for", + "type": "text" + }, + { + "bbox": [ + 383, + 462, + 405, + 472 + ], + "score": 0.34, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 461, + 505, + 474 + ], + "score": 1.0, + "content": "iterations with step size", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 105, + 471, + 505, + 485 + ], + "score": 1.0, + "content": "0.01 and momentum of 0.9, and use weight decay of 1E-5. We report test accuracies on the original", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 484, + 216, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 216, + 495 + ], + "score": 1.0, + "content": "discriminator after attacks.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 385, + 506, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "From Table 5 the wide autoencoder is more powerful than the narrow autoencoder in attacking the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 512, + 504, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 512, + 504, + 522 + ], + "score": 1.0, + "content": "undefended discriminator network across different models. As a white-box attack method, the wide", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 335, + 534 + ], + "score": 1.0, + "content": "autoencoder is close to PGD in terms of attack power", + "type": "text" + }, + { + "bbox": [ + 336, + 523, + 364, + 533 + ], + "score": 0.84, + "content": "( 6 . 0 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 522, + 378, + 534 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 379, + 522, + 406, + 533 + ], + "score": 0.86, + "content": "1 . 3 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "in Table 3(left)) on the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 533, + 410, + 545 + ], + "score": 1.0, + "content": "undefended model. As a black-box attack method on the undefended model", + "type": "text" + }, + { + "bbox": [ + 410, + 534, + 420, + 543 + ], + "score": 0.42, + "content": "\\mathbf { A } '", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 533, + 505, + 545 + ], + "score": 1.0, + "content": ", it works even better", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 545, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 153, + 556 + ], + "score": 1.0, + "content": "than PGD (", + "type": "text" + }, + { + "bbox": [ + 153, + 545, + 185, + 555 + ], + "score": 0.8, + "content": "1 4 . 7 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 545, + 197, + 556 + ], + "score": 1.0, + "content": "vs", + "type": "text" + }, + { + "bbox": [ + 198, + 545, + 230, + 555 + ], + "score": 0.89, + "content": "2 2 . 8 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 545, + 505, + 556 + ], + "score": 1.0, + "content": "in Table 3(right)). However, on defended models trained with PGD", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 505, + 568 + ], + "score": 1.0, + "content": "and our adversarial network approach the trained generator networks do not have much effect. PGD", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 566, + 416, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 416, + 578 + ], + "score": 1.0, + "content": "is especially robust with very small drops in accuracies against these attacks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 500, + 505, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 582, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 262, + 595 + ], + "score": 1.0, + "content": "It is interesting that generator network", + "type": "text" + }, + { + "bbox": [ + 262, + 583, + 284, + 595 + ], + "score": 0.92, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 583, + 377, + 595 + ], + "score": 1.0, + "content": "with random Gaussian", + "type": "text" + }, + { + "bbox": [ + 377, + 585, + 384, + 593 + ], + "score": 0.73, + "content": "z", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 583, + 439, + 595 + ], + "score": 1.0, + "content": "as inputs and", + "type": "text" + }, + { + "bbox": [ + 440, + 583, + 461, + 595 + ], + "score": 0.92, + "content": "G ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 583, + 505, + 595 + ], + "score": 1.0, + "content": "with label", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 594, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 333, + 606 + ], + "score": 1.0, + "content": "as input works well against undefended models A and", + "type": "text" + }, + { + "bbox": [ + 333, + 595, + 344, + 604 + ], + "score": 0.57, + "content": "\\mathbf { A } '", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 594, + 505, + 606 + ], + "score": 1.0, + "content": ", reducing the accuracies by more than", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 126, + 615 + ], + "score": 0.85, + "content": "30 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 604, + 401, + 618 + ], + "score": 1.0, + "content": ", even though they are not as effective as using the image as input.", + "type": "text" + }, + { + "bbox": [ + 401, + 605, + 423, + 617 + ], + "score": 0.91, + "content": "G ( z )", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "is essentially a dis-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "tribution of random adversarial noise that we add to the image without knowing the image or label.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 107, + 627, + 128, + 639 + ], + "score": 0.91, + "content": "G ( y )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "is a generator network with many parameters, but after training it is essentially a set of 10", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 175, + 650 + ], + "score": 1.0, + "content": "class conditional", + "type": "text" + }, + { + "bbox": [ + 176, + 638, + 212, + 649 + ], + "score": 0.86, + "content": "3 2 \\mathbf { x } 3 2 \\mathbf { x } 3", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "filters. We have also performed similar experiments on attacking models", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "score": 1.0, + "content": "trained with adversarial PGD and our adversarial networks using the above generative networks.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 659, + 372, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 372, + 672 + ], + "score": 1.0, + "content": "The results are included in the Appendix due to space restrictions.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 583, + 506, + 672 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "We also co-train these different generative networks with our discriminative network (D2) on CI-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "FAR10. The results are shown in Table 6. It is slightly surprising that they all produce very similar", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "performance in terms of white box and black box attacks, even as they have different attack powers", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "against undefended networks. The generative networks do have very similar decoder portions, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 423, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 423, + 734 + ], + "score": 1.0, + "content": "this could be a reason why they all converge to saddle points of similar quality.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 677, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 190, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 191, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 191, + 95 + ], + "score": 1.0, + "content": "4.6 DISCUSSIONS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "In the experiments above we see that adversarial PGD training usually works best on white box", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "attacks, but there is a tradeoff between accuracies on clean data against accuracies on adversarial", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "examples due to finite model capacity. We can try to use models with larger capacity, but there is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 380, + 150 + ], + "score": 1.0, + "content": "always a tradeoff between the two, especially for larger perturbations", + "type": "text" + }, + { + "bbox": [ + 380, + 140, + 385, + 147 + ], + "score": 0.51, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 137, + 505, + 150 + ], + "score": 1.0, + "content": ". There are some recent works", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "score": 1.0, + "content": "that indicate training for standard accuracy and training for adversarial accuracy (e.g., with PGD) are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "two fairly different problems (Schmidt et al., 2018; Tsipras et al., 2018). Examples generated from", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "PGD are particularly difficult to train against. This makes adversarial PGD training disadvantaged", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "score": 1.0, + "content": "in many black box attack situations, when compared with models trained with weaker adversaries,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 192, + 398, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 398, + 204 + ], + "score": 1.0, + "content": "e.g., ensemble adversarial training and our adversarial networks method.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 504, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "We have also observed in the experiments that for black box attacks, the most effective adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "examples are usually those constructed from models trained using the same method but with dif-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "ferent random seed. This suggests hiding the knowledge of the training method from the attacker", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 243, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 253 + ], + "score": 1.0, + "content": "could be an important factor in defending against black box attacks. Defending against black box at-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 253, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 265 + ], + "score": 1.0, + "content": "tacks is closely related to the question of the transferability of adversarial examples. Although there", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "are some previous works exploring this question (Liu et al., 2017), the underlying factors affecting", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 281, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 281, + 286 + ], + "score": 1.0, + "content": "transferability are still not well understood.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 291, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 303 + ], + "score": 1.0, + "content": "In our experimentation with the architectures of the discriminative and generative networks, the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 213, + 314 + ], + "score": 1.0, + "content": "choice of architectures of", + "type": "text" + }, + { + "bbox": [ + 214, + 303, + 228, + 315 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 303, + 505, + 314 + ], + "score": 1.0, + "content": "does not seem to have a big effect on the quality of solution. The", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "dynamics of training, such as the step size used and the number of iterations to run for each network", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 324, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 504, + 337 + ], + "score": 1.0, + "content": "during gradient descent/ascent, seem to have a bigger effect on the saddle point solution quality than", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 334, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 348 + ], + "score": 1.0, + "content": "the network architecture. It would be interesting to find classes of generative network architectures", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "that lead to substantially different saddle points when trained against a particular discriminative", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 369 + ], + "score": 1.0, + "content": "network architecture. Also, recent works have shown that there are connected flat regions in the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "minima of neural network loss landscapes (Garipov et al., 2018; Draxler et al., 2018). We believe", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "that the same might hold true for GANs, and it would be interesting to explore how the training", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 390, + 481, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 481, + 403 + ], + "score": 1.0, + "content": "dynamics can lead to different GAN solutions that might have different robustness properties.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 108, + 407, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "Our approach can be extended with multiple discriminative networks playing against multiple gener-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "ative networks. It can also be combined with ensemble adversarial training, where some adversarial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "examples come from static pre-trained models, while some other come from dynamically adjusting", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 441, + 191, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 191, + 451 + ], + "score": 1.0, + "content": "generative networks.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 470, + 201, + 483 + ], + "lines": [ + { + "bbox": [ + 104, + 468, + 203, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 203, + 487 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "We have proposed an adversarial network approach to learning discriminative neural networks that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "score": 1.0, + "content": "are robust to adversarial noise, especially under black box attacks. For future work we are inter-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 520, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 531 + ], + "score": 1.0, + "content": "ested in extending the experiments to ImageNet, and exploring the choice of architectures of the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 531, + 350, + 542 + ], + "spans": [ + { + "bbox": [ + 107, + 531, + 350, + 542 + ], + "score": 1.0, + "content": "discriminative and generative networks and their interaction.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 561, + 175, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 176, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 176, + 575 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 591, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 505, + 606 + ], + "score": 1.0, + "content": "Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: a system for large-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 604, + 379, + 616 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 379, + 616 + ], + "score": 1.0, + "content": "scale machine learning. In OSDI, volume 16, pp. 265–283, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 504, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 641 + ], + "score": 1.0, + "content": "Shumeet Baluja and Ian Fischer. Adversarial transformation networks: Learning to generate adver-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 639, + 394, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 394, + 651 + ], + "score": 1.0, + "content": "sarial examples. In AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "score": 1.0, + "content": "Jacob Buckman, Aurko Roy, Colin Raffel, and Ian Goodfellow. Thermometer encoding: One hot", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 673, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 115, + 673, + 506, + 688 + ], + "score": 1.0, + "content": "way to resist adversarial examples. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 684, + 143, + 697 + ], + "spans": [ + { + "bbox": [ + 115, + 684, + 143, + 697 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In 2017", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 406, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 406, + 732 + ], + "score": 1.0, + "content": "IEEE Symposium on Security and Privacy (SP), pp. 39–57. IEEE, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2019", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 190, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 191, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 191, + 95 + ], + "score": 1.0, + "content": "4.6 DISCUSSIONS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 104, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "In the experiments above we see that adversarial PGD training usually works best on white box", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 127 + ], + "score": 1.0, + "content": "attacks, but there is a tradeoff between accuracies on clean data against accuracies on adversarial", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "examples due to finite model capacity. We can try to use models with larger capacity, but there is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 380, + 150 + ], + "score": 1.0, + "content": "always a tradeoff between the two, especially for larger perturbations", + "type": "text" + }, + { + "bbox": [ + 380, + 140, + 385, + 147 + ], + "score": 0.51, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 137, + 505, + 150 + ], + "score": 1.0, + "content": ". There are some recent works", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 506, + 162 + ], + "score": 1.0, + "content": "that indicate training for standard accuracy and training for adversarial accuracy (e.g., with PGD) are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 505, + 172 + ], + "score": 1.0, + "content": "two fairly different problems (Schmidt et al., 2018; Tsipras et al., 2018). Examples generated from", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "PGD are particularly difficult to train against. This makes adversarial PGD training disadvantaged", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 194 + ], + "score": 1.0, + "content": "in many black box attack situations, when compared with models trained with weaker adversaries,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 192, + 398, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 398, + 204 + ], + "score": 1.0, + "content": "e.g., ensemble adversarial training and our adversarial networks method.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 104, + 506, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 209, + 504, + 286 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 221 + ], + "score": 1.0, + "content": "We have also observed in the experiments that for black box attacks, the most effective adversarial", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 505, + 232 + ], + "score": 1.0, + "content": "examples are usually those constructed from models trained using the same method but with dif-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "ferent random seed. This suggests hiding the knowledge of the training method from the attacker", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 243, + 505, + 253 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 505, + 253 + ], + "score": 1.0, + "content": "could be an important factor in defending against black box attacks. Defending against black box at-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 253, + 506, + 265 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 506, + 265 + ], + "score": 1.0, + "content": "tacks is closely related to the question of the transferability of adversarial examples. Although there", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "are some previous works exploring this question (Liu et al., 2017), the underlying factors affecting", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 276, + 281, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 276, + 281, + 286 + ], + "score": 1.0, + "content": "transferability are still not well understood.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 209, + 506, + 286 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 291, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 292, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 303 + ], + "score": 1.0, + "content": "In our experimentation with the architectures of the discriminative and generative networks, the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 303, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 213, + 314 + ], + "score": 1.0, + "content": "choice of architectures of", + "type": "text" + }, + { + "bbox": [ + 214, + 303, + 228, + 315 + ], + "score": 0.9, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 303, + 505, + 314 + ], + "score": 1.0, + "content": "does not seem to have a big effect on the quality of solution. The", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 506, + 326 + ], + "score": 1.0, + "content": "dynamics of training, such as the step size used and the number of iterations to run for each network", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 324, + 504, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 504, + 337 + ], + "score": 1.0, + "content": "during gradient descent/ascent, seem to have a bigger effect on the saddle point solution quality than", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 334, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 348 + ], + "score": 1.0, + "content": "the network architecture. It would be interesting to find classes of generative network architectures", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 360 + ], + "score": 1.0, + "content": "that lead to substantially different saddle points when trained against a particular discriminative", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 358, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 505, + 369 + ], + "score": 1.0, + "content": "network architecture. Also, recent works have shown that there are connected flat regions in the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 369, + 505, + 380 + ], + "score": 1.0, + "content": "minima of neural network loss landscapes (Garipov et al., 2018; Draxler et al., 2018). We believe", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "that the same might hold true for GANs, and it would be interesting to explore how the training", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 390, + 481, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 481, + 403 + ], + "score": 1.0, + "content": "dynamics can lead to different GAN solutions that might have different robustness properties.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 292, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 407, + 505, + 451 + ], + "lines": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "Our approach can be extended with multiple discriminative networks playing against multiple gener-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "ative networks. It can also be combined with ensemble adversarial training, where some adversarial", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "examples come from static pre-trained models, while some other come from dynamically adjusting", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 441, + 191, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 191, + 451 + ], + "score": 1.0, + "content": "generative networks.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 407, + 505, + 451 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 470, + 201, + 483 + ], + "lines": [ + { + "bbox": [ + 104, + 468, + 203, + 487 + ], + "spans": [ + { + "bbox": [ + 104, + 468, + 203, + 487 + ], + "score": 1.0, + "content": "5 CONCLUSIONS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 108, + 497, + 504, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "We have proposed an adversarial network approach to learning discriminative neural networks that", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 520 + ], + "score": 1.0, + "content": "are robust to adversarial noise, especially under black box attacks. For future work we are inter-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 520, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 531 + ], + "score": 1.0, + "content": "ested in extending the experiments to ImageNet, and exploring the choice of architectures of the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 531, + 350, + 542 + ], + "spans": [ + { + "bbox": [ + 107, + 531, + 350, + 542 + ], + "score": 1.0, + "content": "discriminative and generative networks and their interaction.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 497, + 506, + 542 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 561, + 175, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 561, + 176, + 575 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 176, + 575 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 581, + 505, + 615 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "Mart´ın Abadi, Paul Barham, Jianmin Chen, Zhifeng Chen, Andy Davis, Jeffrey Dean, Matthieu", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 591, + 505, + 606 + ], + "spans": [ + { + "bbox": [ + 115, + 591, + 505, + 606 + ], + "score": 1.0, + "content": "Devin, Sanjay Ghemawat, Geoffrey Irving, Michael Isard, et al. Tensorflow: a system for large-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 604, + 379, + 616 + ], + "spans": [ + { + "bbox": [ + 116, + 604, + 379, + 616 + ], + "score": 1.0, + "content": "scale machine learning. In OSDI, volume 16, pp. 265–283, 2016.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 106, + 582, + 505, + 616 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 504, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 641 + ], + "score": 1.0, + "content": "Shumeet Baluja and Ian Fischer. Adversarial transformation networks: Learning to generate adver-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 639, + 394, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 394, + 651 + ], + "score": 1.0, + "content": "sarial examples. In AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 626, + 505, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 662, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 505, + 675 + ], + "score": 1.0, + "content": "Jacob Buckman, Aurko Roy, Colin Raffel, and Ian Goodfellow. Thermometer encoding: One hot", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 673, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 115, + 673, + 506, + 688 + ], + "score": 1.0, + "content": "way to resist adversarial examples. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 684, + 143, + 697 + ], + "spans": [ + { + "bbox": [ + 115, + 684, + 143, + 697 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 663, + 506, + 697 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Nicholas Carlini and David Wagner. Towards evaluating the robustness of neural networks. In 2017", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 406, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 406, + 732 + ], + "score": 1.0, + "content": "IEEE Symposium on Security and Privacy (SP), pp. 39–57. IEEE, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "score": 1.0, + "content": "Felix Draxler, Kambis Veschgini, Manfred Salmhofer, and Fred A Hamprecht. Essentially no bar-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "riers in neural network energy landscape. In International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 102, + 144, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 102, + 144, + 117 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 109, + 122, + 503, + 156 + ], + "lines": [ + { + "bbox": [ + 107, + 122, + 504, + 136 + ], + "spans": [ + { + "bbox": [ + 107, + 122, + 504, + 136 + ], + "score": 1.0, + "content": "Timur Garipov, Pavel Izmailov, Dmitrii Podoprikhin, Dmitry P Vetrov, and Andrew Gordon Wilson.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "Loss surfaces, mode connectivity, and fast ensembling of DNNs. Advances in Neural Information", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 224, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 224, + 158 + ], + "score": 1.0, + "content": "Processing Systems, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 174, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 504, + 187 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 317, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 317, + 198 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 504, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 504, + 217 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 419, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 419, + 228 + ], + "score": 1.0, + "content": "examples. In International Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 503, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 248 + ], + "score": 1.0, + "content": "Alex Graves, Abdel-Rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recur-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "rent neural networks. In Acoustics, speech and signal processing (ICASSP), 2013 IEEE Interna-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 256, + 322, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 256, + 322, + 268 + ], + "score": 1.0, + "content": "tional Conference on, pp. 6645–6649. IEEE, 2013.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 290 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 296, + 181, + 309 + ], + "spans": [ + { + "bbox": [ + 116, + 296, + 181, + 309 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 504, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 504, + 328 + ], + "score": 1.0, + "content": "Andrew Ilyas, Ajil Jalal, Eirini Asteri, Constantinos Daskalakis, and Alexandros G Dimakis.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 117, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 117, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "The robust manifold defense: Adversarial training using generative models. arXiv preprint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 338, + 220, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 220, + 349 + ], + "score": 1.0, + "content": "arXiv:1712.09196, 2017.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 105, + 356, + 504, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 370 + ], + "score": 1.0, + "content": "Harini Kannan, Alexey Kurakin, and Ian Goodfellow. Adversarial logit pairing. arXiv preprint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 368, + 219, + 379 + ], + "spans": [ + { + "bbox": [ + 115, + 368, + 219, + 379 + ], + "score": 1.0, + "content": "arXiv:1803.06373, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 504, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convo-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "lutional neural networks. In Advances in Neural Information Processing Systems, pp. 1097–1105,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 408, + 142, + 420 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 142, + 420 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 426, + 504, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 438, + 365, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 438, + 365, + 450 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "Hyeungill Lee, Sungyeob Han, and Jungwoo Lee. Generative adversarial trainer: Defense to adver-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 468, + 406, + 480 + ], + "spans": [ + { + "bbox": [ + 115, + 468, + 406, + 480 + ], + "score": 1.0, + "content": "sarial perturbations with GAN. arXiv preprint arXiv:1705.03387, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Yanpei Liu, Xinyun Chen, Chang Liu, and Dawn Song. Delving into transferable adversarial exam-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 498, + 488, + 511 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 488, + 511 + ], + "score": 1.0, + "content": "ples and black-box attacks. In International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 503, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "Yan Lou, Xavier Boix, Gemma Roig, Tomaso Poggio, and Qi Zhao. Foveation-based mecha-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "nisms alleviate adversarial examples. Technical report, Center for Brains, Minds and Machines", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 117, + 539, + 211, + 550 + ], + "spans": [ + { + "bbox": [ + 117, + 539, + 211, + 550 + ], + "score": 1.0, + "content": "(CBMM), arXiv, 2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 504, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 504, + 569 + ], + "score": 1.0, + "content": "Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 117, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "Towards deep learning models resistant to adversarial attacks. In International Conference on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 579, + 249, + 591 + ], + "spans": [ + { + "bbox": [ + 116, + 579, + 249, + 591 + ], + "score": 1.0, + "content": "Learning Representations, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 104, + 597, + 504, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "score": 1.0, + "content": "Lars Mescheder, Sebastian Nowozin, and Andreas Geiger. The numerics of GANs. In Advances in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 608, + 370, + 621 + ], + "spans": [ + { + "bbox": [ + 115, + 608, + 370, + 621 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 1825–1835, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 504, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "Lars Mescheder, Andreas Geiger, and Sebastian Nowozin. Which training methods for GANs do", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 639, + 489, + 652 + ], + "spans": [ + { + "bbox": [ + 116, + 639, + 489, + 652 + ], + "score": 1.0, + "content": "actually converge? In International Conference on Machine Learning, pp. 3478–3487, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 504, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Belle-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "mare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 680, + 421, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 421, + 693 + ], + "score": 1.0, + "content": "control through deep reinforcement learning. Nature, 518(7540):529, 2015.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "adversarial perturbations. In Proceedings of the IEEE Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 259, + 734 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 259, + 734 + ], + "score": 1.0, + "content": "Recognition, pp. 1765–1773, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 10, + "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, + 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": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 504, + 95 + ], + "score": 1.0, + "content": "Felix Draxler, Kambis Veschgini, Manfred Salmhofer, and Fred A Hamprecht. Essentially no bar-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 115, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "riers in neural network energy landscape. In International Conference on Machine Learning,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 102, + 144, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 102, + 144, + 117 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 122, + 503, + 156 + ], + "lines": [ + { + "bbox": [ + 107, + 122, + 504, + 136 + ], + "spans": [ + { + "bbox": [ + 107, + 122, + 504, + 136 + ], + "score": 1.0, + "content": "Timur Garipov, Pavel Izmailov, Dmitrii Podoprikhin, Dmitry P Vetrov, and Andrew Gordon Wilson.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "Loss surfaces, mode connectivity, and fast ensembling of DNNs. Advances in Neural Information", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 224, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 224, + 158 + ], + "score": 1.0, + "content": "Processing Systems, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 107, + 122, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 163, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jean Pouget-Abadie, Mehdi Mirza, Bing Xu, David Warde-Farley, Sherjil Ozair,", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 174, + 504, + 187 + ], + "spans": [ + { + "bbox": [ + 116, + 174, + 504, + 187 + ], + "score": 1.0, + "content": "Aaron Courville, and Yoshua Bengio. Generative adversarial nets. In Advances in neural infor-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 317, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 317, + 198 + ], + "score": 1.0, + "content": "mation processing systems, pp. 2672–2680, 2014.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 163, + 505, + 198 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 204, + 504, + 228 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 504, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 504, + 217 + ], + "score": 1.0, + "content": "Ian Goodfellow, Jonathon Shlens, and Christian Szegedy. Explaining and harnessing adversarial", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 419, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 419, + 228 + ], + "score": 1.0, + "content": "examples. In International Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 106, + 204, + 504, + 228 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 503, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 233, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 233, + 505, + 248 + ], + "score": 1.0, + "content": "Alex Graves, Abdel-Rahman Mohamed, and Geoffrey Hinton. Speech recognition with deep recur-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 246, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 115, + 246, + 505, + 258 + ], + "score": 1.0, + "content": "rent neural networks. In Acoustics, speech and signal processing (ICASSP), 2013 IEEE Interna-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 256, + 322, + 268 + ], + "spans": [ + { + "bbox": [ + 116, + 256, + 322, + 268 + ], + "score": 1.0, + "content": "tional Conference on, pp. 6645–6649. IEEE, 2013.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 233, + 505, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 290 + ], + "score": 1.0, + "content": "Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "score": 1.0, + "content": "nition. In Proceedings of the IEEE conference on computer vision and pattern recognition, pp.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 296, + 181, + 309 + ], + "spans": [ + { + "bbox": [ + 116, + 296, + 181, + 309 + ], + "score": 1.0, + "content": "770–778, 2016.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 273, + 505, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 504, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 504, + 328 + ], + "score": 1.0, + "content": "Andrew Ilyas, Ajil Jalal, Eirini Asteri, Constantinos Daskalakis, and Alexandros G Dimakis.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 117, + 327, + 505, + 339 + ], + "spans": [ + { + "bbox": [ + 117, + 327, + 505, + 339 + ], + "score": 1.0, + "content": "The robust manifold defense: Adversarial training using generative models. arXiv preprint", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 338, + 220, + 349 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 220, + 349 + ], + "score": 1.0, + "content": "arXiv:1712.09196, 2017.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 316, + 505, + 349 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 356, + 504, + 380 + ], + "lines": [ + { + "bbox": [ + 105, + 355, + 506, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 370 + ], + "score": 1.0, + "content": "Harini Kannan, Alexey Kurakin, and Ian Goodfellow. Adversarial logit pairing. arXiv preprint", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 368, + 219, + 379 + ], + "spans": [ + { + "bbox": [ + 115, + 368, + 219, + 379 + ], + "score": 1.0, + "content": "arXiv:1803.06373, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 355, + 506, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 504, + 420 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. Imagenet classification with deep convo-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 115, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "lutional neural networks. In Advances in Neural Information Processing Systems, pp. 1097–1105,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 408, + 142, + 420 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 142, + 420 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 386, + 505, + 420 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 426, + 504, + 450 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 506, + 441 + ], + "score": 1.0, + "content": "Alexey Kurakin, Ian Goodfellow, and Samy Bengio. Adversarial machine learning at scale. In", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 438, + 365, + 450 + ], + "spans": [ + { + "bbox": [ + 115, + 438, + 365, + 450 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 426, + 506, + 450 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 106, + 457, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 505, + 470 + ], + "score": 1.0, + "content": "Hyeungill Lee, Sungyeob Han, and Jungwoo Lee. Generative adversarial trainer: Defense to adver-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 468, + 406, + 480 + ], + "spans": [ + { + "bbox": [ + 115, + 468, + 406, + 480 + ], + "score": 1.0, + "content": "sarial perturbations with GAN. arXiv preprint arXiv:1705.03387, 2017.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 457, + 505, + 480 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 504, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "Yanpei Liu, Xinyun Chen, Chang Liu, and Dawn Song. Delving into transferable adversarial exam-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 498, + 488, + 511 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 488, + 511 + ], + "score": 1.0, + "content": "ples and black-box attacks. In International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 487, + 505, + 511 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 516, + 503, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 505, + 529 + ], + "score": 1.0, + "content": "Yan Lou, Xavier Boix, Gemma Roig, Tomaso Poggio, and Qi Zhao. Foveation-based mecha-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "nisms alleviate adversarial examples. Technical report, Center for Brains, Minds and Machines", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 117, + 539, + 211, + 550 + ], + "spans": [ + { + "bbox": [ + 117, + 539, + 211, + 550 + ], + "score": 1.0, + "content": "(CBMM), arXiv, 2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 516, + 505, + 550 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 557, + 504, + 591 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 504, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 504, + 569 + ], + "score": 1.0, + "content": "Aleksander Madry, Aleksandar Makelov, Ludwig Schmidt, Dimitris Tsipras, and Adrian Vladu.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 117, + 569, + 505, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 569, + 505, + 581 + ], + "score": 1.0, + "content": "Towards deep learning models resistant to adversarial attacks. In International Conference on", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 579, + 249, + 591 + ], + "spans": [ + { + "bbox": [ + 116, + 579, + 249, + 591 + ], + "score": 1.0, + "content": "Learning Representations, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 106, + 557, + 505, + 591 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 597, + 504, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 611 + ], + "score": 1.0, + "content": "Lars Mescheder, Sebastian Nowozin, and Andreas Geiger. The numerics of GANs. In Advances in", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 608, + 370, + 621 + ], + "spans": [ + { + "bbox": [ + 115, + 608, + 370, + 621 + ], + "score": 1.0, + "content": "Neural Information Processing Systems, pp. 1825–1835, 2017.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 598, + 505, + 621 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 627, + 504, + 651 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 641 + ], + "score": 1.0, + "content": "Lars Mescheder, Andreas Geiger, and Sebastian Nowozin. Which training methods for GANs do", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 639, + 489, + 652 + ], + "spans": [ + { + "bbox": [ + 116, + 639, + 489, + 652 + ], + "score": 1.0, + "content": "actually converge? In International Conference on Machine Learning, pp. 3478–3487, 2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 105, + 627, + 505, + 652 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 657, + 504, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 505, + 671 + ], + "score": 1.0, + "content": "Volodymyr Mnih, Koray Kavukcuoglu, David Silver, Andrei A Rusu, Joel Veness, Marc G Belle-", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "mare, Alex Graves, Martin Riedmiller, Andreas K Fidjeland, Georg Ostrovski, et al. Human-level", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 680, + 421, + 693 + ], + "spans": [ + { + "bbox": [ + 115, + 680, + 421, + 693 + ], + "score": 1.0, + "content": "control through deep reinforcement learning. Nature, 518(7540):529, 2015.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 106, + 657, + 505, + 693 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Seyed-Mohsen Moosavi-Dezfooli, Alhussein Fawzi, Omar Fawzi, and Pascal Frossard. Universal", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "adversarial perturbations. In Proceedings of the IEEE Conference on Computer Vision and Pattern", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 720, + 259, + 734 + ], + "spans": [ + { + "bbox": [ + 116, + 720, + 259, + 734 + ], + "score": 1.0, + "content": "Recognition, pp. 1765–1773, 2017.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 106, + 699, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 97 + ], + "score": 1.0, + "content": "Taesik Na, Jong Hwan Ko, and Saibal Mukhopadhyay. Cascade adversarial machine learning reg-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "ularized with a unified embedding. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 103, + 142, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 103, + 142, + 117 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "score": 1.0, + "content": "Nicolas Papernot, Patrick McDaniel, Somesh Jha, Matt Fredrikson, Z Berkay Celik, and Ananthram", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "Swami. The limitations of deep learning in adversarial settings. In Security and Privacy (Eu-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 413, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 413, + 158 + ], + "score": 1.0, + "content": "roS&P), 2016 IEEE European Symposium on, pp. 372–387. IEEE, 2016a.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Nicolas Papernot, Patrick McDaniel, Xi Wu, Somesh Jha, and Ananthram Swami. Distillation as a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "score": 1.0, + "content": "defense to adversarial perturbations against deep neural networks. In 2016 IEEE Symposium on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 336, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 203, + 198 + ], + "score": 1.0, + "content": "Security and Privacy", + "type": "text" + }, + { + "bbox": [ + 203, + 186, + 220, + 197 + ], + "score": 0.33, + "content": "( S P )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 186, + 336, + 198 + ], + "score": 1.0, + "content": ", pp. 582–597. IEEE, 2016b.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "Nicolas Papernot, Patrick McDaniel, Ian Goodfellow, Somesh Jha, Z Berkay Celik, and Ananthram", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 116, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "Swami. Practical black-box attacks against machine learning. In Proceedings of the 2017 ACM", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 227, + 484, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 484, + 239 + ], + "score": 1.0, + "content": "on Asia Conference on Computer and Communications Security, pp. 506–519. ACM, 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 244, + 504, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "Barak A Pearlmutter. Fast exact multiplication by the Hessian. Neural computation, 6(1):147–160,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 255, + 143, + 269 + ], + "spans": [ + { + "bbox": [ + 115, + 255, + 143, + 269 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "Pouya Samangouei, Maya Kabkab, and Rama Chellappa. Defense-GAN: Protecting classifiers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "score": 1.0, + "content": "against adversarial attacks using generative models. In International Conference on Learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 210, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 210, + 309 + ], + "score": 1.0, + "content": "Representations, 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "Ludwig Schmidt, Shibani Santurkar, Dimitris Tsipras, Kunal Talwar, and Aleksander Madry. Adver-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "sarially robust generalization requires more data. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 337, + 178, + 350 + ], + "spans": [ + { + "bbox": [ + 115, + 337, + 178, + 350 + ], + "score": 1.0, + "content": "Systems, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfel-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "low, and Rob Fergus. Intriguing properties of neural networks. In International Conference on", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 378, + 250, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 378, + 250, + 390 + ], + "score": 1.0, + "content": "Learning Representations, 2014.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 396, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Ian Goodfellow, Dan Boneh, and Patrick Mc- `", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Daniel. Ensemble adversarial training: Attacks and defenses. In International Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 419, + 249, + 431 + ], + "spans": [ + { + "bbox": [ + 116, + 419, + 249, + 431 + ], + "score": 1.0, + "content": "Learning Representations, 2018.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 104, + 437, + 503, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Dimitris Tsipras, Shibani Santurkar, Logan Engstrom, Alexander Turner, and Aleksander Madry.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 448, + 450, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 450, + 461 + ], + "score": 1.0, + "content": "Robustness may be at odds with accuracy. arXiv preprint arXiv:1805.12152, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 467, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "Chaowei Xiao, Bo Li, Jun-Yan Zhu, Warren He, Mingyan Liu, and Dawn Song. Generating adver-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 116, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "sarial examples with adversarial networks. In Proceedings of the Twenty-Seventh International", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 489, + 314, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 489, + 314, + 502 + ], + "score": 1.0, + "content": "Joint Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 105, + 508, + 504, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "Cihang Xie, Jianyu Wang, Zhishuai Zhang, Zhou Ren, and Alan Yuille. Mitigating adversarial", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 520, + 501, + 532 + ], + "spans": [ + { + "bbox": [ + 117, + 520, + 501, + 532 + ], + "score": 1.0, + "content": "effects through randomization. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 538, + 503, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Sergey Zagoruyko and Nikos Komodakis. Wide residual networks. In British Machine Vision", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 549, + 228, + 561 + ], + "spans": [ + { + "bbox": [ + 116, + 549, + 228, + 561 + ], + "score": 1.0, + "content": "Confernece (BMVC), 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 582, + 161, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 163, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 163, + 595 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 227, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 229, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 229, + 618 + ], + "score": 1.0, + "content": "NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Our networks are mostly based on ResNet. Figure 2 shows the residual block used in our networks.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 239, + 650 + ], + "score": 1.0, + "content": "We denote a residual block with", + "type": "text" + }, + { + "bbox": [ + 239, + 639, + 246, + 648 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 637, + 286, + 650 + ], + "score": 1.0, + "content": "copies of", + "type": "text" + }, + { + "bbox": [ + 287, + 638, + 311, + 648 + ], + "score": 0.91, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 637, + 404, + 650 + ], + "score": 1.0, + "content": "filters, with a stride of", + "type": "text" + }, + { + "bbox": [ + 404, + 640, + 410, + 648 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "in the first convolution", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 176, + 661 + ], + "score": 1.0, + "content": "as residual-block", + "type": "text" + }, + { + "bbox": [ + 176, + 649, + 209, + 660 + ], + "score": 0.72, + "content": "( d , s , k )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 649, + 505, + 661 + ], + "score": 1.0, + "content": ". A stride of 2 means the inputs are downsampled by a factor of 2. The", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 660, + 504, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 143, + 672 + ], + "score": 1.0, + "content": "notation", + "type": "text" + }, + { + "bbox": [ + 143, + 660, + 207, + 671 + ], + "score": 0.84, + "content": "\\mathrm { c o n v } 2 \\mathrm { d } ( d , \\ : s , \\ : k )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 660, + 356, + 672 + ], + "score": 1.0, + "content": "refers to a convolutional layer with", + "type": "text" + }, + { + "bbox": [ + 356, + 660, + 363, + 670 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 660, + 405, + 672 + ], + "score": 1.0, + "content": "copies of", + "type": "text" + }, + { + "bbox": [ + 406, + 660, + 431, + 671 + ], + "score": 0.91, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 660, + 504, + 672 + ], + "score": 1.0, + "content": "filters, convolved", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 671, + 504, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 151, + 682 + ], + "score": 1.0, + "content": "with stride", + "type": "text" + }, + { + "bbox": [ + 152, + 673, + 158, + 681 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 671, + 334, + 682 + ], + "score": 1.0, + "content": ", and similarly for the deconvolution deconv", + "type": "text" + }, + { + "bbox": [ + 334, + 671, + 376, + 682 + ], + "score": 0.81, + "content": "2 \\mathrm { d } ( d , s , k )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 671, + 475, + 682 + ], + "score": 1.0, + "content": ". The notations maxpool", + "type": "text" + }, + { + "bbox": [ + 475, + 672, + 487, + 682 + ], + "score": 0.25, + "content": "( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 671, + 504, + 682 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 504, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 415, + 694 + ], + "score": 1.0, + "content": "avgpool(s) denote max-pooling and average pooling operations with strides", + "type": "text" + }, + { + "bbox": [ + 415, + 684, + 421, + 691 + ], + "score": 0.68, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 681, + 504, + 694 + ], + "score": 1.0, + "content": ". FC denotes a fully", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 692, + 362, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 362, + 706 + ], + "score": 1.0, + "content": "connected layer, while BN denotes a batch normalization layer.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Figure 3 shows the discriminative networks used in this paper. D1 is a simple convolutional neural", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "network used in the MNIST experiments. D2 is the standard version of ResNet. Figure 4 shows the", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 11, + "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": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 505, + 97 + ], + "score": 1.0, + "content": "Taesik Na, Jong Hwan Ko, and Saibal Mukhopadhyay. Cascade adversarial machine learning reg-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "ularized with a unified embedding. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 103, + 142, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 103, + 142, + 117 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 80, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 123, + 504, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 505, + 136 + ], + "score": 1.0, + "content": "Nicolas Papernot, Patrick McDaniel, Somesh Jha, Matt Fredrikson, Z Berkay Celik, and Ananthram", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 505, + 147 + ], + "score": 1.0, + "content": "Swami. The limitations of deep learning in adversarial settings. In Security and Privacy (Eu-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 116, + 145, + 413, + 158 + ], + "spans": [ + { + "bbox": [ + 116, + 145, + 413, + 158 + ], + "score": 1.0, + "content": "roS&P), 2016 IEEE European Symposium on, pp. 372–387. IEEE, 2016a.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 122, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 106, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Nicolas Papernot, Patrick McDaniel, Xi Wu, Somesh Jha, and Ananthram Swami. Distillation as a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 115, + 175, + 505, + 188 + ], + "score": 1.0, + "content": "defense to adversarial perturbations against deep neural networks. In 2016 IEEE Symposium on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 186, + 336, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 186, + 203, + 198 + ], + "score": 1.0, + "content": "Security and Privacy", + "type": "text" + }, + { + "bbox": [ + 203, + 186, + 220, + 197 + ], + "score": 0.33, + "content": "( S P )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 186, + 336, + 198 + ], + "score": 1.0, + "content": ", pp. 582–597. IEEE, 2016b.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 163, + 505, + 198 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 505, + 238 + ], + "lines": [ + { + "bbox": [ + 105, + 204, + 506, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 506, + 217 + ], + "score": 1.0, + "content": "Nicolas Papernot, Patrick McDaniel, Ian Goodfellow, Somesh Jha, Z Berkay Celik, and Ananthram", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 215, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 116, + 215, + 505, + 227 + ], + "score": 1.0, + "content": "Swami. Practical black-box attacks against machine learning. In Proceedings of the 2017 ACM", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 227, + 484, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 484, + 239 + ], + "score": 1.0, + "content": "on Asia Conference on Computer and Communications Security, pp. 506–519. ACM, 2017.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 204, + 506, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 244, + 504, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "Barak A Pearlmutter. Fast exact multiplication by the Hessian. Neural computation, 6(1):147–160,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 255, + 143, + 269 + ], + "spans": [ + { + "bbox": [ + 115, + 255, + 143, + 269 + ], + "score": 1.0, + "content": "1994.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 244, + 505, + 269 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 274, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "Pouya Samangouei, Maya Kabkab, and Rama Chellappa. Defense-GAN: Protecting classifiers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 115, + 285, + 505, + 300 + ], + "score": 1.0, + "content": "against adversarial attacks using generative models. In International Conference on Learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 297, + 210, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 297, + 210, + 309 + ], + "score": 1.0, + "content": "Representations, 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 274, + 505, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 315, + 505, + 349 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "Ludwig Schmidt, Shibani Santurkar, Dimitris Tsipras, Kunal Talwar, and Aleksander Madry. Adver-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 115, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "sarially robust generalization requires more data. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 337, + 178, + 350 + ], + "spans": [ + { + "bbox": [ + 115, + 337, + 178, + 350 + ], + "score": 1.0, + "content": "Systems, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 315, + 505, + 350 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 356, + 505, + 390 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "Christian Szegedy, Wojciech Zaremba, Ilya Sutskever, Joan Bruna, Dumitru Erhan, Ian Goodfel-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 116, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "low, and Rob Fergus. Intriguing properties of neural networks. In International Conference on", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 378, + 250, + 390 + ], + "spans": [ + { + "bbox": [ + 116, + 378, + 250, + 390 + ], + "score": 1.0, + "content": "Learning Representations, 2014.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 106, + 356, + 505, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 396, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "Florian Tramer, Alexey Kurakin, Nicolas Papernot, Ian Goodfellow, Dan Boneh, and Patrick Mc- `", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 115, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Daniel. Ensemble adversarial training: Attacks and defenses. In International Conference on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 419, + 249, + 431 + ], + "spans": [ + { + "bbox": [ + 116, + 419, + 249, + 431 + ], + "score": 1.0, + "content": "Learning Representations, 2018.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 396, + 506, + 431 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 437, + 503, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "score": 1.0, + "content": "Dimitris Tsipras, Shibani Santurkar, Logan Engstrom, Alexander Turner, and Aleksander Madry.", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 448, + 450, + 461 + ], + "spans": [ + { + "bbox": [ + 115, + 448, + 450, + 461 + ], + "score": 1.0, + "content": "Robustness may be at odds with accuracy. arXiv preprint arXiv:1805.12152, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 437, + 505, + 461 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 467, + 504, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 505, + 480 + ], + "score": 1.0, + "content": "Chaowei Xiao, Bo Li, Jun-Yan Zhu, Warren He, Mingyan Liu, and Dawn Song. Generating adver-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 116, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "sarial examples with adversarial networks. In Proceedings of the Twenty-Seventh International", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 489, + 314, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 489, + 314, + 502 + ], + "score": 1.0, + "content": "Joint Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 467, + 505, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 508, + 504, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 505, + 521 + ], + "score": 1.0, + "content": "Cihang Xie, Jianyu Wang, Zhishuai Zhang, Zhou Ren, and Alan Yuille. Mitigating adversarial", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 520, + 501, + 532 + ], + "spans": [ + { + "bbox": [ + 117, + 520, + 501, + 532 + ], + "score": 1.0, + "content": "effects through randomization. In International Conference on Learning Representations, 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 508, + 505, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 538, + 503, + 560 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Sergey Zagoruyko and Nikos Komodakis. Wide residual networks. In British Machine Vision", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 549, + 228, + 561 + ], + "spans": [ + { + "bbox": [ + 116, + 549, + 228, + 561 + ], + "score": 1.0, + "content": "Confernece (BMVC), 2016.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 537, + 505, + 561 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 582, + 161, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 582, + 163, + 595 + ], + "spans": [ + { + "bbox": [ + 106, + 582, + 163, + 595 + ], + "score": 1.0, + "content": "APPENDIX", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 108, + 606, + 227, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 606, + 229, + 618 + ], + "spans": [ + { + "bbox": [ + 106, + 606, + 229, + 618 + ], + "score": 1.0, + "content": "NETWORK ARCHITECTURES", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 639 + ], + "score": 1.0, + "content": "Our networks are mostly based on ResNet. Figure 2 shows the residual block used in our networks.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 239, + 650 + ], + "score": 1.0, + "content": "We denote a residual block with", + "type": "text" + }, + { + "bbox": [ + 239, + 639, + 246, + 648 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 637, + 286, + 650 + ], + "score": 1.0, + "content": "copies of", + "type": "text" + }, + { + "bbox": [ + 287, + 638, + 311, + 648 + ], + "score": 0.91, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 637, + 404, + 650 + ], + "score": 1.0, + "content": "filters, with a stride of", + "type": "text" + }, + { + "bbox": [ + 404, + 640, + 410, + 648 + ], + "score": 0.76, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "in the first convolution", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 176, + 661 + ], + "score": 1.0, + "content": "as residual-block", + "type": "text" + }, + { + "bbox": [ + 176, + 649, + 209, + 660 + ], + "score": 0.72, + "content": "( d , s , k )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 649, + 505, + 661 + ], + "score": 1.0, + "content": ". A stride of 2 means the inputs are downsampled by a factor of 2. The", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 660, + 504, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 143, + 672 + ], + "score": 1.0, + "content": "notation", + "type": "text" + }, + { + "bbox": [ + 143, + 660, + 207, + 671 + ], + "score": 0.84, + "content": "\\mathrm { c o n v } 2 \\mathrm { d } ( d , \\ : s , \\ : k )", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 660, + 356, + 672 + ], + "score": 1.0, + "content": "refers to a convolutional layer with", + "type": "text" + }, + { + "bbox": [ + 356, + 660, + 363, + 670 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 660, + 405, + 672 + ], + "score": 1.0, + "content": "copies of", + "type": "text" + }, + { + "bbox": [ + 406, + 660, + 431, + 671 + ], + "score": 0.91, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 660, + 504, + 672 + ], + "score": 1.0, + "content": "filters, convolved", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 671, + 504, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 151, + 682 + ], + "score": 1.0, + "content": "with stride", + "type": "text" + }, + { + "bbox": [ + 152, + 673, + 158, + 681 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 671, + 334, + 682 + ], + "score": 1.0, + "content": ", and similarly for the deconvolution deconv", + "type": "text" + }, + { + "bbox": [ + 334, + 671, + 376, + 682 + ], + "score": 0.81, + "content": "2 \\mathrm { d } ( d , s , k )", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 671, + 475, + 682 + ], + "score": 1.0, + "content": ". The notations maxpool", + "type": "text" + }, + { + "bbox": [ + 475, + 672, + 487, + 682 + ], + "score": 0.25, + "content": "( s )", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 671, + 504, + 682 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 504, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 415, + 694 + ], + "score": 1.0, + "content": "avgpool(s) denote max-pooling and average pooling operations with strides", + "type": "text" + }, + { + "bbox": [ + 415, + 684, + 421, + 691 + ], + "score": 0.68, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 681, + 504, + 694 + ], + "score": 1.0, + "content": ". FC denotes a fully", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 692, + 362, + 706 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 362, + 706 + ], + "score": 1.0, + "content": "connected layer, while BN denotes a batch normalization layer.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 626, + 505, + 706 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Figure 3 shows the discriminative networks used in this paper. D1 is a simple convolutional neural", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "network used in the MNIST experiments. D2 is the standard version of ResNet. Figure 4 shows the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "generative networks used in this paper. G0 and G1 are encoder-decoder networks, while G2 and G3", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "are decoder networks using a random vector and a one-hot encoding of the label respectively. The", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 451, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 310, + 462 + ], + "score": 1.0, + "content": "generative networks are parameterized by a factor", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 311, + 451, + 317, + 460 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 318, + 451, + 505, + 462 + ], + "score": 1.0, + "content": "determining the number of filters used (width", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 461, + 457, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 232, + 474 + ], + "score": 1.0, + "content": "of network). As default we use", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 232, + 461, + 262, + 471 + ], + "score": 0.9, + "content": "k = 6 4", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 262, + 461, + 282, + 474 + ], + "score": 1.0, + "content": ", and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 283, + 461, + 313, + 471 + ], + "score": 0.9, + "content": "k = 1 6", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 313, + 461, + 457, + 474 + ], + "score": 1.0, + "content": "for networks using labels as inputs.", + "type": "text", + "cross_page": true + } + ], + "index": 13 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 249, + 88, + 358, + 242 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 249, + 88, + 358, + 242 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 249, + 88, + 358, + 242 + ], + "spans": [ + { + "bbox": [ + 249, + 88, + 358, + 242 + ], + "score": 0.955, + "type": "image", + "image_path": "1ea0ce3b43da3757a7918ce2e4590b39b9ea745d64239f2b06ae107f43159b0c.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 249, + 88, + 358, + 242 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 192, + 254, + 419, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 192, + 254, + 419, + 267 + ], + "spans": [ + { + "bbox": [ + 192, + 254, + 419, + 267 + ], + "score": 1.0, + "content": "Figure 2: Residual block used in the network definitions", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "image", + "bbox": [ + 212, + 288, + 399, + 384 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 212, + 288, + 399, + 384 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 212, + 288, + 399, + 384 + ], + "spans": [ + { + "bbox": [ + 212, + 288, + 399, + 384 + ], + "score": 0.951, + "type": "image", + "image_path": "d822e2068943f26380b553ff146d93b82e57b4954ce15f7c28533f32b39186a3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 288, + 399, + 301.7142857142857 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 212, + 301.7142857142857, + 399, + 315.42857142857144 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 212, + 315.42857142857144, + 399, + 329.14285714285717 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 212, + 329.14285714285717, + 399, + 342.8571428571429 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 212, + 342.8571428571429, + 399, + 356.5714285714286 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 212, + 356.5714285714286, + 399, + 370.28571428571433 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 212, + 370.28571428571433, + 399, + 384.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 200, + 393, + 411, + 405 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 198, + 391, + 412, + 407 + ], + "spans": [ + { + "bbox": [ + 198, + 391, + 412, + 407 + ], + "score": 1.0, + "content": "Figure 3: Discriminative networks used in this paper", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 505, + 472 + ], + "lines": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "generative networks used in this paper. G0 and G1 are encoder-decoder networks, while G2 and G3", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 505, + 451 + ], + "score": 1.0, + "content": "are decoder networks using a random vector and a one-hot encoding of the label respectively. The", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 451, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 310, + 462 + ], + "score": 1.0, + "content": "generative networks are parameterized by a factor", + "type": "text" + }, + { + "bbox": [ + 311, + 451, + 317, + 460 + ], + "score": 0.79, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 451, + 505, + 462 + ], + "score": 1.0, + "content": "determining the number of filters used (width", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 461, + 457, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 232, + 474 + ], + "score": 1.0, + "content": "of network). As default we use", + "type": "text" + }, + { + "bbox": [ + 232, + 461, + 262, + 471 + ], + "score": 0.9, + "content": "k = 6 4", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 461, + 282, + 474 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 283, + 461, + 313, + 471 + ], + "score": 0.9, + "content": "k = 1 6", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 461, + 457, + 474 + ], + "score": 1.0, + "content": "for networks using labels as inputs.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 488, + 391, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 391, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 391, + 501 + ], + "score": 1.0, + "content": "EXTRA RESULTS ON CIFAR100 AND WIDE RESNET ON CIFAR10", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "The discriminative and generative networks in our CIFAR100 experiment have the same network", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "score": 1.0, + "content": "architecture as the CIFAR10 experiment, except that the output layer dimension of the D network is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 390, + 544 + ], + "score": 1.0, + "content": "100 other than 10 in CIFAR10. We use learning rate of 0.1 for the first", + "type": "text" + }, + { + "bbox": [ + 390, + 532, + 411, + 542 + ], + "score": 0.4, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "iterations, and 0.01 for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 543, + 391, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 139, + 555 + ], + "score": 1.0, + "content": "another", + "type": "text" + }, + { + "bbox": [ + 139, + 543, + 160, + 553 + ], + "score": 0.52, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 543, + 391, + 555 + ], + "score": 1.0, + "content": "iterations. The batch size is 64 and weight decay is 1E-5.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 559, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 418, + 572 + ], + "score": 1.0, + "content": "Table 7(left) presents the white box attack accuracies of different models with", + "type": "text" + }, + { + "bbox": [ + 419, + 559, + 462, + 571 + ], + "score": 0.91, + "content": "\\epsilon = 8 / 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 559, + 505, + 572 + ], + "score": 1.0, + "content": ". From the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "table we can see that the PGD adversarial training has the best defensive performance under PGD", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "attack, but still suffers performance degradation on clean image and FGS attack. Our adversarial", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "model gives similar classification performance as the standard model on clean image, and improves", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "classification accuracies on FGS and PGD attack. Table 7(right) shows the black box attack accura-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "cies of different models. Our adversarial network approach gives the best classification accuracy in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 626, + 349, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 333, + 637 + ], + "score": 1.0, + "content": "most cases, except the FGS and PGD attack from model", + "type": "text" + }, + { + "bbox": [ + 333, + 626, + 344, + 636 + ], + "score": 0.28, + "content": "\\mathbf { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 626, + 349, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22 + }, + { + "type": "table", + "bbox": [ + 108, + 656, + 516, + 709 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 656, + 516, + 709 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 656, + 516, + 709 + ], + "spans": [ + { + "bbox": [ + 108, + 656, + 516, + 709 + ], + "score": 0.97, + "html": "
training method attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A') FGS(B') PGD(B') FGS(C') PGD(C')
standard(A)70.11%31.27%4.61%44.24%32.55%53.65%50.51%47.82%34.99%
adversarial PGD(B)55.53%32.13%28.48%53.91%54.62%41.80%40.61%54.55% 53.57%
adversarial network(C)70.99 %41.86%18.25%58.11%56.94% 53.15% 51.87%53.35%46.61%
", + "type": "table", + "image_path": "053c0732ce3a7ad728db830af47b0f3636b83734c7f2abc1f1cc265c8bb8deb7.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 108, + 656, + 516, + 673.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 108, + 673.6666666666666, + 516, + 691.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 108, + 691.3333333333333, + 516, + 708.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 717, + 505, + 729 + ], + "lines": [ + { + "bbox": [ + 105, + 714, + 505, + 731 + ], + "spans": [ + { + "bbox": [ + 105, + 714, + 456, + 731 + ], + "score": 1.0, + "content": "Table 7: Classification accuracies under white box and black box attacks on CIFAR100", + "type": "text" + }, + { + "bbox": [ + 457, + 717, + 502, + 729 + ], + "score": 0.81, + "content": "\\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 714, + 505, + 731 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + } + ], + "page_idx": 12, + "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": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 249, + 88, + 358, + 242 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 249, + 88, + 358, + 242 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 249, + 88, + 358, + 242 + ], + "spans": [ + { + "bbox": [ + 249, + 88, + 358, + 242 + ], + "score": 0.955, + "type": "image", + "image_path": "1ea0ce3b43da3757a7918ce2e4590b39b9ea745d64239f2b06ae107f43159b0c.jpg" + } + ] + } + ], + "index": 0, + "virtual_lines": [ + { + "bbox": [ + 249, + 88, + 358, + 242 + ], + "spans": [], + "index": 0 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 192, + 254, + 419, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 192, + 254, + 419, + 267 + ], + "spans": [ + { + "bbox": [ + 192, + 254, + 419, + 267 + ], + "score": 1.0, + "content": "Figure 2: Residual block used in the network definitions", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "image", + "bbox": [ + 212, + 288, + 399, + 384 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 212, + 288, + 399, + 384 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 212, + 288, + 399, + 384 + ], + "spans": [ + { + "bbox": [ + 212, + 288, + 399, + 384 + ], + "score": 0.951, + "type": "image", + "image_path": "d822e2068943f26380b553ff146d93b82e57b4954ce15f7c28533f32b39186a3.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 212, + 288, + 399, + 301.7142857142857 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 212, + 301.7142857142857, + 399, + 315.42857142857144 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 212, + 315.42857142857144, + 399, + 329.14285714285717 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 212, + 329.14285714285717, + 399, + 342.8571428571429 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 212, + 342.8571428571429, + 399, + 356.5714285714286 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 212, + 356.5714285714286, + 399, + 370.28571428571433 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 212, + 370.28571428571433, + 399, + 384.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 200, + 393, + 411, + 405 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 198, + 391, + 412, + 407 + ], + "spans": [ + { + "bbox": [ + 198, + 391, + 412, + 407 + ], + "score": 1.0, + "content": "Figure 3: Discriminative networks used in this paper", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 107, + 428, + 505, + 472 + ], + "lines": [], + "index": 11.5, + "bbox_fs": [ + 105, + 428, + 505, + 474 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 488, + 391, + 500 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 391, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 391, + 501 + ], + "score": 1.0, + "content": "EXTRA RESULTS ON CIFAR100 AND WIDE RESNET ON CIFAR10", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 505, + 554 + ], + "lines": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "The discriminative and generative networks in our CIFAR100 experiment have the same network", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 505, + 533 + ], + "score": 1.0, + "content": "architecture as the CIFAR10 experiment, except that the output layer dimension of the D network is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 390, + 544 + ], + "score": 1.0, + "content": "100 other than 10 in CIFAR10. We use learning rate of 0.1 for the first", + "type": "text" + }, + { + "bbox": [ + 390, + 532, + 411, + 542 + ], + "score": 0.4, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "iterations, and 0.01 for", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 543, + 391, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 139, + 555 + ], + "score": 1.0, + "content": "another", + "type": "text" + }, + { + "bbox": [ + 139, + 543, + 160, + 553 + ], + "score": 0.52, + "content": "1 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 161, + 543, + 391, + 555 + ], + "score": 1.0, + "content": "iterations. The batch size is 64 and weight decay is 1E-5.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 509, + 506, + 555 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 559, + 505, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 418, + 572 + ], + "score": 1.0, + "content": "Table 7(left) presents the white box attack accuracies of different models with", + "type": "text" + }, + { + "bbox": [ + 419, + 559, + 462, + 571 + ], + "score": 0.91, + "content": "\\epsilon = 8 / 2 5 6", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 559, + 505, + 572 + ], + "score": 1.0, + "content": ". From the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "table we can see that the PGD adversarial training has the best defensive performance under PGD", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "attack, but still suffers performance degradation on clean image and FGS attack. Our adversarial", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "model gives similar classification performance as the standard model on clean image, and improves", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 615 + ], + "score": 1.0, + "content": "classification accuracies on FGS and PGD attack. Table 7(right) shows the black box attack accura-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "cies of different models. Our adversarial network approach gives the best classification accuracy in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 626, + 349, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 333, + 637 + ], + "score": 1.0, + "content": "most cases, except the FGS and PGD attack from model", + "type": "text" + }, + { + "bbox": [ + 333, + 626, + 344, + 636 + ], + "score": 0.28, + "content": "\\mathbf { C } '", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 626, + 349, + 637 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 559, + 505, + 637 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 656, + 516, + 709 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 656, + 516, + 709 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 656, + 516, + 709 + ], + "spans": [ + { + "bbox": [ + 108, + 656, + 516, + 709 + ], + "score": 0.97, + "html": "
training method attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A') FGS(B') PGD(B') FGS(C') PGD(C')
standard(A)70.11%31.27%4.61%44.24%32.55%53.65%50.51%47.82%34.99%
adversarial PGD(B)55.53%32.13%28.48%53.91%54.62%41.80%40.61%54.55% 53.57%
adversarial network(C)70.99 %41.86%18.25%58.11%56.94% 53.15% 51.87%53.35%46.61%
", + "type": "table", + "image_path": "053c0732ce3a7ad728db830af47b0f3636b83734c7f2abc1f1cc265c8bb8deb7.jpg" + } + ] + } + ], + "index": 27, + "virtual_lines": [ + { + "bbox": [ + 108, + 656, + 516, + 673.6666666666666 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 108, + 673.6666666666666, + 516, + 691.3333333333333 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 108, + 691.3333333333333, + 516, + 708.9999999999999 + ], + "spans": [], + "index": 28 + } + ] + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 717, + 505, + 729 + ], + "lines": [ + { + "bbox": [ + 105, + 714, + 505, + 731 + ], + "spans": [ + { + "bbox": [ + 105, + 714, + 456, + 731 + ], + "score": 1.0, + "content": "Table 7: Classification accuracies under white box and black box attacks on CIFAR100", + "type": "text" + }, + { + "bbox": [ + 457, + 717, + 502, + 729 + ], + "score": 0.81, + "content": "\\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 714, + 505, + 731 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 714, + 505, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 167, + 89, + 443, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 167, + 89, + 443, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 89, + 443, + 298 + ], + "spans": [ + { + "bbox": [ + 167, + 89, + 443, + 298 + ], + "score": 0.928, + "type": "image", + "image_path": "db4f9913b00a33a68bd33683287f87e68d164083684db42626b5da8f905e2640.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 167, + 89, + 443, + 102.0625 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 167, + 102.0625, + 443, + 115.125 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 115.125, + 443, + 128.1875 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 167, + 128.1875, + 443, + 141.25 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 167, + 141.25, + 443, + 154.3125 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 167, + 154.3125, + 443, + 167.375 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 167, + 167.375, + 443, + 180.4375 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 167, + 180.4375, + 443, + 193.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 167, + 193.5, + 443, + 206.5625 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 167, + 206.5625, + 443, + 219.625 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 167, + 219.625, + 443, + 232.6875 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 167, + 232.6875, + 443, + 245.75 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 167, + 245.75, + 443, + 258.8125 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 167, + 258.8125, + 443, + 271.875 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 167, + 271.875, + 443, + 284.9375 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 167, + 284.9375, + 443, + 298.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 209, + 308, + 403, + 320 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 306, + 405, + 322 + ], + "spans": [ + { + "bbox": [ + 206, + 306, + 405, + 322 + ], + "score": 1.0, + "content": "Figure 4: Generative networks used in this paper", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 11.75 + }, + { + "type": "table", + "bbox": [ + 108, + 331, + 516, + 384 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 331, + 516, + 384 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 331, + 516, + 384 + ], + "spans": [ + { + "bbox": [ + 108, + 331, + 516, + 384 + ], + "score": 0.962, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)])PGD(A') FGS(B')PGD(B') FGS(C') PGD(C")
standard(A)94.69%62.36%1.08%69.89% 9.14%85.05%82.82%76.27%45.16%
adversarial PGD(B)83.50%67.92%60.15%83.21% 82.96%72.66%68.82%82.01%78.59%
adversarial network(C)91.32%73.77%49.55%83.29 % 81.65%79.32%76.00%79.32%62.71%
", + "type": "table", + "image_path": "a8054258e857bbc4a769fb88626ac8f26cf045e2848672154e657286e5e820b4.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 108, + 331, + 516, + 348.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 108, + 348.6666666666667, + 516, + 366.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 108, + 366.33333333333337, + 516, + 384.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 392, + 506, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "Table 8: Classification accuracies under white box and black box attacks on CIFAR10 with Wide", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 402, + 190, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 140, + 416 + ], + "score": 1.0, + "content": "ResNet", + "type": "text" + }, + { + "bbox": [ + 141, + 403, + 187, + 415 + ], + "score": 0.85, + "content": "( \\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 402, + 190, + 416 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "index": 19.25 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 451 + ], + "score": 1.0, + "content": "Table 8 gives the results on CIFAR10 using a wider version of Resnet (Model D2), by multiplying", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "the number of filters in each convolutional layer by a factor of 10. Some of the previous works in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "the literature use models of larger capacity for training adversarially robust models, so we perform", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "experiments on these large capacity models here. First the accuracies increase across the board with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "larger capacity models. The accuracy gap on clean data between adversarial PGD and standard", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "training still exists, but now there is also a small accuracy gap between our adversarial network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "approach and standard training. For the rest of the white box and black accuracies the story is similar,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 514, + 504, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 504, + 525 + ], + "score": 1.0, + "content": "the models are weakest against attacks trained with the same method but with a different random", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "seed. Our adversarial network approach has very good performance across different attacks, even as", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "it is not always the winner for each individual attack. Table 9 gives the results of Wide ResNet on", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 547, + 313, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 313, + 559 + ], + "score": 1.0, + "content": "CIFAR100, and the results are qualitatively similar.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 107, + 573, + 431, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 432, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 432, + 586 + ], + "score": 1.0, + "content": "EXTRA RESULTS ON ATTACKING USING GENERATIVE NETWORKS AND THEIR", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 586, + 189, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 189, + 596 + ], + "score": 1.0, + "content": "TRANSFERABILITY", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 604, + 507, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "Following Section 4.5, we run extra experiments on using different generative networks to attack", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "networks trained with adversarial PGD and our adversarial networks approach, in addition to the", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "table", + "bbox": [ + 108, + 645, + 516, + 698 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 645, + 516, + 698 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 645, + 516, + 698 + ], + "spans": [ + { + "bbox": [ + 108, + 645, + 516, + 698 + ], + "score": 0.967, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A) PGD(A)]FGS(B') PGD(B’) FGS(C')PGD(C')
standard(A)79.22%44.86%6.38%48.52% 13.42%65.18%63.56%53.17%28.04%
adversarial PGD(B)66.68%45.54%38.36%64.81% 64.84%53.41%49.77%64.35%62.44%
adversarial network(C)80.21%57.21%30.27%65.37% 58.27%67.38%64.28%61.11%40.27%
", + "type": "table", + "image_path": "aaccba286392006d84868795f9cfa9d7b90a5ab184bb52ad77771b91f15dbde0.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 108, + 645, + 516, + 662.6666666666666 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 108, + 662.6666666666666, + 516, + 680.3333333333333 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 108, + 680.3333333333333, + 516, + 697.9999999999999 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 105, + 706, + 506, + 729 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 505, + 718 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 505, + 718 + ], + "score": 1.0, + "content": "Table 9: Classification accuracies under white box and black box attacks on CIFAR100 with Wide", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 717, + 188, + 730 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 139, + 730 + ], + "score": 1.0, + "content": "Resnet", + "type": "text" + }, + { + "bbox": [ + 139, + 717, + 184, + 729 + ], + "score": 0.85, + "content": "\\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 717, + 188, + 730 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + } + ], + "page_idx": 13, + "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, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 167, + 89, + 443, + 298 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 167, + 89, + 443, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 167, + 89, + 443, + 298 + ], + "spans": [ + { + "bbox": [ + 167, + 89, + 443, + 298 + ], + "score": 0.928, + "type": "image", + "image_path": "db4f9913b00a33a68bd33683287f87e68d164083684db42626b5da8f905e2640.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 167, + 89, + 443, + 102.0625 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 167, + 102.0625, + 443, + 115.125 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 167, + 115.125, + 443, + 128.1875 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 167, + 128.1875, + 443, + 141.25 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 167, + 141.25, + 443, + 154.3125 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 167, + 154.3125, + 443, + 167.375 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 167, + 167.375, + 443, + 180.4375 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 167, + 180.4375, + 443, + 193.5 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 167, + 193.5, + 443, + 206.5625 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 167, + 206.5625, + 443, + 219.625 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 167, + 219.625, + 443, + 232.6875 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 167, + 232.6875, + 443, + 245.75 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 167, + 245.75, + 443, + 258.8125 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 167, + 258.8125, + 443, + 271.875 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 167, + 271.875, + 443, + 284.9375 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 167, + 284.9375, + 443, + 298.0 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 209, + 308, + 403, + 320 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 206, + 306, + 405, + 322 + ], + "spans": [ + { + "bbox": [ + 206, + 306, + 405, + 322 + ], + "score": 1.0, + "content": "Figure 4: Generative networks used in this paper", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 11.75 + }, + { + "type": "table", + "bbox": [ + 108, + 331, + 516, + 384 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 331, + 516, + 384 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 331, + 516, + 384 + ], + "spans": [ + { + "bbox": [ + 108, + 331, + 516, + 384 + ], + "score": 0.962, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)])PGD(A') FGS(B')PGD(B') FGS(C') PGD(C")
standard(A)94.69%62.36%1.08%69.89% 9.14%85.05%82.82%76.27%45.16%
adversarial PGD(B)83.50%67.92%60.15%83.21% 82.96%72.66%68.82%82.01%78.59%
adversarial network(C)91.32%73.77%49.55%83.29 % 81.65%79.32%76.00%79.32%62.71%
", + "type": "table", + "image_path": "a8054258e857bbc4a769fb88626ac8f26cf045e2848672154e657286e5e820b4.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 108, + 331, + 516, + 348.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 108, + 348.6666666666667, + 516, + 366.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 108, + 366.33333333333337, + 516, + 384.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 392, + 506, + 415 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "Table 8: Classification accuracies under white box and black box attacks on CIFAR10 with Wide", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 402, + 190, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 140, + 416 + ], + "score": 1.0, + "content": "ResNet", + "type": "text" + }, + { + "bbox": [ + 141, + 403, + 187, + 415 + ], + "score": 0.85, + "content": "( \\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 402, + 190, + 416 + ], + "score": 1.0, + "content": ")", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "index": 19.25 + }, + { + "type": "text", + "bbox": [ + 106, + 436, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 451 + ], + "score": 1.0, + "content": "Table 8 gives the results on CIFAR10 using a wider version of Resnet (Model D2), by multiplying", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 506, + 461 + ], + "score": 1.0, + "content": "the number of filters in each convolutional layer by a factor of 10. Some of the previous works in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "the literature use models of larger capacity for training adversarially robust models, so we perform", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 482 + ], + "score": 1.0, + "content": "experiments on these large capacity models here. First the accuracies increase across the board with", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 480, + 506, + 493 + ], + "score": 1.0, + "content": "larger capacity models. The accuracy gap on clean data between adversarial PGD and standard", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "training still exists, but now there is also a small accuracy gap between our adversarial network", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 506, + 516 + ], + "score": 1.0, + "content": "approach and standard training. For the rest of the white box and black accuracies the story is similar,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 514, + 504, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 504, + 525 + ], + "score": 1.0, + "content": "the models are weakest against attacks trained with the same method but with a different random", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 506, + 538 + ], + "score": 1.0, + "content": "seed. Our adversarial network approach has very good performance across different attacks, even as", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "it is not always the winner for each individual attack. Table 9 gives the results of Wide ResNet on", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 547, + 313, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 313, + 559 + ], + "score": 1.0, + "content": "CIFAR100, and the results are qualitatively similar.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 435, + 506, + 559 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 573, + 431, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 573, + 432, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 573, + 432, + 586 + ], + "score": 1.0, + "content": "EXTRA RESULTS ON ATTACKING USING GENERATIVE NETWORKS AND THEIR", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 586, + 189, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 189, + 596 + ], + "score": 1.0, + "content": "TRANSFERABILITY", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 108, + 604, + 507, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 505, + 617 + ], + "score": 1.0, + "content": "Following Section 4.5, we run extra experiments on using different generative networks to attack", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 628 + ], + "score": 1.0, + "content": "networks trained with adversarial PGD and our adversarial networks approach, in addition to the", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 603, + 505, + 628 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 645, + 516, + 698 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 108, + 645, + 516, + 698 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 108, + 645, + 516, + 698 + ], + "spans": [ + { + "bbox": [ + 108, + 645, + 516, + 698 + ], + "score": 0.967, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A) PGD(A)]FGS(B') PGD(B’) FGS(C')PGD(C')
standard(A)79.22%44.86%6.38%48.52% 13.42%65.18%63.56%53.17%28.04%
adversarial PGD(B)66.68%45.54%38.36%64.81% 64.84%53.41%49.77%64.35%62.44%
adversarial network(C)80.21%57.21%30.27%65.37% 58.27%67.38%64.28%61.11%40.27%
", + "type": "table", + "image_path": "aaccba286392006d84868795f9cfa9d7b90a5ab184bb52ad77771b91f15dbde0.jpg" + } + ] + } + ], + "index": 38, + "virtual_lines": [ + { + "bbox": [ + 108, + 645, + 516, + 662.6666666666666 + ], + "spans": [], + "index": 37 + }, + { + "bbox": [ + 108, + 662.6666666666666, + 516, + 680.3333333333333 + ], + "spans": [], + "index": 38 + }, + { + "bbox": [ + 108, + 680.3333333333333, + 516, + 697.9999999999999 + ], + "spans": [], + "index": 39 + } + ] + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 105, + 706, + 506, + 729 + ], + "lines": [ + { + "bbox": [ + 105, + 705, + 505, + 718 + ], + "spans": [ + { + "bbox": [ + 105, + 705, + 505, + 718 + ], + "score": 1.0, + "content": "Table 9: Classification accuracies under white box and black box attacks on CIFAR100 with Wide", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 717, + 188, + 730 + ], + "spans": [ + { + "bbox": [ + 105, + 717, + 139, + 730 + ], + "score": 1.0, + "content": "Resnet", + "type": "text" + }, + { + "bbox": [ + 139, + 717, + 184, + 729 + ], + "score": 0.85, + "content": "\\epsilon = 8 / 2 5 6 )", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 717, + 188, + 730 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 705, + 505, + 730 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "score": 0.976, + "html": "
GeneratorOriginal (B)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy75.30%90.54%75.71%89.21%
autoencoder(8 filters)72.74%88.38%73.07%87.89%
autoencoder(64 filters)71.26%87.64%71.98%87.02%
random Gaussian74.13%88.71%74.70%88.45%
label70.15%84.95%70.10%84.96%
", + "type": "table", + "image_path": "70fb95a79e7677c2a0ee25b0aca6fa54c8d320ff15093fc1baebcda9874564bf.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 502, + 100.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 100.0, + 502, + 121.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 121.0, + 502, + 142.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 151, + 505, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "score": 1.0, + "content": "Table 10: Attack performance of various generator networks against a network trained with adver-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 162, + 504, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 489, + 174 + ], + "score": 1.0, + "content": "sarial PGD in terms of test accuracies. First column is the accuracy on the discriminative model", + "type": "text" + }, + { + "bbox": [ + 490, + 162, + 504, + 173 + ], + "score": 0.87, + "content": "D _ { \\theta }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 217, + 185 + ], + "score": 1.0, + "content": "that the generative attacker", + "type": "text" + }, + { + "bbox": [ + 217, + 173, + 231, + 185 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "is trained on (similar to white box attacks). The next three columns", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 183, + 466, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 331, + 195 + ], + "score": 1.0, + "content": "are the attack accuracies on other models by the learned", + "type": "text" + }, + { + "bbox": [ + 332, + 184, + 346, + 196 + ], + "score": 0.88, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 183, + 466, + 195 + ], + "score": 1.0, + "content": "(similar to black box attacks)", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 109, + 206, + 502, + 269 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 206, + 502, + 269 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 206, + 502, + 269 + ], + "spans": [ + { + "bbox": [ + 109, + 206, + 502, + 269 + ], + "score": 0.974, + "html": "
GeneratorOriginal (C)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.08%90.54%75.71%89.21%
autoencoder(8 filters)74.66%66.95%74.42%80.55%
autoencoder(64 filters)53.68%46.37%73.08%72.18%
random Gaussian85.91%71.00%75.00%86.55%
label81.46%77.46%73.09%83.98%
", + "type": "table", + "image_path": "443135b84e367c33cc683f0b603609efc7e4b66f7c2dd55729d0c11313194176.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 109, + 206, + 502, + 227.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 227.0, + 502, + 248.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 109, + 248.0, + 502, + 269.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 277, + 505, + 322 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "Table 11: Attack performance of various generator networks against our adversarial network in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 288, + 504, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 454, + 300 + ], + "score": 1.0, + "content": "terms of test accuracies. First column is the accuracy on the discriminative model", + "type": "text" + }, + { + "bbox": [ + 455, + 288, + 469, + 299 + ], + "score": 0.87, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 288, + 504, + 300 + ], + "score": 1.0, + "content": "that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 184, + 311 + ], + "score": 1.0, + "content": "generative attacker", + "type": "text" + }, + { + "bbox": [ + 185, + 299, + 199, + 311 + ], + "score": 0.91, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "is trained on (similar to white box attacks). The next three columns are the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 310, + 437, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 302, + 322 + ], + "score": 1.0, + "content": "attack accuracies on other models by the learned", + "type": "text" + }, + { + "bbox": [ + 302, + 310, + 317, + 322 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 310, + 437, + 322 + ], + "score": 1.0, + "content": "(similar to black box attacks)", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + } + ], + "index": 9.75 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "undefended network in Section 4.5. Table 10 shows the results of various generative networks in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "attacking a network trained with adversarial PGD. The adversarial PGD network is very robust, and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 349, + 377 + ], + "score": 1.0, + "content": "the generative networks can at most reduce the accuracy by", + "type": "text" + }, + { + "bbox": [ + 349, + 365, + 364, + 376 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 366, + 505, + 377 + ], + "score": 1.0, + "content": ". Interestingly, the strongest attack", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "come from the more restrictive generative network using only the label as input. It is also the most", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "successful in transferring to other networks. However, since the adversarial PGD network is so", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 398, + 503, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 503, + 411 + ], + "score": 1.0, + "content": "robust, none of the generative networks can learn much from it in generating adversarial examples.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "Table 11 shows the results of various generative networks in attacking our adversarial network. Our", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "adversarial network is not as robust as adversarial PGD under white box attack, and the autoen-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 353, + 449 + ], + "score": 1.0, + "content": "coder(64 filters) network can reduce its accuracy from over", + "type": "text" + }, + { + "bbox": [ + 353, + 437, + 373, + 447 + ], + "score": 0.86, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 436, + 386, + 449 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 387, + 437, + 406, + 447 + ], + "score": 0.86, + "content": "53 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 436, + 505, + 449 + ], + "score": 1.0, + "content": ". Nonetheless, it is still", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "much more robust than the undefended network. Interestingly, in addition to transferring well to the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 339, + 471 + ], + "score": 1.0, + "content": "adversarial network trained with a different random seed", + "type": "text" + }, + { + "bbox": [ + 339, + 459, + 356, + 470 + ], + "score": 0.3, + "content": "\\mathbf { \\pi } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 458, + 506, + 471 + ], + "score": 1.0, + "content": ", the autoencoder(64 filters) network", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 469, + 414, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 390, + 482 + ], + "score": 1.0, + "content": "also transfers well to the undefended network, reducing its accuracy to", + "type": "text" + }, + { + "bbox": [ + 390, + 470, + 410, + 480 + ], + "score": 0.87, + "content": "46 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 469, + 414, + 482 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5 + } + ], + "page_idx": 14, + "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": [ + 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": "table", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 79, + 502, + 142 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "spans": [ + { + "bbox": [ + 109, + 79, + 502, + 142 + ], + "score": 0.976, + "html": "
GeneratorOriginal (B)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy75.30%90.54%75.71%89.21%
autoencoder(8 filters)72.74%88.38%73.07%87.89%
autoencoder(64 filters)71.26%87.64%71.98%87.02%
random Gaussian74.13%88.71%74.70%88.45%
label70.15%84.95%70.10%84.96%
", + "type": "table", + "image_path": "70fb95a79e7677c2a0ee25b0aca6fa54c8d320ff15093fc1baebcda9874564bf.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 79, + 502, + 100.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 100.0, + 502, + 121.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 121.0, + 502, + 142.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 151, + 505, + 195 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 150, + 505, + 164 + ], + "score": 1.0, + "content": "Table 10: Attack performance of various generator networks against a network trained with adver-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 162, + 504, + 174 + ], + "spans": [ + { + "bbox": [ + 106, + 162, + 489, + 174 + ], + "score": 1.0, + "content": "sarial PGD in terms of test accuracies. First column is the accuracy on the discriminative model", + "type": "text" + }, + { + "bbox": [ + 490, + 162, + 504, + 173 + ], + "score": 0.87, + "content": "D _ { \\theta }", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 173, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 217, + 185 + ], + "score": 1.0, + "content": "that the generative attacker", + "type": "text" + }, + { + "bbox": [ + 217, + 173, + 231, + 185 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 173, + 505, + 185 + ], + "score": 1.0, + "content": "is trained on (similar to white box attacks). The next three columns", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 183, + 466, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 183, + 331, + 195 + ], + "score": 1.0, + "content": "are the attack accuracies on other models by the learned", + "type": "text" + }, + { + "bbox": [ + 332, + 184, + 346, + 196 + ], + "score": 0.88, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 346, + 183, + 466, + 195 + ], + "score": 1.0, + "content": "(similar to black box attacks)", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "table", + "bbox": [ + 109, + 206, + 502, + 269 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 109, + 206, + 502, + 269 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 206, + 502, + 269 + ], + "spans": [ + { + "bbox": [ + 109, + 206, + 502, + 269 + ], + "score": 0.974, + "html": "
GeneratorOriginal (C)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.08%90.54%75.71%89.21%
autoencoder(8 filters)74.66%66.95%74.42%80.55%
autoencoder(64 filters)53.68%46.37%73.08%72.18%
random Gaussian85.91%71.00%75.00%86.55%
label81.46%77.46%73.09%83.98%
", + "type": "table", + "image_path": "443135b84e367c33cc683f0b603609efc7e4b66f7c2dd55729d0c11313194176.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 109, + 206, + 502, + 227.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 227.0, + 502, + 248.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 109, + 248.0, + 502, + 269.0 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 106, + 277, + 505, + 322 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 289 + ], + "score": 1.0, + "content": "Table 11: Attack performance of various generator networks against our adversarial network in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 288, + 504, + 300 + ], + "spans": [ + { + "bbox": [ + 106, + 288, + 454, + 300 + ], + "score": 1.0, + "content": "terms of test accuracies. First column is the accuracy on the discriminative model", + "type": "text" + }, + { + "bbox": [ + 455, + 288, + 469, + 299 + ], + "score": 0.87, + "content": "D _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 288, + 504, + 300 + ], + "score": 1.0, + "content": "that the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 299, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 184, + 311 + ], + "score": 1.0, + "content": "generative attacker", + "type": "text" + }, + { + "bbox": [ + 185, + 299, + 199, + 311 + ], + "score": 0.91, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 299, + 505, + 311 + ], + "score": 1.0, + "content": "is trained on (similar to white box attacks). The next three columns are the", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 310, + 437, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 310, + 302, + 322 + ], + "score": 1.0, + "content": "attack accuracies on other models by the learned", + "type": "text" + }, + { + "bbox": [ + 302, + 310, + 317, + 322 + ], + "score": 0.89, + "content": "G _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 310, + 437, + 322 + ], + "score": 1.0, + "content": "(similar to black box attacks)", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + } + ], + "index": 9.75 + }, + { + "type": "text", + "bbox": [ + 107, + 342, + 505, + 409 + ], + "lines": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 506, + 356 + ], + "score": 1.0, + "content": "undefended network in Section 4.5. Table 10 shows the results of various generative networks in", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "attacking a network trained with adversarial PGD. The adversarial PGD network is very robust, and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 365, + 505, + 377 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 349, + 377 + ], + "score": 1.0, + "content": "the generative networks can at most reduce the accuracy by", + "type": "text" + }, + { + "bbox": [ + 349, + 365, + 364, + 376 + ], + "score": 0.86, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 366, + 505, + 377 + ], + "score": 1.0, + "content": ". Interestingly, the strongest attack", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "score": 1.0, + "content": "come from the more restrictive generative network using only the label as input. It is also the most", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 387, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 505, + 399 + ], + "score": 1.0, + "content": "successful in transferring to other networks. However, since the adversarial PGD network is so", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 398, + 503, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 503, + 411 + ], + "score": 1.0, + "content": "robust, none of the generative networks can learn much from it in generating adversarial examples.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 342, + 506, + 411 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 427 + ], + "score": 1.0, + "content": "Table 11 shows the results of various generative networks in attacking our adversarial network. Our", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 438 + ], + "score": 1.0, + "content": "adversarial network is not as robust as adversarial PGD under white box attack, and the autoen-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 436, + 505, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 436, + 353, + 449 + ], + "score": 1.0, + "content": "coder(64 filters) network can reduce its accuracy from over", + "type": "text" + }, + { + "bbox": [ + 353, + 437, + 373, + 447 + ], + "score": 0.86, + "content": "90 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 436, + 386, + 449 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 387, + 437, + 406, + 447 + ], + "score": 0.86, + "content": "53 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 436, + 505, + 449 + ], + "score": 1.0, + "content": ". Nonetheless, it is still", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 505, + 461 + ], + "score": 1.0, + "content": "much more robust than the undefended network. Interestingly, in addition to transferring well to the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 458, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 339, + 471 + ], + "score": 1.0, + "content": "adversarial network trained with a different random seed", + "type": "text" + }, + { + "bbox": [ + 339, + 459, + 356, + 470 + ], + "score": 0.3, + "content": "\\mathbf { \\pi } ( \\mathbf { C } )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 458, + 506, + 471 + ], + "score": 1.0, + "content": ", the autoencoder(64 filters) network", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 469, + 414, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 390, + 482 + ], + "score": 1.0, + "content": "also transfers well to the undefended network, reducing its accuracy to", + "type": "text" + }, + { + "bbox": [ + 390, + 470, + 410, + 480 + ], + "score": 0.87, + "content": "46 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 469, + 414, + 482 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 414, + 506, + 482 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/S1lIMn05F7/S1lIMn05F7_model.json b/parse/train/S1lIMn05F7/S1lIMn05F7_model.json new file mode 100644 index 0000000000000000000000000000000000000000..8fc1225277956d7eb33dbe4befe4bf3bc48e7613 --- /dev/null +++ b/parse/train/S1lIMn05F7/S1lIMn05F7_model.json @@ -0,0 +1,22322 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 681, + 1302, + 681, + 1302, + 1078, + 398, + 1078 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1207, + 1404, + 1207, + 1404, + 1544, + 298, + 1544 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1759, + 1403, + 1759, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1560, + 1402, + 1560, + 1402, + 1743, + 299, + 1743 + ], + "score": 0.978 + }, + { + "category_id": 0, + "poly": [ + 301, + 219, + 1347, + 219, + 1347, + 323, + 301, + 323 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 314, + 376, + 897, + 376, + 897, + 528, + 314, + 528 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 927, + 378, + 1448, + 378, + 1448, + 530, + 927, + 530 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 302, + 1138, + 573, + 1138, + 573, + 1173, + 302, + 1173 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.878 + }, + { + "category_id": 0, + "poly": [ + 773, + 611, + 926, + 611, + 926, + 644, + 773, + 644 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 842, + 2089, + 857, + 2089, + 857, + 2112, + 842, + 2112 + ], + "score": 0.631 + }, + { + "category_id": 0, + "poly": [ + 929, + 379, + 1102, + 379, + 1102, + 407, + 929, + 407 + ], + "score": 0.16 + }, + { + "category_id": 0, + "poly": [ + 315, + 378, + 480, + 378, + 480, + 408, + 315, + 408 + ], + "score": 0.11 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 217.0, + 1353.0, + 217.0, + 1353.0, + 272.0, + 295.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 271.0, + 1004.0, + 271.0, + 1004.0, + 330.0, + 295.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1135.0, + 579.0, + 1135.0, + 579.0, + 1182.0, + 294.0, + 1182.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": [ + 769.0, + 610.0, + 932.0, + 610.0, + 932.0, + 647.0, + 769.0, + 647.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": [ + 926.0, + 374.0, + 1105.0, + 374.0, + 1105.0, + 412.0, + 926.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 372.0, + 486.0, + 372.0, + 486.0, + 415.0, + 311.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 683.0, + 1305.0, + 683.0, + 1305.0, + 715.0, + 395.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 712.0, + 1306.0, + 712.0, + 1306.0, + 747.0, + 393.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 739.0, + 1305.0, + 739.0, + 1305.0, + 779.0, + 392.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 774.0, + 1306.0, + 774.0, + 1306.0, + 806.0, + 394.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 802.0, + 1305.0, + 802.0, + 1305.0, + 837.0, + 394.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 834.0, + 1306.0, + 834.0, + 1306.0, + 869.0, + 394.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 864.0, + 1306.0, + 864.0, + 1306.0, + 899.0, + 393.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 893.0, + 1305.0, + 893.0, + 1305.0, + 930.0, + 392.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 923.0, + 1306.0, + 923.0, + 1306.0, + 960.0, + 393.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 955.0, + 1304.0, + 955.0, + 1304.0, + 989.0, + 393.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 987.0, + 1305.0, + 987.0, + 1305.0, + 1019.0, + 395.0, + 1019.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1017.0, + 1305.0, + 1017.0, + 1305.0, + 1048.0, + 394.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1048.0, + 1066.0, + 1048.0, + 1066.0, + 1080.0, + 394.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1208.0, + 1404.0, + 1208.0, + 1404.0, + 1243.0, + 294.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1279.0, + 292.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1267.0, + 1405.0, + 1267.0, + 1405.0, + 1306.0, + 293.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1300.0, + 1404.0, + 1300.0, + 1404.0, + 1335.0, + 294.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1368.0, + 292.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1359.0, + 1406.0, + 1359.0, + 1406.0, + 1398.0, + 292.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1389.0, + 1406.0, + 1389.0, + 1406.0, + 1428.0, + 293.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1421.0, + 1405.0, + 1421.0, + 1405.0, + 1456.0, + 294.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1454.0, + 1402.0, + 1454.0, + 1402.0, + 1485.0, + 296.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1485.0, + 1404.0, + 1485.0, + 1404.0, + 1516.0, + 296.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1513.0, + 1080.0, + 1513.0, + 1080.0, + 1548.0, + 293.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1758.0, + 1403.0, + 1758.0, + 1403.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1787.0, + 1405.0, + 1787.0, + 1405.0, + 1825.0, + 293.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1818.0, + 1404.0, + 1818.0, + 1404.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1847.0, + 1405.0, + 1847.0, + 1405.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1881.0, + 1405.0, + 1881.0, + 1405.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1405.0, + 1911.0, + 1405.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1407.0, + 2001.0, + 1407.0, + 2041.0, + 293.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1559.0, + 1404.0, + 1559.0, + 1404.0, + 1595.0, + 297.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1625.0, + 294.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1406.0, + 1620.0, + 1406.0, + 1655.0, + 294.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1653.0, + 1403.0, + 1653.0, + 1403.0, + 1684.0, + 295.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1681.0, + 1408.0, + 1681.0, + 1408.0, + 1717.0, + 292.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1712.0, + 719.0, + 1712.0, + 719.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 373.0, + 485.0, + 373.0, + 485.0, + 414.0, + 312.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 404.0, + 902.0, + 404.0, + 902.0, + 444.0, + 310.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 431.0, + 671.0, + 431.0, + 671.0, + 475.0, + 310.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 469.0, + 613.0, + 469.0, + 613.0, + 499.0, + 312.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 500.0, + 635.0, + 500.0, + 635.0, + 532.0, + 313.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 375.0, + 1107.0, + 375.0, + 1107.0, + 410.0, + 925.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 405.0, + 1116.0, + 405.0, + 1116.0, + 439.0, + 923.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 433.0, + 1184.0, + 433.0, + 1184.0, + 471.0, + 923.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 467.0, + 1258.0, + 467.0, + 1258.0, + 499.0, + 924.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 498.0, + 1451.0, + 498.0, + 1451.0, + 532.0, + 926.0, + 532.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1287, + 1404, + 1287, + 1404, + 1685, + 297, + 1685 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 984, + 1402, + 984, + 1402, + 1076, + 298, + 1076 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1777, + 1403, + 1777, + 1403, + 1871, + 298, + 1871 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1885, + 1403, + 1885, + 1403, + 1979, + 298, + 1979 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 303, + 654, + 1404, + 654, + 1404, + 748, + 303, + 748 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 368, + 316, + 1403, + 316, + 1403, + 632, + 368, + 632 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 293, + 229, + 1400, + 229, + 1400, + 293, + 293, + 293 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 298, + 1150, + 1409, + 1150, + 1409, + 1213, + 298, + 1213 + ], + "score": 0.943 + }, + { + "category_id": 8, + "poly": [ + 604, + 1988, + 1092, + 1988, + 1092, + 2039, + 604, + 2039 + ], + "score": 0.939 + }, + { + "category_id": 8, + "poly": [ + 518, + 1222, + 1182, + 1222, + 1182, + 1275, + 518, + 1275 + ], + "score": 0.932 + }, + { + "category_id": 8, + "poly": [ + 576, + 1086, + 1125, + 1086, + 1125, + 1142, + 576, + 1142 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 293, + 858, + 1316, + 858, + 1316, + 891, + 293, + 891 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 299, + 1720, + 574, + 1720, + 574, + 1752, + 299, + 1752 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 927, + 560, + 927, + 560, + 959, + 299, + 959 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 790, + 604, + 790, + 604, + 826, + 300, + 826 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.902 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1090, + 1399, + 1090, + 1399, + 1119, + 1366, + 1119 + ], + "score": 0.88 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1992, + 1400, + 1992, + 1400, + 2021, + 1366, + 2021 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1228, + 1399, + 1228, + 1399, + 1258, + 1366, + 1258 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.761 + }, + { + "category_id": 14, + "poly": [ + 606, + 1987, + 1092, + 1987, + 1092, + 2041, + 606, + 2041 + ], + "score": 0.94, + "latex": "\\theta ^ { * } = \\underset { \\theta } { \\arg \\operatorname* { m i n } } \\operatorname { E } _ { x , y } \\underset { \\Delta x } { \\operatorname* { m a x } } l ( D _ { \\theta } ( x + \\Delta x ) , y ) ." + }, + { + "category_id": 13, + "poly": [ + 475, + 1150, + 550, + 1150, + 550, + 1184, + 475, + 1184 + ], + "score": 0.93, + "latex": "D _ { \\theta } ( x )" + }, + { + "category_id": 13, + "poly": [ + 1049, + 1288, + 1163, + 1288, + 1163, + 1322, + 1049, + 1322 + ], + "score": 0.92, + "latex": "D _ { \\theta } ( x + z )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1014, + 383, + 1014, + 383, + 1044, + 298, + 1044 + ], + "score": 0.91, + "latex": "\\boldsymbol { x } \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 1242, + 1017, + 1333, + 1017, + 1333, + 1045, + 1242, + 1045 + ], + "score": 0.91, + "latex": "x + \\Delta x" + }, + { + "category_id": 14, + "poly": [ + 517, + 1223, + 1182, + 1223, + 1182, + 1279, + 517, + 1279 + ], + "score": 0.89, + "latex": "\\Delta x = \\underset { z } { \\arg \\operatorname* { m i n } } \\lambda \\| z \\| + L ( D _ { \\theta } ( x + z ) , \\hat { y } ) , \\quad x + z \\in [ 0 , 1 ] ^ { d }" + }, + { + "category_id": 14, + "poly": [ + 576, + 1085, + 1123, + 1085, + 1123, + 1142, + 576, + 1142 + ], + "score": 0.89, + "latex": "\\operatorname* { a r g m i n } _ { \\Delta x } \\| \\Delta x \\| \\quad \\mathrm { s . t . } \\ \\arg \\operatorname* { m a x } D _ { \\theta } ( x + \\Delta x ) \\neq y ," + }, + { + "category_id": 13, + "poly": [ + 469, + 1379, + 830, + 1379, + 830, + 1413, + 469, + 1413 + ], + "score": 0.89, + "latex": "\\Delta x { \\mathbf { \\bar { \\phi } } } = \\epsilon \\cdot \\mathrm { s i g n } \\left( \\nabla _ { x } l ( D _ { \\theta } ( { \\bar { { x } } } ) , y ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 657, + 987, + 696, + 987, + 696, + 1016, + 657, + 1016 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1354, + 1292, + 1406, + 1292, + 1406, + 1321, + 1354, + 1321 + ], + "score": 0.88, + "latex": "\\hat { y } \\neq" + }, + { + "category_id": 13, + "poly": [ + 794, + 1047, + 836, + 1047, + 836, + 1073, + 794, + 1073 + ], + "score": 0.88, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 1091, + 1017, + 1132, + 1017, + 1132, + 1043, + 1091, + 1043 + ], + "score": 0.86, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 371, + 1290, + 393, + 1290, + 393, + 1316, + 371, + 1316 + ], + "score": 0.82, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 908, + 987, + 926, + 987, + 926, + 1013, + 908, + 1013 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 437, + 1051, + 455, + 1051, + 455, + 1078, + 437, + 1078 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 527, + 1020, + 545, + 1020, + 545, + 1048, + 527, + 1048 + ], + "score": 0.78, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 948, + 1157, + 966, + 1157, + 966, + 1178, + 948, + 1178 + ], + "score": 0.77, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 297, + 1324, + 315, + 1324, + 315, + 1351, + 297, + 1351 + ], + "score": 0.73, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 925, + 1381, + 938, + 1381, + 938, + 1407, + 925, + 1407 + ], + "score": 0.69, + "latex": "l" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1717.0, + 580.0, + 1717.0, + 580.0, + 1757.0, + 294.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 926.0, + 565.0, + 926.0, + 565.0, + 963.0, + 295.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 785.0, + 608.0, + 785.0, + 608.0, + 834.0, + 290.0, + 834.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": [ + 295.0, + 1288.0, + 370.0, + 1288.0, + 370.0, + 1324.0, + 295.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1288.0, + 1048.0, + 1288.0, + 1048.0, + 1324.0, + 394.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1288.0, + 1353.0, + 1288.0, + 1353.0, + 1324.0, + 1164.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1317.0, + 296.0, + 1317.0, + 296.0, + 1355.0, + 291.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 1317.0, + 1407.0, + 1317.0, + 1407.0, + 1355.0, + 316.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1351.0, + 1404.0, + 1351.0, + 1404.0, + 1384.0, + 295.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1377.0, + 468.0, + 1377.0, + 468.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 1377.0, + 924.0, + 1377.0, + 924.0, + 1417.0, + 831.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 1377.0, + 1406.0, + 1377.0, + 1406.0, + 1417.0, + 939.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1409.0, + 1406.0, + 1409.0, + 1406.0, + 1446.0, + 294.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1441.0, + 1404.0, + 1441.0, + 1404.0, + 1473.0, + 296.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1470.0, + 1405.0, + 1470.0, + 1405.0, + 1507.0, + 294.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1499.0, + 1406.0, + 1499.0, + 1406.0, + 1538.0, + 292.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1529.0, + 1406.0, + 1529.0, + 1406.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 1405.0, + 1561.0, + 1405.0, + 1598.0, + 292.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1594.0, + 1405.0, + 1594.0, + 1405.0, + 1626.0, + 296.0, + 1626.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1621.0, + 1404.0, + 1621.0, + 1404.0, + 1661.0, + 292.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1653.0, + 389.0, + 1653.0, + 389.0, + 1687.0, + 294.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 980.0, + 656.0, + 980.0, + 656.0, + 1023.0, + 293.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 980.0, + 907.0, + 980.0, + 907.0, + 1023.0, + 697.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 980.0, + 1407.0, + 980.0, + 1407.0, + 1023.0, + 927.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1013.0, + 297.0, + 1013.0, + 297.0, + 1047.0, + 293.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 1013.0, + 526.0, + 1013.0, + 526.0, + 1047.0, + 384.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1013.0, + 1090.0, + 1013.0, + 1090.0, + 1047.0, + 546.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 1013.0, + 1241.0, + 1013.0, + 1241.0, + 1047.0, + 1133.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1334.0, + 1013.0, + 1404.0, + 1013.0, + 1404.0, + 1047.0, + 1334.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1044.0, + 436.0, + 1044.0, + 436.0, + 1078.0, + 296.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 1044.0, + 793.0, + 1044.0, + 793.0, + 1078.0, + 456.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 1044.0, + 1069.0, + 1044.0, + 1069.0, + 1078.0, + 837.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1778.0, + 1405.0, + 1778.0, + 1405.0, + 1812.0, + 294.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1809.0, + 1404.0, + 1809.0, + 1404.0, + 1843.0, + 294.0, + 1843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1840.0, + 1322.0, + 1840.0, + 1322.0, + 1874.0, + 294.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1885.0, + 1403.0, + 1885.0, + 1403.0, + 1922.0, + 294.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1917.0, + 1404.0, + 1917.0, + 1404.0, + 1951.0, + 293.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1947.0, + 1142.0, + 1947.0, + 1142.0, + 1983.0, + 293.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 655.0, + 1404.0, + 655.0, + 1404.0, + 689.0, + 299.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 684.0, + 1404.0, + 684.0, + 1404.0, + 719.0, + 297.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 714.0, + 1155.0, + 714.0, + 1155.0, + 750.0, + 298.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 317.0, + 1405.0, + 317.0, + 1405.0, + 350.0, + 369.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 348.0, + 1405.0, + 348.0, + 1405.0, + 381.0, + 395.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 378.0, + 1403.0, + 378.0, + 1403.0, + 410.0, + 394.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 409.0, + 1405.0, + 409.0, + 1405.0, + 442.0, + 395.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 436.0, + 1406.0, + 436.0, + 1406.0, + 475.0, + 393.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 469.0, + 1163.0, + 469.0, + 1163.0, + 502.0, + 394.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 506.0, + 1405.0, + 506.0, + 1405.0, + 546.0, + 380.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 539.0, + 1406.0, + 539.0, + 1406.0, + 576.0, + 392.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 566.0, + 1406.0, + 566.0, + 1406.0, + 608.0, + 391.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 602.0, + 1311.0, + 602.0, + 1311.0, + 635.0, + 395.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 267.0, + 292.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 975.0, + 261.0, + 975.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1148.0, + 474.0, + 1148.0, + 474.0, + 1184.0, + 296.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1148.0, + 947.0, + 1148.0, + 947.0, + 1184.0, + 551.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 1148.0, + 1402.0, + 1148.0, + 1402.0, + 1184.0, + 967.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1182.0, + 1382.0, + 1182.0, + 1382.0, + 1217.0, + 296.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 853.0, + 1322.0, + 853.0, + 1322.0, + 898.0, + 291.0, + 898.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 776, + 1404, + 776, + 1404, + 1386, + 298, + 1386 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1512, + 1403, + 1512, + 1403, + 1758, + 298, + 1758 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1773, + 1402, + 1773, + 1402, + 1926, + 299, + 1926 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 607, + 1403, + 607, + 1403, + 760, + 298, + 760 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1401, + 1942, + 1401, + 2034, + 300, + 2034 + ], + "score": 0.97 + }, + { + "category_id": 4, + "poly": [ + 516, + 509, + 1180, + 509, + 1180, + 542, + 516, + 542 + ], + "score": 0.931 + }, + { + "category_id": 3, + "poly": [ + 318, + 264, + 1398, + 264, + 1398, + 461, + 318, + 461 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 300, + 1438, + 480, + 1438, + 480, + 1474, + 300, + 1474 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.623 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2112, + 842, + 2112 + ], + "score": 0.347 + }, + { + "category_id": 13, + "poly": [ + 965, + 2006, + 1036, + 2006, + 1036, + 2036, + 965, + 2036 + ], + "score": 0.93, + "latex": "\\epsilon G ( x )" + }, + { + "category_id": 13, + "poly": [ + 503, + 2004, + 579, + 2004, + 579, + 2035, + 503, + 2035 + ], + "score": 0.91, + "latex": "\\hat { y } \\ne y" + }, + { + "category_id": 13, + "poly": [ + 523, + 1974, + 618, + 1974, + 618, + 2002, + 523, + 2002 + ], + "score": 0.9, + "latex": "x + \\Delta x" + }, + { + "category_id": 13, + "poly": [ + 365, + 1974, + 407, + 1974, + 407, + 2001, + 365, + 2001 + ], + "score": 0.83, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 1000, + 640, + 1042, + 640, + 1042, + 667, + 1000, + 667 + ], + "score": 0.83, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 1127, + 2004, + 1152, + 2004, + 1152, + 2030, + 1127, + 2030 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1238, + 608, + 1279, + 608, + 1279, + 636, + 1238, + 636 + ], + "score": 0.81, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 694, + 1948, + 712, + 1948, + 712, + 1974, + 694, + 1974 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 469, + 1949, + 488, + 1949, + 488, + 1970, + 469, + 1970 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 503, + 1239, + 523, + 1239, + 523, + 1261, + 503, + 1261 + ], + "score": 0.72, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1209, + 1393, + 1209, + 1393, + 1231, + 1374, + 1231 + ], + "score": 0.65, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 507.0, + 1181.0, + 507.0, + 1181.0, + 546.0, + 518.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 259.0, + 424.0, + 259.0, + 424.0, + 292.0, + 309.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 294.0, + 379.0, + 294.0, + 379.0, + 323.0, + 348.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 321.0, + 803.0, + 321.0, + 803.0, + 342.0, + 784.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 322.0, + 1037.0, + 322.0, + 1037.0, + 338.0, + 1021.0, + 338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 334.0, + 507.0, + 334.0, + 507.0, + 387.0, + 410.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 337.0, + 584.0, + 337.0, + 584.0, + 372.0, + 529.0, + 372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 351.0, + 621.0, + 351.0, + 621.0, + 387.0, + 586.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 352.0, + 742.0, + 352.0, + 742.0, + 389.0, + 669.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 350.0, + 825.0, + 350.0, + 825.0, + 389.0, + 784.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 352.0, + 974.0, + 352.0, + 974.0, + 387.0, + 870.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 337.0, + 1189.0, + 337.0, + 1189.0, + 388.0, + 1068.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 346.0, + 1312.0, + 346.0, + 1312.0, + 380.0, + 1256.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 390.0, + 774.0, + 390.0, + 774.0, + 417.0, + 634.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 387.0, + 989.0, + 387.0, + 989.0, + 420.0, + 848.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 380.0, + 1380.0, + 380.0, + 1380.0, + 409.0, + 1208.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 402.0, + 1398.0, + 402.0, + 1398.0, + 435.0, + 1207.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 433.0, + 616.0, + 433.0, + 616.0, + 458.0, + 591.0, + 458.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": [ + 291.0, + 1432.0, + 486.0, + 1432.0, + 486.0, + 1482.0, + 291.0, + 1482.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": [ + 293.0, + 773.0, + 1403.0, + 773.0, + 1403.0, + 812.0, + 293.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 807.0, + 1404.0, + 807.0, + 1404.0, + 842.0, + 294.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 834.0, + 1405.0, + 834.0, + 1405.0, + 874.0, + 292.0, + 874.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, + 1404.0, + 899.0, + 1404.0, + 933.0, + 294.0, + 933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 928.0, + 1404.0, + 928.0, + 1404.0, + 965.0, + 295.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 1404.0, + 960.0, + 1404.0, + 993.0, + 293.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 990.0, + 1404.0, + 990.0, + 1404.0, + 1024.0, + 293.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 1405.0, + 1021.0, + 1405.0, + 1055.0, + 294.0, + 1055.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": [ + 297.0, + 1083.0, + 1404.0, + 1083.0, + 1404.0, + 1114.0, + 297.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1111.0, + 1404.0, + 1111.0, + 1404.0, + 1146.0, + 293.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1141.0, + 1406.0, + 1141.0, + 1406.0, + 1177.0, + 293.0, + 1177.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1207.0, + 294.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1201.0, + 1373.0, + 1201.0, + 1373.0, + 1241.0, + 292.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1201.0, + 1408.0, + 1201.0, + 1408.0, + 1241.0, + 1394.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1234.0, + 502.0, + 1234.0, + 502.0, + 1268.0, + 293.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1234.0, + 1404.0, + 1234.0, + 1404.0, + 1268.0, + 524.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1263.0, + 1407.0, + 1263.0, + 1407.0, + 1300.0, + 292.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1293.0, + 1406.0, + 1293.0, + 1406.0, + 1330.0, + 293.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1324.0, + 1405.0, + 1324.0, + 1405.0, + 1362.0, + 293.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1356.0, + 752.0, + 1356.0, + 752.0, + 1390.0, + 296.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 1404.0, + 1514.0, + 1404.0, + 1547.0, + 294.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1542.0, + 1405.0, + 1542.0, + 1405.0, + 1579.0, + 293.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1405.0, + 1574.0, + 1405.0, + 1607.0, + 294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1604.0, + 1407.0, + 1604.0, + 1407.0, + 1640.0, + 289.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1634.0, + 1404.0, + 1634.0, + 1404.0, + 1672.0, + 291.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1666.0, + 1404.0, + 1666.0, + 1404.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1695.0, + 1407.0, + 1695.0, + 1407.0, + 1732.0, + 293.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1724.0, + 898.0, + 1724.0, + 898.0, + 1764.0, + 292.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1772.0, + 1406.0, + 1772.0, + 1406.0, + 1809.0, + 297.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1802.0, + 1406.0, + 1802.0, + 1406.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 1406.0, + 1834.0, + 1406.0, + 1868.0, + 293.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 1406.0, + 1864.0, + 1406.0, + 1898.0, + 293.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1896.0, + 962.0, + 1896.0, + 962.0, + 1929.0, + 295.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 604.0, + 1237.0, + 604.0, + 1237.0, + 641.0, + 296.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 604.0, + 1407.0, + 604.0, + 1407.0, + 641.0, + 1280.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 639.0, + 999.0, + 639.0, + 999.0, + 672.0, + 294.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 639.0, + 1404.0, + 639.0, + 1404.0, + 672.0, + 1043.0, + 672.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": [ + 296.0, + 701.0, + 1403.0, + 701.0, + 1403.0, + 734.0, + 296.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 728.0, + 1202.0, + 728.0, + 1202.0, + 765.0, + 294.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 468.0, + 1942.0, + 468.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1942.0, + 693.0, + 1942.0, + 693.0, + 1976.0, + 489.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 1942.0, + 1403.0, + 1942.0, + 1403.0, + 1976.0, + 713.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 364.0, + 1972.0, + 364.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1972.0, + 522.0, + 1972.0, + 522.0, + 2006.0, + 408.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2006.0, + 619.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 502.0, + 2002.0, + 502.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 580.0, + 2002.0, + 964.0, + 2002.0, + 964.0, + 2036.0, + 580.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 2002.0, + 1126.0, + 2002.0, + 1126.0, + 2036.0, + 1037.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 2002.0, + 1403.0, + 2002.0, + 1403.0, + 2036.0, + 1153.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1694, + 1404, + 1694, + 1404, + 1850, + 298, + 1850 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1137, + 1403, + 1137, + 1403, + 1291, + 298, + 1291 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 725, + 1403, + 725, + 1403, + 851, + 297, + 851 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 414, + 298, + 414 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 428, + 1402, + 428, + 1402, + 523, + 299, + 523 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1402, + 1941, + 1402, + 2035, + 299, + 2035 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1465, + 1404, + 1465, + 1404, + 1682, + 298, + 1682 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 299, + 619, + 1402, + 619, + 1402, + 711, + 299, + 711 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 583, + 1051, + 1116, + 1051, + 1116, + 1133, + 583, + 1133 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 505, + 530, + 1197, + 530, + 1197, + 615, + 505, + 615 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 599, + 1377, + 1099, + 1377, + 1099, + 1460, + 599, + 1460 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 297, + 1304, + 1398, + 1304, + 1398, + 1369, + 297, + 1369 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 702, + 929, + 999, + 929, + 999, + 1009, + 702, + 1009 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 296, + 864, + 1401, + 864, + 1401, + 926, + 296, + 926 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 292, + 1012, + 1253, + 1012, + 1253, + 1043, + 292, + 1043 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 302, + 1884, + 774, + 1884, + 774, + 1916, + 302, + 1916 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 104, + 300, + 104 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1073, + 1400, + 1073, + 1400, + 1103, + 1366, + 1103 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1401, + 1400, + 1401, + 1400, + 1432, + 1366, + 1432 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1366, + 556, + 1400, + 556, + 1400, + 585, + 1366, + 585 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1366, + 952, + 1400, + 952, + 1400, + 981, + 1366, + 981 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.763 + }, + { + "category_id": 14, + "poly": [ + 699, + 922, + 998, + 922, + 998, + 1013, + 699, + 1013 + ], + "score": 0.95, + "latex": "R \\left( \\theta \\right) = \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) ," + }, + { + "category_id": 14, + "poly": [ + 599, + 1373, + 1101, + 1373, + 1101, + 1462, + 599, + 1462 + ], + "score": 0.95, + "latex": "R _ { G } ( \\theta ) = \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) ." + }, + { + "category_id": 14, + "poly": [ + 585, + 1046, + 1115, + 1046, + 1115, + 1135, + 585, + 1135 + ], + "score": 0.94, + "latex": "R _ { a d v } ( \\theta ) = \\sum _ { i = 1 } ^ { n } \\operatorname* { m a x } _ { \\Delta x , \\| \\Delta x \\| \\leq \\epsilon } l ( D _ { \\theta } ( x _ { i } + \\Delta x ) , y _ { i } ) ." + }, + { + "category_id": 14, + "poly": [ + 505, + 526, + 1193, + 526, + 1193, + 617, + 505, + 617 + ], + "score": 0.94, + "latex": "\\operatorname* { m i n } _ { \\theta } \\operatorname* { m a x } _ { \\phi } \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) + \\lambda \\sum _ { i = 1 } ^ { n } l ( D _ { \\theta } ( x _ { i } + \\epsilon G _ { \\phi } ( x _ { i } ) ) , y _ { i } ) ," + }, + { + "category_id": 13, + "poly": [ + 598, + 1469, + 682, + 1469, + 682, + 1501, + 598, + 1501 + ], + "score": 0.93, + "latex": "G _ { \\phi } ( x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 481, + 1232, + 575, + 1232, + 575, + 1262, + 481, + 1262 + ], + "score": 0.93, + "latex": "R _ { a d v } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 717, + 1172, + 811, + 1172, + 811, + 1201, + 717, + 1201 + ], + "score": 0.93, + "latex": "R _ { a d v } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1078, + 2003, + 1165, + 2003, + 1165, + 2036, + 1078, + 2036 + ], + "score": 0.92, + "latex": "F ( \\theta , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 833, + 1202, + 927, + 1202, + 927, + 1232, + 833, + 1232 + ], + "score": 0.92, + "latex": "R _ { a d v } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 474, + 1171, + 531, + 1171, + 531, + 1201, + 474, + 1201 + ], + "score": 0.91, + "latex": "R ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 660, + 429, + 933, + 429, + 933, + 463, + 660, + 463 + ], + "score": 0.91, + "latex": "\\left\\{ ( x _ { 1 } , y _ { 1 } ) , \\dotsc , ( x _ { n } , y _ { n } ) \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1232, + 356, + 1232, + 356, + 1262, + 298, + 1262 + ], + "score": 0.91, + "latex": "R ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 1314, + 320, + 1400, + 320, + 1400, + 350, + 1314, + 350 + ], + "score": 0.9, + "latex": "z \\in { \\mathbb { R } ^ { d } }" + }, + { + "category_id": 13, + "poly": [ + 996, + 462, + 1035, + 462, + 1035, + 494, + 996, + 494 + ], + "score": 0.9, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 411, + 1649, + 451, + 1649, + 451, + 1684, + 411, + 1684 + ], + "score": 0.9, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 329, + 788, + 408, + 788, + 408, + 821, + 329, + 821 + ], + "score": 0.9, + "latex": "[ - 1 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 749, + 820, + 787, + 820, + 787, + 853, + 749, + 853 + ], + "score": 0.9, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 492, + 1209, + 492, + 1209, + 525, + 1171, + 525 + ], + "score": 0.9, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 890, + 759, + 928, + 759, + 928, + 791, + 890, + 791 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1123, + 1169, + 1160, + 1169, + 1160, + 1198, + 1123, + 1198 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 714, + 1312, + 754, + 1312, + 754, + 1332, + 714, + 1332 + ], + "score": 0.89, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 396, + 1340, + 433, + 1340, + 433, + 1371, + 396, + 1371 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1590, + 336, + 1590, + 336, + 1623, + 298, + 1623 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 839, + 727, + 876, + 727, + 876, + 758, + 839, + 758 + ], + "score": 0.89, + "latex": "\\ell _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 821, + 1650, + 859, + 1650, + 859, + 1680, + 821, + 1680 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1033, + 1589, + 1071, + 1589, + 1071, + 1619, + 1033, + 1619 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 492, + 1119, + 492, + 1119, + 521, + 1082, + 521 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 431, + 1271, + 431, + 1271, + 460, + 1233, + 460 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 701, + 1265, + 715, + 1265, + 715, + 1285, + 701, + 1285 + ], + "score": 0.88, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 441, + 1265, + 480, + 1265, + 480, + 1286, + 441, + 1286 + ], + "score": 0.88, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 685, + 789, + 712, + 789, + 712, + 818, + 685, + 818 + ], + "score": 0.88, + "latex": "\\ell _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 747, + 789, + 774, + 789, + 774, + 818, + 747, + 818 + ], + "score": 0.88, + "latex": "\\ell _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 894, + 1499, + 914, + 1499, + 914, + 1529, + 894, + 1529 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 662, + 622, + 681, + 622, + 681, + 647, + 662, + 647 + ], + "score": 0.84, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 485, + 1529, + 525, + 1529, + 525, + 1555, + 485, + 1555 + ], + "score": 0.83, + "latex": "\\Delta x" + }, + { + "category_id": 13, + "poly": [ + 427, + 492, + 446, + 492, + 446, + 522, + 427, + 522 + ], + "score": 0.83, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1093, + 353, + 1119, + 353, + 1119, + 380, + 1093, + 380 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1288, + 867, + 1306, + 867, + 1306, + 893, + 1288, + 893 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 922, + 464, + 938, + 464, + 938, + 488, + 922, + 488 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 298, + 323, + 323, + 323, + 323, + 350, + 298, + 350 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 426, + 1498, + 442, + 1498, + 442, + 1524, + 426, + 1524 + ], + "score": 0.77, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1216, + 358, + 1235, + 358, + 1235, + 380, + 1216, + 380 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 768, + 358, + 786, + 358, + 786, + 385, + 768, + 385 + ], + "score": 0.76, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 383, + 293, + 408, + 293, + 408, + 320, + 383, + 320 + ], + "score": 0.76, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1064, + 656, + 1078, + 656, + 1078, + 677, + 1064, + 677 + ], + "score": 0.75, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 371, + 622, + 383, + 622, + 383, + 647, + 371, + 647 + ], + "score": 0.75, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 1034, + 237, + 1054, + 237, + 1054, + 258, + 1034, + 258 + ], + "score": 0.73, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1106, + 237, + 1123, + 237, + 1123, + 259, + 1106, + 259 + ], + "score": 0.69, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1019, + 1252, + 1019, + 1252, + 1038, + 1237, + 1038 + ], + "score": 0.68, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 777.0, + 1884.0, + 777.0, + 1920.0, + 295.0, + 1920.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": [ + 838.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1693.0, + 1401.0, + 1693.0, + 1401.0, + 1729.0, + 293.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1727.0, + 1402.0, + 1727.0, + 1402.0, + 1760.0, + 296.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1757.0, + 1402.0, + 1757.0, + 1402.0, + 1791.0, + 294.0, + 1791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1785.0, + 1404.0, + 1785.0, + 1404.0, + 1824.0, + 292.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1815.0, + 1350.0, + 1815.0, + 1350.0, + 1853.0, + 293.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1136.0, + 1405.0, + 1136.0, + 1405.0, + 1172.0, + 294.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1166.0, + 473.0, + 1166.0, + 473.0, + 1203.0, + 294.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1166.0, + 716.0, + 1166.0, + 716.0, + 1203.0, + 532.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1166.0, + 1122.0, + 1166.0, + 1122.0, + 1203.0, + 812.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1161.0, + 1166.0, + 1403.0, + 1166.0, + 1403.0, + 1203.0, + 1161.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 832.0, + 1197.0, + 832.0, + 1234.0, + 294.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1197.0, + 1405.0, + 1197.0, + 1405.0, + 1234.0, + 928.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1223.0, + 480.0, + 1223.0, + 480.0, + 1267.0, + 357.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1223.0, + 1405.0, + 1223.0, + 1405.0, + 1267.0, + 576.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1258.0, + 440.0, + 1258.0, + 440.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1258.0, + 700.0, + 1258.0, + 700.0, + 1295.0, + 481.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1258.0, + 1376.0, + 1258.0, + 1376.0, + 1295.0, + 716.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 726.0, + 838.0, + 726.0, + 838.0, + 762.0, + 292.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 726.0, + 1407.0, + 726.0, + 1407.0, + 762.0, + 877.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 755.0, + 889.0, + 755.0, + 889.0, + 794.0, + 291.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 794.0, + 929.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 787.0, + 328.0, + 787.0, + 328.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 787.0, + 684.0, + 787.0, + 684.0, + 823.0, + 409.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 787.0, + 746.0, + 787.0, + 746.0, + 823.0, + 713.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 775.0, + 787.0, + 1404.0, + 787.0, + 1404.0, + 823.0, + 775.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 819.0, + 748.0, + 819.0, + 748.0, + 855.0, + 292.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 788.0, + 819.0, + 798.0, + 819.0, + 798.0, + 855.0, + 788.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1033.0, + 229.0, + 1033.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 229.0, + 1105.0, + 229.0, + 1105.0, + 265.0, + 1055.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 265.0, + 1124.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 260.0, + 1405.0, + 260.0, + 1405.0, + 297.0, + 292.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 288.0, + 382.0, + 288.0, + 382.0, + 326.0, + 293.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 288.0, + 1403.0, + 288.0, + 1403.0, + 326.0, + 409.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 318.0, + 297.0, + 318.0, + 297.0, + 357.0, + 292.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 318.0, + 1313.0, + 318.0, + 1313.0, + 357.0, + 324.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 318.0, + 1405.0, + 318.0, + 1405.0, + 357.0, + 1401.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 352.0, + 767.0, + 352.0, + 767.0, + 386.0, + 293.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 352.0, + 1092.0, + 352.0, + 1092.0, + 386.0, + 787.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 352.0, + 1215.0, + 352.0, + 1215.0, + 386.0, + 1120.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 386.0, + 1236.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 384.0, + 517.0, + 384.0, + 517.0, + 415.0, + 296.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 426.0, + 659.0, + 426.0, + 659.0, + 467.0, + 294.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 426.0, + 1232.0, + 426.0, + 1232.0, + 467.0, + 934.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 426.0, + 1406.0, + 426.0, + 1406.0, + 467.0, + 1272.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 461.0, + 921.0, + 461.0, + 921.0, + 495.0, + 295.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 461.0, + 995.0, + 461.0, + 995.0, + 495.0, + 939.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 461.0, + 1404.0, + 461.0, + 1404.0, + 495.0, + 1036.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 490.0, + 426.0, + 490.0, + 426.0, + 528.0, + 294.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 490.0, + 1081.0, + 490.0, + 1081.0, + 528.0, + 447.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 490.0, + 1170.0, + 490.0, + 1170.0, + 528.0, + 1120.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 490.0, + 1221.0, + 490.0, + 1221.0, + 528.0, + 1210.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2005.0, + 295.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1077.0, + 2003.0, + 1077.0, + 2036.0, + 295.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2036.0, + 1166.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1465.0, + 597.0, + 1465.0, + 597.0, + 1503.0, + 293.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1465.0, + 1406.0, + 1465.0, + 1406.0, + 1503.0, + 683.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1498.0, + 425.0, + 1498.0, + 425.0, + 1531.0, + 293.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 443.0, + 1498.0, + 893.0, + 1498.0, + 893.0, + 1531.0, + 443.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1498.0, + 1405.0, + 1498.0, + 1405.0, + 1531.0, + 915.0, + 1531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1526.0, + 484.0, + 1526.0, + 484.0, + 1562.0, + 291.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1562.0, + 526.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1560.0, + 1404.0, + 1560.0, + 1404.0, + 1591.0, + 296.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1588.0, + 297.0, + 1588.0, + 297.0, + 1623.0, + 294.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1588.0, + 1032.0, + 1588.0, + 1032.0, + 1623.0, + 337.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1623.0, + 1072.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1619.0, + 1405.0, + 1619.0, + 1405.0, + 1653.0, + 293.0, + 1653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1649.0, + 410.0, + 1649.0, + 410.0, + 1684.0, + 294.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1649.0, + 820.0, + 1649.0, + 820.0, + 1684.0, + 452.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 1649.0, + 990.0, + 1649.0, + 990.0, + 1684.0, + 860.0, + 1684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 619.0, + 370.0, + 619.0, + 370.0, + 653.0, + 295.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 619.0, + 661.0, + 619.0, + 661.0, + 653.0, + 384.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 619.0, + 1403.0, + 619.0, + 1403.0, + 653.0, + 682.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 649.0, + 1063.0, + 649.0, + 1063.0, + 684.0, + 294.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1079.0, + 649.0, + 1404.0, + 649.0, + 1404.0, + 684.0, + 1079.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 679.0, + 797.0, + 679.0, + 797.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1304.0, + 713.0, + 1304.0, + 713.0, + 1340.0, + 295.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1304.0, + 1403.0, + 1304.0, + 1403.0, + 1340.0, + 755.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1334.0, + 395.0, + 1334.0, + 395.0, + 1374.0, + 293.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1334.0, + 656.0, + 1334.0, + 656.0, + 1374.0, + 434.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 863.0, + 1287.0, + 863.0, + 1287.0, + 899.0, + 295.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1307.0, + 863.0, + 1405.0, + 863.0, + 1405.0, + 899.0, + 1307.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 895.0, + 624.0, + 895.0, + 624.0, + 930.0, + 295.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1007.0, + 1236.0, + 1007.0, + 1236.0, + 1048.0, + 293.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1007.0, + 1256.0, + 1007.0, + 1256.0, + 1048.0, + 1253.0, + 1048.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1491, + 1404, + 1491, + 1404, + 1859, + 297, + 1859 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 299, + 371, + 1404, + 371, + 1404, + 589, + 299, + 589 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1352, + 1405, + 1352, + 1405, + 1477, + 299, + 1477 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 715, + 1405, + 715, + 1405, + 875, + 297, + 875 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 965, + 1404, + 965, + 1404, + 1059, + 298, + 1059 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 504, + 600, + 1195, + 600, + 1195, + 704, + 504, + 704 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 292, + 228, + 1401, + 228, + 1401, + 294, + 292, + 294 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 298, + 1197, + 1403, + 1197, + 1403, + 1261, + 298, + 1261 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 678, + 305, + 1023, + 305, + 1023, + 363, + 678, + 363 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 486, + 886, + 1209, + 886, + 1209, + 954, + 486, + 954 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 297, + 1073, + 1402, + 1073, + 1402, + 1136, + 297, + 1136 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 675, + 1149, + 1022, + 1149, + 1022, + 1187, + 675, + 1187 + ], + "score": 0.944 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1401, + 1972, + 1401, + 2033, + 299, + 2033 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 816, + 74, + 816, + 105, + 299, + 105 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 298, + 1296, + 1192, + 1296, + 1192, + 1329, + 298, + 1329 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 300, + 1903, + 557, + 1903, + 557, + 1938, + 300, + 1938 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1366, + 317, + 1399, + 317, + 1399, + 347, + 1366, + 347 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1366, + 908, + 1400, + 908, + 1400, + 938, + 1366, + 938 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.721 + }, + { + "category_id": 14, + "poly": [ + 676, + 303, + 1021, + 303, + 1021, + 363, + 676, + 363 + ], + "score": 0.94, + "latex": "F ( \\theta , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 } ," + }, + { + "category_id": 13, + "poly": [ + 1123, + 230, + 1226, + 230, + 1226, + 264, + 1123, + 264 + ], + "score": 0.94, + "latex": "F ( \\theta , \\phi _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 680, + 812, + 760, + 812, + 760, + 846, + 680, + 846 + ], + "score": 0.93, + "latex": "H ( x ) v" + }, + { + "category_id": 13, + "poly": [ + 727, + 435, + 828, + 435, + 828, + 468, + 727, + 468 + ], + "score": 0.93, + "latex": "F ( \\theta , \\phi _ { k } )" + }, + { + "category_id": 14, + "poly": [ + 488, + 885, + 1210, + 885, + 1210, + 956, + 488, + 956 + ], + "score": 0.93, + "latex": "\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\approx \\nabla _ { \\theta } [ \\frac { F ( \\theta _ { l } , \\phi _ { k } + h v ) - F ( \\theta _ { l } , \\phi _ { k } ) } { h } ] ," + }, + { + "category_id": 13, + "poly": [ + 681, + 717, + 983, + 717, + 983, + 756, + 681, + 756 + ], + "score": 0.92, + "latex": "\\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )" + }, + { + "category_id": 14, + "poly": [ + 674, + 1148, + 1023, + 1148, + 1023, + 1187, + 674, + 1187 + ], + "score": 0.92, + "latex": "\\phi _ { k + 1 } = \\phi _ { k } + \\eta _ { G } \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) ." + }, + { + "category_id": 14, + "poly": [ + 503, + 599, + 1197, + 599, + 1197, + 707, + 503, + 707 + ], + "score": 0.92, + "latex": "\\begin{array} { l } { { \\displaystyle \\theta _ { l + 1 } = \\theta _ { l } - \\eta _ { D } \\nabla _ { \\theta } [ F ( \\theta _ { l } , \\phi _ { k } ) + \\frac { \\gamma } { 2 } \\| \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) \\| ^ { 2 } ] } } \\\\ { { \\displaystyle \\quad \\quad = \\theta _ { l } - \\eta _ { D } [ \\nabla _ { \\theta } F ( \\theta _ { l } , \\phi _ { k } ) + \\gamma \\nabla _ { \\theta \\phi } ^ { 2 } F ( \\theta _ { l } , \\phi _ { k } ) \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } ) ] } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 966, + 576, + 966, + 576, + 1000, + 373, + 1000 + ], + "score": 0.92, + "latex": "v = \\nabla _ { \\phi } F ( \\theta _ { l } , \\phi _ { k } )" + }, + { + "category_id": 13, + "poly": [ + 991, + 1616, + 1030, + 1616, + 1030, + 1648, + 991, + 1648 + ], + "score": 0.92, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 299, + 464, + 477, + 464, + 477, + 500, + 299, + 500 + ], + "score": 0.92, + "latex": "\\| \\nabla _ { \\phi } \\bar { F } ( \\theta , \\phi _ { k } ) \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 974, + 782, + 1030, + 782, + 1030, + 815, + 974, + 815 + ], + "score": 0.92, + "latex": "f ( x )" + }, + { + "category_id": 13, + "poly": [ + 484, + 1027, + 613, + 1027, + 613, + 1060, + 484, + 1060 + ], + "score": 0.92, + "latex": "h = \\eta _ { G } / 1 0" + }, + { + "category_id": 13, + "poly": [ + 703, + 967, + 803, + 967, + 803, + 999, + 703, + 999 + ], + "score": 0.92, + "latex": "\\phi _ { k } + h v" + }, + { + "category_id": 13, + "poly": [ + 298, + 404, + 477, + 404, + 477, + 438, + 298, + 438 + ], + "score": 0.91, + "latex": "\\| \\nabla _ { \\phi } F ( \\theta , \\phi _ { k } ) \\| ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 812, + 362, + 812, + 362, + 845, + 298, + 845 + ], + "score": 0.9, + "latex": "H ( x )" + }, + { + "category_id": 13, + "poly": [ + 1040, + 813, + 1294, + 813, + 1294, + 846, + 1040, + 846 + ], + "score": 0.9, + "latex": "( g ( x + h v ) - g ( x ) ) / h" + }, + { + "category_id": 13, + "poly": [ + 452, + 1524, + 491, + 1524, + 491, + 1558, + 452, + 1558 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 756, + 1554, + 796, + 1554, + 796, + 1587, + 756, + 1587 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1129, + 406, + 1162, + 406, + 1162, + 436, + 1129, + 436 + ], + "score": 0.89, + "latex": "\\phi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 782, + 1252, + 782, + 1252, + 814, + 1198, + 814 + ], + "score": 0.89, + "latex": "g ( x )" + }, + { + "category_id": 13, + "poly": [ + 606, + 232, + 639, + 232, + 639, + 263, + 606, + 263 + ], + "score": 0.89, + "latex": "\\phi _ { k }" + }, + { + "category_id": 13, + "poly": [ + 1355, + 968, + 1393, + 968, + 1393, + 1001, + 1355, + 1001 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 959, + 1494, + 996, + 1494, + 996, + 1523, + 959, + 1523 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 790, + 1676, + 828, + 1676, + 828, + 1706, + 790, + 1706 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 776, + 1106, + 800, + 1106, + 800, + 1135, + 776, + 1135 + ], + "score": 0.88, + "latex": "\\theta _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1202, + 1555, + 1240, + 1555, + 1240, + 1584, + 1202, + 1584 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1075, + 406, + 1096, + 406, + 1096, + 436, + 1075, + 436 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 821, + 1077, + 841, + 1077, + 841, + 1106, + 821, + 1106 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1259, + 561, + 1295, + 561, + 1295, + 589, + 1259, + 589 + ], + "score": 0.85, + "latex": "\\eta _ { D }" + }, + { + "category_id": 13, + "poly": [ + 953, + 1110, + 987, + 1110, + 987, + 1137, + 953, + 1137 + ], + "score": 0.85, + "latex": "\\eta _ { G }" + }, + { + "category_id": 13, + "poly": [ + 1126, + 466, + 1147, + 466, + 1147, + 496, + 1126, + 496 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 850, + 1200, + 870, + 1200, + 870, + 1230, + 850, + 1230 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 426, + 438, + 444, + 438, + 444, + 462, + 426, + 462 + ], + "score": 0.84, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1272, + 1677, + 1293, + 1677, + 1293, + 1707, + 1272, + 1707 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1057, + 1586, + 1076, + 1586, + 1076, + 1616, + 1057, + 1616 + ], + "score": 0.82, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1189, + 998, + 1209, + 998, + 1209, + 1024, + 1189, + 1024 + ], + "score": 0.82, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 373, + 380, + 393, + 380, + 393, + 405, + 373, + 405 + ], + "score": 0.82, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 952, + 558, + 968, + 558, + 968, + 584, + 952, + 584 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 486, + 1230, + 503, + 1230, + 503, + 1255, + 486, + 1255 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1343, + 232, + 1361, + 232, + 1361, + 258, + 1343, + 258 + ], + "score": 0.8, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 868, + 466, + 885, + 466, + 885, + 492, + 868, + 492 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 730, + 1677, + 747, + 1677, + 747, + 1703, + 730, + 1703 + ], + "score": 0.79, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 574, + 1832, + 596, + 1832, + 596, + 1860, + 574, + 1860 + ], + "score": 0.78, + "latex": "\\gamma" + }, + { + "category_id": 13, + "poly": [ + 298, + 847, + 317, + 847, + 317, + 870, + 298, + 870 + ], + "score": 0.77, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 382, + 1000, + 401, + 1000, + 401, + 1024, + 382, + 1024 + ], + "score": 0.76, + "latex": "h" + }, + { + "category_id": 13, + "poly": [ + 416, + 1799, + 436, + 1799, + 436, + 1825, + 416, + 1825 + ], + "score": 0.69, + "latex": "\\lambda" + }, + { + "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": [ + 294.0, + 1296.0, + 1195.0, + 1296.0, + 1195.0, + 1331.0, + 294.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1900.0, + 561.0, + 1900.0, + 561.0, + 1944.0, + 293.0, + 1944.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, + 1490.0, + 958.0, + 1490.0, + 958.0, + 1529.0, + 294.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1490.0, + 1404.0, + 1490.0, + 1404.0, + 1529.0, + 997.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1521.0, + 451.0, + 1521.0, + 451.0, + 1558.0, + 294.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1521.0, + 1405.0, + 1521.0, + 1405.0, + 1558.0, + 492.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1552.0, + 755.0, + 1552.0, + 755.0, + 1591.0, + 292.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1552.0, + 1201.0, + 1552.0, + 1201.0, + 1591.0, + 797.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1552.0, + 1404.0, + 1552.0, + 1404.0, + 1591.0, + 1241.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1585.0, + 1056.0, + 1585.0, + 1056.0, + 1623.0, + 294.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1585.0, + 1406.0, + 1585.0, + 1406.0, + 1623.0, + 1077.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1614.0, + 990.0, + 1614.0, + 990.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 1614.0, + 1407.0, + 1614.0, + 1407.0, + 1652.0, + 1031.0, + 1652.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": [ + 294.0, + 1675.0, + 729.0, + 1675.0, + 729.0, + 1712.0, + 294.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1675.0, + 789.0, + 1675.0, + 789.0, + 1712.0, + 748.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1675.0, + 1271.0, + 1675.0, + 1271.0, + 1712.0, + 829.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1675.0, + 1405.0, + 1675.0, + 1405.0, + 1712.0, + 1294.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1705.0, + 1406.0, + 1705.0, + 1406.0, + 1740.0, + 294.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1737.0, + 1406.0, + 1737.0, + 1406.0, + 1771.0, + 295.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1766.0, + 1406.0, + 1766.0, + 1406.0, + 1799.0, + 294.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1798.0, + 415.0, + 1798.0, + 415.0, + 1832.0, + 294.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 1798.0, + 1405.0, + 1798.0, + 1405.0, + 1832.0, + 437.0, + 1832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1827.0, + 573.0, + 1827.0, + 573.0, + 1861.0, + 294.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1827.0, + 1218.0, + 1827.0, + 1218.0, + 1861.0, + 597.0, + 1861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 372.0, + 372.0, + 372.0, + 372.0, + 410.0, + 294.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 372.0, + 1405.0, + 372.0, + 1405.0, + 410.0, + 394.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 403.0, + 1074.0, + 403.0, + 1074.0, + 440.0, + 478.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 403.0, + 1128.0, + 403.0, + 1128.0, + 440.0, + 1097.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 403.0, + 1405.0, + 403.0, + 1405.0, + 440.0, + 1163.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 435.0, + 425.0, + 435.0, + 425.0, + 470.0, + 295.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 435.0, + 726.0, + 435.0, + 726.0, + 470.0, + 445.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 435.0, + 1405.0, + 435.0, + 1405.0, + 470.0, + 829.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 463.0, + 298.0, + 463.0, + 298.0, + 501.0, + 295.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 463.0, + 867.0, + 463.0, + 867.0, + 501.0, + 478.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 463.0, + 1125.0, + 463.0, + 1125.0, + 501.0, + 886.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 463.0, + 1405.0, + 463.0, + 1405.0, + 501.0, + 1148.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 496.0, + 1404.0, + 496.0, + 1404.0, + 531.0, + 294.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 526.0, + 1405.0, + 526.0, + 1405.0, + 561.0, + 293.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 552.0, + 951.0, + 552.0, + 951.0, + 596.0, + 293.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 552.0, + 1258.0, + 552.0, + 1258.0, + 596.0, + 969.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 552.0, + 1308.0, + 552.0, + 1308.0, + 596.0, + 1296.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1403.0, + 1356.0, + 1403.0, + 1385.0, + 295.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1386.0, + 1403.0, + 1386.0, + 1403.0, + 1416.0, + 297.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1417.0, + 1405.0, + 1417.0, + 1405.0, + 1450.0, + 294.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1447.0, + 616.0, + 1447.0, + 616.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 714.0, + 680.0, + 714.0, + 680.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 714.0, + 1406.0, + 714.0, + 1406.0, + 760.0, + 984.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 750.0, + 1405.0, + 750.0, + 1405.0, + 785.0, + 294.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 781.0, + 973.0, + 781.0, + 973.0, + 815.0, + 296.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1031.0, + 781.0, + 1197.0, + 781.0, + 1197.0, + 815.0, + 1031.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 781.0, + 1403.0, + 781.0, + 1403.0, + 815.0, + 1253.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 297.0, + 809.0, + 297.0, + 851.0, + 294.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 809.0, + 679.0, + 809.0, + 679.0, + 851.0, + 363.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 809.0, + 1039.0, + 809.0, + 1039.0, + 851.0, + 761.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 809.0, + 1405.0, + 809.0, + 1405.0, + 851.0, + 1295.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 297.0, + 840.0, + 297.0, + 878.0, + 294.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 840.0, + 860.0, + 840.0, + 860.0, + 878.0, + 318.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 961.0, + 372.0, + 961.0, + 372.0, + 1004.0, + 293.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 961.0, + 702.0, + 961.0, + 702.0, + 1004.0, + 577.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 961.0, + 1354.0, + 961.0, + 1354.0, + 1004.0, + 804.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 961.0, + 1404.0, + 961.0, + 1404.0, + 1004.0, + 1394.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 995.0, + 381.0, + 995.0, + 381.0, + 1029.0, + 296.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 995.0, + 1188.0, + 995.0, + 1188.0, + 1029.0, + 402.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1029.0, + 1210.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1027.0, + 483.0, + 1027.0, + 483.0, + 1060.0, + 293.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1027.0, + 1379.0, + 1027.0, + 1379.0, + 1060.0, + 614.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 605.0, + 230.0, + 605.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 230.0, + 1122.0, + 230.0, + 1122.0, + 266.0, + 640.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 230.0, + 1342.0, + 230.0, + 1342.0, + 266.0, + 1227.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 266.0, + 1362.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1178.0, + 261.0, + 1178.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1194.0, + 849.0, + 1194.0, + 849.0, + 1232.0, + 296.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1232.0, + 871.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1226.0, + 485.0, + 1226.0, + 485.0, + 1266.0, + 293.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 1226.0, + 911.0, + 1226.0, + 911.0, + 1266.0, + 504.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1071.0, + 820.0, + 1071.0, + 820.0, + 1108.0, + 295.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1071.0, + 1404.0, + 1071.0, + 1404.0, + 1108.0, + 842.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1102.0, + 775.0, + 1102.0, + 775.0, + 1140.0, + 293.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 1102.0, + 952.0, + 1102.0, + 952.0, + 1140.0, + 801.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1102.0, + 1126.0, + 1102.0, + 1126.0, + 1140.0, + 988.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2006.0, + 297.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1403.0, + 2001.0, + 1403.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1538, + 1404, + 1538, + 1404, + 1814, + 297, + 1814 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 926, + 1405, + 926, + 1405, + 1325, + 297, + 1325 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1339, + 1403, + 1339, + 1403, + 1524, + 298, + 1524 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 674, + 1403, + 674, + 1403, + 832, + 298, + 832 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1403, + 1911, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 324, + 298, + 324 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 535, + 568, + 1161, + 568, + 1161, + 659, + 535, + 659 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 296, + 486, + 1405, + 486, + 1405, + 551, + 296, + 551 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 608, + 386, + 1091, + 386, + 1091, + 426, + 608, + 426 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 294, + 439, + 1242, + 439, + 1242, + 473, + 294, + 473 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 297, + 337, + 1155, + 337, + 1155, + 371, + 297, + 371 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 299, + 1852, + 447, + 1852, + 447, + 1883, + 299, + 1883 + ], + "score": 0.904 + }, + { + "category_id": 9, + "poly": [ + 1352, + 390, + 1400, + 390, + 1400, + 420, + 1352, + 420 + ], + "score": 0.9 + }, + { + "category_id": 9, + "poly": [ + 1352, + 597, + 1399, + 597, + 1399, + 627, + 1352, + 627 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 298, + 869, + 460, + 869, + 460, + 901, + 298, + 901 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.787 + }, + { + "category_id": 13, + "poly": [ + 1154, + 677, + 1249, + 677, + 1249, + 711, + 1154, + 711 + ], + "score": 0.93, + "latex": "B _ { \\epsilon } ^ { \\infty } ( x _ { i } )" + }, + { + "category_id": 14, + "poly": [ + 537, + 564, + 1160, + 564, + 1160, + 661, + 537, + 661 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } & { ~ \\hat { x } _ { i } ^ { 0 } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon u \\right) } \\\\ & { \\hat { x } _ { i } ^ { k + 1 } = \\mathrm { P r o j } _ { B _ { \\epsilon } ^ { \\infty } ( x _ { i } ) \\cap X } \\left( \\hat { x } _ { i } ^ { k } + \\delta \\operatorname { s i g n } \\nabla _ { x } \\boldsymbol { l } ( D _ { \\theta } ( \\hat { x } _ { i } ^ { k } ) , y _ { i } ) \\right) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 606, + 386, + 1091, + 386, + 1091, + 425, + 606, + 425 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } + \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { i } ) \\right) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 675, + 460, + 675, + 460, + 706, + 373, + 706 + ], + "score": 0.92, + "latex": "u \\in \\mathbb { R } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 690, + 1172, + 814, + 1172, + 814, + 1203, + 690, + 1203 + ], + "score": 0.91, + "latex": "\\eta _ { G } = 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 378, + 1111, + 504, + 1111, + 504, + 1142, + 378, + 1142 + ], + "score": 0.91, + "latex": "\\eta _ { D } = 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 805, + 675, + 896, + 675, + 896, + 711, + 805, + 711 + ], + "score": 0.89, + "latex": "[ - 1 , 1 ] ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 997, + 1263, + 1036, + 1263, + 1036, + 1297, + 997, + 1297 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 327, + 1263, + 365, + 1263, + 365, + 1293, + 327, + 1293 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 372, + 442, + 441, + 442, + 441, + 475, + 372, + 475 + ], + "score": 0.89, + "latex": "\\mathrm { P r o j } _ { X }" + }, + { + "category_id": 13, + "poly": [ + 749, + 989, + 846, + 989, + 846, + 1018, + 749, + 1018 + ], + "score": 0.89, + "latex": "\\epsilon = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 604, + 1233, + 643, + 1233, + 643, + 1263, + 604, + 1263 + ], + "score": 0.89, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1314, + 678, + 1351, + 678, + 1351, + 709, + 1314, + 709 + ], + "score": 0.89, + "latex": "\\ell _ { \\infty }" + }, + { + "category_id": 13, + "poly": [ + 447, + 738, + 489, + 738, + 489, + 772, + 447, + 772 + ], + "score": 0.89, + "latex": "\\epsilon / 4" + }, + { + "category_id": 13, + "poly": [ + 861, + 1295, + 898, + 1295, + 898, + 1324, + 861, + 1324 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 643, + 2003, + 747, + 2003, + 747, + 2032, + 643, + 2032 + ], + "score": 0.88, + "latex": "\\epsilon = 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 686, + 1265, + 725, + 1265, + 725, + 1296, + 686, + 1296 + ], + "score": 0.88, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 728, + 1401, + 784, + 1401, + 784, + 1430, + 728, + 1430 + ], + "score": 0.87, + "latex": "90 \\%" + }, + { + "category_id": 13, + "poly": [ + 1277, + 1783, + 1368, + 1783, + 1368, + 1812, + 1277, + 1812 + ], + "score": 0.86, + "latex": "8 5 - 9 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 587, + 712, + 614, + 712, + 614, + 738, + 587, + 738 + ], + "score": 0.85, + "latex": "x _ { i }" + }, + { + "category_id": 13, + "poly": [ + 692, + 1233, + 732, + 1233, + 732, + 1265, + 692, + 1265 + ], + "score": 0.84, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 836, + 740, + 855, + 740, + 855, + 766, + 836, + 766 + ], + "score": 0.82, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1356, + 1345, + 1405, + 1345, + 1405, + 1370, + 1356, + 1370 + ], + "score": 0.82, + "latex": "\\epsilon =" + }, + { + "category_id": 13, + "poly": [ + 1066, + 441, + 1093, + 441, + 1093, + 468, + 1066, + 468 + ], + "score": 0.81, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1066, + 709, + 1083, + 709, + 1083, + 735, + 1066, + 735 + ], + "score": 0.8, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 749, + 714, + 764, + 714, + 764, + 735, + 749, + 735 + ], + "score": 0.7, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 908, + 678, + 926, + 678, + 926, + 705, + 908, + 705 + ], + "score": 0.68, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 374, + 745, + 388, + 745, + 388, + 766, + 374, + 766 + ], + "score": 0.66, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 297, + 1943, + 343, + 1943, + 343, + 1972, + 297, + 1972 + ], + "score": 0.61, + "latex": "8 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1052, + 928, + 1126, + 928, + 1126, + 957, + 1052, + 957 + ], + "score": 0.58, + "latex": "2 8 \\mathbf { x } 2 8" + }, + { + "category_id": 13, + "poly": [ + 333, + 1692, + 365, + 1692, + 365, + 1721, + 333, + 1721 + ], + "score": 0.45, + "latex": "\\mathbf { B } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1754, + 1176, + 1754, + 1176, + 1784, + 1128, + 1784 + ], + "score": 0.43, + "latex": "\\mathbf { \\pi } ( \\mathbf { C } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1141, + 1235, + 1141, + 1235, + 1170, + 1176, + 1170 + ], + "score": 0.43, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 490, + 1692, + 522, + 1692, + 522, + 1720, + 490, + 1720 + ], + "score": 0.4, + "latex": "\\mathrm { C } '" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1570, + 1269, + 1570, + 1269, + 1598, + 1238, + 1598 + ], + "score": 0.28, + "latex": "\\mathrm { C } '" + }, + { + "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": [ + 293.0, + 1847.0, + 452.0, + 1847.0, + 452.0, + 1890.0, + 293.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 869.0, + 463.0, + 869.0, + 463.0, + 906.0, + 294.0, + 906.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": [ + 295.0, + 1538.0, + 1406.0, + 1538.0, + 1406.0, + 1574.0, + 295.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1237.0, + 1568.0, + 1237.0, + 1604.0, + 294.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1568.0, + 1406.0, + 1568.0, + 1406.0, + 1604.0, + 1270.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1599.0, + 1405.0, + 1599.0, + 1405.0, + 1636.0, + 292.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1632.0, + 1404.0, + 1632.0, + 1404.0, + 1664.0, + 294.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1658.0, + 1405.0, + 1658.0, + 1405.0, + 1697.0, + 292.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1689.0, + 332.0, + 1689.0, + 332.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1689.0, + 489.0, + 1689.0, + 489.0, + 1728.0, + 366.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1689.0, + 1405.0, + 1689.0, + 1405.0, + 1728.0, + 523.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1720.0, + 1402.0, + 1720.0, + 1402.0, + 1757.0, + 295.0, + 1757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1750.0, + 1127.0, + 1750.0, + 1127.0, + 1787.0, + 294.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1787.0, + 1177.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1783.0, + 1276.0, + 1783.0, + 1276.0, + 1814.0, + 294.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 1783.0, + 1379.0, + 1783.0, + 1379.0, + 1814.0, + 1369.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 928.0, + 1051.0, + 928.0, + 1051.0, + 960.0, + 295.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 928.0, + 1405.0, + 928.0, + 1405.0, + 960.0, + 1127.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 955.0, + 1405.0, + 955.0, + 1405.0, + 994.0, + 292.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 988.0, + 748.0, + 988.0, + 748.0, + 1023.0, + 292.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 988.0, + 1405.0, + 988.0, + 1405.0, + 1023.0, + 847.0, + 1023.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1020.0, + 1402.0, + 1020.0, + 1402.0, + 1053.0, + 295.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 1405.0, + 1049.0, + 1405.0, + 1085.0, + 294.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1073.0, + 1406.0, + 1073.0, + 1406.0, + 1118.0, + 291.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1110.0, + 377.0, + 1110.0, + 377.0, + 1144.0, + 291.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1144.0, + 505.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1139.0, + 1175.0, + 1139.0, + 1175.0, + 1174.0, + 292.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1139.0, + 1407.0, + 1139.0, + 1407.0, + 1174.0, + 1236.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1171.0, + 689.0, + 1171.0, + 689.0, + 1207.0, + 294.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1171.0, + 1405.0, + 1171.0, + 1405.0, + 1207.0, + 815.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1201.0, + 1405.0, + 1201.0, + 1405.0, + 1236.0, + 292.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1231.0, + 603.0, + 1231.0, + 603.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1231.0, + 691.0, + 1231.0, + 691.0, + 1267.0, + 644.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1231.0, + 1403.0, + 1231.0, + 1403.0, + 1267.0, + 733.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 326.0, + 1262.0, + 326.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1262.0, + 685.0, + 1262.0, + 685.0, + 1298.0, + 366.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1262.0, + 996.0, + 1262.0, + 996.0, + 1298.0, + 726.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1262.0, + 1405.0, + 1262.0, + 1405.0, + 1298.0, + 1037.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1293.0, + 860.0, + 1293.0, + 860.0, + 1330.0, + 295.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1293.0, + 909.0, + 1293.0, + 909.0, + 1330.0, + 899.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1341.0, + 1355.0, + 1341.0, + 1355.0, + 1373.0, + 296.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1368.0, + 1404.0, + 1368.0, + 1404.0, + 1405.0, + 293.0, + 1405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1401.0, + 727.0, + 1401.0, + 727.0, + 1433.0, + 296.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1401.0, + 1405.0, + 1401.0, + 1405.0, + 1433.0, + 785.0, + 1433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1429.0, + 1405.0, + 1429.0, + 1405.0, + 1467.0, + 293.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1459.0, + 1407.0, + 1459.0, + 1407.0, + 1499.0, + 292.0, + 1499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1495.0, + 1356.0, + 1495.0, + 1356.0, + 1523.0, + 293.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 372.0, + 672.0, + 372.0, + 713.0, + 293.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 672.0, + 804.0, + 672.0, + 804.0, + 713.0, + 461.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 672.0, + 907.0, + 672.0, + 907.0, + 713.0, + 897.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 672.0, + 1153.0, + 672.0, + 1153.0, + 713.0, + 927.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 672.0, + 1313.0, + 672.0, + 1313.0, + 713.0, + 1250.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 713.0, + 1352.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 707.0, + 586.0, + 707.0, + 586.0, + 741.0, + 294.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 707.0, + 748.0, + 707.0, + 748.0, + 741.0, + 615.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 707.0, + 1065.0, + 707.0, + 1065.0, + 741.0, + 765.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 707.0, + 1402.0, + 707.0, + 1402.0, + 741.0, + 1084.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 738.0, + 373.0, + 738.0, + 373.0, + 772.0, + 296.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 738.0, + 446.0, + 738.0, + 446.0, + 772.0, + 389.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 738.0, + 835.0, + 738.0, + 835.0, + 772.0, + 490.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 738.0, + 1404.0, + 738.0, + 1404.0, + 772.0, + 856.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 766.0, + 1407.0, + 766.0, + 1407.0, + 805.0, + 292.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 800.0, + 1181.0, + 800.0, + 1181.0, + 834.0, + 294.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1976.0, + 344.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2004.0, + 642.0, + 2004.0, + 642.0, + 2036.0, + 297.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 2004.0, + 1405.0, + 2004.0, + 1405.0, + 2036.0, + 748.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 224.0, + 1405.0, + 224.0, + 1405.0, + 269.0, + 291.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 262.0, + 1403.0, + 262.0, + 1403.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1125.0, + 291.0, + 1125.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 485.0, + 1402.0, + 485.0, + 1402.0, + 521.0, + 295.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 517.0, + 1270.0, + 517.0, + 1270.0, + 553.0, + 295.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 437.0, + 371.0, + 437.0, + 371.0, + 477.0, + 295.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 437.0, + 1065.0, + 437.0, + 1065.0, + 477.0, + 442.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 437.0, + 1244.0, + 437.0, + 1244.0, + 477.0, + 1094.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 331.0, + 1156.0, + 331.0, + 1156.0, + 380.0, + 292.0, + 380.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1129, + 1404, + 1129, + 1404, + 1344, + 298, + 1344 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1451, + 1404, + 1451, + 1404, + 1696, + 298, + 1696 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1711, + 1404, + 1711, + 1404, + 1925, + 298, + 1925 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 730, + 1404, + 730, + 1404, + 945, + 298, + 945 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 959, + 1402, + 959, + 1402, + 1114, + 298, + 1114 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 301, + 223, + 1437, + 223, + 1437, + 369, + 301, + 369 + ], + "score": 0.973, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)PGD(A')FGS(B')PGD(B')))FGS(C')PGD(C')
standard(A)99.40%23.70%0.00%39.49%3.41%90.56%86.10%94.21%91.36%
adversarial PGD(B)98.70%95.46%92.92%95.78%96.18%95.58%95.01%97.05%96.48%
adversarial network(C)99.32%94.66%87.09%95.75%96.19%96.15%95.24%96.96%95.78%
" + }, + { + "category_id": 1, + "poly": [ + 301, + 1942, + 1402, + 1942, + 1402, + 2034, + 301, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 303, + 461, + 1438, + 461, + 1438, + 608, + 303, + 608 + ], + "score": 0.959, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A')PGD(A')FGS(B’)PGD(B')FGS(C')]PGD(C')
standard(A)96.34%64.64%3.69%69.47% 49.92%56.46%44.25%89.71%83.02%
adversarial PGD(B)87.45%55.94%42.96%85.21%83.46% 59.09%48.20%87.41%83.23%
adversarial network(C)96.34%91.51%37.97%90.02%88.04%75.34%57.52%91.48%81.68%
" + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 1390, + 485, + 1390, + 485, + 1421, + 299, + 1421 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 317, + 630, + 1375, + 630, + 1375, + 661, + 317, + 661 + ], + "score": 0.707 + }, + { + "category_id": 6, + "poly": [ + 325, + 391, + 1369, + 391, + 1369, + 423, + 325, + 423 + ], + "score": 0.702 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 858, + 2088, + 858, + 2111, + 842, + 2111 + ], + "score": 0.66 + }, + { + "category_id": 2, + "poly": [ + 842, + 2088, + 859, + 2088, + 859, + 2111, + 842, + 2111 + ], + "score": 0.22 + }, + { + "category_id": 1, + "poly": [ + 325, + 391, + 1369, + 391, + 1369, + 423, + 325, + 423 + ], + "score": 0.189 + }, + { + "category_id": 6, + "poly": [ + 317, + 630, + 1375, + 630, + 1375, + 661, + 317, + 661 + ], + "score": 0.186 + }, + { + "category_id": 13, + "poly": [ + 1219, + 1712, + 1341, + 1712, + 1341, + 1746, + 1219, + 1746 + ], + "score": 0.91, + "latex": "\\epsilon = 8 / 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 562, + 1575, + 673, + 1575, + 673, + 1606, + 562, + 1606 + ], + "score": 0.91, + "latex": "\\eta _ { D } = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 529, + 824, + 651, + 824, + 651, + 854, + 529, + 854 + ], + "score": 0.9, + "latex": "\\eta _ { D } = 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 1053, + 884, + 1174, + 884, + 1174, + 915, + 1053, + 915 + ], + "score": 0.9, + "latex": "\\eta _ { G } = 0 . 0 1" + }, + { + "category_id": 13, + "poly": [ + 644, + 1543, + 767, + 1543, + 767, + 1576, + 644, + 1576 + ], + "score": 0.9, + "latex": "\\epsilon = 8 / 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 1170, + 1605, + 1315, + 1605, + 1315, + 1636, + 1170, + 1636 + ], + "score": 0.89, + "latex": "\\beta _ { 2 } ~ = ~ 0 . 9 9 9" + }, + { + "category_id": 13, + "poly": [ + 1039, + 1605, + 1155, + 1605, + 1155, + 1636, + 1039, + 1636 + ], + "score": 0.88, + "latex": "\\beta _ { 1 } ~ = ~ 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 875, + 1605, + 1024, + 1605, + 1024, + 1636, + 875, + 1636 + ], + "score": 0.88, + "latex": "\\eta _ { G } ~ = ~ 0 . 0 0 2" + }, + { + "category_id": 13, + "poly": [ + 1268, + 393, + 1357, + 393, + 1357, + 421, + 1268, + 421 + ], + "score": 0.8, + "latex": "\\epsilon = 0 . 3" + }, + { + "category_id": 13, + "poly": [ + 1261, + 632, + 1364, + 632, + 1364, + 661, + 1261, + 661 + ], + "score": 0.78, + "latex": "\\epsilon = 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 600, + 1453, + 674, + 1453, + 674, + 1482, + 600, + 1482 + ], + "score": 0.75, + "latex": "3 2 \\mathrm { x } 3 2 " + }, + { + "category_id": 13, + "poly": [ + 1239, + 548, + 1318, + 548, + 1318, + 574, + 1239, + 574 + ], + "score": 0.68, + "latex": "8 7 . 4 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1337, + 576, + 1418, + 576, + 1418, + 603, + 1337, + 603 + ], + "score": 0.63, + "latex": "8 1 . 6 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1337, + 548, + 1420, + 548, + 1420, + 574, + 1337, + 574 + ], + "score": 0.58, + "latex": "8 3 . 2 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 575, + 732, + 649, + 732, + 649, + 761, + 575, + 761 + ], + "score": 0.53, + "latex": "3 2 \\mathrm { x } 3 2 " + }, + { + "category_id": 13, + "poly": [ + 1136, + 548, + 1216, + 548, + 1216, + 573, + 1136, + 573 + ], + "score": 0.52, + "latex": "4 8 . 2 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 667, + 1252, + 699, + 1252, + 699, + 1280, + 667, + 1280 + ], + "score": 0.46, + "latex": "\\mathbf { B } ^ { \\ast }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 576, + 1322, + 576, + 1322, + 603, + 1238, + 603 + ], + "score": 0.44, + "latex": "9 1 . 4 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 338, + 853, + 396, + 853, + 396, + 882, + 338, + 882 + ], + "score": 0.43, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1226, + 853, + 1285, + 853, + 1285, + 882, + 1226, + 882 + ], + "score": 0.29, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 576, + 1220, + 576, + 1220, + 603, + 1135, + 603 + ], + "score": 0.28, + "latex": "5 7 . 5 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 450, + 1222, + 480, + 1222, + 480, + 1251, + 450, + 1251 + ], + "score": 0.28, + "latex": "\\mathbf { C } '" + }, + { + "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": [ + 294.0, + 1387.0, + 487.0, + 1387.0, + 487.0, + 1427.0, + 294.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 386.0, + 1267.0, + 386.0, + 1267.0, + 428.0, + 330.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 386.0, + 1369.0, + 386.0, + 1369.0, + 428.0, + 1358.0, + 428.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": [ + 321.0, + 622.0, + 1260.0, + 622.0, + 1260.0, + 669.0, + 321.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 622.0, + 1377.0, + 622.0, + 1377.0, + 669.0, + 1365.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1128.0, + 1404.0, + 1128.0, + 1404.0, + 1163.0, + 294.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1192.0, + 296.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1189.0, + 1404.0, + 1189.0, + 1404.0, + 1227.0, + 293.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1220.0, + 449.0, + 1220.0, + 449.0, + 1256.0, + 293.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 481.0, + 1220.0, + 1405.0, + 1220.0, + 1405.0, + 1256.0, + 481.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1251.0, + 666.0, + 1251.0, + 666.0, + 1286.0, + 294.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1251.0, + 1405.0, + 1251.0, + 1405.0, + 1286.0, + 700.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1283.0, + 1404.0, + 1283.0, + 1404.0, + 1314.0, + 296.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1314.0, + 805.0, + 1314.0, + 805.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1449.0, + 599.0, + 1449.0, + 599.0, + 1488.0, + 292.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1488.0, + 675.0, + 1488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 1404.0, + 1480.0, + 1404.0, + 1518.0, + 293.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1511.0, + 1405.0, + 1511.0, + 1405.0, + 1547.0, + 293.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1544.0, + 643.0, + 1544.0, + 643.0, + 1577.0, + 294.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 768.0, + 1544.0, + 1406.0, + 1544.0, + 1406.0, + 1577.0, + 768.0, + 1577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1571.0, + 561.0, + 1571.0, + 561.0, + 1609.0, + 292.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1571.0, + 1406.0, + 1571.0, + 1406.0, + 1609.0, + 674.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1601.0, + 874.0, + 1601.0, + 874.0, + 1641.0, + 293.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 1601.0, + 1038.0, + 1601.0, + 1038.0, + 1641.0, + 1025.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1601.0, + 1169.0, + 1601.0, + 1169.0, + 1641.0, + 1156.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1316.0, + 1601.0, + 1406.0, + 1601.0, + 1406.0, + 1641.0, + 1316.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1635.0, + 1405.0, + 1635.0, + 1405.0, + 1668.0, + 292.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1667.0, + 631.0, + 1667.0, + 631.0, + 1697.0, + 296.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1710.0, + 1218.0, + 1710.0, + 1218.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1710.0, + 1405.0, + 1710.0, + 1405.0, + 1746.0, + 1342.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1739.0, + 1406.0, + 1739.0, + 1406.0, + 1778.0, + 293.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 1406.0, + 1771.0, + 1406.0, + 1807.0, + 295.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1805.0, + 1405.0, + 1805.0, + 1405.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1830.0, + 1405.0, + 1830.0, + 1405.0, + 1873.0, + 292.0, + 1873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1863.0, + 1405.0, + 1863.0, + 1405.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1895.0, + 640.0, + 1895.0, + 640.0, + 1927.0, + 294.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 729.0, + 574.0, + 729.0, + 574.0, + 766.0, + 292.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 729.0, + 1405.0, + 729.0, + 1405.0, + 766.0, + 650.0, + 766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 762.0, + 1404.0, + 762.0, + 1404.0, + 793.0, + 294.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 792.0, + 1404.0, + 792.0, + 1404.0, + 826.0, + 294.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 528.0, + 823.0, + 528.0, + 857.0, + 294.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 823.0, + 1404.0, + 823.0, + 1404.0, + 857.0, + 652.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 852.0, + 337.0, + 852.0, + 337.0, + 883.0, + 294.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 852.0, + 1225.0, + 852.0, + 1225.0, + 883.0, + 397.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 852.0, + 1401.0, + 852.0, + 1401.0, + 883.0, + 1286.0, + 883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 884.0, + 1052.0, + 884.0, + 1052.0, + 919.0, + 293.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 884.0, + 1405.0, + 884.0, + 1405.0, + 919.0, + 1175.0, + 919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 914.0, + 639.0, + 914.0, + 639.0, + 948.0, + 294.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 961.0, + 1406.0, + 961.0, + 1406.0, + 994.0, + 296.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 991.0, + 1406.0, + 991.0, + 1406.0, + 1025.0, + 294.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1021.0, + 1404.0, + 1021.0, + 1404.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1051.0, + 1407.0, + 1051.0, + 1407.0, + 1092.0, + 293.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1080.0, + 751.0, + 1080.0, + 751.0, + 1122.0, + 293.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1407.0, + 1940.0, + 1407.0, + 1976.0, + 294.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2005.0, + 295.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 1406.0, + 2001.0, + 1406.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 622.0, + 1260.0, + 622.0, + 1260.0, + 669.0, + 321.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 622.0, + 1377.0, + 622.0, + 1377.0, + 669.0, + 1365.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 386.0, + 1267.0, + 386.0, + 1267.0, + 428.0, + 330.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 386.0, + 1369.0, + 386.0, + 1369.0, + 428.0, + 1358.0, + 428.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1696, + 1404, + 1696, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1248, + 1405, + 1248, + 1405, + 1496, + 297, + 1496 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 947, + 1404, + 947, + 1404, + 1133, + 298, + 1133 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 299, + 466, + 1492, + 466, + 1492, + 716, + 299, + 716 + ], + "score": 0.978, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B') IFGS(C')PGD(C')
ensemble(MNIST,ε=0.3)98.65%2.52%0.00%90.91% 93.91%90.94%88.12%90.79%89.61%
adv. net(MNIST,ε=0.3)99.03%94.66%87.09%95.75% 96.19%96.15%95.24%96.96%95.78%
ensemble(SVHN,e=0.05)95.30%79.16%2.74%95.32% 93.88%67.97%54.81%95.60%93.21%
adv. net(SVHN,e=0.05)96.34%91.51%37.97%90.02% 88.04%75.34%57.52%91.48%81.68%
ensemble(CIFAR10,e= 887.17%57.91%11.35%85.01% 85.19%68.76%67.41%79.64%70.98%
adv. net(CIFAR10,ε= 2591.08%72.81%44.28%81.74%79.48% 77.23%74.04%78.51%66.74%
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1588, + 1403, + 1588, + 1403, + 1682, + 299, + 1682 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 301, + 223, + 1438, + 223, + 1438, + 370, + 301, + 370 + ], + "score": 0.973, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A')FGS(B') PGD(B')FGS(C')PGD(C')
standard(A)91.59%57.31%1.32%67.99%22.88%77.13%75.06%73.34%55.34%
adversarial PGD(B)75.30%47.63%41.16%74.04%74.23%57.73%55.72%73.31%73.09%
adversarial network(C)91.08%72.81%44.28%81.74%79.48%77.23%74.04%78.51%66.74%
" + }, + { + "category_id": 1, + "poly": [ + 299, + 871, + 1401, + 871, + 1401, + 934, + 299, + 934 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 595, + 1523, + 1102, + 1523, + 1102, + 1563, + 595, + 1563 + ], + "score": 0.939 + }, + { + "category_id": 9, + "poly": [ + 1353, + 1526, + 1399, + 1526, + 1399, + 1557, + 1353, + 1557 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 815, + 75, + 815, + 105, + 299, + 105 + ], + "score": 0.897 + }, + { + "category_id": 0, + "poly": [ + 299, + 1185, + 1074, + 1185, + 1074, + 1218, + 299, + 1218 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2112, + 840, + 2112 + ], + "score": 0.804 + }, + { + "category_id": 6, + "poly": [ + 299, + 735, + 1401, + 735, + 1401, + 798, + 299, + 798 + ], + "score": 0.783 + }, + { + "category_id": 6, + "poly": [ + 302, + 391, + 1396, + 391, + 1396, + 424, + 302, + 424 + ], + "score": 0.723 + }, + { + "category_id": 1, + "poly": [ + 302, + 391, + 1396, + 391, + 1396, + 424, + 302, + 424 + ], + "score": 0.124 + }, + { + "category_id": 13, + "poly": [ + 597, + 1432, + 672, + 1432, + 672, + 1466, + 597, + 1466 + ], + "score": 0.92, + "latex": "\\bar { D _ { \\theta } } ( x )" + }, + { + "category_id": 14, + "poly": [ + 595, + 1523, + 1101, + 1523, + 1101, + 1562, + 595, + 1562 + ], + "score": 0.91, + "latex": "\\hat { x } _ { i } = \\mathrm { P r o j } _ { X } \\left( x _ { i } - \\epsilon \\mathrm { s i g n } \\nabla _ { x } l ( D _ { \\theta } ( x _ { i } ) , y _ { L L } ) \\right) ," + }, + { + "category_id": 13, + "poly": [ + 373, + 1590, + 644, + 1590, + 644, + 1624, + 373, + 1624 + ], + "score": 0.91, + "latex": "y _ { L L } = \\arg \\operatorname* { m i n } D _ { \\theta } ( x _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 1262, + 391, + 1389, + 391, + 1389, + 425, + 1262, + 425 + ], + "score": 0.79, + "latex": "\\epsilon = 8 / 2 5 6 )" + }, + { + "category_id": 13, + "poly": [ + 1284, + 1406, + 1303, + 1406, + 1303, + 1435, + 1284, + 1435 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1174, + 1627, + 1189, + 1627, + 1189, + 1648, + 1174, + 1648 + ], + "score": 0.72, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 386, + 617, + 555, + 617, + 555, + 643, + 386, + 643 + ], + "score": 0.57, + "latex": "( \\mathrm { S V H N } , \\epsilon = 0 . 0 5 )" + }, + { + "category_id": 13, + "poly": [ + 405, + 526, + 565, + 526, + 565, + 554, + 405, + 554 + ], + "score": 0.56, + "latex": "\\mathrm { \\overline { { M N I S T , \\epsilon = 0 . 3 ) } } }" + }, + { + "category_id": 13, + "poly": [ + 296, + 872, + 327, + 872, + 327, + 901, + 296, + 901 + ], + "score": 0.48, + "latex": "\\mathbf { B } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 390, + 679, + 577, + 679, + 577, + 713, + 390, + 713 + ], + "score": 0.47, + "latex": "\\begin{array} { r } { \\mathbf { C } \\mathbf { I F A R 1 0 } , \\epsilon = \\frac { 8 } { 2 5 6 } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1392, + 680, + 1473, + 680, + 1473, + 708, + 1392, + 708 + ], + "score": 0.35, + "latex": "6 6 . 7 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 390, + 555, + 551, + 555, + 551, + 581, + 390, + 581 + ], + "score": 0.34, + "latex": "\\mathbf { M N I S T } , \\epsilon = 0 . 3 )" + }, + { + "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": [ + 295.0, + 1185.0, + 1077.0, + 1185.0, + 1077.0, + 1220.0, + 295.0, + 1220.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": [ + 295.0, + 733.0, + 1403.0, + 733.0, + 1403.0, + 769.0, + 295.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 767.0, + 903.0, + 767.0, + 903.0, + 798.0, + 295.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 383.0, + 1261.0, + 383.0, + 1261.0, + 430.0, + 301.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 383.0, + 1396.0, + 383.0, + 1396.0, + 430.0, + 1390.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1733.0, + 295.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1763.0, + 295.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1761.0, + 1402.0, + 1761.0, + 1402.0, + 1792.0, + 296.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1824.0, + 295.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1822.0, + 1402.0, + 1822.0, + 1402.0, + 1853.0, + 296.0, + 1853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1884.0, + 292.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1917.0, + 294.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1404.0, + 1943.0, + 1404.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2003.0, + 876.0, + 2003.0, + 876.0, + 2036.0, + 292.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1248.0, + 1406.0, + 1248.0, + 1406.0, + 1286.0, + 292.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1279.0, + 1406.0, + 1279.0, + 1406.0, + 1315.0, + 294.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1310.0, + 1405.0, + 1310.0, + 1405.0, + 1348.0, + 294.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1342.0, + 1405.0, + 1342.0, + 1405.0, + 1376.0, + 295.0, + 1376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1368.0, + 1405.0, + 1368.0, + 1405.0, + 1408.0, + 292.0, + 1408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1401.0, + 1283.0, + 1401.0, + 1283.0, + 1435.0, + 294.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1401.0, + 1403.0, + 1401.0, + 1403.0, + 1435.0, + 1304.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1434.0, + 596.0, + 1434.0, + 596.0, + 1467.0, + 294.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1434.0, + 1403.0, + 1434.0, + 1403.0, + 1467.0, + 673.0, + 1467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1464.0, + 1023.0, + 1464.0, + 1023.0, + 1498.0, + 296.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 951.0, + 1402.0, + 951.0, + 1402.0, + 983.0, + 297.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1404.0, + 980.0, + 1404.0, + 1016.0, + 294.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1009.0, + 1404.0, + 1009.0, + 1404.0, + 1044.0, + 294.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1040.0, + 1404.0, + 1040.0, + 1404.0, + 1074.0, + 293.0, + 1074.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1069.0, + 1408.0, + 1069.0, + 1408.0, + 1110.0, + 292.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1103.0, + 434.0, + 1103.0, + 434.0, + 1136.0, + 293.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1588.0, + 372.0, + 1588.0, + 372.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1588.0, + 1404.0, + 1588.0, + 1404.0, + 1624.0, + 645.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1620.0, + 1173.0, + 1620.0, + 1173.0, + 1654.0, + 295.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1620.0, + 1405.0, + 1620.0, + 1405.0, + 1654.0, + 1190.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1652.0, + 520.0, + 1652.0, + 520.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 872.0, + 1405.0, + 872.0, + 1405.0, + 908.0, + 328.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 900.0, + 1273.0, + 900.0, + 1273.0, + 937.0, + 294.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 383.0, + 1261.0, + 383.0, + 1261.0, + 430.0, + 301.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 383.0, + 1396.0, + 383.0, + 1396.0, + 430.0, + 1390.0, + 430.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1069, + 1404, + 1069, + 1404, + 1375, + 298, + 1375 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1619, + 1403, + 1619, + 1403, + 1866, + 298, + 1866 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1391, + 1404, + 1391, + 1404, + 1605, + 298, + 1605 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 1881, + 1402, + 1881, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 299, + 622, + 1402, + 622, + 1402, + 799, + 299, + 799 + ], + "score": 0.977, + "html": "
training method\\attackwhite boxblack box
No NoiseFGSPGDFGS(A')PGD(A')FGS(B')PGD(B')
autoencoder(8 filters)88.70%67.28%33.56%78.94%74.15%70.70%68.54%
autoencoder(64 filters)89.10%67.05%33.38%79.56%74.40%70.52%68.66%
random Gaussian89.73%69.43%35.16%80.09%76.02%71.22%69.66%
label88.72%67.09%37.70%80.95%77.80%70.90%68.81%
" + }, + { + "category_id": 5, + "poly": [ + 303, + 221, + 1397, + 221, + 1397, + 396, + 303, + 396 + ], + "score": 0.976, + "html": "
GeneratorOriginal (A)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.59%90.54%75.71%89.21%
autoencoder(8 filters)31.07%41.40%74.56%84.59%
autoencoder(64 filters)6.08%14.74%75.52%86.64%
random Gaussian45.27%58.68%75.02%87.33%
label11.17%23.29%74.78%82.43%
" + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 298, + 990, + 872, + 990, + 872, + 1022, + 298, + 1022 + ], + "score": 0.853 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.793 + }, + { + "category_id": 6, + "poly": [ + 295, + 819, + 1400, + 819, + 1400, + 882, + 295, + 882 + ], + "score": 0.75 + }, + { + "category_id": 6, + "poly": [ + 297, + 420, + 1404, + 420, + 1404, + 544, + 297, + 544 + ], + "score": 0.673 + }, + { + "category_id": 1, + "poly": [ + 297, + 420, + 1404, + 420, + 1404, + 544, + 297, + 544 + ], + "score": 0.414 + }, + { + "category_id": 1, + "poly": [ + 295, + 819, + 1400, + 819, + 1400, + 882, + 295, + 882 + ], + "score": 0.106 + }, + { + "category_id": 13, + "poly": [ + 395, + 482, + 435, + 482, + 435, + 516, + 395, + 516 + ], + "score": 0.92, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 729, + 1620, + 789, + 1620, + 789, + 1654, + 729, + 1654 + ], + "score": 0.92, + "latex": "G ( z )" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1620, + 1283, + 1620, + 1283, + 1654, + 1223, + 1654 + ], + "score": 0.92, + "latex": "G ( y )" + }, + { + "category_id": 13, + "poly": [ + 408, + 1283, + 468, + 1283, + 468, + 1317, + 408, + 1317 + ], + "score": 0.92, + "latex": "G ( y )" + }, + { + "category_id": 13, + "poly": [ + 802, + 1253, + 861, + 1253, + 861, + 1286, + 802, + 1286 + ], + "score": 0.91, + "latex": "G ( z )" + }, + { + "category_id": 13, + "poly": [ + 1116, + 1681, + 1176, + 1681, + 1176, + 1714, + 1116, + 1714 + ], + "score": 0.91, + "latex": "G ( z )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1742, + 358, + 1742, + 358, + 1776, + 298, + 1776 + ], + "score": 0.91, + "latex": "G ( y )" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1251, + 1310, + 1251, + 1310, + 1282, + 1223, + 1282 + ], + "score": 0.9, + "latex": "z \\in \\mathring { \\mathbb { R } } ^ { d }" + }, + { + "category_id": 13, + "poly": [ + 768, + 512, + 808, + 512, + 808, + 546, + 768, + 546 + ], + "score": 0.9, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 550, + 1514, + 640, + 1514, + 640, + 1543, + 550, + 1543 + ], + "score": 0.89, + "latex": "2 2 . 8 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1149, + 451, + 1188, + 451, + 1188, + 481, + 1149, + 481 + ], + "score": 0.88, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 837, + 1223, + 929, + 1223, + 929, + 1251, + 837, + 1251 + ], + "score": 0.88, + "latex": "k = 6 4" + }, + { + "category_id": 13, + "poly": [ + 464, + 1223, + 542, + 1223, + 542, + 1251, + 464, + 1251 + ], + "score": 0.87, + "latex": "k = 8" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1452, + 1128, + 1452, + 1128, + 1482, + 1053, + 1482 + ], + "score": 0.86, + "latex": "1 . 3 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 489, + 1774, + 590, + 1774, + 590, + 1803, + 489, + 1803 + ], + "score": 0.86, + "latex": "3 2 \\mathbf { x } 3 2 \\mathbf { x } 3" + }, + { + "category_id": 13, + "poly": [ + 906, + 850, + 1035, + 850, + 1035, + 883, + 906, + 883 + ], + "score": 0.85, + "latex": "\\zeta = 8 / 2 5 6 )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1682, + 351, + 1682, + 351, + 1711, + 297, + 1711 + ], + "score": 0.85, + "latex": "30 \\%" + }, + { + "category_id": 13, + "poly": [ + 934, + 1453, + 1012, + 1453, + 1012, + 1483, + 934, + 1483 + ], + "score": 0.84, + "latex": "( 6 . 0 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 427, + 1514, + 514, + 1514, + 514, + 1543, + 427, + 1543 + ], + "score": 0.8, + "latex": "1 4 . 7 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 660, + 1287, + 680, + 1287, + 680, + 1316, + 660, + 1316 + ], + "score": 0.73, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1049, + 1627, + 1067, + 1627, + 1067, + 1648, + 1049, + 1648 + ], + "score": 0.73, + "latex": "z" + }, + { + "category_id": 13, + "poly": [ + 927, + 1653, + 956, + 1653, + 956, + 1680, + 927, + 1680 + ], + "score": 0.57, + "latex": "\\mathbf { A } '" + }, + { + "category_id": 13, + "poly": [ + 1140, + 1484, + 1169, + 1484, + 1169, + 1511, + 1140, + 1511 + ], + "score": 0.42, + "latex": "\\mathbf { A } '" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1284, + 1126, + 1284, + 1126, + 1313, + 1065, + 1313 + ], + "score": 0.34, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 988.0, + 875.0, + 988.0, + 875.0, + 1026.0, + 294.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 820.0, + 1402.0, + 820.0, + 1402.0, + 852.0, + 296.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 851.0, + 905.0, + 851.0, + 905.0, + 882.0, + 295.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 851.0, + 1041.0, + 851.0, + 1041.0, + 882.0, + 1036.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 418.0, + 1405.0, + 418.0, + 1405.0, + 456.0, + 292.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 1148.0, + 452.0, + 1148.0, + 484.0, + 295.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 452.0, + 1404.0, + 452.0, + 1404.0, + 484.0, + 1189.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 483.0, + 394.0, + 483.0, + 394.0, + 516.0, + 295.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 483.0, + 1405.0, + 483.0, + 1405.0, + 516.0, + 436.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 512.0, + 767.0, + 512.0, + 767.0, + 545.0, + 294.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 512.0, + 1141.0, + 512.0, + 1141.0, + 545.0, + 809.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1070.0, + 1404.0, + 1070.0, + 1404.0, + 1105.0, + 296.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1100.0, + 1406.0, + 1100.0, + 1406.0, + 1136.0, + 294.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1131.0, + 1406.0, + 1131.0, + 1406.0, + 1166.0, + 294.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1161.0, + 1405.0, + 1161.0, + 1405.0, + 1197.0, + 294.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1194.0, + 1402.0, + 1194.0, + 1402.0, + 1226.0, + 296.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1222.0, + 463.0, + 1222.0, + 463.0, + 1258.0, + 292.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1222.0, + 836.0, + 1222.0, + 836.0, + 1258.0, + 543.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1222.0, + 1406.0, + 1222.0, + 1406.0, + 1258.0, + 930.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1250.0, + 801.0, + 1250.0, + 801.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1250.0, + 1222.0, + 1250.0, + 1222.0, + 1289.0, + 862.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1250.0, + 1408.0, + 1250.0, + 1408.0, + 1289.0, + 1311.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 407.0, + 1283.0, + 407.0, + 1318.0, + 293.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1283.0, + 659.0, + 1283.0, + 659.0, + 1318.0, + 469.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 1283.0, + 1064.0, + 1283.0, + 1064.0, + 1318.0, + 681.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 1283.0, + 1405.0, + 1283.0, + 1405.0, + 1318.0, + 1127.0, + 1318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1349.0, + 292.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1345.0, + 601.0, + 1345.0, + 601.0, + 1377.0, + 296.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1621.0, + 728.0, + 1621.0, + 728.0, + 1655.0, + 293.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1621.0, + 1048.0, + 1621.0, + 1048.0, + 1655.0, + 790.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1621.0, + 1222.0, + 1621.0, + 1222.0, + 1655.0, + 1068.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1621.0, + 1404.0, + 1621.0, + 1404.0, + 1655.0, + 1284.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1652.0, + 926.0, + 1652.0, + 926.0, + 1685.0, + 292.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1652.0, + 1405.0, + 1652.0, + 1405.0, + 1685.0, + 957.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1679.0, + 296.0, + 1679.0, + 296.0, + 1718.0, + 292.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1679.0, + 1115.0, + 1679.0, + 1115.0, + 1718.0, + 352.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1679.0, + 1404.0, + 1679.0, + 1404.0, + 1718.0, + 1177.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1712.0, + 1404.0, + 1712.0, + 1404.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1741.0, + 297.0, + 1741.0, + 297.0, + 1779.0, + 294.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 1741.0, + 1407.0, + 1741.0, + 1407.0, + 1779.0, + 359.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1771.0, + 488.0, + 1771.0, + 488.0, + 1808.0, + 292.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1808.0, + 591.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1403.0, + 1803.0, + 1403.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1833.0, + 1036.0, + 1833.0, + 1036.0, + 1869.0, + 293.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1389.0, + 1404.0, + 1389.0, + 1404.0, + 1424.0, + 293.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1424.0, + 1402.0, + 1424.0, + 1402.0, + 1451.0, + 297.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1451.0, + 933.0, + 1451.0, + 933.0, + 1486.0, + 294.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1451.0, + 1052.0, + 1451.0, + 1052.0, + 1486.0, + 1013.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1486.0, + 1129.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1483.0, + 1139.0, + 1483.0, + 1139.0, + 1514.0, + 296.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1483.0, + 1405.0, + 1483.0, + 1405.0, + 1514.0, + 1170.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1514.0, + 426.0, + 1514.0, + 426.0, + 1545.0, + 296.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1514.0, + 549.0, + 1514.0, + 549.0, + 1545.0, + 515.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1514.0, + 1404.0, + 1514.0, + 1404.0, + 1545.0, + 641.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1543.0, + 1405.0, + 1543.0, + 1405.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1573.0, + 1156.0, + 1573.0, + 1156.0, + 1608.0, + 292.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1881.0, + 1403.0, + 1881.0, + 1403.0, + 1914.0, + 297.0, + 1914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1979.0, + 293.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1176.0, + 2000.0, + 1176.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 418.0, + 1405.0, + 418.0, + 1405.0, + 456.0, + 292.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 1148.0, + 452.0, + 1148.0, + 484.0, + 295.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 452.0, + 1404.0, + 452.0, + 1404.0, + 484.0, + 1189.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 483.0, + 394.0, + 483.0, + 394.0, + 516.0, + 295.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 483.0, + 1405.0, + 483.0, + 1405.0, + 516.0, + 436.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 512.0, + 767.0, + 512.0, + 767.0, + 545.0, + 294.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 512.0, + 1141.0, + 512.0, + 1141.0, + 545.0, + 809.0, + 545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 820.0, + 1402.0, + 820.0, + 1402.0, + 852.0, + 296.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 851.0, + 905.0, + 851.0, + 905.0, + 882.0, + 295.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 851.0, + 1041.0, + 851.0, + 1041.0, + 882.0, + 1036.0, + 882.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 810, + 1404, + 810, + 1404, + 1117, + 298, + 1117 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 581, + 1402, + 581, + 1402, + 795, + 299, + 795 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 290, + 1403, + 290, + 1403, + 566, + 298, + 566 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 1382, + 1402, + 1382, + 1402, + 1505, + 300, + 1505 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1132, + 1403, + 1132, + 1403, + 1254, + 300, + 1254 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 1616, + 1403, + 1616, + 1403, + 1710, + 299, + 1710 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1405, + 1972, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 529, + 229, + 529, + 261, + 299, + 261 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 301, + 1308, + 561, + 1308, + 561, + 1344, + 301, + 1344 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.886 + }, + { + "category_id": 1, + "poly": [ + 293, + 1744, + 1400, + 1744, + 1400, + 1808, + 293, + 1808 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 298, + 1841, + 1404, + 1841, + 1404, + 1935, + 298, + 1935 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 300, + 1561, + 488, + 1561, + 488, + 1594, + 300, + 1594 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.808 + }, + { + "category_id": 13, + "poly": [ + 595, + 842, + 635, + 842, + 635, + 875, + 595, + 875 + ], + "score": 0.9, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1057, + 389, + 1072, + 389, + 1072, + 410, + 1057, + 410 + ], + "score": 0.51, + "latex": "\\epsilon" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 533.0, + 229.0, + 533.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1302.0, + 566.0, + 1302.0, + 566.0, + 1353.0, + 291.0, + 1353.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, + 1560.0, + 491.0, + 1560.0, + 491.0, + 1598.0, + 295.0, + 1598.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 812.0, + 1405.0, + 812.0, + 1405.0, + 844.0, + 296.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 843.0, + 594.0, + 843.0, + 594.0, + 874.0, + 296.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 843.0, + 1404.0, + 843.0, + 1404.0, + 874.0, + 636.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 872.0, + 1406.0, + 872.0, + 1406.0, + 908.0, + 294.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 902.0, + 1402.0, + 902.0, + 1402.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 930.0, + 1405.0, + 930.0, + 1405.0, + 969.0, + 293.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 961.0, + 1406.0, + 961.0, + 1406.0, + 1000.0, + 293.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1026.0, + 1404.0, + 1026.0, + 1404.0, + 1058.0, + 296.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1050.0, + 1406.0, + 1050.0, + 1406.0, + 1093.0, + 292.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1086.0, + 1338.0, + 1086.0, + 1338.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 581.0, + 1404.0, + 581.0, + 1404.0, + 616.0, + 297.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 611.0, + 1404.0, + 611.0, + 1404.0, + 645.0, + 294.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 643.0, + 1404.0, + 643.0, + 1404.0, + 677.0, + 295.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 675.0, + 1403.0, + 675.0, + 1403.0, + 705.0, + 297.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 703.0, + 1406.0, + 703.0, + 1406.0, + 737.0, + 295.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 730.0, + 1406.0, + 730.0, + 1406.0, + 771.0, + 292.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 767.0, + 782.0, + 767.0, + 782.0, + 797.0, + 297.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 290.0, + 1404.0, + 290.0, + 1404.0, + 325.0, + 294.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 322.0, + 1404.0, + 322.0, + 1404.0, + 355.0, + 296.0, + 355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 388.0, + 294.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 382.0, + 1056.0, + 382.0, + 1056.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 419.0, + 1073.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 1407.0, + 411.0, + 1407.0, + 451.0, + 293.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 441.0, + 1405.0, + 441.0, + 1405.0, + 480.0, + 293.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 471.0, + 1405.0, + 471.0, + 1405.0, + 509.0, + 293.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 501.0, + 1405.0, + 501.0, + 1405.0, + 540.0, + 293.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 535.0, + 1106.0, + 535.0, + 1106.0, + 569.0, + 293.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1382.0, + 1406.0, + 1382.0, + 1406.0, + 1417.0, + 295.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1414.0, + 1404.0, + 1414.0, + 1404.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1445.0, + 1407.0, + 1445.0, + 1407.0, + 1477.0, + 293.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1477.0, + 974.0, + 1477.0, + 974.0, + 1506.0, + 298.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1131.0, + 1404.0, + 1131.0, + 1404.0, + 1168.0, + 294.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1163.0, + 1404.0, + 1163.0, + 1404.0, + 1195.0, + 295.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 1404.0, + 1192.0, + 1404.0, + 1231.0, + 293.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1227.0, + 533.0, + 1227.0, + 533.0, + 1255.0, + 294.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1617.0, + 1403.0, + 1617.0, + 1403.0, + 1651.0, + 295.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1644.0, + 1404.0, + 1644.0, + 1404.0, + 1685.0, + 321.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1679.0, + 1054.0, + 1679.0, + 1054.0, + 1713.0, + 324.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2007.0, + 295.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 2000.0, + 1129.0, + 2000.0, + 1129.0, + 2036.0, + 324.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1781.0, + 295.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1776.0, + 1095.0, + 1776.0, + 1095.0, + 1809.0, + 322.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1842.0, + 1405.0, + 1842.0, + 1405.0, + 1877.0, + 293.0, + 1877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1871.0, + 1406.0, + 1871.0, + 1406.0, + 1912.0, + 320.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1901.0, + 399.0, + 1901.0, + 399.0, + 1938.0, + 320.0, + 1938.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1401, + 228, + 1401, + 323, + 298, + 323 + ], + "score": 0.84 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.824 + }, + { + "category_id": 1, + "poly": [ + 294, + 990, + 1401, + 990, + 1401, + 1056, + 294, + 1056 + ], + "score": 0.759 + }, + { + "category_id": 1, + "poly": [ + 298, + 1548, + 1402, + 1548, + 1402, + 1643, + 298, + 1643 + ], + "score": 0.74 + }, + { + "category_id": 1, + "poly": [ + 303, + 341, + 1399, + 341, + 1399, + 436, + 303, + 436 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 291, + 1661, + 1402, + 1661, + 1402, + 1727, + 291, + 1727 + ], + "score": 0.72 + }, + { + "category_id": 1, + "poly": [ + 295, + 1269, + 1400, + 1269, + 1400, + 1335, + 295, + 1335 + ], + "score": 0.708 + }, + { + "category_id": 1, + "poly": [ + 297, + 1073, + 1401, + 1073, + 1401, + 1167, + 297, + 1167 + ], + "score": 0.698 + }, + { + "category_id": 1, + "poly": [ + 296, + 1186, + 1402, + 1186, + 1402, + 1251, + 296, + 1251 + ], + "score": 0.696 + }, + { + "category_id": 1, + "poly": [ + 296, + 454, + 1400, + 454, + 1400, + 550, + 296, + 550 + ], + "score": 0.694 + }, + { + "category_id": 1, + "poly": [ + 298, + 1434, + 1398, + 1434, + 1398, + 1529, + 298, + 1529 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 297, + 1352, + 1401, + 1352, + 1401, + 1418, + 297, + 1418 + ], + "score": 0.655 + }, + { + "category_id": 1, + "poly": [ + 295, + 568, + 1400, + 568, + 1400, + 634, + 295, + 634 + ], + "score": 0.633 + }, + { + "category_id": 1, + "poly": [ + 292, + 1744, + 1402, + 1744, + 1402, + 1810, + 292, + 1810 + ], + "score": 0.622 + }, + { + "category_id": 1, + "poly": [ + 298, + 650, + 1399, + 650, + 1399, + 747, + 298, + 747 + ], + "score": 0.62 + }, + { + "category_id": 1, + "poly": [ + 298, + 764, + 1405, + 764, + 1405, + 858, + 298, + 858 + ], + "score": 0.61 + }, + { + "category_id": 1, + "poly": [ + 300, + 1826, + 1400, + 1826, + 1400, + 1922, + 300, + 1922 + ], + "score": 0.584 + }, + { + "category_id": 1, + "poly": [ + 298, + 877, + 1404, + 877, + 1404, + 972, + 298, + 972 + ], + "score": 0.534 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.531 + }, + { + "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, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 1401.0, + 227.0, + 1401.0, + 265.0, + 293.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 256.0, + 1406.0, + 256.0, + 1406.0, + 300.0, + 320.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 285.0, + 401.0, + 285.0, + 401.0, + 326.0, + 319.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 987.0, + 1406.0, + 987.0, + 1406.0, + 1030.0, + 293.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1023.0, + 610.0, + 1023.0, + 610.0, + 1054.0, + 322.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1549.0, + 1401.0, + 1549.0, + 1401.0, + 1583.0, + 296.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1581.0, + 1404.0, + 1581.0, + 1404.0, + 1615.0, + 325.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1610.0, + 694.0, + 1610.0, + 694.0, + 1643.0, + 323.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 341.0, + 1402.0, + 341.0, + 1402.0, + 378.0, + 298.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 375.0, + 1404.0, + 375.0, + 1404.0, + 409.0, + 323.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 404.0, + 624.0, + 404.0, + 624.0, + 440.0, + 324.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1698.0, + 294.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1691.0, + 1028.0, + 1691.0, + 1028.0, + 1726.0, + 322.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1271.0, + 1404.0, + 1271.0, + 1404.0, + 1307.0, + 295.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1301.0, + 1130.0, + 1301.0, + 1130.0, + 1334.0, + 322.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1073.0, + 1403.0, + 1073.0, + 1403.0, + 1110.0, + 295.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1105.0, + 1405.0, + 1105.0, + 1405.0, + 1139.0, + 322.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1135.0, + 396.0, + 1135.0, + 396.0, + 1169.0, + 321.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1184.0, + 1406.0, + 1184.0, + 1406.0, + 1225.0, + 294.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1217.0, + 1016.0, + 1217.0, + 1016.0, + 1252.0, + 321.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 453.0, + 1404.0, + 453.0, + 1404.0, + 492.0, + 294.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 486.0, + 1402.0, + 486.0, + 1402.0, + 520.0, + 324.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 517.0, + 882.0, + 517.0, + 882.0, + 552.0, + 322.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1434.0, + 1403.0, + 1434.0, + 1403.0, + 1472.0, + 295.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1469.0, + 1403.0, + 1469.0, + 1403.0, + 1500.0, + 324.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1499.0, + 587.0, + 1499.0, + 587.0, + 1529.0, + 325.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1353.0, + 1403.0, + 1353.0, + 1403.0, + 1389.0, + 297.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1384.0, + 1356.0, + 1384.0, + 1356.0, + 1420.0, + 322.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 567.0, + 1402.0, + 567.0, + 1402.0, + 604.0, + 295.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 600.0, + 1166.0, + 600.0, + 1166.0, + 635.0, + 322.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1781.0, + 294.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1776.0, + 1361.0, + 1776.0, + 1361.0, + 1812.0, + 323.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 648.0, + 1403.0, + 648.0, + 1403.0, + 690.0, + 293.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 684.0, + 1403.0, + 684.0, + 1403.0, + 718.0, + 322.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 713.0, + 895.0, + 713.0, + 895.0, + 746.0, + 323.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 761.0, + 1405.0, + 761.0, + 1405.0, + 806.0, + 292.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 793.0, + 1405.0, + 793.0, + 1405.0, + 835.0, + 320.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 824.0, + 505.0, + 824.0, + 505.0, + 860.0, + 323.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1826.0, + 1405.0, + 1826.0, + 1405.0, + 1864.0, + 296.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1895.0, + 321.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1889.0, + 1171.0, + 1889.0, + 1171.0, + 1925.0, + 322.0, + 1925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 878.0, + 1401.0, + 878.0, + 1401.0, + 912.0, + 294.0, + 912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 910.0, + 1404.0, + 910.0, + 1404.0, + 944.0, + 325.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 939.0, + 612.0, + 939.0, + 612.0, + 971.0, + 322.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1403.0, + 1942.0, + 1403.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 324.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2001.0, + 722.0, + 2001.0, + 722.0, + 2039.0, + 323.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1742, + 1404, + 1742, + 1404, + 1957, + 298, + 1957 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1400, + 1972, + 1400, + 2034, + 298, + 2034 + ], + "score": 0.934 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1401, + 229, + 1401, + 323, + 298, + 323 + ], + "score": 0.853 + }, + { + "category_id": 1, + "poly": [ + 297, + 1495, + 1399, + 1495, + 1399, + 1558, + 297, + 1558 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 295, + 680, + 1400, + 680, + 1400, + 745, + 295, + 745 + ], + "score": 0.841 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.84 + }, + { + "category_id": 0, + "poly": [ + 301, + 1618, + 449, + 1618, + 449, + 1650, + 301, + 1650 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 298, + 763, + 1405, + 763, + 1405, + 858, + 298, + 858 + ], + "score": 0.817 + }, + { + "category_id": 1, + "poly": [ + 297, + 876, + 1404, + 876, + 1404, + 971, + 297, + 971 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 298, + 567, + 1405, + 567, + 1405, + 663, + 298, + 663 + ], + "score": 0.799 + }, + { + "category_id": 1, + "poly": [ + 294, + 1412, + 1401, + 1412, + 1401, + 1477, + 294, + 1477 + ], + "score": 0.798 + }, + { + "category_id": 1, + "poly": [ + 297, + 989, + 1405, + 989, + 1405, + 1084, + 297, + 1084 + ], + "score": 0.796 + }, + { + "category_id": 0, + "poly": [ + 301, + 1685, + 633, + 1685, + 633, + 1716, + 301, + 1716 + ], + "score": 0.795 + }, + { + "category_id": 1, + "poly": [ + 302, + 455, + 1400, + 455, + 1400, + 550, + 302, + 550 + ], + "score": 0.782 + }, + { + "category_id": 1, + "poly": [ + 302, + 342, + 1400, + 342, + 1400, + 437, + 302, + 437 + ], + "score": 0.775 + }, + { + "category_id": 1, + "poly": [ + 291, + 1215, + 1399, + 1215, + 1399, + 1282, + 291, + 1282 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 298, + 1298, + 1400, + 1298, + 1400, + 1393, + 298, + 1393 + ], + "score": 0.763 + }, + { + "category_id": 1, + "poly": [ + 300, + 1102, + 1402, + 1102, + 1402, + 1197, + 300, + 1197 + ], + "score": 0.757 + }, + { + "category_id": 1, + "poly": [ + 301, + 1685, + 633, + 1685, + 633, + 1716, + 301, + 1716 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 1128, + 1835, + 1199, + 1835, + 1199, + 1864, + 1128, + 1864 + ], + "score": 0.91, + "latex": "d \\times d" + }, + { + "category_id": 13, + "poly": [ + 798, + 1774, + 866, + 1774, + 866, + 1802, + 798, + 1802 + ], + "score": 0.91, + "latex": "d \\times d" + }, + { + "category_id": 13, + "poly": [ + 399, + 1835, + 577, + 1835, + 577, + 1866, + 399, + 1866 + ], + "score": 0.84, + "latex": "\\mathrm { c o n v } 2 \\mathrm { d } ( d , \\ : s , \\ : k )" + }, + { + "category_id": 13, + "poly": [ + 929, + 1866, + 1047, + 1866, + 1047, + 1896, + 929, + 1896 + ], + "score": 0.81, + "latex": "2 \\mathrm { d } ( d , s , k )" + }, + { + "category_id": 13, + "poly": [ + 665, + 1775, + 684, + 1775, + 684, + 1801, + 665, + 1801 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 991, + 1835, + 1010, + 1835, + 1010, + 1862, + 991, + 1862 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1779, + 1141, + 1779, + 1141, + 1801, + 1124, + 1801 + ], + "score": 0.76, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 491, + 1804, + 583, + 1804, + 583, + 1834, + 491, + 1834 + ], + "score": 0.72, + "latex": "( d , s , k )" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1900, + 1172, + 1900, + 1172, + 1922, + 1155, + 1922 + ], + "score": 0.68, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 423, + 1871, + 439, + 1871, + 439, + 1892, + 423, + 1892 + ], + "score": 0.66, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 566, + 519, + 613, + 519, + 613, + 548, + 566, + 548 + ], + "score": 0.33, + "latex": "( S P )" + }, + { + "category_id": 13, + "poly": [ + 1321, + 1867, + 1354, + 1867, + 1354, + 1895, + 1321, + 1895 + ], + "score": 0.25, + "latex": "( s )" + }, + { + "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": [ + 831.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1618.0, + 453.0, + 1618.0, + 453.0, + 1655.0, + 297.0, + 1655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1684.0, + 637.0, + 1684.0, + 637.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1741.0, + 1404.0, + 1741.0, + 1404.0, + 1776.0, + 296.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1771.0, + 664.0, + 1771.0, + 664.0, + 1806.0, + 295.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1771.0, + 797.0, + 1771.0, + 797.0, + 1806.0, + 685.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 1771.0, + 1123.0, + 1771.0, + 1123.0, + 1806.0, + 867.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1806.0, + 1142.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 490.0, + 1803.0, + 490.0, + 1837.0, + 294.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1803.0, + 1405.0, + 1803.0, + 1405.0, + 1837.0, + 584.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1836.0, + 398.0, + 1836.0, + 398.0, + 1867.0, + 296.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1836.0, + 990.0, + 1836.0, + 990.0, + 1867.0, + 578.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1836.0, + 1127.0, + 1836.0, + 1127.0, + 1867.0, + 1011.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 1836.0, + 1402.0, + 1836.0, + 1402.0, + 1867.0, + 1200.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1864.0, + 422.0, + 1864.0, + 422.0, + 1895.0, + 297.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1864.0, + 928.0, + 1864.0, + 928.0, + 1895.0, + 440.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1864.0, + 1320.0, + 1864.0, + 1320.0, + 1895.0, + 1048.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1864.0, + 1402.0, + 1864.0, + 1402.0, + 1895.0, + 1355.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1894.0, + 1154.0, + 1894.0, + 1154.0, + 1928.0, + 294.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1894.0, + 1402.0, + 1894.0, + 1402.0, + 1928.0, + 1173.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1923.0, + 1006.0, + 1923.0, + 1006.0, + 1963.0, + 293.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 223.0, + 1405.0, + 223.0, + 1405.0, + 270.0, + 292.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 259.0, + 1405.0, + 259.0, + 1405.0, + 297.0, + 322.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 288.0, + 397.0, + 288.0, + 397.0, + 325.0, + 318.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1492.0, + 1405.0, + 1492.0, + 1405.0, + 1532.0, + 293.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1527.0, + 636.0, + 1527.0, + 636.0, + 1560.0, + 323.0, + 1560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 680.0, + 1404.0, + 680.0, + 1404.0, + 716.0, + 294.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 709.0, + 399.0, + 709.0, + 399.0, + 749.0, + 322.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 763.0, + 1405.0, + 763.0, + 1405.0, + 801.0, + 293.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 793.0, + 1405.0, + 793.0, + 1405.0, + 836.0, + 321.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 826.0, + 585.0, + 826.0, + 585.0, + 860.0, + 322.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 876.0, + 1404.0, + 876.0, + 1404.0, + 913.0, + 294.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 906.0, + 1405.0, + 906.0, + 1405.0, + 947.0, + 320.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 938.0, + 497.0, + 938.0, + 497.0, + 973.0, + 322.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 567.0, + 1406.0, + 567.0, + 1406.0, + 605.0, + 293.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 599.0, + 1403.0, + 599.0, + 1403.0, + 633.0, + 323.0, + 633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 631.0, + 1346.0, + 631.0, + 1346.0, + 665.0, + 322.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1412.0, + 1403.0, + 1412.0, + 1403.0, + 1448.0, + 296.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1446.0, + 1393.0, + 1446.0, + 1393.0, + 1478.0, + 326.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 989.0, + 1405.0, + 989.0, + 1405.0, + 1027.0, + 295.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1023.0, + 1403.0, + 1023.0, + 1403.0, + 1057.0, + 324.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1052.0, + 695.0, + 1052.0, + 695.0, + 1086.0, + 324.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 455.0, + 1405.0, + 455.0, + 1405.0, + 492.0, + 296.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 487.0, + 1404.0, + 487.0, + 1404.0, + 523.0, + 322.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 518.0, + 565.0, + 518.0, + 565.0, + 552.0, + 324.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 518.0, + 935.0, + 518.0, + 935.0, + 552.0, + 614.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 340.0, + 1404.0, + 340.0, + 1404.0, + 380.0, + 294.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 375.0, + 1403.0, + 375.0, + 1403.0, + 409.0, + 323.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 405.0, + 1149.0, + 405.0, + 1149.0, + 439.0, + 324.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1215.0, + 1404.0, + 1215.0, + 1404.0, + 1254.0, + 294.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1247.0, + 1250.0, + 1247.0, + 1250.0, + 1282.0, + 322.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1298.0, + 1404.0, + 1298.0, + 1404.0, + 1336.0, + 294.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1332.0, + 1405.0, + 1332.0, + 1405.0, + 1366.0, + 323.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1361.0, + 874.0, + 1361.0, + 874.0, + 1395.0, + 323.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1101.0, + 1406.0, + 1101.0, + 1406.0, + 1140.0, + 293.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1134.0, + 1404.0, + 1134.0, + 1404.0, + 1170.0, + 321.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1165.0, + 694.0, + 1165.0, + 694.0, + 1199.0, + 323.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1684.0, + 637.0, + 1684.0, + 637.0, + 1719.0, + 296.0, + 1719.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1554, + 1404, + 1554, + 1404, + 1770, + 297, + 1770 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 1416, + 1404, + 1416, + 1404, + 1540, + 299, + 1540 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1190, + 1404, + 1190, + 1404, + 1313, + 298, + 1313 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 301, + 1824, + 1436, + 1824, + 1436, + 1972, + 301, + 1972 + ], + "score": 0.97, + "html": "
training method attackwhite boxblack box
No Noise FGSPGDFGS(A') PGD(A') FGS(B') PGD(B') FGS(C') PGD(C')
standard(A)70.11%31.27%4.61%44.24%32.55%53.65%50.51%47.82%34.99%
adversarial PGD(B)55.53%32.13%28.48%53.91%54.62%41.80%40.61%54.55% 53.57%
adversarial network(C)70.99 %41.86%18.25%58.11%56.94% 53.15% 51.87%53.35%46.61%
" + }, + { + "category_id": 3, + "poly": [ + 693, + 246, + 997, + 246, + 997, + 673, + 693, + 673 + ], + "score": 0.955 + }, + { + "category_id": 3, + "poly": [ + 590, + 802, + 1111, + 802, + 1111, + 1069, + 590, + 1069 + ], + "score": 0.951 + }, + { + "category_id": 4, + "poly": [ + 534, + 708, + 1166, + 708, + 1166, + 742, + 534, + 742 + ], + "score": 0.929 + }, + { + "category_id": 4, + "poly": [ + 556, + 1093, + 1144, + 1093, + 1144, + 1127, + 556, + 1127 + ], + "score": 0.925 + }, + { + "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.862 + }, + { + "category_id": 0, + "poly": [ + 300, + 1356, + 1087, + 1356, + 1087, + 1390, + 300, + 1390 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 299, + 1993, + 1404, + 1993, + 1404, + 2026, + 299, + 2026 + ], + "score": 0.826 + }, + { + "category_id": 13, + "poly": [ + 1164, + 1555, + 1285, + 1555, + 1285, + 1588, + 1164, + 1588 + ], + "score": 0.91, + "latex": "\\epsilon = 8 / 2 5 6" + }, + { + "category_id": 13, + "poly": [ + 787, + 1283, + 871, + 1283, + 871, + 1311, + 787, + 1311 + ], + "score": 0.9, + "latex": "k = 1 6" + }, + { + "category_id": 13, + "poly": [ + 646, + 1283, + 729, + 1283, + 729, + 1311, + 646, + 1311 + ], + "score": 0.9, + "latex": "k = 6 4" + }, + { + "category_id": 13, + "poly": [ + 1270, + 1993, + 1396, + 1993, + 1396, + 2027, + 1270, + 2027 + ], + "score": 0.81, + "latex": "\\epsilon = 8 / 2 5 6 )" + }, + { + "category_id": 13, + "poly": [ + 864, + 1254, + 883, + 1254, + 883, + 1280, + 864, + 1280 + ], + "score": 0.79, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 388, + 1509, + 447, + 1509, + 447, + 1537, + 388, + 1537 + ], + "score": 0.52, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1939, + 1320, + 1939, + 1320, + 1966, + 1238, + 1966 + ], + "score": 0.51, + "latex": "5 3 . 3 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1911, + 1420, + 1911, + 1420, + 1936, + 1336, + 1936 + ], + "score": 0.47, + "latex": "5 3 . 5 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1939, + 1418, + 1939, + 1418, + 1967, + 1336, + 1967 + ], + "score": 0.47, + "latex": "4 6 . 6 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1911, + 1321, + 1911, + 1321, + 1937, + 1239, + 1937 + ], + "score": 0.41, + "latex": "5 4 . 5 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1479, + 1143, + 1479, + 1143, + 1507, + 1085, + 1507 + ], + "score": 0.4, + "latex": "1 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1911, + 1217, + 1911, + 1217, + 1937, + 1135, + 1937 + ], + "score": 0.39, + "latex": "4 0 . 6 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1068, + 834, + 1106, + 834, + 1106, + 861, + 1068, + 861 + ], + "score": 0.37, + "latex": "\\times 3" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1884, + 1416, + 1884, + 1416, + 1908, + 1336, + 1908 + ], + "score": 0.35, + "latex": "3 4 . 9 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1939, + 1219, + 1939, + 1219, + 1967, + 1135, + 1967 + ], + "score": 0.3, + "latex": "5 1 . 8 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1068, + 945, + 1106, + 945, + 1106, + 972, + 1068, + 972 + ], + "score": 0.29, + "latex": "\\times 2" + }, + { + "category_id": 13, + "poly": [ + 926, + 1740, + 956, + 1740, + 956, + 1767, + 926, + 1767 + ], + "score": 0.28, + "latex": "\\mathbf { C } '" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1883, + 1319, + 1883, + 1319, + 1909, + 1239, + 1909 + ], + "score": 0.26, + "latex": "4 7 . 8 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1068, + 889, + 1106, + 889, + 1106, + 916, + 1068, + 916 + ], + "score": 0.25, + "latex": "\\times 2" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 245.0, + 727.0, + 245.0, + 727.0, + 272.0, + 703.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 354.0, + 946.0, + 354.0, + 946.0, + 388.0, + 827.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 418.0, + 997.0, + 418.0, + 997.0, + 452.0, + 887.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 465.0, + 894.0, + 465.0, + 894.0, + 482.0, + 878.0, + 482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 483.0, + 946.0, + 483.0, + 946.0, + 520.0, + 829.0, + 520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 547.0, + 997.0, + 547.0, + 997.0, + 584.0, + 887.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 659.0, + 720.0, + 659.0, + 720.0, + 667.0, + 711.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 802.0, + 1001.0, + 802.0, + 1001.0, + 839.0, + 837.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 830.0, + 1067.0, + 830.0, + 1067.0, + 864.0, + 837.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 844.0, + 753.0, + 844.0, + 753.0, + 880.0, + 590.0, + 880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 859.0, + 1070.0, + 859.0, + 1070.0, + 891.0, + 836.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 874.0, + 718.0, + 874.0, + 718.0, + 908.0, + 591.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 887.0, + 1067.0, + 887.0, + 1067.0, + 918.0, + 836.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 887.0, + 1110.0, + 887.0, + 1110.0, + 918.0, + 1107.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 901.0, + 753.0, + 901.0, + 753.0, + 934.0, + 591.0, + 934.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 912.0, + 1070.0, + 912.0, + 1070.0, + 948.0, + 836.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 929.0, + 718.0, + 929.0, + 718.0, + 964.0, + 590.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 944.0, + 1067.0, + 944.0, + 1067.0, + 974.0, + 837.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 956.0, + 675.0, + 956.0, + 675.0, + 992.0, + 589.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 970.0, + 958.0, + 970.0, + 958.0, + 1004.0, + 837.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 631.0, + 995.0, + 708.0, + 995.0, + 708.0, + 1027.0, + 631.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 995.0, + 922.0, + 995.0, + 922.0, + 1033.0, + 836.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1035.0, + 1013.0, + 1035.0, + 1013.0, + 1069.0, + 931.0, + 1069.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 707.0, + 1164.0, + 707.0, + 1164.0, + 744.0, + 535.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1088.0, + 1146.0, + 1088.0, + 1146.0, + 1132.0, + 552.0, + 1132.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": [ + 297.0, + 1357.0, + 1088.0, + 1357.0, + 1088.0, + 1393.0, + 297.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1555.0, + 1163.0, + 1555.0, + 1163.0, + 1589.0, + 295.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1286.0, + 1555.0, + 1404.0, + 1555.0, + 1404.0, + 1589.0, + 1286.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1585.0, + 1404.0, + 1585.0, + 1404.0, + 1619.0, + 294.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1616.0, + 1405.0, + 1616.0, + 1405.0, + 1651.0, + 295.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1647.0, + 1404.0, + 1647.0, + 1404.0, + 1682.0, + 294.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1676.0, + 1404.0, + 1676.0, + 1404.0, + 1711.0, + 294.0, + 1711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1708.0, + 1405.0, + 1708.0, + 1405.0, + 1743.0, + 294.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1739.0, + 925.0, + 1739.0, + 925.0, + 1772.0, + 292.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1739.0, + 970.0, + 1739.0, + 970.0, + 1772.0, + 957.0, + 1772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1416.0, + 1406.0, + 1416.0, + 1406.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1482.0, + 295.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1479.0, + 1084.0, + 1479.0, + 1084.0, + 1512.0, + 295.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1479.0, + 1405.0, + 1479.0, + 1405.0, + 1512.0, + 1144.0, + 1512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1510.0, + 387.0, + 1510.0, + 387.0, + 1542.0, + 295.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 1510.0, + 1087.0, + 1510.0, + 1087.0, + 1542.0, + 448.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1191.0, + 1405.0, + 1191.0, + 1405.0, + 1225.0, + 293.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1222.0, + 1404.0, + 1222.0, + 1404.0, + 1254.0, + 293.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1254.0, + 863.0, + 1254.0, + 863.0, + 1285.0, + 294.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1254.0, + 1404.0, + 1254.0, + 1404.0, + 1285.0, + 884.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1281.0, + 645.0, + 1281.0, + 645.0, + 1317.0, + 293.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1281.0, + 786.0, + 1281.0, + 786.0, + 1317.0, + 730.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1281.0, + 1271.0, + 1281.0, + 1271.0, + 1317.0, + 872.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1986.0, + 1269.0, + 1986.0, + 1269.0, + 2032.0, + 293.0, + 2032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1986.0, + 1405.0, + 1986.0, + 1405.0, + 2032.0, + 1397.0, + 2032.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1213, + 1405, + 1213, + 1405, + 1551, + 297, + 1551 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 301, + 1794, + 1436, + 1794, + 1436, + 1941, + 301, + 1941 + ], + "score": 0.967, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A) PGD(A)]FGS(B') PGD(B’) FGS(C')PGD(C')
standard(A)79.22%44.86%6.38%48.52% 13.42%65.18%63.56%53.17%28.04%
adversarial PGD(B)66.68%45.54%38.36%64.81% 64.84%53.41%49.77%64.35%62.44%
adversarial network(C)80.21%57.21%30.27%65.37% 58.27%67.38%64.28%61.11%40.27%
" + }, + { + "category_id": 5, + "poly": [ + 300, + 922, + 1435, + 922, + 1435, + 1069, + 300, + 1069 + ], + "score": 0.962, + "html": "
training method\\attackwhite boxblack box
No Noise FGSPGDFGS(A)])PGD(A') FGS(B')PGD(B') FGS(C') PGD(C")
standard(A)94.69%62.36%1.08%69.89% 9.14%85.05%82.82%76.27%45.16%
adversarial PGD(B)83.50%67.92%60.15%83.21% 82.96%72.66%68.82%82.01%78.59%
adversarial network(C)91.32%73.77%49.55%83.29 % 81.65%79.32%76.00%79.32%62.71%
" + }, + { + "category_id": 3, + "poly": [ + 466, + 249, + 1231, + 249, + 1231, + 830, + 466, + 830 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.883 + }, + { + "category_id": 4, + "poly": [ + 581, + 857, + 1122, + 857, + 1122, + 890, + 581, + 890 + ], + "score": 0.869 + }, + { + "category_id": 0, + "poly": [ + 299, + 1594, + 1199, + 1594, + 1199, + 1652, + 299, + 1652 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 1, + "poly": [ + 300, + 1680, + 1410, + 1680, + 1410, + 1744, + 300, + 1744 + ], + "score": 0.588 + }, + { + "category_id": 1, + "poly": [ + 292, + 1963, + 1406, + 1963, + 1406, + 2026, + 292, + 2026 + ], + "score": 0.499 + }, + { + "category_id": 6, + "poly": [ + 297, + 1091, + 1406, + 1091, + 1406, + 1153, + 297, + 1153 + ], + "score": 0.459 + }, + { + "category_id": 6, + "poly": [ + 300, + 1680, + 1410, + 1680, + 1410, + 1744, + 300, + 1744 + ], + "score": 0.402 + }, + { + "category_id": 1, + "poly": [ + 297, + 1091, + 1406, + 1091, + 1406, + 1153, + 297, + 1153 + ], + "score": 0.333 + }, + { + "category_id": 6, + "poly": [ + 292, + 1963, + 1406, + 1963, + 1406, + 2026, + 292, + 2026 + ], + "score": 0.106 + }, + { + "category_id": 13, + "poly": [ + 735, + 582, + 843, + 582, + 843, + 612, + 735, + 612 + ], + "score": 0.88, + "latex": "z \\in \\mathbb { R } ^ { 2 5 6 k }" + }, + { + "category_id": 13, + "poly": [ + 392, + 1121, + 521, + 1121, + 521, + 1155, + 392, + 1155 + ], + "score": 0.85, + "latex": "( \\epsilon = 8 / 2 5 6 )" + }, + { + "category_id": 13, + "poly": [ + 388, + 1993, + 513, + 1993, + 513, + 2027, + 388, + 2027 + ], + "score": 0.85, + "latex": "\\epsilon = 8 / 2 5 6 )" + }, + { + "category_id": 13, + "poly": [ + 1101, + 364, + 1137, + 364, + 1137, + 390, + 1101, + 390 + ], + "score": 0.76, + "latex": "\\times 6" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1909, + 1418, + 1909, + 1418, + 1936, + 1336, + 1936 + ], + "score": 0.63, + "latex": "4 0 . 2 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1881, + 1420, + 1881, + 1420, + 1906, + 1336, + 1906 + ], + "score": 0.62, + "latex": "6 2 . 4 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1853, + 1318, + 1853, + 1318, + 1878, + 1239, + 1878 + ], + "score": 0.62, + "latex": "5 3 . 1 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1337, + 1853, + 1416, + 1853, + 1416, + 1878, + 1337, + 1878 + ], + "score": 0.61, + "latex": "2 8 . 0 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 533, + 294, + 601, + 294, + 601, + 320, + 533, + 320 + ], + "score": 0.6, + "latex": "2 8 \\mathbf { x } 2 8" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1909, + 1320, + 1909, + 1320, + 1937, + 1238, + 1937 + ], + "score": 0.6, + "latex": "6 1 . 1 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1881, + 1217, + 1881, + 1217, + 1906, + 1136, + 1906 + ], + "score": 0.59, + "latex": "4 9 . 7 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1881, + 1322, + 1881, + 1322, + 1906, + 1238, + 1906 + ], + "score": 0.58, + "latex": "6 4 . 3 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1036, + 1418, + 1036, + 1418, + 1063, + 1336, + 1063 + ], + "score": 0.57, + "latex": "6 2 . 7 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1117, + 654, + 1153, + 654, + 1153, + 680, + 1117, + 680 + ], + "score": 0.56, + "latex": "\\times 6" + }, + { + "category_id": 13, + "poly": [ + 720, + 299, + 736, + 299, + 736, + 319, + 720, + 319 + ], + "score": 0.52, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 560, + 614, + 637, + 614, + 637, + 641, + 560, + 641 + ], + "score": 0.51, + "latex": "( 8 , 8 , 4 k )" + }, + { + "category_id": 13, + "poly": [ + 1123, + 257, + 1139, + 257, + 1139, + 277, + 1123, + 277 + ], + "score": 0.49, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1036, + 1320, + 1036, + 1320, + 1063, + 1238, + 1063 + ], + "score": 0.49, + "latex": "7 9 . 3 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 625, + 641, + 747, + 641, + 747, + 669, + 625, + 669 + ], + "score": 0.47, + "latex": "( 3 , 1 , 4 k ) \\times 6" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1009, + 1419, + 1009, + 1419, + 1034, + 1336, + 1034 + ], + "score": 0.43, + "latex": "78 . 5 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 944, + 392, + 1046, + 392, + 1046, + 418, + 944, + 418 + ], + "score": 0.43, + "latex": "{ 2 \\mathrm { d } ( 3 , 2 , 2 k ) }" + }, + { + "category_id": 13, + "poly": [ + 1136, + 1852, + 1219, + 1852, + 1219, + 1878, + 1136, + 1878 + ], + "score": 0.41, + "latex": "6 3 . 5 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 710, + 641, + 747, + 641, + 747, + 668, + 710, + 668 + ], + "score": 0.41, + "latex": "\\times 6" + }, + { + "category_id": 13, + "poly": [ + 886, + 599, + 989, + 599, + 989, + 626, + 886, + 626 + ], + "score": 0.4, + "latex": "\\mathrm { F C } ( 2 5 6 k )" + }, + { + "category_id": 13, + "poly": [ + 1239, + 1009, + 1321, + 1009, + 1321, + 1034, + 1239, + 1034 + ], + "score": 0.39, + "latex": "8 2 . 0 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1909, + 1220, + 1909, + 1220, + 1937, + 1135, + 1937 + ], + "score": 0.37, + "latex": "6 4 . 2 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1240, + 980, + 1318, + 980, + 1318, + 1006, + 1240, + 1006 + ], + "score": 0.36, + "latex": "7 6 . 2 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 581, + 670, + 656, + 670, + 656, + 696, + 581, + 696 + ], + "score": 0.36, + "latex": "( 3 , 2 , 2 k )" + }, + { + "category_id": 13, + "poly": [ + 1336, + 981, + 1416, + 981, + 1416, + 1006, + 1336, + 1006 + ], + "score": 0.35, + "latex": "4 5 . 1 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 969, + 627, + 1043, + 627, + 1043, + 653, + 969, + 653 + ], + "score": 0.32, + "latex": "^ { ( 8 , 8 , 4 k ) }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1824, + 1432, + 1824, + 1432, + 1851, + 1336, + 1851 + ], + "score": 0.32, + "latex": "\\mathrm { P G D } ( \\mathbf { C } )" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1009, + 1216, + 1009, + 1216, + 1035, + 1135, + 1035 + ], + "score": 0.3, + "latex": "6 8 . 8 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1037, + 1217, + 1037, + 1217, + 1063, + 1135, + 1063 + ], + "score": 0.28, + "latex": "7 6 . 0 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1037, + 1009, + 1119, + 1009, + 1119, + 1034, + 1037, + 1034 + ], + "score": 0.28, + "latex": "7 2 . 6 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 949, + 336, + 1022, + 336, + 1022, + 362, + 949, + 362 + ], + "score": 0.27, + "latex": "( 3 , 2 , 2 k )" + }, + { + "category_id": 13, + "poly": [ + 948, + 281, + 1011, + 281, + 1011, + 307, + 948, + 307 + ], + "score": 0.26, + "latex": "( 3 , 1 , k )" + }, + { + "category_id": 13, + "poly": [ + 868, + 309, + 1157, + 309, + 1157, + 335, + 868, + 335 + ], + "score": 0.26, + "latex": "\\mathrm { c o n v 2 d } ( 3 , 2 , k ) \\cdot \\mathrm { { B N } \\cdot { R e L U } }" + }, + { + "category_id": 13, + "poly": [ + 937, + 252, + 1004, + 252, + 1004, + 278, + 937, + 278 + ], + "score": 0.26, + "latex": "3 2 \\mathbf { x } 3 2" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 251.0, + 936.0, + 251.0, + 936.0, + 282.0, + 870.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 251.0, + 1122.0, + 251.0, + 1122.0, + 282.0, + 1005.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 251.0, + 1234.0, + 251.0, + 1234.0, + 282.0, + 1140.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 279.0, + 947.0, + 279.0, + 947.0, + 308.0, + 867.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 279.0, + 1155.0, + 279.0, + 1155.0, + 308.0, + 1012.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 293.0, + 532.0, + 293.0, + 532.0, + 324.0, + 465.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 293.0, + 719.0, + 293.0, + 719.0, + 324.0, + 602.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 293.0, + 831.0, + 293.0, + 831.0, + 324.0, + 737.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 321.0, + 762.0, + 321.0, + 762.0, + 350.0, + 464.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 335.0, + 948.0, + 335.0, + 948.0, + 362.0, + 868.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 335.0, + 1166.0, + 335.0, + 1166.0, + 362.0, + 1023.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 347.0, + 775.0, + 347.0, + 775.0, + 377.0, + 464.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 361.0, + 1100.0, + 361.0, + 1100.0, + 391.0, + 870.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 375.0, + 784.0, + 375.0, + 784.0, + 407.0, + 465.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 391.0, + 943.0, + 391.0, + 943.0, + 419.0, + 870.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 391.0, + 1189.0, + 391.0, + 1189.0, + 419.0, + 1047.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 403.0, + 770.0, + 403.0, + 770.0, + 434.0, + 464.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 418.0, + 1177.0, + 418.0, + 1177.0, + 446.0, + 870.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 431.0, + 523.0, + 431.0, + 523.0, + 459.0, + 464.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 444.0, + 1016.0, + 444.0, + 1016.0, + 477.0, + 868.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 469.0, + 686.0, + 469.0, + 686.0, + 501.0, + 609.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 473.0, + 928.0, + 473.0, + 928.0, + 501.0, + 869.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 511.0, + 1089.0, + 511.0, + 1089.0, + 542.0, + 1011.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 570.0, + 1220.0, + 570.0, + 1220.0, + 602.0, + 885.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 592.0, + 885.0, + 592.0, + 885.0, + 631.0, + 882.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 592.0, + 996.0, + 592.0, + 996.0, + 631.0, + 990.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 612.0, + 559.0, + 612.0, + 559.0, + 645.0, + 478.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 612.0, + 643.0, + 612.0, + 643.0, + 645.0, + 638.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 625.0, + 968.0, + 625.0, + 968.0, + 657.0, + 884.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 625.0, + 1051.0, + 625.0, + 1051.0, + 657.0, + 1044.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 639.0, + 624.0, + 639.0, + 624.0, + 671.0, + 477.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 652.0, + 1116.0, + 652.0, + 1116.0, + 683.0, + 883.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 652.0, + 1157.0, + 652.0, + 1157.0, + 683.0, + 1154.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 667.0, + 580.0, + 667.0, + 580.0, + 699.0, + 478.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 667.0, + 800.0, + 667.0, + 800.0, + 699.0, + 657.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 680.0, + 1206.0, + 680.0, + 1206.0, + 709.0, + 886.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 695.0, + 788.0, + 695.0, + 788.0, + 726.0, + 478.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 709.0, + 1194.0, + 709.0, + 1194.0, + 737.0, + 886.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 721.0, + 625.0, + 721.0, + 625.0, + 756.0, + 475.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 733.0, + 1032.0, + 733.0, + 1032.0, + 768.0, + 883.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 749.0, + 540.0, + 749.0, + 540.0, + 781.0, + 475.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 762.0, + 944.0, + 762.0, + 944.0, + 791.0, + 885.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 787.0, + 702.0, + 787.0, + 702.0, + 822.0, + 623.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 799.0, + 1092.0, + 799.0, + 1092.0, + 834.0, + 1012.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 577.5, + 849.0, + 577.5, + 849.0, + 619.0, + 474.0, + 619.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": [ + 573.0, + 852.0, + 1126.0, + 852.0, + 1126.0, + 896.0, + 573.0, + 896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1594.0, + 1201.0, + 1594.0, + 1201.0, + 1628.0, + 295.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1628.0, + 526.0, + 1628.0, + 526.0, + 1656.0, + 297.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1089.0, + 1406.0, + 1089.0, + 1406.0, + 1125.0, + 295.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1118.0, + 391.0, + 1118.0, + 391.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1118.0, + 528.0, + 1118.0, + 528.0, + 1158.0, + 522.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 1405.0, + 1677.0, + 1405.0, + 1715.0, + 293.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1403.0, + 1709.0, + 1403.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1961.0, + 1405.0, + 1961.0, + 1405.0, + 1997.0, + 294.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1992.0, + 387.0, + 1992.0, + 387.0, + 2029.0, + 294.0, + 2029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1992.0, + 523.0, + 1992.0, + 523.0, + 2029.0, + 514.0, + 2029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1210.0, + 1406.0, + 1210.0, + 1406.0, + 1254.0, + 292.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1246.0, + 1406.0, + 1246.0, + 1406.0, + 1281.0, + 294.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1275.0, + 1405.0, + 1275.0, + 1405.0, + 1311.0, + 292.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1307.0, + 1405.0, + 1307.0, + 1405.0, + 1341.0, + 292.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1336.0, + 1407.0, + 1336.0, + 1407.0, + 1372.0, + 291.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1367.0, + 1406.0, + 1367.0, + 1406.0, + 1404.0, + 294.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1397.0, + 1406.0, + 1397.0, + 1406.0, + 1434.0, + 292.0, + 1434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1429.0, + 1402.0, + 1429.0, + 1402.0, + 1460.0, + 296.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1458.0, + 1406.0, + 1458.0, + 1406.0, + 1495.0, + 292.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1491.0, + 1405.0, + 1491.0, + 1405.0, + 1523.0, + 294.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1520.0, + 872.0, + 1520.0, + 872.0, + 1554.0, + 295.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1677.0, + 1405.0, + 1677.0, + 1405.0, + 1715.0, + 293.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1403.0, + 1709.0, + 1403.0, + 1747.0, + 293.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1961.0, + 1405.0, + 1961.0, + 1405.0, + 1997.0, + 294.0, + 1997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1992.0, + 387.0, + 1992.0, + 387.0, + 2029.0, + 294.0, + 2029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1992.0, + 523.0, + 1992.0, + 523.0, + 2029.0, + 514.0, + 2029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1089.0, + 1406.0, + 1089.0, + 1406.0, + 1125.0, + 295.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1118.0, + 391.0, + 1118.0, + 391.0, + 1158.0, + 294.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 1118.0, + 528.0, + 1118.0, + 528.0, + 1158.0, + 522.0, + 1158.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1152, + 1403, + 1152, + 1403, + 1338, + 298, + 1338 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 952, + 1403, + 952, + 1403, + 1138, + 298, + 1138 + ], + "score": 0.978 + }, + { + "category_id": 5, + "poly": [ + 303, + 221, + 1396, + 221, + 1396, + 396, + 303, + 396 + ], + "score": 0.976, + "html": "
GeneratorOriginal (B)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy75.30%90.54%75.71%89.21%
autoencoder(8 filters)72.74%88.38%73.07%87.89%
autoencoder(64 filters)71.26%87.64%71.98%87.02%
random Gaussian74.13%88.71%74.70%88.45%
label70.15%84.95%70.10%84.96%
" + }, + { + "category_id": 5, + "poly": [ + 303, + 573, + 1396, + 573, + 1396, + 748, + 303, + 748 + ], + "score": 0.974, + "html": "
GeneratorOriginal (C)standard(A')adversarial PGD(B')adversarial network(C')
original accuracy91.08%90.54%75.71%89.21%
autoencoder(8 filters)74.66%66.95%74.42%80.55%
autoencoder(64 filters)53.68%46.37%73.08%72.18%
random Gaussian85.91%71.00%75.00%86.55%
label81.46%77.46%73.09%83.98%
" + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 815, + 75, + 815, + 105, + 300, + 105 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2112, + 836, + 2112 + ], + "score": 0.839 + }, + { + "category_id": 6, + "poly": [ + 297, + 420, + 1404, + 420, + 1404, + 544, + 297, + 544 + ], + "score": 0.716 + }, + { + "category_id": 6, + "poly": [ + 297, + 771, + 1404, + 771, + 1404, + 895, + 297, + 895 + ], + "score": 0.642 + }, + { + "category_id": 1, + "poly": [ + 297, + 420, + 1404, + 420, + 1404, + 544, + 297, + 544 + ], + "score": 0.436 + }, + { + "category_id": 1, + "poly": [ + 297, + 771, + 1404, + 771, + 1404, + 895, + 297, + 895 + ], + "score": 0.386 + }, + { + "category_id": 13, + "poly": [ + 514, + 832, + 554, + 832, + 554, + 866, + 514, + 866 + ], + "score": 0.91, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 841, + 863, + 881, + 863, + 881, + 897, + 841, + 897 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 604, + 482, + 643, + 482, + 643, + 515, + 604, + 515 + ], + "score": 0.89, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 923, + 512, + 962, + 512, + 962, + 546, + 923, + 546 + ], + "score": 0.88, + "latex": "G _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1264, + 802, + 1304, + 802, + 1304, + 832, + 1264, + 832 + ], + "score": 0.87, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 1306, + 1139, + 1306, + 1139, + 1335, + 1085, + 1335 + ], + "score": 0.87, + "latex": "46 \\%" + }, + { + "category_id": 13, + "poly": [ + 1362, + 451, + 1400, + 451, + 1400, + 481, + 1362, + 481 + ], + "score": 0.87, + "latex": "D _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1075, + 1215, + 1129, + 1215, + 1129, + 1244, + 1075, + 1244 + ], + "score": 0.86, + "latex": "53 \\%" + }, + { + "category_id": 13, + "poly": [ + 983, + 1215, + 1038, + 1215, + 1038, + 1244, + 983, + 1244 + ], + "score": 0.86, + "latex": "90 \\%" + }, + { + "category_id": 13, + "poly": [ + 971, + 1016, + 1012, + 1016, + 1012, + 1045, + 971, + 1045 + ], + "score": 0.86, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 943, + 1277, + 991, + 1277, + 991, + 1307, + 943, + 1307 + ], + "score": 0.3, + "latex": "\\mathbf { \\pi } ( \\mathbf { C } )" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 418.0, + 1405.0, + 418.0, + 1405.0, + 456.0, + 292.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 1361.0, + 452.0, + 1361.0, + 484.0, + 295.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 483.0, + 603.0, + 483.0, + 603.0, + 516.0, + 295.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 483.0, + 1404.0, + 483.0, + 1404.0, + 516.0, + 644.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 511.0, + 922.0, + 511.0, + 922.0, + 544.0, + 295.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 511.0, + 1296.0, + 511.0, + 1296.0, + 544.0, + 963.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 801.0, + 1263.0, + 801.0, + 1263.0, + 834.0, + 295.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 801.0, + 1402.0, + 801.0, + 1402.0, + 834.0, + 1305.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 832.0, + 513.0, + 832.0, + 513.0, + 866.0, + 293.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 832.0, + 1405.0, + 832.0, + 1405.0, + 866.0, + 555.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 840.0, + 862.0, + 840.0, + 895.0, + 295.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 862.0, + 1214.0, + 862.0, + 1214.0, + 895.0, + 882.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1151.0, + 1407.0, + 1151.0, + 1407.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1185.0, + 1404.0, + 1185.0, + 1404.0, + 1217.0, + 296.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1212.0, + 982.0, + 1212.0, + 982.0, + 1248.0, + 294.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1212.0, + 1074.0, + 1212.0, + 1074.0, + 1248.0, + 1039.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1212.0, + 1404.0, + 1212.0, + 1404.0, + 1248.0, + 1130.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1245.0, + 1405.0, + 1245.0, + 1405.0, + 1281.0, + 294.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1274.0, + 942.0, + 1274.0, + 942.0, + 1309.0, + 293.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1274.0, + 1407.0, + 1274.0, + 1407.0, + 1309.0, + 992.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1305.0, + 1084.0, + 1305.0, + 1084.0, + 1341.0, + 294.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 1305.0, + 1150.0, + 1305.0, + 1150.0, + 1341.0, + 1140.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 952.0, + 1407.0, + 952.0, + 1407.0, + 989.0, + 294.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 984.0, + 1405.0, + 984.0, + 1405.0, + 1018.0, + 293.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1017.0, + 970.0, + 1017.0, + 970.0, + 1049.0, + 296.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1017.0, + 1404.0, + 1017.0, + 1404.0, + 1049.0, + 1013.0, + 1049.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, + 1076.0, + 1405.0, + 1076.0, + 1405.0, + 1111.0, + 294.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1106.0, + 1398.0, + 1106.0, + 1398.0, + 1142.0, + 294.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 418.0, + 1405.0, + 418.0, + 1405.0, + 456.0, + 292.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 452.0, + 1361.0, + 452.0, + 1361.0, + 484.0, + 295.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 483.0, + 603.0, + 483.0, + 603.0, + 516.0, + 295.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 483.0, + 1404.0, + 483.0, + 1404.0, + 516.0, + 644.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 511.0, + 922.0, + 511.0, + 922.0, + 544.0, + 295.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 511.0, + 1296.0, + 511.0, + 1296.0, + 544.0, + 963.0, + 544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 770.0, + 1405.0, + 770.0, + 1405.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 801.0, + 1263.0, + 801.0, + 1263.0, + 834.0, + 295.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1305.0, + 801.0, + 1402.0, + 801.0, + 1402.0, + 834.0, + 1305.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 832.0, + 513.0, + 832.0, + 513.0, + 866.0, + 293.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 832.0, + 1405.0, + 832.0, + 1405.0, + 866.0, + 555.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 862.0, + 840.0, + 862.0, + 840.0, + 895.0, + 295.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 862.0, + 1214.0, + 862.0, + 1214.0, + 895.0, + 882.0, + 895.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/S1ldO2EFPr/S1ldO2EFPr.md b/parse/train/S1ldO2EFPr/S1ldO2EFPr.md new file mode 100644 index 0000000000000000000000000000000000000000..96ec7ddc534a1313c7f6cf46fe2aa35ec58bb5fe --- /dev/null +++ b/parse/train/S1ldO2EFPr/S1ldO2EFPr.md @@ -0,0 +1,776 @@ +# GRAPH NEURAL NETWORKS EXPONENTIALLY LOSE EXPRESSIVE POWER FOR NODE CLASSIFICATION + +Kenta Oono1, 2, Taiji Suzuki1, 3 {kenta oono, taiji}@mist.i.u-tokyo.ac.jp 1The University of Tokyo 2Preferred Networks, Inc. 3RIKEN Center for Advanced Intelligence Project (AIP) + +# ABSTRACT + +Graph Neural Networks (graph NNs) are a promising deep learning approach for analyzing graph-structured data. However, it is known that they do not improve (or sometimes worsen) their predictive performance as we pile up many layers and add non-lineality. To tackle this problem, we investigate the expressive power of graph NNs via their asymptotic behaviors as the layer size tends to infinity. Our strategy is to generalize the forward propagation of a Graph Convolutional Network (GCN), which is a popular graph NN variant, as a specific dynamical system. In the case of a GCN, we show that when its weights satisfy the conditions determined by the spectra of the (augmented) normalized Laplacian, its output exponentially approaches the set of signals that carry information of the connected components and node degrees only for distinguishing nodes. Our theory enables us to relate the expressive power of GCNs with the topological information of the underlying graphs inherent in the graph spectra. To demonstrate this, we characterize the asymptotic behavior of GCNs on the Erdos – R˝ enyi graph. We show´ that when the Erdos – R ˝ enyi graph is sufficiently dense and large, a broad range ´ of GCNs on it suffers from the “information loss” in the limit of infinite layers with high probability. Based on the theory, we provide a principled guideline for weight normalization of graph NNs. We experimentally confirm that the proposed weight scaling enhances the predictive performance of GCNs in real data1. + +# 1 INTRODUCTION + +Motivated by the success of Deep Learning (DL), several attempts have been made to apply DL models to non-Euclidean data, particularly, graph-structured data such as chemical compounds, social networks, and polygons. Recently, Graph Neural Networks (graph NNs) (Duvenaud et al., 2015; Li et al., 2016; Gilmer et al., 2017; Hamilton et al., 2017; Kipf & Welling, 2017; Nguyen et al., 2017; Schlichtkrull et al., 2018; Battaglia et al., 2018; Xu et al., 2019; Wu et al., 2019a) have emerged as a promising approach. However, despite their practical popularity, theoretical research of graph NNs has not been explored extensively. + +The characterization of DL model expressive power, i.e., to identify what function classes DL models can (approximately) represent, is a fundamental question in theoretical research of DL. Many studies have been conducted for Fully Connected Neural Networks (FNNs) (Cybenko, 1989; Hornik, 1991; Hornik et al., 1989; Barron, 1993; Mhaskar, 1993; Sonoda & Murata, 2017; Yarotsky, 2017) and Convolutional Neural Networks (CNNs) (Petersen & Voigtlaender, 2018; Zhou, 2018; Oono & Suzuki, 2019). For such models, we have theoretical and empirical justification that deep and nonlinear architectures can enhance representation power (Telgarsky, 2016; Chen et al., 2018b; Zhou & Feng, 2018). However, for graph NNs, several papers have reported that node representations go indistinguishable (known as over-smoothing) and prediction performances severely degrade when we stack many layers (Kipf & Welling, 2017; Wu et al., 2019b; Li et al., 2018). Besides, Wu et al. (2019a) reported that graph NNs achieved comparable performance even if they removed intermediate non-linear functions. These studies posed a question about the current architecture and made us aware of the need for the theoretical analysis of the graph NN expressive power. + +In this paper, we investigate the expressive power of graph NNs by analyzing their asymptotic behaviors as the layer size goes to infinity. Our theory gives new theoretical conditions under which neither layer stacking nor non-linearity contributes to improving expressive power. We consider a specific dynamics that includes a transition defining a Markov process and the forward propagation of a Graph Convolutional Network (GCN) (Kipf & Welling, 2017), which is one of the most popular graph NN variants, as special cases. We prove that under certain conditions, the dynamics exponentially approaches a subspace that is invariant under the dynamics. In the case of GCN, the invariant space is a set of signals that correspond to the lowest frequency of graph spectra and that have “no information” other than connected components and node degrees for a node classification task whose goal is to predict the nodes’ properties in a graph. The rate of the distance between the output and the invariant space is ${ \cal O } ( ( s \lambda ) ^ { \widehat { L } } )$ where $s$ is the maximum singular values of weights, $\lambda$ is typically a quantity determined by the spectra of the (augmented) normalized Laplacian, and $L$ is the layer size. See Sections 3.3 (general case) and 4 (GCN case) for precise statements. + +We can interpret our theorem as the generalization of the well-known property that if a finite and discrete Markov process is irreducible and aperiodic, it exponentially converges to a unique equilibrium and the eigenvalues of its transition matrix determine the convergence rate (see, e.g., Chung & Graham (1997)). Different from the Markov process case, which is linear, the existence of intermediate non-linear functions complicates the analysis. We overcame this problem by leveraging the combination of the ReLU activation function (Krizhevsky et al., 2012) and the positivity of eigenvectors of the Laplacian associated with the smallest positive eigenvalues. + +Our theory enables us to investigate asymptotic behaviors of graph NNs via the spectral distribution of the underlying graphs. To demonstrate this, we take GCNs defined on the Erdos – R ˝ enyi graph ´ $G _ { N , p }$ , which has $N$ nodes and each edge appears independently with probability $p$ , for an example. We prove that if log N $\frac { \log N } { p N } = o ( 1 )$ as a function of $N$ , any GCN whose weights have maximum singular values at most $\begin{array} { r } { C \sqrt { \frac { N p } { \log ( N / \varepsilon ) } } } \end{array}$ approaches the “information-less” invariant space with probability at least $1 - \varepsilon$ , where $C$ is a universal constant. Intuitively, if the graph on which we define graph NNs is sufficiently dense, graph-convolution operations mix signals on nodes fast and hence the feature maps lose information for distinguishing nodes quickly. + +Our contributions are as follows: + +• We relate asymptotic behaviors of graph NNs with the topological information of underlying graphs via the spectral distribution of the (augmented) normalized Laplacian. • We prove that if the weights of a GCN satisfy conditions determined by the graph spectra, the output of the GCN carries no information other than the node degrees and connected components for discriminating nodes when the layer size goes to infinity (Theorems 1, 2). • We apply our theory to Erdos – R ˝ enyi graphs as an example and show that when the graph ´ is sufficiently dense and large, many GCNs suffer from the information loss (Theorem 3). • We propose a principled guideline for weight normalization of graph NNs and empirically confirm it using real data. + +# 2 RELATED WORK + +MPNN-type Graph NNs. Since many graph NN variants have been proposed, there are several unified formulations of graph NNs (Gilmer et al., 2017; Battaglia et al., 2018). Our approach is the closest to the formulation of Message Passing Neural Network (MPNN) (Gilmer et al., 2017), which unified graph NNs in terms of the update and readout operations. Many graph NNs fall into this formulation such as Duvenaud et al. (2015), Li et al. (2016), and Velickovi ˇ c et al. (2018). ´ Among others, GCN (Kipf & Welling, 2017) is an important application of our theory because it is one of the most widely used graph NNs. In addition, GCNs are interesting from a theoretical research perspective because, in addition to an MPNN-type graph NN, we can interpret GCNs as a simplification of spectral-type graph NNs (Henaff et al., 2015; Defferrard et al., 2016), that make use of the graph Laplacian. + +Our approach, which considers the asymptotic behaviors graph NNs as the layer size goes to infinity, is similar to Scarselli et al. (2009), one of the earliest works about graph NNs. They obtained node representations by iterating message passing between nodes until convergence. Their formulation is general in that we can use any local aggregation operation as long as it is a contraction map. Our theory differs from theirs in that we proved that the output of a graph NN approaches a certain space even if the local aggregation function is not necessarily a contraction map. + +Expressive Power of Graph NNs. Several studies have focused on theoretical analysis and the improvement of graph NN expressive power. For example, Xu et al. (2019) proved that graph NNs are no more powerful than the Weisfeiler – Lehman (WL) isomorphism test (Weisfeiler & A.A., 1968) and proposed a Graph Isomorphism Network (GIN), that is approximately as powerful as the WL test. Although they experimentally showed that GIN has improved accuracy in supervised learning tasks, their analysis was restricted to the graph isomorphism problem. Xu et al. (2018) analyzed the non-asymptotic properties of GCNs through the lens of random walk theory. They proved the limitations of GCNs in expander-like graphs and proposed a Jumping Knowledge Network (JKNet) to address the issue. To handle the non-linearity, they linearized networks by a randomization assumption (Choromanska et al., 2015). We take a different strategy and make use of the interpretation of ReLU as a projection onto a cone. Recently, NT & Maehara (2019) showed that a GCN approximately works as a low-pass filter plus an MLP in a certain setting. Although they analyzed finite-depth GCNs, our theory has similar spirits with theirs because our “information-less” space corresponds to the lowest frequency of a graph Laplacian. Another point is that they imposed assumptions that input signals consist of low-frequent true signals and high-frequent noise, whereas we need not such an assumption. + +Role of Deep and Non-linear Structures. For ordinal DL models such as FNNs and CNNs, we have both theoretical and empirical justification of deep and non-linear architectures for enhancing of the expressive power (e.g., Telgarsky (2016); Petersen & Voigtlaender (2018); Oono & Suzuki (2019)). In contrast, several studies have witnessed severe performance degradation when stacking many layers on graph NNs (Kipf & Welling, 2017; Wu et al., 2019b). Li et al. (2018) reported that feature vectors on nodes in a graph go indistinguishable as we increase layers in several tasks. They named this phenomenon over-smoothing. Regarding non-linearity, Wu et al. (2019a) empirically showed that graph NNs achieve comparable performance even if we omit intermediate non-linearity. These observations gave us questions about the current models of deep graph NNs in terms of their expressive power. Several studies gave theoretical explanations of the over-smoothing phenomena for linear GNNs (Li et al., 2018; Zhang, 2019; Zhao & Akoglu, 2020). We can think of our theory as an extension of their results to non-linear GNNs. + +# 3 PROBLEM SETTING AND MAIN RESULT + +# 3.1 NOTATION + +Let $\mathbb { N } _ { + }$ be the set of positive integers. For $N \in { \mathbb { N } } _ { + }$ , we denote $[ N ] : = \{ 1 , \dots , N \}$ . For a vector $v \in \mathbb { R } ^ { N }$ , we write $v \geq 0$ if and only if $v _ { n } \geq 0$ for all $n \in [ N ]$ . Similarly, for a matrix $X \in \mathbb { R } ^ { N \times C }$ , we write $X \geq 0$ if and only if $X _ { n c } \geq 0$ for all $n \in [ N ]$ and $c \in [ C ]$ . We say such a vector and matrix is non-negative. $\langle \cdot , \cdot \rangle$ denotes the inner product of vectors or matrices, depending on the context: $\langle u , v \rangle : = u ^ { \top } v$ for $u , v \in \mathbb { R } ^ { N }$ and $\langle X , Y \rangle : = \mathrm { t r } ( X ^ { T } Y )$ for $X , Y \in \mathbb { R } ^ { N \times C }$ . ${ \bf 1 } _ { P }$ equals to 1 if the proposition $P$ is true else 0. For vectors $v \in \mathbb { R } ^ { N }$ and $w \in \mathbb { R } ^ { C }$ , $v \otimes w \in \mathbb { R } ^ { N \times C }$ denotes the Kronecker product of $v$ and $w$ defined by $( v \otimes w ) _ { n c } : = v _ { n } w _ { c } .$ . For $X \in \mathbb { R } ^ { N \times C }$ , $\| X \| _ { \mathrm { F } } : = \langle X , X \rangle ^ { \frac { 1 } { 2 } }$ denotes the Frobenius norm of $X$ . For a vector $v \in \mathbb { R } ^ { N }$ , $\mathrm { d i a g } ( v ) : = ( v _ { n } \delta _ { n m } ) _ { n , m \in [ N ] } \in \mathbb { R } ^ { N \times N }$ denotes the diagonalization of $v$ . $I _ { N } \in \mathbb { R } ^ { N \times N }$ denotes the identity matrix of size $N$ . For a linear operator $P : \mathbb { R } ^ { \tilde { N } } \mathbb { R } ^ { M }$ and a subset $V \subset \mathbb { R } ^ { N }$ , we denote the restriction of $P$ to $V$ by $P | _ { V }$ . + +# 3.2 DYNAMICAL SYSTEM + +Although we are mainly interested in GCNs, we develop our theory more generally using dynamical systems. We will specialize to the GCNs in Section 4. + +For $N , C , H _ { l } \ \in \ \mathbb { N } _ { + }$ $( l \in \mathbb { N } _ { + } )$ , let $P \in \mathbb { R } ^ { N \times N }$ be a symmetric matrix and $W _ { l h } \ \in \ \mathbb { R } ^ { C \times C }$ for $l \in \mathbb { N } _ { + }$ and $h \in \lceil H _ { l } \rceil$ . We define $f _ { l } : \mathbb { R } ^ { N \times C } \mathbb { R } ^ { \mathbf { \tilde { N } } \times C }$ by $f _ { l } ( X ) \ : = \ \mathrm { M L P } _ { l } ( P X )$ . Here, $\mathrm { M L P } _ { l } : \mathbb { R } ^ { N \times C } \to \dot { \mathbb { R } } ^ { N \times C }$ is the $l$ -th multi-layer perceptron common to all nodes $\mathrm { { . x u } }$ et al., 2019) and is defined by $\mathrm { M L P } _ { l } ( X ) : = \sigma ( \cdots \sigma ( \sigma ( \dot { X } ) \bar { W } _ { l 1 } ) \bar { W } _ { l 2 } \cdot \cdot \cdot W _ { l H _ { l } } )$ , where $\sigma : \mathbb { R } ^ { \dot { N } \times C } \mathbb { R } ^ { N \times \dot { C } }$ is an element-wise ReLU function (Krizhevsky et al., 2012) defined by $\sigma ( X ) _ { n c } : = \operatorname* { m a x } ( X _ { n c } , 0 )$ for $n \in [ N ] , c \in [ C ]$ . We consider the dynamics $X ^ { ( l + 1 ) } : = f _ { l } ( X ^ { ( l ) } )$ with some initial value $X ^ { ( 0 ) } \in \mathbb { R } ^ { N \times C }$ . We are interested in the asymptotic behavior of $X ^ { ( l ) }$ as $l \infty$ . + +For $M \leq N$ , let $U$ be a $M$ -dimensional subspace of $\mathbb { R } ^ { N }$ . We assume that $U$ and $P$ satisfy the following properties that generalize the situation where $U$ is the eigenspace associated with the smallest eigenvalue of a (normalized) graph Laplacian $\Delta$ (that is, zero) and $P$ is a polynomial of $\Delta$ + +Assumption 1. $U$ has an orthonormal basis $( e _ { m } ) _ { m \in [ M ] }$ that consists of non-negative vectors. + +Assumption 2. $U$ is invariant under $P$ , i.e., if $u \in U$ , then $P u \in U$ . + +We endow $\mathbb { R } ^ { N }$ with the ordinal inner product and denote the orthogonal complement of $U$ by $U ^ { \perp } : =$ $\{ u \in \mathbb { R } ^ { N } \mid \langle u , v \rangle = 0 , \forall v \in U \}$ . By the symmetry of $P$ , we can show that $U ^ { \perp }$ is invariant under $P$ , too (Appendix E.1, Proposition 2). Therefore, we can regard $P$ as a linear mapping $P | _ { U ^ { \perp } } :$ $U ^ { \perp } \to U ^ { \perp }$ . We denote the operator norm of $P | _ { U ^ { \perp } }$ by $\lambda$ . When $U$ is the eigenspace associated with the smallest eigenvalue of $\Delta$ and $P$ is $g ( \Delta )$ where $g$ is a polynomial, then, $\lambda$ corresponds to $\begin{array} { r } { \lambda = \operatorname* { s u p } _ { \mu } \left| g ( \mu ) \right| } \end{array}$ where sup ranges over all eigenvalues except the smallest one. + +# 3.3 MAIN RESULT + +he subspace is the ortho $\mathcal { M }$ of ma $\mathbb { R } ^ { N \times C }$ b of $\begin{array} { r } { \mathcal { M } : = U \otimes \mathbb { R } ^ { C } = \{ \sum _ { m = 1 } ^ { M } e _ { m } \otimes w _ { m } \mid w _ { m } \in \mathbb { R } ^ { C } \} } \end{array}$ wheredenote $( e _ { m } ) _ { m \in [ M ] }$ $U$ $X \in \mathbb { R } ^ { N \times C }$ the distance between $X$ and $\mathcal { M }$ by $d _ { \mathcal { M } } ( X ) : = \operatorname* { i n f } \left\{ \| X - Y \| _ { \mathrm { F } } \mid Y \in \mathcal { M } \right\}$ . We denote the maximum singular value of $W _ { l h }$ by $s _ { l h }$ and set $\begin{array} { r } { s _ { l } : = \prod _ { h = 1 } ^ { H _ { l } } s _ { l h } } \end{array}$ . With these preparations, we introduce the main theorem of the paper. + +Theorem 1. Under Assumptions 1 and 2, we have $d _ { \mathcal { M } } ( f _ { l } ( X ) ) \leq s _ { l } \lambda d _ { \mathcal { M } } ( X )$ for any $X \in \mathbb { R } ^ { N \times C }$ + +The proof key is that the non-linear operation $\sigma$ decreases the distance $d _ { \mathcal { M } }$ , that is, $d _ { \mathcal { M } } ( \sigma ( \boldsymbol { X } ) ) \leq$ $d _ { \mathcal { M } } ( \boldsymbol { X } )$ . We use the non-negativity of $e _ { m }$ to prove this claim. See Appendix A for the complete proof. We also discuss the strictness of Theorem 1 in Appendix E.3. + +By setting $d _ { \mathcal { M } } ( \boldsymbol { X } ) = 0$ , this theorem implies that $\mathcal { M }$ is invariant under $f _ { l }$ . In addition, if the maximum value of singular values are small, $X ^ { ( l ) }$ asymptotically approaches $\mathcal { M }$ in the sense of Johnson (1973) for any initial value $X ^ { ( 0 ) }$ . That is, the followings hold under Assumptions 1 and 2. + +Corollary 1. $\mathcal { M }$ is invariant under fl for any $l \in \mathbb { N } _ { + }$ , that is, if $X \in \mathcal { M }$ , then we have $f _ { l } ( X ) \in \mathcal { M }$ . + +Corollary 2. Let $s : = \mathrm { s u p } _ { l \in \mathbb { N } _ { + } } s _ { l }$ . We have $d _ { \mathcal { M } } ( X ^ { ( l ) } ) = O ( ( s \lambda ) ^ { l } )$ . In particular, if $s \lambda < 1$ , then $X _ { l }$ exponentially approaches $\mathcal { M }$ as $l \infty$ for any initial value $X ^ { ( 0 ) }$ . + +Suppose the operator norm of $P | _ { U } : U \to U$ is no larger than $\lambda$ , then, under the assumption of $s \lambda < 1$ , $X ^ { ( l ) }$ converges to 0, the trivial fixed point (see Appendix E.2, Proposition 3). Therefore, we are mainly interested in the case where the operator norm of $P | _ { U }$ is strictly larger than $\lambda$ (see Proposition 1). Finally, we restate Theorem 1 specialized to the situation where $U$ is the direct sum of eigenspaces associated with the largest $M$ eigenvalues of $P$ . Note that the eigenvalues of $P$ is real since $P$ is symmetric. + +Corollary 3. Let $\lambda _ { 1 } \leq \cdots \leq \lambda _ { N }$ be the eigenvalue of $P$ , sorted in ascending order. Suppose the multiplicity of the largest eigenvalue $\lambda _ { N }$ is $M ( \leq N )$ , i.e., $\lambda _ { N - M } < \lambda _ { N - M + 1 } = \cdot \cdot \cdot = \lambda _ { N }$ . We define $\lambda : = \operatorname* { m a x } _ { n \in [ N - M ] } \left| \lambda _ { n } \right|$ . We denote $U$ by the eigenspace associated with $\lambda _ { N }$ and assume that $U$ satisfies Assumption 1. Then, we have $d _ { \mathcal { M } } ( X ^ { ( l + 1 ) } ) \leq s _ { l } \lambda d _ { \mathcal { M } } ( X ^ { ( l ) } ) .$ . + +Remark 1. It is known that any Markov process on finite states converges to a unique distribution (equilibrium) if it is irreducible and aperiodic (see e.g., Norris (1998)). Theorem $^ { l }$ includes this proposition as a special case with $M = 1$ , $C = 1$ , and $W _ { l } = 1$ for all $l \in \mathbb { N } _ { + }$ . This is essentially the direct consequence of Perron – Frobenius’ theorem (see e.g., Meyer (2000)). See Appendix $F$ . + +# 4 APPLICATION TO GCN + +We formulate a GCN (Kipf & Welling, 2017) without readout operations (Gilmer et al., 2017) using the dynamical system in the previous section and derive a sufficient condition in terms of the spectra of underlying graphs in which layer stacking nor non-linearity are not helpful for node classification. + +Let $G = ( V , E )$ be an undirected graph where $V$ is a set of nodes and $E$ is a set of edges. We denote the number of nodes in $G$ by $N = | V |$ and identify $V$ with $[ N ]$ by fixing an order of $V$ . We associate a $C$ dimensional signal to each node. $X$ in the previous section corresponds to concatenation of the signals. GCNs iteratively update signals on $V$ using the connection information and weights. + +Let $A : = ( \mathbf { 1 } _ { \{ ( i , j ) \in E \} } ) _ { i , j \in [ N ] } \ \in \ \mathbb { R } ^ { N \times N }$ be the adjacency matrix and $D : = \mathrm { d i a g } ( \deg ( i ) _ { i \in [ N ] } ) \ \in$ $\mathbb { R } ^ { N \times N }$ be the degree matrix of $G$ where $\deg ( i ) : = | \{ j \in V \mid ( i , j ) \in E \} |$ is the degree of node $i$ . Let ${ \tilde { A } } : = A + I _ { N }$ , ${ \tilde { D } } : = D + I _ { N }$ be the adjacent and degree matrix of graph $G$ augmented with self-loops. We define the augmented normalized Laplacian (Wu et al., 2019a) of $G$ by $\tilde { \Delta } : =$ $I _ { N } - \tilde { D } ^ { - \frac { 1 } { 2 } } \tilde { A } \tilde { D } ^ { - \frac { 1 } { 2 } }$ and set $P : = I _ { N } - \tilde { \Delta }$ . Let $L , C \in \mathbb { N } _ { + }$ be the layer and channel sizes, respectively. For weights $W _ { l } \in \mathbb { R } ^ { C \times C }$ $( l \in [ L ] )$ , we define a $\mathrm { G C N } ^ { 2 }$ associated with $G$ by $f = f _ { L } \circ \cdot \cdot \cdot \circ f _ { 1 }$ where $f _ { l } : \mathbb { R } ^ { \breve { N } \times C } \mathbb { R } ^ { N \times C }$ is defined by $f _ { l } ( X ) : = \sigma ( P X W _ { l } )$ . We are interested in the asymptotic behavior of the output $X ^ { ( L ) }$ of the GCN as $L \to \infty$ . + +Suppose $G$ has $M$ connected components and let $V = V _ { 1 } \sqcup \cdots \sqcup V _ { M }$ be the decomposition of the node set $V$ into connected components. We denote an indicator vector of the $m$ -th connected component by $u _ { m } : = ( \mathbf { 1 } _ { \{ n \in V _ { m } \} } ) _ { n \in [ N ] } \in \mathbb { R } ^ { N }$ . The following proposition shows that GCN satisfies the assumption of Corollay 3 (see Appendix B for proof). + +Proposition 1. Let $\lambda _ { 1 } \leq \cdots \leq \lambda _ { N }$ be the eigenvalue of $P$ sorted in ascending order. Then, we have $- 1 < \lambda _ { 1 }$ , $\lambda _ { N - M } ~ < ~ 1$ , and $\lambda _ { N - M + 1 } = \cdot \cdot \cdot = \lambda _ { N } = 1$ . In particular, we have $\lambda : =$ $\begin{array} { r } { \operatorname* { m a x } _ { n = 1 , \dots , N - M } | \lambda _ { n } | < 1 } \end{array}$ . Further, $e _ { m } : = \tilde { D } ^ { \frac { 1 } { 2 } } u _ { m }$ for $m \in [ M ]$ are the basis of the eigenspace associated with the eigenvalue 1. + +Theorem 2. For any initial value $X ^ { ( 0 ) }$ , the output of l-th layer $X ^ { ( l ) }$ satisfies $d _ { \mathcal { M } } ( X ^ { ( l ) } ) ~ \leq$ $( s \lambda ) ^ { l } d _ { \mathcal { M } } ( X ^ { ( 0 ) } )$ . In particular, $d _ { \mathcal { M } } ( { \boldsymbol { X } } ^ { ( l ) } )$ exponentially converges to 0 when $s \lambda < 1$ . + +In the context of node classification tasks, we can interpret this corollary as the “information loss” of GCNs in the limit of infinite layers. For any $X \in { \mathcal { M } }$ , if two nodes $i , j \in V$ are in a same connected component and their degrees are identical, then, the column vectors of $X$ that correspond to nodes $i$ and $j$ are identical. It means that we cannot distinguish these nodes using $X$ . In this sense, $\mathcal { M }$ only has information about connected components and node degrees and we can interpret this theorem as the exponential information loss of GCNs in terms of the layer size. Similarly to the discussion in the previous section, $X ^ { ( l ) }$ converges to the trivial fixed point 0 when $s < 1$ (remember $\lambda _ { N } = 1$ ). An interesting point is that even if $s \geq 1$ , $X ^ { ( l ) }$ can suffer from this information loss when $s < \lambda ^ { - 1 }$ . + +We note that the rate $s \lambda$ in Theorem 2 depends on the spectra of the augmented normalized Laplacian, which is determined by the topology of the underlying graph $G$ . Hence, our result explicitly relates the topological information of graphs and asymptotic behaviors of graph NNs. + +Remark 2. The old preprint (version 2) of Luan et al. (2019) formulated a theorem that explains the over-smoothing of non-linear GNNs. Specifically, it claimed that if a graph does not have a bipartite component and the input distribution is continuous, the rank of the output of a GCN converges to the number of connected components of the underlying graph as the layer size goes to infinity almost surely. However, it is not true in general as we give a counterexample in Appendix $C$ . + +# 5 ASYMPTOTIC BEHAVIOR OF GCN ON ERDOS˝ – RENYI ´ GRAPH + +Theorem 2 gives us a way to characterize the asymptotic behaviors of GCNs via the spectral distributions of the underlying graphs. To demonstrate this, we consider an Erdos – R ˝ enyi graph ´ $G _ { N , p }$ (Erdos & R ¨ enyi, 1959; Gilbert, 1959), which is a random graph that has ´ $N$ nodes and whose edges between two distinct nodes appear independently with probability $p \in [ 0 , 1 ]$ , as an example. First, consider a (non-random) graph $G$ with $M$ connected components. Let $0 = \tilde { \mu } _ { 1 } = \cdot \cdot \cdot = \tilde { \mu } _ { M } <$ $\tilde { \mu } _ { M + 1 } \leq \dots \leq \tilde { \mu } _ { N } < 2$ be eigenvalues of the augmented normalized Laplacian of $G$ (see, Proposition 1) and set $\begin{array} { r } { \lambda : = \operatorname* { m i n } _ { m = M + 1 , \ldots , N } | 1 - \tilde { \mu } _ { m } | ( < 1 ) } \end{array}$ . By Theorem 2, the output of GCN “loses information” as the layer size goes to infinity when the largest singular values of weights are strictly smaller than $\lambda ^ { - 1 }$ . Therefore, the closer the positive eigenvalues $\mu _ { m }$ are to 1, the broader range of GCNs satisfies the assumption of Theorem 2. + +![](images/52ed0a06decf73aeea33aba4d223d5646b9ee3b007a61062524feaa9a9984ba1.jpg) +Figure 1: Visualization of vector field $V ( X ) : = f ( X ) - X$ induced by the one-step transition. Color maps indicate the absolute value $| V ( X ) |$ at the point $X$ . Dotted lines are the subspace $\mathcal { M }$ . Left: Case 1. Right: Case 2. Best view in color. + +For an Erdos – R ˝ enyi graph ´ $G _ { N , p }$ , Chung & Radcliffe (2011) showed that when $\begin{array} { r } { \frac { \log N } { N p } = o ( 1 ) } \end{array}$ , the eigenvalues of the (usual) normalized Laplacian except for the smallest one converge to 1 with high probability (see Theorem 2 therein)3. We can interpret this theorem as the convergence of Erdos- ˝ Renyi graphs to the complete graph in terms of graph spectra. We can prove that the augmented ´ normalized Laplacian behaves similarly (Lemma 6). By combining this fact with the discussion in the previous paragraph, we obtain the asymptotic behavior of GCNs on the Erdos – R ˝ enyi graph. ´ See Appendix D for the complete proof. + +Theorem 3. Consider a GCN on the Erdos-R ˝ enyi graph ´ $G _ { N , p }$ such that $\begin{array} { r } { \frac { \log N } { N p } = o ( 1 ) } \end{array}$ as a function +of $N$ . For any $\varepsilon > 0$ , if the supremum s of the maximum singular values of weights in the GCN +satisfies s < s0 := 17 q $\begin{array} { r } { s < s _ { 0 } : = \frac { 1 } { 7 } \sqrt { \frac { N p - p + 1 } { \log ( 4 N / \varepsilon ) } } } \end{array}$ then, for sufficiently large $N$ , the GCN satisfies the condition of , +Theorem 2 with probability at least $1 - \varepsilon$ . + +Theorem 3 requires that an underlying graph is not extremely sparse. For example, suppose the node size is $N = 2 0 , 0 0 0$ , which is the approximately the maximum node size of datasets we use in experiments, and the edge probability is $p = \log N / N$ . Then, each node has the order of $N p \approx 4 . 3$ adjacent nodes. + +Under the condition of Theorem 3, the upper bound $s _ { 0 } \to \infty$ as $N \to \infty$ . It means that if the graph is sufficiently large and not extremely sparse, most GCNs suffer from the information loss. For the dependence on the edge probability $p$ , $s _ { 0 }$ is an increasing function of $p$ , which means the denser a graph is, the more quickly graph convolution operations mix signals on nodes and move them close to each other. + +Theorem 3 implies that graph NNs perform poorly on dense NNs. More aggressively, we can hypothesize that the sparsity of practically available graphs is one of the reasons for the success of graph NNs in node classification tasks. To confirm this hypothesis, we artificially add edges to citation networks to make them dense in the experiments and observe the failure of graph NNs as expected (see Section 6.3). + +# 6 EXPERIMENT + +# 6.1 SYNTHESIS DATA: ONE-STEP TRANSITION + +We numerically investigate how the transition $f ( X ) : = \sigma ( P X W )$ changes inputs using the vector field $V ( X ) : = { f ( X ) } - { X ^ { 4 } }$ . For this purpose, we set $N = 2$ , $M = 1$ , and $C = 1$ . Let $\lambda _ { 1 } \leq \lambda _ { 2 }$ be the eigenvalues of $P$ . We choose $W$ as $| \lambda _ { 2 } | ^ { - 1 } \le W < | \lambda _ { 1 } | ^ { - 1 }$ so that Theorem 1 is applicable but is not reduced to the trivial situation (see, Appendix E.2). We choose the eigenvector $\bar { \boldsymbol { e } } \in \mathbb { R } ^ { 2 }$ associated with $\lambda _ { 2 }$ in two ways as described below. See Appendix H.1 for the concrete values of $P$ , $e$ , and $W$ . Figure 1 shows the visualization of $V$ . First, we choose the non-negative eigenvector $e$ so that it satisfies Assumption 1 (Case 1). We see that the transition function $f$ uniformly decreases the distance from $\mathcal { M }$ . This is consistent with the consequence of Theorem 1. Next, we choose the eigenvector $\boldsymbol { e } = \left[ e _ { 1 } \quad e _ { 2 } \right] ^ { \intercal }$ such that the signs of $e _ { 1 }$ and $e _ { 2 }$ differ (Case 2), which violates Assumption 1. We see that $\mathcal { M }$ is not invariant under $f$ and $f$ does not uniformly decrease the distance from $\mathcal { M }$ . Therefore, we cannot remove the non-negativity assumption from Theorem 1. + +![](images/2aeca4d04f65609a1fa1584f41938b2120f8df09b7dfae3a4549ab38b22e533d.jpg) +Figure 2: The actual distances to the invariant space $\mathcal { M }$ and their upper bounds. Solid lines are the log relative distance defined by $y ( l ) = \log ( d _ { \mathcal { M } } ( \mathbf { \bar { { X } } } ^ { ( l ) } ) / d _ { \mathcal { M } } ( X ^ { ( 0 ) } ) )$ and dotted lines are upper bound $y ( l ) = l \log ( s \lambda )$ , where $X ^ { ( 0 ) }$ is the input signal and $X ^ { ( l ) }$ is the output of the $l$ -th layer. + +![](images/8900fa8d6997b22156aeea03d2008a13643ccde54ceb13a5e4d7e973496948c4.jpg) +Figure 3: Node prediction results on Noisy Cora. Left: Effect of the maximum singular values on weights on model performance. The horizontal dotted line indicates the chance rate $( 3 0 . 2 \% )$ . The error bar is the standard deviation of 3 trials. Right: Transition of maximum singular values during training. See Appendix I.3 for results using other datasets. Best view in color. + +# 6.2 SYNTHESIS DATA: DISTANCE TO INVARIANT SPACE + +We evaluate the distance to the invariant space $\mathcal { M }$ using synthesis data. We randomly generate an Erdos – R ˝ enyi graph, a GCN on it, and an input signal ´ $X ^ { ( 0 ) }$ . We compute the distance between the $l$ - th intermediate output $X ^ { ( l ) }$ and the invariant space $\mathcal { M }$ for various edge probability $p$ and maximum singular value s. Figure 2 plots the logarithm of the relative distance y(l) = log dM(X(l))dM(X(0)) with respect to the layer index $l$ . From Theorem 1, we know that it is upper bounded by $y ( l ) = l \log ( s \lambda )$ . We see that this bound well approximates the actual value when $s \lambda$ is small. On the other hand, it is loose for large $s \lambda$ . We leave tighter bounds for $d _ { \mathcal { M } }$ in such a case for future research. + +# 6.3 REAL DATA: EFFECT OF MAXIMUM SINGULAR VALUES ON PERFORMANCE + +Theorem 2 implies that if $s$ is smaller than the threshold $\lambda ^ { - 1 }$ , we cannot expect deep GCN to achieve good prediction accuracy. Conversely, if we can successfully train the model, $s$ should avoid the region $s \leq \lambda ^ { - 1 }$ . We empirically confirm these hypotheses using real datasets. + +We use Cora, CiteSeer, and PubMed (Sen et al., 2008), which are standard citation network datasets. The task is to classify the genre of papers using word occurrences and citation relationships. We regard each paper as a node and citation relationship as an edge. Due to space constraints, we focus on Cora in the main article. See Appendix H.3 and I.3 for the other datasets. The discussion in Section 5 implies that Theorem 2 can support a wide range of GCNs when the underlying graph is relatively dense. However, the citation networks are too sparse to examine the aforementioned hypotheses — Theorem 2 gives a non-trivial result only when $\stackrel { \cdot } { 1 } \leq s < \lambda ^ { - 1 } \approx 1 + 3 . 6 2 \times 1 0 ^ { - 3 }$ . To circumvent this, we make noisy versions of citation networks by randomly adding edges to graphs. Through this manipulation, we can increase the value of $\lambda ^ { - 1 }$ to 1.11. + +Figure 3 (left) shows the accuracy for the test dataset in terms of the maximum singular values and the number of graph convolution layers. We can observe that when GCNs whose maximum singular value $s$ is out of the region $s \ < \ \lambda ^ { - 1 }$ outperform those inside the region in almost all configurations. Furthermore, the accuracy of GCNs with $s ~ = ~ 1 0$ are better than those without normalization (unnormalized). Figure 3 (right) shows the transition of the maximum singular values of the weights during training when we use a three-layered GCN. We can observe that the maximum singular value $s$ does not shrink to the region $s \leq \lambda ^ { - 1 }$ . In addition, when the layer size is small and predictive accuracy is high, GCNs gradually increase $s$ from the initial value and avoid the region. In conclusion, the experiment results are consistent with the theorems. + +6.4 REAL DATA: EFFECT OF SIGNAL COMPONENT PERPENDICULAR TO INVARIANT SPACE + +We can decompose the output $X$ of a model as $X = X _ { 0 } + X _ { 1 }$ $( X _ { 0 } \in \mathcal { M } , \bar { X _ { 1 } } \in \mathcal { M } ^ { \perp } )$ . According to the theory, $X _ { 0 }$ has limited information for node classification. We hypothesize that the model emphasizes the perpendicular component $X _ { 1 }$ to perform good predictions. To quantitatively evaluate it, we define the relative magnitude of the perpendicular component of the output $X$ by $t ( \mathbf { \bar { \boldsymbol { X } } } ) : = \boldsymbol { X } _ { 1 } / \boldsymbol { X } _ { 0 } ^ { \mathbf { \bar { \alpha } } }$ . Figure 4 compares this quantity and the prediction accuracy on the noisy version of Cora (see Appendix I.4 for other datasets). We observe that these two quantities are correlated $R = 0 . 5 4 5 )$ ). If we remove GCNs have only one layer (corresponding to right points in the figure), the correlation coefficient is 0.827. This result does not contradict to the hypothesis above 5. + +![](images/ca029b92d1bfb0988aea15f768e174e2b67f0ad352d4ddba46a86c712446b225.jpg) +Figure 4: $\log t ( X )$ and prediction accuracy on Noisy Cora. + +# 7 DISCUSSION + +Applicability to Graph NNs on Sparse Graphs. We have theoretically and empirically shown that when the underlying graph is sufficiently dense and large, the threshold $\lambda ^ { - 1 }$ is large (Theorem 2 and Section 6.3), which means many graph CNNs are eligible. However, real-world graphs are not often dense, which means that Theorem 2 is applicable to very limited GCNs. In addition, CojaOghlan (2007) theoretically proved that if the expected average degree of $G _ { N , p }$ is bounded, the smallest positive eigenvalue of the normalized Laplacian of $G _ { N , p }$ is $o ( 1 )$ with high probability. The asymptotic behaviors of graph NNs on sparse graphs are left for future research. + +Remedy for Over-smoothing. Based on our theory, we can propose several techniques for mitigating the over-smoothing phenomena. One idea is to (randomly) sample edges in an underlying graph. The sparsity of practically available graphs could be a factor in the success of graph NNs. Assuming this hypothesis is correct, there is a possibility that we can relive the effect of over-smoothing by sparsification. Since we can never restore the information in pruned edges if we remove them permanently, random edge sampling could work better as FastGCN (Chen et al., 2018a) and GraphSAGE (Hamilton et al., 2017) do. Another idea is to scale node representations (i.e., intermediate or final output of graph NNs) appropriately so that they keep away from the invariant space $\mathcal { M }$ . Our proposed weight scaling mechanism takes this strategy. Recently, Zhao & Akoglu (2020) has proposed PairNorm to alleviate the over-smoothing phenomena. Although the scaling target is different – they rescaled signals whereas we normalized weights – theirs and ours have similar spirits. + +Graph NNs with Large Weights. Our theory suggests that the maximum singular values of weights in a GCN should not be smaller than a threshold $\bar { \lambda } ^ { - 1 }$ because it suffers from information loss for node classification. On the other hand, if the scale of weights are very large, the model complexity of the function class represented by graph NNs increases, which may cause large generalization errors. Therefore, from a statistical learning theory perspective, we conjecture that the graph NNs with too-large weights perform poorly, too. A trade-off should exist between the expressive power and model complexity and there should be a “sweet spot” on the weight scale that balances the two. + +Relation to Double Descent Phenomena. Belkin et al. (2019) pointed out that modern deep models often have double descent risk curves: when a model is under-parameterized, a classical biasvariance trade-off occurs. However, once the model has a large capacity and perfectly fits the training data, the test error decreases as we increase the number of parameters. To the best of our knowledge, no literature reported the double descent phenomena for graph NNs (it is consistent with the picture of the classical U-shaped risk curve in the previous paragraph). It is known that double descent phenomena do not occur in some situations, especially depending on regularization types. For example, while Belkin et al. (2019) employed the interpolating hypothesis with the minimum norm, Mei & Montanari (2019) found that the double descent was alleviated or disappeared when they used Ridge-type regularization techniques. Therefore, one can hypothesize the over-smoothing is a cause or consequence of regularization that is more like a Ridge-type rather than minimum-norm inductive bias. + +Limitations in Graph NN Architectures. Our analysis is limited to graph NNs with the ReLU activation function because we implicitly use the property that ReLU is a projection onto the cone $\{ X \geq 0 \}$ (Appendix A, Lemma 3). This fact enables the ReLU function to get along with the nonnegativity of eigenvectors associated with the largest eigenvalues. Therefore, it is far from trivial to extend our results to other activation functions such as the sigmoid function or Leaky ReLU (Maas et al., 2013). Another point is that our formulation considers the update operation (Gilmer et al., 2017) of graph NNs only and does not take readout operations into account. In particular, we cannot directly apply our theory to graph classification tasks in which each sample is a graph. + +Over-smoothing of Residual GNNs. Considering the correspondence of graph NNs and Markov processes (see Appendix F), one can imagine that residual links do not contribute to alleviating the over-smoothing phenomena because adding residual connections to a graph NN corresponds to converting a Markov process to its lazy version. When a Markov process converges to a stable distribution, the corresponding lazy process also converges eventually under certain conditions. It implies that residual links might not be helpful. However, Li et al. (2019) reported that graph NNs with as many as 56 layers performed well if they added residual connections. Considering that, the situation could be more complicated than our intuitions. The analysis of the role of residual connections in graph NNs is a promising direction for future research. + +# 8 CONCLUSION + +In this paper, to understand the empirically observed phenomena that deep non-linear graph NNs do not perform well, we analyzed their asymptotic behaviors by interpreting them as a dynamical system that includes GCN and Markov process as special cases. We gave theoretical conditions under which GCNs suffer from the information loss in the limit of infinite layers. Our theory directly related the expressive power of graph NNs and topological information of the underlying graphs via spectra of the Laplacian. It enabled us to leverage spectral and random graph theory to analyze the expressive power of graph NNs. To demonstrate this, we considered GCN on the Erdos – R ˝ enyi ´ graph as an example and showed that when the underlying graph is sufficiently dense and large, a wide range of GCNs on the graph suffer from information loss. Based on the theory, we gave a principled guideline for how to determine the scale of weights of graph NNs and empirically showed that the weight normalization implied by our theory performed well in real datasets. One promising direction of research is to analyze the optimization and statistical properties such as the generalization power (Verma & Zhang, 2019) of graph NNs via spectral and random graph theories. + +# ACKNOWLEDGMENTS + +We thank Katsuhiko Ishiguro for providing a part of code for the experiments, Kohei Hayashi and Haru Negami Oono for giving us feedback and comments on the draft, Keyulu Xu and anonymous reviewers for fruitful discussions via OpenReview, and Ryuta Osawa for pointing out errors and suggesting improvements of the paper. TS was partially supported by JSPS KAKENHI (15H05707, 18K19793, and 18H03201), Japan Digital Design, and JST CREST. + +# REFERENCES + +Takuya Akiba, Shotaro Sano, Toshihiko Yanase, Takeru Ohta, and Masanori Koyama. Optuna: A next-generation hyperparameter optimization framework. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’19, pp. 2623–2631, New York, NY, USA, 2019. ACM. ISBN 978-1-4503-6201-6. doi: 10.1145/3292500. 3330701. + +Dana Angluin and Leslie G Valiant. Fast probabilistic algorithms for hamiltonian circuits and matchings. Journal of Computer and system Sciences, 18(2):155–193, 1979. + +Andrew R Barron. Universal approximation bounds for superpositions of a sigmoidal function. IEEE Transactions on Information theory, 39(3):930–945, 1993. + +Peter W Battaglia, Jessica B Hamrick, Victor Bapst, Alvaro Sanchez-Gonzalez, Vinicius Zambaldi, Mateusz Malinowski, Andrea Tacchetti, David Raposo, Adam Santoro, Ryan Faulkner, et al. Relational inductive biases, deep learning, and graph networks. arXiv preprint arXiv:1806.01261, 2018. + +Mikhail Belkin, Daniel Hsu, Siyuan Ma, and Soumik Mandal. Reconciling modern machinelearning practice and the classical bias–variance trade-off. Proceedings of the National Academy of Sciences, 116(32):15849–15854, 2019. + +James S. Bergstra, Remi Bardenet, Yoshua Bengio, and Bal ´ azs K ´ egl. Algorithms for hyper- ´ parameter optimization. In Advances in Neural Information Processing Systems 24, pp. 2546– 2554. Curran Associates, Inc., 2011. + +Jie Chen, Tengfei Ma, and Cao Xiao. FastGCN: Fast learning with graph convolutional networks via importance sampling. In International Conference on Learning Representations, 2018a. URL https://openreview.net/forum?id $\underline { { \underline { { \mathbf { \Pi } } } } } =$ rytstxWAW. + +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 Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 873–882. PMLR, 10–15 Jul 2018b. + +Anna Choromanska, Yann LeCun, and Gerard Ben Arous. Open problem: The landscape of the ´ loss surfaces of multilayer networks. In Peter Grunwald, Elad Hazan, and Satyen Kale (eds.), ¨ Proceedings of The 28th Conference on Learning Theory, volume 40 of Proceedings of Machine Learning Research, pp. 1756–1760. PMLR, 2015. + +Fan Chung and Linyuan Lu. Connected components in random graphs with given expected degree sequences. Annals of combinatorics, 6(2):125–145, 2002. + +Fan Chung and Mary Radcliffe. On the spectra of general random graphs. the electronic journal of combinatorics, 18(1):215, 2011. + +Fan Chung, Linyuan Lu, and Van Vu. The spectra of random graphs with given expected degrees. Internet Mathematics, 1(3):257–275, 2004. + +Fan RK Chung and Fan Chung Graham. Spectral graph theory. Number 92 in CBMS Regional Conference Series in Mathematics. American Mathematical Soc., 1997. + +Amin Coja-Oghlan. On the laplacian eigenvalues of $G _ { n , p }$ . Combinatorics, Probability and Computing, 16(6):923–946, 2007. + +George Cybenko. Approximation by superpositions of a sigmoidal function. Mathematics of control, signals and systems, 2(4):303–314, 1989. + +Michael Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks¨ on graphs with fast localized spectral filtering. In Advances in Neural Information Processing Systems 29, pp. 3844–3852. Curran Associates, Inc., 2016. + +David K Duvenaud, Dougal Maclaurin, Jorge Iparraguirre, Rafael Bombarell, Timothy Hirzel, Alan Aspuru-Guzik, and Ryan P Adams. Convolutional networks on graphs for learning molecular fingerprints. In Advances in Neural Information Processing Systems 28, pp. 2224–2232. Curran Associates, Inc., 2015. + +Paul Erdos and Alfr ¨ ed R ´ enyi. On random graphs I. ´ Publicationes Mathematicae (Debrecen), 6: 290–297, 1959. + +Edgar N Gilbert. Random graphs. The Annals of Mathematical Statistics, 30(4):1141–1144, 1959. + +C Lee Giles, Kurt D Bollacker, and Steve Lawrence. Citeseer: an automatic citation indexing system. In Proceedings of the third ACM conference on Digital libraries, pp. 89–98. ACM, 1998. + +Justin Gilmer, Samuel S. Schoenholz, Patrick F. Riley, Oriol Vinyals, and George E. Dahl. Neural message passing for quantum chemistry. In Proceedings of the 34th International Conference on Machine Learning, volume 70 of Proceedings of Machine Learning Research, pp. 1263–1272. PMLR, 2017. + +Torben Hagerup and Christine Rub. A guided tour of Chernoff bounds. ¨ Information processing letters, 33(6):305–308, 1990. + +Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in Neural Information Processing Systems 30, pp. 1024–1034. Curran Associates, Inc., 2017. + +Mikael Henaff, Joan Bruna, and Yann LeCun. Deep convolutional networks on graph-structured data. arXiv preprint arXiv:1506.05163, 2015. + +Kurt Hornik. Approximation capabilities of multilayer feedforward networks. Neural networks, 4 (2):251–257, 1991. + +Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are universal approximators. Neural networks, 2(5):359–366, 1989. + +CD Johnson. Stabilization of linear dynamical systems with respect to arbitrary linear subspaces. Journal of Mathematical Analysis and Applications, 44(1):175–186, 1973. + +Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International Conference on Learning Representations, 2015. + +Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations, 2017. + +Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. ImageNet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems 25, pp. 1097– 1105. Curran Associates, Inc., 2012. + +Yann A LeCun, Leon Bottou, Genevieve B Orr, and Klaus-Robert M ´ uller. Efficient backprop. In ¨ Neural networks: Tricks of the trade, pp. 9–48. Springer, 2012. + +Guohao Li, Matthias Muller, Ali Thabet, and Bernard Ghanem. Deepgcns: Can gcns go as deep as cnns? In Proceedings of the IEEE International Conference on Computer Vision, pp. 9267–9276, 2019. + +Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for semi-supervised learning. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018. + +Yujia Li, Richard Zemel, and Marc Brockschmidt. Gated graph sequence neural networks. In International Conference on Learning Representations, 2016. + +Sitao Luan, Mingde Zhao, Xiao-Wen Chang, and Doina Precup. Break the ceiling: Stronger multiscale deep graph convolutional networks. In Advances in Neural Information Processing Systems 32, pp. 10943–10953. Curran Associates, Inc., 2019. + +Andrew L. Maas, Awni Y. Hannun, and Andrew Y. Ng. Rectifier nonlinearities improve neural network acoustic models. In in ICML Workshop on Deep Learning for Audio, Speech and Language Processing, 2013. + +Andrew Kachites McCallum, Kamal Nigam, Jason Rennie, and Kristie Seymore. Automating the construction of internet portals with machine learning. Information Retrieval, 3(2):127–163, 2000. + +Song Mei and Andrea Montanari. The generalization error of random features regression: Precise asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019. + +Carl D Meyer. Matrix analysis and applied linear algebra, volume 71. Siam, 2000. + +Hrushikesh Narhar Mhaskar. Approximation properties of a multilayered feedforward artificial neural network. Advances in Computational Mathematics, 1(1):61–80, 1993. + +Hai Nguyen, Shinichi Maeda, and Kenta Oono. Semi-supervised learning of hierarchical representations of molecules using neural message passing. arXiv preprint arXiv:1711.10168, 2017. + +James R Norris. Markov chains. Number 2 in Cambridge Series in Statistical and Probabilistic Mathematics. Cambridge university press, 1998. + +Hoang NT and Takanori Maehara. Revisiting graph neural networks: All we have is low-pass filters. arXiv preprint arXiv:1905.09550, 2019. + +Kenta Oono and Taiji Suzuki. Approximation and non-parametric estimation of ResNet-type convolutional neural networks. arXiv preprint arXiv:1903.10047, 2019. + +Sinno Jialin Pan and Qiang Yang. A survey on transfer learning. IEEE Transactions on knowledge and data engineering, 22(10):1345–1359, 2010. + +Philipp Petersen and Felix Voigtlaender. Equivalence of approximation by convolutional neural networks and fully-connected networks. arXiv preprint arXiv:1809.00973, 2018. + +Franco Scarselli, Marco Gori, Ah Chung Tsoi, Markus Hagenbuchner, and Gabriele Monfardini. The graph neural network model. IEEE Transactions on Neural Networks, 20(1):61–80, 2009. + +Michael Schlichtkrull, Thomas N Kipf, Peter Bloem, Rianne Van Den Berg, Ivan Titov, and Max Welling. Modeling relational data with graph convolutional networks. In European Semantic Web Conference, pp. 593–607. Springer, 2018. + +Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad. Collective classification in network data. AI magazine, 29(3):93–93, 2008. + +Sho Sonoda and Noboru Murata. Neural network with unbounded activation functions is universal approximator. Applied and Computational Harmonic Analysis, 43(2):233–268, 2017. + +Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: A simple way to prevent neural networks from overfitting. Journal of Machine Learning Research, 15:1929–1958, 2014. + +Matus Telgarsky. Benefits of depth in neural networks. In 29th Annual Conference on Learning Theory, volume 49 of Proceedings of Machine Learning Research, pp. 1517–1539. PMLR, 23– 26 Jun 2016. + +Seiya Tokui, Kenta Oono, Shohei Hido, and Justin Clayton. Chainer: a next-generation open source framework for deep learning. In Proceedings of Workshop on Machine Learning Systems (LearningSys) in The Twenty-ninth Annual Conference on Neural Information Processing Systems (NIPS), 2015. + +Seiya Tokui, Ryosuke Okuta, Takuya Akiba, Yusuke Niitani, Toru Ogawa, Shunta Saito, Shuji Suzuki, Kota Uenishi, Brian Vogel, and Hiroyuki Yamazaki Vincent. Chainer: A deep learning framework for accelerating the research cycle. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, pp. 2002–2011. ACM, 2019. + +Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Li ´ o, and Yoshua \` Bengio. Graph attention networks. In International Conference on Learning Representations, 2018. + +Saurabh Verma and Zhi-Li Zhang. Stability and generalization of graph convolutional neural networks. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, 2019. + +Boris Weisfeiler and Lehman A.A. A reduction of a graph to a canonical form and an algebra arising during this reduction. Nauchno-Technicheskaya Informatsia, 2(9):12–16, 1968. + +Felix Wu, Tianyi Zhang, Amauri Holanda de Souza Jr, Christopher Fifty, Tao Yu, and Kilian Q Weinberger. Simplifying graph convolutional networks. arXiv preprint arXiv:1902.07153, 2019a. + +Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S Yu. A comprehensive survey on graph neural networks. arXiv preprint arXiv:1901.00596, 2019b. + +Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 5453–5462. PMLR, 2018. + +Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? In International Conference on Learning Representations, 2019. + +Dmitry Yarotsky. Error bounds for approximations with deep ReLU networks. Neural Networks, 94:103–114, 2017. + +Jiawei Zhang. Gresnet: Graph residuals for reviving deep graph neural nets from suspended animation. arXiv preprint arXiv:1909.05729, 2019. + +Lingxiao Zhao and Leman Akoglu. Pairnorm: Tackling oversmoothing in $\{ \mathrm { g n n } \} \mathrm { s }$ . In International Conference on Learning Representations, 2020. URL https://openreview.net/forum? id $=$ rkecl1rtwB. + +Ding-Xuan Zhou. Universality of deep convolutional neural networks. arXiv preprint arXiv:1805.10769, 2018. + +Pan Zhou and Jiashi Feng. Understanding generalization and optimization performance of deep CNNs. In Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 5960–5969. PMLR, 2018. + +# A PROOF OF THEOREM 1 + +As we wrote in the main article, it is enough to show the following lemmas (definition of miscellaneous variables are as in Section 3.2). Remember that $\lambda = \operatorname* { s u p } _ { n \in [ N - M ] } | \lambda _ { n } |$ and $s _ { l h }$ is the maximum singular value of $W _ { l h }$ + +Lemma 1. For any $X \in \mathbb { R } ^ { N \times C }$ , we have $d _ { \mathcal { M } } ( P X ) \leq \lambda d _ { \mathcal { M } } ( X )$ . + +Lemma 2. For any $X \in \mathbb { R } ^ { N \times C }$ , we have $d _ { \mathcal { M } } ( X W _ { l h } ) \leq s _ { l h } d _ { \mathcal { M } } ( X )$ . + +Lemma 3. For any $X \in \mathbb { R } ^ { N \times C }$ , we have $d _ { \mathcal { M } } ( \sigma ( X ) ) \leq d _ { \mathcal { M } } ( X )$ + +Proof of Lemma $^ { l }$ . Since $P$ is a symmetric linear operator on $U ^ { \perp }$ , we can choose the orthonormal basis $( e _ { m } ) _ { m = M + 1 , \dots , N }$ of $U ^ { \perp }$ consisting of the eigenvalue of $P | _ { U ^ { \perp } }$ . Let $\lambda _ { m }$ be the eigenvalue of $P$ to which $e _ { m }$ is associated $( m = M + 1 , \ldots , N )$ . Note that since the operator norm of $P | _ { U ^ { \perp } }$ is $\lambda$ , we have $| \lambda _ { m } | \leq \lambda$ for all $m = M + 1 , \ldots , N$ . Since $( e _ { m } ) _ { m \in [ N ] }$ forms the orthonormal basis of $\mathbb { R } ^ { N }$ , we can uniquely write $X \in \mathbb { R } ^ { N \times C }$ as $\begin{array} { r } { X = \sum _ { m = 1 } ^ { N } e _ { m } \otimes w _ { m } } \end{array}$ for some $w _ { m } \in \mathbb { R } ^ { C }$ . Then, we have $\begin{array} { r } { d _ { \mathcal { M } } ^ { 2 } ( X ) = \sum _ { m = M + 1 } ^ { N } \| w _ { m } \| ^ { 2 } } \end{array}$ where $\| \cdot \|$ m=1 m m m is the 2-norm of a vector. On the other hand, we have + +$$ +\begin{array} { l } { { \displaystyle P X = \sum _ { m = 1 } ^ { N } P e _ { m } \otimes w _ { m } } } \\ { ~ } \\ { { \displaystyle ~ = \sum _ { m = 1 } ^ { M } P e _ { m } \otimes w _ { m } + \sum _ { m = M + 1 } ^ { N } P e _ { m } \otimes w _ { m } } } \\ { { \displaystyle ~ = \sum _ { m = 1 } ^ { M } P e _ { m } \otimes w _ { m } + \sum _ { m = M + 1 } ^ { N } e _ { m } \otimes \left( \lambda _ { m } w _ { m } \right) } } \end{array} +$$ + +$U$ nvariant under . Therefore, w $P$ , forhave $m \in [ M ]$ $P e _ { m }$ as a linear combination ofThen, we obtain the desired $e _ { n } ( n \in [ M ] )$ $\begin{array} { r } { d _ { \mathcal { M } } ^ { 2 } ( P X ) = \sum _ { m = M + 1 } ^ { N } \| \lambda _ { m } w _ { m } \| ^ { 2 } } \end{array}$ + +$$ +\begin{array} { r l r } { { d _ { { \mathcal M } } ^ { 2 } ( P X ) = \sum _ { m = M + 1 } ^ { N } \| \lambda _ { m } w _ { m } \| ^ { 2 } } } \\ & { } & \\ & { } & { \leq \lambda ^ { 2 } \sum _ { m = M + 1 } ^ { N } \| w _ { m } \| ^ { 2 } } \\ & { } & { \leq \lambda ^ { 2 } \displaystyle \sum _ { m = M + 1 } ^ { N } \| w _ { m } \| ^ { 2 } } \\ & { } & \\ & { } & { = \lambda ^ { 2 } d _ { { \mathcal M } } ^ { 2 } ( X ) . } \end{array} +$$ + +Proof of Lemma 2. Using the same decomposition of $X$ as the proof in Lemma 1, we have + +$$ +\begin{array} { r l r } { { X W _ { l h } = \sum _ { m = 1 } ^ { N } e _ { m } \otimes ( W _ { l h } ^ { \top } w _ { m } ) } } \\ & { } & { = \sum _ { m = 1 } ^ { M } e _ { m } \otimes ( W _ { l h } ^ { \top } w _ { m } ) + \sum _ { m = M + 1 } ^ { N } e _ { m } \otimes ( W _ { l h } ^ { \top } w _ { m } ) . } \end{array} +$$ + +Therefore, we have + +$$ +\begin{array} { r l r } { { d _ { \mathcal { M } } ^ { 2 } ( X W _ { l h } ) = \sum _ { m = M + 1 } ^ { N } \| W _ { l h } ^ { \top } w _ { m } \| ^ { 2 } } } \\ & { } & { \leq s _ { l h } ^ { 2 } \sum _ { m = M + 1 } ^ { N } \| w _ { m } \| ^ { 2 } } \\ & { } & { = s _ { l h } ^ { 2 } d _ { \mathcal { M } } ^ { 2 } ( X ) . } \end{array} +$$ + +Proof of Lemma 3. We choose $( e _ { m } ) _ { m = N - M + 1 , \dots , N }$ as in the proof of Lemma 1. We denote $X =$ $( X _ { n c } ) _ { n \in [ N ] , c \in [ C ] }$ and $e _ { n } = ( e _ { m n } ) _ { m \in [ N ] }$ , respectively. Let $( e _ { c } ^ { \prime } ) _ { c \in [ C ] }$ be the standard basis of $\mathbb { R } ^ { C }$ . Then, $( e _ { n } \otimes e _ { c } ^ { \prime } ) _ { n \in [ N ] , c \in [ C ] }$ is the orthonormal basis of $\mathbb { R } ^ { N \times C }$ , endowed with the standard inner product as a Euclid space. Therefore, we can decompose $X$ as $\begin{array} { r } { X = \sum _ { n = 1 } ^ { N } \sum _ { c = 1 } ^ { C } a _ { n c } e _ { n } \otimes e _ { c } ^ { \prime } } \end{array}$ where $\begin{array} { r } { a _ { n c } = \left. X , e _ { n } \otimes e _ { c } ^ { \prime } \right. = \sum _ { m = 1 } ^ { N } X _ { m c } e _ { m n } } \end{array}$ . Then, we have $\begin{array} { r } { d _ { \mathcal { M } } ^ { 2 } ( X ) = \sum _ { n = M + 1 } ^ { N } \| \sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { \prime } \| ^ { 2 } } \end{array}$ + +which is further transformed as + +$$ +\begin{array} { l } { \displaystyle d _ { M } ^ { 2 } ( X ) = \sum _ { n = M + 1 } ^ { N } \left\| \sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { t } \right\| ^ { 2 } } \\ { = \displaystyle \sum _ { n = M + 1 } ^ { N } \sum _ { c = 1 } ^ { C } a _ { n c } ^ { 2 } } \\ { = \displaystyle \sum _ { c = 1 } ^ { C } \left( \sum _ { n = 1 } ^ { N } a _ { n c } ^ { 2 } - \sum _ { n = 1 } ^ { M } a _ { n c } ^ { 2 } \right) } \\ { = \displaystyle \sum _ { c = 1 } ^ { C } \left( \| X _ { \mathrm { - c } } \| ^ { 2 } - \sum _ { n = 1 } ^ { M } ( X _ { \mathrm { - c } } , e _ { n } ) ^ { 2 } \right) , } \end{array} +$$ + +where $X _ { \cdot c }$ is the $c$ -th column vector of $X$ . Similarly, we have + +$$ +d _ { \mathcal { M } } ^ { 2 } ( \sigma ( X ) ) = \sum _ { c = 1 } ^ { C } \left( \| X _ { \cdot c } ^ { + } \| ^ { 2 } - \sum _ { n = 1 } ^ { M } \langle X _ { \cdot c } ^ { + } , e _ { n } \rangle ^ { 2 } \right) , +$$ + +where we denote $\sigma ( X ) = ( X _ { n c } ^ { + } ) _ { n \in [ N ] , c \in [ C ] }$ in shorthand. Therefore, the inequality follow from the following lemma. □ + +fying wher Lemma 4. Let $v _ { m } \geq 0$ $\boldsymbol { x } \in \mathbb { R } ^ { N }$ $m \in [ M ]$ and $v _ { 1 } , \hdots , v _ { M } \in \mathbb { R } ^ { N }$ en, we have . $\begin{array} { r } { \| \ b x \| ^ { 2 } - \sum _ { m = 1 } ^ { M } \langle \ b x , \ b v _ { m } \rangle ^ { 2 } \geq \| \ b x ^ { + } \| ^ { 2 } - \sum _ { m = 1 } ^ { M } \langle \ b x ^ { + } , \ b v _ { m } \rangle ^ { 2 } } \end{array}$ be orthonormal vectors (i.e., $\langle v _ { m } , v _ { n } \rangle = \delta _ { m n } )$ satis$x ^ { + } : = \operatorname* { m a x } ( x , 0 )$ $x \in \mathbb { R }$ + +roof. he value $\begin{array} { r } { \| y \| ^ { 2 } - \sum _ { m = 1 } ^ { M } \langle y , u _ { m } \rangle ^ { 2 } } \end{array}$ is invariant under simultaneous coordinate pe mutation of $y$ $u _ { m }$ $x$ $x _ { 1 } \leq \ldots \leq x _ { L } < 0 \leq x _ { L + 1 } \leq \cdot \cdot \cdot \leq x _ { N }$ for some $L \leq N$ . Then, we have + +$$ +\| x \| ^ { 2 } - \| x ^ { + } \| ^ { 2 } = \sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } . +$$ + +When $L = 0$ , the sum in the right hand side is treated as 0. On the other hand, writing as $v _ { m } =$ $( v _ { n m } ) _ { n \in [ N ] }$ , direct calculation shows + +$$ +\sum _ { m = 1 } ^ { M } \langle x , v _ { m } \rangle ^ { 2 } - \langle x ^ { + } , v _ { m } \rangle ^ { 2 } = \sum _ { m = 1 } ^ { M } \left( \left( \sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \right) ^ { 2 } - 2 \sum _ { n = 1 } ^ { L } \sum _ { l = L + 1 } ^ { N } x _ { n } x _ { l } v _ { n m } v _ { l m } \right) . +$$ + +Let $I _ { m } : = \{ n \in [ N ] \mid v _ { n m } > 0 \}$ be the support of $v _ { m }$ for $m \in [ M ]$ . We note that if $m \neq m ^ { \prime } \in [ M ]$ , we have ${ \cal I } _ { m } \cap { \cal I } _ { m ^ { \prime } } = \emptyset$ since if there existed $n \in I _ { m } \cap I _ { m ^ { \prime } }$ , we have + +$$ +0 = \left. v _ { m } , v _ { m ^ { \prime } } \right. \geq v _ { n m } v _ { n m ^ { \prime } } > 0 , +$$ + +which is contradictory. Therefore, + +$$ +\begin{array} { r l r } { \displaystyle \sum _ { m = 1 } ^ { N } \left( \displaystyle \sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \right) ^ { 2 } = \displaystyle \sum _ { m = 1 } ^ { N } \left( \displaystyle \sum _ { n \in L _ { I ^ { n } } \cap [ L ] } x _ { n } v _ { n m } \right) ^ { 2 } } & { } & \\ { \displaystyle } & { \leq \displaystyle \sum _ { m = 1 } ^ { N } \left( \displaystyle \sum _ { n \in L _ { I ^ { n } } \cap [ L ] } x _ { n } ^ { 2 } \right) \left( \displaystyle \sum _ { n \in L _ { I ^ { n } } \cap [ L ] } x _ { n m } ^ { 2 } \right) } & { \displaystyle ( \cdot \cdot \mathrm { C a u c h y - S c h w a r z ~ i n e q u a l i t y } ) } \\ { \displaystyle } & { \displaystyle \leq \displaystyle \sum _ { m = 1 } ^ { N } \left( \displaystyle \sum _ { n \in L _ { I ^ { n } } \cap [ L ] } x _ { n } ^ { 2 } \right) } & { \displaystyle ( \cdot \cdot | v _ { m } | ^ { 2 } = 1 ) } \\ { \displaystyle } & { \displaystyle \leq \displaystyle \sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } . } \end{array} +$$ + +We used the fact that $I _ { m }$ ’s are disjoint and $v _ { n m } = 0$ if $n \not \in \cup _ { m } I _ { m }$ in the first equality above. Further, we have $x _ { n } x _ { l } v _ { n m } v _ { l m } \leq 0$ for $1 \le n \le L$ and $L + 1 \le l \le N$ by the definition of $L$ and non-negativity of $v _ { m }$ . By combining (1), (2), and (3), we have + +$$ +\sum _ { m = 1 } ^ { M } \langle x , v _ { m } \rangle ^ { 2 } - \langle x ^ { + } , v _ { m } \rangle ^ { 2 } \leq \sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } = \| x \| ^ { 2 } - \| x ^ { + } \| ^ { 2 } . +$$ + +Proof of Theorem $^ { l }$ . By Lemma 1, 2, and 3, we have + +$$ +\begin{array} { r l } { d _ { M } ( f _ { l } ( X ) ) = d _ { M } ( \underbrace { \sigma \langle \cdot \cdot \sigma ( \sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \cdot \cdot \cdot \cdot W _ { l H _ { 1 } } \rangle } _ { H \mathrm { ~ i n e s } } ) } & { } \\ & { \leq d _ { M } ( \underbrace { \sigma \langle \cdot \cdot \sigma ( \sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \cdot \cdot \cdot \cdot \cdot \cdot } _ { H \mathrm { ~ i n e s } } ) } \\ & { \leq s _ { i H _ { 1 } - 1 } d _ { M } ( \underbrace { \sigma \langle \cdot \cdot \sigma ( \sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \cdot \cdot \cdot \cdot \cdot } _ { H - 1 \mathrm { ~ i n e s } } ) } \\ & { \cdots } \\ & { \leq \displaystyle \left( \prod _ { i = 1 } ^ { H _ { l } } s _ { i h } \right) d _ { M } ( P X ) } \\ & { \leq s _ { i d _ { M } ( P X ) } } \\ & { \leq s _ { i H _ { 1 } } d _ { M } ( X ) . } \end{array} +$$ + +# B PROOF OF PROPOSITION 1 + +Proof. Let ${ \tilde { \mu } } _ { 1 } \leq \dots \leq { \tilde { \mu } } _ { N }$ be the eigenvalue of the augmented normalized Laplacian $\tilde { \Delta }$ , sorted in ascending order. Since $P = I _ { N } - \tilde { \Delta }$ , it is enough to show $\tilde { \mu } _ { 1 } = \cdot \cdot \cdot = \tilde { \mu } _ { M } = 0$ , ${ \tilde { \mu } } _ { M + 1 } > 0$ , and $\tilde { \mu } _ { N } < 2$ . For the first two, the statements are equivalent to that $\tilde { \Delta }$ is positive semi-definite and that the multiplicity of the eigenvalue 0 is same as the number of connected components 6. This is well-known for Laplacian or its normalized version (see, e.g., Chung & Graham (1997)) and the proof for $\tilde { \Delta }$ is similar. By direct calculation, we have + +$$ +x ^ { \top } \tilde { \Delta } x = \frac { 1 } { 2 } \sum _ { i , j = 1 } ^ { N } a _ { i j } \left( \frac { x _ { i } } { \sqrt { d _ { i } + 1 } } - \frac { x _ { j } } { \sqrt { d _ { j } + 1 } } \right) ^ { 2 } +$$ + +for any $x = \lbrack x _ { 1 } \quad \cdot \cdot \cdot \quad x _ { N } \rbrack ^ { \top } \in \mathbb { R } ^ { N }$ . Therefore, $\tilde { \Delta }$ is positive semi-definite and hence $\tilde { \mu } _ { 1 } \geq 0$ + +Suppose temporally that $G$ is connected. If $\boldsymbol { x } \in \mathbb { R } ^ { N }$ is an eigenvector associated to 0, then, by the aformentioned calculation, $\textstyle { \frac { x _ { i } } { \sqrt { d _ { i } + 1 } } }$ and $\textstyle { \frac { x _ { j } } { \sqrt { d _ { j } + 1 } } }$ must be same for all pairs $( i , j )$ such that $a _ { i j } >$ 0. However, since $G$ is connected, $\textstyle { \frac { x _ { i } } { \sqrt { d _ { i } + 1 } } }$ must be same value for all $i \in [ N ]$ . That means the multiplicity of the eigenvalue 0 is 1 and any eigenvector associated to 0 must be proportional to ${ \tilde { D } } ^ { \frac { 1 } { 2 } } \mathbf { 1 }$ . Now, suppose $G$ has $M$ connected components $V _ { 1 } , \dots , V _ { M }$ . Let $\tilde { \Delta } _ { m }$ be the augmented normalized Laplacians corresponding to each connected component $V _ { m }$ for $m \in \ [ M ]$ . By the aformentioned discussion, $\tilde { \Delta } _ { m }$ has the eigenvalue 0 with multiplicity 1. Since $\tilde { \Delta }$ is the direct sum of $\tilde { \Delta } _ { m } ^ { \prime } s$ , the eigenvalue of $\tilde { \Delta }$ is the union of those for $\tilde { \Delta } _ { m }$ ’s. Therefore, $\tilde { \Delta }$ has the eigenvalue 0 with multiplicity $M$ and $e _ { m } = \tilde { D } ^ { \frac { 1 } { 2 } } \mathbf { 1 } _ { m }$ ’s are the orthogonal basis of the eigenspace. + +Finally, we prove $\tilde { \mu } _ { N \mathrm { ~ } } < \mathrm { ~ 2 ~ }$ . Let $\mu _ { N }$ be the largest eigenvalue of the normalized Laplacian $\Delta =$ $D ^ { - \frac { 1 } { 2 } } \bar { ( } D - \bar { A } ) D ^ { - \frac { 1 } { 2 } }$ , where $D ^ { - \frac { 1 } { 2 } } \in \mathbb { R } ^ { N \times N }$ is the diagonal matrix defined by + +$$ +D _ { i i } ^ { - \frac { 1 } { 2 } } = \left\{ \begin{array} { l l } { \deg ( i ) ^ { - \frac { 1 } { 2 } } } & { ( \mathrm { i f } \deg ( i ) \neq 0 ) } \\ { 0 } & { ( \mathrm { i f } \deg ( i ) = 0 ) } \end{array} \right. . +$$ + +Note that $D ^ { - \frac { 1 } { 2 } } D ^ { \frac { 1 } { 2 } }$ nor $D ^ { \frac { 1 } { 2 } } D ^ { - { \frac { 1 } { 2 } } }$ are not equal to the identity matrix $I _ { N }$ in general. However, we have + +$$ +L = D ^ { \frac { 1 } { 2 } } D ^ { - \frac { 1 } { 2 } } L D ^ { - \frac { 1 } { 2 } } D ^ { \frac { 1 } { 2 } } +$$ + +where $L = D - A$ is the (unnormalized) Laplacian. Therefore, we have + +$$ +\begin{array} { r l } { \alpha _ { 1 } } & { \gamma _ { 2 } \geq \frac { \alpha _ { 2 } ( \lambda _ { 1 } ) } { \alpha _ { 1 } } } \\ { = } & { \gamma _ { 1 } \geq \alpha _ { 2 } \leq \alpha _ { 1 } } \\ & { - \gamma _ { 2 } \geq \alpha _ { 2 } \leq \alpha _ { 2 } \leq \alpha _ { 2 } \leq \alpha _ { 2 } } \\ & { - \gamma _ { 3 } \geq \alpha _ { 3 } } \\ { = } & { \gamma _ { 2 } \geq \alpha _ { 3 } \leq \alpha _ { 3 } \leq \alpha _ { 4 } } \\ & { - \gamma _ { 2 } \geq \alpha _ { 4 } \leq \alpha _ { 4 } } \\ & { - \gamma _ { 3 } \geq \alpha _ { 4 } \leq \alpha _ { 5 } \leq \alpha _ { 4 } } \\ & { - \gamma _ { 5 } \geq \alpha _ { 5 } \leq \alpha _ { 5 } \leq \alpha _ { 4 } } \\ & { - \gamma _ { 6 } \geq \alpha _ { 6 } \leq \alpha _ { 5 } \leq \alpha _ { 5 } } \\ & { - \alpha _ { 5 } \leq \alpha _ { 5 } \leq \alpha _ { 5 } \leq \alpha _ { 6 } } \\ & { \gamma _ { 6 } \geq \alpha _ { 5 } \leq \alpha _ { 7 } \leq \alpha _ { 6 } \leq \alpha _ { 7 } \leq \alpha _ { 6 } \leq \alpha _ { 7 } \leq \alpha _ { 7 } \leq \alpha _ { 8 } } \\ & { \gamma _ { 7 } \geq \alpha _ { 6 } \leq \alpha _ { 7 } \leq \alpha _ { 7 } \leq \alpha _ { 8 } } \\ & { \alpha _ { 1 } \leq \alpha _ { 1 } \leq \alpha _ { 1 } \leq \alpha _ { 1 } } \\ & { \gamma _ { 2 } \leq \alpha _ { 2 } \leq \alpha _ { 2 } \leq \alpha _ { 3 } \leq \alpha _ { 1 } } \\ & { \gamma _ { 1 } \geq \alpha _ { 2 } \leq \alpha _ { 2 } \leq \alpha _ { 3 } \leq \alpha _ { 2 } \leq \alpha _ { 3 } } \\ & { \gamma _ { 2 } \leq \alpha _ { 3 } \leq \alpha _ { 4 } } \\ & { \alpha _ { 2 } \leq \alpha _ { 3 } \leq \alpha _ { 5 } \leq \alpha _ { 4 } } \\ & { \gamma _ { 2 } \leq \alpha _ { 3 } \leq \alpha _ { 4 } } \\ & { \gamma _ { 3 } \geq \alpha _ { 5 } \leq \alpha _ { 4 } } \\ & { \gamma _ { 2 } \geq \alpha _ { 2 } \leq \alpha _ { 3 } \leq \alpha _ { 4 } } \\ & \gamma _ { 3 } \geq \ \end{array} +$$ + +Therefore, we have µ˜N ≤ µN 7. Since maxi∈[N] $\begin{array} { r } { \operatorname* { m a x } _ { i \in [ N ] } \left( \frac { \deg ( i ) } { \deg ( i ) + 1 } \right) ^ { \frac { 1 } { 2 } } < 1 } \end{array}$ , the equality $\tilde { \mu } _ { N } = \mu _ { N }$ holds if and only if $\mu _ { N } = 0$ , that is, $G$ has $N$ connected components. On the other hand, it is known that $\mu _ { N } \leq 2$ and the equality holds if and only if $G$ has non-trivial bipartite graph as a connected component (see, e.g., Chung $\&$ Graham (1997)). Therefore, $\tilde { \mu } _ { N } = \mu _ { N }$ and $\mu _ { N } = 2$ does not hold simultaneously and we obtain $\mu _ { N } < 2$ . □ + +# C COUNTEREXAMPLE OF PREVIOUS STUDY ON OVER-SMOOTHING FOR NON-LINEAR GNNS + +We restate Theorem 1 of the preprint (version2) of Luan et al. $( 2 0 1 9 ) ^ { 8 }$ . Let $G$ be a simple undirected graph with $N$ nodes and $k$ connected components such that it does not have a bipartite component. Let $L = \tilde { D } ^ { - 1 / 2 } \tilde { A } \tilde { D } ^ { - 1 / 2 } \in \mathbb { R } ^ { N \times N }$ be the augmented normalized Laplacian of $G$ . Let $F \in \mathbb { N } _ { + }$ and + +$W _ { n } \in \mathbb { R } ^ { F \times F }$ be the weight of the $n$ -th layer for $n \in \mathbb { N } _ { + }$ . For the input $X \in \mathbb { R } ^ { N \times F }$ , we define the output $Y _ { n } \in \mathbb { R } ^ { N \times F }$ of the $n$ -th layer of a GCN by $Y _ { n } = \sigma ( L \cdot \cdot \cdot \sigma ( L X W _ { 0 } ) \cdot \cdot \cdot W _ { n } )$ where $\sigma$ is the ReLU function. We assume the input $X$ is drawn from a continuous distribution on $\mathbb { R } ^ { N \times F }$ . Then, the theorem claims that we have $\begin{array} { r } { \operatorname* { l i m } _ { n \to \infty } \operatorname { r a n k } ( Y _ { n } ) = k } \end{array}$ almost surely with respect to the distribution of $X$ . + +We construct a conterexample. Consider a graph $G$ consisting of $N = 4$ nodes whose adjacency matrix is + +$$ +A = { \left[ \begin{array} { l l l l } { 1 } & { 1 } & { 1 } & { 1 } \\ { 1 } & { 1 } & { 1 } & { 0 } \\ { 1 } & { 1 } & { 1 } & { 0 } \\ { 1 } & { 0 } & { 0 } & { 1 } \end{array} \right] } ~ . +$$ + +Note that $G$ is connected (i.e., $k = 1$ ) and is not bipartite. We make a GCN with $F = 3$ channels and whose weight matrices are $W _ { n } \ = \ I _ { 3 }$ (the identity matrix of size 3) for all $n \in \mathbb N$ . For the distribution of the input $X$ , we consider an absolutely continuous distribution with respect to the Lebesgue measure on $\mathbb { R } ^ { 4 \times 3 }$ such that $P ( X \geq 0 ) ~ { \stackrel { . } { > } } ~ 0$ (here, $X ~ \geq ~ 0$ means the element-wise comparison). For example, the standard Gaussian distribution satisfies the condition. + +Since $L \geq 0$ , we have $Y _ { n } = L ^ { n } X$ if $X \geq 0$ . Let ${ \cal L } = { \cal P } ^ { \top } \Delta { \cal P }$ be the diagonalization of $L$ where $P \in O ( 4 )$ is an orthogonal matrix of size 4. Since $\mathrm { r a n k } ( L ) = 3$ , we have ${ \bar { \operatorname { r a n k } } } ( \Lambda ^ { n } ) = 3$ for any $n$ (we can assume that $\Lambda _ { 4 4 } = 0$ without loss of generality). Therefore, under the condition $X \geq 0$ , we have + +$$ +\begin{array} { r l } & { \mathrm { r a n k } ( Y _ { n } ) = 3 \iff \mathrm { r a n k } ( P ^ { \top } \Lambda ^ { n } P X ) = 3 } \\ & { \qquad \iff X \in \{ P ^ { - 1 } \left[ B \quad v \right] ^ { \top } | B \in \mathbb { R } ^ { 3 \times 3 } \mathrm { i s ~ i n v e r t i b l e } , v \in \mathbb { R } ^ { 3 } \} . } \end{array} +$$ + +Note that the last condition is independent of $n$ . Since the set of invertible matrices is dense in the set of all matrices of the same size (with respect to the standard topology of the Euclidean space), we have $P ( \{ \mathrm { r a n k } ( Y _ { n } ) = 3 $ for all $n \in \mathbb { N } \} ) > 0$ . Therefore, we have $\begin{array} { r } { \operatorname* { l i m } _ { n \infty } \operatorname { r a n k } ( Y _ { n } ) = 3 } \end{array}$ with a non-zero probability. □ + +# D PROOF OF THEOREM 3 + +We follow the proof of Theorem 2 of Chung & Radcliffe (2011). The idea is to relate the spectral distribution of the normalized Laplacian with that of its expected version. Since we can compute the latter one explicitly for the Erdos-R ˝ enyi graph, we can derive the convergence of spectra. We ´ employ this technique and derive similar conclusion for the augmented normalized Laplacian. + +First, we consider genral random graphs not restricted to Erdos-R ˝ enyi graphs. Let ´ $N \in { \mathbb { N } } _ { + }$ , and $P = ( p _ { i j } ) _ { i , j \in [ N ] }$ be a non-negative symmetric matrix (meaning that $p _ { i j } \geq 0$ for any $i , j \in [ N ] )$ . Let $G$ be an undirected random graph with $N$ nodes such that an edge between $i$ and $j$ is independently present with probability $p _ { i j }$ . Let $A$ and $D$ be the adjacency and the degree matrices of $G$ , respectively (that is, $A _ { i j } \sim \mathrm { B e r } ( p _ { i j } )$ , i.i.d.). Define the expected node degree of node $i$ by $\begin{array} { r } { t _ { i } : = \sum _ { j = 1 } ^ { N } p _ { i j } } \end{array}$ . Let ${ \tilde { A } } : = A + I _ { N }$ , ${ \tilde { D } } : = D + I _ { N }$ and define ${ \bar { A } } : = \mathbb { E } [ { \tilde { A } } ] = P + I _ { N }$ and $\bar { D } : = \mathbb { E } [ \tilde { D } ] = \mathrm { d i a g } ( t _ { 1 } , \dots , t _ { N } ) + I _ { N }$ correspondingly. We define the augmented normalized Laplacian $\tilde { \Delta }$ of $G$ by $\tilde { \Delta } : = I _ { N } - \tilde { D } ^ { - \frac { 1 } { 2 } } \tilde { A } \tilde { D } ^ { - \frac { 1 } { 2 } }$ and its expected version by $\bar { \Delta } : = I _ { N } - \bar { D } ^ { - \frac { 1 } { 2 } } \bar { A } \bar { D } ^ { - \frac { 1 } { 2 } }$ 9. For a symmetric matrix $X ~ \in ~ \mathbb { R } ^ { N }$ , we define its eigenvalues, sorted in ascending order by $\lambda _ { 1 } ( X ) \leq \cdots \leq \lambda _ { N } ( X )$ and its operator norm by $\| X \| = \operatorname* { i n a x } _ { n \in [ N ] } | \lambda _ { n } ( X ) |$ . + +Lemma 5 (Ref. Chung & Radcliffe (2011) Theorem 2). Let $\delta : = \mathrm { m i n } _ { n \in [ N ] } t _ { n }$ be the minimum expected degree of $G$ . Set $k ( \varepsilon ) : = 3 ( 1 + \log ( 4 / \varepsilon ) )$ . Then, for any $\varepsilon > 0$ , $i f { \dot { \delta } } + { \dot { 1 } } > k ( \varepsilon ) \log N$ , we have + +$$ +\operatorname* { m a x } _ { n \in [ N ] } \left| \lambda _ { n } ( \tilde { \Delta } ) - \lambda _ { n } ( \bar { \Delta } ) \right| \leq 4 \sqrt { \frac { 3 \log ( 4 N / \varepsilon ) } { \delta + 1 } } +$$ + +with probability at least $1 - \varepsilon$ + +Proof. By Weyl’s theorem, we have $\begin{array} { r } { \operatorname* { m a x } _ { n \in [ N ] } \left| \lambda _ { n } ( \tilde { \Delta } ) - \lambda _ { n } ( \bar { \Delta } ) \right| \leq \| \tilde { \Delta } - \bar { \Delta } \| } \end{array}$ . Therefore, it is enough to bound $\| \tilde { \Delta } - \bar { \Delta } \|$ . Let $C : = I _ { N } - \bar { D } ^ { - \frac { 1 } { 2 } } \tilde { A } \bar { D }$ . By the triangular inequality, we have $\| \tilde { \Delta } - \bar { \Delta } \| \leq \| \tilde { \Delta } - C \| + \| C - \bar { \Delta } \|$ . We will bound these terms respectively. + +First, we bound $\| C - { \bar { \Delta } } \|$ . Direct calculation shows $C - \bar { \Delta } = - \bar { D } ^ { - \frac { 1 } { 2 } } ( A { - } P ) \bar { D } ^ { - \frac { 1 } { 2 } }$ . Let $E ^ { i j } \in \mathbb { R } ^ { N \times N }$ be a matrix defined by + +$$ +( E ^ { i j } ) _ { k l } = { \left\{ \begin{array} { l l } { 1 } & { { \mathrm { i f ~ } } ( i = k { \mathrm { ~ a n d ~ } } i = l ) { \mathrm { ~ o r ~ } } ( i = l { \mathrm { ~ a n d ~ } } j = k ) , } \\ { 0 } & { { \mathrm { o t h e r w i s e . } } } \end{array} \right. } +$$ + +We define the random variable $Y _ { i j }$ by + +$$ +Y _ { i j } : = \frac { A _ { i j } - p _ { i j } } { \sqrt { t _ { i } + 1 } \sqrt { t _ { j } + 1 } } E ^ { i j } . +$$ + +ij Radcliffe (2011) to Then, ’s are independent and we have $Y _ { i j }$ ’s, we bound $\| Y _ { i j } - \mathbb { E } [ Y _ { i j } ] \|$ $\begin{array} { r } { C - \bar { \Delta } = \sum _ { i , j = 1 } ^ { N } Y _ { i j } } \end{array}$ and $\| \Sigma _ { i , j = 1 } ^ { N } \mathbb { E } [ Y _ { i j } ^ { 2 } ] \|$ . To apply Theorem 5 of Chung & . First, we have + +$$ +\| Y _ { i j } - \mathbb { E } [ Y _ { i j } ] \| = \| Y _ { i j } \| \leq \frac { \| E ^ { i j } \| } { \sqrt { t _ { i } + 1 } \sqrt { t _ { j } + 1 } } \leq ( \delta + 1 ) ^ { - 1 } . +$$ + +Since + +$$ +\mathbb { E } [ Y _ { i j } ^ { 2 } ] = \frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \left\{ { E ^ { i i } + E ^ { j j } } \begin{array} { l l } { ( \mathrm { i f ~ } i \ne j ) , } \\ { E ^ { i i } } & { ( \mathrm { i f ~ } i = j ) , } \end{array} \right. +$$ + +we have + +$$ +\begin{array} { r } { \left| \displaystyle \sum _ { i , j = 1 } ^ { N } \mathbb { E } [ Y _ { i j } ^ { 2 } ] \right| = \left| \left| \displaystyle \sum _ { i , j = 1 } ^ { N } \frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } E ^ { i i } \right| \right| } \\ { = \displaystyle \operatorname* { m a x } _ { i \in [ N ] } \left( \displaystyle \sum _ { j = 1 } ^ { N } \frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \right) } \\ { \leq \displaystyle \operatorname* { m a x } _ { i \in [ N ] } \left( \displaystyle \sum _ { j = 1 } ^ { N } \frac { p _ { i j } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \right) } \\ { \leq ( \delta + 1 ) ^ { - 1 } . } \end{array} +$$ + +By letting $\begin{array} { r } { a \gets \sqrt { \frac { 3 \log ( 4 N / \varepsilon ) } { \delta + 1 } } } \end{array}$ , $M \gets ( \delta + 1 ) ^ { - 1 }$ , $v ^ { 2 } ( \delta + 1 ) ^ { - 1 }$ and applying Theorem 5 of Chung & Radcliffe (2011), we have + +$$ +\begin{array} { r l } & { \operatorname* { P r } ( \| C - \bar { \Delta } \| > a ) \leq 2 N \exp \left( - \displaystyle \frac { a ^ { 2 } } { 2 ( \delta + 1 ) ^ { - 1 } + 2 ( \delta + 1 ) ^ { - 1 } a / 3 } \right) } \\ & { \phantom { \operatorname* { P r } } \leq 2 N \exp \left( - \displaystyle \frac { 3 \log \left( 4 N / \varepsilon \right) } { 2 ( 1 + a / 3 ) } \right) . } \end{array} +$$ + +By the definition of $k ( \varepsilon )$ , we have $a < 1$ if $\delta + 1 > k ( \varepsilon ) \log n$ . For such $\delta$ , we have + +$$ +\begin{array} { l } { \displaystyle \operatorname* { P r } ( | | C - \bar { \Delta } | | > a ) \leq 2 N \exp \left( - \frac { 3 \log ( 4 N / \varepsilon ) } { 2 ( 1 + a / 3 ) } \right) } \\ { \leq 2 N \exp \left( - \log ( 4 N / \varepsilon ) \right) \quad \displaystyle ( \because a < 1 ) } \\ { = \displaystyle \frac { \varepsilon } { 2 } . } \end{array} +$$ + +Next, we bound $\| \tilde { \Delta } - C \|$ . First, since $a < 1$ , by Chernoff bound (see, e.g. Angluin & Valiant (1979); Hagerup & Rub (1990))), we have ¨ + +$$ +\begin{array} { r l r } { { \operatorname* { P r } ( | d _ { i } - t _ { i } | > a ( t _ { i } + 1 ) ) \le 2 \exp ( - \frac { a ^ { 2 } ( t _ { i } + 1 ) } { 3 } ) } } \\ & { } & \\ & { } & { \le 2 \exp ( - \frac { a ^ { 2 } ( \delta + 1 ) } { 3 } ) } \\ & { } & { = \frac { \varepsilon } { 2 N } . } \end{array} +$$ + +Therefore, if $| d _ { i } - t _ { i } | \leq a ( t _ { i } + 1 )$ , then we have + +$$ +\begin{array} { r l r } { \left. \sqrt { \displaystyle \frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \right. \le \left. \displaystyle \frac { d _ { i } + 1 } { t _ { i } + 1 } - 1 \right. } & { \left( \cdot \cdot | \sqrt { x } - 1 | \le | x - 1 | \mathrm { \ f o r \ } x \ge 0 \right) } & \\ { = \displaystyle \left. \displaystyle \frac { d _ { i } - t _ { i } } { t _ { i } + 1 } \right. } & \\ { \le a . } & \end{array} +$$ + +Therefore, by union bound, we have + +$$ +\| \bar { D } ^ { - \frac { 1 } { 2 } } \tilde { D } ^ { \frac { 1 } { 2 } } - I _ { N } \| = \operatorname* { m a x } _ { i \in [ N ] } \left| \sqrt { \frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \right| \leq a +$$ + +with probability at least $1 - \varepsilon / 2$ . Further, since the eigenvalue of the augmented normalized Laplacian is in $[ 0 , 2 ]$ by the proof of Proposition 1, we have $\| I _ { N } - \tilde { \Delta } \| \leq \bar { 1 }$ . By combining them, we have + +$$ +\begin{array} { r l } & { \| \tilde { \Delta } - C \| = \| ( \bar { D } ^ { - \frac { 1 } { 2 } } \tilde { D } ^ { \frac { 1 } { 2 } } - I _ { N } ) ( I _ { N } - \tilde { \Delta } ) \tilde { D } ^ { \frac { 1 } { 2 } } \bar { D } ^ { - \frac { 1 } { 2 } } + ( I _ { N } - \tilde { \Delta } ) ( I - \tilde { D } ^ { \frac { 1 } { 2 } } \bar { D } ^ { - \frac { 1 } { 2 } } ) \| } \\ & { \qquad \leq \| ( \bar { D } ^ { - \frac { 1 } { 2 } } \tilde { D } ^ { \frac { 1 } { 2 } } - I _ { N } \| \| \tilde { D } ^ { \frac { 1 } { 2 } } \bar { D } ^ { - \frac { 1 } { 2 } } \| + \| I - \tilde { D } ^ { \frac { 1 } { 2 } } \bar { D } ^ { - \frac { 1 } { 2 } } \| } \\ & { \qquad \leq a ( a + 1 ) + a . } \end{array} +$$ + +From (5) and (6), we have + +$$ +\begin{array} { r l } & { \| \tilde { \Delta } - \bar { \Delta } \| \leq \| \tilde { \Delta } - C \| + \| C - \bar { \Delta } \| } \\ & { \qquad \leq a + a ( a + 1 ) + a } \\ & { \qquad \leq a ^ { 2 } + 3 a } \\ & { \qquad \leq 4 a \quad ( \because a < 1 ) } \end{array} +$$ + +with probability at least $1 - \varepsilon$ by union bound. + +Let $N \in { \mathbb { N } } _ { + }$ and $p > 0$ . In the case of the Erdos-R ˝ enyi graph ´ $G _ { N , p }$ , we should set $P = p ( J _ { N } - I _ { N } )$ where $J _ { N } \in \mathbb { R } ^ { N \times N }$ are the all-one matrix. Then, we have $\bar { A } = p J _ { N } + ( 1 - p ) I _ { N }$ , $\bar { D } = ( N p -$ $p + 1 ) I _ { N }$ , and $\begin{array} { r } { \bar { \Delta } = \frac { p } { N p - p + 1 } ( N I _ { N } - J _ { N } ) } \end{array}$ . Since the eigenvalue of $J _ { N }$ is $N$ (with multiplicity 1) and 0 (with multiplicity $N - 1 ,$ ), the eigenvalue of $\bar { \Delta }$ is 0 (with multiplicity 1) and $\frac { N p } { N p - p + 1 }$ (with multiplicity $N - 1 )$ . For $G _ { N , p }$ , $\delta$ is the expected average degree $( N - 1 ) p$ . Hence, we have the following lemma from Lemma 5: + +Lemma 6. Let $\tilde { \Delta }$ be its augmented normalized Laplacian of the Erdos-R ˝ enyi graph ´ $G _ { N , p }$ . For any $\varepsilon > 0 ,$ $\begin{array} { r } { i f \frac { N p - p + 1 } { \log N } > k ( \varepsilon ) : = 3 ( 1 + \log ( 4 / \varepsilon ) ) } \end{array}$ , then, with probability at least $1 - \varepsilon$ , we have + +$$ +\operatorname* { m a x } _ { i = 2 , \ldots , N } \left| \lambda _ { i } ( \tilde { \Delta } ) - \frac { N p } { N p - p + 1 } \right| \leq 4 \sqrt { \frac { 3 \log ( 4 N / \varepsilon ) } { N p - p + 1 } } . +$$ + +Corollary 4. Consider GCN on $G _ { N , p }$ . Let $W _ { l }$ be the weight of the $l$ -th layer of GCN and $s _ { l }$ be the maximum singular value of $W _ { l }$ for $l \in \mathbb { N } _ { + }$ . Set $s : = \mathrm { s u p } _ { l \in \mathbb { N } _ { + } }$ . Let $\varepsilon > 0$ . We define $k ( \varepsilon ) : =$ $3 ( 1 + \log ( 4 / \varepsilon ) )$ and $\begin{array} { r } { l ( N , p , \varepsilon ) = { \frac { 1 - p } { N p - p + 1 } } + 4 { \sqrt { \frac { 3 \log ( 4 N / \varepsilon ) } { N p - p + 1 } } } } \end{array}$ . I $\begin{array} { r } { \ell \frac { N p - p + 1 } { \log N } > k ( \varepsilon ) } \end{array}$ and $s \leq l ( N , \varepsilon ) ^ { - 1 }$ , then, GCN on $G _ { N , p }$ satisfies the assumption of Theorem 2 with probability at least $1 - \varepsilon$ . + +Proof of Theorem 3. Since log NNp = o(1), for fixed ε, we have + +$$ +\frac { N p - p + 1 } { \log N } > \frac { N p } { \log N } > k ( \varepsilon ) +$$ + +for sufficiently large $N$ . Further, $N p \to \infty$ as $N \to \infty$ whe n log NNp = o(1). Therefore, we have + +$$ +\frac { ( 1 - p ) ^ { 2 } } { N p - p + 1 } \leq \frac { 1 } { N p } \leq ( 7 - 4 \sqrt { 3 } ) ^ { 2 } \log \left( \frac { 4 N } { \varepsilon } \right) +$$ + +for sufficiently large $N$ . Hence. + +$$ +\frac { 1 - p } { N p - p + 1 } \leq ( 7 - 4 \sqrt { 3 } ) \sqrt { \frac { \log ( 4 N / \varepsilon ) } { N p - p + 1 } } . +$$ + +Therefore, we have $\begin{array} { r } { l ( N , p , \varepsilon ) \le 7 \sqrt { \frac { \log ( 4 N / \varepsilon ) } { N p - p + 1 } } } \end{array}$ . Therefore, if $s ~ \le ~ \frac { 1 } { 7 } \sqrt { \frac { N p - p + 1 } { \log ( 4 N / \varepsilon ) } }$ , then we have $s \leq l ( N , p , \varepsilon ) ^ { - 1 }$ . + +# E MISCELLANEOUS PROPOSITIONS + +E.1 INVARIANCE OF ORTHOGONAL COMPLEMENT SPACE + +Proposition 2. Let $P \in \mathbb { R } ^ { N \times N }$ be a symmetric matrix, treated as a linear operator $P : \mathbb { R } ^ { N } \mathbb { R } ^ { N }$ . If a subspace $U \subset \mathbb { R } ^ { N }$ is invariant under $P$ (i.e., if $u \in U$ , then $P u \in U$ ), then, $U ^ { \perp }$ is invariant under $P$ , too. + +Proof. For any $u \in U ^ { \perp }$ and $v \in U$ , by symmetry of $P$ , we have + +$$ +\langle P u , v \rangle = ( P u ) ^ { \top } v = u ^ { \top } P ^ { \top } v = u ^ { \top } P v = \langle u , P v \rangle . +$$ + +Since $U$ is an invariant space of $P$ , we have $P v \in U$ . Hence, we have $\langle u , P v \rangle = 0$ because $u \in U ^ { \perp }$ We obtain $P u \in U ^ { \perp }$ by the definition of $U ^ { \perp }$ . □ + +# E.2 CONVERGENCE TO TRIVIAL FIXED POINT + +Let $P \in \mathbb { R } ^ { N \times N }$ be a symmetric matrix, $W _ { l } \in \mathbb { R } ^ { C \times C }$ , $s _ { l }$ be the maximum singular value of $W _ { l }$ for $l \in \mathbb { N } _ { + }$ . We define $f _ { l } ^ { ^ { \bullet } } : \mathbb { R } ^ { N \times C } \mathbb { R } ^ { N \times { \dot { C } } }$ by $f _ { l } ( X ) : = \sigma ( P X W _ { l } )$ where $\sigma$ is the element-wise ReLU function. + +Proposition 3. Suppose further that the operator norm of $P$ is no larger than $\lambda ,$ , then we have $\| f _ { l } ( \bar { \boldsymbol { X } } ) \| _ { \mathrm { F } } \leq s _ { l } \lambda \| \bar { \boldsymbol { X } } \| _ { \mathrm { F } }$ for any $l \in \mathbb { N } _ { + }$ . In particular, let $s : = \operatorname* { s u p } _ { l \in \mathbb { N } _ { + } } s _ { l }$ . If $s \lambda < 1$ , then, $X _ { l }$ exponentially approaches 0 as $l \infty$ . + +Proof. Since $\lambda$ is the operator norm of $P | _ { U ^ { \perp } }$ , the assumption implies that the operator norm of $P$ itself is no larger than $\lambda$ . Therefore, we have $\| P X W _ { l } \| _ { \mathrm { F } } \leq \lambda \bar { \| } X W _ { l } \| _ { \mathrm { F } } \leq s _ { l } \bar { \lambda } \| X \| _ { \mathrm { F } }$ . On the other hand, since $\sigma ( x ) ^ { 2 } \leq x ^ { 2 }$ for any $x \in \mathbb { R }$ , we have $\| \sigma ( X ) \| _ { \mathrm { F } } \leq \| X \| _ { F }$ for any $\boldsymbol { X } ^ { \prime } \in \mathbb { R } ^ { N \times C }$ . Combining the two, we have $\Vert f _ { l } ( X ) \Vert _ { \mathrm { F } } \leq \Vert P X W _ { l } \Vert _ { \mathrm { F } } \leq s _ { l } \lambda \Vert X \Vert _ { \mathrm { F } }$ . □ + +# E.3 STRICTNESS OF THEOREM 1 + +Theorem 1 implies that if $s \lambda \leq 1$ , then, one-step transition $f _ { l }$ does not increase the distance to $\mathcal { M }$ . In this section, we first prove that this theorem is strict in the sense that, there exists a situation in which $s _ { l } \lambda > 1$ holds and the distance $d _ { \mathcal { M } }$ increases by one-step transition $f _ { l }$ at some point $X$ . + +Set $N \gets 2$ , $C \gets 1$ , and $M \gets 1$ in Section 3.2. For $\mu , \lambda > 0$ , we set + +$$ +P [ { \mu \atop 0 } \lambda ] , e [ 1 \atop 0 ] , U \{ [ { x \atop y } ] \mid y = 0 \} . +$$ + +Then, by definition, we can check that the 3-tuple $( P , e , U )$ satisfies the Assumptions 1 and 2. Set $\mathcal { M } : = U \otimes \mathbb { R } = U$ and choose $W \in \mathbb { R }$ so that $W ^ { \setminus } > \lambda ^ { - 1 }$ . Finally define $f : \mathbb { R } ^ { \mathbf { \hat { N } } \times C } \mathbb { R } ^ { N \times C }$ by $f ( X ) : = \sigma ( P X W )$ where $\sigma$ is the element-wise ReLU function. + +Proof. By definition, we have $d _ { \mathcal { M } } ( X ) = | x _ { 2 } |$ . On the other hand, direct calculation shows that $f _ { l } ( X ) = \left[ ( W \mu X _ { 1 } ) ^ { + } \quad ( W \lambda X _ { 2 } ) ^ { + } \right] ^ { \top }$ and $d _ { \mathcal { M } } ( f _ { l } ( X ) ) = ( W \lambda X _ { 2 } ) ^ { + }$ where $x ^ { + } : = \operatorname* { m a x } ( x , 0 )$ for $x \in \mathbb { R }$ . Since $W > \lambda ^ { - 1 }$ and $x _ { 2 } > 0$ , we have $d _ { \mathcal { M } } ( f _ { l } ( X ) ) > d _ { \mathcal { M } } ( X )$ . □ + +Next, we prove the non-strictness of Theorem 1 in the sense that there exists a situation in which $s _ { l } \lambda > 1$ holds and the distance $d _ { \mathcal { M } }$ uniformly decreases by $f _ { l }$ . Again, we set Set $N \gets 2$ , $C \gets 1$ , and $M \gets 1$ . Let $\lambda \in ( 1 , 2 )$ and set + +$$ +P \frac { \lambda } { 2 } [ \begin{array} { c c } { 1 } & { - 1 } \\ { - 1 } & { 1 } \end{array} ] , e \frac { 1 } { \sqrt { 2 } } [ \begin{array} { c } { 1 } \\ { 1 } \end{array} ] , U \{ [ \begin{array} { c } { x } \\ { y } \end{array} ] | x = y \} +$$ + +Then, we can directly show that 3-tuple $( P , e , U )$ satisfies the Assumptions 1 and 2. Set $W 1$ . + +Proposition 5. We have $W \lambda > 1$ and $d _ { \mathcal { M } } ( f _ { l } ( X ) ) < d _ { \mathcal { M } } ( X )$ for all $X \in \mathbb { R } ^ { 2 }$ . + +Proof. First, note that $\begin{array} { r } { e ^ { \prime } : = \frac { 1 } { \sqrt { 2 } } \left[ { \begin{array} { l l } { 1 } & { - 1 } \end{array} } \right] ^ { \top } } \end{array}$ is the eigenvector of $P$ associated to $\lambda \colon P e ^ { \prime } = \lambda e ^ { \prime }$ . For $X = a e + b e ^ { \prime } \left( a , b { \dot { \omega } } 0 \right)$ , the distance between $X$ and $\mathcal { M }$ is $d _ { \mathcal { M } } ( \boldsymbol { X } ) = | b |$ . On the other hand, by direct computation, we have + +$$ +f ( X ) = \sigma ( P X W ) = { \left\{ \begin{array} { l l } { \left[ 0 \quad { \frac { \lambda b } { \sqrt { 2 } } } \right] ^ { \top } } & { { \mathrm { ( i f ~ } } b \geq 0 { \mathrm { ) } } , } \\ { \left[ { \frac { - \lambda b } { \sqrt { 2 } } } \quad 0 \right] ^ { \top } } & { { \mathrm { ( i f ~ } } b < 0 { \mathrm { ) } } . } \end{array} \right. } +$$ + +Therefore, the distance between $f ( X )$ and $\mathcal { M }$ is $d _ { \mathcal { M } } ( f ( X ) ) = \lambda | b | / 2$ . Since $\lambda \ : < \ : 2$ , we have $d _ { \mathcal { M } } ( f ( X ) ) < d _ { \mathcal { M } } ( X )$ for any $X \in \mathbb { R } ^ { 2 }$ . □ + +We have shown that the non-negativity of $e$ (Assumption 1) is not a redundant condition in Section 6.1. + +# F RELATION TO MARKOV PROCESS + +It is known that any Markov process on finite states converges to a unique distribution (equilibrium) if it is irreducible and aperiodic (see, e.g., Norris (1998)). As we see in this section, this theorem is the special case of Corollary 3. + +Let $S : = \{ 1 , \ldots , N \}$ be a finite discrete state space. Consider a Markov process on $S$ characterized by a symmetric transition matrix $P = ( p _ { i j } ) _ { i , j \in [ N ] } \in \mathbb { R } ^ { N \times N }$ such that $P \geq 0$ and $P \mathbf { 1 } = \mathbf { 1 }$ where 1 is the all-one vector. We interpret $p _ { i j }$ as the transition probability from a state $i$ to $j$ . We associate $P$ with a graph $G _ { P } = ( V _ { P } , E _ { P } )$ by $V _ { P } = [ N ]$ and $( i , j ) \in E _ { P }$ if and only if $p _ { i j } > 0$ . Since $P$ is symmetric, we can regard $G _ { P }$ as an undirected graph. We assume $P$ is irreducible and aperiodic 10. Perron – Frobenius’ theorem (see, e.g., Meyer (2000)) implies that $P$ satisfy the assumption of Corollary 3 with $M = 1$ . + +Proposition 6 (Perron – Frobenius). Let the eigenvalues of $P$ be $\lambda _ { 1 } \leq \cdots \leq \lambda _ { N }$ . Then, we have $- 1 < \lambda _ { 1 }$ , $\lambda _ { N - 1 } < 1$ , and $\lambda _ { N } = 1$ . Further, there exists unique vector $e \in \mathbb { R } ^ { N }$ such that $e \geq 0$ , $\| e \| = 1$ , and $e$ is the eigenvector for the eivenvalue 1. + +Corollary 5. Let $\begin{array} { r } { \lambda : = \operatorname* { m a x } _ { n = 1 , \ldots , N - 1 } | \lambda _ { n } | ( < 1 ) } \end{array}$ and $\mathcal { M } : = \{ e \otimes w \ | \ w \in \mathbb { R } ^ { C } \}$ . If $s \lambda < 1$ , then, for any initial value $X _ { 1 }$ , $X _ { l }$ exponentially approaches $\mathcal { M }$ as $l \infty$ . + +If we set $C = 1$ and $W _ { l } = 1$ for all $l \in \mathbb { N } _ { + }$ , then, we can inductively show that $X _ { l } \geq 0$ for any $l \geq 2$ . Therefore, we can interpret $X _ { l }$ as a measure on $S$ . Suppose further that we take the initial value $X _ { 1 }$ as $X _ { 1 } ~ \geq ~ 0$ and $X _ { 1 } ^ { \top } \mathbf { \hat { 1 } } = 1$ so that we can interpret $X _ { 1 }$ as a probability distribution on $S$ . Then, we can inductively show that $X _ { l } \geq 0$ , $X _ { l } ^ { \top } \mathbf { 1 } = 1$ (i.e., $X _ { l }$ is a probability distribution on + +$S$ ), and $X _ { l + 1 } = \sigma ( P X _ { l } W _ { l } ) = P X _ { l }$ for all $l \in \mathbb { N } _ { + }$ . In conclusion, the corollary is reduced to the fact that if a finite and discrete Markov process is irreducible and aperiodic, any initial probability distribution converges exponentially to an equibrilium. In addition, the the rate $\lambda$ corresponds to the mixing time of the Markov process. + +# G GCN DEFINED BY NORMALIZED LAPLACIAN + +In Section 4, we defined $P$ using the augmented normalized Laplacian $\tilde { \Delta }$ by $P = I _ { N } - \tilde { \Delta }$ . We can alternatively use the usual normalized Laplacian $\Delta$ instead of the augmented one to define $P$ and want to apply the theory developed in Section 3.2. We write the normalized Laplacian version as $P _ { \Delta } : = I _ { N } - \Delta$ . The only obstacle is that the smallest eigenvalue $\lambda _ { 1 }$ of $P _ { \Delta }$ can be equal to $- 1$ , while that of $P$ is strictly larger than $- 1$ (see, Proposition 1). This corresponds to that fact the largest eigenvalue of $\tilde { \Delta }$ is strictly smaller than 2, while that for $\Delta$ can be 2. It is known that the largest eigenvalue of $\Delta$ is 2 if and only if the graph has a non-trivial bipartite connected component (see, e.g., Chung $\&$ Graham (1997)). Therefore, we can develop a theory using the normalized Laplacian instead of the augmented one in parallel for such a graph $G$ . + +In Section 5, we characterized the asymptotic behavior of GCN defined by the augmented normalized Laplacian via its spectral distribution (Lemma 6 of Appendix D). We can derive a similar claim for GCN defined via the normalized Laplacian using the original theorem for the normalized Laplacian in Chung & Radcliffe (2011) (Theorem 7 therein). The normalized Laplacian version of GCN is advantegeous over the one made from the augmented one because we know its spectral distribution for broader range of random graphs. For example, Chung & Radcliffe (2011) proved the convergence of the spectral distribution of the normalized Laplacian for Chung-Lu’s model (Chung & Lu, 2002), which includes power law graphs as a special case (see, Theorem 4 of Chung & Radcliffe (2011)). + +# H DETAILS OF EXPERIMENT SETTINGS + +# H.1 EXPERIMENT OF SECTION 6.1 + +We set the eigenvalue of $P$ to $\lambda _ { 1 } = 0 . 5$ and $\lambda _ { 2 } = 1 . 0$ and randomly generated $P$ until the eigenvector $e$ associated to $\lambda _ { 2 }$ satisfies the condition of each case described in the main article. We set $W = 1 . 2$ and used the following values for each case as $P$ and $e$ . + +# H.1.1 CASE 1 + +$$ +P = { \left[ 0 . 2 4 9 9 8 1 9 \quad 0 . 2 4 9 9 8 1 9 \right] } , \quad e = { \left[ \begin{array} { l } { 0 . 7 0 2 8 3 9 2 } \\ { 0 . 2 4 9 9 8 1 9 } \end{array} \right] } . +$$ + +# H.1.2 CASE 2 + +$$ +P = \left[ { \begin{array} { c c } { 0 . 6 8 9 9 5 7 4 } & { - 0 . 2 4 2 6 8 2 7 } \\ { - 0 . 2 4 2 6 8 2 7 } & { 0 . 8 1 0 0 4 2 6 } \end{array} } \right] , \quad e = \left[ { \begin{array} { c } { 0 . 6 1 6 3 7 2 3 4 } \\ { - 0 . 7 8 7 4 5 4 8 5 } \end{array} } \right] . +$$ + +# H.2 EXPERIMENT OF SECTION 6.2 + +We randomly generated an Erdos – R ˝ enyi graph ´ $G _ { N , p }$ with $N = 1 0 0 0$ and randomly generated a one-of- $K$ hot vector for each node and embed it to a $C$ -dimensional vector using a random matrix whose elements were randomly sampled from the standard Gaussian distribution. Here, $K = 1 0$ and $C = 3 2$ . We treated the resulting single as the input signal $X ^ { ( 0 ) } \in \mathbb { R } ^ { N \times C }$ . We constructed a GCN with $L = 1 0$ layers and $C$ channels. All parameters were i.i.d. sampled from the Gaussian distribution whose standard deviation is same as the one used in LeCun et al. $( 2 0 1 2 ) ^ { 1 1 }$ and multiplied a scalar to each weight matrix so that the largest singular value equals to a specified value $s$ . We used three configurations $( p , s ) = ( 0 . 1 , 0 . 1 ) \overset { \cdot } { , } ( 0 . 5 , 1 . \overset { \cdot } { 0 } )$ , (0.5, 10.0). $\lambda$ of the generated GCNs are 0.063, 0.197, 0.194, respectively. See Appendix 6.2 for the results of other configurations of $( p , s )$ . + +Table 1: Dataset specifications. The threshold $\lambda ^ { - 1 }$ in the table indicates the upper bound of Corollary 2. + +
#Node#Edge#ClassChance RateThreshold λ-1
Cora27085429630.2%1+3.62 × 10-3
CiteSeer33124732721.1%1 + 1.25 × 10-3
PubMed1971744338339.9%1 + 9.57 × 10-3
+ +Table 2: Dataset specifications for noisy citation networks. The threshold $\lambda ^ { - 1 }$ in the table indicates the upper bound of Corollary 2. + +
Original Dataset#Edge AddedThreshold λ-1
Noisy Cora 2500Cora24951.11
Noisy ( Cora 5000Cora49881.15
Noisy CiteSeerCiteSeer49911.13
Noisy PubMedPubMed249931.17
+ +# H.3 EXPERIMENT OF SECTION 6.3 + +# H.3.1 DATASET + +We used the Cora (McCallum et al., 2000; Sen et al., 2008), CiteSeer (Giles et al., 1998; Sen et al., 2008), and PubMed(Sen et al., 2008) datasets for experiments. We obtained the preprocessed dataset from the code repository of Kipf & Welling $( 2 0 1 7 ) ^ { \hat { 1 } 2 }$ . Table 1 summarizes specifications of datasets and their noisy version (explained in the next section). + +The Cora dataset is a citation network dataset consisting of 2708 papers and 5429 links. Each paper is represented as the occurence of 1433 unique words and is associated to one of 7 genres (Case Based, Genetic Algorithms, Neural Networks, Probabilistic Methods, Reinforcement Learning, Rule Learning, Theory). The graph made from the citation links has 78 connected components and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately $\tilde { \mu } = 3 . 6 2 \times$ $1 0 ^ { - 3 }$ . Therefore, the upper bound of Theorem 2 is $\lambda ^ { - 1 } = ( \bar { 1 - \mu } ) ^ { - 1 } \approx \bar { 1 } + 3 . 6 2 \times \bar { 1 0 ^ { - 3 } }$ . 818 out of 2708 samples are labelled as “Probabilistic Methods”, which is the largest proportion. Therefore, the chance rate is $8 1 8 / 2 7 0 8 = 3 0 . 2 \%$ . + +The CiteSeer dataset is a citation network dataset consisting of 3312 papers and 4732 links. Each paper is represented as the occurence of 3703 unique words and is associated to one of 6 genres (Agents, AI, DB, IR, ML, HCI). The graph made from the citation links has 438 connected components and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately $\tilde { \mu } = 1 . 2 5 \times 1 0 ^ { - 3 }$ . Therefore, the upper bound of Theorem 2 is $\lambda ^ { - 1 } = ( 1 - \dot { \tilde { \mu } } ) ^ { - 1 } \approx 1 + \dot { 1 } . 2 5 \times 1 0 ^ { - \dot { 3 } }$ . 701 out of 2708 samples are labelled as “IR”, which is the largest proportion. Therefore, the chance rate is $7 0 1 / 3 3 1 2 = \hat { 2 } 1 . 1 \%$ . + +The PubMed dataset is a citation network dataset consisting of 19717 papers and 44338 links. Each paper is represented as the occurence of 500 unique words and is associated to one of 3 genres (“Diabetes Mellitus, Experimental”, “Diabetes Mellitus Type 1”, “Diabetes Mellitus Type $2 ^ { \circ }$ ). The graph made from the citation links has 438 connected components and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately $\tilde { \mu } = 9 . 4 8 \times 1 0 ^ { - 3 }$ . Therefore, the upper bound of Theorem 2 is $\lambda ^ { - 1 } = ( \bar { 1 ^ { - } } \tilde { \mu } ) ^ { - 1 } \approx \bar { 1 ^ { + } } 9 . 5 7 \times \bar { 1 0 ^ { - 3 } }$ . 7875 out of 19717 samples are labelled as “Diabetes Mellitus Type $2 ^ { \circ }$ , which is the largest proportion. Therefore, the chance rate is $7 8 7 5 / 1 9 7 1 7 = 3 9 . 9 \%$ . + +# H.3.2 NOISY CITATION NETWORKS + +We summarize the properties of noisy citation networks in Table 2. + +![](images/33c624416452a1afbbaf1d3a06a17fe54c6e9a677c7771baa460eb82489179e5.jpg) +Figure 5: Spectral distribution of Laplacian for the citation network datasets. Left: normalized Laplacian. Right: augmented normalized Laplacian. Top: Cora and Noisy Cora (2500, 5000). Bottom: CiteSeer and Noisy CiteSeer. + +We created two datasets from the Cora dataset: Noisy Cora 2500 and Noisy Cora 5000. Noisy Cora 2500 is made from the Cora dataset by uniformly randomly adding 2500 edges, respectively. Since some random edges are overlapped with existing edges, the number of newly-added edges is 2495 in total. We only changed the underlying graph from the Cora dataset and did not change word occurences (feature vectors) and genres (labels). The underlying graph of the Noisy Cora dataset has two connected components and the smallest positive eigenvalue is $\tilde { \mu } \approx 9 . 6 2 \times 1 0 ^ { - 2 }$ . Therefore, the threshold of the maximum singular values of in Theorem 2 has been increased to $\lambda ^ { - 1 } = ( 1 - \tilde { \mu } ) ^ { - 1 } \approx 1 . 1 1$ . Similarly, Noisy Cora 5000 was made by adding 5000 edges uniformaly randomly. The number of newly added edges is 4988 and the graph is connected (i.e., it has only 1 connected component). $\tilde { \mu }$ and $\lambda$ are $\tilde { \mu } \approx 1 . \bar { 3 } 2 \times 1 0 ^ { - 1 }$ and $\lambda = \bar { ( 1 - \mu ) } ^ { - 1 } \approx 1 . 1 5$ , respectively. + +We made the noisy version of CiteSeer (Noisy CiteSeer) and PubMed (Noisy PubMed), in the similar way, by adding 5000 and 25000 edges uniformly randomly to the datasets. Since some random edges were overlapped with existing edges, 4991 and 24993 edges are newly added, respectively. This manipulation reduced the number of connected component of the graph to 3. $\tilde { \mu }$ is approximately $1 . \dot { 1 1 } \times 1 0 ^ { - 1 }$ (Noisy CiteSeer) and $1 . 4 3 \times 1 0 ^ { - 1 }$ (Noisy PubMed) and $\lambda ^ { - 1 } = { \bf \bar { \Phi } } ( 1 - \bar { \tilde { \mu } } ) ^ { - 1 }$ is approximately 1.13 (Noisy CiteSeer) and 1.17 (Noisy PubMed), respectively. Figure 5 (right) shows the spectral distribution of the augmented normalized Laplacian For comparison, we show in Figure 5 (left) the spectral distribution of the normalized Laplacian for these datasets13. + +# H.3.3 MODEL ARCHITECTURE + +We used a GCN consisting of a single node embedding layer, one to nine graph convolution layers, and a readout operation (Gilmer et al., 2017), which is a linear transformation common to all nodes in our case. We applied softmax function to the output of GCN. The output dimension of GCN is same as the number of classes (i.e., seven for Noisy Cora 2500/5000, six for Noisy CiteSeer, and three for Noisy PubMed). We treated the number of units in each graph convolution layer as a hyperparameter. Optionally, we specified the maximum singular values $s$ of graph convolution layers. The choice of $s$ is either 0.5 (smaller than 1), $s _ { 1 }$ (in the interval $\{ 1 \leq s < \lambda ^ { - 1 } \}$ ), 3 and 10 (larger than $\lambda ^ { - 1 }$ ). We used $s _ { 1 } = 1 . 0 5$ for Noisy Cora 2500, Noisy CiteSeer, and Noisy PubMed, and $s _ { 1 } = 1 . 1$ for Noisy Cora 5000 and Noisy CiteSeer so that $s _ { 1 }$ is not close to the edges of the the interval $\{ 1 \leq s < \lambda ^ { - 1 } \}$ . + +Table 3: Hyperparameters of the experiment in Section 6.3. $X \sim \mathrm { L o g U n i f } [ 1 0 ^ { a } , 1 0 ^ { b } ]$ denotes the random variable $\log _ { 1 0 } X$ obeys the uniform distribution over $[ a , b ]$ . “Learning rate” corresponds to $\alpha$ when “Optimization algorithm” is Adam (Kingma & Ba, 2015). + +
NameValue
Unit size{10,20,..., 500}
Epoch{10,20,...,100}
Optimization algorithm{SGD,MomentumSGD,Adam}
Learning rateLogUnif[10-5,10-2]
+ +# H.3.4 PERFORMANCE EVALUATION PROCEDURE + +We split all nodes in a graph (either Noisy Cora 2500/5000 or Noisy CiteSeer) into training, validation, and test sets. Data split is the same as the one done by Kipf & Welling (2017). This is a transductive learning (Pan & Yang, 2010) setting because we can use node properties of the validation and test data during training. We trained the model three times for each choice of hyperparemeters using the training set and defined the objective function as the average accuracy on the validation set. We chose the combination of hyperparameters that achieves the best value of objective function. We evaluate the accuracy of the test dataset three times using the chosen combination of hyperparameters and computed their average and the standard deviation. + +# H.3.5 TRAINING + +At initialization, we sampled parameters from the i.i.d. Gaussian distribution. If the scale of maximum singular values $s$ was specified, we subsequently scaled weight matrices of graph convolution layers so that their maximum singular values were normalized to $s$ . The loss function was defined as the sum of the cross entropy loss for all training nodes. We train the model using the one of gradient-based optimization methods described in Table 3. + +# H.3.6 HYPERPRAMETERS + +Table 3 shows the set of hyperparameters from which we chose. Since we compute the representations of all nodes at once at each iteration, each epoch consists of 1 iteration. We employ Tree-structured Parzen Estimator (Bergstra et al., 2011) for hyperparameter optimization. + +# H.3.7 IMPLEMENTATION + +We used Chainer Chemistry14, which is an extension library for the deep learning framework Chainer (Tokui et al., 2015; 2019), to implement GCNs and Optuna (Akiba et al., 2019) for hyperparameter tuning. We conducted experiments in a signel machine which has 2 Intel(R) Xeon(R) Gold 6136 CPU@3.00GHz (24 cores), 192 GB memory (DDR4), and 3 GPGPUs (NVIDIA Tesla V100). Our implementation achieved $6 8 . 1 \%$ with Dropout (Srivastava et al., 2014) (2 graph convolution layers) and $6 4 . 2 \%$ without Dropout (1 graph convolution layer) on the test dataset. These are slightly worse than the accuracy reported in Kipf & Welling (2017), but are still comparable with it. + +# H.4 EXPERIMENT OF SECTION 6.4 + +The experiment settings are almost same as the experiment in Section 6.3. The only difference is that we did not train the node embedding layer, which we put before convolution layers of a GCN, while we did in Section 6.3. This is because we wanted to see the the effect of convolution operations + +on the perpendicular component of signals, while we interested in the prediction accuracy in real training settings in the previous experiment. + +# I ADDITIONAL EXPERIMENT RESULTS + +# I.1 EXPERIMENT OF SECTION 6.1 + +We show the vector field $V$ for various $W$ in Figure 6 (Case 1) and Figure 7 (Case 2). Parameters other than $W$ are same as experiments in Section 6.1 (detail values are available in Appendix H.1). + +# I.2 EXPERIMENT OF SECTION 6.2 + +Figure 8 shows the relative log distance of signals and their upper bound for various edge probability $p$ and the maximum singular value $s$ . Note that we generate a new graph for each configuration of $( p , s )$ . Therefore, different configurations may have different graphs and hence different $\lambda$ even they have a same edge probability $p$ in common. + +# I.3 EXPERIMENT OF SECTION 6.3 + +# I.3.1 PREDICTIVE ACCURACY + +Figure 9 shows the comparison of predictive performance in terms the maximum singular value and layer size when the dataset is Noisy Cora 5000 (left) and Noisy Citeseer (right), respectively. Concrete values are available in Table 4. + +# I.3.2 TRANSITION OF MAXIMUM SINGULAR VALUES + +Figure 10 – 13 show the transition of weight of graph convolution layers during training when the dataset is Noisy Cora 2500, Noisy Cora 5000, and Noisy CiteSeer, respectively. We note that the result of 3-layered GCN from the Noisy Cora 2500 is identical to Figure 3 (right) of the main article. + +# I.4 EXPERIMENT OF SECTION 6.4 + +Figure 14 shows the logarithm of relative perpendicular component and prediction accuracy on Noisy Cora, Noisy CiteSeer, and Noisy PubMed datasets. We use Pearson R as a correlation coefficient. If GCNs have only one layer, it has more large relative perpendicular components (corresponding to right points in the figures) than GCNs which have other number of layers. The correlation between the logarithm of relative perpendicular components and prediction accuracies are $0 . 8 2 7 ( p { = } 6 . 8 9 0 \times \bar { 1 0 } ^ { - 6 } )$ for Noisy Cora, $\mathrm { { 0 . 5 2 4 } } ( p \ = \ 1 . { \bar { 7 } } 7 1 \times 1 0 ^ { - 2 } )$ for Noisy CiteSeer, and $0 . 6 7 9 ( p = 1 . 0 0 2 \times 1 0 ^ { - 3 } )$ for Noisy PubMed, if we treat the one-layer case as outliers and remove them. + +![](images/a88890af3061b7f6c52d0927100734218d69193a2aa1e144aab4bb8cd705f753.jpg) +Figure 6: Vector field $V$ for various $W$ for Case 1. Top left: $W = 0 . 5$ . Top right: $W = 1 . 0$ . Middle left: $W = 1 . 2$ (same as Figure 1 in the main article). Middle right: $W = 1 . 5$ . Bottom left: $W = 2 . 0$ . Bottom right: $W = 4 . 0$ . Best view in color. + +![](images/55e8e2cb9210bdfb7542bd78186fe6fc29fb504e4a82ce013518941d8c8ae0bc.jpg) +Figure 7: Vector field $V$ for various $W$ for Case 2. Top left: $W = 0 . 5$ . Top right: $W = 1 . 0$ . Middle left: $W = 1 . 2$ (same as Figure 1 in the main article). Middle right: $W = 1 . 5$ . Bottom left: $W = 2 . 0$ . Bottom right: $W = 4 . 0$ . Best view in color. + +Table 4: Comparison of performance in terms of maximum singular value of weights and layer size. “U” in the right most column indicates the accuracy of GCN without weight normalization. + +
Noisy Cora 2500
Depth1.05310U
10.389 ± 0.1010.429 ± 0.0900.552 ± 0.0140.632 ± 0.0070.587 ± 0.008
30.273 ± 0.0510.309 ± 0.0170.580± 0.0580.661 ± 0.0030.494 ± 0.041
50.319 ± 0.0000.267 ± 0.0590.462 ± 0.0650.602 ± 0.0040.326 ± 0.029
70.261 ± 0.0760.262 ±0.0800.407 ± 0.0210.501 ± 0.0170.279 ± 0.129
90.261 ± 0.0800.319 ± 0.0000.284 ± 0.1090.443 ± 0.0140.319 ± 0.000
Noisy Cora 5000
Maximum Singular Value
Depth11.1310U
10.301 ± 0.0800.333 ± 0.0990.557 ± 0.0040.561 ± 0.0190.555 ± 0.016
30.245 ± 0.0660.247 ± 0.0760.370 ± 0.0410.587 ± 0.0090.286 ± 0.066
50.274± 0.0480.237 ± 0.0700.257 ± 0.0760.535 ± 0.0310.319 ± 0.000
70.263 ± 0.0800.297 ± 0.0310.260 ± 0.0740.339 ± 0.0600.319 ± 0.000
90.262 ± 0.0810.258 ± 0.0640.262 ± 0.0800.261 ±0.0820.318 ± 0.002
Noisy CiteSeer
Maximum Singular Value
Depth0.51.1 310U
10.461 ± 0.0180.467 ± 0.0120.490 ± 0.0160.494 ± 0.0060.495 ± 0.009
30.438 ± 0.0270.436 ± 0.0100.450 ± 0.0190.462 ± 0.0070.417 ± 0.061
50.285 ± 0.0080.371 ± 0.0160.373 ± 0.0110.425 ± 0.0070.380 ± 0.024
70.213 ± 0.0060.282 ± 0.0110.309 ± 0.0120.385 ± 0.0070.308 ± 0.012
90.182 ± 0.0050.242 ± 0.0300.303 ± 0.0210.325 ± 0.0030.229 ± 0.033
Noisy Pubmed
Maximum Singular Value
Depth0.51.1310U
10.488 ± 0.0390.636 ± 0.0060.641 ± 0.0100.632 ± 0.0020.631 ± 0.010
30.442 ± 0.0270.426 ± 0.0260.658 ± 0.0040.661 ± 0.0050.631 ± 0.013
50.431 ± 0.0330.431 ± 0.0340.561 ± 0.0830.641 ± 0.0040.424 ± 0.093
70.428 ± 0.0320.443 ± 0.0510.449 ± 0.0350.619 ± 0.0110.440 ± 0.041
90.413 ± 0.0090.438 ± 0.0390.539 ± 0.0520.569 ± 0.0420.473 ± 0.031
+ +![](images/35ca2d11400a46fce3bca8218b146c3b3f571e569a0c3840aef09cad2b8441e8.jpg) +Figure 8: The actual distance $d _ { \mathcal { M } }$ to the invariant space $\mathcal { M }$ and the upper bound inferred by Theorem 1. The edge probability $p$ takes 0.01(top), 0.1, 0.9(bottom) and the maximum singular value $s$ takes $0 . 1 ( \mathrm { l e f t } ) , 1 . 0 , 1 0 ( \mathrm { r i g h t } )$ . Blue lines are the log relative distance defined by $\begin{array} { r } { y ( l ) : = \log \frac { d _ { \mathcal { M } } ( X ^ { ( l ) } ) } { d _ { \mathcal { M } } ( X ^ { ( 0 ) } ) } } \end{array}$ and orange dotted lines are upper bound $y ( l ) : = l \log ( s \lambda )$ , where $X ^ { ( 0 ) }$ is the input signal and $X ^ { ( l ) }$ is the output of the $l$ -th layer. Best view in color. + +![](images/e5a0ea6bac9839dd91cc7cc13ba7f7a7b0ff470526d0f4afb7388e35011ae897.jpg) +Figure 9: Effect of the maximum singular values of weights on predictive performance. Horizontal dotted lines indicate the chance rates $3 0 . 2 \%$ for Noisy Cora 5000, $2 1 . 2 \%$ for Noisy CiteSeer, and $3 9 . 9 \%$ for Noisy PubMed). The error bar is the standard deviation of 3 trials. Left: Noisy Cora 5000. Right: Noisy CiteSeer. Bottom: Noisy Pubmed. Best view in color. + +![](images/fbb64a2ad3ffb4819bd64e9f80ed2a25542f265d2c003b561d981ebe46bf9d83.jpg) +Figure 10: Transition of maximum singular values of GCN during training using Noisy Cora 2500. Top left: 1 layer. Top right: 5 layers. Bottom left: 7 layers. Bottom right: 9 layers. + +![](images/1f6937585cdf3a009373b92bd7684c89717d7794c270d219f6efef36b2ea759b.jpg) +Figure 11: Transition of maximum singular values of GCN during training using Noisy Cora 5000. Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers. + +![](images/370a0e6bddfbd9236178e95fde9473ffa8af793fdb6a431485b1c118dd5fa30b.jpg) +Figure 12: Transition of maximum singular values of GCN during training using Noisy CiteSeer. Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers. + +![](images/8af84ea100c71eb26aa2e941cecfd27c1136c5885b58d83ae02109b6e1ef5f4c.jpg) +Figure 13: Transition of maximum singular values of GCN during training using Noisy PubMed. Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers. + +![](images/8d0df2fb98721b929112213b1bfbe51f28bd6ef4fb7b8349a5cec2e5bf926177.jpg) +Figure 14: Logarithm of relative perpendicular component and prediction accuracy. Left: Noisy CiteSeer. Right: Noisy PubMed. $p$ in the title represents the $p$ -value for the Pearson R coefficients. \ No newline at end of file diff --git a/parse/train/S1ldO2EFPr/S1ldO2EFPr_content_list.json b/parse/train/S1ldO2EFPr/S1ldO2EFPr_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..214137646ce2c9103c9fdf8e04c318b89b15cd03 --- /dev/null +++ b/parse/train/S1ldO2EFPr/S1ldO2EFPr_content_list.json @@ -0,0 +1,3959 @@ +[ + { + "type": "text", + "text": "GRAPH NEURAL NETWORKS EXPONENTIALLY LOSE EXPRESSIVE POWER FOR NODE CLASSIFICATION ", + "text_level": 1, + "bbox": [ + 174, + 98, + 820, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Kenta Oono1, 2, Taiji Suzuki1, 3 {kenta oono, taiji}@mist.i.u-tokyo.ac.jp 1The University of Tokyo 2Preferred Networks, Inc. 3RIKEN Center for Advanced Intelligence Project (AIP) ", + "bbox": [ + 184, + 167, + 568, + 228 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 265, + 544, + 280 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Graph Neural Networks (graph NNs) are a promising deep learning approach for analyzing graph-structured data. However, it is known that they do not improve (or sometimes worsen) their predictive performance as we pile up many layers and add non-lineality. To tackle this problem, we investigate the expressive power of graph NNs via their asymptotic behaviors as the layer size tends to infinity. Our strategy is to generalize the forward propagation of a Graph Convolutional Network (GCN), which is a popular graph NN variant, as a specific dynamical system. In the case of a GCN, we show that when its weights satisfy the conditions determined by the spectra of the (augmented) normalized Laplacian, its output exponentially approaches the set of signals that carry information of the connected components and node degrees only for distinguishing nodes. Our theory enables us to relate the expressive power of GCNs with the topological information of the underlying graphs inherent in the graph spectra. To demonstrate this, we characterize the asymptotic behavior of GCNs on the Erdos – R˝ enyi graph. We show´ that when the Erdos – R ˝ enyi graph is sufficiently dense and large, a broad range ´ of GCNs on it suffers from the “information loss” in the limit of infinite layers with high probability. Based on the theory, we provide a principled guideline for weight normalization of graph NNs. We experimentally confirm that the proposed weight scaling enhances the predictive performance of GCNs in real data1. ", + "bbox": [ + 233, + 295, + 764, + 559 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 584, + 336, + 599 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Motivated by the success of Deep Learning (DL), several attempts have been made to apply DL models to non-Euclidean data, particularly, graph-structured data such as chemical compounds, social networks, and polygons. Recently, Graph Neural Networks (graph NNs) (Duvenaud et al., 2015; Li et al., 2016; Gilmer et al., 2017; Hamilton et al., 2017; Kipf & Welling, 2017; Nguyen et al., 2017; Schlichtkrull et al., 2018; Battaglia et al., 2018; Xu et al., 2019; Wu et al., 2019a) have emerged as a promising approach. However, despite their practical popularity, theoretical research of graph NNs has not been explored extensively. ", + "bbox": [ + 174, + 616, + 825, + 713 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The characterization of DL model expressive power, i.e., to identify what function classes DL models can (approximately) represent, is a fundamental question in theoretical research of DL. Many studies have been conducted for Fully Connected Neural Networks (FNNs) (Cybenko, 1989; Hornik, 1991; Hornik et al., 1989; Barron, 1993; Mhaskar, 1993; Sonoda & Murata, 2017; Yarotsky, 2017) and Convolutional Neural Networks (CNNs) (Petersen & Voigtlaender, 2018; Zhou, 2018; Oono & Suzuki, 2019). For such models, we have theoretical and empirical justification that deep and nonlinear architectures can enhance representation power (Telgarsky, 2016; Chen et al., 2018b; Zhou & Feng, 2018). However, for graph NNs, several papers have reported that node representations go indistinguishable (known as over-smoothing) and prediction performances severely degrade when we stack many layers (Kipf & Welling, 2017; Wu et al., 2019b; Li et al., 2018). Besides, Wu et al. (2019a) reported that graph NNs achieved comparable performance even if they removed intermediate non-linear functions. These studies posed a question about the current architecture and made us aware of the need for the theoretical analysis of the graph NN expressive power. ", + "bbox": [ + 174, + 719, + 825, + 900 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we investigate the expressive power of graph NNs by analyzing their asymptotic behaviors as the layer size goes to infinity. Our theory gives new theoretical conditions under which neither layer stacking nor non-linearity contributes to improving expressive power. We consider a specific dynamics that includes a transition defining a Markov process and the forward propagation of a Graph Convolutional Network (GCN) (Kipf & Welling, 2017), which is one of the most popular graph NN variants, as special cases. We prove that under certain conditions, the dynamics exponentially approaches a subspace that is invariant under the dynamics. In the case of GCN, the invariant space is a set of signals that correspond to the lowest frequency of graph spectra and that have “no information” other than connected components and node degrees for a node classification task whose goal is to predict the nodes’ properties in a graph. The rate of the distance between the output and the invariant space is ${ \\cal O } ( ( s \\lambda ) ^ { \\widehat { L } } )$ where $s$ is the maximum singular values of weights, $\\lambda$ is typically a quantity determined by the spectra of the (augmented) normalized Laplacian, and $L$ is the layer size. See Sections 3.3 (general case) and 4 (GCN case) for precise statements. ", + "bbox": [ + 174, + 103, + 825, + 284 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We can interpret our theorem as the generalization of the well-known property that if a finite and discrete Markov process is irreducible and aperiodic, it exponentially converges to a unique equilibrium and the eigenvalues of its transition matrix determine the convergence rate (see, e.g., Chung & Graham (1997)). Different from the Markov process case, which is linear, the existence of intermediate non-linear functions complicates the analysis. We overcame this problem by leveraging the combination of the ReLU activation function (Krizhevsky et al., 2012) and the positivity of eigenvectors of the Laplacian associated with the smallest positive eigenvalues. ", + "bbox": [ + 174, + 291, + 825, + 388 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our theory enables us to investigate asymptotic behaviors of graph NNs via the spectral distribution of the underlying graphs. To demonstrate this, we take GCNs defined on the Erdos – R ˝ enyi graph ´ $G _ { N , p }$ , which has $N$ nodes and each edge appears independently with probability $p$ , for an example. We prove that if log N $\\frac { \\log N } { p N } = o ( 1 )$ as a function of $N$ , any GCN whose weights have maximum singular values at most $\\begin{array} { r } { C \\sqrt { \\frac { N p } { \\log ( N / \\varepsilon ) } } } \\end{array}$ approaches the “information-less” invariant space with probability at least $1 - \\varepsilon$ , where $C$ is a universal constant. Intuitively, if the graph on which we define graph NNs is sufficiently dense, graph-convolution operations mix signals on nodes fast and hence the feature maps lose information for distinguishing nodes quickly. ", + "bbox": [ + 173, + 395, + 825, + 522 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our contributions are as follows: ", + "bbox": [ + 174, + 529, + 390, + 542 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "• We relate asymptotic behaviors of graph NNs with the topological information of underlying graphs via the spectral distribution of the (augmented) normalized Laplacian. • We prove that if the weights of a GCN satisfy conditions determined by the graph spectra, the output of the GCN carries no information other than the node degrees and connected components for discriminating nodes when the layer size goes to infinity (Theorems 1, 2). • We apply our theory to Erdos – R ˝ enyi graphs as an example and show that when the graph ´ is sufficiently dense and large, many GCNs suffer from the information loss (Theorem 3). • We propose a principled guideline for weight normalization of graph NNs and empirically confirm it using real data. ", + "bbox": [ + 215, + 556, + 825, + 698 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 717, + 344, + 734 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "MPNN-type Graph NNs. Since many graph NN variants have been proposed, there are several unified formulations of graph NNs (Gilmer et al., 2017; Battaglia et al., 2018). Our approach is the closest to the formulation of Message Passing Neural Network (MPNN) (Gilmer et al., 2017), which unified graph NNs in terms of the update and readout operations. Many graph NNs fall into this formulation such as Duvenaud et al. (2015), Li et al. (2016), and Velickovi ˇ c et al. (2018). ´ Among others, GCN (Kipf & Welling, 2017) is an important application of our theory because it is one of the most widely used graph NNs. In addition, GCNs are interesting from a theoretical research perspective because, in addition to an MPNN-type graph NN, we can interpret GCNs as a simplification of spectral-type graph NNs (Henaff et al., 2015; Defferrard et al., 2016), that make use of the graph Laplacian. ", + "bbox": [ + 174, + 750, + 825, + 888 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our approach, which considers the asymptotic behaviors graph NNs as the layer size goes to infinity, is similar to Scarselli et al. (2009), one of the earliest works about graph NNs. They obtained node representations by iterating message passing between nodes until convergence. Their formulation is general in that we can use any local aggregation operation as long as it is a contraction map. Our theory differs from theirs in that we proved that the output of a graph NN approaches a certain space even if the local aggregation function is not necessarily a contraction map. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 823, + 159 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Expressive Power of Graph NNs. Several studies have focused on theoretical analysis and the improvement of graph NN expressive power. For example, Xu et al. (2019) proved that graph NNs are no more powerful than the Weisfeiler – Lehman (WL) isomorphism test (Weisfeiler & A.A., 1968) and proposed a Graph Isomorphism Network (GIN), that is approximately as powerful as the WL test. Although they experimentally showed that GIN has improved accuracy in supervised learning tasks, their analysis was restricted to the graph isomorphism problem. Xu et al. (2018) analyzed the non-asymptotic properties of GCNs through the lens of random walk theory. They proved the limitations of GCNs in expander-like graphs and proposed a Jumping Knowledge Network (JKNet) to address the issue. To handle the non-linearity, they linearized networks by a randomization assumption (Choromanska et al., 2015). We take a different strategy and make use of the interpretation of ReLU as a projection onto a cone. Recently, NT & Maehara (2019) showed that a GCN approximately works as a low-pass filter plus an MLP in a certain setting. Although they analyzed finite-depth GCNs, our theory has similar spirits with theirs because our “information-less” space corresponds to the lowest frequency of a graph Laplacian. Another point is that they imposed assumptions that input signals consist of low-frequent true signals and high-frequent noise, whereas we need not such an assumption. ", + "bbox": [ + 174, + 166, + 825, + 388 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Role of Deep and Non-linear Structures. For ordinal DL models such as FNNs and CNNs, we have both theoretical and empirical justification of deep and non-linear architectures for enhancing of the expressive power (e.g., Telgarsky (2016); Petersen & Voigtlaender (2018); Oono & Suzuki (2019)). In contrast, several studies have witnessed severe performance degradation when stacking many layers on graph NNs (Kipf & Welling, 2017; Wu et al., 2019b). Li et al. (2018) reported that feature vectors on nodes in a graph go indistinguishable as we increase layers in several tasks. They named this phenomenon over-smoothing. Regarding non-linearity, Wu et al. (2019a) empirically showed that graph NNs achieve comparable performance even if we omit intermediate non-linearity. These observations gave us questions about the current models of deep graph NNs in terms of their expressive power. Several studies gave theoretical explanations of the over-smoothing phenomena for linear GNNs (Li et al., 2018; Zhang, 2019; Zhao & Akoglu, 2020). We can think of our theory as an extension of their results to non-linear GNNs. ", + "bbox": [ + 173, + 395, + 825, + 561 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 PROBLEM SETTING AND MAIN RESULT ", + "text_level": 1, + "bbox": [ + 176, + 584, + 532, + 601 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 NOTATION ", + "text_level": 1, + "bbox": [ + 174, + 616, + 287, + 631 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Let $\\mathbb { N } _ { + }$ be the set of positive integers. For $N \\in { \\mathbb { N } } _ { + }$ , we denote $[ N ] : = \\{ 1 , \\dots , N \\}$ . For a vector $v \\in \\mathbb { R } ^ { N }$ , we write $v \\geq 0$ if and only if $v _ { n } \\geq 0$ for all $n \\in [ N ]$ . Similarly, for a matrix $X \\in \\mathbb { R } ^ { N \\times C }$ , we write $X \\geq 0$ if and only if $X _ { n c } \\geq 0$ for all $n \\in [ N ]$ and $c \\in [ C ]$ . We say such a vector and matrix is non-negative. $\\langle \\cdot , \\cdot \\rangle$ denotes the inner product of vectors or matrices, depending on the context: $\\langle u , v \\rangle : = u ^ { \\top } v$ for $u , v \\in \\mathbb { R } ^ { N }$ and $\\langle X , Y \\rangle : = \\mathrm { t r } ( X ^ { T } Y )$ for $X , Y \\in \\mathbb { R } ^ { N \\times C }$ . ${ \\bf 1 } _ { P }$ equals to 1 if the proposition $P$ is true else 0. For vectors $v \\in \\mathbb { R } ^ { N }$ and $w \\in \\mathbb { R } ^ { C }$ , $v \\otimes w \\in \\mathbb { R } ^ { N \\times C }$ denotes the Kronecker product of $v$ and $w$ defined by $( v \\otimes w ) _ { n c } : = v _ { n } w _ { c } .$ . For $X \\in \\mathbb { R } ^ { N \\times C }$ , $\\| X \\| _ { \\mathrm { F } } : = \\langle X , X \\rangle ^ { \\frac { 1 } { 2 } }$ denotes the Frobenius norm of $X$ . For a vector $v \\in \\mathbb { R } ^ { N }$ , $\\mathrm { d i a g } ( v ) : = ( v _ { n } \\delta _ { n m } ) _ { n , m \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }$ denotes the diagonalization of $v$ . $I _ { N } \\in \\mathbb { R } ^ { N \\times N }$ denotes the identity matrix of size $N$ . For a linear operator $P : \\mathbb { R } ^ { \\tilde { N } } \\mathbb { R } ^ { M }$ and a subset $V \\subset \\mathbb { R } ^ { N }$ , we denote the restriction of $P$ to $V$ by $P | _ { V }$ . ", + "bbox": [ + 173, + 642, + 825, + 787 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.2 DYNAMICAL SYSTEM ", + "text_level": 1, + "bbox": [ + 176, + 805, + 364, + 820 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Although we are mainly interested in GCNs, we develop our theory more generally using dynamical systems. We will specialize to the GCNs in Section 4. ", + "bbox": [ + 174, + 832, + 821, + 861 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "For $N , C , H _ { l } \\ \\in \\ \\mathbb { N } _ { + }$ $( l \\in \\mathbb { N } _ { + } )$ , let $P \\in \\mathbb { R } ^ { N \\times N }$ be a symmetric matrix and $W _ { l h } \\ \\in \\ \\mathbb { R } ^ { C \\times C }$ for $l \\in \\mathbb { N } _ { + }$ and $h \\in \\lceil H _ { l } \\rceil$ . We define $f _ { l } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { \\mathbf { \\tilde { N } } \\times C }$ by $f _ { l } ( X ) \\ : = \\ \\mathrm { M L P } _ { l } ( P X )$ . Here, $\\mathrm { M L P } _ { l } : \\mathbb { R } ^ { N \\times C } \\to \\dot { \\mathbb { R } } ^ { N \\times C }$ is the $l$ -th multi-layer perceptron common to all nodes $\\mathrm { { . x u } }$ et al., 2019) and is defined by $\\mathrm { M L P } _ { l } ( X ) : = \\sigma ( \\cdots \\sigma ( \\sigma ( \\dot { X } ) \\bar { W } _ { l 1 } ) \\bar { W } _ { l 2 } \\cdot \\cdot \\cdot W _ { l H _ { l } } )$ , where $\\sigma : \\mathbb { R } ^ { \\dot { N } \\times C } \\mathbb { R } ^ { N \\times \\dot { C } }$ is an element-wise ReLU function (Krizhevsky et al., 2012) defined by $\\sigma ( X ) _ { n c } : = \\operatorname* { m a x } ( X _ { n c } , 0 )$ for $n \\in [ N ] , c \\in [ C ]$ . We consider the dynamics $X ^ { ( l + 1 ) } : = f _ { l } ( X ^ { ( l ) } )$ with some initial value $X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }$ . We are interested in the asymptotic behavior of $X ^ { ( l ) }$ as $l \\infty$ . ", + "bbox": [ + 174, + 866, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 825, + 150 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For $M \\leq N$ , let $U$ be a $M$ -dimensional subspace of $\\mathbb { R } ^ { N }$ . We assume that $U$ and $P$ satisfy the following properties that generalize the situation where $U$ is the eigenspace associated with the smallest eigenvalue of a (normalized) graph Laplacian $\\Delta$ (that is, zero) and $P$ is a polynomial of $\\Delta$ ", + "bbox": [ + 178, + 155, + 820, + 199 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumption 1. $U$ has an orthonormal basis $( e _ { m } ) _ { m \\in [ M ] }$ that consists of non-negative vectors. ", + "bbox": [ + 176, + 200, + 792, + 215 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Assumption 2. $U$ is invariant under $P$ , i.e., if $u \\in U$ , then $P u \\in U$ . ", + "bbox": [ + 174, + 217, + 624, + 232 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We endow $\\mathbb { R } ^ { N }$ with the ordinal inner product and denote the orthogonal complement of $U$ by $U ^ { \\perp } : =$ $\\{ u \\in \\mathbb { R } ^ { N } \\mid \\langle u , v \\rangle = 0 , \\forall v \\in U \\}$ . By the symmetry of $P$ , we can show that $U ^ { \\perp }$ is invariant under $P$ , too (Appendix E.1, Proposition 2). Therefore, we can regard $P$ as a linear mapping $P | _ { U ^ { \\perp } } :$ $U ^ { \\perp } \\to U ^ { \\perp }$ . We denote the operator norm of $P | _ { U ^ { \\perp } }$ by $\\lambda$ . When $U$ is the eigenspace associated with the smallest eigenvalue of $\\Delta$ and $P$ is $g ( \\Delta )$ where $g$ is a polynomial, then, $\\lambda$ corresponds to $\\begin{array} { r } { \\lambda = \\operatorname* { s u p } _ { \\mu } \\left| g ( \\mu ) \\right| } \\end{array}$ where sup ranges over all eigenvalues except the smallest one. ", + "bbox": [ + 173, + 241, + 825, + 325 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.3 MAIN RESULT ", + "text_level": 1, + "bbox": [ + 174, + 340, + 315, + 356 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "he subspace is the ortho $\\mathcal { M }$ of ma $\\mathbb { R } ^ { N \\times C }$ b of $\\begin{array} { r } { \\mathcal { M } : = U \\otimes \\mathbb { R } ^ { C } = \\{ \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes w _ { m } \\mid w _ { m } \\in \\mathbb { R } ^ { C } \\} } \\end{array}$ wheredenote $( e _ { m } ) _ { m \\in [ M ] }$ $U$ $X \\in \\mathbb { R } ^ { N \\times C }$ the distance between $X$ and $\\mathcal { M }$ by $d _ { \\mathcal { M } } ( X ) : = \\operatorname* { i n f } \\left\\{ \\| X - Y \\| _ { \\mathrm { F } } \\mid Y \\in \\mathcal { M } \\right\\}$ . We denote the maximum singular value of $W _ { l h }$ by $s _ { l h }$ and set $\\begin{array} { r } { s _ { l } : = \\prod _ { h = 1 } ^ { H _ { l } } s _ { l h } } \\end{array}$ . With these preparations, we introduce the main theorem of the paper. ", + "bbox": [ + 174, + 364, + 825, + 444 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Theorem 1. Under Assumptions 1 and 2, we have $d _ { \\mathcal { M } } ( f _ { l } ( X ) ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X )$ for any $X \\in \\mathbb { R } ^ { N \\times C }$ ", + "bbox": [ + 171, + 445, + 818, + 462 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The proof key is that the non-linear operation $\\sigma$ decreases the distance $d _ { \\mathcal { M } }$ , that is, $d _ { \\mathcal { M } } ( \\sigma ( \\boldsymbol { X } ) ) \\leq$ $d _ { \\mathcal { M } } ( \\boldsymbol { X } )$ . We use the non-negativity of $e _ { m }$ to prove this claim. See Appendix A for the complete proof. We also discuss the strictness of Theorem 1 in Appendix E.3. ", + "bbox": [ + 174, + 469, + 825, + 512 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "By setting $d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = 0$ , this theorem implies that $\\mathcal { M }$ is invariant under $f _ { l }$ . In addition, if the maximum value of singular values are small, $X ^ { ( l ) }$ asymptotically approaches $\\mathcal { M }$ in the sense of Johnson (1973) for any initial value $X ^ { ( 0 ) }$ . That is, the followings hold under Assumptions 1 and 2. ", + "bbox": [ + 174, + 517, + 826, + 564 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Corollary 1. $\\mathcal { M }$ is invariant under fl for any $l \\in \\mathbb { N } _ { + }$ , that is, if $X \\in \\mathcal { M }$ , then we have $f _ { l } ( X ) \\in \\mathcal { M }$ . ", + "bbox": [ + 174, + 565, + 825, + 582 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Corollary 2. Let $s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }$ . We have $d _ { \\mathcal { M } } ( X ^ { ( l ) } ) = O ( ( s \\lambda ) ^ { l } )$ . In particular, if $s \\lambda < 1$ , then $X _ { l }$ exponentially approaches $\\mathcal { M }$ as $l \\infty$ for any initial value $X ^ { ( 0 ) }$ . ", + "bbox": [ + 174, + 583, + 821, + 617 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Suppose the operator norm of $P | _ { U } : U \\to U$ is no larger than $\\lambda$ , then, under the assumption of $s \\lambda < 1$ , $X ^ { ( l ) }$ converges to 0, the trivial fixed point (see Appendix E.2, Proposition 3). Therefore, we are mainly interested in the case where the operator norm of $P | _ { U }$ is strictly larger than $\\lambda$ (see Proposition 1). Finally, we restate Theorem 1 specialized to the situation where $U$ is the direct sum of eigenspaces associated with the largest $M$ eigenvalues of $P$ . Note that the eigenvalues of $P$ is real since $P$ is symmetric. ", + "bbox": [ + 173, + 626, + 825, + 712 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Corollary 3. Let $\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }$ be the eigenvalue of $P$ , sorted in ascending order. Suppose the multiplicity of the largest eigenvalue $\\lambda _ { N }$ is $M ( \\leq N )$ , i.e., $\\lambda _ { N - M } < \\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N }$ . We define $\\lambda : = \\operatorname* { m a x } _ { n \\in [ N - M ] } \\left| \\lambda _ { n } \\right|$ . We denote $U$ by the eigenspace associated with $\\lambda _ { N }$ and assume that $U$ satisfies Assumption 1. Then, we have $d _ { \\mathcal { M } } ( X ^ { ( l + 1 ) } ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X ^ { ( l ) } ) .$ . ", + "bbox": [ + 173, + 714, + 825, + 775 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Remark 1. It is known that any Markov process on finite states converges to a unique distribution (equilibrium) if it is irreducible and aperiodic (see e.g., Norris (1998)). Theorem $^ { l }$ includes this proposition as a special case with $M = 1$ , $C = 1$ , and $W _ { l } = 1$ for all $l \\in \\mathbb { N } _ { + }$ . This is essentially the direct consequence of Perron – Frobenius’ theorem (see e.g., Meyer (2000)). See Appendix $F$ . ", + "bbox": [ + 174, + 775, + 825, + 833 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4 APPLICATION TO GCN ", + "text_level": 1, + "bbox": [ + 176, + 851, + 397, + 867 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "We formulate a GCN (Kipf & Welling, 2017) without readout operations (Gilmer et al., 2017) using the dynamical system in the previous section and derive a sufficient condition in terms of the spectra of underlying graphs in which layer stacking nor non-linearity are not helpful for node classification. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Let $G = ( V , E )$ be an undirected graph where $V$ is a set of nodes and $E$ is a set of edges. We denote the number of nodes in $G$ by $N = | V |$ and identify $V$ with $[ N ]$ by fixing an order of $V$ . We associate a $C$ dimensional signal to each node. $X$ in the previous section corresponds to concatenation of the signals. GCNs iteratively update signals on $V$ using the connection information and weights. ", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Let $A : = ( \\mathbf { 1 } _ { \\{ ( i , j ) \\in E \\} } ) _ { i , j \\in [ N ] } \\ \\in \\ \\mathbb { R } ^ { N \\times N }$ be the adjacency matrix and $D : = \\mathrm { d i a g } ( \\deg ( i ) _ { i \\in [ N ] } ) \\ \\in$ $\\mathbb { R } ^ { N \\times N }$ be the degree matrix of $G$ where $\\deg ( i ) : = | \\{ j \\in V \\mid ( i , j ) \\in E \\} |$ is the degree of node $i$ . Let ${ \\tilde { A } } : = A + I _ { N }$ , ${ \\tilde { D } } : = D + I _ { N }$ be the adjacent and degree matrix of graph $G$ augmented with self-loops. We define the augmented normalized Laplacian (Wu et al., 2019a) of $G$ by $\\tilde { \\Delta } : =$ $I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }$ and set $P : = I _ { N } - \\tilde { \\Delta }$ . Let $L , C \\in \\mathbb { N } _ { + }$ be the layer and channel sizes, respectively. For weights $W _ { l } \\in \\mathbb { R } ^ { C \\times C }$ $( l \\in [ L ] )$ , we define a $\\mathrm { G C N } ^ { 2 }$ associated with $G$ by $f = f _ { L } \\circ \\cdot \\cdot \\cdot \\circ f _ { 1 }$ where $f _ { l } : \\mathbb { R } ^ { \\breve { N } \\times C } \\mathbb { R } ^ { N \\times C }$ is defined by $f _ { l } ( X ) : = \\sigma ( P X W _ { l } )$ . We are interested in the asymptotic behavior of the output $X ^ { ( L ) }$ of the GCN as $L \\to \\infty$ . ", + "bbox": [ + 173, + 165, + 825, + 287 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Suppose $G$ has $M$ connected components and let $V = V _ { 1 } \\sqcup \\cdots \\sqcup V _ { M }$ be the decomposition of the node set $V$ into connected components. We denote an indicator vector of the $m$ -th connected component by $u _ { m } : = ( \\mathbf { 1 } _ { \\{ n \\in V _ { m } \\} } ) _ { n \\in [ N ] } \\in \\mathbb { R } ^ { N }$ . The following proposition shows that GCN satisfies the assumption of Corollay 3 (see Appendix B for proof). ", + "bbox": [ + 174, + 295, + 825, + 352 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Proposition 1. Let $\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }$ be the eigenvalue of $P$ sorted in ascending order. Then, we have $- 1 < \\lambda _ { 1 }$ , $\\lambda _ { N - M } ~ < ~ 1$ , and $\\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N } = 1$ . In particular, we have $\\lambda : =$ $\\begin{array} { r } { \\operatorname* { m a x } _ { n = 1 , \\dots , N - M } | \\lambda _ { n } | < 1 } \\end{array}$ . Further, $e _ { m } : = \\tilde { D } ^ { \\frac { 1 } { 2 } } u _ { m }$ for $m \\in [ M ]$ are the basis of the eigenspace associated with the eigenvalue 1. ", + "bbox": [ + 174, + 354, + 825, + 414 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 2. For any initial value $X ^ { ( 0 ) }$ , the output of l-th layer $X ^ { ( l ) }$ satisfies $d _ { \\mathcal { M } } ( X ^ { ( l ) } ) ~ \\leq$ $( s \\lambda ) ^ { l } d _ { \\mathcal { M } } ( X ^ { ( 0 ) } )$ . In particular, $d _ { \\mathcal { M } } ( { \\boldsymbol { X } } ^ { ( l ) } )$ exponentially converges to 0 when $s \\lambda < 1$ . ", + "bbox": [ + 176, + 416, + 823, + 449 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In the context of node classification tasks, we can interpret this corollary as the “information loss” of GCNs in the limit of infinite layers. For any $X \\in { \\mathcal { M } }$ , if two nodes $i , j \\in V$ are in a same connected component and their degrees are identical, then, the column vectors of $X$ that correspond to nodes $i$ and $j$ are identical. It means that we cannot distinguish these nodes using $X$ . In this sense, $\\mathcal { M }$ only has information about connected components and node degrees and we can interpret this theorem as the exponential information loss of GCNs in terms of the layer size. Similarly to the discussion in the previous section, $X ^ { ( l ) }$ converges to the trivial fixed point 0 when $s < 1$ (remember $\\lambda _ { N } = 1$ ). An interesting point is that even if $s \\geq 1$ , $X ^ { ( l ) }$ can suffer from this information loss when $s < \\lambda ^ { - 1 }$ . ", + "bbox": [ + 173, + 459, + 825, + 574 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We note that the rate $s \\lambda$ in Theorem 2 depends on the spectra of the augmented normalized Laplacian, which is determined by the topology of the underlying graph $G$ . Hence, our result explicitly relates the topological information of graphs and asymptotic behaviors of graph NNs. ", + "bbox": [ + 176, + 580, + 821, + 622 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Remark 2. The old preprint (version 2) of Luan et al. (2019) formulated a theorem that explains the over-smoothing of non-linear GNNs. Specifically, it claimed that if a graph does not have a bipartite component and the input distribution is continuous, the rank of the output of a GCN converges to the number of connected components of the underlying graph as the layer size goes to infinity almost surely. However, it is not true in general as we give a counterexample in Appendix $C$ . ", + "bbox": [ + 173, + 626, + 825, + 696 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "5 ASYMPTOTIC BEHAVIOR OF GCN ON ERDOS˝ – RENYI ´ GRAPH ", + "text_level": 1, + "bbox": [ + 176, + 715, + 722, + 733 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Theorem 2 gives us a way to characterize the asymptotic behaviors of GCNs via the spectral distributions of the underlying graphs. To demonstrate this, we consider an Erdos – R ˝ enyi graph ´ $G _ { N , p }$ (Erdos & R ¨ enyi, 1959; Gilbert, 1959), which is a random graph that has ´ $N$ nodes and whose edges between two distinct nodes appear independently with probability $p \\in [ 0 , 1 ]$ , as an example. First, consider a (non-random) graph $G$ with $M$ connected components. Let $0 = \\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } <$ $\\tilde { \\mu } _ { M + 1 } \\leq \\dots \\leq \\tilde { \\mu } _ { N } < 2$ be eigenvalues of the augmented normalized Laplacian of $G$ (see, Proposition 1) and set $\\begin{array} { r } { \\lambda : = \\operatorname* { m i n } _ { m = M + 1 , \\ldots , N } | 1 - \\tilde { \\mu } _ { m } | ( < 1 ) } \\end{array}$ . By Theorem 2, the output of GCN “loses information” as the layer size goes to infinity when the largest singular values of weights are strictly smaller than $\\lambda ^ { - 1 }$ . Therefore, the closer the positive eigenvalues $\\mu _ { m }$ are to 1, the broader range of GCNs satisfies the assumption of Theorem 2. ", + "bbox": [ + 173, + 747, + 825, + 887 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/52ed0a06decf73aeea33aba4d223d5646b9ee3b007a61062524feaa9a9984ba1.jpg", + "image_caption": [ + "Figure 1: Visualization of vector field $V ( X ) : = f ( X ) - X$ induced by the one-step transition. Color maps indicate the absolute value $| V ( X ) |$ at the point $X$ . Dotted lines are the subspace $\\mathcal { M }$ . Left: Case 1. Right: Case 2. Best view in color. " + ], + "image_footnote": [], + "bbox": [ + 245, + 111, + 732, + 261 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For an Erdos – R ˝ enyi graph ´ $G _ { N , p }$ , Chung & Radcliffe (2011) showed that when $\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}$ , the eigenvalues of the (usual) normalized Laplacian except for the smallest one converge to 1 with high probability (see Theorem 2 therein)3. We can interpret this theorem as the convergence of Erdos- ˝ Renyi graphs to the complete graph in terms of graph spectra. We can prove that the augmented ´ normalized Laplacian behaves similarly (Lemma 6). By combining this fact with the discussion in the previous paragraph, we obtain the asymptotic behavior of GCNs on the Erdos – R ˝ enyi graph. ´ See Appendix D for the complete proof. ", + "bbox": [ + 173, + 351, + 825, + 453 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3. Consider a GCN on the Erdos-R ˝ enyi graph ´ $G _ { N , p }$ such that $\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}$ as a function \nof $N$ . For any $\\varepsilon > 0$ , if the supremum s of the maximum singular values of weights in the GCN \nsatisfies s < s0 := 17 q $\\begin{array} { r } { s < s _ { 0 } : = \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } } } \\end{array}$ then, for sufficiently large $N$ , the GCN satisfies the condition of , \nTheorem 2 with probability at least $1 - \\varepsilon$ . ", + "bbox": [ + 174, + 457, + 825, + 527 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3 requires that an underlying graph is not extremely sparse. For example, suppose the node size is $N = 2 0 , 0 0 0$ , which is the approximately the maximum node size of datasets we use in experiments, and the edge probability is $p = \\log N / N$ . Then, each node has the order of $N p \\approx 4 . 3$ adjacent nodes. ", + "bbox": [ + 174, + 539, + 825, + 594 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Under the condition of Theorem 3, the upper bound $s _ { 0 } \\to \\infty$ as $N \\to \\infty$ . It means that if the graph is sufficiently large and not extremely sparse, most GCNs suffer from the information loss. For the dependence on the edge probability $p$ , $s _ { 0 }$ is an increasing function of $p$ , which means the denser a graph is, the more quickly graph convolution operations mix signals on nodes and move them close to each other. ", + "bbox": [ + 174, + 602, + 825, + 671 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Theorem 3 implies that graph NNs perform poorly on dense NNs. More aggressively, we can hypothesize that the sparsity of practically available graphs is one of the reasons for the success of graph NNs in node classification tasks. To confirm this hypothesis, we artificially add edges to citation networks to make them dense in the experiments and observe the failure of graph NNs as expected (see Section 6.3). ", + "bbox": [ + 174, + 678, + 825, + 748 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "6 EXPERIMENT ", + "text_level": 1, + "bbox": [ + 176, + 770, + 316, + 785 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "6.1 SYNTHESIS DATA: ONE-STEP TRANSITION ", + "text_level": 1, + "bbox": [ + 174, + 801, + 511, + 816 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We numerically investigate how the transition $f ( X ) : = \\sigma ( P X W )$ changes inputs using the vector field $V ( X ) : = { f ( X ) } - { X ^ { 4 } }$ . For this purpose, we set $N = 2$ , $M = 1$ , and $C = 1$ . Let $\\lambda _ { 1 } \\leq \\lambda _ { 2 }$ be the eigenvalues of $P$ . We choose $W$ as $| \\lambda _ { 2 } | ^ { - 1 } \\le W < | \\lambda _ { 1 } | ^ { - 1 }$ so that Theorem 1 is applicable but is not reduced to the trivial situation (see, Appendix E.2). We choose the eigenvector $\\bar { \\boldsymbol { e } } \\in \\mathbb { R } ^ { 2 }$ associated with $\\lambda _ { 2 }$ in two ways as described below. See Appendix H.1 for the concrete values of $P$ , $e$ , and $W$ . Figure 1 shows the visualization of $V$ . First, we choose the non-negative eigenvector $e$ so that it satisfies Assumption 1 (Case 1). We see that the transition function $f$ uniformly decreases the distance from $\\mathcal { M }$ . This is consistent with the consequence of Theorem 1. Next, we choose the eigenvector $\\boldsymbol { e } = \\left[ e _ { 1 } \\quad e _ { 2 } \\right] ^ { \\intercal }$ such that the signs of $e _ { 1 }$ and $e _ { 2 }$ differ (Case 2), which violates Assumption 1. We see that $\\mathcal { M }$ is not invariant under $f$ and $f$ does not uniformly decrease the distance from $\\mathcal { M }$ . Therefore, we cannot remove the non-negativity assumption from Theorem 1. ", + "bbox": [ + 174, + 827, + 825, + 885 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/2aeca4d04f65609a1fa1584f41938b2120f8df09b7dfae3a4549ab38b22e533d.jpg", + "image_caption": [ + "Figure 2: The actual distances to the invariant space $\\mathcal { M }$ and their upper bounds. Solid lines are the log relative distance defined by $y ( l ) = \\log ( d _ { \\mathcal { M } } ( \\mathbf { \\bar { { X } } } ^ { ( l ) } ) / d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) )$ and dotted lines are upper bound $y ( l ) = l \\log ( s \\lambda )$ , where $X ^ { ( 0 ) }$ is the input signal and $X ^ { ( l ) }$ is the output of the $l$ -th layer. " + ], + "image_footnote": [], + "bbox": [ + 246, + 107, + 750, + 261 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/8900fa8d6997b22156aeea03d2008a13643ccde54ceb13a5e4d7e973496948c4.jpg", + "image_caption": [ + "Figure 3: Node prediction results on Noisy Cora. Left: Effect of the maximum singular values on weights on model performance. The horizontal dotted line indicates the chance rate $( 3 0 . 2 \\% )$ . The error bar is the standard deviation of 3 trials. Right: Transition of maximum singular values during training. See Appendix I.3 for results using other datasets. Best view in color. " + ], + "image_footnote": [], + "bbox": [ + 178, + 348, + 812, + 486 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 585, + 825, + 686 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6.2 SYNTHESIS DATA: DISTANCE TO INVARIANT SPACE ", + "text_level": 1, + "bbox": [ + 171, + 703, + 575, + 718 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We evaluate the distance to the invariant space $\\mathcal { M }$ using synthesis data. We randomly generate an Erdos – R ˝ enyi graph, a GCN on it, and an input signal ´ $X ^ { ( 0 ) }$ . We compute the distance between the $l$ - th intermediate output $X ^ { ( l ) }$ and the invariant space $\\mathcal { M }$ for various edge probability $p$ and maximum singular value s. Figure 2 plots the logarithm of the relative distance y(l) = log dM(X(l))dM(X(0)) with respect to the layer index $l$ . From Theorem 1, we know that it is upper bounded by $y ( l ) = l \\log ( s \\lambda )$ . We see that this bound well approximates the actual value when $s \\lambda$ is small. On the other hand, it is loose for large $s \\lambda$ . We leave tighter bounds for $d _ { \\mathcal { M } }$ in such a case for future research. ", + "bbox": [ + 173, + 729, + 825, + 839 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "6.3 REAL DATA: EFFECT OF MAXIMUM SINGULAR VALUES ON PERFORMANCE ", + "text_level": 1, + "bbox": [ + 176, + 856, + 736, + 869 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Theorem 2 implies that if $s$ is smaller than the threshold $\\lambda ^ { - 1 }$ , we cannot expect deep GCN to achieve good prediction accuracy. Conversely, if we can successfully train the model, $s$ should avoid the region $s \\leq \\lambda ^ { - 1 }$ . We empirically confirm these hypotheses using real datasets. ", + "bbox": [ + 176, + 881, + 823, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We use Cora, CiteSeer, and PubMed (Sen et al., 2008), which are standard citation network datasets. The task is to classify the genre of papers using word occurrences and citation relationships. We regard each paper as a node and citation relationship as an edge. Due to space constraints, we focus on Cora in the main article. See Appendix H.3 and I.3 for the other datasets. The discussion in Section 5 implies that Theorem 2 can support a wide range of GCNs when the underlying graph is relatively dense. However, the citation networks are too sparse to examine the aforementioned hypotheses — Theorem 2 gives a non-trivial result only when $\\stackrel { \\cdot } { 1 } \\leq s < \\lambda ^ { - 1 } \\approx 1 + 3 . 6 2 \\times 1 0 ^ { - 3 }$ . To circumvent this, we make noisy versions of citation networks by randomly adding edges to graphs. Through this manipulation, we can increase the value of $\\lambda ^ { - 1 }$ to 1.11. ", + "bbox": [ + 174, + 103, + 825, + 228 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Figure 3 (left) shows the accuracy for the test dataset in terms of the maximum singular values and the number of graph convolution layers. We can observe that when GCNs whose maximum singular value $s$ is out of the region $s \\ < \\ \\lambda ^ { - 1 }$ outperform those inside the region in almost all configurations. Furthermore, the accuracy of GCNs with $s ~ = ~ 1 0$ are better than those without normalization (unnormalized). Figure 3 (right) shows the transition of the maximum singular values of the weights during training when we use a three-layered GCN. We can observe that the maximum singular value $s$ does not shrink to the region $s \\leq \\lambda ^ { - 1 }$ . In addition, when the layer size is small and predictive accuracy is high, GCNs gradually increase $s$ from the initial value and avoid the region. In conclusion, the experiment results are consistent with the theorems. ", + "bbox": [ + 174, + 236, + 825, + 361 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6.4 REAL DATA: EFFECT OF SIGNAL COMPONENT PERPENDICULAR TO INVARIANT SPACE ", + "bbox": [ + 176, + 382, + 812, + 396 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "We can decompose the output $X$ of a model as $X = X _ { 0 } + X _ { 1 }$ $( X _ { 0 } \\in \\mathcal { M } , \\bar { X _ { 1 } } \\in \\mathcal { M } ^ { \\perp } )$ . According to the theory, $X _ { 0 }$ has limited information for node classification. We hypothesize that the model emphasizes the perpendicular component $X _ { 1 }$ to perform good predictions. To quantitatively evaluate it, we define the relative magnitude of the perpendicular component of the output $X$ by $t ( \\mathbf { \\bar { \\boldsymbol { X } } } ) : = \\boldsymbol { X } _ { 1 } / \\boldsymbol { X } _ { 0 } ^ { \\mathbf { \\bar { \\alpha } } }$ . Figure 4 compares this quantity and the prediction accuracy on the noisy version of Cora (see Appendix I.4 for other datasets). We observe that these two quantities are correlated $R = 0 . 5 4 5 )$ ). If we remove GCNs have only one layer (corresponding to right points in the figure), the correlation coefficient is 0.827. This result does not contradict to the hypothesis above 5. ", + "bbox": [ + 174, + 410, + 580, + 590 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/ca029b92d1bfb0988aea15f768e174e2b67f0ad352d4ddba46a86c712446b225.jpg", + "image_caption": [ + "Figure 4: $\\log t ( X )$ and prediction accuracy on Noisy Cora. " + ], + "image_footnote": [], + "bbox": [ + 607, + 410, + 808, + 568 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "7 DISCUSSION ", + "text_level": 1, + "bbox": [ + 176, + 614, + 310, + 632 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Applicability to Graph NNs on Sparse Graphs. We have theoretically and empirically shown that when the underlying graph is sufficiently dense and large, the threshold $\\lambda ^ { - 1 }$ is large (Theorem 2 and Section 6.3), which means many graph CNNs are eligible. However, real-world graphs are not often dense, which means that Theorem 2 is applicable to very limited GCNs. In addition, CojaOghlan (2007) theoretically proved that if the expected average degree of $G _ { N , p }$ is bounded, the smallest positive eigenvalue of the normalized Laplacian of $G _ { N , p }$ is $o ( 1 )$ with high probability. The asymptotic behaviors of graph NNs on sparse graphs are left for future research. ", + "bbox": [ + 174, + 648, + 823, + 747 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Remedy for Over-smoothing. Based on our theory, we can propose several techniques for mitigating the over-smoothing phenomena. One idea is to (randomly) sample edges in an underlying graph. The sparsity of practically available graphs could be a factor in the success of graph NNs. Assuming this hypothesis is correct, there is a possibility that we can relive the effect of over-smoothing by sparsification. Since we can never restore the information in pruned edges if we remove them permanently, random edge sampling could work better as FastGCN (Chen et al., 2018a) and GraphSAGE (Hamilton et al., 2017) do. Another idea is to scale node representations (i.e., intermediate or final output of graph NNs) appropriately so that they keep away from the invariant space $\\mathcal { M }$ . Our proposed weight scaling mechanism takes this strategy. Recently, Zhao & Akoglu (2020) has proposed PairNorm to alleviate the over-smoothing phenomena. Although the scaling target is different – they rescaled signals whereas we normalized weights – theirs and ours have similar spirits. ", + "bbox": [ + 174, + 753, + 825, + 880 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 821, + 132 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Graph NNs with Large Weights. Our theory suggests that the maximum singular values of weights in a GCN should not be smaller than a threshold $\\bar { \\lambda } ^ { - 1 }$ because it suffers from information loss for node classification. On the other hand, if the scale of weights are very large, the model complexity of the function class represented by graph NNs increases, which may cause large generalization errors. Therefore, from a statistical learning theory perspective, we conjecture that the graph NNs with too-large weights perform poorly, too. A trade-off should exist between the expressive power and model complexity and there should be a “sweet spot” on the weight scale that balances the two. ", + "bbox": [ + 174, + 138, + 823, + 236 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Relation to Double Descent Phenomena. Belkin et al. (2019) pointed out that modern deep models often have double descent risk curves: when a model is under-parameterized, a classical biasvariance trade-off occurs. However, once the model has a large capacity and perfectly fits the training data, the test error decreases as we increase the number of parameters. To the best of our knowledge, no literature reported the double descent phenomena for graph NNs (it is consistent with the picture of the classical U-shaped risk curve in the previous paragraph). It is known that double descent phenomena do not occur in some situations, especially depending on regularization types. For example, while Belkin et al. (2019) employed the interpolating hypothesis with the minimum norm, Mei & Montanari (2019) found that the double descent was alleviated or disappeared when they used Ridge-type regularization techniques. Therefore, one can hypothesize the over-smoothing is a cause or consequence of regularization that is more like a Ridge-type rather than minimum-norm inductive bias. ", + "bbox": [ + 174, + 243, + 825, + 410 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Limitations in Graph NN Architectures. Our analysis is limited to graph NNs with the ReLU activation function because we implicitly use the property that ReLU is a projection onto the cone $\\{ X \\geq 0 \\}$ (Appendix A, Lemma 3). This fact enables the ReLU function to get along with the nonnegativity of eigenvectors associated with the largest eigenvalues. Therefore, it is far from trivial to extend our results to other activation functions such as the sigmoid function or Leaky ReLU (Maas et al., 2013). Another point is that our formulation considers the update operation (Gilmer et al., 2017) of graph NNs only and does not take readout operations into account. In particular, we cannot directly apply our theory to graph classification tasks in which each sample is a graph. ", + "bbox": [ + 173, + 416, + 825, + 529 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Over-smoothing of Residual GNNs. Considering the correspondence of graph NNs and Markov processes (see Appendix F), one can imagine that residual links do not contribute to alleviating the over-smoothing phenomena because adding residual connections to a graph NN corresponds to converting a Markov process to its lazy version. When a Markov process converges to a stable distribution, the corresponding lazy process also converges eventually under certain conditions. It implies that residual links might not be helpful. However, Li et al. (2019) reported that graph NNs with as many as 56 layers performed well if they added residual connections. Considering that, the situation could be more complicated than our intuitions. The analysis of the role of residual connections in graph NNs is a promising direction for future research. ", + "bbox": [ + 174, + 535, + 825, + 660 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "8 CONCLUSION ", + "text_level": 1, + "bbox": [ + 174, + 699, + 318, + 715 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this paper, to understand the empirically observed phenomena that deep non-linear graph NNs do not perform well, we analyzed their asymptotic behaviors by interpreting them as a dynamical system that includes GCN and Markov process as special cases. We gave theoretical conditions under which GCNs suffer from the information loss in the limit of infinite layers. Our theory directly related the expressive power of graph NNs and topological information of the underlying graphs via spectra of the Laplacian. It enabled us to leverage spectral and random graph theory to analyze the expressive power of graph NNs. To demonstrate this, we considered GCN on the Erdos – R ˝ enyi ´ graph as an example and showed that when the underlying graph is sufficiently dense and large, a wide range of GCNs on the graph suffer from information loss. Based on the theory, we gave a principled guideline for how to determine the scale of weights of graph NNs and empirically showed that the weight normalization implied by our theory performed well in real datasets. One promising direction of research is to analyze the optimization and statistical properties such as the generalization power (Verma & Zhang, 2019) of graph NNs via spectral and random graph theories. ", + "bbox": [ + 174, + 743, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 104, + 326, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We thank Katsuhiko Ishiguro for providing a part of code for the experiments, Kohei Hayashi and Haru Negami Oono for giving us feedback and comments on the draft, Keyulu Xu and anonymous reviewers for fruitful discussions via OpenReview, and Ryuta Osawa for pointing out errors and suggesting improvements of the paper. TS was partially supported by JSPS KAKENHI (15H05707, 18K19793, and 18H03201), Japan Digital Design, and JST CREST. ", + "bbox": [ + 174, + 127, + 825, + 196 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 218, + 285, + 233 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Takuya Akiba, Shotaro Sano, Toshihiko Yanase, Takeru Ohta, and Masanori Koyama. Optuna: A next-generation hyperparameter optimization framework. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’19, pp. 2623–2631, New York, NY, USA, 2019. ACM. ISBN 978-1-4503-6201-6. doi: 10.1145/3292500. 3330701. ", + "bbox": [ + 174, + 242, + 825, + 310 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Dana Angluin and Leslie G Valiant. Fast probabilistic algorithms for hamiltonian circuits and matchings. Journal of Computer and system Sciences, 18(2):155–193, 1979. ", + "bbox": [ + 173, + 320, + 821, + 349 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Andrew R Barron. Universal approximation bounds for superpositions of a sigmoidal function. IEEE Transactions on Information theory, 39(3):930–945, 1993. ", + "bbox": [ + 173, + 358, + 820, + 387 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Peter W Battaglia, Jessica B Hamrick, Victor Bapst, Alvaro Sanchez-Gonzalez, Vinicius Zambaldi, Mateusz Malinowski, Andrea Tacchetti, David Raposo, Adam Santoro, Ryan Faulkner, et al. Relational inductive biases, deep learning, and graph networks. arXiv preprint arXiv:1806.01261, 2018. ", + "bbox": [ + 173, + 395, + 825, + 452 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Mikhail Belkin, Daniel Hsu, Siyuan Ma, and Soumik Mandal. Reconciling modern machinelearning practice and the classical bias–variance trade-off. Proceedings of the National Academy of Sciences, 116(32):15849–15854, 2019. ", + "bbox": [ + 173, + 460, + 825, + 503 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "James S. Bergstra, Remi Bardenet, Yoshua Bengio, and Bal ´ azs K ´ egl. Algorithms for hyper- ´ parameter optimization. In Advances in Neural Information Processing Systems 24, pp. 2546– 2554. Curran Associates, Inc., 2011. ", + "bbox": [ + 173, + 512, + 826, + 554 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jie Chen, Tengfei Ma, and Cao Xiao. FastGCN: Fast learning with graph convolutional networks via importance sampling. In International Conference on Learning Representations, 2018a. URL https://openreview.net/forum?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =$ rytstxWAW. ", + "bbox": [ + 173, + 563, + 823, + 606 + ], + "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 Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 873–882. PMLR, 10–15 Jul 2018b. ", + "bbox": [ + 174, + 614, + 825, + 670 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Anna Choromanska, Yann LeCun, and Gerard Ben Arous. Open problem: The landscape of the ´ loss surfaces of multilayer networks. In Peter Grunwald, Elad Hazan, and Satyen Kale (eds.), ¨ Proceedings of The 28th Conference on Learning Theory, volume 40 of Proceedings of Machine Learning Research, pp. 1756–1760. PMLR, 2015. ", + "bbox": [ + 173, + 680, + 825, + 737 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fan Chung and Linyuan Lu. Connected components in random graphs with given expected degree sequences. Annals of combinatorics, 6(2):125–145, 2002. ", + "bbox": [ + 173, + 744, + 821, + 773 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fan Chung and Mary Radcliffe. On the spectra of general random graphs. the electronic journal of combinatorics, 18(1):215, 2011. ", + "bbox": [ + 173, + 782, + 823, + 811 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fan Chung, Linyuan Lu, and Van Vu. The spectra of random graphs with given expected degrees. Internet Mathematics, 1(3):257–275, 2004. ", + "bbox": [ + 173, + 820, + 821, + 849 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Fan RK Chung and Fan Chung Graham. Spectral graph theory. Number 92 in CBMS Regional Conference Series in Mathematics. American Mathematical Soc., 1997. ", + "bbox": [ + 173, + 858, + 821, + 887 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Amin Coja-Oghlan. On the laplacian eigenvalues of $G _ { n , p }$ . Combinatorics, Probability and Computing, 16(6):923–946, 2007. ", + "bbox": [ + 173, + 895, + 821, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "George Cybenko. Approximation by superpositions of a sigmoidal function. Mathematics of control, signals and systems, 2(4):303–314, 1989. ", + "bbox": [ + 171, + 103, + 821, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Michael Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks¨ on graphs with fast localized spectral filtering. In Advances in Neural Information Processing Systems 29, pp. 3844–3852. Curran Associates, Inc., 2016. ", + "bbox": [ + 174, + 142, + 821, + 184 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "David K Duvenaud, Dougal Maclaurin, Jorge Iparraguirre, Rafael Bombarell, Timothy Hirzel, Alan Aspuru-Guzik, and Ryan P Adams. Convolutional networks on graphs for learning molecular fingerprints. In Advances in Neural Information Processing Systems 28, pp. 2224–2232. Curran Associates, Inc., 2015. ", + "bbox": [ + 173, + 194, + 825, + 251 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Paul Erdos and Alfr ¨ ed R ´ enyi. On random graphs I. ´ Publicationes Mathematicae (Debrecen), 6: 290–297, 1959. ", + "bbox": [ + 173, + 261, + 820, + 290 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Edgar N Gilbert. Random graphs. The Annals of Mathematical Statistics, 30(4):1141–1144, 1959. ", + "bbox": [ + 173, + 299, + 818, + 314 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "C Lee Giles, Kurt D Bollacker, and Steve Lawrence. Citeseer: an automatic citation indexing system. In Proceedings of the third ACM conference on Digital libraries, pp. 89–98. ACM, 1998. ", + "bbox": [ + 173, + 324, + 821, + 353 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Justin Gilmer, Samuel S. Schoenholz, Patrick F. Riley, Oriol Vinyals, and George E. Dahl. Neural message passing for quantum chemistry. In Proceedings of the 34th International Conference on Machine Learning, volume 70 of Proceedings of Machine Learning Research, pp. 1263–1272. PMLR, 2017. ", + "bbox": [ + 174, + 362, + 825, + 419 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Torben Hagerup and Christine Rub. A guided tour of Chernoff bounds. ¨ Information processing letters, 33(6):305–308, 1990. ", + "bbox": [ + 171, + 428, + 823, + 458 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs. In Advances in Neural Information Processing Systems 30, pp. 1024–1034. Curran Associates, Inc., 2017. ", + "bbox": [ + 173, + 467, + 825, + 510 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mikael Henaff, Joan Bruna, and Yann LeCun. Deep convolutional networks on graph-structured data. arXiv preprint arXiv:1506.05163, 2015. ", + "bbox": [ + 171, + 520, + 821, + 549 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kurt Hornik. Approximation capabilities of multilayer feedforward networks. Neural networks, 4 (2):251–257, 1991. ", + "bbox": [ + 173, + 558, + 823, + 588 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are universal approximators. Neural networks, 2(5):359–366, 1989. ", + "bbox": [ + 173, + 597, + 823, + 626 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "CD Johnson. Stabilization of linear dynamical systems with respect to arbitrary linear subspaces. Journal of Mathematical Analysis and Applications, 44(1):175–186, 1973. ", + "bbox": [ + 174, + 636, + 823, + 665 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International Conference on Learning Representations, 2015. ", + "bbox": [ + 174, + 674, + 823, + 704 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional networks. In International Conference on Learning Representations, 2017. ", + "bbox": [ + 173, + 712, + 823, + 742 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. ImageNet classification with deep convolutional neural networks. In Advances in Neural Information Processing Systems 25, pp. 1097– 1105. Curran Associates, Inc., 2012. ", + "bbox": [ + 174, + 751, + 821, + 795 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yann A LeCun, Leon Bottou, Genevieve B Orr, and Klaus-Robert M ´ uller. Efficient backprop. In ¨ Neural networks: Tricks of the trade, pp. 9–48. Springer, 2012. ", + "bbox": [ + 171, + 804, + 823, + 833 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Guohao Li, Matthias Muller, Ali Thabet, and Bernard Ghanem. Deepgcns: Can gcns go as deep as cnns? In Proceedings of the IEEE International Conference on Computer Vision, pp. 9267–9276, 2019. ", + "bbox": [ + 173, + 842, + 825, + 885 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for semi-supervised learning. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018. ", + "bbox": [ + 174, + 895, + 821, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Yujia Li, Richard Zemel, and Marc Brockschmidt. Gated graph sequence neural networks. In International Conference on Learning Representations, 2016. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sitao Luan, Mingde Zhao, Xiao-Wen Chang, and Doina Precup. Break the ceiling: Stronger multiscale deep graph convolutional networks. In Advances in Neural Information Processing Systems 32, pp. 10943–10953. Curran Associates, Inc., 2019. ", + "bbox": [ + 176, + 140, + 823, + 183 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andrew L. Maas, Awni Y. Hannun, and Andrew Y. Ng. Rectifier nonlinearities improve neural network acoustic models. In in ICML Workshop on Deep Learning for Audio, Speech and Language Processing, 2013. ", + "bbox": [ + 174, + 189, + 821, + 233 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Andrew Kachites McCallum, Kamal Nigam, Jason Rennie, and Kristie Seymore. Automating the construction of internet portals with machine learning. Information Retrieval, 3(2):127–163, 2000. ", + "bbox": [ + 176, + 239, + 823, + 284 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Song Mei and Andrea Montanari. The generalization error of random features regression: Precise asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019. ", + "bbox": [ + 173, + 290, + 823, + 320 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Carl D Meyer. Matrix analysis and applied linear algebra, volume 71. Siam, 2000. ", + "bbox": [ + 173, + 327, + 723, + 343 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hrushikesh Narhar Mhaskar. Approximation properties of a multilayered feedforward artificial neural network. Advances in Computational Mathematics, 1(1):61–80, 1993. ", + "bbox": [ + 174, + 351, + 821, + 380 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hai Nguyen, Shinichi Maeda, and Kenta Oono. Semi-supervised learning of hierarchical representations of molecules using neural message passing. arXiv preprint arXiv:1711.10168, 2017. ", + "bbox": [ + 173, + 386, + 820, + 416 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "James R Norris. Markov chains. Number 2 in Cambridge Series in Statistical and Probabilistic Mathematics. Cambridge university press, 1998. ", + "bbox": [ + 173, + 422, + 823, + 453 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Hoang NT and Takanori Maehara. Revisiting graph neural networks: All we have is low-pass filters. arXiv preprint arXiv:1905.09550, 2019. ", + "bbox": [ + 174, + 459, + 823, + 489 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Kenta Oono and Taiji Suzuki. Approximation and non-parametric estimation of ResNet-type convolutional neural networks. arXiv preprint arXiv:1903.10047, 2019. ", + "bbox": [ + 173, + 496, + 823, + 526 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sinno Jialin Pan and Qiang Yang. A survey on transfer learning. IEEE Transactions on knowledge and data engineering, 22(10):1345–1359, 2010. ", + "bbox": [ + 174, + 534, + 821, + 563 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Philipp Petersen and Felix Voigtlaender. Equivalence of approximation by convolutional neural networks and fully-connected networks. arXiv preprint arXiv:1809.00973, 2018. ", + "bbox": [ + 174, + 570, + 820, + 599 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Franco Scarselli, Marco Gori, Ah Chung Tsoi, Markus Hagenbuchner, and Gabriele Monfardini. The graph neural network model. IEEE Transactions on Neural Networks, 20(1):61–80, 2009. ", + "bbox": [ + 174, + 606, + 820, + 636 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Michael Schlichtkrull, Thomas N Kipf, Peter Bloem, Rianne Van Den Berg, Ivan Titov, and Max Welling. Modeling relational data with graph convolutional networks. In European Semantic Web Conference, pp. 593–607. Springer, 2018. ", + "bbox": [ + 176, + 642, + 823, + 686 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad. Collective classification in network data. AI magazine, 29(3):93–93, 2008. ", + "bbox": [ + 171, + 693, + 821, + 723 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sho Sonoda and Noboru Murata. Neural network with unbounded activation functions is universal approximator. Applied and Computational Harmonic Analysis, 43(2):233–268, 2017. ", + "bbox": [ + 173, + 729, + 823, + 758 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: A simple way to prevent neural networks from overfitting. Journal of Machine Learning Research, 15:1929–1958, 2014. ", + "bbox": [ + 176, + 766, + 823, + 809 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Matus Telgarsky. Benefits of depth in neural networks. In 29th Annual Conference on Learning Theory, volume 49 of Proceedings of Machine Learning Research, pp. 1517–1539. PMLR, 23– 26 Jun 2016. ", + "bbox": [ + 173, + 816, + 823, + 859 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Seiya Tokui, Kenta Oono, Shohei Hido, and Justin Clayton. Chainer: a next-generation open source framework for deep learning. In Proceedings of Workshop on Machine Learning Systems (LearningSys) in The Twenty-ninth Annual Conference on Neural Information Processing Systems (NIPS), 2015. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Seiya Tokui, Ryosuke Okuta, Takuya Akiba, Yusuke Niitani, Toru Ogawa, Shunta Saito, Shuji Suzuki, Kota Uenishi, Brian Vogel, and Hiroyuki Yamazaki Vincent. Chainer: A deep learning framework for accelerating the research cycle. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, pp. 2002–2011. ACM, 2019. ", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Li ´ o, and Yoshua \\` Bengio. Graph attention networks. In International Conference on Learning Representations, 2018. ", + "bbox": [ + 173, + 167, + 823, + 210 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Saurabh Verma and Zhi-Li Zhang. Stability and generalization of graph convolutional neural networks. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Discovery & Data Mining, 2019. ", + "bbox": [ + 173, + 219, + 825, + 263 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Boris Weisfeiler and Lehman A.A. A reduction of a graph to a canonical form and an algebra arising during this reduction. Nauchno-Technicheskaya Informatsia, 2(9):12–16, 1968. ", + "bbox": [ + 173, + 271, + 820, + 301 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Felix Wu, Tianyi Zhang, Amauri Holanda de Souza Jr, Christopher Fifty, Tao Yu, and Kilian Q Weinberger. Simplifying graph convolutional networks. arXiv preprint arXiv:1902.07153, 2019a. ", + "bbox": [ + 174, + 308, + 821, + 339 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S Yu. A comprehensive survey on graph neural networks. arXiv preprint arXiv:1901.00596, 2019b. ", + "bbox": [ + 173, + 347, + 825, + 376 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 5453–5462. PMLR, 2018. ", + "bbox": [ + 173, + 383, + 825, + 441 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural networks? In International Conference on Learning Representations, 2019. ", + "bbox": [ + 174, + 449, + 821, + 479 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Dmitry Yarotsky. Error bounds for approximations with deep ReLU networks. Neural Networks, 94:103–114, 2017. ", + "bbox": [ + 173, + 487, + 821, + 517 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Jiawei Zhang. Gresnet: Graph residuals for reviving deep graph neural nets from suspended animation. arXiv preprint arXiv:1909.05729, 2019. ", + "bbox": [ + 173, + 525, + 823, + 554 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lingxiao Zhao and Leman Akoglu. Pairnorm: Tackling oversmoothing in $\\{ \\mathrm { g n n } \\} \\mathrm { s }$ . In International Conference on Learning Representations, 2020. URL https://openreview.net/forum? id $=$ rkecl1rtwB. ", + "bbox": [ + 173, + 563, + 823, + 604 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ding-Xuan Zhou. Universality of deep convolutional neural networks. arXiv preprint arXiv:1805.10769, 2018. ", + "bbox": [ + 171, + 613, + 825, + 643 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Pan Zhou and Jiashi Feng. Understanding generalization and optimization performance of deep CNNs. In Proceedings of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine Learning Research, pp. 5960–5969. PMLR, 2018. ", + "bbox": [ + 178, + 651, + 821, + 695 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A PROOF OF THEOREM 1 ", + "text_level": 1, + "bbox": [ + 176, + 719, + 398, + 737 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "As we wrote in the main article, it is enough to show the following lemmas (definition of miscellaneous variables are as in Section 3.2). Remember that $\\lambda = \\operatorname* { s u p } _ { n \\in [ N - M ] } | \\lambda _ { n } |$ and $s _ { l h }$ is the maximum singular value of $W _ { l h }$ ", + "bbox": [ + 173, + 752, + 825, + 795 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lemma 1. For any $X \\in \\mathbb { R } ^ { N \\times C }$ , we have $d _ { \\mathcal { M } } ( P X ) \\leq \\lambda d _ { \\mathcal { M } } ( X )$ . ", + "bbox": [ + 171, + 797, + 606, + 815 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lemma 2. For any $X \\in \\mathbb { R } ^ { N \\times C }$ , we have $d _ { \\mathcal { M } } ( X W _ { l h } ) \\leq s _ { l h } d _ { \\mathcal { M } } ( X )$ . ", + "bbox": [ + 171, + 818, + 632, + 834 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Lemma 3. For any $X \\in \\mathbb { R } ^ { N \\times C }$ , we have $d _ { \\mathcal { M } } ( \\sigma ( X ) ) \\leq d _ { \\mathcal { M } } ( X )$ ", + "bbox": [ + 173, + 837, + 604, + 853 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Proof of Lemma $^ { l }$ . Since $P$ is a symmetric linear operator on $U ^ { \\perp }$ , we can choose the orthonormal basis $( e _ { m } ) _ { m = M + 1 , \\dots , N }$ of $U ^ { \\perp }$ consisting of the eigenvalue of $P | _ { U ^ { \\perp } }$ . Let $\\lambda _ { m }$ be the eigenvalue of $P$ to which $e _ { m }$ is associated $( m = M + 1 , \\ldots , N )$ . Note that since the operator norm of $P | _ { U ^ { \\perp } }$ is $\\lambda$ , we have $| \\lambda _ { m } | \\leq \\lambda$ for all $m = M + 1 , \\ldots , N$ . Since $( e _ { m } ) _ { m \\in [ N ] }$ forms the orthonormal basis of $\\mathbb { R } ^ { N }$ , we can uniquely write $X \\in \\mathbb { R } ^ { N \\times C }$ as $\\begin{array} { r } { X = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes w _ { m } } \\end{array}$ for some $w _ { m } \\in \\mathbb { R } ^ { C }$ . Then, we have $\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\end{array}$ where $\\| \\cdot \\|$ m=1 m m m is the 2-norm of a vector. On the other hand, we have ", + "bbox": [ + 173, + 867, + 826, + 926 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 99, + 826, + 138 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/ebdf38f8421714663fc0ce017ea1e1607adc9bfbfba6c6df26e9662d41ab49ca.jpg", + "text": "$$\n\\begin{array} { l } { { \\displaystyle P X = \\sum _ { m = 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { ~ } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes \\left( \\lambda _ { m } w _ { m } \\right) } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 331, + 146, + 666, + 281 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "$U$ nvariant under . Therefore, w $P$ , forhave $m \\in [ M ]$ $P e _ { m }$ as a linear combination ofThen, we obtain the desired $e _ { n } ( n \\in [ M ] )$ $\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } \\end{array}$ ", + "bbox": [ + 174, + 289, + 825, + 335 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/2d20c7b13c75612e652ad08f45b54ce116add66b3167800688d04acf8a22592a.jpg", + "text": "$$\n\\begin{array} { r l r } { { d _ { { \\mathcal M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } } \\\\ & { } & \\\\ & { } & { \\leq \\lambda ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { \\leq \\lambda ^ { 2 } \\displaystyle \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & \\\\ & { } & { = \\lambda ^ { 2 } d _ { { \\mathcal M } } ^ { 2 } ( X ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 390, + 343, + 606, + 501 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof of Lemma 2. Using the same decomposition of $X$ as the proof in Lemma 1, we have ", + "bbox": [ + 169, + 542, + 769, + 559 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/11c62737dd7afa77a1fa1f9b149e31987b5092043d5a2cbbdcbc4dd3cd85d7da.jpg", + "text": "$$\n\\begin{array} { r l r } { { X W _ { l h } = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) } } \\\\ & { } & { = \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 566, + 694, + 657 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Therefore, we have ", + "bbox": [ + 173, + 664, + 303, + 679 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/1e1f7af71d03e46e2b2c1f6a93dbe12369a4668beb889066020801bff330d278.jpg", + "text": "$$\n\\begin{array} { r l r } { { d _ { \\mathcal { M } } ^ { 2 } ( X W _ { l h } ) = \\sum _ { m = M + 1 } ^ { N } \\| W _ { l h } ^ { \\top } w _ { m } \\| ^ { 2 } } } \\\\ & { } & { \\leq s _ { l h } ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { = s _ { l h } ^ { 2 } d _ { \\mathcal { M } } ^ { 2 } ( X ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 379, + 688, + 617, + 797 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof of Lemma 3. We choose $( e _ { m } ) _ { m = N - M + 1 , \\dots , N }$ as in the proof of Lemma 1. We denote $X =$ $( X _ { n c } ) _ { n \\in [ N ] , c \\in [ C ] }$ and $e _ { n } = ( e _ { m n } ) _ { m \\in [ N ] }$ , respectively. Let $( e _ { c } ^ { \\prime } ) _ { c \\in [ C ] }$ be the standard basis of $\\mathbb { R } ^ { C }$ . Then, $( e _ { n } \\otimes e _ { c } ^ { \\prime } ) _ { n \\in [ N ] , c \\in [ C ] }$ is the orthonormal basis of $\\mathbb { R } ^ { N \\times C }$ , endowed with the standard inner product as a Euclid space. Therefore, we can decompose $X$ as $\\begin{array} { r } { X = \\sum _ { n = 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { n } \\otimes e _ { c } ^ { \\prime } } \\end{array}$ where $\\begin{array} { r } { a _ { n c } = \\left. X , e _ { n } \\otimes e _ { c } ^ { \\prime } \\right. = \\sum _ { m = 1 } ^ { N } X _ { m c } e _ { m n } } \\end{array}$ . Then, we have $\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { \\prime } \\| ^ { 2 } } \\end{array}$ ", + "bbox": [ + 173, + 840, + 826, + 928 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "which is further transformed as ", + "bbox": [ + 173, + 103, + 382, + 117 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/3e54bc240f5d9875acd41a1878664feda1310273d70a7eb5f0d1b1f678be3ff5.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle d _ { M } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\left\\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { t } \\right\\| ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { n = M + 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\sum _ { n = 1 } ^ { N } a _ { n c } ^ { 2 } - \\sum _ { n = 1 } ^ { M } a _ { n c } ^ { 2 } \\right) } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\mathrm { - c } } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } ( X _ { \\mathrm { - c } } , e _ { n } ) ^ { 2 } \\right) , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 348, + 122, + 645, + 303 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where $X _ { \\cdot c }$ is the $c$ -th column vector of $X$ . Similarly, we have ", + "bbox": [ + 173, + 304, + 578, + 319 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/48fd613479f3c412aeb06722190f64eaf2d54146933de23b64847c8812fb608a.jpg", + "text": "$$\nd _ { \\mathcal { M } } ^ { 2 } ( \\sigma ( X ) ) = \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\cdot c } ^ { + } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } \\langle X _ { \\cdot c } ^ { + } , e _ { n } \\rangle ^ { 2 } \\right) ,\n$$", + "text_format": "latex", + "bbox": [ + 338, + 323, + 658, + 366 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where we denote $\\sigma ( X ) = ( X _ { n c } ^ { + } ) _ { n \\in [ N ] , c \\in [ C ] }$ in shorthand. Therefore, the inequality follow from the following lemma. □ ", + "bbox": [ + 174, + 371, + 823, + 400 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "fying wher Lemma 4. Let $v _ { m } \\geq 0$ $\\boldsymbol { x } \\in \\mathbb { R } ^ { N }$ $m \\in [ M ]$ and $v _ { 1 } , \\hdots , v _ { M } \\in \\mathbb { R } ^ { N }$ en, we have . $\\begin{array} { r } { \\| \\ b x \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x , \\ b v _ { m } \\rangle ^ { 2 } \\geq \\| \\ b x ^ { + } \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x ^ { + } , \\ b v _ { m } \\rangle ^ { 2 } } \\end{array}$ be orthonormal vectors (i.e., $\\langle v _ { m } , v _ { n } \\rangle = \\delta _ { m n } )$ satis$x ^ { + } : = \\operatorname* { m a x } ( x , 0 )$ $x \\in \\mathbb { R }$ ", + "bbox": [ + 171, + 405, + 825, + 454 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "roof. he value $\\begin{array} { r } { \\| y \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle y , u _ { m } \\rangle ^ { 2 } } \\end{array}$ is invariant under simultaneous coordinate pe mutation of $y$ $u _ { m }$ $x$ $x _ { 1 } \\leq \\ldots \\leq x _ { L } < 0 \\leq x _ { L + 1 } \\leq \\cdot \\cdot \\cdot \\leq x _ { N }$ for some $L \\leq N$ . Then, we have ", + "bbox": [ + 173, + 468, + 826, + 513 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/68f7d8b8c5d76abce597c2e00354310b9c41ec8fdf5c4ec93f6ccaa43c8842c1.jpg", + "text": "$$\n\\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } = \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 413, + 517, + 584, + 560 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "When $L = 0$ , the sum in the right hand side is treated as 0. On the other hand, writing as $v _ { m } =$ $( v _ { n m } ) _ { n \\in [ N ] }$ , direct calculation shows ", + "bbox": [ + 171, + 564, + 825, + 593 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/ea22ca227c9ec044c61e3eba97e9317ef90575c82fd8b35c76fa72f45373c309.jpg", + "text": "$$\n\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } = \\sum _ { m = 1 } ^ { M } \\left( \\left( \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } - 2 \\sum _ { n = 1 } ^ { L } \\sum _ { l = L + 1 } ^ { N } x _ { n } x _ { l } v _ { n m } v _ { l m } \\right) .\n$$", + "text_format": "latex", + "bbox": [ + 217, + 597, + 779, + 648 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Let $I _ { m } : = \\{ n \\in [ N ] \\mid v _ { n m } > 0 \\}$ be the support of $v _ { m }$ for $m \\in [ M ]$ . We note that if $m \\neq m ^ { \\prime } \\in [ M ]$ , we have ${ \\cal I } _ { m } \\cap { \\cal I } _ { m ^ { \\prime } } = \\emptyset$ since if there existed $n \\in I _ { m } \\cap I _ { m ^ { \\prime } }$ , we have ", + "bbox": [ + 169, + 651, + 825, + 681 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/cec6e1c89fcd9f94147f760c9fab60b687a9fb58a22ddf08e549e333eb77ee26.jpg", + "text": "$$\n0 = \\left. v _ { m } , v _ { m ^ { \\prime } } \\right. \\geq v _ { n m } v _ { n m ^ { \\prime } } > 0 ,\n$$", + "text_format": "latex", + "bbox": [ + 390, + 685, + 604, + 703 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "which is contradictory. Therefore, ", + "bbox": [ + 174, + 707, + 398, + 720 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/e363c202ba9b7ecee3de95f31889b854f5df5a540a429e3c029657ede6d04d16.jpg", + "text": "$$\n\\begin{array} { r l r } { \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } = \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } v _ { n m } \\right) ^ { 2 } } & { } & \\\\ { \\displaystyle } & { \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n m } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot \\mathrm { C a u c h y - S c h w a r z ~ i n e q u a l i t y } ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot | v _ { m } | ^ { 2 } = 1 ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 171, + 724, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We used the fact that $I _ { m }$ ’s are disjoint and $v _ { n m } = 0$ if $n \\not \\in \\cup _ { m } I _ { m }$ in the first equality above. Further, we have $x _ { n } x _ { l } v _ { n m } v _ { l m } \\leq 0$ for $1 \\le n \\le L$ and $L + 1 \\le l \\le N$ by the definition of $L$ and non-negativity of $v _ { m }$ . By combining (1), (2), and (3), we have ", + "bbox": [ + 174, + 103, + 825, + 147 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/c39fabdc21d6ccc420a7956b6414e1b3de75315041ade8eba193e361d9db97c0.jpg", + "text": "$$\n\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } \\leq \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } = \\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } .\n$$", + "text_format": "latex", + "bbox": [ + 313, + 154, + 681, + 198 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof of Theorem $^ { l }$ . By Lemma 1, 2, and 3, we have ", + "bbox": [ + 173, + 243, + 524, + 260 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/15704c0189b83b8ac25bed3cd3d139dd55c80d16850523239a96a4637790c552.jpg", + "text": "$$\n\\begin{array} { r l } { d _ { M } ( f _ { l } ( X ) ) = d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot W _ { l H _ { 1 } } \\rangle } _ { H \\mathrm { ~ i n e s } } ) } & { } \\\\ & { \\leq d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H \\mathrm { ~ i n e s } } ) } \\\\ & { \\leq s _ { i H _ { 1 } - 1 } d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H - 1 \\mathrm { ~ i n e s } } ) } \\\\ & { \\cdots } \\\\ & { \\leq \\displaystyle \\left( \\prod _ { i = 1 } ^ { H _ { l } } s _ { i h } \\right) d _ { M } ( P X ) } \\\\ & { \\leq s _ { i d _ { M } ( P X ) } } \\\\ & { \\leq s _ { i H _ { 1 } } d _ { M } ( X ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 274, + 268, + 717, + 479 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "B PROOF OF PROPOSITION 1 ", + "text_level": 1, + "bbox": [ + 176, + 523, + 424, + 540 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Proof. Let ${ \\tilde { \\mu } } _ { 1 } \\leq \\dots \\leq { \\tilde { \\mu } } _ { N }$ be the eigenvalue of the augmented normalized Laplacian $\\tilde { \\Delta }$ , sorted in ascending order. Since $P = I _ { N } - \\tilde { \\Delta }$ , it is enough to show $\\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } = 0$ , ${ \\tilde { \\mu } } _ { M + 1 } > 0$ , and $\\tilde { \\mu } _ { N } < 2$ . For the first two, the statements are equivalent to that $\\tilde { \\Delta }$ is positive semi-definite and that the multiplicity of the eigenvalue 0 is same as the number of connected components 6. This is well-known for Laplacian or its normalized version (see, e.g., Chung & Graham (1997)) and the proof for $\\tilde { \\Delta }$ is similar. By direct calculation, we have ", + "bbox": [ + 173, + 556, + 826, + 647 + ], + "page_idx": 15 + }, + { + "type": "equation", + "img_path": "images/912b3f39f00da229f42e6b22f48e40279df357eb9f4ff841a0f14ea1354fcf33.jpg", + "text": "$$\nx ^ { \\top } \\tilde { \\Delta } x = \\frac { 1 } { 2 } \\sum _ { i , j = 1 } ^ { N } a _ { i j } \\left( \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } - \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } \\right) ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 339, + 656, + 655, + 702 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "for any $x = \\lbrack x _ { 1 } \\quad \\cdot \\cdot \\cdot \\quad x _ { N } \\rbrack ^ { \\top } \\in \\mathbb { R } ^ { N }$ . Therefore, $\\tilde { \\Delta }$ is positive semi-definite and hence $\\tilde { \\mu } _ { 1 } \\geq 0$ ", + "bbox": [ + 171, + 712, + 792, + 731 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Suppose temporally that $G$ is connected. If $\\boldsymbol { x } \\in \\mathbb { R } ^ { N }$ is an eigenvector associated to 0, then, by the aformentioned calculation, $\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }$ and $\\textstyle { \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } }$ must be same for all pairs $( i , j )$ such that $a _ { i j } >$ 0. However, since $G$ is connected, $\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }$ must be same value for all $i \\in [ N ]$ . That means the multiplicity of the eigenvalue 0 is 1 and any eigenvector associated to 0 must be proportional to ${ \\tilde { D } } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 }$ . Now, suppose $G$ has $M$ connected components $V _ { 1 } , \\dots , V _ { M }$ . Let $\\tilde { \\Delta } _ { m }$ be the augmented normalized Laplacians corresponding to each connected component $V _ { m }$ for $m \\in \\ [ M ]$ . By the aformentioned discussion, $\\tilde { \\Delta } _ { m }$ has the eigenvalue 0 with multiplicity 1. Since $\\tilde { \\Delta }$ is the direct sum of $\\tilde { \\Delta } _ { m } ^ { \\prime } s$ , the eigenvalue of $\\tilde { \\Delta }$ is the union of those for $\\tilde { \\Delta } _ { m }$ ’s. Therefore, $\\tilde { \\Delta }$ has the eigenvalue 0 with multiplicity $M$ and $e _ { m } = \\tilde { D } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 } _ { m }$ ’s are the orthogonal basis of the eigenspace. ", + "bbox": [ + 173, + 736, + 826, + 883 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Finally, we prove $\\tilde { \\mu } _ { N \\mathrm { ~ } } < \\mathrm { ~ 2 ~ }$ . Let $\\mu _ { N }$ be the largest eigenvalue of the normalized Laplacian $\\Delta =$ $D ^ { - \\frac { 1 } { 2 } } \\bar { ( } D - \\bar { A } ) D ^ { - \\frac { 1 } { 2 } }$ , where $D ^ { - \\frac { 1 } { 2 } } \\in \\mathbb { R } ^ { N \\times N }$ is the diagonal matrix defined by ", + "bbox": [ + 169, + 103, + 823, + 135 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/3d269a0ba588fd8303d9cdfd91801f8052013907dddbbf2c70e75cc2e48e6492.jpg", + "text": "$$\nD _ { i i } ^ { - \\frac { 1 } { 2 } } = \\left\\{ \\begin{array} { l l } { \\deg ( i ) ^ { - \\frac { 1 } { 2 } } } & { ( \\mathrm { i f } \\deg ( i ) \\neq 0 ) } \\\\ { 0 } & { ( \\mathrm { i f } \\deg ( i ) = 0 ) } \\end{array} \\right. .\n$$", + "text_format": "latex", + "bbox": [ + 367, + 141, + 627, + 184 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Note that $D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }$ nor $D ^ { \\frac { 1 } { 2 } } D ^ { - { \\frac { 1 } { 2 } } }$ are not equal to the identity matrix $I _ { N }$ in general. However, we have ", + "bbox": [ + 171, + 191, + 823, + 222 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/f06328db9cdb9c357ee18d32337ee54247ad13e04e1cc4534382a8bbdb729367.jpg", + "text": "$$\nL = D ^ { \\frac { 1 } { 2 } } D ^ { - \\frac { 1 } { 2 } } L D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }\n$$", + "text_format": "latex", + "bbox": [ + 415, + 224, + 581, + 244 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "where $L = D - A$ is the (unnormalized) Laplacian. Therefore, we have ", + "bbox": [ + 173, + 251, + 647, + 267 + ], + "page_idx": 16 + }, + { + "type": "equation", + "img_path": "images/0130e9d5369d0baf35ac0feeea7a01ddaaafd449509a606e0c5a756b6400d2fd.jpg", + "text": "$$\n\\begin{array} { r l } { \\alpha _ { 1 } } & { \\gamma _ { 2 } \\geq \\frac { \\alpha _ { 2 } ( \\lambda _ { 1 } ) } { \\alpha _ { 1 } } } \\\\ { = } & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 1 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 3 } } \\\\ { = } & { \\gamma _ { 2 } \\geq \\alpha _ { 3 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 5 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 6 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } } \\\\ & { - \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 6 } } \\\\ & { \\gamma _ { 6 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\gamma _ { 7 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 3 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & \\gamma _ { 3 } \\geq \\ \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 264, + 270, + 738, + 667 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Therefore, we have µ˜N ≤ µN 7. Since maxi∈[N] $\\begin{array} { r } { \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\frac { \\deg ( i ) } { \\deg ( i ) + 1 } \\right) ^ { \\frac { 1 } { 2 } } < 1 } \\end{array}$ , the equality $\\tilde { \\mu } _ { N } = \\mu _ { N }$ holds if and only if $\\mu _ { N } = 0$ , that is, $G$ has $N$ connected components. On the other hand, it is known that $\\mu _ { N } \\leq 2$ and the equality holds if and only if $G$ has non-trivial bipartite graph as a connected component (see, e.g., Chung $\\&$ Graham (1997)). Therefore, $\\tilde { \\mu } _ { N } = \\mu _ { N }$ and $\\mu _ { N } = 2$ does not hold simultaneously and we obtain $\\mu _ { N } < 2$ . □ ", + "bbox": [ + 173, + 678, + 825, + 761 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C COUNTEREXAMPLE OF PREVIOUS STUDY ON OVER-SMOOTHING FOR NON-LINEAR GNNS ", + "text_level": 1, + "bbox": [ + 174, + 780, + 784, + 814 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We restate Theorem 1 of the preprint (version2) of Luan et al. $( 2 0 1 9 ) ^ { 8 }$ . Let $G$ be a simple undirected graph with $N$ nodes and $k$ connected components such that it does not have a bipartite component. Let $L = \\tilde { D } ^ { - 1 / 2 } \\tilde { A } \\tilde { D } ^ { - 1 / 2 } \\in \\mathbb { R } ^ { N \\times N }$ be the augmented normalized Laplacian of $G$ . Let $F \\in \\mathbb { N } _ { + }$ and ", + "bbox": [ + 173, + 828, + 825, + 873 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "$W _ { n } \\in \\mathbb { R } ^ { F \\times F }$ be the weight of the $n$ -th layer for $n \\in \\mathbb { N } _ { + }$ . For the input $X \\in \\mathbb { R } ^ { N \\times F }$ , we define the output $Y _ { n } \\in \\mathbb { R } ^ { N \\times F }$ of the $n$ -th layer of a GCN by $Y _ { n } = \\sigma ( L \\cdot \\cdot \\cdot \\sigma ( L X W _ { 0 } ) \\cdot \\cdot \\cdot W _ { n } )$ where $\\sigma$ is the ReLU function. We assume the input $X$ is drawn from a continuous distribution on $\\mathbb { R } ^ { N \\times F }$ . Then, the theorem claims that we have $\\begin{array} { r } { \\operatorname* { l i m } _ { n \\to \\infty } \\operatorname { r a n k } ( Y _ { n } ) = k } \\end{array}$ almost surely with respect to the distribution of $X$ . ", + "bbox": [ + 173, + 102, + 825, + 174 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We construct a conterexample. Consider a graph $G$ consisting of $N = 4$ nodes whose adjacency matrix is ", + "bbox": [ + 174, + 179, + 823, + 209 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/7a5e18ea3dc07a33bee281a590ef95fa607fa5f03975c7fdc507c908ced32b73.jpg", + "text": "$$\nA = { \\left[ \\begin{array} { l l l l } { 1 } & { 1 } & { 1 } & { 1 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 0 } & { 0 } & { 1 } \\end{array} \\right] } ~ .\n$$", + "text_format": "latex", + "bbox": [ + 423, + 213, + 573, + 273 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Note that $G$ is connected (i.e., $k = 1$ ) and is not bipartite. We make a GCN with $F = 3$ channels and whose weight matrices are $W _ { n } \\ = \\ I _ { 3 }$ (the identity matrix of size 3) for all $n \\in \\mathbb N$ . For the distribution of the input $X$ , we consider an absolutely continuous distribution with respect to the Lebesgue measure on $\\mathbb { R } ^ { 4 \\times 3 }$ such that $P ( X \\geq 0 ) ~ { \\stackrel { . } { > } } ~ 0$ (here, $X ~ \\geq ~ 0$ means the element-wise comparison). For example, the standard Gaussian distribution satisfies the condition. ", + "bbox": [ + 173, + 279, + 825, + 351 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Since $L \\geq 0$ , we have $Y _ { n } = L ^ { n } X$ if $X \\geq 0$ . Let ${ \\cal L } = { \\cal P } ^ { \\top } \\Delta { \\cal P }$ be the diagonalization of $L$ where $P \\in O ( 4 )$ is an orthogonal matrix of size 4. Since $\\mathrm { r a n k } ( L ) = 3$ , we have ${ \\bar { \\operatorname { r a n k } } } ( \\Lambda ^ { n } ) = 3$ for any $n$ (we can assume that $\\Lambda _ { 4 4 } = 0$ without loss of generality). Therefore, under the condition $X \\geq 0$ , we have ", + "bbox": [ + 174, + 354, + 825, + 412 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/a6c4bcffddae18f22db6c3010b3d23d09c517d0a82c87531f0c12ddcfa294be5.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathrm { r a n k } ( Y _ { n } ) = 3 \\iff \\mathrm { r a n k } ( P ^ { \\top } \\Lambda ^ { n } P X ) = 3 } \\\\ & { \\qquad \\iff X \\in \\{ P ^ { - 1 } \\left[ B \\quad v \\right] ^ { \\top } | B \\in \\mathbb { R } ^ { 3 \\times 3 } \\mathrm { i s ~ i n v e r t i b l e } , v \\in \\mathbb { R } ^ { 3 } \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 243, + 417, + 753, + 462 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Note that the last condition is independent of $n$ . Since the set of invertible matrices is dense in the set of all matrices of the same size (with respect to the standard topology of the Euclidean space), we have $P ( \\{ \\mathrm { r a n k } ( Y _ { n } ) = 3 $ for all $n \\in \\mathbb { N } \\} ) > 0$ . Therefore, we have $\\begin{array} { r } { \\operatorname* { l i m } _ { n \\infty } \\operatorname { r a n k } ( Y _ { n } ) = 3 } \\end{array}$ with a non-zero probability. □ ", + "bbox": [ + 173, + 467, + 825, + 523 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "D PROOF OF THEOREM 3 ", + "text_level": 1, + "bbox": [ + 176, + 544, + 400, + 560 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We follow the proof of Theorem 2 of Chung & Radcliffe (2011). The idea is to relate the spectral distribution of the normalized Laplacian with that of its expected version. Since we can compute the latter one explicitly for the Erdos-R ˝ enyi graph, we can derive the convergence of spectra. We ´ employ this technique and derive similar conclusion for the augmented normalized Laplacian. ", + "bbox": [ + 173, + 575, + 825, + 632 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "First, we consider genral random graphs not restricted to Erdos-R ˝ enyi graphs. Let ´ $N \\in { \\mathbb { N } } _ { + }$ , and $P = ( p _ { i j } ) _ { i , j \\in [ N ] }$ be a non-negative symmetric matrix (meaning that $p _ { i j } \\geq 0$ for any $i , j \\in [ N ] )$ . Let $G$ be an undirected random graph with $N$ nodes such that an edge between $i$ and $j$ is independently present with probability $p _ { i j }$ . Let $A$ and $D$ be the adjacency and the degree matrices of $G$ , respectively (that is, $A _ { i j } \\sim \\mathrm { B e r } ( p _ { i j } )$ , i.i.d.). Define the expected node degree of node $i$ by $\\begin{array} { r } { t _ { i } : = \\sum _ { j = 1 } ^ { N } p _ { i j } } \\end{array}$ . Let ${ \\tilde { A } } : = A + I _ { N }$ , ${ \\tilde { D } } : = D + I _ { N }$ and define ${ \\bar { A } } : = \\mathbb { E } [ { \\tilde { A } } ] = P + I _ { N }$ and $\\bar { D } : = \\mathbb { E } [ \\tilde { D } ] = \\mathrm { d i a g } ( t _ { 1 } , \\dots , t _ { N } ) + I _ { N }$ correspondingly. We define the augmented normalized Laplacian $\\tilde { \\Delta }$ of $G$ by $\\tilde { \\Delta } : = I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }$ and its expected version by $\\bar { \\Delta } : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\bar { A } \\bar { D } ^ { - \\frac { 1 } { 2 } }$ 9. For a symmetric matrix $X ~ \\in ~ \\mathbb { R } ^ { N }$ , we define its eigenvalues, sorted in ascending order by $\\lambda _ { 1 } ( X ) \\leq \\cdots \\leq \\lambda _ { N } ( X )$ and its operator norm by $\\| X \\| = \\operatorname* { i n a x } _ { n \\in [ N ] } | \\lambda _ { n } ( X ) |$ . ", + "bbox": [ + 173, + 638, + 825, + 790 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Lemma 5 (Ref. Chung & Radcliffe (2011) Theorem 2). Let $\\delta : = \\mathrm { m i n } _ { n \\in [ N ] } t _ { n }$ be the minimum expected degree of $G$ . Set $k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) )$ . Then, for any $\\varepsilon > 0$ , $i f { \\dot { \\delta } } + { \\dot { 1 } } > k ( \\varepsilon ) \\log N$ , we have ", + "bbox": [ + 173, + 792, + 825, + 837 + ], + "page_idx": 17 + }, + { + "type": "equation", + "img_path": "images/faa530371dd9306d6740988ca847f650db8a9d0bcc8578a2693011979e058fb8.jpg", + "text": "$$\n\\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } }\n$$", + "text_format": "latex", + "bbox": [ + 351, + 842, + 647, + 878 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "with probability at least $1 - \\varepsilon$ ", + "bbox": [ + 174, + 886, + 374, + 901 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Proof. By Weyl’s theorem, we have $\\begin{array} { r } { \\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| } \\end{array}$ . Therefore, it is enough to bound $\\| \\tilde { \\Delta } - \\bar { \\Delta } \\|$ . Let $C : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\bar { D }$ . By the triangular inequality, we have $\\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\|$ . We will bound these terms respectively. ", + "bbox": [ + 173, + 101, + 826, + 160 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "First, we bound $\\| C - { \\bar { \\Delta } } \\|$ . Direct calculation shows $C - \\bar { \\Delta } = - \\bar { D } ^ { - \\frac { 1 } { 2 } } ( A { - } P ) \\bar { D } ^ { - \\frac { 1 } { 2 } }$ . Let $E ^ { i j } \\in \\mathbb { R } ^ { N \\times N }$ be a matrix defined by ", + "bbox": [ + 171, + 164, + 823, + 196 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/fe9cdfdb83f038780d2070d9493f39f5009327a9c0eb6768b53b00ddfffcfe9a.jpg", + "text": "$$\n( E ^ { i j } ) _ { k l } = { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } ( i = k { \\mathrm { ~ a n d ~ } } i = l ) { \\mathrm { ~ o r ~ } } ( i = l { \\mathrm { ~ a n d ~ } } j = k ) , } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e . } } } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 310, + 207, + 684, + 242 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We define the random variable $Y _ { i j }$ by ", + "bbox": [ + 174, + 251, + 421, + 267 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/d4cfac4151ae12a2d38b39962bf8e377443e15fc5af480baf66fe0bf602e815e.jpg", + "text": "$$\nY _ { i j } : = \\frac { A _ { i j } - p _ { i j } } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } E ^ { i j } .\n$$", + "text_format": "latex", + "bbox": [ + 401, + 276, + 596, + 313 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "ij Radcliffe (2011) to Then, ’s are independent and we have $Y _ { i j }$ ’s, we bound $\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\|$ $\\begin{array} { r } { C - \\bar { \\Delta } = \\sum _ { i , j = 1 } ^ { N } Y _ { i j } } \\end{array}$ and $\\| \\Sigma _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\|$ . To apply Theorem 5 of Chung & . First, we have ", + "bbox": [ + 173, + 323, + 825, + 362 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/cae7c6b924677a28a81735f52c21a2db10cea67ace48042da7e719cbd90f9ece.jpg", + "text": "$$\n\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\| = \\| Y _ { i j } \\| \\leq \\frac { \\| E ^ { i j } \\| } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } \\leq ( \\delta + 1 ) ^ { - 1 } .\n$$", + "text_format": "latex", + "bbox": [ + 303, + 371, + 692, + 410 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Since ", + "bbox": [ + 173, + 417, + 214, + 433 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/a52cf9e5e80dfb4e7363c299ec6286164906ebce3dececfbc73d458f5b45119c.jpg", + "text": "$$\n\\mathbb { E } [ Y _ { i j } ^ { 2 } ] = \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\left\\{ { E ^ { i i } + E ^ { j j } } \\begin{array} { l l } { ( \\mathrm { i f ~ } i \\ne j ) , } \\\\ { E ^ { i i } } & { ( \\mathrm { i f ~ } i = j ) , } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 326, + 439, + 668, + 477 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "we have ", + "bbox": [ + 173, + 487, + 230, + 501 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/671d8d0807c4af3435e2fc7a59b03aa66054295c22241b527c28d8f8d4f43a38.jpg", + "text": "$$\n\\begin{array} { r } { \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\right| = \\left| \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } E ^ { i i } \\right| \\right| } \\\\ { = \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq ( \\delta + 1 ) ^ { - 1 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 338, + 510, + 656, + 679 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "By letting $\\begin{array} { r } { a \\gets \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } } } \\end{array}$ , $M \\gets ( \\delta + 1 ) ^ { - 1 }$ , $v ^ { 2 } ( \\delta + 1 ) ^ { - 1 }$ and applying Theorem 5 of Chung & Radcliffe (2011), we have ", + "bbox": [ + 173, + 689, + 825, + 728 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/a1bcd9ba5a9bd225226118673c07e91de3eaf40dfa178bcc7be802d6733cac42.jpg", + "text": "$$\n\\begin{array} { r l } & { \\operatorname* { P r } ( \\| C - \\bar { \\Delta } \\| > a ) \\leq 2 N \\exp \\left( - \\displaystyle \\frac { a ^ { 2 } } { 2 ( \\delta + 1 ) ^ { - 1 } + 2 ( \\delta + 1 ) ^ { - 1 } a / 3 } \\right) } \\\\ & { \\phantom { \\operatorname* { P r } } \\leq 2 N \\exp \\left( - \\displaystyle \\frac { 3 \\log \\left( 4 N / \\varepsilon \\right) } { 2 ( 1 + a / 3 ) } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 279, + 734, + 717, + 809 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "By the definition of $k ( \\varepsilon )$ , we have $a < 1$ if $\\delta + 1 > k ( \\varepsilon ) \\log n$ . For such $\\delta$ , we have ", + "bbox": [ + 173, + 814, + 723, + 833 + ], + "page_idx": 18 + }, + { + "type": "equation", + "img_path": "images/fc09ff0f9c9bdeeb3f37e0f6c7e58b8b98a7adbcd430ca7cb03b465487d743d3.jpg", + "text": "$$\n\\begin{array} { l } { \\displaystyle \\operatorname* { P r } ( | | C - \\bar { \\Delta } | | > a ) \\leq 2 N \\exp \\left( - \\frac { 3 \\log ( 4 N / \\varepsilon ) } { 2 ( 1 + a / 3 ) } \\right) } \\\\ { \\leq 2 N \\exp \\left( - \\log ( 4 N / \\varepsilon ) \\right) \\quad \\displaystyle ( \\because a < 1 ) } \\\\ { = \\displaystyle \\frac { \\varepsilon } { 2 } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 303, + 840, + 694, + 924 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Next, we bound $\\| \\tilde { \\Delta } - C \\|$ . First, since $a < 1$ , by Chernoff bound (see, e.g. Angluin & Valiant (1979); Hagerup & Rub (1990))), we have ¨ ", + "bbox": [ + 171, + 102, + 825, + 132 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/74d357cc81d67fef8ac3d521a2d5baabb76cb5a42dfb3a5cb3a28999d9b09ecd.jpg", + "text": "$$\n\\begin{array} { r l r } { { \\operatorname* { P r } ( | d _ { i } - t _ { i } | > a ( t _ { i } + 1 ) ) \\le 2 \\exp ( - \\frac { a ^ { 2 } ( t _ { i } + 1 ) } { 3 } ) } } \\\\ & { } & \\\\ & { } & { \\le 2 \\exp ( - \\frac { a ^ { 2 } ( \\delta + 1 ) } { 3 } ) } \\\\ & { } & { = \\frac { \\varepsilon } { 2 N } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 326, + 136, + 668, + 237 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Therefore, if $| d _ { i } - t _ { i } | \\leq a ( t _ { i } + 1 )$ , then we have ", + "bbox": [ + 173, + 238, + 495, + 253 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/c1060e4c83d8629475673c96d2ea0f7c95c94f2a4a6eb00fc748a911f99f3501.jpg", + "text": "$$\n\\begin{array} { r l r } { \\left. \\sqrt { \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right. \\le \\left. \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } - 1 \\right. } & { \\left( \\cdot \\cdot | \\sqrt { x } - 1 | \\le | x - 1 | \\mathrm { \\ f o r \\ } x \\ge 0 \\right) } & \\\\ { = \\displaystyle \\left. \\displaystyle \\frac { d _ { i } - t _ { i } } { t _ { i } + 1 } \\right. } & \\\\ { \\le a . } & \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 269, + 257, + 727, + 353 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Therefore, by union bound, we have ", + "bbox": [ + 173, + 357, + 413, + 371 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/277ca10271cab09840a50b713b61446378a2676bf929d31999e2bd31576d319d.jpg", + "text": "$$\n\\| \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| = \\operatorname* { m a x } _ { i \\in [ N ] } \\left| \\sqrt { \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right| \\leq a\n$$", + "text_format": "latex", + "bbox": [ + 346, + 375, + 651, + 417 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "with probability at least $1 - \\varepsilon / 2$ . Further, since the eigenvalue of the augmented normalized Laplacian is in $[ 0 , 2 ]$ by the proof of Proposition 1, we have $\\| I _ { N } - \\tilde { \\Delta } \\| \\leq \\bar { 1 }$ . By combining them, we have ", + "bbox": [ + 176, + 421, + 823, + 465 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/b36d7b90316bd484e3acdd5b2078ffc194317e76183ac3b51ff553211a8c7236.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\tilde { \\Delta } - C \\| = \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } ) ( I _ { N } - \\tilde { \\Delta } ) \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } + ( I _ { N } - \\tilde { \\Delta } ) ( I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } ) \\| } \\\\ & { \\qquad \\leq \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| \\| \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| + \\| I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| } \\\\ & { \\qquad \\leq a ( a + 1 ) + a . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 236, + 464, + 761, + 527 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "From (5) and (6), we have ", + "bbox": [ + 173, + 530, + 348, + 545 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/7da86c93036b713cc0974d5bb45826b01ccbb959f3adf50cc6bf75e87c2a16ef.jpg", + "text": "$$\n\\begin{array} { r l } & { \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\| } \\\\ & { \\qquad \\leq a + a ( a + 1 ) + a } \\\\ & { \\qquad \\leq a ^ { 2 } + 3 a } \\\\ & { \\qquad \\leq 4 a \\quad ( \\because a < 1 ) } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 380, + 546, + 616, + 623 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "with probability at least $1 - \\varepsilon$ by union bound. ", + "bbox": [ + 174, + 642, + 480, + 659 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Let $N \\in { \\mathbb { N } } _ { + }$ and $p > 0$ . In the case of the Erdos-R ˝ enyi graph ´ $G _ { N , p }$ , we should set $P = p ( J _ { N } - I _ { N } )$ where $J _ { N } \\in \\mathbb { R } ^ { N \\times N }$ are the all-one matrix. Then, we have $\\bar { A } = p J _ { N } + ( 1 - p ) I _ { N }$ , $\\bar { D } = ( N p -$ $p + 1 ) I _ { N }$ , and $\\begin{array} { r } { \\bar { \\Delta } = \\frac { p } { N p - p + 1 } ( N I _ { N } - J _ { N } ) } \\end{array}$ . Since the eigenvalue of $J _ { N }$ is $N$ (with multiplicity 1) and 0 (with multiplicity $N - 1 ,$ ), the eigenvalue of $\\bar { \\Delta }$ is 0 (with multiplicity 1) and $\\frac { N p } { N p - p + 1 }$ (with multiplicity $N - 1 )$ . For $G _ { N , p }$ , $\\delta$ is the expected average degree $( N - 1 ) p$ . Hence, we have the following lemma from Lemma 5: ", + "bbox": [ + 173, + 671, + 826, + 767 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Lemma 6. Let $\\tilde { \\Delta }$ be its augmented normalized Laplacian of the Erdos-R ˝ enyi graph ´ $G _ { N , p }$ . For any $\\varepsilon > 0 ,$ $\\begin{array} { r } { i f \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) ) } \\end{array}$ , then, with probability at least $1 - \\varepsilon$ , we have ", + "bbox": [ + 171, + 770, + 825, + 805 + ], + "page_idx": 19 + }, + { + "type": "equation", + "img_path": "images/e0c336f319cdb5b4687e3e0d749c2480665543a37bcb8772f9437612db712e00.jpg", + "text": "$$\n\\operatorname* { m a x } _ { i = 2 , \\ldots , N } \\left| \\lambda _ { i } ( \\tilde { \\Delta } ) - \\frac { N p } { N p - p + 1 } \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } .\n$$", + "text_format": "latex", + "bbox": [ + 323, + 810, + 673, + 852 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Corollary 4. Consider GCN on $G _ { N , p }$ . Let $W _ { l }$ be the weight of the $l$ -th layer of GCN and $s _ { l }$ be the maximum singular value of $W _ { l }$ for $l \\in \\mathbb { N } _ { + }$ . Set $s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } }$ . Let $\\varepsilon > 0$ . We define $k ( \\varepsilon ) : =$ $3 ( 1 + \\log ( 4 / \\varepsilon ) )$ and $\\begin{array} { r } { l ( N , p , \\varepsilon ) = { \\frac { 1 - p } { N p - p + 1 } } + 4 { \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } } \\end{array}$ . I $\\begin{array} { r } { \\ell \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) } \\end{array}$ and $s \\leq l ( N , \\varepsilon ) ^ { - 1 }$ , then, GCN on $G _ { N , p }$ satisfies the assumption of Theorem 2 with probability at least $1 - \\varepsilon$ . ", + "bbox": [ + 173, + 856, + 826, + 925 + ], + "page_idx": 19 + }, + { + "type": "text", + "text": "Proof of Theorem 3. Since log NNp = o(1), for fixed ε, we have ", + "bbox": [ + 173, + 101, + 578, + 121 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/463306171e0e7ca695b2cbb0e6dc4d97c6f902d744d5e10f5b1b37f770b5c8c8.jpg", + "text": "$$\n\\frac { N p - p + 1 } { \\log N } > \\frac { N p } { \\log N } > k ( \\varepsilon )\n$$", + "text_format": "latex", + "bbox": [ + 397, + 125, + 599, + 157 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "for sufficiently large $N$ . Further, $N p \\to \\infty$ as $N \\to \\infty$ whe n log NNp = o(1). Therefore, we have ", + "bbox": [ + 173, + 161, + 797, + 180 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/13f440081ab3f99459b4e3aa7a438bf7b3d2fbfe37e2f3dc6de25b22a2cb82fa.jpg", + "text": "$$\n\\frac { ( 1 - p ) ^ { 2 } } { N p - p + 1 } \\leq \\frac { 1 } { N p } \\leq ( 7 - 4 \\sqrt { 3 } ) ^ { 2 } \\log \\left( \\frac { 4 N } { \\varepsilon } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 343, + 184, + 655, + 219 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "for sufficiently large $N$ . Hence. ", + "bbox": [ + 173, + 222, + 382, + 237 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/805df5f48792754d6a0d9f84f4cf09222c7674b243da522e00a34824e6f6df78.jpg", + "text": "$$\n\\frac { 1 - p } { N p - p + 1 } \\leq ( 7 - 4 \\sqrt { 3 } ) \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } .\n$$", + "text_format": "latex", + "bbox": [ + 357, + 241, + 640, + 282 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Therefore, we have $\\begin{array} { r } { l ( N , p , \\varepsilon ) \\le 7 \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } \\end{array}$ . Therefore, if $s ~ \\le ~ \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } }$ , then we have $s \\leq l ( N , p , \\varepsilon ) ^ { - 1 }$ . ", + "bbox": [ + 173, + 287, + 826, + 328 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "E MISCELLANEOUS PROPOSITIONS ", + "text_level": 1, + "bbox": [ + 174, + 345, + 483, + 363 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "E.1 INVARIANCE OF ORTHOGONAL COMPLEMENT SPACE ", + "bbox": [ + 173, + 376, + 586, + 392 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proposition 2. Let $P \\in \\mathbb { R } ^ { N \\times N }$ be a symmetric matrix, treated as a linear operator $P : \\mathbb { R } ^ { N } \\mathbb { R } ^ { N }$ . If a subspace $U \\subset \\mathbb { R } ^ { N }$ is invariant under $P$ (i.e., if $u \\in U$ , then $P u \\in U$ ), then, $U ^ { \\perp }$ is invariant under $P$ , too. ", + "bbox": [ + 173, + 401, + 825, + 445 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. For any $u \\in U ^ { \\perp }$ and $v \\in U$ , by symmetry of $P$ , we have ", + "bbox": [ + 174, + 459, + 596, + 476 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/52ab40224e5255fd51194ad825ef29b1385ab12fd7152044ad6cf0db196800a5.jpg", + "text": "$$\n\\langle P u , v \\rangle = ( P u ) ^ { \\top } v = u ^ { \\top } P ^ { \\top } v = u ^ { \\top } P v = \\langle u , P v \\rangle .\n$$", + "text_format": "latex", + "bbox": [ + 326, + 478, + 669, + 497 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Since $U$ is an invariant space of $P$ , we have $P v \\in U$ . Hence, we have $\\langle u , P v \\rangle = 0$ because $u \\in U ^ { \\perp }$ We obtain $P u \\in U ^ { \\perp }$ by the definition of $U ^ { \\perp }$ . □ ", + "bbox": [ + 176, + 502, + 821, + 532 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "E.2 CONVERGENCE TO TRIVIAL FIXED POINT ", + "text_level": 1, + "bbox": [ + 173, + 547, + 509, + 563 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Let $P \\in \\mathbb { R } ^ { N \\times N }$ be a symmetric matrix, $W _ { l } \\in \\mathbb { R } ^ { C \\times C }$ , $s _ { l }$ be the maximum singular value of $W _ { l }$ for $l \\in \\mathbb { N } _ { + }$ . We define $f _ { l } ^ { ^ { \\bullet } } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { N \\times { \\dot { C } } }$ by $f _ { l } ( X ) : = \\sigma ( P X W _ { l } )$ where $\\sigma$ is the element-wise ReLU function. ", + "bbox": [ + 173, + 571, + 826, + 616 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proposition 3. Suppose further that the operator norm of $P$ is no larger than $\\lambda ,$ , then we have $\\| f _ { l } ( \\bar { \\boldsymbol { X } } ) \\| _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\| \\bar { \\boldsymbol { X } } \\| _ { \\mathrm { F } }$ for any $l \\in \\mathbb { N } _ { + }$ . In particular, let $s : = \\operatorname* { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }$ . If $s \\lambda < 1$ , then, $X _ { l }$ exponentially approaches 0 as $l \\infty$ . ", + "bbox": [ + 173, + 619, + 825, + 662 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. Since $\\lambda$ is the operator norm of $P | _ { U ^ { \\perp } }$ , the assumption implies that the operator norm of $P$ itself is no larger than $\\lambda$ . Therefore, we have $\\| P X W _ { l } \\| _ { \\mathrm { F } } \\leq \\lambda \\bar { \\| } X W _ { l } \\| _ { \\mathrm { F } } \\leq s _ { l } \\bar { \\lambda } \\| X \\| _ { \\mathrm { F } }$ . On the other hand, since $\\sigma ( x ) ^ { 2 } \\leq x ^ { 2 }$ for any $x \\in \\mathbb { R }$ , we have $\\| \\sigma ( X ) \\| _ { \\mathrm { F } } \\leq \\| X \\| _ { F }$ for any $\\boldsymbol { X } ^ { \\prime } \\in \\mathbb { R } ^ { N \\times C }$ . Combining the two, we have $\\Vert f _ { l } ( X ) \\Vert _ { \\mathrm { F } } \\leq \\Vert P X W _ { l } \\Vert _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\Vert X \\Vert _ { \\mathrm { F } }$ . □ ", + "bbox": [ + 174, + 678, + 825, + 736 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "E.3 STRICTNESS OF THEOREM 1 ", + "text_level": 1, + "bbox": [ + 174, + 751, + 413, + 765 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Theorem 1 implies that if $s \\lambda \\leq 1$ , then, one-step transition $f _ { l }$ does not increase the distance to $\\mathcal { M }$ . In this section, we first prove that this theorem is strict in the sense that, there exists a situation in which $s _ { l } \\lambda > 1$ holds and the distance $d _ { \\mathcal { M } }$ increases by one-step transition $f _ { l }$ at some point $X$ . ", + "bbox": [ + 173, + 776, + 825, + 820 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Set $N \\gets 2$ , $C \\gets 1$ , and $M \\gets 1$ in Section 3.2. For $\\mu , \\lambda > 0$ , we set ", + "bbox": [ + 174, + 825, + 627, + 840 + ], + "page_idx": 20 + }, + { + "type": "equation", + "img_path": "images/31c8f337f767b389f9e29dc55525ffeb7295cd5c21158f1437be017ccbef7b58.jpg", + "text": "$$\nP [ { \\mu \\atop 0 } \\lambda ] , e [ 1 \\atop 0 ] , U \\{ [ { x \\atop y } ] \\mid y = 0 \\} .\n$$", + "text_format": "latex", + "bbox": [ + 336, + 843, + 656, + 878 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Then, by definition, we can check that the 3-tuple $( P , e , U )$ satisfies the Assumptions 1 and 2. Set $\\mathcal { M } : = U \\otimes \\mathbb { R } = U$ and choose $W \\in \\mathbb { R }$ so that $W ^ { \\setminus } > \\lambda ^ { - 1 }$ . Finally define $f : \\mathbb { R } ^ { \\mathbf { \\hat { N } } \\times C } \\mathbb { R } ^ { N \\times C }$ by $f ( X ) : = \\sigma ( P X W )$ where $\\sigma$ is the element-wise ReLU function. ", + "bbox": [ + 173, + 881, + 825, + 924 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Proof. By definition, we have $d _ { \\mathcal { M } } ( X ) = | x _ { 2 } |$ . On the other hand, direct calculation shows that $f _ { l } ( X ) = \\left[ ( W \\mu X _ { 1 } ) ^ { + } \\quad ( W \\lambda X _ { 2 } ) ^ { + } \\right] ^ { \\top }$ and $d _ { \\mathcal { M } } ( f _ { l } ( X ) ) = ( W \\lambda X _ { 2 } ) ^ { + }$ where $x ^ { + } : = \\operatorname* { m a x } ( x , 0 )$ for $x \\in \\mathbb { R }$ . Since $W > \\lambda ^ { - 1 }$ and $x _ { 2 } > 0$ , we have $d _ { \\mathcal { M } } ( f _ { l } ( X ) ) > d _ { \\mathcal { M } } ( X )$ . □ ", + "bbox": [ + 173, + 132, + 825, + 184 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Next, we prove the non-strictness of Theorem 1 in the sense that there exists a situation in which $s _ { l } \\lambda > 1$ holds and the distance $d _ { \\mathcal { M } }$ uniformly decreases by $f _ { l }$ . Again, we set Set $N \\gets 2$ , $C \\gets 1$ , and $M \\gets 1$ . Let $\\lambda \\in ( 1 , 2 )$ and set ", + "bbox": [ + 173, + 198, + 826, + 241 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/087c9606e481a961a37b1e1babb22cba1730aec8a623132d768567bf6bb36c81.jpg", + "text": "$$\nP \\frac { \\lambda } { 2 } [ \\begin{array} { c c } { 1 } & { - 1 } \\\\ { - 1 } & { 1 } \\end{array} ] , e \\frac { 1 } { \\sqrt { 2 } } [ \\begin{array} { c } { 1 } \\\\ { 1 } \\end{array} ] , U \\{ [ \\begin{array} { c } { x } \\\\ { y } \\end{array} ] | x = y \\}\n$$", + "text_format": "latex", + "bbox": [ + 307, + 247, + 691, + 282 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Then, we can directly show that 3-tuple $( P , e , U )$ satisfies the Assumptions 1 and 2. Set $W 1$ . ", + "bbox": [ + 171, + 287, + 807, + 303 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Proposition 5. We have $W \\lambda > 1$ and $d _ { \\mathcal { M } } ( f _ { l } ( X ) ) < d _ { \\mathcal { M } } ( X )$ for all $X \\in \\mathbb { R } ^ { 2 }$ . ", + "bbox": [ + 174, + 306, + 687, + 323 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Proof. First, note that $\\begin{array} { r } { e ^ { \\prime } : = \\frac { 1 } { \\sqrt { 2 } } \\left[ { \\begin{array} { l l } { 1 } & { - 1 } \\end{array} } \\right] ^ { \\top } } \\end{array}$ is the eigenvector of $P$ associated to $\\lambda \\colon P e ^ { \\prime } = \\lambda e ^ { \\prime }$ . For $X = a e + b e ^ { \\prime } \\left( a , b { \\dot { \\omega } } 0 \\right)$ , the distance between $X$ and $\\mathcal { M }$ is $d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = | b |$ . On the other hand, by direct computation, we have ", + "bbox": [ + 173, + 337, + 825, + 387 + ], + "page_idx": 21 + }, + { + "type": "equation", + "img_path": "images/a159a4cc7dd5ac398b3cff74136fefb345275fef911e7b7089e5ae12ee2d25ab.jpg", + "text": "$$\nf ( X ) = \\sigma ( P X W ) = { \\left\\{ \\begin{array} { l l } { \\left[ 0 \\quad { \\frac { \\lambda b } { \\sqrt { 2 } } } \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b \\geq 0 { \\mathrm { ) } } , } \\\\ { \\left[ { \\frac { - \\lambda b } { \\sqrt { 2 } } } \\quad 0 \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b < 0 { \\mathrm { ) } } . } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 333, + 392, + 663, + 450 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Therefore, the distance between $f ( X )$ and $\\mathcal { M }$ is $d _ { \\mathcal { M } } ( f ( X ) ) = \\lambda | b | / 2$ . Since $\\lambda \\ : < \\ : 2$ , we have $d _ { \\mathcal { M } } ( f ( X ) ) < d _ { \\mathcal { M } } ( X )$ for any $X \\in \\mathbb { R } ^ { 2 }$ . □ ", + "bbox": [ + 174, + 455, + 823, + 486 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "We have shown that the non-negativity of $e$ (Assumption 1) is not a redundant condition in Section 6.1. ", + "bbox": [ + 173, + 500, + 825, + 529 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "F RELATION TO MARKOV PROCESS ", + "text_level": 1, + "bbox": [ + 174, + 549, + 485, + 565 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "It is known that any Markov process on finite states converges to a unique distribution (equilibrium) if it is irreducible and aperiodic (see, e.g., Norris (1998)). As we see in this section, this theorem is the special case of Corollary 3. ", + "bbox": [ + 173, + 580, + 825, + 622 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Let $S : = \\{ 1 , \\ldots , N \\}$ be a finite discrete state space. Consider a Markov process on $S$ characterized by a symmetric transition matrix $P = ( p _ { i j } ) _ { i , j \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }$ such that $P \\geq 0$ and $P \\mathbf { 1 } = \\mathbf { 1 }$ where 1 is the all-one vector. We interpret $p _ { i j }$ as the transition probability from a state $i$ to $j$ . We associate $P$ with a graph $G _ { P } = ( V _ { P } , E _ { P } )$ by $V _ { P } = [ N ]$ and $( i , j ) \\in E _ { P }$ if and only if $p _ { i j } > 0$ . Since $P$ is symmetric, we can regard $G _ { P }$ as an undirected graph. We assume $P$ is irreducible and aperiodic 10. Perron – Frobenius’ theorem (see, e.g., Meyer (2000)) implies that $P$ satisfy the assumption of Corollary 3 with $M = 1$ . ", + "bbox": [ + 173, + 628, + 825, + 727 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Proposition 6 (Perron – Frobenius). Let the eigenvalues of $P$ be $\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }$ . Then, we have $- 1 < \\lambda _ { 1 }$ , $\\lambda _ { N - 1 } < 1$ , and $\\lambda _ { N } = 1$ . Further, there exists unique vector $e \\in \\mathbb { R } ^ { N }$ such that $e \\geq 0$ , $\\| e \\| = 1$ , and $e$ is the eigenvector for the eivenvalue 1. ", + "bbox": [ + 174, + 731, + 825, + 773 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Corollary 5. Let $\\begin{array} { r } { \\lambda : = \\operatorname* { m a x } _ { n = 1 , \\ldots , N - 1 } | \\lambda _ { n } | ( < 1 ) } \\end{array}$ and $\\mathcal { M } : = \\{ e \\otimes w \\ | \\ w \\in \\mathbb { R } ^ { C } \\}$ . If $s \\lambda < 1$ , then, for any initial value $X _ { 1 }$ , $X _ { l }$ exponentially approaches $\\mathcal { M }$ as $l \\infty$ . ", + "bbox": [ + 169, + 776, + 821, + 808 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "If we set $C = 1$ and $W _ { l } = 1$ for all $l \\in \\mathbb { N } _ { + }$ , then, we can inductively show that $X _ { l } \\geq 0$ for any $l \\geq 2$ . Therefore, we can interpret $X _ { l }$ as a measure on $S$ . Suppose further that we take the initial value $X _ { 1 }$ as $X _ { 1 } ~ \\geq ~ 0$ and $X _ { 1 } ^ { \\top } \\mathbf { \\hat { 1 } } = 1$ so that we can interpret $X _ { 1 }$ as a probability distribution on $S$ . Then, we can inductively show that $X _ { l } \\geq 0$ , $X _ { l } ^ { \\top } \\mathbf { 1 } = 1$ (i.e., $X _ { l }$ is a probability distribution on ", + "bbox": [ + 173, + 818, + 825, + 876 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "$S$ ), and $X _ { l + 1 } = \\sigma ( P X _ { l } W _ { l } ) = P X _ { l }$ for all $l \\in \\mathbb { N } _ { + }$ . In conclusion, the corollary is reduced to the fact that if a finite and discrete Markov process is irreducible and aperiodic, any initial probability distribution converges exponentially to an equibrilium. In addition, the the rate $\\lambda$ corresponds to the mixing time of the Markov process. ", + "bbox": [ + 174, + 102, + 825, + 160 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "G GCN DEFINED BY NORMALIZED LAPLACIAN ", + "text_level": 1, + "bbox": [ + 174, + 179, + 591, + 195 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "In Section 4, we defined $P$ using the augmented normalized Laplacian $\\tilde { \\Delta }$ by $P = I _ { N } - \\tilde { \\Delta }$ . We can alternatively use the usual normalized Laplacian $\\Delta$ instead of the augmented one to define $P$ and want to apply the theory developed in Section 3.2. We write the normalized Laplacian version as $P _ { \\Delta } : = I _ { N } - \\Delta$ . The only obstacle is that the smallest eigenvalue $\\lambda _ { 1 }$ of $P _ { \\Delta }$ can be equal to $- 1$ , while that of $P$ is strictly larger than $- 1$ (see, Proposition 1). This corresponds to that fact the largest eigenvalue of $\\tilde { \\Delta }$ is strictly smaller than 2, while that for $\\Delta$ can be 2. It is known that the largest eigenvalue of $\\Delta$ is 2 if and only if the graph has a non-trivial bipartite connected component (see, e.g., Chung $\\&$ Graham (1997)). Therefore, we can develop a theory using the normalized Laplacian instead of the augmented one in parallel for such a graph $G$ . ", + "bbox": [ + 173, + 208, + 825, + 338 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "In Section 5, we characterized the asymptotic behavior of GCN defined by the augmented normalized Laplacian via its spectral distribution (Lemma 6 of Appendix D). We can derive a similar claim for GCN defined via the normalized Laplacian using the original theorem for the normalized Laplacian in Chung & Radcliffe (2011) (Theorem 7 therein). The normalized Laplacian version of GCN is advantegeous over the one made from the augmented one because we know its spectral distribution for broader range of random graphs. For example, Chung & Radcliffe (2011) proved the convergence of the spectral distribution of the normalized Laplacian for Chung-Lu’s model (Chung & Lu, 2002), which includes power law graphs as a special case (see, Theorem 4 of Chung & Radcliffe (2011)). ", + "bbox": [ + 173, + 343, + 825, + 469 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "H DETAILS OF EXPERIMENT SETTINGS ", + "text_level": 1, + "bbox": [ + 174, + 488, + 516, + 506 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "H.1 EXPERIMENT OF SECTION 6.1 ", + "text_level": 1, + "bbox": [ + 176, + 520, + 424, + 534 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "We set the eigenvalue of $P$ to $\\lambda _ { 1 } = 0 . 5$ and $\\lambda _ { 2 } = 1 . 0$ and randomly generated $P$ until the eigenvector $e$ associated to $\\lambda _ { 2 }$ satisfies the condition of each case described in the main article. We set $W = 1 . 2$ and used the following values for each case as $P$ and $e$ . ", + "bbox": [ + 174, + 545, + 825, + 588 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "H.1.1 CASE 1 ", + "text_level": 1, + "bbox": [ + 174, + 603, + 284, + 617 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/a45a554cc59f5473c1277d0fc3734b6b8f02d7f173def87ef21b7d057d87c7cf.jpg", + "text": "$$\nP = { \\left[ 0 . 2 4 9 9 8 1 9 \\quad 0 . 2 4 9 9 8 1 9 \\right] } , \\quad e = { \\left[ \\begin{array} { l } { 0 . 7 0 2 8 3 9 2 } \\\\ { 0 . 2 4 9 9 8 1 9 } \\end{array} \\right] } .\n$$", + "text_format": "latex", + "bbox": [ + 307, + 627, + 691, + 664 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "H.1.2 CASE 2 ", + "text_level": 1, + "bbox": [ + 174, + 672, + 285, + 688 + ], + "page_idx": 22 + }, + { + "type": "equation", + "img_path": "images/ea4a91aed77b14fa03a1a13d483c412a7308a19596269770f06c7f39a684c6ac.jpg", + "text": "$$\nP = \\left[ { \\begin{array} { c c } { 0 . 6 8 9 9 5 7 4 } & { - 0 . 2 4 2 6 8 2 7 } \\\\ { - 0 . 2 4 2 6 8 2 7 } & { 0 . 8 1 0 0 4 2 6 } \\end{array} } \\right] , \\quad e = \\left[ { \\begin{array} { c } { 0 . 6 1 6 3 7 2 3 4 } \\\\ { - 0 . 7 8 7 4 5 4 8 5 } \\end{array} } \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 294, + 698, + 700, + 734 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "H.2 EXPERIMENT OF SECTION 6.2 ", + "text_level": 1, + "bbox": [ + 176, + 747, + 428, + 762 + ], + "page_idx": 22 + }, + { + "type": "text", + "text": "We randomly generated an Erdos – R ˝ enyi graph ´ $G _ { N , p }$ with $N = 1 0 0 0$ and randomly generated a one-of- $K$ hot vector for each node and embed it to a $C$ -dimensional vector using a random matrix whose elements were randomly sampled from the standard Gaussian distribution. Here, $K = 1 0$ and $C = 3 2$ . We treated the resulting single as the input signal $X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }$ . We constructed a GCN with $L = 1 0$ layers and $C$ channels. All parameters were i.i.d. sampled from the Gaussian distribution whose standard deviation is same as the one used in LeCun et al. $( 2 0 1 2 ) ^ { 1 1 }$ and multiplied a scalar to each weight matrix so that the largest singular value equals to a specified value $s$ . We used three configurations $( p , s ) = ( 0 . 1 , 0 . 1 ) \\overset { \\cdot } { , } ( 0 . 5 , 1 . \\overset { \\cdot } { 0 } )$ , (0.5, 10.0). $\\lambda$ of the generated GCNs are 0.063, 0.197, 0.194, respectively. See Appendix 6.2 for the results of other configurations of $( p , s )$ . ", + "bbox": [ + 173, + 773, + 825, + 901 + ], + "page_idx": 22 + }, + { + "type": "table", + "img_path": "images/c6d48b13dcfd9e931066c5b04d7100274a1d08a14a6d14ae91c63888e263980c.jpg", + "table_caption": [ + "Table 1: Dataset specifications. The threshold $\\lambda ^ { - 1 }$ in the table indicates the upper bound of Corollary 2. " + ], + "table_footnote": [], + "table_body": "
#Node#Edge#ClassChance RateThreshold λ-1
Cora27085429630.2%1+3.62 × 10-3
CiteSeer33124732721.1%1 + 1.25 × 10-3
PubMed1971744338339.9%1 + 9.57 × 10-3
", + "bbox": [ + 248, + 142, + 748, + 215 + ], + "page_idx": 23 + }, + { + "type": "table", + "img_path": "images/d8e780ecbc0fa4e44cbb222c9e07cff879326aa7fcb26c3f08983e08f637de59.jpg", + "table_caption": [ + "Table 2: Dataset specifications for noisy citation networks. The threshold $\\lambda ^ { - 1 }$ in the table indicates the upper bound of Corollary 2. " + ], + "table_footnote": [], + "table_body": "
Original Dataset#Edge AddedThreshold λ-1
Noisy Cora 2500Cora24951.11
Noisy ( Cora 5000Cora49881.15
Noisy CiteSeerCiteSeer49911.13
Noisy PubMedPubMed249931.17
", + "bbox": [ + 254, + 272, + 741, + 358 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "H.3 EXPERIMENT OF SECTION 6.3 ", + "text_level": 1, + "bbox": [ + 174, + 386, + 426, + 400 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "H.3.1 DATASET ", + "text_level": 1, + "bbox": [ + 174, + 412, + 297, + 428 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We used the Cora (McCallum et al., 2000; Sen et al., 2008), CiteSeer (Giles et al., 1998; Sen et al., 2008), and PubMed(Sen et al., 2008) datasets for experiments. We obtained the preprocessed dataset from the code repository of Kipf & Welling $( 2 0 1 7 ) ^ { \\hat { 1 } 2 }$ . Table 1 summarizes specifications of datasets and their noisy version (explained in the next section). ", + "bbox": [ + 174, + 438, + 823, + 494 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "The Cora dataset is a citation network dataset consisting of 2708 papers and 5429 links. Each paper is represented as the occurence of 1433 unique words and is associated to one of 7 genres (Case Based, Genetic Algorithms, Neural Networks, Probabilistic Methods, Reinforcement Learning, Rule Learning, Theory). The graph made from the citation links has 78 connected components and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately $\\tilde { \\mu } = 3 . 6 2 \\times$ $1 0 ^ { - 3 }$ . Therefore, the upper bound of Theorem 2 is $\\lambda ^ { - 1 } = ( \\bar { 1 - \\mu } ) ^ { - 1 } \\approx \\bar { 1 } + 3 . 6 2 \\times \\bar { 1 0 ^ { - 3 } }$ . 818 out of 2708 samples are labelled as “Probabilistic Methods”, which is the largest proportion. Therefore, the chance rate is $8 1 8 / 2 7 0 8 = 3 0 . 2 \\%$ . ", + "bbox": [ + 173, + 501, + 825, + 613 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "The CiteSeer dataset is a citation network dataset consisting of 3312 papers and 4732 links. Each paper is represented as the occurence of 3703 unique words and is associated to one of 6 genres (Agents, AI, DB, IR, ML, HCI). The graph made from the citation links has 438 connected components and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately $\\tilde { \\mu } = 1 . 2 5 \\times 1 0 ^ { - 3 }$ . Therefore, the upper bound of Theorem 2 is $\\lambda ^ { - 1 } = ( 1 - \\dot { \\tilde { \\mu } } ) ^ { - 1 } \\approx 1 + \\dot { 1 } . 2 5 \\times 1 0 ^ { - \\dot { 3 } }$ . 701 out of 2708 samples are labelled as “IR”, which is the largest proportion. Therefore, the chance rate is $7 0 1 / 3 3 1 2 = \\hat { 2 } 1 . 1 \\%$ . ", + "bbox": [ + 173, + 619, + 825, + 717 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "The PubMed dataset is a citation network dataset consisting of 19717 papers and 44338 links. Each paper is represented as the occurence of 500 unique words and is associated to one of 3 genres (“Diabetes Mellitus, Experimental”, “Diabetes Mellitus Type 1”, “Diabetes Mellitus Type $2 ^ { \\circ }$ ). The graph made from the citation links has 438 connected components and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately $\\tilde { \\mu } = 9 . 4 8 \\times 1 0 ^ { - 3 }$ . Therefore, the upper bound of Theorem 2 is $\\lambda ^ { - 1 } = ( \\bar { 1 ^ { - } } \\tilde { \\mu } ) ^ { - 1 } \\approx \\bar { 1 ^ { + } } 9 . 5 7 \\times \\bar { 1 0 ^ { - 3 } }$ . 7875 out of 19717 samples are labelled as “Diabetes Mellitus Type $2 ^ { \\circ }$ , which is the largest proportion. Therefore, the chance rate is $7 8 7 5 / 1 9 7 1 7 = 3 9 . 9 \\%$ . ", + "bbox": [ + 173, + 723, + 825, + 835 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "H.3.2 NOISY CITATION NETWORKS ", + "text_level": 1, + "bbox": [ + 174, + 853, + 436, + 868 + ], + "page_idx": 23 + }, + { + "type": "text", + "text": "We summarize the properties of noisy citation networks in Table 2. ", + "bbox": [ + 174, + 880, + 612, + 895 + ], + "page_idx": 23 + }, + { + "type": "image", + "img_path": "images/33c624416452a1afbbaf1d3a06a17fe54c6e9a677c7771baa460eb82489179e5.jpg", + "image_caption": [ + "Figure 5: Spectral distribution of Laplacian for the citation network datasets. Left: normalized Laplacian. Right: augmented normalized Laplacian. Top: Cora and Noisy Cora (2500, 5000). Bottom: CiteSeer and Noisy CiteSeer. " + ], + "image_footnote": [], + "bbox": [ + 202, + 108, + 794, + 407 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We created two datasets from the Cora dataset: Noisy Cora 2500 and Noisy Cora 5000. Noisy Cora 2500 is made from the Cora dataset by uniformly randomly adding 2500 edges, respectively. Since some random edges are overlapped with existing edges, the number of newly-added edges is 2495 in total. We only changed the underlying graph from the Cora dataset and did not change word occurences (feature vectors) and genres (labels). The underlying graph of the Noisy Cora dataset has two connected components and the smallest positive eigenvalue is $\\tilde { \\mu } \\approx 9 . 6 2 \\times 1 0 ^ { - 2 }$ . Therefore, the threshold of the maximum singular values of in Theorem 2 has been increased to $\\lambda ^ { - 1 } = ( 1 - \\tilde { \\mu } ) ^ { - 1 } \\approx 1 . 1 1$ . Similarly, Noisy Cora 5000 was made by adding 5000 edges uniformaly randomly. The number of newly added edges is 4988 and the graph is connected (i.e., it has only 1 connected component). $\\tilde { \\mu }$ and $\\lambda$ are $\\tilde { \\mu } \\approx 1 . \\bar { 3 } 2 \\times 1 0 ^ { - 1 }$ and $\\lambda = \\bar { ( 1 - \\mu ) } ^ { - 1 } \\approx 1 . 1 5$ , respectively. ", + "bbox": [ + 173, + 501, + 825, + 641 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We made the noisy version of CiteSeer (Noisy CiteSeer) and PubMed (Noisy PubMed), in the similar way, by adding 5000 and 25000 edges uniformly randomly to the datasets. Since some random edges were overlapped with existing edges, 4991 and 24993 edges are newly added, respectively. This manipulation reduced the number of connected component of the graph to 3. $\\tilde { \\mu }$ is approximately $1 . \\dot { 1 1 } \\times 1 0 ^ { - 1 }$ (Noisy CiteSeer) and $1 . 4 3 \\times 1 0 ^ { - 1 }$ (Noisy PubMed) and $\\lambda ^ { - 1 } = { \\bf \\bar { \\Phi } } ( 1 - \\bar { \\tilde { \\mu } } ) ^ { - 1 }$ is approximately 1.13 (Noisy CiteSeer) and 1.17 (Noisy PubMed), respectively. Figure 5 (right) shows the spectral distribution of the augmented normalized Laplacian For comparison, we show in Figure 5 (left) the spectral distribution of the normalized Laplacian for these datasets13. ", + "bbox": [ + 173, + 647, + 825, + 758 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "H.3.3 MODEL ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 176, + 775, + 400, + 790 + ], + "page_idx": 24 + }, + { + "type": "text", + "text": "We used a GCN consisting of a single node embedding layer, one to nine graph convolution layers, and a readout operation (Gilmer et al., 2017), which is a linear transformation common to all nodes in our case. We applied softmax function to the output of GCN. The output dimension of GCN is same as the number of classes (i.e., seven for Noisy Cora 2500/5000, six for Noisy CiteSeer, and three for Noisy PubMed). We treated the number of units in each graph convolution layer as a hyperparameter. Optionally, we specified the maximum singular values $s$ of graph convolution layers. The choice of $s$ is either 0.5 (smaller than 1), $s _ { 1 }$ (in the interval $\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}$ ), 3 and 10 (larger than $\\lambda ^ { - 1 }$ ). We used $s _ { 1 } = 1 . 0 5$ for Noisy Cora 2500, Noisy CiteSeer, and Noisy PubMed, and $s _ { 1 } = 1 . 1$ for Noisy Cora 5000 and Noisy CiteSeer so that $s _ { 1 }$ is not close to the edges of the the interval $\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}$ . ", + "bbox": [ + 174, + 801, + 825, + 885 + ], + "page_idx": 24 + }, + { + "type": "table", + "img_path": "images/80ab11f7788859aa5cff8fafb447d24232326adb5a8f87e277a4cff910d30034.jpg", + "table_caption": [ + "Table 3: Hyperparameters of the experiment in Section 6.3. $X \\sim \\mathrm { L o g U n i f } [ 1 0 ^ { a } , 1 0 ^ { b } ]$ denotes the random variable $\\log _ { 1 0 } X$ obeys the uniform distribution over $[ a , b ]$ . “Learning rate” corresponds to $\\alpha$ when “Optimization algorithm” is Adam (Kingma & Ba, 2015). " + ], + "table_footnote": [], + "table_body": "
NameValue
Unit size{10,20,..., 500}
Epoch{10,20,...,100}
Optimization algorithm{SGD,MomentumSGD,Adam}
Learning rateLogUnif[10-5,10-2]
", + "bbox": [ + 289, + 156, + 709, + 242 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 268, + 825, + 325 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "H.3.4 PERFORMANCE EVALUATION PROCEDURE ", + "text_level": 1, + "bbox": [ + 178, + 340, + 522, + 356 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "We split all nodes in a graph (either Noisy Cora 2500/5000 or Noisy CiteSeer) into training, validation, and test sets. Data split is the same as the one done by Kipf & Welling (2017). This is a transductive learning (Pan & Yang, 2010) setting because we can use node properties of the validation and test data during training. We trained the model three times for each choice of hyperparemeters using the training set and defined the objective function as the average accuracy on the validation set. We chose the combination of hyperparameters that achieves the best value of objective function. We evaluate the accuracy of the test dataset three times using the chosen combination of hyperparameters and computed their average and the standard deviation. ", + "bbox": [ + 174, + 364, + 825, + 477 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "H.3.5 TRAINING ", + "text_level": 1, + "bbox": [ + 174, + 493, + 303, + 507 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "At initialization, we sampled parameters from the i.i.d. Gaussian distribution. If the scale of maximum singular values $s$ was specified, we subsequently scaled weight matrices of graph convolution layers so that their maximum singular values were normalized to $s$ . The loss function was defined as the sum of the cross entropy loss for all training nodes. We train the model using the one of gradient-based optimization methods described in Table 3. ", + "bbox": [ + 174, + 518, + 825, + 588 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "H.3.6 HYPERPRAMETERS ", + "text_level": 1, + "bbox": [ + 176, + 604, + 366, + 619 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "Table 3 shows the set of hyperparameters from which we chose. Since we compute the representations of all nodes at once at each iteration, each epoch consists of 1 iteration. We employ Tree-structured Parzen Estimator (Bergstra et al., 2011) for hyperparameter optimization. ", + "bbox": [ + 174, + 630, + 823, + 671 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "H.3.7 IMPLEMENTATION ", + "text_level": 1, + "bbox": [ + 176, + 689, + 357, + 703 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "We used Chainer Chemistry14, which is an extension library for the deep learning framework Chainer (Tokui et al., 2015; 2019), to implement GCNs and Optuna (Akiba et al., 2019) for hyperparameter tuning. We conducted experiments in a signel machine which has 2 Intel(R) Xeon(R) Gold 6136 CPU@3.00GHz (24 cores), 192 GB memory (DDR4), and 3 GPGPUs (NVIDIA Tesla V100). Our implementation achieved $6 8 . 1 \\%$ with Dropout (Srivastava et al., 2014) (2 graph convolution layers) and $6 4 . 2 \\%$ without Dropout (1 graph convolution layer) on the test dataset. These are slightly worse than the accuracy reported in Kipf & Welling (2017), but are still comparable with it. ", + "bbox": [ + 174, + 713, + 825, + 811 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "H.4 EXPERIMENT OF SECTION 6.4 ", + "text_level": 1, + "bbox": [ + 176, + 829, + 426, + 843 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "The experiment settings are almost same as the experiment in Section 6.3. The only difference is that we did not train the node embedding layer, which we put before convolution layers of a GCN, while we did in Section 6.3. This is because we wanted to see the the effect of convolution operations ", + "bbox": [ + 178, + 856, + 823, + 897 + ], + "page_idx": 25 + }, + { + "type": "text", + "text": "on the perpendicular component of signals, while we interested in the prediction accuracy in real training settings in the previous experiment. ", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "I ADDITIONAL EXPERIMENT RESULTS ", + "text_level": 1, + "bbox": [ + 173, + 152, + 509, + 169 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "I.1 EXPERIMENT OF SECTION 6.1 ", + "text_level": 1, + "bbox": [ + 176, + 183, + 419, + 198 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "We show the vector field $V$ for various $W$ in Figure 6 (Case 1) and Figure 7 (Case 2). Parameters other than $W$ are same as experiments in Section 6.1 (detail values are available in Appendix H.1). ", + "bbox": [ + 174, + 209, + 823, + 238 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "I.2 EXPERIMENT OF SECTION 6.2 ", + "text_level": 1, + "bbox": [ + 176, + 255, + 419, + 268 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Figure 8 shows the relative log distance of signals and their upper bound for various edge probability $p$ and the maximum singular value $s$ . Note that we generate a new graph for each configuration of $( p , s )$ . Therefore, different configurations may have different graphs and hence different $\\lambda$ even they have a same edge probability $p$ in common. ", + "bbox": [ + 174, + 280, + 825, + 337 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "I.3 EXPERIMENT OF SECTION 6.3 ", + "text_level": 1, + "bbox": [ + 176, + 353, + 419, + 368 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "I.3.1 PREDICTIVE ACCURACY ", + "text_level": 1, + "bbox": [ + 176, + 380, + 397, + 393 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Figure 9 shows the comparison of predictive performance in terms the maximum singular value and layer size when the dataset is Noisy Cora 5000 (left) and Noisy Citeseer (right), respectively. Concrete values are available in Table 4. ", + "bbox": [ + 174, + 404, + 823, + 446 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "I.3.2 TRANSITION OF MAXIMUM SINGULAR VALUES ", + "text_level": 1, + "bbox": [ + 173, + 462, + 555, + 476 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Figure 10 – 13 show the transition of weight of graph convolution layers during training when the dataset is Noisy Cora 2500, Noisy Cora 5000, and Noisy CiteSeer, respectively. We note that the result of 3-layered GCN from the Noisy Cora 2500 is identical to Figure 3 (right) of the main article. ", + "bbox": [ + 173, + 486, + 825, + 529 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "I.4 EXPERIMENT OF SECTION 6.4 ", + "text_level": 1, + "bbox": [ + 176, + 545, + 419, + 559 + ], + "page_idx": 26 + }, + { + "type": "text", + "text": "Figure 14 shows the logarithm of relative perpendicular component and prediction accuracy on Noisy Cora, Noisy CiteSeer, and Noisy PubMed datasets. We use Pearson R as a correlation coefficient. If GCNs have only one layer, it has more large relative perpendicular components (corresponding to right points in the figures) than GCNs which have other number of layers. The correlation between the logarithm of relative perpendicular components and prediction accuracies are $0 . 8 2 7 ( p { = } 6 . 8 9 0 \\times \\bar { 1 0 } ^ { - 6 } )$ for Noisy Cora, $\\mathrm { { 0 . 5 2 4 } } ( p \\ = \\ 1 . { \\bar { 7 } } 7 1 \\times 1 0 ^ { - 2 } )$ for Noisy CiteSeer, and $0 . 6 7 9 ( p = 1 . 0 0 2 \\times 1 0 ^ { - 3 } )$ for Noisy PubMed, if we treat the one-layer case as outliers and remove them. ", + "bbox": [ + 173, + 570, + 825, + 683 + ], + "page_idx": 26 + }, + { + "type": "image", + "img_path": "images/a88890af3061b7f6c52d0927100734218d69193a2aa1e144aab4bb8cd705f753.jpg", + "image_caption": [ + "Figure 6: Vector field $V$ for various $W$ for Case 1. Top left: $W = 0 . 5$ . Top right: $W = 1 . 0$ . Middle left: $W = 1 . 2$ (same as Figure 1 in the main article). Middle right: $W = 1 . 5$ . Bottom left: $W = 2 . 0$ . Bottom right: $W = 4 . 0$ . Best view in color. " + ], + "image_footnote": [], + "bbox": [ + 186, + 181, + 784, + 795 + ], + "page_idx": 27 + }, + { + "type": "image", + "img_path": "images/55e8e2cb9210bdfb7542bd78186fe6fc29fb504e4a82ce013518941d8c8ae0bc.jpg", + "image_caption": [ + "Figure 7: Vector field $V$ for various $W$ for Case 2. Top left: $W = 0 . 5$ . Top right: $W = 1 . 0$ . Middle left: $W = 1 . 2$ (same as Figure 1 in the main article). Middle right: $W = 1 . 5$ . Bottom left: $W = 2 . 0$ . Bottom right: $W = 4 . 0$ . Best view in color. " + ], + "image_footnote": [], + "bbox": [ + 186, + 180, + 784, + 795 + ], + "page_idx": 28 + }, + { + "type": "table", + "img_path": "images/f96cfa9e68c23c4032c8a3be2585c35040745266b8bd544118d3a828d0808a9b.jpg", + "table_caption": [ + "Table 4: Comparison of performance in terms of maximum singular value of weights and layer size. “U” in the right most column indicates the accuracy of GCN without weight normalization. " + ], + "table_footnote": [], + "table_body": "
Noisy Cora 2500
Depth1.05310U
10.389 ± 0.1010.429 ± 0.0900.552 ± 0.0140.632 ± 0.0070.587 ± 0.008
30.273 ± 0.0510.309 ± 0.0170.580± 0.0580.661 ± 0.0030.494 ± 0.041
50.319 ± 0.0000.267 ± 0.0590.462 ± 0.0650.602 ± 0.0040.326 ± 0.029
70.261 ± 0.0760.262 ±0.0800.407 ± 0.0210.501 ± 0.0170.279 ± 0.129
90.261 ± 0.0800.319 ± 0.0000.284 ± 0.1090.443 ± 0.0140.319 ± 0.000
Noisy Cora 5000
Maximum Singular Value
Depth11.1310U
10.301 ± 0.0800.333 ± 0.0990.557 ± 0.0040.561 ± 0.0190.555 ± 0.016
30.245 ± 0.0660.247 ± 0.0760.370 ± 0.0410.587 ± 0.0090.286 ± 0.066
50.274± 0.0480.237 ± 0.0700.257 ± 0.0760.535 ± 0.0310.319 ± 0.000
70.263 ± 0.0800.297 ± 0.0310.260 ± 0.0740.339 ± 0.0600.319 ± 0.000
90.262 ± 0.0810.258 ± 0.0640.262 ± 0.0800.261 ±0.0820.318 ± 0.002
Noisy CiteSeer
Maximum Singular Value
Depth0.51.1 310U
10.461 ± 0.0180.467 ± 0.0120.490 ± 0.0160.494 ± 0.0060.495 ± 0.009
30.438 ± 0.0270.436 ± 0.0100.450 ± 0.0190.462 ± 0.0070.417 ± 0.061
50.285 ± 0.0080.371 ± 0.0160.373 ± 0.0110.425 ± 0.0070.380 ± 0.024
70.213 ± 0.0060.282 ± 0.0110.309 ± 0.0120.385 ± 0.0070.308 ± 0.012
90.182 ± 0.0050.242 ± 0.0300.303 ± 0.0210.325 ± 0.0030.229 ± 0.033
Noisy Pubmed
Maximum Singular Value
Depth0.51.1310U
10.488 ± 0.0390.636 ± 0.0060.641 ± 0.0100.632 ± 0.0020.631 ± 0.010
30.442 ± 0.0270.426 ± 0.0260.658 ± 0.0040.661 ± 0.0050.631 ± 0.013
50.431 ± 0.0330.431 ± 0.0340.561 ± 0.0830.641 ± 0.0040.424 ± 0.093
70.428 ± 0.0320.443 ± 0.0510.449 ± 0.0350.619 ± 0.0110.440 ± 0.041
90.413 ± 0.0090.438 ± 0.0390.539 ± 0.0520.569 ± 0.0420.473 ± 0.031
", + "bbox": [ + 181, + 251, + 816, + 810 + ], + "page_idx": 29 + }, + { + "type": "image", + "img_path": "images/35ca2d11400a46fce3bca8218b146c3b3f571e569a0c3840aef09cad2b8441e8.jpg", + "image_caption": [ + "Figure 8: The actual distance $d _ { \\mathcal { M } }$ to the invariant space $\\mathcal { M }$ and the upper bound inferred by Theorem 1. The edge probability $p$ takes 0.01(top), 0.1, 0.9(bottom) and the maximum singular value $s$ takes $0 . 1 ( \\mathrm { l e f t } ) , 1 . 0 , 1 0 ( \\mathrm { r i g h t } )$ . Blue lines are the log relative distance defined by $\\begin{array} { r } { y ( l ) : = \\log \\frac { d _ { \\mathcal { M } } ( X ^ { ( l ) } ) } { d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) } } \\end{array}$ and orange dotted lines are upper bound $y ( l ) : = l \\log ( s \\lambda )$ , where $X ^ { ( 0 ) }$ is the input signal and $X ^ { ( l ) }$ is the output of the $l$ -th layer. Best view in color. " + ], + "image_footnote": [], + "bbox": [ + 191, + 266, + 797, + 661 + ], + "page_idx": 30 + }, + { + "type": "image", + "img_path": "images/e5a0ea6bac9839dd91cc7cc13ba7f7a7b0ff470526d0f4afb7388e35011ae897.jpg", + "image_caption": [ + "Figure 9: Effect of the maximum singular values of weights on predictive performance. Horizontal dotted lines indicate the chance rates $3 0 . 2 \\%$ for Noisy Cora 5000, $2 1 . 2 \\%$ for Noisy CiteSeer, and $3 9 . 9 \\%$ for Noisy PubMed). The error bar is the standard deviation of 3 trials. Left: Noisy Cora 5000. Right: Noisy CiteSeer. Bottom: Noisy Pubmed. Best view in color. " + ], + "image_footnote": [], + "bbox": [ + 199, + 117, + 797, + 833 + ], + "page_idx": 31 + }, + { + "type": "image", + "img_path": "images/fbb64a2ad3ffb4819bd64e9f80ed2a25542f265d2c003b561d981ebe46bf9d83.jpg", + "image_caption": [ + "Figure 10: Transition of maximum singular values of GCN during training using Noisy Cora 2500. Top left: 1 layer. Top right: 5 layers. Bottom left: 7 layers. Bottom right: 9 layers. " + ], + "image_footnote": [], + "bbox": [ + 191, + 242, + 808, + 733 + ], + "page_idx": 32 + }, + { + "type": "image", + "img_path": "images/1f6937585cdf3a009373b92bd7684c89717d7794c270d219f6efef36b2ea759b.jpg", + "image_caption": [ + "Figure 11: Transition of maximum singular values of GCN during training using Noisy Cora 5000. Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers. " + ], + "image_footnote": [], + "bbox": [ + 186, + 243, + 805, + 734 + ], + "page_idx": 33 + }, + { + "type": "image", + "img_path": "images/370a0e6bddfbd9236178e95fde9473ffa8af793fdb6a431485b1c118dd5fa30b.jpg", + "image_caption": [ + "Figure 12: Transition of maximum singular values of GCN during training using Noisy CiteSeer. Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers. " + ], + "image_footnote": [], + "bbox": [ + 191, + 242, + 808, + 733 + ], + "page_idx": 34 + }, + { + "type": "image", + "img_path": "images/8af84ea100c71eb26aa2e941cecfd27c1136c5885b58d83ae02109b6e1ef5f4c.jpg", + "image_caption": [ + "Figure 13: Transition of maximum singular values of GCN during training using Noisy PubMed. Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers. " + ], + "image_footnote": [], + "bbox": [ + 191, + 241, + 805, + 733 + ], + "page_idx": 35 + }, + { + "type": "image", + "img_path": "images/8d0df2fb98721b929112213b1bfbe51f28bd6ef4fb7b8349a5cec2e5bf926177.jpg", + "image_caption": [ + "Figure 14: Logarithm of relative perpendicular component and prediction accuracy. Left: Noisy CiteSeer. Right: Noisy PubMed. $p$ in the title represents the $p$ -value for the Pearson R coefficients. " + ], + "image_footnote": [], + "bbox": [ + 199, + 377, + 795, + 602 + ], + "page_idx": 36 + } +] \ No newline at end of file diff --git a/parse/train/S1ldO2EFPr/S1ldO2EFPr_middle.json b/parse/train/S1ldO2EFPr/S1ldO2EFPr_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..8f2b1a3b882bfaed408c6cd20af90f366ae380a5 --- /dev/null +++ b/parse/train/S1ldO2EFPr/S1ldO2EFPr_middle.json @@ -0,0 +1,101642 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 107, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 107, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "GRAPH NEURAL NETWORKS EXPONENTIALLY LOSE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 470, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 470, + 118 + ], + "score": 1.0, + "content": "EXPRESSIVE POWER FOR NODE CLASSIFICATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 348, + 181 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 246, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 246, + 147 + ], + "score": 1.0, + "content": "Kenta Oono1, 2, Taiji Suzuki1, 3", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 349, + 160 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 349, + 160 + ], + "score": 1.0, + "content": "{kenta oono, taiji}@mist.i.u-tokyo.ac.jp", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 156, + 322, + 170 + ], + "spans": [ + { + "bbox": [ + 112, + 156, + 322, + 170 + ], + "score": 1.0, + "content": "1The University of Tokyo 2Preferred Networks, Inc.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 167, + 340, + 183 + ], + "spans": [ + { + "bbox": [ + 111, + 167, + 340, + 183 + ], + "score": 1.0, + "content": "3RIKEN Center for Advanced Intelligence Project (AIP)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 278, + 210, + 333, + 222 + ], + "lines": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "spans": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 234, + 468, + 443 + ], + "lines": [ + { + "bbox": [ + 142, + 234, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 142, + 234, + 469, + 247 + ], + "score": 1.0, + "content": "Graph Neural Networks (graph NNs) are a promising deep learning approach for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "score": 1.0, + "content": "analyzing graph-structured data. However, it is known that they do not improve", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 470, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 470, + 270 + ], + "score": 1.0, + "content": "(or sometimes worsen) their predictive performance as we pile up many layers and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "score": 1.0, + "content": "add non-lineality. To tackle this problem, we investigate the expressive power of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "graph NNs via their asymptotic behaviors as the layer size tends to infinity. Our", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 470, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 301 + ], + "score": 1.0, + "content": "strategy is to generalize the forward propagation of a Graph Convolutional Net-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 469, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 313 + ], + "score": 1.0, + "content": "work (GCN), which is a popular graph NN variant, as a specific dynamical sys-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 312, + 469, + 322 + ], + "spans": [ + { + "bbox": [ + 142, + 312, + 469, + 322 + ], + "score": 1.0, + "content": "tem. In the case of a GCN, we show that when its weights satisfy the conditions", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 469, + 334 + ], + "score": 1.0, + "content": "determined by the spectra of the (augmented) normalized Laplacian, its output ex-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 470, + 345 + ], + "score": 1.0, + "content": "ponentially approaches the set of signals that carry information of the connected", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 344, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 469, + 356 + ], + "score": 1.0, + "content": "components and node degrees only for distinguishing nodes. Our theory enables", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "score": 1.0, + "content": "us to relate the expressive power of GCNs with the topological information of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 365, + 470, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 470, + 379 + ], + "score": 1.0, + "content": "underlying graphs inherent in the graph spectra. To demonstrate this, we charac-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 376, + 469, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 469, + 388 + ], + "score": 1.0, + "content": "terize the asymptotic behavior of GCNs on the Erdos – R˝ enyi graph. We show´", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "score": 1.0, + "content": "that when the Erdos – R ˝ enyi graph is sufficiently dense and large, a broad range ´", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "score": 1.0, + "content": "of GCNs on it suffers from the “information loss” in the limit of infinite layers", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 410, + 469, + 422 + ], + "spans": [ + { + "bbox": [ + 142, + 410, + 469, + 422 + ], + "score": 1.0, + "content": "with high probability. Based on the theory, we provide a principled guideline for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 420, + 470, + 434 + ], + "spans": [ + { + "bbox": [ + 142, + 420, + 470, + 434 + ], + "score": 1.0, + "content": "weight normalization of graph NNs. We experimentally confirm that the proposed", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 432, + 442, + 443 + ], + "spans": [ + { + "bbox": [ + 142, + 432, + 442, + 443 + ], + "score": 1.0, + "content": "weight scaling enhances the predictive performance of GCNs in real data1.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 108, + 463, + 206, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 208, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 208, + 478 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Motivated by the success of Deep Learning (DL), several attempts have been made to apply DL mod-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "score": 1.0, + "content": "els to non-Euclidean data, particularly, graph-structured data such as chemical compounds, social", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "networks, and polygons. Recently, Graph Neural Networks (graph NNs) (Duvenaud et al., 2015; Li", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "et al., 2016; Gilmer et al., 2017; Hamilton et al., 2017; Kipf & Welling, 2017; Nguyen et al., 2017;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "Schlichtkrull et al., 2018; Battaglia et al., 2018; Xu et al., 2019; Wu et al., 2019a) have emerged as a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "promising approach. However, despite their practical popularity, theoretical research of graph NNs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 552, + 245, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 245, + 567 + ], + "score": 1.0, + "content": "has not been explored extensively.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "The characterization of DL model expressive power, i.e., to identify what function classes DL mod-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "els can (approximately) represent, is a fundamental question in theoretical research of DL. Many", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "score": 1.0, + "content": "studies have been conducted for Fully Connected Neural Networks (FNNs) (Cybenko, 1989; Hornik,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "1991; Hornik et al., 1989; Barron, 1993; Mhaskar, 1993; Sonoda & Murata, 2017; Yarotsky, 2017)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "and Convolutional Neural Networks (CNNs) (Petersen & Voigtlaender, 2018; Zhou, 2018; Oono &", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "Suzuki, 2019). For such models, we have theoretical and empirical justification that deep and non-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 635, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 650 + ], + "score": 1.0, + "content": "linear architectures can enhance representation power (Telgarsky, 2016; Chen et al., 2018b; Zhou", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "& Feng, 2018). However, for graph NNs, several papers have reported that node representations go", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 657, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 672 + ], + "score": 1.0, + "content": "indistinguishable (known as over-smoothing) and prediction performances severely degrade when", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "we stack many layers (Kipf & Welling, 2017; Wu et al., 2019b; Li et al., 2018). Besides, Wu et al.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "(2019a) reported that graph NNs achieved comparable performance even if they removed interme-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "diate non-linear functions. These studies posed a question about the current architecture and made", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 701, + 439, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 439, + 716 + ], + "score": 1.0, + "content": "us aware of the need for the theoretical analysis of the graph NN expressive power.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 118, + 722, + 435, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 720, + 437, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 437, + 734 + ], + "score": 1.0, + "content": "1Code is available at https://github.com/delta2323/gnn-asymptotics.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "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": [ + 107, + 78, + 502, + 116 + ], + "lines": [ + { + "bbox": [ + 107, + 78, + 505, + 97 + ], + "spans": [ + { + "bbox": [ + 107, + 78, + 505, + 97 + ], + "score": 1.0, + "content": "GRAPH NEURAL NETWORKS EXPONENTIALLY LOSE", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 99, + 470, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 99, + 470, + 118 + ], + "score": 1.0, + "content": "EXPRESSIVE POWER FOR NODE CLASSIFICATION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 113, + 133, + 348, + 181 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 246, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 246, + 147 + ], + "score": 1.0, + "content": "Kenta Oono1, 2, Taiji Suzuki1, 3", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 349, + 160 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 349, + 160 + ], + "score": 1.0, + "content": "{kenta oono, taiji}@mist.i.u-tokyo.ac.jp", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 112, + 156, + 322, + 170 + ], + "spans": [ + { + "bbox": [ + 112, + 156, + 322, + 170 + ], + "score": 1.0, + "content": "1The University of Tokyo 2Preferred Networks, Inc.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 111, + 167, + 340, + 183 + ], + "spans": [ + { + "bbox": [ + 111, + 167, + 340, + 183 + ], + "score": 1.0, + "content": "3RIKEN Center for Advanced Intelligence Project (AIP)", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3.5, + "bbox_fs": [ + 111, + 134, + 349, + 183 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 210, + 333, + 222 + ], + "lines": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "spans": [ + { + "bbox": [ + 276, + 208, + 336, + 224 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 143, + 234, + 468, + 443 + ], + "lines": [ + { + "bbox": [ + 142, + 234, + 469, + 247 + ], + "spans": [ + { + "bbox": [ + 142, + 234, + 469, + 247 + ], + "score": 1.0, + "content": "Graph Neural Networks (graph NNs) are a promising deep learning approach for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 246, + 469, + 258 + ], + "score": 1.0, + "content": "analyzing graph-structured data. However, it is known that they do not improve", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 255, + 470, + 270 + ], + "spans": [ + { + "bbox": [ + 141, + 255, + 470, + 270 + ], + "score": 1.0, + "content": "(or sometimes worsen) their predictive performance as we pile up many layers and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "spans": [ + { + "bbox": [ + 141, + 267, + 470, + 280 + ], + "score": 1.0, + "content": "add non-lineality. To tackle this problem, we investigate the expressive power of", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "spans": [ + { + "bbox": [ + 141, + 278, + 470, + 290 + ], + "score": 1.0, + "content": "graph NNs via their asymptotic behaviors as the layer size tends to infinity. Our", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 290, + 470, + 301 + ], + "spans": [ + { + "bbox": [ + 141, + 290, + 470, + 301 + ], + "score": 1.0, + "content": "strategy is to generalize the forward propagation of a Graph Convolutional Net-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 300, + 469, + 313 + ], + "spans": [ + { + "bbox": [ + 141, + 300, + 469, + 313 + ], + "score": 1.0, + "content": "work (GCN), which is a popular graph NN variant, as a specific dynamical sys-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 312, + 469, + 322 + ], + "spans": [ + { + "bbox": [ + 142, + 312, + 469, + 322 + ], + "score": 1.0, + "content": "tem. In the case of a GCN, we show that when its weights satisfy the conditions", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 322, + 469, + 334 + ], + "spans": [ + { + "bbox": [ + 141, + 322, + 469, + 334 + ], + "score": 1.0, + "content": "determined by the spectra of the (augmented) normalized Laplacian, its output ex-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 333, + 470, + 345 + ], + "spans": [ + { + "bbox": [ + 141, + 333, + 470, + 345 + ], + "score": 1.0, + "content": "ponentially approaches the set of signals that carry information of the connected", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 344, + 469, + 356 + ], + "spans": [ + { + "bbox": [ + 141, + 344, + 469, + 356 + ], + "score": 1.0, + "content": "components and node degrees only for distinguishing nodes. Our theory enables", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "spans": [ + { + "bbox": [ + 141, + 355, + 469, + 367 + ], + "score": 1.0, + "content": "us to relate the expressive power of GCNs with the topological information of the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 365, + 470, + 379 + ], + "spans": [ + { + "bbox": [ + 141, + 365, + 470, + 379 + ], + "score": 1.0, + "content": "underlying graphs inherent in the graph spectra. To demonstrate this, we charac-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 376, + 469, + 388 + ], + "spans": [ + { + "bbox": [ + 141, + 376, + 469, + 388 + ], + "score": 1.0, + "content": "terize the asymptotic behavior of GCNs on the Erdos – R˝ enyi graph. We show´", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "spans": [ + { + "bbox": [ + 141, + 388, + 470, + 400 + ], + "score": 1.0, + "content": "that when the Erdos – R ˝ enyi graph is sufficiently dense and large, a broad range ´", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "spans": [ + { + "bbox": [ + 141, + 398, + 469, + 411 + ], + "score": 1.0, + "content": "of GCNs on it suffers from the “information loss” in the limit of infinite layers", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 410, + 469, + 422 + ], + "spans": [ + { + "bbox": [ + 142, + 410, + 469, + 422 + ], + "score": 1.0, + "content": "with high probability. Based on the theory, we provide a principled guideline for", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 142, + 420, + 470, + 434 + ], + "spans": [ + { + "bbox": [ + 142, + 420, + 470, + 434 + ], + "score": 1.0, + "content": "weight normalization of graph NNs. We experimentally confirm that the proposed", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 142, + 432, + 442, + 443 + ], + "spans": [ + { + "bbox": [ + 142, + 432, + 442, + 443 + ], + "score": 1.0, + "content": "weight scaling enhances the predictive performance of GCNs in real data1.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 16, + "bbox_fs": [ + 141, + 234, + 470, + 443 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 463, + 206, + 475 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 208, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 208, + 478 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 488, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "Motivated by the success of Deep Learning (DL), several attempts have been made to apply DL mod-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 499, + 505, + 512 + ], + "score": 1.0, + "content": "els to non-Euclidean data, particularly, graph-structured data such as chemical compounds, social", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "networks, and polygons. Recently, Graph Neural Networks (graph NNs) (Duvenaud et al., 2015; Li", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "et al., 2016; Gilmer et al., 2017; Hamilton et al., 2017; Kipf & Welling, 2017; Nguyen et al., 2017;", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 531, + 506, + 545 + ], + "score": 1.0, + "content": "Schlichtkrull et al., 2018; Battaglia et al., 2018; Xu et al., 2019; Wu et al., 2019a) have emerged as a", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "promising approach. However, despite their practical popularity, theoretical research of graph NNs", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 552, + 245, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 245, + 567 + ], + "score": 1.0, + "content": "has not been explored extensively.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 488, + 506, + 567 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 570, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 505, + 584 + ], + "score": 1.0, + "content": "The characterization of DL model expressive power, i.e., to identify what function classes DL mod-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 505, + 594 + ], + "score": 1.0, + "content": "els can (approximately) represent, is a fundamental question in theoretical research of DL. Many", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 504, + 605 + ], + "score": 1.0, + "content": "studies have been conducted for Fully Connected Neural Networks (FNNs) (Cybenko, 1989; Hornik,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 603, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 106, + 603, + 505, + 616 + ], + "score": 1.0, + "content": "1991; Hornik et al., 1989; Barron, 1993; Mhaskar, 1993; Sonoda & Murata, 2017; Yarotsky, 2017)", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "and Convolutional Neural Networks (CNNs) (Petersen & Voigtlaender, 2018; Zhou, 2018; Oono &", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 505, + 639 + ], + "score": 1.0, + "content": "Suzuki, 2019). For such models, we have theoretical and empirical justification that deep and non-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 635, + 506, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 506, + 650 + ], + "score": 1.0, + "content": "linear architectures can enhance representation power (Telgarsky, 2016; Chen et al., 2018b; Zhou", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 662 + ], + "score": 1.0, + "content": "& Feng, 2018). However, for graph NNs, several papers have reported that node representations go", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 657, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 672 + ], + "score": 1.0, + "content": "indistinguishable (known as over-smoothing) and prediction performances severely degrade when", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 682 + ], + "score": 1.0, + "content": "we stack many layers (Kipf & Welling, 2017; Wu et al., 2019b; Li et al., 2018). Besides, Wu et al.", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 505, + 693 + ], + "score": 1.0, + "content": "(2019a) reported that graph NNs achieved comparable performance even if they removed interme-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "diate non-linear functions. These studies posed a question about the current architecture and made", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 701, + 439, + 716 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 439, + 716 + ], + "score": 1.0, + "content": "us aware of the need for the theoretical analysis of the graph NN expressive power.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 570, + 506, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 95 + ], + "score": 1.0, + "content": "In this paper, we investigate the expressive power of graph NNs by analyzing their asymptotic be-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "haviors as the layer size goes to infinity. Our theory gives new theoretical conditions under which", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "neither layer stacking nor non-linearity contributes to improving expressive power. We consider a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "score": 1.0, + "content": "specific dynamics that includes a transition defining a Markov process and the forward propaga-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "tion of a Graph Convolutional Network (GCN) (Kipf & Welling, 2017), which is one of the most", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "popular graph NN variants, as special cases. We prove that under certain conditions, the dynamics", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "exponentially approaches a subspace that is invariant under the dynamics. In the case of GCN, the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "invariant space is a set of signals that correspond to the lowest frequency of graph spectra and that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "have “no information” other than connected components and node degrees for a node classification", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "task whose goal is to predict the nodes’ properties in a graph. The rate of the distance between the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 504, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 240, + 205 + ], + "score": 1.0, + "content": "output and the invariant space is", + "type": "text" + }, + { + "bbox": [ + 240, + 191, + 280, + 204 + ], + "score": 0.93, + "content": "{ \\cal O } ( ( s \\lambda ) ^ { \\widehat { L } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 191, + 309, + 205 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 310, + 194, + 316, + 202 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 191, + 496, + 205 + ], + "score": 1.0, + "content": "is the maximum singular values of weights,", + "type": "text" + }, + { + "bbox": [ + 497, + 192, + 504, + 202 + ], + "score": 0.72, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 486, + 216 + ], + "score": 1.0, + "content": "is typically a quantity determined by the spectra of the (augmented) normalized Laplacian, and", + "type": "text" + }, + { + "bbox": [ + 487, + 204, + 495, + 213 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 202, + 506, + 216 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 214, + 457, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 457, + 227 + ], + "score": 1.0, + "content": "the layer size. See Sections 3.3 (general case) and 4 (GCN case) for precise statements.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 231, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "We can interpret our theorem as the generalization of the well-known property that if a finite and dis-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "crete Markov process is irreducible and aperiodic, it exponentially converges to a unique equilibrium", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "and the eigenvalues of its transition matrix determine the convergence rate (see, e.g., Chung & Gra-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "ham (1997)). Different from the Markov process case, which is linear, the existence of intermediate", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "non-linear functions complicates the analysis. We overcame this problem by leveraging the combi-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "nation of the ReLU activation function (Krizhevsky et al., 2012) and the positivity of eigenvectors", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 372, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 372, + 309 + ], + "score": 1.0, + "content": "of the Laplacian associated with the smallest positive eigenvalues.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "Our theory enables us to investigate asymptotic behaviors of graph NNs via the spectral distribution", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 323, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 104, + 323, + 505, + 338 + ], + "score": 1.0, + "content": "of the underlying graphs. To demonstrate this, we take GCNs defined on the Erdos – R ˝ enyi graph ´", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 107, + 336, + 129, + 348 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 335, + 175, + 349 + ], + "score": 1.0, + "content": ", which has", + "type": "text" + }, + { + "bbox": [ + 176, + 336, + 186, + 345 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 335, + 430, + 349 + ], + "score": 1.0, + "content": "nodes and each edge appears independently with probability", + "type": "text" + }, + { + "bbox": [ + 430, + 338, + 437, + 347 + ], + "score": 0.74, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 335, + 505, + 349 + ], + "score": 1.0, + "content": ", for an example.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 345, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 198, + 361 + ], + "score": 1.0, + "content": "We prove that if log N", + "type": "text" + }, + { + "bbox": [ + 173, + 347, + 226, + 363 + ], + "score": 0.93, + "content": "\\frac { \\log N } { p N } = o ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 348, + 291, + 362 + ], + "score": 1.0, + "content": "as a function of", + "type": "text" + }, + { + "bbox": [ + 291, + 349, + 301, + 358 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 348, + 506, + 362 + ], + "score": 1.0, + "content": ", any GCN whose weights have maximum singular", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 363, + 507, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 168, + 379 + ], + "score": 1.0, + "content": "values at most", + "type": "text" + }, + { + "bbox": [ + 169, + 363, + 221, + 382 + ], + "score": 0.93, + "content": "\\begin{array} { r } { C \\sqrt { \\frac { N p } { \\log ( N / \\varepsilon ) } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 363, + 507, + 382 + ], + "score": 1.0, + "content": "approaches the “information-less” invariant space with probability at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 127, + 393 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 127, + 381, + 150, + 391 + ], + "score": 0.85, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 381, + 181, + 393 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 181, + 382, + 190, + 390 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "is a universal constant. Intuitively, if the graph on which we define graph NNs", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 392, + 504, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 504, + 404 + ], + "score": 1.0, + "content": "is sufficiently dense, graph-convolution operations mix signals on nodes fast and hence the feature", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 402, + 330, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 330, + 416 + ], + "score": 1.0, + "content": "maps lose information for distinguishing nodes quickly.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 239, + 430 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 240, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 240, + 432 + ], + "score": 1.0, + "content": "Our contributions are as follows:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 132, + 441, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 132, + 440, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 132, + 440, + 504, + 453 + ], + "score": 1.0, + "content": "• We relate asymptotic behaviors of graph NNs with the topological information of underly-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 452, + 467, + 464 + ], + "spans": [ + { + "bbox": [ + 141, + 452, + 467, + 464 + ], + "score": 1.0, + "content": "ing graphs via the spectral distribution of the (augmented) normalized Laplacian.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 136, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 136, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "• We prove that if the weights of a GCN satisfy conditions determined by the graph spectra,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 142, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 142, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "the output of the GCN carries no information other than the node degrees and connected", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 489, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 142, + 489, + 504, + 501 + ], + "score": 1.0, + "content": "components for discriminating nodes when the layer size goes to infinity (Theorems 1, 2).", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 135, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 135, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "• We apply our theory to Erdos – R ˝ enyi graphs as an example and show that when the graph ´", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 515, + 502, + 527 + ], + "spans": [ + { + "bbox": [ + 141, + 515, + 502, + 527 + ], + "score": 1.0, + "content": "is sufficiently dense and large, many GCNs suffer from the information loss (Theorem 3).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 132, + 530, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 132, + 530, + 504, + 543 + ], + "score": 1.0, + "content": "• We propose a principled guideline for weight normalization of graph NNs and empirically", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 142, + 542, + 246, + 554 + ], + "spans": [ + { + "bbox": [ + 142, + 542, + 246, + 554 + ], + "score": 1.0, + "content": "confirm it using real data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 108, + 568, + 211, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 213, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 213, + 583 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "MPNN-type Graph NNs. Since many graph NN variants have been proposed, there are several", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "unified formulations of graph NNs (Gilmer et al., 2017; Battaglia et al., 2018). Our approach is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "score": 1.0, + "content": "the closest to the formulation of Message Passing Neural Network (MPNN) (Gilmer et al., 2017),", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "which unified graph NNs in terms of the update and readout operations. Many graph NNs fall into", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "this formulation such as Duvenaud et al. (2015), Li et al. (2016), and Velickovi ˇ c et al. (2018). ´", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "Among others, GCN (Kipf & Welling, 2017) is an important application of our theory because it", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "is one of the most widely used graph NNs. In addition, GCNs are interesting from a theoretical", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "research perspective because, in addition to an MPNN-type graph NN, we can interpret GCNs as a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 681, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 695 + ], + "score": 1.0, + "content": "simplification of spectral-type graph NNs (Henaff et al., 2015; Defferrard et al., 2016), that make", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 693, + 217, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 217, + 705 + ], + "score": 1.0, + "content": "use of the graph Laplacian.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Our approach, which considers the asymptotic behaviors graph NNs as the layer size goes to infinity,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "is similar to Scarselli et al. (2009), one of the earliest works about graph NNs. They obtained node", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49.5 + } + ], + "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 2020", + "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, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 504, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 504, + 95 + ], + "score": 1.0, + "content": "In this paper, we investigate the expressive power of graph NNs by analyzing their asymptotic be-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 94, + 505, + 107 + ], + "score": 1.0, + "content": "haviors as the layer size goes to infinity. Our theory gives new theoretical conditions under which", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "neither layer stacking nor non-linearity contributes to improving expressive power. We consider a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 129 + ], + "score": 1.0, + "content": "specific dynamics that includes a transition defining a Markov process and the forward propaga-", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "tion of a Graph Convolutional Network (GCN) (Kipf & Welling, 2017), which is one of the most", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "popular graph NN variants, as special cases. We prove that under certain conditions, the dynamics", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 505, + 161 + ], + "score": 1.0, + "content": "exponentially approaches a subspace that is invariant under the dynamics. In the case of GCN, the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "invariant space is a set of signals that correspond to the lowest frequency of graph spectra and that", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 506, + 183 + ], + "score": 1.0, + "content": "have “no information” other than connected components and node degrees for a node classification", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 181, + 505, + 194 + ], + "score": 1.0, + "content": "task whose goal is to predict the nodes’ properties in a graph. The rate of the distance between the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 504, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 240, + 205 + ], + "score": 1.0, + "content": "output and the invariant space is", + "type": "text" + }, + { + "bbox": [ + 240, + 191, + 280, + 204 + ], + "score": 0.93, + "content": "{ \\cal O } ( ( s \\lambda ) ^ { \\widehat { L } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 191, + 309, + 205 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 310, + 194, + 316, + 202 + ], + "score": 0.71, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 191, + 496, + 205 + ], + "score": 1.0, + "content": "is the maximum singular values of weights,", + "type": "text" + }, + { + "bbox": [ + 497, + 192, + 504, + 202 + ], + "score": 0.72, + "content": "\\lambda", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 202, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 486, + 216 + ], + "score": 1.0, + "content": "is typically a quantity determined by the spectra of the (augmented) normalized Laplacian, and", + "type": "text" + }, + { + "bbox": [ + 487, + 204, + 495, + 213 + ], + "score": 0.8, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 202, + 506, + 216 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 214, + 457, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 457, + 227 + ], + "score": 1.0, + "content": "the layer size. See Sections 3.3 (general case) and 4 (GCN case) for precise statements.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 6, + "bbox_fs": [ + 105, + 83, + 506, + 227 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 231, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "We can interpret our theorem as the generalization of the well-known property that if a finite and dis-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "crete Markov process is irreducible and aperiodic, it exponentially converges to a unique equilibrium", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "score": 1.0, + "content": "and the eigenvalues of its transition matrix determine the convergence rate (see, e.g., Chung & Gra-", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "ham (1997)). Different from the Markov process case, which is linear, the existence of intermediate", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "non-linear functions complicates the analysis. We overcame this problem by leveraging the combi-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "nation of the ReLU activation function (Krizhevsky et al., 2012) and the positivity of eigenvectors", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 372, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 372, + 309 + ], + "score": 1.0, + "content": "of the Laplacian associated with the smallest positive eigenvalues.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 230, + 505, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 414 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "Our theory enables us to investigate asymptotic behaviors of graph NNs via the spectral distribution", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 323, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 104, + 323, + 505, + 338 + ], + "score": 1.0, + "content": "of the underlying graphs. To demonstrate this, we take GCNs defined on the Erdos – R ˝ enyi graph ´", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 107, + 336, + 129, + 348 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 335, + 175, + 349 + ], + "score": 1.0, + "content": ", which has", + "type": "text" + }, + { + "bbox": [ + 176, + 336, + 186, + 345 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 335, + 430, + 349 + ], + "score": 1.0, + "content": "nodes and each edge appears independently with probability", + "type": "text" + }, + { + "bbox": [ + 430, + 338, + 437, + 347 + ], + "score": 0.74, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 335, + 505, + 349 + ], + "score": 1.0, + "content": ", for an example.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 345, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 198, + 361 + ], + "score": 1.0, + "content": "We prove that if log N", + "type": "text" + }, + { + "bbox": [ + 173, + 347, + 226, + 363 + ], + "score": 0.93, + "content": "\\frac { \\log N } { p N } = o ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 348, + 291, + 362 + ], + "score": 1.0, + "content": "as a function of", + "type": "text" + }, + { + "bbox": [ + 291, + 349, + 301, + 358 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 348, + 506, + 362 + ], + "score": 1.0, + "content": ", any GCN whose weights have maximum singular", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 363, + 507, + 382 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 168, + 379 + ], + "score": 1.0, + "content": "values at most", + "type": "text" + }, + { + "bbox": [ + 169, + 363, + 221, + 382 + ], + "score": 0.93, + "content": "\\begin{array} { r } { C \\sqrt { \\frac { N p } { \\log ( N / \\varepsilon ) } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 363, + 507, + 382 + ], + "score": 1.0, + "content": "approaches the “information-less” invariant space with probability at", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 127, + 393 + ], + "score": 1.0, + "content": "least", + "type": "text" + }, + { + "bbox": [ + 127, + 381, + 150, + 391 + ], + "score": 0.85, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 381, + 181, + 393 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 181, + 382, + 190, + 390 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "is a universal constant. Intuitively, if the graph on which we define graph NNs", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 392, + 504, + 404 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 504, + 404 + ], + "score": 1.0, + "content": "is sufficiently dense, graph-convolution operations mix signals on nodes fast and hence the feature", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 402, + 330, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 330, + 416 + ], + "score": 1.0, + "content": "maps lose information for distinguishing nodes quickly.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23.5, + "bbox_fs": [ + 104, + 314, + 507, + 416 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 419, + 239, + 430 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 240, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 240, + 432 + ], + "score": 1.0, + "content": "Our contributions are as follows:", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28, + "bbox_fs": [ + 106, + 418, + 240, + 432 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 441, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 132, + 440, + 504, + 453 + ], + "spans": [ + { + "bbox": [ + 132, + 440, + 504, + 453 + ], + "score": 1.0, + "content": "• We relate asymptotic behaviors of graph NNs with the topological information of underly-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 141, + 452, + 467, + 464 + ], + "spans": [ + { + "bbox": [ + 141, + 452, + 467, + 464 + ], + "score": 1.0, + "content": "ing graphs via the spectral distribution of the (augmented) normalized Laplacian.", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 136, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 136, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "• We prove that if the weights of a GCN satisfy conditions determined by the graph spectra,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 142, + 478, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 142, + 478, + 505, + 490 + ], + "score": 1.0, + "content": "the output of the GCN carries no information other than the node degrees and connected", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 142, + 489, + 504, + 501 + ], + "spans": [ + { + "bbox": [ + 142, + 489, + 504, + 501 + ], + "score": 1.0, + "content": "components for discriminating nodes when the layer size goes to infinity (Theorems 1, 2).", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 135, + 504, + 505, + 516 + ], + "spans": [ + { + "bbox": [ + 135, + 504, + 505, + 516 + ], + "score": 1.0, + "content": "• We apply our theory to Erdos – R ˝ enyi graphs as an example and show that when the graph ´", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 515, + 502, + 527 + ], + "spans": [ + { + "bbox": [ + 141, + 515, + 502, + 527 + ], + "score": 1.0, + "content": "is sufficiently dense and large, many GCNs suffer from the information loss (Theorem 3).", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 132, + 530, + 504, + 543 + ], + "spans": [ + { + "bbox": [ + 132, + 530, + 504, + 543 + ], + "score": 1.0, + "content": "• We propose a principled guideline for weight normalization of graph NNs and empirically", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 142, + 542, + 246, + 554 + ], + "spans": [ + { + "bbox": [ + 142, + 542, + 246, + 554 + ], + "score": 1.0, + "content": "confirm it using real data.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33, + "bbox_fs": [ + 132, + 440, + 505, + 554 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 568, + 211, + 582 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 213, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 213, + 583 + ], + "score": 1.0, + "content": "2 RELATED WORK", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 594, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "MPNN-type Graph NNs. Since many graph NN variants have been proposed, there are several", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "unified formulations of graph NNs (Gilmer et al., 2017; Battaglia et al., 2018). Our approach is", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 506, + 630 + ], + "score": 1.0, + "content": "the closest to the formulation of Message Passing Neural Network (MPNN) (Gilmer et al., 2017),", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 640 + ], + "score": 1.0, + "content": "which unified graph NNs in terms of the update and readout operations. Many graph NNs fall into", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 506, + 651 + ], + "score": 1.0, + "content": "this formulation such as Duvenaud et al. (2015), Li et al. (2016), and Velickovi ˇ c et al. (2018). ´", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "Among others, GCN (Kipf & Welling, 2017) is an important application of our theory because it", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "is one of the most widely used graph NNs. In addition, GCNs are interesting from a theoretical", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "research perspective because, in addition to an MPNN-type graph NN, we can interpret GCNs as a", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 681, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 695 + ], + "score": 1.0, + "content": "simplification of spectral-type graph NNs (Henaff et al., 2015; Defferrard et al., 2016), that make", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 693, + 217, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 693, + 217, + 705 + ], + "score": 1.0, + "content": "use of the graph Laplacian.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 594, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Our approach, which considers the asymptotic behaviors graph NNs as the layer size goes to infinity,", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "is similar to Scarselli et al. (2009), one of the earliest works about graph NNs. They obtained node", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "representations by iterating message passing between nodes until convergence. Their formulation is", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "general in that we can use any local aggregation operation as long as it is a contraction map. Our", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "theory differs from theirs in that we proved that the output of a graph NN approaches a certain space", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 405, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 405, + 129 + ], + "score": 1.0, + "content": "even if the local aggregation function is not necessarily a contraction map.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 49.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "representations by iterating message passing between nodes until convergence. Their formulation is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "general in that we can use any local aggregation operation as long as it is a contraction map. Our", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "theory differs from theirs in that we proved that the output of a graph NN approaches a certain space", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 405, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 405, + 129 + ], + "score": 1.0, + "content": "even if the local aggregation function is not necessarily a contraction map.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "Expressive Power of Graph NNs. Several studies have focused on theoretical analysis and the im-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "provement of graph NN expressive power. For example, Xu et al. (2019) proved that graph NNs are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "no more powerful than the Weisfeiler – Lehman (WL) isomorphism test (Weisfeiler & A.A., 1968)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "and proposed a Graph Isomorphism Network (GIN), that is approximately as powerful as the WL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "test. Although they experimentally showed that GIN has improved accuracy in supervised learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "tasks, their analysis was restricted to the graph isomorphism problem. Xu et al. (2018) analyzed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "the non-asymptotic properties of GCNs through the lens of random walk theory. They proved the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "limitations of GCNs in expander-like graphs and proposed a Jumping Knowledge Network (JK-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "Net) to address the issue. To handle the non-linearity, they linearized networks by a randomization", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "assumption (Choromanska et al., 2015). We take a different strategy and make use of the interpre-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "tation of ReLU as a projection onto a cone. Recently, NT & Maehara (2019) showed that a GCN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "approximately works as a low-pass filter plus an MLP in a certain setting. Although they analyzed", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "finite-depth GCNs, our theory has similar spirits with theirs because our “information-less” space", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 504, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 504, + 287 + ], + "score": 1.0, + "content": "corresponds to the lowest frequency of a graph Laplacian. Another point is that they imposed as-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "sumptions that input signals consist of low-frequent true signals and high-frequent noise, whereas", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 297, + 240, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 240, + 310 + ], + "score": 1.0, + "content": "we need not such an assumption.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "Role of Deep and Non-linear Structures. For ordinal DL models such as FNNs and CNNs, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "have both theoretical and empirical justification of deep and non-linear architectures for enhancing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "of the expressive power (e.g., Telgarsky (2016); Petersen & Voigtlaender (2018); Oono & Suzuki", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "(2019)). In contrast, several studies have witnessed severe performance degradation when stacking", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "score": 1.0, + "content": "many layers on graph NNs (Kipf & Welling, 2017; Wu et al., 2019b). Li et al. (2018) reported that", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "feature vectors on nodes in a graph go indistinguishable as we increase layers in several tasks. They", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 381, + 504, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 504, + 392 + ], + "score": 1.0, + "content": "named this phenomenon over-smoothing. Regarding non-linearity, Wu et al. (2019a) empirically", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "showed that graph NNs achieve comparable performance even if we omit intermediate non-linearity.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "These observations gave us questions about the current models of deep graph NNs in terms of their", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "expressive power. Several studies gave theoretical explanations of the over-smoothing phenomena", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "for linear GNNs (Li et al., 2018; Zhang, 2019; Zhao & Akoglu, 2020). We can think of our theory", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 434, + 314, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 314, + 446 + ], + "score": 1.0, + "content": "as an extension of their results to non-linear GNNs.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 108, + 463, + 326, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 328, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 328, + 477 + ], + "score": 1.0, + "content": "3 PROBLEM SETTING AND MAIN RESULT", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 176, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 178, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 178, + 502 + ], + "score": 1.0, + "content": "3.1 NOTATION", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 122, + 523 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 510, + 138, + 521 + ], + "score": 0.84, + "content": "\\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 508, + 281, + 523 + ], + "score": 1.0, + "content": "be the set of positive integers. For", + "type": "text" + }, + { + "bbox": [ + 281, + 510, + 319, + 522 + ], + "score": 0.92, + "content": "N \\in { \\mathbb { N } } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 508, + 368, + 523 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 369, + 510, + 448, + 522 + ], + "score": 0.92, + "content": "[ N ] : = \\{ 1 , \\dots , N \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 508, + 506, + 523 + ], + "score": 1.0, + "content": ". For a vector", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 517, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 140, + 531 + ], + "score": 0.9, + "content": "v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 517, + 181, + 534 + ], + "score": 1.0, + "content": ", we write", + "type": "text" + }, + { + "bbox": [ + 182, + 522, + 207, + 532 + ], + "score": 0.91, + "content": "v \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 517, + 262, + 534 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 263, + 522, + 293, + 532 + ], + "score": 0.91, + "content": "v _ { n } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 517, + 321, + 534 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 321, + 521, + 355, + 532 + ], + "score": 0.91, + "content": "n \\in [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 517, + 451, + 534 + ], + "score": 1.0, + "content": ". Similarly, for a matrix", + "type": "text" + }, + { + "bbox": [ + 452, + 520, + 501, + 531 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 517, + 506, + 534 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 145, + 545 + ], + "score": 1.0, + "content": "we write", + "type": "text" + }, + { + "bbox": [ + 145, + 532, + 176, + 543 + ], + "score": 0.91, + "content": "X \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 531, + 234, + 545 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 235, + 532, + 273, + 543 + ], + "score": 0.92, + "content": "X _ { n c } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 531, + 303, + 545 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 303, + 532, + 339, + 544 + ], + "score": 0.91, + "content": "n \\in [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 531, + 359, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 359, + 532, + 392, + 544 + ], + "score": 0.92, + "content": "c \\in [ C ]", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 531, + 506, + 545 + ], + "score": 1.0, + "content": ". We say such a vector and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 207, + 555 + ], + "score": 1.0, + "content": "matrix is non-negative.", + "type": "text" + }, + { + "bbox": [ + 207, + 543, + 226, + 555 + ], + "score": 0.9, + "content": "\\langle \\cdot , \\cdot \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "denotes the inner product of vectors or matrices, depending on the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 550, + 507, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 142, + 568 + ], + "score": 1.0, + "content": "context:", + "type": "text" + }, + { + "bbox": [ + 142, + 553, + 200, + 566 + ], + "score": 0.92, + "content": "\\langle u , v \\rangle : = u ^ { \\top } v", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 550, + 215, + 568 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 216, + 553, + 259, + 565 + ], + "score": 0.92, + "content": "u , v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 550, + 278, + 568 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 278, + 553, + 362, + 565 + ], + "score": 0.9, + "content": "\\langle X , Y \\rangle : = \\mathrm { t r } ( X ^ { T } Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 550, + 378, + 568 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 379, + 553, + 440, + 564 + ], + "score": 0.87, + "content": "X , Y \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 550, + 443, + 568 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 443, + 554, + 458, + 565 + ], + "score": 0.53, + "content": "{ \\bf 1 } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 550, + 507, + 568 + ], + "score": 1.0, + "content": "equals to 1", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 561, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 104, + 561, + 178, + 579 + ], + "score": 1.0, + "content": "if the proposition", + "type": "text" + }, + { + "bbox": [ + 179, + 566, + 188, + 575 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 561, + 295, + 579 + ], + "score": 1.0, + "content": "is true else 0. For vectors", + "type": "text" + }, + { + "bbox": [ + 295, + 565, + 329, + 575 + ], + "score": 0.87, + "content": "v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 561, + 348, + 579 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 348, + 564, + 384, + 575 + ], + "score": 0.9, + "content": "w \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 561, + 389, + 579 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 389, + 564, + 455, + 575 + ], + "score": 0.87, + "content": "v \\otimes w \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 561, + 507, + 579 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 575, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 575, + 194, + 591 + ], + "score": 1.0, + "content": "Kronecker product of", + "type": "text" + }, + { + "bbox": [ + 195, + 579, + 201, + 587 + ], + "score": 0.76, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 575, + 218, + 591 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 579, + 228, + 587 + ], + "score": 0.78, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 575, + 273, + 591 + ], + "score": 1.0, + "content": "defined by", + "type": "text" + }, + { + "bbox": [ + 273, + 577, + 353, + 589 + ], + "score": 0.88, + "content": "( v \\otimes w ) _ { n c } : = v _ { n } w _ { c } .", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 575, + 372, + 591 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 372, + 577, + 422, + 588 + ], + "score": 0.86, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 575, + 426, + 591 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 576, + 504, + 589 + ], + "score": 0.8, + "content": "\\| X \\| _ { \\mathrm { F } } : = \\langle X , X \\rangle ^ { \\frac { 1 } { 2 } }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 102, + 584, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 102, + 584, + 234, + 605 + ], + "score": 1.0, + "content": "denotes the Frobenius norm of", + "type": "text" + }, + { + "bbox": [ + 234, + 589, + 244, + 598 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 584, + 303, + 605 + ], + "score": 1.0, + "content": ". For a vector", + "type": "text" + }, + { + "bbox": [ + 303, + 588, + 338, + 599 + ], + "score": 0.84, + "content": "v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 584, + 342, + 605 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 343, + 588, + 504, + 601 + ], + "score": 0.88, + "content": "\\mathrm { d i a g } ( v ) : = ( v _ { n } \\delta _ { n m } ) _ { n , m \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 597, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 230, + 614 + ], + "score": 1.0, + "content": "denotes the diagonalization of", + "type": "text" + }, + { + "bbox": [ + 231, + 603, + 237, + 611 + ], + "score": 0.67, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 597, + 242, + 614 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 243, + 600, + 298, + 612 + ], + "score": 0.89, + "content": "I _ { N } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 597, + 439, + 614 + ], + "score": 1.0, + "content": "denotes the identity matrix of size", + "type": "text" + }, + { + "bbox": [ + 440, + 602, + 450, + 611 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 597, + 506, + 614 + ], + "score": 1.0, + "content": ". For a linear", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 609, + 478, + 627 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 142, + 627 + ], + "score": 1.0, + "content": "operator", + "type": "text" + }, + { + "bbox": [ + 142, + 612, + 205, + 622 + ], + "score": 0.91, + "content": "P : \\mathbb { R } ^ { \\tilde { N } } \\mathbb { R } ^ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 609, + 258, + 627 + ], + "score": 1.0, + "content": "and a subset", + "type": "text" + }, + { + "bbox": [ + 258, + 612, + 295, + 623 + ], + "score": 0.89, + "content": "V \\subset \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 609, + 411, + 627 + ], + "score": 1.0, + "content": ", we denote the restriction of", + "type": "text" + }, + { + "bbox": [ + 411, + 613, + 420, + 622 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 609, + 431, + 627 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 431, + 613, + 441, + 622 + ], + "score": 0.81, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 609, + 454, + 627 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 455, + 613, + 473, + 624 + ], + "score": 0.92, + "content": "P | _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 609, + 478, + 627 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5 + }, + { + "type": "title", + "bbox": [ + 108, + 638, + 223, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 225, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 225, + 651 + ], + "score": 1.0, + "content": "3.2 DYNAMICAL SYSTEM", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 503, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "Although we are mainly interested in GCNs, we develop our theory more generally using dynamical", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 325, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 325, + 683 + ], + "score": 1.0, + "content": "systems. We will specialize to the GCNs in Section 4.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 684, + 507, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 684, + 124, + 701 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 124, + 687, + 192, + 699 + ], + "score": 0.87, + "content": "N , C , H _ { l } \\ \\in \\ \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 687, + 235, + 699 + ], + "score": 0.74, + "content": "( l \\in \\mathbb { N } _ { + } )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 684, + 255, + 701 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 255, + 686, + 309, + 698 + ], + "score": 0.9, + "content": "P \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 684, + 426, + 701 + ], + "score": 1.0, + "content": "be a symmetric matrix and", + "type": "text" + }, + { + "bbox": [ + 427, + 686, + 488, + 699 + ], + "score": 0.92, + "content": "W _ { l h } \\ \\in \\ \\mathbb { R } ^ { C \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 684, + 507, + 701 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 107, + 694, + 508, + 713 + ], + "spans": [ + { + "bbox": [ + 107, + 699, + 142, + 710 + ], + "score": 0.87, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 694, + 163, + 713 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 163, + 699, + 205, + 709 + ], + "score": 0.87, + "content": "h \\in \\lceil H _ { l } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 694, + 259, + 713 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 259, + 698, + 357, + 710 + ], + "score": 0.89, + "content": "f _ { l } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { \\mathbf { \\tilde { N } } \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 694, + 375, + 713 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 375, + 699, + 471, + 711 + ], + "score": 0.92, + "content": "f _ { l } ( X ) \\ : = \\ \\mathrm { M L P } _ { l } ( P X )", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 694, + 508, + 713 + ], + "score": 1.0, + "content": ". Here,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 706, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 213, + 721 + ], + "score": 0.88, + "content": "\\mathrm { M L P } _ { l } : \\mathbb { R } ^ { N \\times C } \\to \\dot { \\mathbb { R } } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 706, + 239, + 723 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 240, + 710, + 244, + 720 + ], + "score": 0.66, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 706, + 438, + 723 + ], + "score": 1.0, + "content": "-th multi-layer perceptron common to all nodes", + "type": "text" + }, + { + "bbox": [ + 439, + 711, + 453, + 719 + ], + "score": 0.61, + "content": "\\mathrm { { . x u } }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 706, + 506, + 723 + ], + "score": 1.0, + "content": "et al., 2019)", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 103, + 718, + 503, + 733 + ], + "spans": [ + { + "bbox": [ + 103, + 718, + 181, + 733 + ], + "score": 1.0, + "content": "and is defined by", + "type": "text" + }, + { + "bbox": [ + 182, + 720, + 378, + 733 + ], + "score": 0.89, + "content": "\\mathrm { M L P } _ { l } ( X ) : = \\sigma ( \\cdots \\sigma ( \\sigma ( \\dot { X } ) \\bar { W } _ { l 1 } ) \\bar { W } _ { l 2 } \\cdot \\cdot \\cdot W _ { l H _ { l } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 718, + 410, + 733 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 410, + 720, + 503, + 730 + ], + "score": 0.9, + "content": "\\sigma : \\mathbb { R } ^ { \\dot { N } \\times C } \\mathbb { R } ^ { N \\times \\dot { C } }", + "type": "inline_equation" + } + ], + "index": 50 + } + ], + "index": 48.5 + } + ], + "page_idx": 2, + "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 2020", + "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, + 504, + 126 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 129 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 308 + ], + "lines": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "spans": [ + { + "bbox": [ + 106, + 132, + 505, + 145 + ], + "score": 1.0, + "content": "Expressive Power of Graph NNs. Several studies have focused on theoretical analysis and the im-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "provement of graph NN expressive power. For example, Xu et al. (2019) proved that graph NNs are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "no more powerful than the Weisfeiler – Lehman (WL) isomorphism test (Weisfeiler & A.A., 1968)", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "and proposed a Graph Isomorphism Network (GIN), that is approximately as powerful as the WL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "test. Although they experimentally showed that GIN has improved accuracy in supervised learning", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "tasks, their analysis was restricted to the graph isomorphism problem. Xu et al. (2018) analyzed", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 105, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "the non-asymptotic properties of GCNs through the lens of random walk theory. They proved the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 505, + 222 + ], + "score": 1.0, + "content": "limitations of GCNs in expander-like graphs and proposed a Jumping Knowledge Network (JK-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 505, + 233 + ], + "score": 1.0, + "content": "Net) to address the issue. To handle the non-linearity, they linearized networks by a randomization", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "assumption (Choromanska et al., 2015). We take a different strategy and make use of the interpre-", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "tation of ReLU as a projection onto a cone. Recently, NT & Maehara (2019) showed that a GCN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 506, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 506, + 266 + ], + "score": 1.0, + "content": "approximately works as a low-pass filter plus an MLP in a certain setting. Although they analyzed", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 506, + 277 + ], + "score": 1.0, + "content": "finite-depth GCNs, our theory has similar spirits with theirs because our “information-less” space", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 504, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 504, + 287 + ], + "score": 1.0, + "content": "corresponds to the lowest frequency of a graph Laplacian. Another point is that they imposed as-", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 299 + ], + "score": 1.0, + "content": "sumptions that input signals consist of low-frequent true signals and high-frequent noise, whereas", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 297, + 240, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 240, + 310 + ], + "score": 1.0, + "content": "we need not such an assumption.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 11.5, + "bbox_fs": [ + 104, + 132, + 506, + 310 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 445 + ], + "lines": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 505, + 326 + ], + "score": 1.0, + "content": "Role of Deep and Non-linear Structures. For ordinal DL models such as FNNs and CNNs, we", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 505, + 338 + ], + "score": 1.0, + "content": "have both theoretical and empirical justification of deep and non-linear architectures for enhancing", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "of the expressive power (e.g., Telgarsky (2016); Petersen & Voigtlaender (2018); Oono & Suzuki", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 345, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 360 + ], + "score": 1.0, + "content": "(2019)). In contrast, several studies have witnessed severe performance degradation when stacking", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 369 + ], + "score": 1.0, + "content": "many layers on graph NNs (Kipf & Welling, 2017; Wu et al., 2019b). Li et al. (2018) reported that", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "feature vectors on nodes in a graph go indistinguishable as we increase layers in several tasks. They", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 381, + 504, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 504, + 392 + ], + "score": 1.0, + "content": "named this phenomenon over-smoothing. Regarding non-linearity, Wu et al. (2019a) empirically", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 390, + 504, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 504, + 403 + ], + "score": 1.0, + "content": "showed that graph NNs achieve comparable performance even if we omit intermediate non-linearity.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 415 + ], + "score": 1.0, + "content": "These observations gave us questions about the current models of deep graph NNs in terms of their", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 506, + 426 + ], + "score": 1.0, + "content": "expressive power. Several studies gave theoretical explanations of the over-smoothing phenomena", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 436 + ], + "score": 1.0, + "content": "for linear GNNs (Li et al., 2018; Zhang, 2019; Zhao & Akoglu, 2020). We can think of our theory", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 434, + 314, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 314, + 446 + ], + "score": 1.0, + "content": "as an extension of their results to non-linear GNNs.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 313, + 506, + 446 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 463, + 326, + 476 + ], + "lines": [ + { + "bbox": [ + 105, + 462, + 328, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 328, + 477 + ], + "score": 1.0, + "content": "3 PROBLEM SETTING AND MAIN RESULT", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 488, + 176, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 178, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 178, + 502 + ], + "score": 1.0, + "content": "3.1 NOTATION", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 509, + 505, + 624 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 122, + 523 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 510, + 138, + 521 + ], + "score": 0.84, + "content": "\\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 508, + 281, + 523 + ], + "score": 1.0, + "content": "be the set of positive integers. For", + "type": "text" + }, + { + "bbox": [ + 281, + 510, + 319, + 522 + ], + "score": 0.92, + "content": "N \\in { \\mathbb { N } } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 508, + 368, + 523 + ], + "score": 1.0, + "content": ", we denote", + "type": "text" + }, + { + "bbox": [ + 369, + 510, + 448, + 522 + ], + "score": 0.92, + "content": "[ N ] : = \\{ 1 , \\dots , N \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 508, + 506, + 523 + ], + "score": 1.0, + "content": ". For a vector", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 517, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 521, + 140, + 531 + ], + "score": 0.9, + "content": "v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 517, + 181, + 534 + ], + "score": 1.0, + "content": ", we write", + "type": "text" + }, + { + "bbox": [ + 182, + 522, + 207, + 532 + ], + "score": 0.91, + "content": "v \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 517, + 262, + 534 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 263, + 522, + 293, + 532 + ], + "score": 0.91, + "content": "v _ { n } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 517, + 321, + 534 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 321, + 521, + 355, + 532 + ], + "score": 0.91, + "content": "n \\in [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 517, + 451, + 534 + ], + "score": 1.0, + "content": ". Similarly, for a matrix", + "type": "text" + }, + { + "bbox": [ + 452, + 520, + 501, + 531 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 517, + 506, + 534 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 531, + 506, + 545 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 145, + 545 + ], + "score": 1.0, + "content": "we write", + "type": "text" + }, + { + "bbox": [ + 145, + 532, + 176, + 543 + ], + "score": 0.91, + "content": "X \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 531, + 234, + 545 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 235, + 532, + 273, + 543 + ], + "score": 0.92, + "content": "X _ { n c } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 531, + 303, + 545 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 303, + 532, + 339, + 544 + ], + "score": 0.91, + "content": "n \\in [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 531, + 359, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 359, + 532, + 392, + 544 + ], + "score": 0.92, + "content": "c \\in [ C ]", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 531, + 506, + 545 + ], + "score": 1.0, + "content": ". We say such a vector and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 207, + 555 + ], + "score": 1.0, + "content": "matrix is non-negative.", + "type": "text" + }, + { + "bbox": [ + 207, + 543, + 226, + 555 + ], + "score": 0.9, + "content": "\\langle \\cdot , \\cdot \\rangle", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "denotes the inner product of vectors or matrices, depending on the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 550, + 507, + 568 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 142, + 568 + ], + "score": 1.0, + "content": "context:", + "type": "text" + }, + { + "bbox": [ + 142, + 553, + 200, + 566 + ], + "score": 0.92, + "content": "\\langle u , v \\rangle : = u ^ { \\top } v", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 550, + 215, + 568 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 216, + 553, + 259, + 565 + ], + "score": 0.92, + "content": "u , v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 550, + 278, + 568 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 278, + 553, + 362, + 565 + ], + "score": 0.9, + "content": "\\langle X , Y \\rangle : = \\mathrm { t r } ( X ^ { T } Y )", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 550, + 378, + 568 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 379, + 553, + 440, + 564 + ], + "score": 0.87, + "content": "X , Y \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 550, + 443, + 568 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 443, + 554, + 458, + 565 + ], + "score": 0.53, + "content": "{ \\bf 1 } _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 458, + 550, + 507, + 568 + ], + "score": 1.0, + "content": "equals to 1", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 561, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 104, + 561, + 178, + 579 + ], + "score": 1.0, + "content": "if the proposition", + "type": "text" + }, + { + "bbox": [ + 179, + 566, + 188, + 575 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 561, + 295, + 579 + ], + "score": 1.0, + "content": "is true else 0. For vectors", + "type": "text" + }, + { + "bbox": [ + 295, + 565, + 329, + 575 + ], + "score": 0.87, + "content": "v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 561, + 348, + 579 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 348, + 564, + 384, + 575 + ], + "score": 0.9, + "content": "w \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 561, + 389, + 579 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 389, + 564, + 455, + 575 + ], + "score": 0.87, + "content": "v \\otimes w \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 561, + 507, + 579 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 575, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 104, + 575, + 194, + 591 + ], + "score": 1.0, + "content": "Kronecker product of", + "type": "text" + }, + { + "bbox": [ + 195, + 579, + 201, + 587 + ], + "score": 0.76, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 575, + 218, + 591 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 579, + 228, + 587 + ], + "score": 0.78, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 575, + 273, + 591 + ], + "score": 1.0, + "content": "defined by", + "type": "text" + }, + { + "bbox": [ + 273, + 577, + 353, + 589 + ], + "score": 0.88, + "content": "( v \\otimes w ) _ { n c } : = v _ { n } w _ { c } .", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 575, + 372, + 591 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 372, + 577, + 422, + 588 + ], + "score": 0.86, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 575, + 426, + 591 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 426, + 576, + 504, + 589 + ], + "score": 0.8, + "content": "\\| X \\| _ { \\mathrm { F } } : = \\langle X , X \\rangle ^ { \\frac { 1 } { 2 } }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 102, + 584, + 504, + 605 + ], + "spans": [ + { + "bbox": [ + 102, + 584, + 234, + 605 + ], + "score": 1.0, + "content": "denotes the Frobenius norm of", + "type": "text" + }, + { + "bbox": [ + 234, + 589, + 244, + 598 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 584, + 303, + 605 + ], + "score": 1.0, + "content": ". For a vector", + "type": "text" + }, + { + "bbox": [ + 303, + 588, + 338, + 599 + ], + "score": 0.84, + "content": "v \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 584, + 342, + 605 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 343, + 588, + 504, + 601 + ], + "score": 0.88, + "content": "\\mathrm { d i a g } ( v ) : = ( v _ { n } \\delta _ { n m } ) _ { n , m \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 597, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 230, + 614 + ], + "score": 1.0, + "content": "denotes the diagonalization of", + "type": "text" + }, + { + "bbox": [ + 231, + 603, + 237, + 611 + ], + "score": 0.67, + "content": "v", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 597, + 242, + 614 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 243, + 600, + 298, + 612 + ], + "score": 0.89, + "content": "I _ { N } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 597, + 439, + 614 + ], + "score": 1.0, + "content": "denotes the identity matrix of size", + "type": "text" + }, + { + "bbox": [ + 440, + 602, + 450, + 611 + ], + "score": 0.82, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 597, + 506, + 614 + ], + "score": 1.0, + "content": ". For a linear", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 609, + 478, + 627 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 142, + 627 + ], + "score": 1.0, + "content": "operator", + "type": "text" + }, + { + "bbox": [ + 142, + 612, + 205, + 622 + ], + "score": 0.91, + "content": "P : \\mathbb { R } ^ { \\tilde { N } } \\mathbb { R } ^ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 609, + 258, + 627 + ], + "score": 1.0, + "content": "and a subset", + "type": "text" + }, + { + "bbox": [ + 258, + 612, + 295, + 623 + ], + "score": 0.89, + "content": "V \\subset \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 609, + 411, + 627 + ], + "score": 1.0, + "content": ", we denote the restriction of", + "type": "text" + }, + { + "bbox": [ + 411, + 613, + 420, + 622 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 609, + 431, + 627 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 431, + 613, + 441, + 622 + ], + "score": 0.81, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 609, + 454, + 627 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 455, + 613, + 473, + 624 + ], + "score": 0.92, + "content": "P | _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 609, + 478, + 627 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 38.5, + "bbox_fs": [ + 102, + 508, + 507, + 627 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 638, + 223, + 650 + ], + "lines": [ + { + "bbox": [ + 105, + 637, + 225, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 225, + 651 + ], + "score": 1.0, + "content": "3.2 DYNAMICAL SYSTEM", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 659, + 503, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 505, + 672 + ], + "score": 1.0, + "content": "Although we are mainly interested in GCNs, we develop our theory more generally using dynamical", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 671, + 325, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 325, + 683 + ], + "score": 1.0, + "content": "systems. We will specialize to the GCNs in Section 4.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 660, + 505, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 104, + 684, + 507, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 684, + 124, + 701 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 124, + 687, + 192, + 699 + ], + "score": 0.87, + "content": "N , C , H _ { l } \\ \\in \\ \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 687, + 235, + 699 + ], + "score": 0.74, + "content": "( l \\in \\mathbb { N } _ { + } )", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 684, + 255, + 701 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 255, + 686, + 309, + 698 + ], + "score": 0.9, + "content": "P \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 684, + 426, + 701 + ], + "score": 1.0, + "content": "be a symmetric matrix and", + "type": "text" + }, + { + "bbox": [ + 427, + 686, + 488, + 699 + ], + "score": 0.92, + "content": "W _ { l h } \\ \\in \\ \\mathbb { R } ^ { C \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 684, + 507, + 701 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 107, + 694, + 508, + 713 + ], + "spans": [ + { + "bbox": [ + 107, + 699, + 142, + 710 + ], + "score": 0.87, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 694, + 163, + 713 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 163, + 699, + 205, + 709 + ], + "score": 0.87, + "content": "h \\in \\lceil H _ { l } \\rceil", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 694, + 259, + 713 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 259, + 698, + 357, + 710 + ], + "score": 0.89, + "content": "f _ { l } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { \\mathbf { \\tilde { N } } \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 694, + 375, + 713 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 375, + 699, + 471, + 711 + ], + "score": 0.92, + "content": "f _ { l } ( X ) \\ : = \\ \\mathrm { M L P } _ { l } ( P X )", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 694, + 508, + 713 + ], + "score": 1.0, + "content": ". Here,", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 706, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 213, + 721 + ], + "score": 0.88, + "content": "\\mathrm { M L P } _ { l } : \\mathbb { R } ^ { N \\times C } \\to \\dot { \\mathbb { R } } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 706, + 239, + 723 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 240, + 710, + 244, + 720 + ], + "score": 0.66, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 706, + 438, + 723 + ], + "score": 1.0, + "content": "-th multi-layer perceptron common to all nodes", + "type": "text" + }, + { + "bbox": [ + 439, + 711, + 453, + 719 + ], + "score": 0.61, + "content": "\\mathrm { { . x u } }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 706, + 506, + 723 + ], + "score": 1.0, + "content": "et al., 2019)", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 103, + 718, + 503, + 733 + ], + "spans": [ + { + "bbox": [ + 103, + 718, + 181, + 733 + ], + "score": 1.0, + "content": "and is defined by", + "type": "text" + }, + { + "bbox": [ + 182, + 720, + 378, + 733 + ], + "score": 0.89, + "content": "\\mathrm { M L P } _ { l } ( X ) : = \\sigma ( \\cdots \\sigma ( \\sigma ( \\dot { X } ) \\bar { W } _ { l 1 } ) \\bar { W } _ { l 2 } \\cdot \\cdot \\cdot W _ { l H _ { l } } )", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 718, + 410, + 733 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 410, + 720, + 503, + 730 + ], + "score": 0.9, + "content": "\\sigma : \\mathbb { R } ^ { \\dot { N } \\times C } \\mathbb { R } ^ { N \\times \\dot { C } }", + "type": "inline_equation" + } + ], + "index": 50 + }, + { + "bbox": [ + 104, + 80, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 399, + 96 + ], + "score": 1.0, + "content": "is an element-wise ReLU function (Krizhevsky et al., 2012) defined by", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 399, + 82, + 504, + 95 + ], + "score": 0.92, + "content": "\\sigma ( X ) _ { n c } : = \\operatorname* { m a x } ( X _ { n c } , 0 )", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 122, + 109 + ], + "score": 1.0, + "content": "for", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 122, + 94, + 200, + 106 + ], + "score": 0.91, + "content": "n \\in [ N ] , c \\in [ C ]", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 200, + 92, + 320, + 109 + ], + "score": 1.0, + "content": ". We consider the dynamics", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 321, + 93, + 405, + 106 + ], + "score": 0.92, + "content": "X ^ { ( l + 1 ) } : = f _ { l } ( X ^ { ( l ) } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 406, + 92, + 506, + 109 + ], + "score": 1.0, + "content": "with some initial value", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 428, + 121 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 167, + 118 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 167, + 104, + 362, + 121 + ], + "score": 1.0, + "content": ". We are interested in the asymptotic behavior of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 362, + 106, + 381, + 117 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 381, + 104, + 393, + 121 + ], + "score": 1.0, + "content": "as", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 393, + 108, + 423, + 117 + ], + "score": 0.89, + "content": "l \\infty", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 423, + 104, + 428, + 121 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 2 + } + ], + "index": 48.5, + "bbox_fs": [ + 103, + 684, + 508, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 119 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 504, + 96 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 399, + 96 + ], + "score": 1.0, + "content": "is an element-wise ReLU function (Krizhevsky et al., 2012) defined by", + "type": "text" + }, + { + "bbox": [ + 399, + 82, + 504, + 95 + ], + "score": 0.92, + "content": "\\sigma ( X ) _ { n c } : = \\operatorname* { m a x } ( X _ { n c } , 0 )", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 92, + 506, + 109 + ], + "spans": [ + { + "bbox": [ + 104, + 92, + 122, + 109 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 122, + 94, + 200, + 106 + ], + "score": 0.91, + "content": "n \\in [ N ] , c \\in [ C ]", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 92, + 320, + 109 + ], + "score": 1.0, + "content": ". We consider the dynamics", + "type": "text" + }, + { + "bbox": [ + 321, + 93, + 405, + 106 + ], + "score": 0.92, + "content": "X ^ { ( l + 1 ) } : = f _ { l } ( X ^ { ( l ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 92, + 506, + 109 + ], + "score": 1.0, + "content": "with some initial value", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 428, + 121 + ], + "spans": [ + { + "bbox": [ + 106, + 106, + 167, + 118 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 104, + 362, + 121 + ], + "score": 1.0, + "content": ". We are interested in the asymptotic behavior of", + "type": "text" + }, + { + "bbox": [ + 362, + 106, + 381, + 117 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 104, + 393, + 121 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 393, + 108, + 423, + 117 + ], + "score": 0.89, + "content": "l \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 104, + 428, + 121 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 109, + 123, + 502, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 123, + 137 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 124, + 124, + 162, + 135 + ], + "score": 0.91, + "content": "M \\leq N", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 122, + 180, + 137 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 180, + 124, + 189, + 134 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 122, + 212, + 137 + ], + "score": 1.0, + "content": "be a", + "type": "text" + }, + { + "bbox": [ + 212, + 124, + 224, + 134 + ], + "score": 0.81, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 122, + 329, + 137 + ], + "score": 1.0, + "content": "-dimensional subspace of", + "type": "text" + }, + { + "bbox": [ + 330, + 123, + 345, + 135 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 122, + 420, + 137 + ], + "score": 1.0, + "content": ". We assume that", + "type": "text" + }, + { + "bbox": [ + 421, + 124, + 430, + 134 + ], + "score": 0.82, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 122, + 450, + 137 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 125, + 459, + 134 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 122, + 505, + 137 + ], + "score": 1.0, + "content": "satisfy the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 504, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 338, + 147 + ], + "score": 1.0, + "content": "following properties that generalize the situation where", + "type": "text" + }, + { + "bbox": [ + 338, + 136, + 347, + 145 + ], + "score": 0.82, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 135, + 504, + 147 + ], + "score": 1.0, + "content": "is the eigenspace associated with the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 146, + 501, + 158 + ], + "spans": [ + { + "bbox": [ + 107, + 146, + 325, + 158 + ], + "score": 1.0, + "content": "smallest eigenvalue of a (normalized) graph Laplacian", + "type": "text" + }, + { + "bbox": [ + 325, + 146, + 334, + 156 + ], + "score": 0.8, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 146, + 407, + 158 + ], + "score": 1.0, + "content": "(that is, zero) and", + "type": "text" + }, + { + "bbox": [ + 407, + 147, + 416, + 156 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 146, + 492, + 158 + ], + "score": 1.0, + "content": "is a polynomial of", + "type": "text" + }, + { + "bbox": [ + 492, + 147, + 501, + 156 + ], + "score": 0.81, + "content": "\\Delta", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 108, + 159, + 485, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 486, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 172, + 173 + ], + "score": 1.0, + "content": "Assumption 1.", + "type": "text" + }, + { + "bbox": [ + 172, + 159, + 181, + 169 + ], + "score": 0.49, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 158, + 288, + 173 + ], + "score": 1.0, + "content": "has an orthonormal basis", + "type": "text" + }, + { + "bbox": [ + 288, + 159, + 334, + 172 + ], + "score": 0.93, + "content": "( e _ { m } ) _ { m \\in [ M ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 158, + 486, + 173 + ], + "score": 1.0, + "content": "that consists of non-negative vectors.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 172, + 382, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 383, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 172, + 185 + ], + "score": 1.0, + "content": "Assumption 2.", + "type": "text" + }, + { + "bbox": [ + 172, + 173, + 181, + 183 + ], + "score": 0.46, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 172, + 256, + 185 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + }, + { + "bbox": [ + 256, + 173, + 265, + 183 + ], + "score": 0.71, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 172, + 294, + 185 + ], + "score": 1.0, + "content": ", i.e., if", + "type": "text" + }, + { + "bbox": [ + 294, + 173, + 321, + 184 + ], + "score": 0.81, + "content": "u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 172, + 344, + 185 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 345, + 173, + 379, + 183 + ], + "score": 0.9, + "content": "P u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 172, + 383, + 185 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 106, + 191, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 150, + 204 + ], + "score": 1.0, + "content": "We endow", + "type": "text" + }, + { + "bbox": [ + 150, + 191, + 166, + 202 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 189, + 453, + 204 + ], + "score": 1.0, + "content": "with the ordinal inner product and denote the orthogonal complement of", + "type": "text" + }, + { + "bbox": [ + 453, + 192, + 462, + 202 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 189, + 474, + 204 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 475, + 191, + 505, + 203 + ], + "score": 0.86, + "content": "U ^ { \\perp } : =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 200, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 107, + 202, + 240, + 215 + ], + "score": 0.88, + "content": "\\{ u \\in \\mathbb { R } ^ { N } \\mid \\langle u , v \\rangle = 0 , \\forall v \\in U \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 200, + 329, + 216 + ], + "score": 1.0, + "content": ". By the symmetry of", + "type": "text" + }, + { + "bbox": [ + 330, + 203, + 338, + 213 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 200, + 415, + 216 + ], + "score": 1.0, + "content": ", we can show that", + "type": "text" + }, + { + "bbox": [ + 415, + 202, + 431, + 213 + ], + "score": 0.89, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 200, + 506, + 216 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 212, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 107, + 214, + 115, + 223 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 212, + 376, + 227 + ], + "score": 1.0, + "content": ", too (Appendix E.1, Proposition 2). Therefore, we can regard", + "type": "text" + }, + { + "bbox": [ + 376, + 214, + 385, + 223 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 212, + 471, + 227 + ], + "score": 1.0, + "content": "as a linear mapping", + "type": "text" + }, + { + "bbox": [ + 472, + 213, + 505, + 226 + ], + "score": 0.72, + "content": "P | _ { U ^ { \\perp } } :", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 222, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 107, + 224, + 155, + 235 + ], + "score": 0.91, + "content": "U ^ { \\perp } \\to U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 222, + 297, + 237 + ], + "score": 1.0, + "content": ". We denote the operator norm of", + "type": "text" + }, + { + "bbox": [ + 297, + 225, + 321, + 236 + ], + "score": 0.91, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 222, + 336, + 237 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 337, + 225, + 344, + 235 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 222, + 378, + 237 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 378, + 225, + 387, + 235 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 222, + 506, + 237 + ], + "score": 1.0, + "content": "is the eigenspace associated", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 235, + 248 + ], + "score": 1.0, + "content": "with the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 235, + 236, + 245, + 245 + ], + "score": 0.83, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 234, + 263, + 248 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 236, + 273, + 245 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 234, + 284, + 248 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 284, + 236, + 306, + 248 + ], + "score": 0.92, + "content": "g ( \\Delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 234, + 335, + 248 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 335, + 237, + 342, + 247 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 234, + 434, + 248 + ], + "score": 1.0, + "content": "is a polynomial, then,", + "type": "text" + }, + { + "bbox": [ + 435, + 236, + 442, + 245 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 245, + 427, + 260 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 173, + 260 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\lambda = \\operatorname* { s u p } _ { \\mu } \\left| g ( \\mu ) \\right| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 245, + 427, + 260 + ], + "score": 1.0, + "content": "where sup ranges over all eigenvalues except the smallest one.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 270, + 193, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 194, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 194, + 283 + ], + "score": 1.0, + "content": "3.3 MAIN RESULT", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 154, + 281, + 511, + 317 + ], + "spans": [ + { + "bbox": [ + 154, + 281, + 202, + 317 + ], + "score": 1.0, + "content": "he subspace is the ortho", + "type": "text" + }, + { + "bbox": [ + 203, + 291, + 216, + 302 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 281, + 228, + 317 + ], + "score": 1.0, + "content": "of ma", + "type": "text" + }, + { + "bbox": [ + 228, + 290, + 256, + 301 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 281, + 266, + 317 + ], + "score": 1.0, + "content": "b of", + "type": "text" + }, + { + "bbox": [ + 270, + 289, + 477, + 304 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathcal { M } : = U \\otimes \\mathbb { R } ^ { C } = \\{ \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes w _ { m } \\mid w _ { m } \\in \\mathbb { R } ^ { C } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 281, + 511, + 317 + ], + "score": 1.0, + "content": "wheredenote", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 303, + 457, + 317 + ], + "spans": [ + { + "bbox": [ + 107, + 303, + 153, + 317 + ], + "score": 0.92, + "content": "( e _ { m } ) _ { m \\in [ M ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 304, + 275, + 314 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 303, + 457, + 314 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 191, + 329 + ], + "score": 1.0, + "content": "the distance between", + "type": "text" + }, + { + "bbox": [ + 191, + 316, + 201, + 326 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 315, + 219, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 316, + 232, + 326 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 315, + 245, + 329 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 245, + 315, + 399, + 328 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } } ( X ) : = \\operatorname* { i n f } \\left\\{ \\| X - Y \\| _ { \\mathrm { F } } \\mid Y \\in \\mathcal { M } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 315, + 505, + 329 + ], + "score": 1.0, + "content": ". We denote the maximum", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 102, + 322, + 509, + 347 + ], + "spans": [ + { + "bbox": [ + 102, + 322, + 178, + 347 + ], + "score": 1.0, + "content": "singular value of", + "type": "text" + }, + { + "bbox": [ + 178, + 329, + 196, + 340 + ], + "score": 0.9, + "content": "W _ { l h }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 322, + 211, + 347 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 212, + 331, + 225, + 340 + ], + "score": 0.85, + "content": "s _ { l h }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 322, + 259, + 347 + ], + "score": 1.0, + "content": "and set", + "type": "text" + }, + { + "bbox": [ + 259, + 327, + 326, + 342 + ], + "score": 0.93, + "content": "\\begin{array} { r } { s _ { l } : = \\prod _ { h = 1 } ^ { H _ { l } } s _ { l h } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 322, + 509, + 347 + ], + "score": 1.0, + "content": ". With these preparations, we introduce the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 339, + 216, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 216, + 353 + ], + "score": 1.0, + "content": "main theorem of the paper.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 105, + 353, + 501, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 350, + 500, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 350, + 311, + 367 + ], + "score": 1.0, + "content": "Theorem 1. Under Assumptions 1 and 2, we have", + "type": "text" + }, + { + "bbox": [ + 311, + 353, + 418, + 365 + ], + "score": 0.88, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 350, + 450, + 367 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 451, + 352, + 500, + 364 + ], + "score": 0.88, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 294, + 386 + ], + "score": 1.0, + "content": "The proof key is that the non-linear operation", + "type": "text" + }, + { + "bbox": [ + 294, + 375, + 301, + 382 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 370, + 394, + 386 + ], + "score": 1.0, + "content": "decreases the distance", + "type": "text" + }, + { + "bbox": [ + 395, + 372, + 411, + 384 + ], + "score": 0.89, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 370, + 446, + 386 + ], + "score": 1.0, + "content": ", that is,", + "type": "text" + }, + { + "bbox": [ + 446, + 372, + 505, + 384 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( \\sigma ( \\boldsymbol { X } ) ) \\leq", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 139, + 396 + ], + "score": 0.92, + "content": "d _ { \\mathcal { M } } ( \\boldsymbol { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 383, + 266, + 396 + ], + "score": 1.0, + "content": ". We use the non-negativity of", + "type": "text" + }, + { + "bbox": [ + 266, + 385, + 280, + 394 + ], + "score": 0.87, + "content": "e _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "to prove this claim. See Appendix A for the complete", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 394, + 381, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 381, + 407 + ], + "score": 1.0, + "content": "proof. We also discuss the strictness of Theorem 1 in Appendix E.3.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 506, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 152, + 424 + ], + "score": 1.0, + "content": "By setting", + "type": "text" + }, + { + "bbox": [ + 153, + 411, + 208, + 423 + ], + "score": 0.95, + "content": "d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 410, + 320, + 424 + ], + "score": 1.0, + "content": ", this theorem implies that", + "type": "text" + }, + { + "bbox": [ + 321, + 412, + 334, + 421 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 410, + 411, + 424 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + }, + { + "bbox": [ + 412, + 412, + 421, + 423 + ], + "score": 0.84, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 410, + 506, + 424 + ], + "score": 1.0, + "content": ". In addition, if the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 294, + 436 + ], + "score": 1.0, + "content": "maximum value of singular values are small,", + "type": "text" + }, + { + "bbox": [ + 295, + 422, + 314, + 434 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 422, + 427, + 436 + ], + "score": 1.0, + "content": "asymptotically approaches", + "type": "text" + }, + { + "bbox": [ + 427, + 424, + 440, + 434 + ], + "score": 0.79, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 422, + 506, + 436 + ], + "score": 1.0, + "content": "in the sense of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 434, + 503, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 251, + 448 + ], + "score": 1.0, + "content": "Johnson (1973) for any initial value", + "type": "text" + }, + { + "bbox": [ + 251, + 434, + 272, + 446 + ], + "score": 0.9, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 434, + 503, + 448 + ], + "score": 1.0, + "content": ". That is, the followings hold under Assumptions 1 and 2.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 504, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 162, + 462 + ], + "score": 1.0, + "content": "Corollary 1.", + "type": "text" + }, + { + "bbox": [ + 162, + 449, + 175, + 459 + ], + "score": 0.71, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 448, + 289, + 462 + ], + "score": 1.0, + "content": "is invariant under fl for any", + "type": "text" + }, + { + "bbox": [ + 289, + 449, + 319, + 461 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 448, + 360, + 462 + ], + "score": 1.0, + "content": ", that is, if", + "type": "text" + }, + { + "bbox": [ + 360, + 449, + 394, + 460 + ], + "score": 0.89, + "content": "X \\in \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 448, + 451, + 462 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + }, + { + "bbox": [ + 452, + 448, + 501, + 461 + ], + "score": 0.92, + "content": "f _ { l } ( X ) \\in \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 448, + 504, + 462 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 503, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 178, + 477 + ], + "score": 1.0, + "content": "Corollary 2. Let", + "type": "text" + }, + { + "bbox": [ + 179, + 465, + 245, + 477 + ], + "score": 0.91, + "content": "s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 461, + 287, + 477 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + }, + { + "bbox": [ + 287, + 462, + 380, + 476 + ], + "score": 0.92, + "content": "d _ { \\mathcal { M } } ( X ^ { ( l ) } ) = O ( ( s \\lambda ) ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 461, + 450, + 477 + ], + "score": 1.0, + "content": ". In particular, if", + "type": "text" + }, + { + "bbox": [ + 450, + 464, + 481, + 475 + ], + "score": 0.84, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 461, + 506, + 477 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 476, + 388, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 119, + 489 + ], + "score": 0.85, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 476, + 225, + 490 + ], + "score": 1.0, + "content": "exponentially approaches", + "type": "text" + }, + { + "bbox": [ + 225, + 478, + 238, + 488 + ], + "score": 0.76, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 476, + 250, + 490 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 251, + 478, + 280, + 488 + ], + "score": 0.89, + "content": "l \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 476, + 363, + 490 + ], + "score": 1.0, + "content": "for any initial value", + "type": "text" + }, + { + "bbox": [ + 363, + 476, + 383, + 487 + ], + "score": 0.89, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 476, + 388, + 490 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 232, + 509 + ], + "score": 1.0, + "content": "Suppose the operator norm of", + "type": "text" + }, + { + "bbox": [ + 232, + 497, + 296, + 509 + ], + "score": 0.92, + "content": "P | _ { U } : U \\to U", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 496, + 369, + 509 + ], + "score": 1.0, + "content": "is no larger than", + "type": "text" + }, + { + "bbox": [ + 369, + 497, + 376, + 507 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 496, + 506, + 509 + ], + "score": 1.0, + "content": ", then, under the assumption of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 507, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 509, + 138, + 520 + ], + "score": 0.84, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 507, + 142, + 523 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 142, + 508, + 162, + 519 + ], + "score": 0.84, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 507, + 506, + 523 + ], + "score": 1.0, + "content": "converges to 0, the trivial fixed point (see Appendix E.2, Proposition 3). Therefore,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 370, + 533 + ], + "score": 1.0, + "content": "we are mainly interested in the case where the operator norm of", + "type": "text" + }, + { + "bbox": [ + 370, + 520, + 389, + 532 + ], + "score": 0.92, + "content": "P | _ { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 520, + 477, + 533 + ], + "score": 1.0, + "content": "is strictly larger than", + "type": "text" + }, + { + "bbox": [ + 478, + 520, + 485, + 530 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "(see", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 426, + 543 + ], + "score": 1.0, + "content": "Proposition 1). Finally, we restate Theorem 1 specialized to the situation where", + "type": "text" + }, + { + "bbox": [ + 426, + 532, + 435, + 541 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "is the direct sum", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 278, + 555 + ], + "score": 1.0, + "content": "of eigenspaces associated with the largest", + "type": "text" + }, + { + "bbox": [ + 279, + 542, + 290, + 552 + ], + "score": 0.77, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 542, + 353, + 555 + ], + "score": 1.0, + "content": "eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 353, + 542, + 362, + 552 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 542, + 485, + 555 + ], + "score": 1.0, + "content": ". Note that the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 485, + 542, + 494, + 552 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 552, + 213, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 147, + 566 + ], + "score": 1.0, + "content": "real since", + "type": "text" + }, + { + "bbox": [ + 147, + 554, + 156, + 563 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 552, + 213, + 566 + ], + "score": 1.0, + "content": "is symmetric.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 179, + 579 + ], + "score": 1.0, + "content": "Corollary 3. Let", + "type": "text" + }, + { + "bbox": [ + 180, + 567, + 245, + 578 + ], + "score": 0.89, + "content": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 565, + 331, + 579 + ], + "score": 1.0, + "content": "be the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 332, + 567, + 340, + 576 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 565, + 505, + 579 + ], + "score": 1.0, + "content": ", sorted in ascending order. Suppose the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 576, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 257, + 591 + ], + "score": 1.0, + "content": "multiplicity of the largest eigenvalue", + "type": "text" + }, + { + "bbox": [ + 257, + 578, + 272, + 588 + ], + "score": 0.88, + "content": "\\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 576, + 283, + 591 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 284, + 577, + 323, + 589 + ], + "score": 0.9, + "content": "M ( \\leq N )", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 576, + 346, + 591 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 346, + 578, + 484, + 589 + ], + "score": 0.9, + "content": "\\lambda _ { N - M } < \\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 576, + 506, + 591 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 132, + 602 + ], + "score": 1.0, + "content": "define", + "type": "text" + }, + { + "bbox": [ + 133, + 588, + 229, + 601 + ], + "score": 0.91, + "content": "\\lambda : = \\operatorname* { m a x } _ { n \\in [ N - M ] } \\left| \\lambda _ { n } \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 587, + 276, + 602 + ], + "score": 1.0, + "content": ". We denote", + "type": "text" + }, + { + "bbox": [ + 277, + 589, + 286, + 598 + ], + "score": 0.76, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 587, + 423, + 602 + ], + "score": 1.0, + "content": "by the eigenspace associated with", + "type": "text" + }, + { + "bbox": [ + 423, + 589, + 437, + 599 + ], + "score": 0.88, + "content": "\\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 587, + 506, + 602 + ], + "score": 1.0, + "content": "and assume that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 600, + 394, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 115, + 612 + ], + "score": 0.66, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 600, + 270, + 615 + ], + "score": 1.0, + "content": "satisfies Assumption 1. Then, we have", + "type": "text" + }, + { + "bbox": [ + 271, + 600, + 391, + 614 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( X ^ { ( l + 1 ) } ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X ^ { ( l ) } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 600, + 394, + 615 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "Remark 1. It is known that any Markov process on finite states converges to a unique distribution", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 443, + 639 + ], + "score": 1.0, + "content": "(equilibrium) if it is irreducible and aperiodic (see e.g., Norris (1998)). Theorem", + "type": "text" + }, + { + "bbox": [ + 443, + 627, + 450, + 636 + ], + "score": 0.41, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "includes this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 245, + 649 + ], + "score": 1.0, + "content": "proposition as a special case with", + "type": "text" + }, + { + "bbox": [ + 246, + 637, + 276, + 647 + ], + "score": 0.86, + "content": "M = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 637, + 281, + 649 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 281, + 637, + 309, + 647 + ], + "score": 0.87, + "content": "C = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 637, + 331, + 649 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 332, + 637, + 365, + 648 + ], + "score": 0.91, + "content": "W _ { l } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 637, + 394, + 649 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 394, + 637, + 425, + 648 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 637, + 506, + 649 + ], + "score": 1.0, + "content": ". This is essentially", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 496, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 484, + 661 + ], + "score": 1.0, + "content": "the direct consequence of Perron – Frobenius’ theorem (see e.g., Meyer (2000)). See Appendix", + "type": "text" + }, + { + "bbox": [ + 485, + 649, + 492, + 658 + ], + "score": 0.64, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 648, + 496, + 661 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5 + }, + { + "type": "title", + "bbox": [ + 108, + 674, + 243, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 244, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 244, + 689 + ], + "score": 1.0, + "content": "4 APPLICATION TO GCN", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "We formulate a GCN (Kipf & Welling, 2017) without readout operations (Gilmer et al., 2017) using", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "the dynamical system in the previous section and derive a sufficient condition in terms of the spectra", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "of underlying graphs in which layer stacking nor non-linearity are not helpful for node classification.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "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": [ + 106, + 82, + 505, + 119 + ], + "lines": [], + "index": 1, + "bbox_fs": [ + 104, + 80, + 506, + 121 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 109, + 123, + 502, + 158 + ], + "lines": [ + { + "bbox": [ + 105, + 122, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 122, + 123, + 137 + ], + "score": 1.0, + "content": "For", + "type": "text" + }, + { + "bbox": [ + 124, + 124, + 162, + 135 + ], + "score": 0.91, + "content": "M \\leq N", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 122, + 180, + 137 + ], + "score": 1.0, + "content": ", let", + "type": "text" + }, + { + "bbox": [ + 180, + 124, + 189, + 134 + ], + "score": 0.8, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 122, + 212, + 137 + ], + "score": 1.0, + "content": "be a", + "type": "text" + }, + { + "bbox": [ + 212, + 124, + 224, + 134 + ], + "score": 0.81, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 122, + 329, + 137 + ], + "score": 1.0, + "content": "-dimensional subspace of", + "type": "text" + }, + { + "bbox": [ + 330, + 123, + 345, + 135 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 122, + 420, + 137 + ], + "score": 1.0, + "content": ". We assume that", + "type": "text" + }, + { + "bbox": [ + 421, + 124, + 430, + 134 + ], + "score": 0.82, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 122, + 450, + 137 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 450, + 125, + 459, + 134 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 122, + 505, + 137 + ], + "score": 1.0, + "content": "satisfy the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 135, + 504, + 147 + ], + "spans": [ + { + "bbox": [ + 106, + 135, + 338, + 147 + ], + "score": 1.0, + "content": "following properties that generalize the situation where", + "type": "text" + }, + { + "bbox": [ + 338, + 136, + 347, + 145 + ], + "score": 0.82, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 135, + 504, + 147 + ], + "score": 1.0, + "content": "is the eigenspace associated with the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 146, + 501, + 158 + ], + "spans": [ + { + "bbox": [ + 107, + 146, + 325, + 158 + ], + "score": 1.0, + "content": "smallest eigenvalue of a (normalized) graph Laplacian", + "type": "text" + }, + { + "bbox": [ + 325, + 146, + 334, + 156 + ], + "score": 0.8, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 146, + 407, + 158 + ], + "score": 1.0, + "content": "(that is, zero) and", + "type": "text" + }, + { + "bbox": [ + 407, + 147, + 416, + 156 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 146, + 492, + 158 + ], + "score": 1.0, + "content": "is a polynomial of", + "type": "text" + }, + { + "bbox": [ + 492, + 147, + 501, + 156 + ], + "score": 0.81, + "content": "\\Delta", + "type": "inline_equation" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 122, + 505, + 158 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 159, + 485, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 486, + 173 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 172, + 173 + ], + "score": 1.0, + "content": "Assumption 1.", + "type": "text" + }, + { + "bbox": [ + 172, + 159, + 181, + 169 + ], + "score": 0.49, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 158, + 288, + 173 + ], + "score": 1.0, + "content": "has an orthonormal basis", + "type": "text" + }, + { + "bbox": [ + 288, + 159, + 334, + 172 + ], + "score": 0.93, + "content": "( e _ { m } ) _ { m \\in [ M ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 158, + 486, + 173 + ], + "score": 1.0, + "content": "that consists of non-negative vectors.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 158, + 486, + 173 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 172, + 382, + 184 + ], + "lines": [ + { + "bbox": [ + 106, + 172, + 383, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 172, + 172, + 185 + ], + "score": 1.0, + "content": "Assumption 2.", + "type": "text" + }, + { + "bbox": [ + 172, + 173, + 181, + 183 + ], + "score": 0.46, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 172, + 256, + 185 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + }, + { + "bbox": [ + 256, + 173, + 265, + 183 + ], + "score": 0.71, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 172, + 294, + 185 + ], + "score": 1.0, + "content": ", i.e., if", + "type": "text" + }, + { + "bbox": [ + 294, + 173, + 321, + 184 + ], + "score": 0.81, + "content": "u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 172, + 344, + 185 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 345, + 173, + 379, + 183 + ], + "score": 0.9, + "content": "P u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 172, + 383, + 185 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 172, + 383, + 185 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 191, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 189, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 150, + 204 + ], + "score": 1.0, + "content": "We endow", + "type": "text" + }, + { + "bbox": [ + 150, + 191, + 166, + 202 + ], + "score": 0.88, + "content": "\\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 189, + 453, + 204 + ], + "score": 1.0, + "content": "with the ordinal inner product and denote the orthogonal complement of", + "type": "text" + }, + { + "bbox": [ + 453, + 192, + 462, + 202 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 189, + 474, + 204 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 475, + 191, + 505, + 203 + ], + "score": 0.86, + "content": "U ^ { \\perp } : =", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 200, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 107, + 202, + 240, + 215 + ], + "score": 0.88, + "content": "\\{ u \\in \\mathbb { R } ^ { N } \\mid \\langle u , v \\rangle = 0 , \\forall v \\in U \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 200, + 329, + 216 + ], + "score": 1.0, + "content": ". By the symmetry of", + "type": "text" + }, + { + "bbox": [ + 330, + 203, + 338, + 213 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 200, + 415, + 216 + ], + "score": 1.0, + "content": ", we can show that", + "type": "text" + }, + { + "bbox": [ + 415, + 202, + 431, + 213 + ], + "score": 0.89, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 200, + 506, + 216 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 212, + 505, + 227 + ], + "spans": [ + { + "bbox": [ + 107, + 214, + 115, + 223 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 212, + 376, + 227 + ], + "score": 1.0, + "content": ", too (Appendix E.1, Proposition 2). Therefore, we can regard", + "type": "text" + }, + { + "bbox": [ + 376, + 214, + 385, + 223 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 212, + 471, + 227 + ], + "score": 1.0, + "content": "as a linear mapping", + "type": "text" + }, + { + "bbox": [ + 472, + 213, + 505, + 226 + ], + "score": 0.72, + "content": "P | _ { U ^ { \\perp } } :", + "type": "inline_equation" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 222, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 107, + 224, + 155, + 235 + ], + "score": 0.91, + "content": "U ^ { \\perp } \\to U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 222, + 297, + 237 + ], + "score": 1.0, + "content": ". We denote the operator norm of", + "type": "text" + }, + { + "bbox": [ + 297, + 225, + 321, + 236 + ], + "score": 0.91, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 222, + 336, + 237 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 337, + 225, + 344, + 235 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 222, + 378, + 237 + ], + "score": 1.0, + "content": ". When", + "type": "text" + }, + { + "bbox": [ + 378, + 225, + 387, + 235 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 222, + 506, + 237 + ], + "score": 1.0, + "content": "is the eigenspace associated", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 235, + 248 + ], + "score": 1.0, + "content": "with the smallest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 235, + 236, + 245, + 245 + ], + "score": 0.83, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 234, + 263, + 248 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 264, + 236, + 273, + 245 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 234, + 284, + 248 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 284, + 236, + 306, + 248 + ], + "score": 0.92, + "content": "g ( \\Delta )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 234, + 335, + 248 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 335, + 237, + 342, + 247 + ], + "score": 0.81, + "content": "g", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 234, + 434, + 248 + ], + "score": 1.0, + "content": "is a polynomial, then,", + "type": "text" + }, + { + "bbox": [ + 435, + 236, + 442, + 245 + ], + "score": 0.76, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "corresponds to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 245, + 427, + 260 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 173, + 260 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\lambda = \\operatorname* { s u p } _ { \\mu } \\left| g ( \\mu ) \\right| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 245, + 427, + 260 + ], + "score": 1.0, + "content": "where sup ranges over all eigenvalues except the smallest one.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 189, + 506, + 260 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 270, + 193, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 194, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 194, + 283 + ], + "score": 1.0, + "content": "3.3 MAIN RESULT", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 505, + 352 + ], + "lines": [ + { + "bbox": [ + 154, + 281, + 511, + 317 + ], + "spans": [ + { + "bbox": [ + 154, + 281, + 202, + 317 + ], + "score": 1.0, + "content": "he subspace is the ortho", + "type": "text" + }, + { + "bbox": [ + 203, + 291, + 216, + 302 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 281, + 228, + 317 + ], + "score": 1.0, + "content": "of ma", + "type": "text" + }, + { + "bbox": [ + 228, + 290, + 256, + 301 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 281, + 266, + 317 + ], + "score": 1.0, + "content": "b of", + "type": "text" + }, + { + "bbox": [ + 270, + 289, + 477, + 304 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\mathcal { M } : = U \\otimes \\mathbb { R } ^ { C } = \\{ \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes w _ { m } \\mid w _ { m } \\in \\mathbb { R } ^ { C } \\} } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 281, + 511, + 317 + ], + "score": 1.0, + "content": "wheredenote", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 303, + 457, + 317 + ], + "spans": [ + { + "bbox": [ + 107, + 303, + 153, + 317 + ], + "score": 0.92, + "content": "( e _ { m } ) _ { m \\in [ M ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 304, + 275, + 314 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 303, + 457, + 314 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 191, + 329 + ], + "score": 1.0, + "content": "the distance between", + "type": "text" + }, + { + "bbox": [ + 191, + 316, + 201, + 326 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 315, + 219, + 329 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 219, + 316, + 232, + 326 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 315, + 245, + 329 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 245, + 315, + 399, + 328 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } } ( X ) : = \\operatorname* { i n f } \\left\\{ \\| X - Y \\| _ { \\mathrm { F } } \\mid Y \\in \\mathcal { M } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 315, + 505, + 329 + ], + "score": 1.0, + "content": ". We denote the maximum", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 102, + 322, + 509, + 347 + ], + "spans": [ + { + "bbox": [ + 102, + 322, + 178, + 347 + ], + "score": 1.0, + "content": "singular value of", + "type": "text" + }, + { + "bbox": [ + 178, + 329, + 196, + 340 + ], + "score": 0.9, + "content": "W _ { l h }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 322, + 211, + 347 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 212, + 331, + 225, + 340 + ], + "score": 0.85, + "content": "s _ { l h }", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 322, + 259, + 347 + ], + "score": 1.0, + "content": "and set", + "type": "text" + }, + { + "bbox": [ + 259, + 327, + 326, + 342 + ], + "score": 0.93, + "content": "\\begin{array} { r } { s _ { l } : = \\prod _ { h = 1 } ^ { H _ { l } } s _ { l h } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 322, + 509, + 347 + ], + "score": 1.0, + "content": ". With these preparations, we introduce the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 339, + 216, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 339, + 216, + 353 + ], + "score": 1.0, + "content": "main theorem of the paper.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17, + "bbox_fs": [ + 102, + 281, + 511, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 353, + 501, + 366 + ], + "lines": [ + { + "bbox": [ + 104, + 350, + 500, + 367 + ], + "spans": [ + { + "bbox": [ + 104, + 350, + 311, + 367 + ], + "score": 1.0, + "content": "Theorem 1. Under Assumptions 1 and 2, we have", + "type": "text" + }, + { + "bbox": [ + 311, + 353, + 418, + 365 + ], + "score": 0.88, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 350, + 450, + 367 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 451, + 352, + 500, + 364 + ], + "score": 0.88, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 104, + 350, + 500, + 367 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 372, + 505, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 294, + 386 + ], + "score": 1.0, + "content": "The proof key is that the non-linear operation", + "type": "text" + }, + { + "bbox": [ + 294, + 375, + 301, + 382 + ], + "score": 0.76, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 370, + 394, + 386 + ], + "score": 1.0, + "content": "decreases the distance", + "type": "text" + }, + { + "bbox": [ + 395, + 372, + 411, + 384 + ], + "score": 0.89, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 370, + 446, + 386 + ], + "score": 1.0, + "content": ", that is,", + "type": "text" + }, + { + "bbox": [ + 446, + 372, + 505, + 384 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( \\sigma ( \\boldsymbol { X } ) ) \\leq", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 107, + 383, + 505, + 396 + ], + "spans": [ + { + "bbox": [ + 107, + 384, + 139, + 396 + ], + "score": 0.92, + "content": "d _ { \\mathcal { M } } ( \\boldsymbol { X } )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 383, + 266, + 396 + ], + "score": 1.0, + "content": ". We use the non-negativity of", + "type": "text" + }, + { + "bbox": [ + 266, + 385, + 280, + 394 + ], + "score": 0.87, + "content": "e _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 383, + 505, + 396 + ], + "score": 1.0, + "content": "to prove this claim. See Appendix A for the complete", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 394, + 381, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 394, + 381, + 407 + ], + "score": 1.0, + "content": "proof. We also discuss the strictness of Theorem 1 in Appendix E.3.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 370, + 505, + 407 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 410, + 506, + 447 + ], + "lines": [ + { + "bbox": [ + 105, + 410, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 152, + 424 + ], + "score": 1.0, + "content": "By setting", + "type": "text" + }, + { + "bbox": [ + 153, + 411, + 208, + 423 + ], + "score": 0.95, + "content": "d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 410, + 320, + 424 + ], + "score": 1.0, + "content": ", this theorem implies that", + "type": "text" + }, + { + "bbox": [ + 321, + 412, + 334, + 421 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 410, + 411, + 424 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + }, + { + "bbox": [ + 412, + 412, + 421, + 423 + ], + "score": 0.84, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 410, + 506, + 424 + ], + "score": 1.0, + "content": ". In addition, if the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 422, + 506, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 294, + 436 + ], + "score": 1.0, + "content": "maximum value of singular values are small,", + "type": "text" + }, + { + "bbox": [ + 295, + 422, + 314, + 434 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 422, + 427, + 436 + ], + "score": 1.0, + "content": "asymptotically approaches", + "type": "text" + }, + { + "bbox": [ + 427, + 424, + 440, + 434 + ], + "score": 0.79, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 422, + 506, + 436 + ], + "score": 1.0, + "content": "in the sense of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 434, + 503, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 251, + 448 + ], + "score": 1.0, + "content": "Johnson (1973) for any initial value", + "type": "text" + }, + { + "bbox": [ + 251, + 434, + 272, + 446 + ], + "score": 0.9, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 434, + 503, + 448 + ], + "score": 1.0, + "content": ". That is, the followings hold under Assumptions 1 and 2.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 410, + 506, + 448 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 461 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 504, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 162, + 462 + ], + "score": 1.0, + "content": "Corollary 1.", + "type": "text" + }, + { + "bbox": [ + 162, + 449, + 175, + 459 + ], + "score": 0.71, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 448, + 289, + 462 + ], + "score": 1.0, + "content": "is invariant under fl for any", + "type": "text" + }, + { + "bbox": [ + 289, + 449, + 319, + 461 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 448, + 360, + 462 + ], + "score": 1.0, + "content": ", that is, if", + "type": "text" + }, + { + "bbox": [ + 360, + 449, + 394, + 460 + ], + "score": 0.89, + "content": "X \\in \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 448, + 451, + 462 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + }, + { + "bbox": [ + 452, + 448, + 501, + 461 + ], + "score": 0.92, + "content": "f _ { l } ( X ) \\in \\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 448, + 504, + 462 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 448, + 504, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 462, + 503, + 489 + ], + "lines": [ + { + "bbox": [ + 105, + 461, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 178, + 477 + ], + "score": 1.0, + "content": "Corollary 2. Let", + "type": "text" + }, + { + "bbox": [ + 179, + 465, + 245, + 477 + ], + "score": 0.91, + "content": "s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 461, + 287, + 477 + ], + "score": 1.0, + "content": ". We have", + "type": "text" + }, + { + "bbox": [ + 287, + 462, + 380, + 476 + ], + "score": 0.92, + "content": "d _ { \\mathcal { M } } ( X ^ { ( l ) } ) = O ( ( s \\lambda ) ^ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 461, + 450, + 477 + ], + "score": 1.0, + "content": ". In particular, if", + "type": "text" + }, + { + "bbox": [ + 450, + 464, + 481, + 475 + ], + "score": 0.84, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 461, + 506, + 477 + ], + "score": 1.0, + "content": ", then", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 476, + 388, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 119, + 489 + ], + "score": 0.85, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 476, + 225, + 490 + ], + "score": 1.0, + "content": "exponentially approaches", + "type": "text" + }, + { + "bbox": [ + 225, + 478, + 238, + 488 + ], + "score": 0.76, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 476, + 250, + 490 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 251, + 478, + 280, + 488 + ], + "score": 0.89, + "content": "l \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 476, + 363, + 490 + ], + "score": 1.0, + "content": "for any initial value", + "type": "text" + }, + { + "bbox": [ + 363, + 476, + 383, + 487 + ], + "score": 0.89, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 476, + 388, + 490 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 461, + 506, + 490 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 564 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 232, + 509 + ], + "score": 1.0, + "content": "Suppose the operator norm of", + "type": "text" + }, + { + "bbox": [ + 232, + 497, + 296, + 509 + ], + "score": 0.92, + "content": "P | _ { U } : U \\to U", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 496, + 369, + 509 + ], + "score": 1.0, + "content": "is no larger than", + "type": "text" + }, + { + "bbox": [ + 369, + 497, + 376, + 507 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 496, + 506, + 509 + ], + "score": 1.0, + "content": ", then, under the assumption of", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 507, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 107, + 509, + 138, + 520 + ], + "score": 0.84, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 507, + 142, + 523 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 142, + 508, + 162, + 519 + ], + "score": 0.84, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 507, + 506, + 523 + ], + "score": 1.0, + "content": "converges to 0, the trivial fixed point (see Appendix E.2, Proposition 3). Therefore,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 370, + 533 + ], + "score": 1.0, + "content": "we are mainly interested in the case where the operator norm of", + "type": "text" + }, + { + "bbox": [ + 370, + 520, + 389, + 532 + ], + "score": 0.92, + "content": "P | _ { U }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 520, + 477, + 533 + ], + "score": 1.0, + "content": "is strictly larger than", + "type": "text" + }, + { + "bbox": [ + 478, + 520, + 485, + 530 + ], + "score": 0.77, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "(see", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 426, + 543 + ], + "score": 1.0, + "content": "Proposition 1). Finally, we restate Theorem 1 specialized to the situation where", + "type": "text" + }, + { + "bbox": [ + 426, + 532, + 435, + 541 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "is the direct sum", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 542, + 506, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 278, + 555 + ], + "score": 1.0, + "content": "of eigenspaces associated with the largest", + "type": "text" + }, + { + "bbox": [ + 279, + 542, + 290, + 552 + ], + "score": 0.77, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 542, + 353, + 555 + ], + "score": 1.0, + "content": "eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 353, + 542, + 362, + 552 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 542, + 485, + 555 + ], + "score": 1.0, + "content": ". Note that the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 485, + 542, + 494, + 552 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 542, + 506, + 555 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 552, + 213, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 147, + 566 + ], + "score": 1.0, + "content": "real since", + "type": "text" + }, + { + "bbox": [ + 147, + 554, + 156, + 563 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 552, + 213, + 566 + ], + "score": 1.0, + "content": "is symmetric.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 496, + 506, + 566 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 566, + 505, + 614 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 179, + 579 + ], + "score": 1.0, + "content": "Corollary 3. Let", + "type": "text" + }, + { + "bbox": [ + 180, + 567, + 245, + 578 + ], + "score": 0.89, + "content": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 565, + 331, + 579 + ], + "score": 1.0, + "content": "be the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 332, + 567, + 340, + 576 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 565, + 505, + 579 + ], + "score": 1.0, + "content": ", sorted in ascending order. Suppose the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 576, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 576, + 257, + 591 + ], + "score": 1.0, + "content": "multiplicity of the largest eigenvalue", + "type": "text" + }, + { + "bbox": [ + 257, + 578, + 272, + 588 + ], + "score": 0.88, + "content": "\\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 576, + 283, + 591 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 284, + 577, + 323, + 589 + ], + "score": 0.9, + "content": "M ( \\leq N )", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 576, + 346, + 591 + ], + "score": 1.0, + "content": ", i.e.,", + "type": "text" + }, + { + "bbox": [ + 346, + 578, + 484, + 589 + ], + "score": 0.9, + "content": "\\lambda _ { N - M } < \\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 576, + 506, + 591 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 587, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 132, + 602 + ], + "score": 1.0, + "content": "define", + "type": "text" + }, + { + "bbox": [ + 133, + 588, + 229, + 601 + ], + "score": 0.91, + "content": "\\lambda : = \\operatorname* { m a x } _ { n \\in [ N - M ] } \\left| \\lambda _ { n } \\right|", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 587, + 276, + 602 + ], + "score": 1.0, + "content": ". We denote", + "type": "text" + }, + { + "bbox": [ + 277, + 589, + 286, + 598 + ], + "score": 0.76, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 587, + 423, + 602 + ], + "score": 1.0, + "content": "by the eigenspace associated with", + "type": "text" + }, + { + "bbox": [ + 423, + 589, + 437, + 599 + ], + "score": 0.88, + "content": "\\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 587, + 506, + 602 + ], + "score": 1.0, + "content": "and assume that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 600, + 394, + 615 + ], + "spans": [ + { + "bbox": [ + 106, + 602, + 115, + 612 + ], + "score": 0.66, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 600, + 270, + 615 + ], + "score": 1.0, + "content": "satisfies Assumption 1. Then, we have", + "type": "text" + }, + { + "bbox": [ + 271, + 600, + 391, + 614 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( X ^ { ( l + 1 ) } ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X ^ { ( l ) } ) .", + "type": "inline_equation" + }, + { + "bbox": [ + 391, + 600, + 394, + 615 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 565, + 506, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 505, + 627 + ], + "score": 1.0, + "content": "Remark 1. It is known that any Markov process on finite states converges to a unique distribution", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 443, + 639 + ], + "score": 1.0, + "content": "(equilibrium) if it is irreducible and aperiodic (see e.g., Norris (1998)). Theorem", + "type": "text" + }, + { + "bbox": [ + 443, + 627, + 450, + 636 + ], + "score": 0.41, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "includes this", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 245, + 649 + ], + "score": 1.0, + "content": "proposition as a special case with", + "type": "text" + }, + { + "bbox": [ + 246, + 637, + 276, + 647 + ], + "score": 0.86, + "content": "M = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 637, + 281, + 649 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 281, + 637, + 309, + 647 + ], + "score": 0.87, + "content": "C = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 310, + 637, + 331, + 649 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 332, + 637, + 365, + 648 + ], + "score": 0.91, + "content": "W _ { l } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 637, + 394, + 649 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 394, + 637, + 425, + 648 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 637, + 506, + 649 + ], + "score": 1.0, + "content": ". This is essentially", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 648, + 496, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 484, + 661 + ], + "score": 1.0, + "content": "the direct consequence of Perron – Frobenius’ theorem (see e.g., Meyer (2000)). See Appendix", + "type": "text" + }, + { + "bbox": [ + 485, + 649, + 492, + 658 + ], + "score": 0.64, + "content": "F", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 648, + 496, + 661 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 614, + 506, + 661 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 674, + 243, + 687 + ], + "lines": [ + { + "bbox": [ + 105, + 673, + 244, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 673, + 244, + 689 + ], + "score": 1.0, + "content": "4 APPLICATION TO GCN", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 505, + 712 + ], + "score": 1.0, + "content": "We formulate a GCN (Kipf & Welling, 2017) without readout operations (Gilmer et al., 2017) using", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "the dynamical system in the previous section and derive a sufficient condition in terms of the spectra", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "of underlying graphs in which layer stacking nor non-linearity are not helpful for node classification.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 46, + "bbox_fs": [ + 105, + 697, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 122, + 95 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 82, + 171, + 95 + ], + "score": 0.93, + "content": "G = ( V , E )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 83, + 291, + 95 + ], + "score": 1.0, + "content": "be an undirected graph where", + "type": "text" + }, + { + "bbox": [ + 291, + 83, + 300, + 92 + ], + "score": 0.79, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 83, + 383, + 95 + ], + "score": 1.0, + "content": "is a set of nodes and", + "type": "text" + }, + { + "bbox": [ + 383, + 83, + 392, + 92 + ], + "score": 0.82, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is a set of edges. We denote", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 199, + 106 + ], + "score": 1.0, + "content": "the number of nodes in", + "type": "text" + }, + { + "bbox": [ + 199, + 94, + 208, + 104 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 93, + 221, + 106 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 221, + 94, + 258, + 105 + ], + "score": 0.92, + "content": "N = | V |", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 93, + 308, + 106 + ], + "score": 1.0, + "content": "and identify", + "type": "text" + }, + { + "bbox": [ + 309, + 94, + 318, + 104 + ], + "score": 0.74, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 93, + 339, + 106 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 339, + 93, + 354, + 106 + ], + "score": 0.91, + "content": "[ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 93, + 438, + 106 + ], + "score": 1.0, + "content": "by fixing an order of", + "type": "text" + }, + { + "bbox": [ + 438, + 94, + 447, + 104 + ], + "score": 0.67, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 93, + 506, + 106 + ], + "score": 1.0, + "content": ". We associate", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 113, + 117 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 113, + 105, + 123, + 114 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 104, + 257, + 117 + ], + "score": 1.0, + "content": "dimensional signal to each node.", + "type": "text" + }, + { + "bbox": [ + 257, + 105, + 267, + 114 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "in the previous section corresponds to concatenation of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 479, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 281, + 128 + ], + "score": 1.0, + "content": "signals. GCNs iteratively update signals on", + "type": "text" + }, + { + "bbox": [ + 281, + 116, + 290, + 125 + ], + "score": 0.78, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 115, + 479, + 128 + ], + "score": 1.0, + "content": "using the connection information and weights.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 228 + ], + "lines": [ + { + "bbox": [ + 104, + 128, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 128, + 123, + 147 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 131, + 270, + 145 + ], + "score": 0.93, + "content": "A : = ( \\mathbf { 1 } _ { \\{ ( i , j ) \\in E \\} } ) _ { i , j \\in [ N ] } \\ \\in \\ \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 128, + 391, + 147 + ], + "score": 1.0, + "content": "be the adjacency matrix and", + "type": "text" + }, + { + "bbox": [ + 391, + 132, + 505, + 145 + ], + "score": 0.91, + "content": "D : = \\mathrm { d i a g } ( \\deg ( i ) _ { i \\in [ N ] } ) \\ \\in", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 141, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 135, + 155 + ], + "score": 0.89, + "content": "\\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 141, + 235, + 160 + ], + "score": 1.0, + "content": "be the degree matrix of", + "type": "text" + }, + { + "bbox": [ + 236, + 146, + 245, + 155 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 141, + 273, + 160 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 274, + 144, + 415, + 157 + ], + "score": 0.93, + "content": "\\deg ( i ) : = | \\{ j \\in V \\mid ( i , j ) \\in E \\} |", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 141, + 506, + 160 + ], + "score": 1.0, + "content": "is the degree of node", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 156, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 111, + 168 + ], + "score": 0.61, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 156, + 135, + 171 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 135, + 156, + 196, + 169 + ], + "score": 0.88, + "content": "{ \\tilde { A } } : = A + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 156, + 201, + 171 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 202, + 156, + 265, + 169 + ], + "score": 0.9, + "content": "{ \\tilde { D } } : = D + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 156, + 447, + 171 + ], + "score": 1.0, + "content": "be the adjacent and degree matrix of graph", + "type": "text" + }, + { + "bbox": [ + 448, + 158, + 457, + 168 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 156, + 505, + 171 + ], + "score": 1.0, + "content": "augmented", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 456, + 183 + ], + "score": 1.0, + "content": "with self-loops. We define the augmented normalized Laplacian (Wu et al., 2019a) of", + "type": "text" + }, + { + "bbox": [ + 456, + 170, + 466, + 181 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 169, + 480, + 183 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 480, + 169, + 505, + 182 + ], + "score": 0.87, + "content": "\\tilde { \\Delta } : =", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 107, + 181, + 178, + 194 + ], + "score": 0.92, + "content": "I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 181, + 209, + 196 + ], + "score": 1.0, + "content": "and set", + "type": "text" + }, + { + "bbox": [ + 210, + 181, + 264, + 194 + ], + "score": 0.92, + "content": "P : = I _ { N } - \\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 181, + 284, + 196 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 284, + 182, + 330, + 194 + ], + "score": 0.88, + "content": "L , C \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "be the layer and channel sizes, respectively.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 191, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 104, + 191, + 156, + 208 + ], + "score": 1.0, + "content": "For weights", + "type": "text" + }, + { + "bbox": [ + 156, + 193, + 207, + 204 + ], + "score": 0.8, + "content": "W _ { l } \\in \\mathbb { R } ^ { C \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 194, + 243, + 205 + ], + "score": 0.6, + "content": "( l \\in [ L ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 191, + 295, + 208 + ], + "score": 1.0, + "content": ", we define a", + "type": "text" + }, + { + "bbox": [ + 295, + 194, + 322, + 204 + ], + "score": 0.81, + "content": "\\mathrm { G C N } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 191, + 386, + 208 + ], + "score": 1.0, + "content": "associated with", + "type": "text" + }, + { + "bbox": [ + 386, + 194, + 396, + 204 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 191, + 408, + 208 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 409, + 194, + 477, + 205 + ], + "score": 0.93, + "content": "f = f _ { L } \\circ \\cdot \\cdot \\cdot \\circ f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 191, + 506, + 208 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 201, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 107, + 204, + 201, + 217 + ], + "score": 0.91, + "content": "f _ { l } : \\mathbb { R } ^ { \\breve { N } \\times C } \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 201, + 261, + 219 + ], + "score": 1.0, + "content": "is defined by", + "type": "text" + }, + { + "bbox": [ + 261, + 205, + 349, + 217 + ], + "score": 0.91, + "content": "f _ { l } ( X ) : = \\sigma ( P X W _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 201, + 506, + 219 + ], + "score": 1.0, + "content": ". We are interested in the asymptotic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 215, + 318, + 230 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 197, + 230 + ], + "score": 1.0, + "content": "behavior of the output", + "type": "text" + }, + { + "bbox": [ + 197, + 216, + 219, + 227 + ], + "score": 0.91, + "content": "X ^ { ( L ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 215, + 280, + 230 + ], + "score": 1.0, + "content": "of the GCN as", + "type": "text" + }, + { + "bbox": [ + 281, + 218, + 314, + 227 + ], + "score": 0.88, + "content": "L \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 215, + 318, + 230 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 144, + 246 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 144, + 234, + 153, + 244 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 234, + 172, + 246 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 172, + 235, + 184, + 244 + ], + "score": 0.81, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 234, + 313, + 246 + ], + "score": 1.0, + "content": "connected components and let", + "type": "text" + }, + { + "bbox": [ + 313, + 234, + 401, + 245 + ], + "score": 0.91, + "content": "V = V _ { 1 } \\sqcup \\cdots \\sqcup V _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "be the decomposition of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 158, + 257 + ], + "score": 1.0, + "content": "the node set", + "type": "text" + }, + { + "bbox": [ + 159, + 245, + 168, + 255 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 245, + 439, + 257 + ], + "score": 1.0, + "content": "into connected components. We denote an indicator vector of the", + "type": "text" + }, + { + "bbox": [ + 439, + 246, + 449, + 255 + ], + "score": 0.79, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "-th connected", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 166, + 269 + ], + "score": 1.0, + "content": "component by", + "type": "text" + }, + { + "bbox": [ + 166, + 256, + 290, + 269 + ], + "score": 0.89, + "content": "u _ { m } : = ( \\mathbf { 1 } _ { \\{ n \\in V _ { m } \\} } ) _ { n \\in [ N ] } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 255, + 506, + 269 + ], + "score": 1.0, + "content": ". The following proposition shows that GCN satisfies", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 267, + 338, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 338, + 279 + ], + "score": 1.0, + "content": "the assumption of Corollay 3 (see Appendix B for proof).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 187, + 295 + ], + "score": 1.0, + "content": "Proposition 1. Let", + "type": "text" + }, + { + "bbox": [ + 188, + 281, + 256, + 293 + ], + "score": 0.9, + "content": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 279, + 343, + 295 + ], + "score": 1.0, + "content": "be the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 344, + 282, + 352, + 291 + ], + "score": 0.76, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 279, + 506, + 295 + ], + "score": 1.0, + "content": "sorted in ascending order. Then, we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 129, + 307 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 129, + 293, + 171, + 304 + ], + "score": 0.81, + "content": "- 1 < \\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 291, + 177, + 307 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 177, + 294, + 229, + 304 + ], + "score": 0.85, + "content": "\\lambda _ { N - M } ~ < ~ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 291, + 254, + 307 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 254, + 293, + 376, + 304 + ], + "score": 0.9, + "content": "\\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 291, + 480, + 307 + ], + "score": 1.0, + "content": ". In particular, we have", + "type": "text" + }, + { + "bbox": [ + 481, + 293, + 505, + 304 + ], + "score": 0.84, + "content": "\\lambda : =", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 304, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 215, + 318 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { n = 1 , \\dots , N - M } | \\lambda _ { n } | < 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 304, + 257, + 320 + ], + "score": 1.0, + "content": ". Further,", + "type": "text" + }, + { + "bbox": [ + 257, + 304, + 317, + 317 + ], + "score": 0.89, + "content": "e _ { m } : = \\tilde { D } ^ { \\frac { 1 } { 2 } } u _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 304, + 333, + 320 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 334, + 305, + 375, + 318 + ], + "score": 0.9, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 304, + 506, + 320 + ], + "score": 1.0, + "content": "are the basis of the eigenspace", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 241, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 241, + 329 + ], + "score": 1.0, + "content": "associated with the eigenvalue 1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 108, + 330, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 256, + 345 + ], + "score": 1.0, + "content": "Theorem 2. For any initial value", + "type": "text" + }, + { + "bbox": [ + 256, + 330, + 276, + 342 + ], + "score": 0.9, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 327, + 387, + 345 + ], + "score": 1.0, + "content": ", the output of l-th layer", + "type": "text" + }, + { + "bbox": [ + 388, + 330, + 407, + 342 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 327, + 447, + 345 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 447, + 330, + 505, + 343 + ], + "score": 0.88, + "content": "d _ { \\mathcal { M } } ( X ^ { ( l ) } ) ~ \\leq", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 341, + 448, + 357 + ], + "spans": [ + { + "bbox": [ + 107, + 342, + 171, + 356 + ], + "score": 0.92, + "content": "( s \\lambda ) ^ { l } d _ { \\mathcal { M } } ( X ^ { ( 0 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 341, + 231, + 357 + ], + "score": 1.0, + "content": ". In particular,", + "type": "text" + }, + { + "bbox": [ + 231, + 342, + 273, + 356 + ], + "score": 0.94, + "content": "d _ { \\mathcal { M } } ( { \\boldsymbol { X } } ^ { ( l ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 341, + 414, + 357 + ], + "score": 1.0, + "content": "exponentially converges to 0 when", + "type": "text" + }, + { + "bbox": [ + 414, + 344, + 443, + 354 + ], + "score": 0.88, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 341, + 448, + 357 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 364, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "score": 1.0, + "content": "In the context of node classification tasks, we can interpret this corollary as the “information loss” of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 283, + 388 + ], + "score": 1.0, + "content": "GCNs in the limit of infinite layers. For any", + "type": "text" + }, + { + "bbox": [ + 283, + 376, + 317, + 386 + ], + "score": 0.91, + "content": "X \\in { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 375, + 372, + 388 + ], + "score": 1.0, + "content": ", if two nodes", + "type": "text" + }, + { + "bbox": [ + 372, + 376, + 407, + 387 + ], + "score": 0.91, + "content": "i , j \\in V", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "are in a same connected", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 387, + 504, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 388, + 398 + ], + "score": 1.0, + "content": "component and their degrees are identical, then, the column vectors of", + "type": "text" + }, + { + "bbox": [ + 388, + 387, + 398, + 396 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 387, + 498, + 398 + ], + "score": 1.0, + "content": "that correspond to nodes", + "type": "text" + }, + { + "bbox": [ + 499, + 387, + 504, + 396 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 123, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 398, + 129, + 408 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 396, + 401, + 410 + ], + "score": 1.0, + "content": "are identical. It means that we cannot distinguish these nodes using", + "type": "text" + }, + { + "bbox": [ + 402, + 398, + 412, + 407 + ], + "score": 0.76, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 396, + 470, + 410 + ], + "score": 1.0, + "content": ". In this sense,", + "type": "text" + }, + { + "bbox": [ + 470, + 397, + 484, + 407 + ], + "score": 0.78, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "has information about connected components and node degrees and we can interpret this theorem", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "as the exponential information loss of GCNs in terms of the layer size. Similarly to the discussion", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 201, + 444 + ], + "score": 1.0, + "content": "in the previous section,", + "type": "text" + }, + { + "bbox": [ + 201, + 430, + 221, + 442 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 430, + 392, + 444 + ], + "score": 1.0, + "content": "converges to the trivial fixed point 0 when", + "type": "text" + }, + { + "bbox": [ + 393, + 432, + 417, + 442 + ], + "score": 0.89, + "content": "s < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 430, + 465, + 444 + ], + "score": 1.0, + "content": "(remember", + "type": "text" + }, + { + "bbox": [ + 465, + 431, + 498, + 442 + ], + "score": 0.88, + "content": "\\lambda _ { N } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 430, + 505, + 444 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 244, + 455 + ], + "score": 1.0, + "content": "An interesting point is that even if", + "type": "text" + }, + { + "bbox": [ + 245, + 443, + 269, + 454 + ], + "score": 0.87, + "content": "s \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 442, + 272, + 455 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 273, + 442, + 292, + 453 + ], + "score": 0.88, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 442, + 465, + 455 + ], + "score": 1.0, + "content": "can suffer from this information loss when", + "type": "text" + }, + { + "bbox": [ + 466, + 443, + 501, + 453 + ], + "score": 0.9, + "content": "s < \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 442, + 505, + 455 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 108, + 460, + 503, + 493 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 504, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 192, + 472 + ], + "score": 1.0, + "content": "We note that the rate", + "type": "text" + }, + { + "bbox": [ + 192, + 461, + 204, + 470 + ], + "score": 0.84, + "content": "s \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 460, + 504, + 472 + ], + "score": 1.0, + "content": "in Theorem 2 depends on the spectra of the augmented normalized Lapla-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 471, + 504, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 378, + 483 + ], + "score": 1.0, + "content": "cian, which is determined by the topology of the underlying graph", + "type": "text" + }, + { + "bbox": [ + 378, + 471, + 387, + 481 + ], + "score": 0.7, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 471, + 504, + 483 + ], + "score": 1.0, + "content": ". Hence, our result explicitly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 482, + 450, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 450, + 495 + ], + "score": 1.0, + "content": "relates the topological information of graphs and asymptotic behaviors of graph NNs.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 504, + 509 + ], + "score": 1.0, + "content": "Remark 2. The old preprint (version 2) of Luan et al. (2019) formulated a theorem that explains the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 508, + 504, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 504, + 520 + ], + "score": 1.0, + "content": "over-smoothing of non-linear GNNs. Specifically, it claimed that if a graph does not have a bipartite", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "component and the input distribution is continuous, the rank of the output of a GCN converges to the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 530, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 543 + ], + "score": 1.0, + "content": "number of connected components of the underlying graph as the layer size goes to infinity almost", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 541, + 448, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 437, + 554 + ], + "score": 1.0, + "content": "surely. However, it is not true in general as we give a counterexample in Appendix", + "type": "text" + }, + { + "bbox": [ + 437, + 543, + 444, + 551 + ], + "score": 0.53, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 541, + 448, + 554 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 108, + 567, + 442, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 443, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 443, + 583 + ], + "score": 1.0, + "content": "5 ASYMPTOTIC BEHAVIOR OF GCN ON ERDOS˝ – RENYI ´ GRAPH", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "Theorem 2 gives us a way to characterize the asymptotic behaviors of GCNs via the spectral distri-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 601, + 504, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 481, + 619 + ], + "score": 1.0, + "content": "butions of the underlying graphs. To demonstrate this, we consider an Erdos – R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 481, + 604, + 504, + 617 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 613, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 397, + 628 + ], + "score": 1.0, + "content": "(Erdos & R ¨ enyi, 1959; Gilbert, 1959), which is a random graph that has ´", + "type": "text" + }, + { + "bbox": [ + 397, + 615, + 407, + 625 + ], + "score": 0.83, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 613, + 506, + 628 + ], + "score": 1.0, + "content": "nodes and whose edges", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 624, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 374, + 640 + ], + "score": 1.0, + "content": "between two distinct nodes appear independently with probability", + "type": "text" + }, + { + "bbox": [ + 374, + 626, + 414, + 638 + ], + "score": 0.91, + "content": "p \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 624, + 506, + 640 + ], + "score": 1.0, + "content": ", as an example. First,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 236, + 650 + ], + "score": 1.0, + "content": "consider a (non-random) graph", + "type": "text" + }, + { + "bbox": [ + 236, + 637, + 245, + 647 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 636, + 268, + 650 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 268, + 637, + 281, + 647 + ], + "score": 0.74, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 636, + 399, + 650 + ], + "score": 1.0, + "content": "connected components. Let", + "type": "text" + }, + { + "bbox": [ + 399, + 637, + 505, + 649 + ], + "score": 0.89, + "content": "0 = \\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } <", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 107, + 648, + 207, + 660 + ], + "score": 0.92, + "content": "\\tilde { \\mu } _ { M + 1 } \\leq \\dots \\leq \\tilde { \\mu } _ { N } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 648, + 443, + 661 + ], + "score": 1.0, + "content": "be eigenvalues of the augmented normalized Laplacian of", + "type": "text" + }, + { + "bbox": [ + 443, + 649, + 452, + 658 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "(see, Propo-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 104, + 658, + 174, + 672 + ], + "score": 1.0, + "content": "sition 1) and set", + "type": "text" + }, + { + "bbox": [ + 174, + 659, + 330, + 671 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\lambda : = \\operatorname* { m i n } _ { m = M + 1 , \\ldots , N } | 1 - \\tilde { \\mu } _ { m } | ( < 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 658, + 506, + 672 + ], + "score": 1.0, + "content": ". By Theorem 2, the output of GCN “loses", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "information” as the layer size goes to infinity when the largest singular values of weights are strictly", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 679, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 679, + 159, + 694 + ], + "score": 1.0, + "content": "smaller than", + "type": "text" + }, + { + "bbox": [ + 159, + 680, + 176, + 691 + ], + "score": 0.91, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 679, + 367, + 694 + ], + "score": 1.0, + "content": ". Therefore, the closer the positive eigenvalues", + "type": "text" + }, + { + "bbox": [ + 368, + 683, + 382, + 693 + ], + "score": 0.86, + "content": "\\mu _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 679, + 506, + 694 + ], + "score": 1.0, + "content": "are to 1, the broader range of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 692, + 290, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 290, + 704 + ], + "score": 1.0, + "content": "GCNs satisfies the assumption of Theorem 2.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 711, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 416, + 724 + ], + "score": 1.0, + "content": "2Following the original paper (Kipf & Welling, 2017), we use one-layer MLPs (i.e.,", + "type": "text" + }, + { + "bbox": [ + 416, + 712, + 445, + 721 + ], + "score": 0.9, + "content": "H _ { l } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 709, + 468, + 724 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 469, + 712, + 499, + 722 + ], + "score": 0.86, + "content": "l \\in \\mathbb { N } .", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 709, + 506, + 724 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 720, + 288, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 288, + 734 + ], + "score": 1.0, + "content": "However, our result holds for the multi-layer case", + "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 2020", + "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": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 83, + 122, + 95 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 82, + 171, + 95 + ], + "score": 0.93, + "content": "G = ( V , E )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 83, + 291, + 95 + ], + "score": 1.0, + "content": "be an undirected graph where", + "type": "text" + }, + { + "bbox": [ + 291, + 83, + 300, + 92 + ], + "score": 0.79, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 83, + 383, + 95 + ], + "score": 1.0, + "content": "is a set of nodes and", + "type": "text" + }, + { + "bbox": [ + 383, + 83, + 392, + 92 + ], + "score": 0.82, + "content": "E", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "is a set of edges. We denote", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 199, + 106 + ], + "score": 1.0, + "content": "the number of nodes in", + "type": "text" + }, + { + "bbox": [ + 199, + 94, + 208, + 104 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 93, + 221, + 106 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 221, + 94, + 258, + 105 + ], + "score": 0.92, + "content": "N = | V |", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 93, + 308, + 106 + ], + "score": 1.0, + "content": "and identify", + "type": "text" + }, + { + "bbox": [ + 309, + 94, + 318, + 104 + ], + "score": 0.74, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 93, + 339, + 106 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 339, + 93, + 354, + 106 + ], + "score": 0.91, + "content": "[ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 355, + 93, + 438, + 106 + ], + "score": 1.0, + "content": "by fixing an order of", + "type": "text" + }, + { + "bbox": [ + 438, + 94, + 447, + 104 + ], + "score": 0.67, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 93, + 506, + 106 + ], + "score": 1.0, + "content": ". We associate", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 104, + 104, + 113, + 117 + ], + "score": 1.0, + "content": "a", + "type": "text" + }, + { + "bbox": [ + 113, + 105, + 123, + 114 + ], + "score": 0.81, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 123, + 104, + 257, + 117 + ], + "score": 1.0, + "content": "dimensional signal to each node.", + "type": "text" + }, + { + "bbox": [ + 257, + 105, + 267, + 114 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "in the previous section corresponds to concatenation of the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 479, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 281, + 128 + ], + "score": 1.0, + "content": "signals. GCNs iteratively update signals on", + "type": "text" + }, + { + "bbox": [ + 281, + 116, + 290, + 125 + ], + "score": 0.78, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 115, + 479, + 128 + ], + "score": 1.0, + "content": "using the connection information and weights.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 104, + 82, + 506, + 128 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 131, + 505, + 228 + ], + "lines": [ + { + "bbox": [ + 104, + 128, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 104, + 128, + 123, + 147 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 131, + 270, + 145 + ], + "score": 0.93, + "content": "A : = ( \\mathbf { 1 } _ { \\{ ( i , j ) \\in E \\} } ) _ { i , j \\in [ N ] } \\ \\in \\ \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 128, + 391, + 147 + ], + "score": 1.0, + "content": "be the adjacency matrix and", + "type": "text" + }, + { + "bbox": [ + 391, + 132, + 505, + 145 + ], + "score": 0.91, + "content": "D : = \\mathrm { d i a g } ( \\deg ( i ) _ { i \\in [ N ] } ) \\ \\in", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 141, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 106, + 144, + 135, + 155 + ], + "score": 0.89, + "content": "\\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 141, + 235, + 160 + ], + "score": 1.0, + "content": "be the degree matrix of", + "type": "text" + }, + { + "bbox": [ + 236, + 146, + 245, + 155 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 141, + 273, + 160 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 274, + 144, + 415, + 157 + ], + "score": 0.93, + "content": "\\deg ( i ) : = | \\{ j \\in V \\mid ( i , j ) \\in E \\} |", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 141, + 506, + 160 + ], + "score": 1.0, + "content": "is the degree of node", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 156, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 111, + 168 + ], + "score": 0.61, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 156, + 135, + 171 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 135, + 156, + 196, + 169 + ], + "score": 0.88, + "content": "{ \\tilde { A } } : = A + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 156, + 201, + 171 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 202, + 156, + 265, + 169 + ], + "score": 0.9, + "content": "{ \\tilde { D } } : = D + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 156, + 447, + 171 + ], + "score": 1.0, + "content": "be the adjacent and degree matrix of graph", + "type": "text" + }, + { + "bbox": [ + 448, + 158, + 457, + 168 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 156, + 505, + 171 + ], + "score": 1.0, + "content": "augmented", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 456, + 183 + ], + "score": 1.0, + "content": "with self-loops. We define the augmented normalized Laplacian (Wu et al., 2019a) of", + "type": "text" + }, + { + "bbox": [ + 456, + 170, + 466, + 181 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 169, + 480, + 183 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 480, + 169, + 505, + 182 + ], + "score": 0.87, + "content": "\\tilde { \\Delta } : =", + "type": "inline_equation" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 181, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 107, + 181, + 178, + 194 + ], + "score": 0.92, + "content": "I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 181, + 209, + 196 + ], + "score": 1.0, + "content": "and set", + "type": "text" + }, + { + "bbox": [ + 210, + 181, + 264, + 194 + ], + "score": 0.92, + "content": "P : = I _ { N } - \\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 181, + 284, + 196 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 284, + 182, + 330, + 194 + ], + "score": 0.88, + "content": "L , C \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 181, + 505, + 196 + ], + "score": 1.0, + "content": "be the layer and channel sizes, respectively.", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 191, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 104, + 191, + 156, + 208 + ], + "score": 1.0, + "content": "For weights", + "type": "text" + }, + { + "bbox": [ + 156, + 193, + 207, + 204 + ], + "score": 0.8, + "content": "W _ { l } \\in \\mathbb { R } ^ { C \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 194, + 243, + 205 + ], + "score": 0.6, + "content": "( l \\in [ L ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 191, + 295, + 208 + ], + "score": 1.0, + "content": ", we define a", + "type": "text" + }, + { + "bbox": [ + 295, + 194, + 322, + 204 + ], + "score": 0.81, + "content": "\\mathrm { G C N } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 191, + 386, + 208 + ], + "score": 1.0, + "content": "associated with", + "type": "text" + }, + { + "bbox": [ + 386, + 194, + 396, + 204 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 191, + 408, + 208 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 409, + 194, + 477, + 205 + ], + "score": 0.93, + "content": "f = f _ { L } \\circ \\cdot \\cdot \\cdot \\circ f _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 191, + 506, + 208 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 201, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 107, + 204, + 201, + 217 + ], + "score": 0.91, + "content": "f _ { l } : \\mathbb { R } ^ { \\breve { N } \\times C } \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 201, + 261, + 219 + ], + "score": 1.0, + "content": "is defined by", + "type": "text" + }, + { + "bbox": [ + 261, + 205, + 349, + 217 + ], + "score": 0.91, + "content": "f _ { l } ( X ) : = \\sigma ( P X W _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 201, + 506, + 219 + ], + "score": 1.0, + "content": ". We are interested in the asymptotic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 215, + 318, + 230 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 197, + 230 + ], + "score": 1.0, + "content": "behavior of the output", + "type": "text" + }, + { + "bbox": [ + 197, + 216, + 219, + 227 + ], + "score": 0.91, + "content": "X ^ { ( L ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 215, + 280, + 230 + ], + "score": 1.0, + "content": "of the GCN as", + "type": "text" + }, + { + "bbox": [ + 281, + 218, + 314, + 227 + ], + "score": 0.88, + "content": "L \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 215, + 318, + 230 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 7.5, + "bbox_fs": [ + 104, + 128, + 506, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 279 + ], + "lines": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 144, + 246 + ], + "score": 1.0, + "content": "Suppose", + "type": "text" + }, + { + "bbox": [ + 144, + 234, + 153, + 244 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 234, + 172, + 246 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 172, + 235, + 184, + 244 + ], + "score": 0.81, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 234, + 313, + 246 + ], + "score": 1.0, + "content": "connected components and let", + "type": "text" + }, + { + "bbox": [ + 313, + 234, + 401, + 245 + ], + "score": 0.91, + "content": "V = V _ { 1 } \\sqcup \\cdots \\sqcup V _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "be the decomposition of", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 245, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 158, + 257 + ], + "score": 1.0, + "content": "the node set", + "type": "text" + }, + { + "bbox": [ + 159, + 245, + 168, + 255 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 245, + 439, + 257 + ], + "score": 1.0, + "content": "into connected components. We denote an indicator vector of the", + "type": "text" + }, + { + "bbox": [ + 439, + 246, + 449, + 255 + ], + "score": 0.79, + "content": "m", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 245, + 505, + 257 + ], + "score": 1.0, + "content": "-th connected", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 255, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 104, + 255, + 166, + 269 + ], + "score": 1.0, + "content": "component by", + "type": "text" + }, + { + "bbox": [ + 166, + 256, + 290, + 269 + ], + "score": 0.89, + "content": "u _ { m } : = ( \\mathbf { 1 } _ { \\{ n \\in V _ { m } \\} } ) _ { n \\in [ N ] } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 255, + 506, + 269 + ], + "score": 1.0, + "content": ". The following proposition shows that GCN satisfies", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 267, + 338, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 338, + 279 + ], + "score": 1.0, + "content": "the assumption of Corollay 3 (see Appendix B for proof).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 234, + 506, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 328 + ], + "lines": [ + { + "bbox": [ + 105, + 279, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 279, + 187, + 295 + ], + "score": 1.0, + "content": "Proposition 1. Let", + "type": "text" + }, + { + "bbox": [ + 188, + 281, + 256, + 293 + ], + "score": 0.9, + "content": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 279, + 343, + 295 + ], + "score": 1.0, + "content": "be the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 344, + 282, + 352, + 291 + ], + "score": 0.76, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 279, + 506, + 295 + ], + "score": 1.0, + "content": "sorted in ascending order. Then, we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 129, + 307 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 129, + 293, + 171, + 304 + ], + "score": 0.81, + "content": "- 1 < \\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 291, + 177, + 307 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 177, + 294, + 229, + 304 + ], + "score": 0.85, + "content": "\\lambda _ { N - M } ~ < ~ 1", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 291, + 254, + 307 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 254, + 293, + 376, + 304 + ], + "score": 0.9, + "content": "\\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 291, + 480, + 307 + ], + "score": 1.0, + "content": ". In particular, we have", + "type": "text" + }, + { + "bbox": [ + 481, + 293, + 505, + 304 + ], + "score": 0.84, + "content": "\\lambda : =", + "type": "inline_equation" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 304, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 215, + 318 + ], + "score": 0.88, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { n = 1 , \\dots , N - M } | \\lambda _ { n } | < 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 304, + 257, + 320 + ], + "score": 1.0, + "content": ". Further,", + "type": "text" + }, + { + "bbox": [ + 257, + 304, + 317, + 317 + ], + "score": 0.89, + "content": "e _ { m } : = \\tilde { D } ^ { \\frac { 1 } { 2 } } u _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 304, + 333, + 320 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 334, + 305, + 375, + 318 + ], + "score": 0.9, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 304, + 506, + 320 + ], + "score": 1.0, + "content": "are the basis of the eigenspace", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 317, + 241, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 241, + 329 + ], + "score": 1.0, + "content": "associated with the eigenvalue 1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 279, + 506, + 329 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 330, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 327, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 256, + 345 + ], + "score": 1.0, + "content": "Theorem 2. For any initial value", + "type": "text" + }, + { + "bbox": [ + 256, + 330, + 276, + 342 + ], + "score": 0.9, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 327, + 387, + 345 + ], + "score": 1.0, + "content": ", the output of l-th layer", + "type": "text" + }, + { + "bbox": [ + 388, + 330, + 407, + 342 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 327, + 447, + 345 + ], + "score": 1.0, + "content": "satisfies", + "type": "text" + }, + { + "bbox": [ + 447, + 330, + 505, + 343 + ], + "score": 0.88, + "content": "d _ { \\mathcal { M } } ( X ^ { ( l ) } ) ~ \\leq", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 341, + 448, + 357 + ], + "spans": [ + { + "bbox": [ + 107, + 342, + 171, + 356 + ], + "score": 0.92, + "content": "( s \\lambda ) ^ { l } d _ { \\mathcal { M } } ( X ^ { ( 0 ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 341, + 231, + 357 + ], + "score": 1.0, + "content": ". In particular,", + "type": "text" + }, + { + "bbox": [ + 231, + 342, + 273, + 356 + ], + "score": 0.94, + "content": "d _ { \\mathcal { M } } ( { \\boldsymbol { X } } ^ { ( l ) } )", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 341, + 414, + 357 + ], + "score": 1.0, + "content": "exponentially converges to 0 when", + "type": "text" + }, + { + "bbox": [ + 414, + 344, + 443, + 354 + ], + "score": 0.88, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 341, + 448, + 357 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 327, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 364, + 505, + 455 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 506, + 377 + ], + "score": 1.0, + "content": "In the context of node classification tasks, we can interpret this corollary as the “information loss” of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 375, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 283, + 388 + ], + "score": 1.0, + "content": "GCNs in the limit of infinite layers. For any", + "type": "text" + }, + { + "bbox": [ + 283, + 376, + 317, + 386 + ], + "score": 0.91, + "content": "X \\in { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 375, + 372, + 388 + ], + "score": 1.0, + "content": ", if two nodes", + "type": "text" + }, + { + "bbox": [ + 372, + 376, + 407, + 387 + ], + "score": 0.91, + "content": "i , j \\in V", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 375, + 505, + 388 + ], + "score": 1.0, + "content": "are in a same connected", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 387, + 504, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 388, + 398 + ], + "score": 1.0, + "content": "component and their degrees are identical, then, the column vectors of", + "type": "text" + }, + { + "bbox": [ + 388, + 387, + 398, + 396 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 387, + 498, + 398 + ], + "score": 1.0, + "content": "that correspond to nodes", + "type": "text" + }, + { + "bbox": [ + 499, + 387, + 504, + 396 + ], + "score": 0.67, + "content": "i", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 396, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 123, + 410 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 398, + 129, + 408 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 396, + 401, + 410 + ], + "score": 1.0, + "content": "are identical. It means that we cannot distinguish these nodes using", + "type": "text" + }, + { + "bbox": [ + 402, + 398, + 412, + 407 + ], + "score": 0.76, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 396, + 470, + 410 + ], + "score": 1.0, + "content": ". In this sense,", + "type": "text" + }, + { + "bbox": [ + 470, + 397, + 484, + 407 + ], + "score": 0.78, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 396, + 505, + 410 + ], + "score": 1.0, + "content": "only", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "has information about connected components and node degrees and we can interpret this theorem", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 432 + ], + "score": 1.0, + "content": "as the exponential information loss of GCNs in terms of the layer size. Similarly to the discussion", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 201, + 444 + ], + "score": 1.0, + "content": "in the previous section,", + "type": "text" + }, + { + "bbox": [ + 201, + 430, + 221, + 442 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 430, + 392, + 444 + ], + "score": 1.0, + "content": "converges to the trivial fixed point 0 when", + "type": "text" + }, + { + "bbox": [ + 393, + 432, + 417, + 442 + ], + "score": 0.89, + "content": "s < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 430, + 465, + 444 + ], + "score": 1.0, + "content": "(remember", + "type": "text" + }, + { + "bbox": [ + 465, + 431, + 498, + 442 + ], + "score": 0.88, + "content": "\\lambda _ { N } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 499, + 430, + 505, + 444 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 244, + 455 + ], + "score": 1.0, + "content": "An interesting point is that even if", + "type": "text" + }, + { + "bbox": [ + 245, + 443, + 269, + 454 + ], + "score": 0.87, + "content": "s \\geq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 442, + 272, + 455 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 273, + 442, + 292, + 453 + ], + "score": 0.88, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 442, + 465, + 455 + ], + "score": 1.0, + "content": "can suffer from this information loss when", + "type": "text" + }, + { + "bbox": [ + 466, + 443, + 501, + 453 + ], + "score": 0.9, + "content": "s < \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 442, + 505, + 455 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 363, + 506, + 455 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 460, + 503, + 493 + ], + "lines": [ + { + "bbox": [ + 106, + 460, + 504, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 460, + 192, + 472 + ], + "score": 1.0, + "content": "We note that the rate", + "type": "text" + }, + { + "bbox": [ + 192, + 461, + 204, + 470 + ], + "score": 0.84, + "content": "s \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 460, + 504, + 472 + ], + "score": 1.0, + "content": "in Theorem 2 depends on the spectra of the augmented normalized Lapla-", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 471, + 504, + 483 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 378, + 483 + ], + "score": 1.0, + "content": "cian, which is determined by the topology of the underlying graph", + "type": "text" + }, + { + "bbox": [ + 378, + 471, + 387, + 481 + ], + "score": 0.7, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 471, + 504, + 483 + ], + "score": 1.0, + "content": ". Hence, our result explicitly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 482, + 450, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 450, + 495 + ], + "score": 1.0, + "content": "relates the topological information of graphs and asymptotic behaviors of graph NNs.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 460, + 504, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 496, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 106, + 497, + 504, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 504, + 509 + ], + "score": 1.0, + "content": "Remark 2. The old preprint (version 2) of Luan et al. (2019) formulated a theorem that explains the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 508, + 504, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 504, + 520 + ], + "score": 1.0, + "content": "over-smoothing of non-linear GNNs. Specifically, it claimed that if a graph does not have a bipartite", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "component and the input distribution is continuous, the rank of the output of a GCN converges to the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 530, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 506, + 543 + ], + "score": 1.0, + "content": "number of connected components of the underlying graph as the layer size goes to infinity almost", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 541, + 448, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 541, + 437, + 554 + ], + "score": 1.0, + "content": "surely. However, it is not true in general as we give a counterexample in Appendix", + "type": "text" + }, + { + "bbox": [ + 437, + 543, + 444, + 551 + ], + "score": 0.53, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 541, + 448, + 554 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 497, + 506, + 554 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 567, + 442, + 581 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 443, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 443, + 583 + ], + "score": 1.0, + "content": "5 ASYMPTOTIC BEHAVIOR OF GCN ON ERDOS˝ – RENYI ´ GRAPH", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 592, + 505, + 703 + ], + "lines": [ + { + "bbox": [ + 106, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "Theorem 2 gives us a way to characterize the asymptotic behaviors of GCNs via the spectral distri-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 104, + 601, + 504, + 619 + ], + "spans": [ + { + "bbox": [ + 104, + 601, + 481, + 619 + ], + "score": 1.0, + "content": "butions of the underlying graphs. To demonstrate this, we consider an Erdos – R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 481, + 604, + 504, + 617 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 613, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 397, + 628 + ], + "score": 1.0, + "content": "(Erdos & R ¨ enyi, 1959; Gilbert, 1959), which is a random graph that has ´", + "type": "text" + }, + { + "bbox": [ + 397, + 615, + 407, + 625 + ], + "score": 0.83, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 613, + 506, + 628 + ], + "score": 1.0, + "content": "nodes and whose edges", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 624, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 374, + 640 + ], + "score": 1.0, + "content": "between two distinct nodes appear independently with probability", + "type": "text" + }, + { + "bbox": [ + 374, + 626, + 414, + 638 + ], + "score": 0.91, + "content": "p \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 624, + 506, + 640 + ], + "score": 1.0, + "content": ", as an example. First,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 636, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 236, + 650 + ], + "score": 1.0, + "content": "consider a (non-random) graph", + "type": "text" + }, + { + "bbox": [ + 236, + 637, + 245, + 647 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 636, + 268, + 650 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 268, + 637, + 281, + 647 + ], + "score": 0.74, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 636, + 399, + 650 + ], + "score": 1.0, + "content": "connected components. Let", + "type": "text" + }, + { + "bbox": [ + 399, + 637, + 505, + 649 + ], + "score": 0.89, + "content": "0 = \\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } <", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 648, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 107, + 648, + 207, + 660 + ], + "score": 0.92, + "content": "\\tilde { \\mu } _ { M + 1 } \\leq \\dots \\leq \\tilde { \\mu } _ { N } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 648, + 443, + 661 + ], + "score": 1.0, + "content": "be eigenvalues of the augmented normalized Laplacian of", + "type": "text" + }, + { + "bbox": [ + 443, + 649, + 452, + 658 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 648, + 505, + 661 + ], + "score": 1.0, + "content": "(see, Propo-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 104, + 658, + 506, + 672 + ], + "spans": [ + { + "bbox": [ + 104, + 658, + 174, + 672 + ], + "score": 1.0, + "content": "sition 1) and set", + "type": "text" + }, + { + "bbox": [ + 174, + 659, + 330, + 671 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\lambda : = \\operatorname* { m i n } _ { m = M + 1 , \\ldots , N } | 1 - \\tilde { \\mu } _ { m } | ( < 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 658, + 506, + 672 + ], + "score": 1.0, + "content": ". By Theorem 2, the output of GCN “loses", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 505, + 682 + ], + "score": 1.0, + "content": "information” as the layer size goes to infinity when the largest singular values of weights are strictly", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 679, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 679, + 159, + 694 + ], + "score": 1.0, + "content": "smaller than", + "type": "text" + }, + { + "bbox": [ + 159, + 680, + 176, + 691 + ], + "score": 0.91, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 679, + 367, + 694 + ], + "score": 1.0, + "content": ". Therefore, the closer the positive eigenvalues", + "type": "text" + }, + { + "bbox": [ + 368, + 683, + 382, + 693 + ], + "score": 0.86, + "content": "\\mu _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 679, + 506, + 694 + ], + "score": 1.0, + "content": "are to 1, the broader range of", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 692, + 290, + 704 + ], + "spans": [ + { + "bbox": [ + 106, + 692, + 290, + 704 + ], + "score": 1.0, + "content": "GCNs satisfies the assumption of Theorem 2.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 43.5, + "bbox_fs": [ + 104, + 592, + 506, + 704 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 150, + 88, + 448, + 207 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 150, + 88, + 448, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 88, + 448, + 207 + ], + "spans": [ + { + "bbox": [ + 150, + 88, + 448, + 207 + ], + "score": 0.966, + "type": "image", + "image_path": "52ed0a06decf73aeea33aba4d223d5646b9ee3b007a61062524feaa9a9984ba1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 150, + 88, + 448, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 150, + 127.66666666666666, + 448, + 167.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 150, + 167.33333333333331, + 448, + 206.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 225, + 505, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 257, + 238 + ], + "score": 1.0, + "content": "Figure 1: Visualization of vector field", + "type": "text" + }, + { + "bbox": [ + 257, + 225, + 340, + 237 + ], + "score": 0.93, + "content": "V ( X ) : = f ( X ) - X", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "induced by the one-step transition. Color", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 236, + 504, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 242, + 249 + ], + "score": 1.0, + "content": "maps indicate the absolute value", + "type": "text" + }, + { + "bbox": [ + 242, + 237, + 273, + 249 + ], + "score": 0.93, + "content": "| V ( X ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 236, + 324, + 249 + ], + "score": 1.0, + "content": "at the point", + "type": "text" + }, + { + "bbox": [ + 325, + 237, + 335, + 246 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 236, + 464, + 249 + ], + "score": 1.0, + "content": ". Dotted lines are the subspace", + "type": "text" + }, + { + "bbox": [ + 464, + 237, + 477, + 247 + ], + "score": 0.7, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 236, + 504, + 249 + ], + "score": 1.0, + "content": ". Left:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 248, + 278, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 248, + 278, + 259 + ], + "score": 1.0, + "content": "Case 1. Right: Case 2. Best view in color.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 104, + 277, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 221, + 295 + ], + "score": 1.0, + "content": "For an Erdos – R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 221, + 281, + 243, + 293 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 277, + 432, + 295 + ], + "score": 1.0, + "content": ", Chung & Radcliffe (2011) showed that when", + "type": "text" + }, + { + "bbox": [ + 433, + 279, + 486, + 294 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 277, + 506, + 295 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "score": 1.0, + "content": "eigenvalues of the (usual) normalized Laplacian except for the smallest one converge to 1 with high", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "probability (see Theorem 2 therein)3. We can interpret this theorem as the convergence of Erdos- ˝", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 315, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 326 + ], + "score": 1.0, + "content": "Renyi graphs to the complete graph in terms of graph spectra. We can prove that the augmented ´", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "normalized Laplacian behaves similarly (Lemma 6). By combining this fact with the discussion in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "score": 1.0, + "content": "the previous paragraph, we obtain the asymptotic behavior of GCNs on the Erdos – R ˝ enyi graph. ´", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 347, + 270, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 270, + 360 + ], + "score": 1.0, + "content": "See Appendix D for the complete proof.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 362, + 505, + 418 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 334, + 380 + ], + "score": 1.0, + "content": "Theorem 3. Consider a GCN on the Erdos-R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 334, + 365, + 357, + 377 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 360, + 397, + 380 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 397, + 362, + 450, + 379 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 360, + 505, + 380 + ], + "score": 1.0, + "content": "as a function", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 117, + 389 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 377, + 128, + 387 + ], + "score": 0.68, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 376, + 169, + 389 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 169, + 378, + 196, + 388 + ], + "score": 0.86, + "content": "\\varepsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 376, + 506, + 389 + ], + "score": 1.0, + "content": ", if the supremum s of the maximum singular values of weights in the GCN", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 388, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 205, + 406 + ], + "score": 1.0, + "content": "satisfies s < s0 := 17 q", + "type": "text" + }, + { + "bbox": [ + 141, + 388, + 241, + 407 + ], + "score": 0.93, + "content": "\\begin{array} { r } { s < s _ { 0 } : = \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 391, + 352, + 405 + ], + "score": 1.0, + "content": "then, for sufficiently large", + "type": "text" + }, + { + "bbox": [ + 352, + 392, + 362, + 402 + ], + "score": 0.63, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 391, + 506, + 405 + ], + "score": 1.0, + "content": ", the GCN satisfies the condition of", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 241, + 396, + 246, + 408 + ], + "spans": [ + { + "bbox": [ + 241, + 396, + 246, + 408 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 405, + 276, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 249, + 420 + ], + "score": 1.0, + "content": "Theorem 2 with probability at least", + "type": "text" + }, + { + "bbox": [ + 249, + 407, + 272, + 417 + ], + "score": 0.87, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 405, + 276, + 420 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "Theorem 3 requires that an underlying graph is not extremely sparse. For example, suppose the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 155, + 451 + ], + "score": 1.0, + "content": "node size is", + "type": "text" + }, + { + "bbox": [ + 156, + 438, + 208, + 449 + ], + "score": 0.77, + "content": "N = 2 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 437, + 505, + 451 + ], + "score": 1.0, + "content": ", which is the approximately the maximum node size of datasets we use in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 449, + 504, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 268, + 461 + ], + "score": 1.0, + "content": "experiments, and the edge probability is", + "type": "text" + }, + { + "bbox": [ + 269, + 449, + 325, + 461 + ], + "score": 0.93, + "content": "p = \\log N / N", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 449, + 462, + 461 + ], + "score": 1.0, + "content": ". Then, each node has the order of", + "type": "text" + }, + { + "bbox": [ + 462, + 450, + 504, + 461 + ], + "score": 0.91, + "content": "N p \\approx 4 . 3", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 461, + 171, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 171, + 472 + ], + "score": 1.0, + "content": "adjacent nodes.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 315, + 489 + ], + "score": 1.0, + "content": "Under the condition of Theorem 3, the upper bound", + "type": "text" + }, + { + "bbox": [ + 315, + 479, + 351, + 488 + ], + "score": 0.89, + "content": "s _ { 0 } \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 477, + 362, + 489 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 363, + 478, + 398, + 487 + ], + "score": 0.91, + "content": "N \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 477, + 504, + 489 + ], + "score": 1.0, + "content": ". It means that if the graph", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "is sufficiently large and not extremely sparse, most GCNs suffer from the information loss. For the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 252, + 511 + ], + "score": 1.0, + "content": "dependence on the edge probability", + "type": "text" + }, + { + "bbox": [ + 253, + 501, + 259, + 511 + ], + "score": 0.4, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 498, + 263, + 511 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 263, + 501, + 273, + 510 + ], + "score": 0.63, + "content": "s _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 498, + 388, + 511 + ], + "score": 1.0, + "content": "is an increasing function of", + "type": "text" + }, + { + "bbox": [ + 388, + 501, + 394, + 510 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 498, + 506, + 511 + ], + "score": 1.0, + "content": ", which means the denser a", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "graph is, the more quickly graph convolution operations mix signals on nodes and move them close", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 521, + 162, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 162, + 532 + ], + "score": 1.0, + "content": "to each other.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Theorem 3 implies that graph NNs perform poorly on dense NNs. More aggressively, we can hy-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "pothesize that the sparsity of practically available graphs is one of the reasons for the success of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "graph NNs in node classification tasks. To confirm this hypothesis, we artificially add edges to ci-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 569, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 585 + ], + "score": 1.0, + "content": "tation networks to make them dense in the experiments and observe the failure of graph NNs as", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 582, + 216, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 216, + 595 + ], + "score": 1.0, + "content": "expected (see Section 6.3).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "title", + "bbox": [ + 108, + 610, + 194, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 196, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 196, + 624 + ], + "score": 1.0, + "content": "6 EXPERIMENT", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 635, + 313, + 647 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 315, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 315, + 648 + ], + "score": 1.0, + "content": "6.1 SYNTHESIS DATA: ONE-STEP TRANSITION", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 293, + 669 + ], + "score": 1.0, + "content": "We numerically investigate how the transition", + "type": "text" + }, + { + "bbox": [ + 293, + 656, + 375, + 668 + ], + "score": 0.92, + "content": "f ( X ) : = \\sigma ( P X W )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "changes inputs using the vector", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 127, + 680 + ], + "score": 1.0, + "content": "field", + "type": "text" + }, + { + "bbox": [ + 127, + 667, + 219, + 680 + ], + "score": 0.93, + "content": "V ( X ) : = { f ( X ) } - { X ^ { 4 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 667, + 326, + 680 + ], + "score": 1.0, + "content": ". For this purpose, we set", + "type": "text" + }, + { + "bbox": [ + 326, + 668, + 357, + 677 + ], + "score": 0.85, + "content": "N = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 667, + 361, + 680 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 361, + 668, + 393, + 678 + ], + "score": 0.87, + "content": "M = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 667, + 415, + 680 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 415, + 668, + 444, + 678 + ], + "score": 0.9, + "content": "C = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 667, + 466, + 680 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 467, + 667, + 504, + 679 + ], + "score": 0.92, + "content": "\\lambda _ { 1 } \\leq \\lambda _ { 2 }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 194, + 691 + ], + "score": 1.0, + "content": "be the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 194, + 680, + 203, + 688 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 678, + 255, + 691 + ], + "score": 1.0, + "content": ". We choose", + "type": "text" + }, + { + "bbox": [ + 255, + 679, + 267, + 689 + ], + "score": 0.73, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 678, + 280, + 691 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 280, + 678, + 374, + 690 + ], + "score": 0.9, + "content": "| \\lambda _ { 2 } | ^ { - 1 } \\le W < | \\lambda _ { 1 } | ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "so that Theorem 1 is applicable", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 688, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 688, + 471, + 702 + ], + "score": 1.0, + "content": "but is not reduced to the trivial situation (see, Appendix E.2). We choose the eigenvector", + "type": "text" + }, + { + "bbox": [ + 472, + 689, + 504, + 700 + ], + "score": 0.92, + "content": "\\bar { \\boldsymbol { e } } \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 35.5 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 710, + 454, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 376, + 722 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 376, + 722 + ], + "score": 1.0, + "content": "3Chung et al. (2004) and Coja-Oghlan (2007) proved similar theorems.", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 720, + 455, + 733 + ], + "spans": [ + { + "bbox": [ + 119, + 720, + 371, + 733 + ], + "score": 1.0, + "content": "4Since we consider the one-step transition only, we omit the subscript", + "type": "text" + }, + { + "bbox": [ + 371, + 722, + 375, + 730 + ], + "score": 0.68, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 720, + 396, + 733 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 396, + 721, + 419, + 732 + ], + "score": 0.76, + "content": "f _ { l } , X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 720, + 438, + 733 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 438, + 721, + 451, + 731 + ], + "score": 0.86, + "content": "W _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 720, + 455, + 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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 310, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 150, + 88, + 448, + 207 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 150, + 88, + 448, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 150, + 88, + 448, + 207 + ], + "spans": [ + { + "bbox": [ + 150, + 88, + 448, + 207 + ], + "score": 0.966, + "type": "image", + "image_path": "52ed0a06decf73aeea33aba4d223d5646b9ee3b007a61062524feaa9a9984ba1.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 150, + 88, + 448, + 127.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 150, + 127.66666666666666, + 448, + 167.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 150, + 167.33333333333331, + 448, + 206.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 225, + 505, + 259 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 224, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 257, + 238 + ], + "score": 1.0, + "content": "Figure 1: Visualization of vector field", + "type": "text" + }, + { + "bbox": [ + 257, + 225, + 340, + 237 + ], + "score": 0.93, + "content": "V ( X ) : = f ( X ) - X", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 224, + 505, + 238 + ], + "score": 1.0, + "content": "induced by the one-step transition. Color", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 236, + 504, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 242, + 249 + ], + "score": 1.0, + "content": "maps indicate the absolute value", + "type": "text" + }, + { + "bbox": [ + 242, + 237, + 273, + 249 + ], + "score": 0.93, + "content": "| V ( X ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 236, + 324, + 249 + ], + "score": 1.0, + "content": "at the point", + "type": "text" + }, + { + "bbox": [ + 325, + 237, + 335, + 246 + ], + "score": 0.79, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 236, + 464, + 249 + ], + "score": 1.0, + "content": ". Dotted lines are the subspace", + "type": "text" + }, + { + "bbox": [ + 464, + 237, + 477, + 247 + ], + "score": 0.7, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 236, + 504, + 249 + ], + "score": 1.0, + "content": ". Left:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 107, + 248, + 278, + 259 + ], + "spans": [ + { + "bbox": [ + 107, + 248, + 278, + 259 + ], + "score": 1.0, + "content": "Case 1. Right: Case 2. Best view in color.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 278, + 505, + 359 + ], + "lines": [ + { + "bbox": [ + 104, + 277, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 104, + 277, + 221, + 295 + ], + "score": 1.0, + "content": "For an Erdos – R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 221, + 281, + 243, + 293 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 277, + 432, + 295 + ], + "score": 1.0, + "content": ", Chung & Radcliffe (2011) showed that when", + "type": "text" + }, + { + "bbox": [ + 433, + 279, + 486, + 294 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 277, + 506, + 295 + ], + "score": 1.0, + "content": ", the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 505, + 305 + ], + "score": 1.0, + "content": "eigenvalues of the (usual) normalized Laplacian except for the smallest one converge to 1 with high", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 104, + 303, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 104, + 303, + 505, + 317 + ], + "score": 1.0, + "content": "probability (see Theorem 2 therein)3. We can interpret this theorem as the convergence of Erdos- ˝", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 315, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 505, + 326 + ], + "score": 1.0, + "content": "Renyi graphs to the complete graph in terms of graph spectra. We can prove that the augmented ´", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 505, + 338 + ], + "score": 1.0, + "content": "normalized Laplacian behaves similarly (Lemma 6). By combining this fact with the discussion in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 337, + 505, + 349 + ], + "score": 1.0, + "content": "the previous paragraph, we obtain the asymptotic behavior of GCNs on the Erdos – R ˝ enyi graph. ´", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 347, + 270, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 270, + 360 + ], + "score": 1.0, + "content": "See Appendix D for the complete proof.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 277, + 506, + 360 + ] + }, + { + "type": "list", + "bbox": [ + 107, + 362, + 505, + 418 + ], + "lines": [ + { + "bbox": [ + 106, + 360, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 334, + 380 + ], + "score": 1.0, + "content": "Theorem 3. Consider a GCN on the Erdos-R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 334, + 365, + 357, + 377 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 360, + 397, + 380 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 397, + 362, + 450, + 379 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 360, + 505, + 380 + ], + "score": 1.0, + "content": "as a function", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 376, + 506, + 389 + ], + "spans": [ + { + "bbox": [ + 105, + 376, + 117, + 389 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 377, + 128, + 387 + ], + "score": 0.68, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 376, + 169, + 389 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + }, + { + "bbox": [ + 169, + 378, + 196, + 388 + ], + "score": 0.86, + "content": "\\varepsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 376, + 506, + 389 + ], + "score": 1.0, + "content": ", if the supremum s of the maximum singular values of weights in the GCN", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 388, + 506, + 407 + ], + "spans": [ + { + "bbox": [ + 105, + 390, + 205, + 406 + ], + "score": 1.0, + "content": "satisfies s < s0 := 17 q", + "type": "text" + }, + { + "bbox": [ + 141, + 388, + 241, + 407 + ], + "score": 0.93, + "content": "\\begin{array} { r } { s < s _ { 0 } : = \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 391, + 352, + 405 + ], + "score": 1.0, + "content": "then, for sufficiently large", + "type": "text" + }, + { + "bbox": [ + 352, + 392, + 362, + 402 + ], + "score": 0.63, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 391, + 506, + 405 + ], + "score": 1.0, + "content": ", the GCN satisfies the condition of", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 241, + 396, + 246, + 408 + ], + "spans": [ + { + "bbox": [ + 241, + 396, + 246, + 408 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 405, + 276, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 249, + 420 + ], + "score": 1.0, + "content": "Theorem 2 with probability at least", + "type": "text" + }, + { + "bbox": [ + 249, + 407, + 272, + 417 + ], + "score": 0.87, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 405, + 276, + 420 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 15, + "bbox_fs": [ + 105, + 360, + 506, + 420 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 427, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "spans": [ + { + "bbox": [ + 105, + 427, + 505, + 440 + ], + "score": 1.0, + "content": "Theorem 3 requires that an underlying graph is not extremely sparse. For example, suppose the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 437, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 155, + 451 + ], + "score": 1.0, + "content": "node size is", + "type": "text" + }, + { + "bbox": [ + 156, + 438, + 208, + 449 + ], + "score": 0.77, + "content": "N = 2 0 , 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 437, + 505, + 451 + ], + "score": 1.0, + "content": ", which is the approximately the maximum node size of datasets we use in", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 449, + 504, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 449, + 268, + 461 + ], + "score": 1.0, + "content": "experiments, and the edge probability is", + "type": "text" + }, + { + "bbox": [ + 269, + 449, + 325, + 461 + ], + "score": 0.93, + "content": "p = \\log N / N", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 449, + 462, + 461 + ], + "score": 1.0, + "content": ". Then, each node has the order of", + "type": "text" + }, + { + "bbox": [ + 462, + 450, + 504, + 461 + ], + "score": 0.91, + "content": "N p \\approx 4 . 3", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 461, + 171, + 472 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 171, + 472 + ], + "score": 1.0, + "content": "adjacent nodes.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 427, + 505, + 472 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 532 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 504, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 315, + 489 + ], + "score": 1.0, + "content": "Under the condition of Theorem 3, the upper bound", + "type": "text" + }, + { + "bbox": [ + 315, + 479, + 351, + 488 + ], + "score": 0.89, + "content": "s _ { 0 } \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 477, + 362, + 489 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 363, + 478, + 398, + 487 + ], + "score": 0.91, + "content": "N \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 477, + 504, + 489 + ], + "score": 1.0, + "content": ". It means that if the graph", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 505, + 500 + ], + "score": 1.0, + "content": "is sufficiently large and not extremely sparse, most GCNs suffer from the information loss. For the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 252, + 511 + ], + "score": 1.0, + "content": "dependence on the edge probability", + "type": "text" + }, + { + "bbox": [ + 253, + 501, + 259, + 511 + ], + "score": 0.4, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 498, + 263, + 511 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 263, + 501, + 273, + 510 + ], + "score": 0.63, + "content": "s _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 498, + 388, + 511 + ], + "score": 1.0, + "content": "is an increasing function of", + "type": "text" + }, + { + "bbox": [ + 388, + 501, + 394, + 510 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 498, + 506, + 511 + ], + "score": 1.0, + "content": ", which means the denser a", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "graph is, the more quickly graph convolution operations mix signals on nodes and move them close", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 521, + 162, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 162, + 532 + ], + "score": 1.0, + "content": "to each other.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 477, + 506, + 532 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Theorem 3 implies that graph NNs perform poorly on dense NNs. More aggressively, we can hy-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 561 + ], + "score": 1.0, + "content": "pothesize that the sparsity of practically available graphs is one of the reasons for the success of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 573 + ], + "score": 1.0, + "content": "graph NNs in node classification tasks. To confirm this hypothesis, we artificially add edges to ci-", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 569, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 585 + ], + "score": 1.0, + "content": "tation networks to make them dense in the experiments and observe the failure of graph NNs as", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 582, + 216, + 595 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 216, + 595 + ], + "score": 1.0, + "content": "expected (see Section 6.3).", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 537, + 506, + 595 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 610, + 194, + 622 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 196, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 196, + 624 + ], + "score": 1.0, + "content": "6 EXPERIMENT", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 635, + 313, + 647 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 315, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 315, + 648 + ], + "score": 1.0, + "content": "6.1 SYNTHESIS DATA: ONE-STEP TRANSITION", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 293, + 669 + ], + "score": 1.0, + "content": "We numerically investigate how the transition", + "type": "text" + }, + { + "bbox": [ + 293, + 656, + 375, + 668 + ], + "score": 0.92, + "content": "f ( X ) : = \\sigma ( P X W )", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 655, + 506, + 669 + ], + "score": 1.0, + "content": "changes inputs using the vector", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 667, + 504, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 127, + 680 + ], + "score": 1.0, + "content": "field", + "type": "text" + }, + { + "bbox": [ + 127, + 667, + 219, + 680 + ], + "score": 0.93, + "content": "V ( X ) : = { f ( X ) } - { X ^ { 4 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 667, + 326, + 680 + ], + "score": 1.0, + "content": ". For this purpose, we set", + "type": "text" + }, + { + "bbox": [ + 326, + 668, + 357, + 677 + ], + "score": 0.85, + "content": "N = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 667, + 361, + 680 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 361, + 668, + 393, + 678 + ], + "score": 0.87, + "content": "M = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 667, + 415, + 680 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 415, + 668, + 444, + 678 + ], + "score": 0.9, + "content": "C = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 667, + 466, + 680 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 467, + 667, + 504, + 679 + ], + "score": 0.92, + "content": "\\lambda _ { 1 } \\leq \\lambda _ { 2 }", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 194, + 691 + ], + "score": 1.0, + "content": "be the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 194, + 680, + 203, + 688 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 678, + 255, + 691 + ], + "score": 1.0, + "content": ". We choose", + "type": "text" + }, + { + "bbox": [ + 255, + 679, + 267, + 689 + ], + "score": 0.73, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 678, + 280, + 691 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 280, + 678, + 374, + 690 + ], + "score": 0.9, + "content": "| \\lambda _ { 2 } | ^ { - 1 } \\le W < | \\lambda _ { 1 } | ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "so that Theorem 1 is applicable", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 688, + 504, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 688, + 471, + 702 + ], + "score": 1.0, + "content": "but is not reduced to the trivial situation (see, Appendix E.2). We choose the eigenvector", + "type": "text" + }, + { + "bbox": [ + 472, + 689, + 504, + 700 + ], + "score": 0.92, + "content": "\\bar { \\boldsymbol { e } } \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 170, + 477 + ], + "score": 1.0, + "content": "associated with", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 170, + 465, + 181, + 476 + ], + "score": 0.87, + "content": "\\lambda _ { 2 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 182, + 464, + 492, + 477 + ], + "score": 1.0, + "content": "in two ways as described below. See Appendix H.1 for the concrete values of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 492, + 465, + 501, + 475 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 501, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ",", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 476, + 504, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 112, + 486 + ], + "score": 0.61, + "content": "e", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 113, + 476, + 133, + 488 + ], + "score": 1.0, + "content": ", and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 134, + 476, + 146, + 486 + ], + "score": 0.72, + "content": "W", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 146, + 476, + 296, + 488 + ], + "score": 1.0, + "content": ". Figure 1 shows the visualization of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 296, + 476, + 305, + 486 + ], + "score": 0.63, + "content": "V", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 306, + 476, + 498, + 488 + ], + "score": 1.0, + "content": ". First, we choose the non-negative eigenvector", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 498, + 478, + 504, + 486 + ], + "score": 0.67, + "content": "e", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 413, + 500 + ], + "score": 1.0, + "content": "so that it satisfies Assumption 1 (Case 1). We see that the transition function", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 414, + 487, + 421, + 498 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 421, + 485, + 506, + 500 + ], + "score": 1.0, + "content": "uniformly decreases", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 497, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 181, + 511 + ], + "score": 1.0, + "content": "the distance from", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 182, + 498, + 195, + 508 + ], + "score": 0.8, + "content": "\\mathcal { M }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 195, + 497, + 505, + 511 + ], + "score": 1.0, + "content": ". This is consistent with the consequence of Theorem 1. Next, we choose", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 508, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 172, + 525 + ], + "score": 1.0, + "content": "the eigenvector", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 172, + 508, + 236, + 523 + ], + "score": 0.93, + "content": "\\boldsymbol { e } = \\left[ e _ { 1 } \\quad e _ { 2 } \\right] ^ { \\intercal }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 236, + 510, + 331, + 525 + ], + "score": 1.0, + "content": "such that the signs of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 331, + 513, + 342, + 522 + ], + "score": 0.84, + "content": "e _ { 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 342, + 510, + 362, + 525 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 362, + 512, + 373, + 522 + ], + "score": 0.84, + "content": "e _ { 2 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 374, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "differ (Case 2), which violates", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 225, + 534 + ], + "score": 1.0, + "content": "Assumption 1. We see that", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 225, + 523, + 238, + 532 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 239, + 522, + 332, + 534 + ], + "score": 1.0, + "content": "is not invariant under", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 333, + 523, + 340, + 534 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 340, + 522, + 360, + 534 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 360, + 523, + 368, + 533 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 368, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "does not uniformly decrease the", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 532, + 494, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 163, + 545 + ], + "score": 1.0, + "content": "distance from", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 164, + 533, + 177, + 543 + ], + "score": 0.79, + "content": "\\mathcal { M }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 177, + 532, + 494, + 545 + ], + "score": 1.0, + "content": ". Therefore, we cannot remove the non-negativity assumption from Theorem 1.", + "type": "text", + "cross_page": true + } + ], + "index": 19 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 655, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 151, + 85, + 459, + 207 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 151, + 85, + 459, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 85, + 459, + 207 + ], + "spans": [ + { + "bbox": [ + 151, + 85, + 459, + 207 + ], + "score": 0.97, + "type": "image", + "image_path": "2aeca4d04f65609a1fa1584f41938b2120f8df09b7dfae3a4549ab38b22e533d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 151, + 85, + 459, + 125.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 151, + 125.66666666666666, + 459, + 166.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 151, + 166.33333333333331, + 459, + 206.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 225, + 505, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 317, + 237 + ], + "score": 1.0, + "content": "Figure 2: The actual distances to the invariant space", + "type": "text" + }, + { + "bbox": [ + 318, + 226, + 331, + 235 + ], + "score": 0.79, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "and their upper bounds. Solid lines are the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 236, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 232, + 251 + ], + "score": 1.0, + "content": "log relative distance defined by", + "type": "text" + }, + { + "bbox": [ + 232, + 236, + 372, + 250 + ], + "score": 0.91, + "content": "y ( l ) = \\log ( d _ { \\mathcal { M } } ( \\mathbf { \\bar { { X } } } ^ { ( l ) } ) / d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 236, + 506, + 251 + ], + "score": 1.0, + "content": "and dotted lines are upper bound", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 248, + 456, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 173, + 262 + ], + "score": 0.92, + "content": "y ( l ) = l \\log ( s \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 248, + 203, + 264 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 204, + 249, + 224, + 260 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 248, + 316, + 264 + ], + "score": 1.0, + "content": "is the input signal and", + "type": "text" + }, + { + "bbox": [ + 316, + 249, + 335, + 260 + ], + "score": 0.89, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 248, + 414, + 264 + ], + "score": 1.0, + "content": "is the output of the", + "type": "text" + }, + { + "bbox": [ + 414, + 250, + 418, + 260 + ], + "score": 0.44, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 248, + 456, + 264 + ], + "score": 1.0, + "content": "-th layer.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 276, + 497, + 385 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 276, + 497, + 385 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 276, + 497, + 385 + ], + "spans": [ + { + "bbox": [ + 109, + 276, + 497, + 385 + ], + "score": 0.963, + "type": "image", + "image_path": "8900fa8d6997b22156aeea03d2008a13643ccde54ceb13a5e4d7e973496948c4.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 276, + 497, + 312.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 312.3333333333333, + 497, + 348.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 348.66666666666663, + 497, + 384.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 399, + 505, + 444 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "Figure 3: Node prediction results on Noisy Cora. Left: Effect of the maximum singular values on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 448, + 423 + ], + "score": 1.0, + "content": "weights on model performance. The horizontal dotted line indicates the chance rate", + "type": "text" + }, + { + "bbox": [ + 448, + 411, + 481, + 422 + ], + "score": 0.88, + "content": "( 3 0 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 411, + 505, + 423 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "error bar is the standard deviation of 3 trials. Right: Transition of maximum singular values during", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 433, + 419, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 419, + 444 + ], + "score": 1.0, + "content": "training. See Appendix I.3 for results using other datasets. Best view in color.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + } + ], + "index": 8.75 + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 505, + 544 + ], + "lines": [ + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 170, + 477 + ], + "score": 1.0, + "content": "associated with", + "type": "text" + }, + { + "bbox": [ + 170, + 465, + 181, + 476 + ], + "score": 0.87, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 464, + 492, + 477 + ], + "score": 1.0, + "content": "in two ways as described below. See Appendix H.1 for the concrete values of", + "type": "text" + }, + { + "bbox": [ + 492, + 465, + 501, + 475 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 464, + 505, + 477 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 476, + 504, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 112, + 486 + ], + "score": 0.61, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 476, + 133, + 488 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 134, + 476, + 146, + 486 + ], + "score": 0.72, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 476, + 296, + 488 + ], + "score": 1.0, + "content": ". Figure 1 shows the visualization of", + "type": "text" + }, + { + "bbox": [ + 296, + 476, + 305, + 486 + ], + "score": 0.63, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 476, + 498, + 488 + ], + "score": 1.0, + "content": ". First, we choose the non-negative eigenvector", + "type": "text" + }, + { + "bbox": [ + 498, + 478, + 504, + 486 + ], + "score": 0.67, + "content": "e", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 413, + 500 + ], + "score": 1.0, + "content": "so that it satisfies Assumption 1 (Case 1). We see that the transition function", + "type": "text" + }, + { + "bbox": [ + 414, + 487, + 421, + 498 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 485, + 506, + 500 + ], + "score": 1.0, + "content": "uniformly decreases", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 497, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 181, + 511 + ], + "score": 1.0, + "content": "the distance from", + "type": "text" + }, + { + "bbox": [ + 182, + 498, + 195, + 508 + ], + "score": 0.8, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 497, + 505, + 511 + ], + "score": 1.0, + "content": ". This is consistent with the consequence of Theorem 1. Next, we choose", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 508, + 506, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 172, + 525 + ], + "score": 1.0, + "content": "the eigenvector", + "type": "text" + }, + { + "bbox": [ + 172, + 508, + 236, + 523 + ], + "score": 0.93, + "content": "\\boldsymbol { e } = \\left[ e _ { 1 } \\quad e _ { 2 } \\right] ^ { \\intercal }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 510, + 331, + 525 + ], + "score": 1.0, + "content": "such that the signs of", + "type": "text" + }, + { + "bbox": [ + 331, + 513, + 342, + 522 + ], + "score": 0.84, + "content": "e _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 510, + 362, + 525 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 362, + 512, + 373, + 522 + ], + "score": 0.84, + "content": "e _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 510, + 506, + 525 + ], + "score": 1.0, + "content": "differ (Case 2), which violates", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 106, + 522, + 225, + 534 + ], + "score": 1.0, + "content": "Assumption 1. We see that", + "type": "text" + }, + { + "bbox": [ + 225, + 523, + 238, + 532 + ], + "score": 0.81, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 522, + 332, + 534 + ], + "score": 1.0, + "content": "is not invariant under", + "type": "text" + }, + { + "bbox": [ + 333, + 523, + 340, + 534 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 522, + 360, + 534 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 360, + 523, + 368, + 533 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "does not uniformly decrease the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 532, + 494, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 163, + 545 + ], + "score": 1.0, + "content": "distance from", + "type": "text" + }, + { + "bbox": [ + 164, + 533, + 177, + 543 + ], + "score": 0.79, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 532, + 494, + 545 + ], + "score": 1.0, + "content": ". Therefore, we cannot remove the non-negativity assumption from Theorem 1.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 16 + }, + { + "type": "title", + "bbox": [ + 105, + 557, + 352, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 352, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 352, + 570 + ], + "score": 1.0, + "content": "6.2 SYNTHESIS DATA: DISTANCE TO INVARIANT SPACE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 297, + 591 + ], + "score": 1.0, + "content": "We evaluate the distance to the invariant space", + "type": "text" + }, + { + "bbox": [ + 297, + 579, + 311, + 589 + ], + "score": 0.78, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "using synthesis data. We randomly generate an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 589, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 321, + 603 + ], + "score": 1.0, + "content": "Erdos – R ˝ enyi graph, a GCN on it, and an input signal ´", + "type": "text" + }, + { + "bbox": [ + 321, + 590, + 341, + 601 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 589, + 496, + 603 + ], + "score": 1.0, + "content": ". We compute the distance between the", + "type": "text" + }, + { + "bbox": [ + 496, + 591, + 500, + 600 + ], + "score": 0.64, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 589, + 505, + 603 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 197, + 615 + ], + "score": 1.0, + "content": "th intermediate output", + "type": "text" + }, + { + "bbox": [ + 197, + 601, + 216, + 612 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 601, + 311, + 615 + ], + "score": 1.0, + "content": "and the invariant space", + "type": "text" + }, + { + "bbox": [ + 311, + 603, + 324, + 613 + ], + "score": 0.76, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 601, + 438, + 615 + ], + "score": 1.0, + "content": "for various edge probability", + "type": "text" + }, + { + "bbox": [ + 438, + 604, + 444, + 614 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "and maximum", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 102, + 610, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 102, + 610, + 487, + 635 + ], + "score": 1.0, + "content": "singular value s. Figure 2 plots the logarithm of the relative distance y(l) = log dM(X(l))dM(X(0))", + "type": "text" + }, + { + "bbox": [ + 483, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 208, + 644 + ], + "score": 1.0, + "content": "respect to the layer index", + "type": "text" + }, + { + "bbox": [ + 208, + 631, + 213, + 641 + ], + "score": 0.31, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 631, + 435, + 644 + ], + "score": 1.0, + "content": ". From Theorem 1, we know that it is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 435, + 632, + 501, + 643 + ], + "score": 0.9, + "content": "y ( l ) = l \\log ( s \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 631, + 505, + 644 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 362, + 654 + ], + "score": 1.0, + "content": "We see that this bound well approximates the actual value when", + "type": "text" + }, + { + "bbox": [ + 363, + 643, + 375, + 652 + ], + "score": 0.85, + "content": "s \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "is small. On the other hand, it is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 653, + 448, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 166, + 665 + ], + "score": 1.0, + "content": "loose for large", + "type": "text" + }, + { + "bbox": [ + 167, + 654, + 178, + 663 + ], + "score": 0.76, + "content": "s \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 653, + 295, + 665 + ], + "score": 1.0, + "content": ". We leave tighter bounds for", + "type": "text" + }, + { + "bbox": [ + 295, + 654, + 311, + 664 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 653, + 448, + 665 + ], + "score": 1.0, + "content": "in such a case for future research.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 451, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 453, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 453, + 691 + ], + "score": 1.0, + "content": "6.3 REAL DATA: EFFECT OF MAXIMUM SINGULAR VALUES ON PERFORMANCE", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 208, + 711 + ], + "score": 1.0, + "content": "Theorem 2 implies that if", + "type": "text" + }, + { + "bbox": [ + 208, + 701, + 214, + 709 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 698, + 327, + 711 + ], + "score": 1.0, + "content": "is smaller than the threshold", + "type": "text" + }, + { + "bbox": [ + 328, + 699, + 345, + 709 + ], + "score": 0.89, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ", we cannot expect deep GCN to achieve", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 427, + 722 + ], + "score": 1.0, + "content": "good prediction accuracy. Conversely, if we can successfully train the model,", + "type": "text" + }, + { + "bbox": [ + 428, + 712, + 434, + 720 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "should avoid the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 720, + 419, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 134, + 734 + ], + "score": 1.0, + "content": "region", + "type": "text" + }, + { + "bbox": [ + 135, + 720, + 169, + 731 + ], + "score": 0.92, + "content": "s \\leq \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 720, + 419, + 734 + ], + "score": 1.0, + "content": ". We empirically confirm these hypotheses using real datasets.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + } + ], + "page_idx": 6, + "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 2020", + "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": "image", + "bbox": [ + 151, + 85, + 459, + 207 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 151, + 85, + 459, + 207 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 151, + 85, + 459, + 207 + ], + "spans": [ + { + "bbox": [ + 151, + 85, + 459, + 207 + ], + "score": 0.97, + "type": "image", + "image_path": "2aeca4d04f65609a1fa1584f41938b2120f8df09b7dfae3a4549ab38b22e533d.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 151, + 85, + 459, + 125.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 151, + 125.66666666666666, + 459, + 166.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 151, + 166.33333333333331, + 459, + 206.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 225, + 505, + 262 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 225, + 505, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 225, + 317, + 237 + ], + "score": 1.0, + "content": "Figure 2: The actual distances to the invariant space", + "type": "text" + }, + { + "bbox": [ + 318, + 226, + 331, + 235 + ], + "score": 0.79, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 225, + 505, + 237 + ], + "score": 1.0, + "content": "and their upper bounds. Solid lines are the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 236, + 506, + 251 + ], + "spans": [ + { + "bbox": [ + 104, + 236, + 232, + 251 + ], + "score": 1.0, + "content": "log relative distance defined by", + "type": "text" + }, + { + "bbox": [ + 232, + 236, + 372, + 250 + ], + "score": 0.91, + "content": "y ( l ) = \\log ( d _ { \\mathcal { M } } ( \\mathbf { \\bar { { X } } } ^ { ( l ) } ) / d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 236, + 506, + 251 + ], + "score": 1.0, + "content": "and dotted lines are upper bound", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 248, + 456, + 264 + ], + "spans": [ + { + "bbox": [ + 106, + 249, + 173, + 262 + ], + "score": 0.92, + "content": "y ( l ) = l \\log ( s \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 248, + 203, + 264 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 204, + 249, + 224, + 260 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 248, + 316, + 264 + ], + "score": 1.0, + "content": "is the input signal and", + "type": "text" + }, + { + "bbox": [ + 316, + 249, + 335, + 260 + ], + "score": 0.89, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 248, + 414, + 264 + ], + "score": 1.0, + "content": "is the output of the", + "type": "text" + }, + { + "bbox": [ + 414, + 250, + 418, + 260 + ], + "score": 0.44, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 248, + 456, + 264 + ], + "score": 1.0, + "content": "-th layer.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "image", + "bbox": [ + 109, + 276, + 497, + 385 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 276, + 497, + 385 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 109, + 276, + 497, + 385 + ], + "spans": [ + { + "bbox": [ + 109, + 276, + 497, + 385 + ], + "score": 0.963, + "type": "image", + "image_path": "8900fa8d6997b22156aeea03d2008a13643ccde54ceb13a5e4d7e973496948c4.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 109, + 276, + 497, + 312.3333333333333 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 109, + 312.3333333333333, + 497, + 348.66666666666663 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 109, + 348.66666666666663, + 497, + 384.99999999999994 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 399, + 505, + 444 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 412 + ], + "score": 1.0, + "content": "Figure 3: Node prediction results on Noisy Cora. Left: Effect of the maximum singular values on", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 448, + 423 + ], + "score": 1.0, + "content": "weights on model performance. The horizontal dotted line indicates the chance rate", + "type": "text" + }, + { + "bbox": [ + 448, + 411, + 481, + 422 + ], + "score": 0.88, + "content": "( 3 0 . 2 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 411, + 505, + 423 + ], + "score": 1.0, + "content": ". The", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 505, + 435 + ], + "score": 1.0, + "content": "error bar is the standard deviation of 3 trials. Right: Transition of maximum singular values during", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 433, + 419, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 419, + 444 + ], + "score": 1.0, + "content": "training. See Appendix I.3 for results using other datasets. Best view in color.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10.5 + } + ], + "index": 8.75 + }, + { + "type": "text", + "bbox": [ + 106, + 464, + 505, + 544 + ], + "lines": [], + "index": 16, + "bbox_fs": [ + 105, + 464, + 506, + 545 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 105, + 557, + 352, + 569 + ], + "lines": [ + { + "bbox": [ + 106, + 557, + 352, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 352, + 570 + ], + "score": 1.0, + "content": "6.2 SYNTHESIS DATA: DISTANCE TO INVARIANT SPACE", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 505, + 665 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 297, + 591 + ], + "score": 1.0, + "content": "We evaluate the distance to the invariant space", + "type": "text" + }, + { + "bbox": [ + 297, + 579, + 311, + 589 + ], + "score": 0.78, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "using synthesis data. We randomly generate an", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 589, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 321, + 603 + ], + "score": 1.0, + "content": "Erdos – R ˝ enyi graph, a GCN on it, and an input signal ´", + "type": "text" + }, + { + "bbox": [ + 321, + 590, + 341, + 601 + ], + "score": 0.91, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 589, + 496, + 603 + ], + "score": 1.0, + "content": ". We compute the distance between the", + "type": "text" + }, + { + "bbox": [ + 496, + 591, + 500, + 600 + ], + "score": 0.64, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 589, + 505, + 603 + ], + "score": 1.0, + "content": "-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 197, + 615 + ], + "score": 1.0, + "content": "th intermediate output", + "type": "text" + }, + { + "bbox": [ + 197, + 601, + 216, + 612 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 601, + 311, + 615 + ], + "score": 1.0, + "content": "and the invariant space", + "type": "text" + }, + { + "bbox": [ + 311, + 603, + 324, + 613 + ], + "score": 0.76, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 601, + 438, + 615 + ], + "score": 1.0, + "content": "for various edge probability", + "type": "text" + }, + { + "bbox": [ + 438, + 604, + 444, + 614 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "and maximum", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 102, + 610, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 102, + 610, + 487, + 635 + ], + "score": 1.0, + "content": "singular value s. Figure 2 plots the logarithm of the relative distance y(l) = log dM(X(l))dM(X(0))", + "type": "text" + }, + { + "bbox": [ + 483, + 616, + 506, + 630 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 208, + 644 + ], + "score": 1.0, + "content": "respect to the layer index", + "type": "text" + }, + { + "bbox": [ + 208, + 631, + 213, + 641 + ], + "score": 0.31, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 631, + 435, + 644 + ], + "score": 1.0, + "content": ". From Theorem 1, we know that it is upper bounded by", + "type": "text" + }, + { + "bbox": [ + 435, + 632, + 501, + 643 + ], + "score": 0.9, + "content": "y ( l ) = l \\log ( s \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 631, + 505, + 644 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 362, + 654 + ], + "score": 1.0, + "content": "We see that this bound well approximates the actual value when", + "type": "text" + }, + { + "bbox": [ + 363, + 643, + 375, + 652 + ], + "score": 0.85, + "content": "s \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 641, + 505, + 654 + ], + "score": 1.0, + "content": "is small. On the other hand, it is", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 653, + 448, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 166, + 665 + ], + "score": 1.0, + "content": "loose for large", + "type": "text" + }, + { + "bbox": [ + 167, + 654, + 178, + 663 + ], + "score": 0.76, + "content": "s \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 653, + 295, + 665 + ], + "score": 1.0, + "content": ". We leave tighter bounds for", + "type": "text" + }, + { + "bbox": [ + 295, + 654, + 311, + 664 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 653, + 448, + 665 + ], + "score": 1.0, + "content": "in such a case for future research.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 24, + "bbox_fs": [ + 102, + 578, + 506, + 665 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 678, + 451, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 677, + 453, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 453, + 691 + ], + "score": 1.0, + "content": "6.3 REAL DATA: EFFECT OF MAXIMUM SINGULAR VALUES ON PERFORMANCE", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 208, + 711 + ], + "score": 1.0, + "content": "Theorem 2 implies that if", + "type": "text" + }, + { + "bbox": [ + 208, + 701, + 214, + 709 + ], + "score": 0.77, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 698, + 327, + 711 + ], + "score": 1.0, + "content": "is smaller than the threshold", + "type": "text" + }, + { + "bbox": [ + 328, + 699, + 345, + 709 + ], + "score": 0.89, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 698, + 505, + 711 + ], + "score": 1.0, + "content": ", we cannot expect deep GCN to achieve", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 427, + 722 + ], + "score": 1.0, + "content": "good prediction accuracy. Conversely, if we can successfully train the model,", + "type": "text" + }, + { + "bbox": [ + 428, + 712, + 434, + 720 + ], + "score": 0.69, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "should avoid the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 720, + 419, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 134, + 734 + ], + "score": 1.0, + "content": "region", + "type": "text" + }, + { + "bbox": [ + 135, + 720, + 169, + 731 + ], + "score": 0.92, + "content": "s \\leq \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 720, + 419, + 734 + ], + "score": 1.0, + "content": ". We empirically confirm these hypotheses using real datasets.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 698, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "We use Cora, CiteSeer, and PubMed (Sen et al., 2008), which are standard citation network datasets.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "The task is to classify the genre of papers using word occurrences and citation relationships. We", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "regard each paper as a node and citation relationship as an edge. Due to space constraints, we focus", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "on Cora in the main article. See Appendix H.3 and I.3 for the other datasets. The discussion in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "Section 5 implies that Theorem 2 can support a wide range of GCNs when the underlying graph", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "is relatively dense. However, the citation networks are too sparse to examine the aforementioned", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 354, + 160 + ], + "score": 1.0, + "content": "hypotheses — Theorem 2 gives a non-trivial result only when", + "type": "text" + }, + { + "bbox": [ + 354, + 147, + 488, + 159 + ], + "score": 0.91, + "content": "\\stackrel { \\cdot } { 1 } \\leq s < \\lambda ^ { - 1 } \\approx 1 + 3 . 6 2 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 148, + 505, + 160 + ], + "score": 1.0, + "content": ". To", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "circumvent this, we make noisy versions of citation networks by randomly adding edges to graphs.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 385, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 333, + 182 + ], + "score": 1.0, + "content": "Through this manipulation, we can increase the value of", + "type": "text" + }, + { + "bbox": [ + 333, + 170, + 350, + 180 + ], + "score": 0.9, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 170, + 385, + 182 + ], + "score": 1.0, + "content": "to 1.11.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "Figure 3 (left) shows the accuracy for the test dataset in terms of the maximum singular values", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "and the number of graph convolution layers. We can observe that when GCNs whose maximum", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 167, + 222 + ], + "score": 1.0, + "content": "singular value", + "type": "text" + }, + { + "bbox": [ + 168, + 212, + 174, + 219 + ], + "score": 0.62, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 208, + 260, + 222 + ], + "score": 1.0, + "content": "is out of the region", + "type": "text" + }, + { + "bbox": [ + 261, + 208, + 301, + 219 + ], + "score": 0.91, + "content": "s \\ < \\ \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "outperform those inside the region in almost all", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 347, + 233 + ], + "score": 1.0, + "content": "configurations. Furthermore, the accuracy of GCNs with", + "type": "text" + }, + { + "bbox": [ + 347, + 220, + 381, + 230 + ], + "score": 0.9, + "content": "s ~ = ~ 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 219, + 505, + 233 + ], + "score": 1.0, + "content": "are better than those without", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "normalization (unnormalized). Figure 3 (right) shows the transition of the maximum singular values", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "of the weights during training when we use a three-layered GCN. We can observe that the maximum", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 164, + 266 + ], + "score": 1.0, + "content": "singular value", + "type": "text" + }, + { + "bbox": [ + 165, + 255, + 171, + 263 + ], + "score": 0.63, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 252, + 288, + 266 + ], + "score": 1.0, + "content": "does not shrink to the region", + "type": "text" + }, + { + "bbox": [ + 288, + 252, + 323, + 264 + ], + "score": 0.92, + "content": "s \\leq \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 252, + 505, + 266 + ], + "score": 1.0, + "content": ". In addition, when the layer size is small and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 323, + 277 + ], + "score": 1.0, + "content": "predictive accuracy is high, GCNs gradually increase", + "type": "text" + }, + { + "bbox": [ + 323, + 266, + 329, + 274 + ], + "score": 0.62, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "from the initial value and avoid the region.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 389, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 389, + 287 + ], + "score": 1.0, + "content": "In conclusion, the experiment results are consistent with the theorems.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 108, + 303, + 497, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 498, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 498, + 315 + ], + "score": 1.0, + "content": "6.4 REAL DATA: EFFECT OF SIGNAL COMPONENT PERPENDICULAR TO INVARIANT SPACE", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 355, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 355, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 228, + 338 + ], + "score": 1.0, + "content": "We can decompose the output", + "type": "text" + }, + { + "bbox": [ + 228, + 326, + 238, + 335 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 324, + 294, + 338 + ], + "score": 1.0, + "content": "of a model as", + "type": "text" + }, + { + "bbox": [ + 295, + 325, + 355, + 336 + ], + "score": 0.92, + "content": "X = X _ { 0 } + X _ { 1 }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 336, + 356, + 348 + ], + "spans": [ + { + "bbox": [ + 107, + 336, + 210, + 348 + ], + "score": 0.72, + "content": "( X _ { 0 } \\in \\mathcal { M } , \\bar { X _ { 1 } } \\in \\mathcal { M } ^ { \\perp } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 336, + 324, + 348 + ], + "score": 1.0, + "content": ". According to the theory,", + "type": "text" + }, + { + "bbox": [ + 324, + 337, + 338, + 347 + ], + "score": 0.87, + "content": "X _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 336, + 356, + 348 + ], + "score": 1.0, + "content": "has", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 347, + 357, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 357, + 359 + ], + "score": 1.0, + "content": "limited information for node classification. We hypothesize", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 358, + 355, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 341, + 371 + ], + "score": 1.0, + "content": "that the model emphasizes the perpendicular component", + "type": "text" + }, + { + "bbox": [ + 341, + 358, + 355, + 369 + ], + "score": 0.87, + "content": "X _ { 1 }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 357, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 357, + 381 + ], + "score": 1.0, + "content": "to perform good predictions. To quantitatively evaluate it, we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 379, + 357, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 357, + 393 + ], + "score": 1.0, + "content": "define the relative magnitude of the perpendicular component", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 391, + 357, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 161, + 403 + ], + "score": 1.0, + "content": "of the output", + "type": "text" + }, + { + "bbox": [ + 162, + 392, + 172, + 401 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 391, + 186, + 403 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 186, + 391, + 255, + 403 + ], + "score": 0.93, + "content": "t ( \\mathbf { \\bar { \\boldsymbol { X } } } ) : = \\boldsymbol { X } _ { 1 } / \\boldsymbol { X } _ { 0 } ^ { \\mathbf { \\bar { \\alpha } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 391, + 357, + 403 + ], + "score": 1.0, + "content": ". Figure 4 compares this", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 402, + 358, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 358, + 414 + ], + "score": 1.0, + "content": "quantity and the prediction accuracy on the noisy version of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 413, + 357, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 357, + 425 + ], + "score": 1.0, + "content": "Cora (see Appendix I.4 for other datasets). We observe that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 423, + 357, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 248, + 436 + ], + "score": 1.0, + "content": "these two quantities are correlated", + "type": "text" + }, + { + "bbox": [ + 248, + 424, + 295, + 435 + ], + "score": 0.85, + "content": "R = 0 . 5 4 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 423, + 357, + 436 + ], + "score": 1.0, + "content": "). If we remove", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 434, + 357, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 357, + 448 + ], + "score": 1.0, + "content": "GCNs have only one layer (corresponding to right points in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 446, + 357, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 357, + 457 + ], + "score": 1.0, + "content": "figure), the correlation coefficient is 0.827. This result does not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 456, + 254, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 254, + 468 + ], + "score": 1.0, + "content": "contradict to the hypothesis above 5.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25 + }, + { + "type": "image", + "bbox": [ + 372, + 325, + 495, + 450 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 372, + 325, + 495, + 450 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 372, + 325, + 495, + 450 + ], + "spans": [ + { + "bbox": [ + 372, + 325, + 495, + 450 + ], + "score": 0.957, + "type": "image", + "image_path": "ca029b92d1bfb0988aea15f768e174e2b67f0ad352d4ddba46a86c712446b225.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 372, + 325, + 495, + 387.5 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 372, + 387.5, + 495, + 450.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 364, + 465, + 505, + 488 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 363, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 363, + 465, + 405, + 478 + ], + "score": 1.0, + "content": "Figure 4:", + "type": "text" + }, + { + "bbox": [ + 406, + 465, + 442, + 477 + ], + "score": 0.9, + "content": "\\log t ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "and prediction", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 363, + 475, + 466, + 490 + ], + "spans": [ + { + "bbox": [ + 363, + 475, + 466, + 490 + ], + "score": 1.0, + "content": "accuracy on Noisy Cora.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 487, + 190, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 192, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 192, + 504 + ], + "score": 1.0, + "content": "7 DISCUSSION", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 514, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "Applicability to Graph NNs on Sparse Graphs. We have theoretically and empirically shown that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 402, + 538 + ], + "score": 1.0, + "content": "when the underlying graph is sufficiently dense and large, the threshold", + "type": "text" + }, + { + "bbox": [ + 402, + 525, + 420, + 536 + ], + "score": 0.9, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "is large (Theorem 2", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "and Section 6.3), which means many graph CNNs are eligible. However, real-world graphs are not", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "often dense, which means that Theorem 2 is applicable to very limited GCNs. In addition, Coja-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 414, + 572 + ], + "score": 1.0, + "content": "Oghlan (2007) theoretically proved that if the expected average degree of", + "type": "text" + }, + { + "bbox": [ + 414, + 559, + 437, + 571 + ], + "score": 0.92, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "is bounded, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 345, + 583 + ], + "score": 1.0, + "content": "smallest positive eigenvalue of the normalized Laplacian of", + "type": "text" + }, + { + "bbox": [ + 345, + 570, + 367, + 582 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 569, + 378, + 583 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 378, + 570, + 397, + 582 + ], + "score": 0.9, + "content": "o ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "with high probability. The", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 581, + 428, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 428, + 593 + ], + "score": 1.0, + "content": "asymptotic behaviors of graph NNs on sparse graphs are left for future research.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 505, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "Remedy for Over-smoothing. Based on our theory, we can propose several techniques for mitigat-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 608, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 504, + 622 + ], + "score": 1.0, + "content": "ing the over-smoothing phenomena. One idea is to (randomly) sample edges in an underlying graph.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "The sparsity of practically available graphs could be a factor in the success of graph NNs. Assum-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 630, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 645 + ], + "score": 1.0, + "content": "ing this hypothesis is correct, there is a possibility that we can relive the effect of over-smoothing", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "by sparsification. Since we can never restore the information in pruned edges if we remove them", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "permanently, random edge sampling could work better as FastGCN (Chen et al., 2018a) and Graph-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "score": 1.0, + "content": "SAGE (Hamilton et al., 2017) do. Another idea is to scale node representations (i.e., intermediate", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 674, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 469, + 687 + ], + "score": 1.0, + "content": "or final output of graph NNs) appropriately so that they keep away from the invariant space", + "type": "text" + }, + { + "bbox": [ + 470, + 675, + 483, + 685 + ], + "score": 0.57, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 674, + 505, + 687 + ], + "score": 1.0, + "content": ". Our", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "score": 1.0, + "content": "proposed weight scaling mechanism takes this strategy. Recently, Zhao & Akoglu (2020) has pro-", + "type": "text" + } + ], + "index": 52 + } + ], + "index": 48 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 712, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "5We cannot conclude that large perpendicular components are essential for good performance, since the", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 720, + 324, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 198, + 733 + ], + "score": 1.0, + "content": "maximum singular value", + "type": "text" + }, + { + "bbox": [ + 198, + 723, + 203, + 730 + ], + "score": 0.54, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 720, + 324, + 733 + ], + "score": 1.0, + "content": "is correlated to the accuracy, too.", + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 181 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 94 + ], + "score": 1.0, + "content": "We use Cora, CiteSeer, and PubMed (Sen et al., 2008), which are standard citation network datasets.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 506, + 106 + ], + "score": 1.0, + "content": "The task is to classify the genre of papers using word occurrences and citation relationships. We", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 105, + 506, + 117 + ], + "score": 1.0, + "content": "regard each paper as a node and citation relationship as an edge. Due to space constraints, we focus", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "on Cora in the main article. See Appendix H.3 and I.3 for the other datasets. The discussion in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "Section 5 implies that Theorem 2 can support a wide range of GCNs when the underlying graph", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 149 + ], + "score": 1.0, + "content": "is relatively dense. However, the citation networks are too sparse to examine the aforementioned", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 354, + 160 + ], + "score": 1.0, + "content": "hypotheses — Theorem 2 gives a non-trivial result only when", + "type": "text" + }, + { + "bbox": [ + 354, + 147, + 488, + 159 + ], + "score": 0.91, + "content": "\\stackrel { \\cdot } { 1 } \\leq s < \\lambda ^ { - 1 } \\approx 1 + 3 . 6 2 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 488, + 148, + 505, + 160 + ], + "score": 1.0, + "content": ". To", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "circumvent this, we make noisy versions of citation networks by randomly adding edges to graphs.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 170, + 385, + 182 + ], + "spans": [ + { + "bbox": [ + 105, + 170, + 333, + 182 + ], + "score": 1.0, + "content": "Through this manipulation, we can increase the value of", + "type": "text" + }, + { + "bbox": [ + 333, + 170, + 350, + 180 + ], + "score": 0.9, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 170, + 385, + 182 + ], + "score": 1.0, + "content": "to 1.11.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 83, + 506, + 182 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "Figure 3 (left) shows the accuracy for the test dataset in terms of the maximum singular values", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 210 + ], + "score": 1.0, + "content": "and the number of graph convolution layers. We can observe that when GCNs whose maximum", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 208, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 208, + 167, + 222 + ], + "score": 1.0, + "content": "singular value", + "type": "text" + }, + { + "bbox": [ + 168, + 212, + 174, + 219 + ], + "score": 0.62, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 208, + 260, + 222 + ], + "score": 1.0, + "content": "is out of the region", + "type": "text" + }, + { + "bbox": [ + 261, + 208, + 301, + 219 + ], + "score": 0.91, + "content": "s \\ < \\ \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 208, + 506, + 222 + ], + "score": 1.0, + "content": "outperform those inside the region in almost all", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 347, + 233 + ], + "score": 1.0, + "content": "configurations. Furthermore, the accuracy of GCNs with", + "type": "text" + }, + { + "bbox": [ + 347, + 220, + 381, + 230 + ], + "score": 0.9, + "content": "s ~ = ~ 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 219, + 505, + 233 + ], + "score": 1.0, + "content": "are better than those without", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 505, + 243 + ], + "score": 1.0, + "content": "normalization (unnormalized). Figure 3 (right) shows the transition of the maximum singular values", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 505, + 255 + ], + "score": 1.0, + "content": "of the weights during training when we use a three-layered GCN. We can observe that the maximum", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 252, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 164, + 266 + ], + "score": 1.0, + "content": "singular value", + "type": "text" + }, + { + "bbox": [ + 165, + 255, + 171, + 263 + ], + "score": 0.63, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 252, + 288, + 266 + ], + "score": 1.0, + "content": "does not shrink to the region", + "type": "text" + }, + { + "bbox": [ + 288, + 252, + 323, + 264 + ], + "score": 0.92, + "content": "s \\leq \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 252, + 505, + 266 + ], + "score": 1.0, + "content": ". In addition, when the layer size is small and", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 323, + 277 + ], + "score": 1.0, + "content": "predictive accuracy is high, GCNs gradually increase", + "type": "text" + }, + { + "bbox": [ + 323, + 266, + 329, + 274 + ], + "score": 0.62, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "from the initial value and avoid the region.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 275, + 389, + 287 + ], + "spans": [ + { + "bbox": [ + 106, + 275, + 389, + 287 + ], + "score": 1.0, + "content": "In conclusion, the experiment results are consistent with the theorems.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 186, + 506, + 287 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 303, + 497, + 314 + ], + "lines": [ + { + "bbox": [ + 106, + 303, + 498, + 315 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 498, + 315 + ], + "score": 1.0, + "content": "6.4 REAL DATA: EFFECT OF SIGNAL COMPONENT PERPENDICULAR TO INVARIANT SPACE", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 106, + 303, + 498, + 315 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 355, + 468 + ], + "lines": [ + { + "bbox": [ + 106, + 324, + 355, + 338 + ], + "spans": [ + { + "bbox": [ + 106, + 324, + 228, + 338 + ], + "score": 1.0, + "content": "We can decompose the output", + "type": "text" + }, + { + "bbox": [ + 228, + 326, + 238, + 335 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 324, + 294, + 338 + ], + "score": 1.0, + "content": "of a model as", + "type": "text" + }, + { + "bbox": [ + 295, + 325, + 355, + 336 + ], + "score": 0.92, + "content": "X = X _ { 0 } + X _ { 1 }", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 107, + 336, + 356, + 348 + ], + "spans": [ + { + "bbox": [ + 107, + 336, + 210, + 348 + ], + "score": 0.72, + "content": "( X _ { 0 } \\in \\mathcal { M } , \\bar { X _ { 1 } } \\in \\mathcal { M } ^ { \\perp } )", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 336, + 324, + 348 + ], + "score": 1.0, + "content": ". According to the theory,", + "type": "text" + }, + { + "bbox": [ + 324, + 337, + 338, + 347 + ], + "score": 0.87, + "content": "X _ { 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 336, + 356, + 348 + ], + "score": 1.0, + "content": "has", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 347, + 357, + 359 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 357, + 359 + ], + "score": 1.0, + "content": "limited information for node classification. We hypothesize", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 358, + 355, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 341, + 371 + ], + "score": 1.0, + "content": "that the model emphasizes the perpendicular component", + "type": "text" + }, + { + "bbox": [ + 341, + 358, + 355, + 369 + ], + "score": 0.87, + "content": "X _ { 1 }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 369, + 357, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 357, + 381 + ], + "score": 1.0, + "content": "to perform good predictions. To quantitatively evaluate it, we", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 379, + 357, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 379, + 357, + 393 + ], + "score": 1.0, + "content": "define the relative magnitude of the perpendicular component", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 391, + 357, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 161, + 403 + ], + "score": 1.0, + "content": "of the output", + "type": "text" + }, + { + "bbox": [ + 162, + 392, + 172, + 401 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 391, + 186, + 403 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 186, + 391, + 255, + 403 + ], + "score": 0.93, + "content": "t ( \\mathbf { \\bar { \\boldsymbol { X } } } ) : = \\boldsymbol { X } _ { 1 } / \\boldsymbol { X } _ { 0 } ^ { \\mathbf { \\bar { \\alpha } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 391, + 357, + 403 + ], + "score": 1.0, + "content": ". Figure 4 compares this", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 402, + 358, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 358, + 414 + ], + "score": 1.0, + "content": "quantity and the prediction accuracy on the noisy version of", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 413, + 357, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 357, + 425 + ], + "score": 1.0, + "content": "Cora (see Appendix I.4 for other datasets). We observe that", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 423, + 357, + 436 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 248, + 436 + ], + "score": 1.0, + "content": "these two quantities are correlated", + "type": "text" + }, + { + "bbox": [ + 248, + 424, + 295, + 435 + ], + "score": 0.85, + "content": "R = 0 . 5 4 5 )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 423, + 357, + 436 + ], + "score": 1.0, + "content": "). If we remove", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 434, + 357, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 357, + 448 + ], + "score": 1.0, + "content": "GCNs have only one layer (corresponding to right points in the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 446, + 357, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 357, + 457 + ], + "score": 1.0, + "content": "figure), the correlation coefficient is 0.827. This result does not", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 456, + 254, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 254, + 468 + ], + "score": 1.0, + "content": "contradict to the hypothesis above 5.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 324, + 358, + 468 + ] + }, + { + "type": "image", + "bbox": [ + 372, + 325, + 495, + 450 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 372, + 325, + 495, + 450 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 372, + 325, + 495, + 450 + ], + "spans": [ + { + "bbox": [ + 372, + 325, + 495, + 450 + ], + "score": 0.957, + "type": "image", + "image_path": "ca029b92d1bfb0988aea15f768e174e2b67f0ad352d4ddba46a86c712446b225.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 372, + 325, + 495, + 387.5 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 372, + 387.5, + 495, + 450.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 364, + 465, + 505, + 488 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 363, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 363, + 465, + 405, + 478 + ], + "score": 1.0, + "content": "Figure 4:", + "type": "text" + }, + { + "bbox": [ + 406, + 465, + 442, + 477 + ], + "score": 0.9, + "content": "\\log t ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "and prediction", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 363, + 475, + 466, + 490 + ], + "spans": [ + { + "bbox": [ + 363, + 475, + 466, + 490 + ], + "score": 1.0, + "content": "accuracy on Noisy Cora.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + } + ], + "index": 33.5 + }, + { + "type": "title", + "bbox": [ + 108, + 487, + 190, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 192, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 192, + 504 + ], + "score": 1.0, + "content": "7 DISCUSSION", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 514, + 504, + 592 + ], + "lines": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "Applicability to Graph NNs on Sparse Graphs. We have theoretically and empirically shown that", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 402, + 538 + ], + "score": 1.0, + "content": "when the underlying graph is sufficiently dense and large, the threshold", + "type": "text" + }, + { + "bbox": [ + 402, + 525, + 420, + 536 + ], + "score": 0.9, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "is large (Theorem 2", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 550 + ], + "score": 1.0, + "content": "and Section 6.3), which means many graph CNNs are eligible. However, real-world graphs are not", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 548, + 505, + 560 + ], + "score": 1.0, + "content": "often dense, which means that Theorem 2 is applicable to very limited GCNs. In addition, Coja-", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 559, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 414, + 572 + ], + "score": 1.0, + "content": "Oghlan (2007) theoretically proved that if the expected average degree of", + "type": "text" + }, + { + "bbox": [ + 414, + 559, + 437, + 571 + ], + "score": 0.92, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 559, + 506, + 572 + ], + "score": 1.0, + "content": "is bounded, the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 345, + 583 + ], + "score": 1.0, + "content": "smallest positive eigenvalue of the normalized Laplacian of", + "type": "text" + }, + { + "bbox": [ + 345, + 570, + 367, + 582 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 569, + 378, + 583 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 378, + 570, + 397, + 582 + ], + "score": 0.9, + "content": "o ( 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "with high probability. The", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 581, + 428, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 428, + 593 + ], + "score": 1.0, + "content": "asymptotic behaviors of graph NNs on sparse graphs are left for future research.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 514, + 506, + 593 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 597, + 505, + 697 + ], + "lines": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 505, + 610 + ], + "score": 1.0, + "content": "Remedy for Over-smoothing. Based on our theory, we can propose several techniques for mitigat-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 608, + 504, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 504, + 622 + ], + "score": 1.0, + "content": "ing the over-smoothing phenomena. One idea is to (randomly) sample edges in an underlying graph.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 633 + ], + "score": 1.0, + "content": "The sparsity of practically available graphs could be a factor in the success of graph NNs. Assum-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 630, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 505, + 645 + ], + "score": 1.0, + "content": "ing this hypothesis is correct, there is a possibility that we can relive the effect of over-smoothing", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 506, + 655 + ], + "score": 1.0, + "content": "by sparsification. Since we can never restore the information in pruned edges if we remove them", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "permanently, random edge sampling could work better as FastGCN (Chen et al., 2018a) and Graph-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 664, + 505, + 676 + ], + "score": 1.0, + "content": "SAGE (Hamilton et al., 2017) do. Another idea is to scale node representations (i.e., intermediate", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 674, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 469, + 687 + ], + "score": 1.0, + "content": "or final output of graph NNs) appropriately so that they keep away from the invariant space", + "type": "text" + }, + { + "bbox": [ + 470, + 675, + 483, + 685 + ], + "score": 0.57, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 674, + 505, + 687 + ], + "score": 1.0, + "content": ". Our", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 699 + ], + "score": 1.0, + "content": "proposed weight scaling mechanism takes this strategy. Recently, Zhao & Akoglu (2020) has pro-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "posed PairNorm to alleviate the over-smoothing phenomena. Although the scaling target is different", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 478, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 478, + 106 + ], + "score": 1.0, + "content": "– they rescaled signals whereas we normalized weights – theirs and ours have similar spirits.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 48, + "bbox_fs": [ + 105, + 597, + 506, + 699 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "posed PairNorm to alleviate the over-smoothing phenomena. Although the scaling target is different", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 478, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 478, + 106 + ], + "score": 1.0, + "content": "– they rescaled signals whereas we normalized weights – theirs and ours have similar spirits.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Graph NNs with Large Weights. Our theory suggests that the maximum singular values of weights", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 307, + 133 + ], + "score": 1.0, + "content": "in a GCN should not be smaller than a threshold", + "type": "text" + }, + { + "bbox": [ + 307, + 121, + 325, + 132 + ], + "score": 0.9, + "content": "\\bar { \\lambda } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "because it suffers from information loss for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "node classification. On the other hand, if the scale of weights are very large, the model complexity", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "of the function class represented by graph NNs increases, which may cause large generalization", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "errors. Therefore, from a statistical learning theory perspective, we conjecture that the graph NNs", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "score": 1.0, + "content": "with too-large weights perform poorly, too. A trade-off should exist between the expressive power", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "and model complexity and there should be a “sweet spot” on the weight scale that balances the two.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "score": 1.0, + "content": "Relation to Double Descent Phenomena. Belkin et al. (2019) pointed out that modern deep mod-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "els often have double descent risk curves: when a model is under-parameterized, a classical bias-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "variance trade-off occurs. However, once the model has a large capacity and perfectly fits the training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "data, the test error decreases as we increase the number of parameters. To the best of our knowl-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 238, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 505, + 249 + ], + "score": 1.0, + "content": "edge, no literature reported the double descent phenomena for graph NNs (it is consistent with the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "picture of the classical U-shaped risk curve in the previous paragraph). It is known that double", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "descent phenomena do not occur in some situations, especially depending on regularization types.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "For example, while Belkin et al. (2019) employed the interpolating hypothesis with the minimum", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "norm, Mei & Montanari (2019) found that the double descent was alleviated or disappeared when", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "they used Ridge-type regularization techniques. Therefore, one can hypothesize the over-smoothing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "is a cause or consequence of regularization that is more like a Ridge-type rather than minimum-norm", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 313, + 167, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 167, + 325 + ], + "score": 1.0, + "content": "inductive bias.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "Limitations in Graph NN Architectures. Our analysis is limited to graph NNs with the ReLU", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "activation function because we implicitly use the property that ReLU is a projection onto the cone", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 107, + 352, + 145, + 365 + ], + "score": 0.92, + "content": "\\{ X \\geq 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "(Appendix A, Lemma 3). This fact enables the ReLU function to get along with the non-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "negativity of eigenvectors associated with the largest eigenvalues. Therefore, it is far from trivial to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "score": 1.0, + "content": "extend our results to other activation functions such as the sigmoid function or Leaky ReLU (Maas", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "et al., 2013). Another point is that our formulation considers the update operation (Gilmer et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "score": 1.0, + "content": "2017) of graph NNs only and does not take readout operations into account. In particular, we cannot", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 406, + 452, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 452, + 421 + ], + "score": 1.0, + "content": "directly apply our theory to graph classification tasks in which each sample is a graph.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "Over-smoothing of Residual GNNs. Considering the correspondence of graph NNs and Markov", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "processes (see Appendix F), one can imagine that residual links do not contribute to alleviating", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "the over-smoothing phenomena because adding residual connections to a graph NN corresponds", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "to converting a Markov process to its lazy version. When a Markov process converges to a stable", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 467, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 482 + ], + "score": 1.0, + "content": "distribution, the corresponding lazy process also converges eventually under certain conditions. It", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "implies that residual links might not be helpful. However, Li et al. (2019) reported that graph NNs", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 491, + 504, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 504, + 502 + ], + "score": 1.0, + "content": "with as many as 56 layers performed well if they added residual connections. Considering that,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "the situation could be more complicated than our intuitions. The analysis of the role of residual", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 513, + 387, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 387, + 524 + ], + "score": 1.0, + "content": "connections in graph NNs is a promising direction for future research.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 107, + 554, + 195, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 198, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 198, + 570 + ], + "score": 1.0, + "content": "8 CONCLUSION", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "In this paper, to understand the empirically observed phenomena that deep non-linear graph NNs", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "score": 1.0, + "content": "do not perform well, we analyzed their asymptotic behaviors by interpreting them as a dynamical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "system that includes GCN and Markov process as special cases. We gave theoretical conditions", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "under which GCNs suffer from the information loss in the limit of infinite layers. Our theory directly", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "related the expressive power of graph NNs and topological information of the underlying graphs via", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "spectra of the Laplacian. It enabled us to leverage spectral and random graph theory to analyze the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "expressive power of graph NNs. To demonstrate this, we considered GCN on the Erdos – R ˝ enyi ´", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "score": 1.0, + "content": "graph as an example and showed that when the underlying graph is sufficiently dense and large,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "a wide range of GCNs on the graph suffer from information loss. Based on the theory, we gave", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "a principled guideline for how to determine the scale of weights of graph NNs and empirically", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "showed that the weight normalization implied by our theory performed well in real datasets. One", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "promising direction of research is to analyze the optimization and statistical properties such as the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 720, + 503, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 503, + 734 + ], + "score": 1.0, + "content": "generalization power (Verma & Zhang, 2019) of graph NNs via spectral and random graph theories.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 45 + } + ], + "page_idx": 8, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 506, + 106 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 504, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Graph NNs with Large Weights. Our theory suggests that the maximum singular values of weights", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 133 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 307, + 133 + ], + "score": 1.0, + "content": "in a GCN should not be smaller than a threshold", + "type": "text" + }, + { + "bbox": [ + 307, + 121, + 325, + 132 + ], + "score": 0.9, + "content": "\\bar { \\lambda } ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 325, + 120, + 505, + 133 + ], + "score": 1.0, + "content": "because it suffers from information loss for", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "node classification. On the other hand, if the scale of weights are very large, the model complexity", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "of the function class represented by graph NNs increases, which may cause large generalization", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "errors. Therefore, from a statistical learning theory perspective, we conjecture that the graph NNs", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 506, + 179 + ], + "score": 1.0, + "content": "with too-large weights perform poorly, too. A trade-off should exist between the expressive power", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "and model complexity and there should be a “sweet spot” on the weight scale that balances the two.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 110, + 506, + 189 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 193, + 505, + 325 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "score": 1.0, + "content": "Relation to Double Descent Phenomena. Belkin et al. (2019) pointed out that modern deep mod-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 204, + 505, + 216 + ], + "score": 1.0, + "content": "els often have double descent risk curves: when a model is under-parameterized, a classical bias-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 214, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 505, + 228 + ], + "score": 1.0, + "content": "variance trade-off occurs. However, once the model has a large capacity and perfectly fits the training", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 226, + 505, + 239 + ], + "score": 1.0, + "content": "data, the test error decreases as we increase the number of parameters. To the best of our knowl-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 238, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 238, + 505, + 249 + ], + "score": 1.0, + "content": "edge, no literature reported the double descent phenomena for graph NNs (it is consistent with the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 248, + 505, + 260 + ], + "spans": [ + { + "bbox": [ + 105, + 248, + 505, + 260 + ], + "score": 1.0, + "content": "picture of the classical U-shaped risk curve in the previous paragraph). It is known that double", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 505, + 272 + ], + "score": 1.0, + "content": "descent phenomena do not occur in some situations, especially depending on regularization types.", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 270, + 505, + 282 + ], + "score": 1.0, + "content": "For example, while Belkin et al. (2019) employed the interpolating hypothesis with the minimum", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "norm, Mei & Montanari (2019) found that the double descent was alleviated or disappeared when", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 305 + ], + "score": 1.0, + "content": "they used Ridge-type regularization techniques. Therefore, one can hypothesize the over-smoothing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "is a cause or consequence of regularization that is more like a Ridge-type rather than minimum-norm", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 313, + 167, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 167, + 325 + ], + "score": 1.0, + "content": "inductive bias.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 192, + 505, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 330, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 343 + ], + "score": 1.0, + "content": "Limitations in Graph NN Architectures. Our analysis is limited to graph NNs with the ReLU", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "activation function because we implicitly use the property that ReLU is a projection onto the cone", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 352, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 107, + 352, + 145, + 365 + ], + "score": 0.92, + "content": "\\{ X \\geq 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 352, + 505, + 365 + ], + "score": 1.0, + "content": "(Appendix A, Lemma 3). This fact enables the ReLU function to get along with the non-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "negativity of eigenvectors associated with the largest eigenvalues. Therefore, it is far from trivial to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 505, + 387 + ], + "score": 1.0, + "content": "extend our results to other activation functions such as the sigmoid function or Leaky ReLU (Maas", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "et al., 2013). Another point is that our formulation considers the update operation (Gilmer et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 409 + ], + "score": 1.0, + "content": "2017) of graph NNs only and does not take readout operations into account. In particular, we cannot", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 406, + 452, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 452, + 421 + ], + "score": 1.0, + "content": "directly apply our theory to graph classification tasks in which each sample is a graph.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 330, + 506, + 421 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 523 + ], + "lines": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 424, + 505, + 436 + ], + "score": 1.0, + "content": "Over-smoothing of Residual GNNs. Considering the correspondence of graph NNs and Markov", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 505, + 448 + ], + "score": 1.0, + "content": "processes (see Appendix F), one can imagine that residual links do not contribute to alleviating", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 459 + ], + "score": 1.0, + "content": "the over-smoothing phenomena because adding residual connections to a graph NN corresponds", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "to converting a Markov process to its lazy version. When a Markov process converges to a stable", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 467, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 467, + 506, + 482 + ], + "score": 1.0, + "content": "distribution, the corresponding lazy process also converges eventually under certain conditions. It", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 505, + 491 + ], + "score": 1.0, + "content": "implies that residual links might not be helpful. However, Li et al. (2019) reported that graph NNs", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 491, + 504, + 502 + ], + "spans": [ + { + "bbox": [ + 106, + 491, + 504, + 502 + ], + "score": 1.0, + "content": "with as many as 56 layers performed well if they added residual connections. Considering that,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 505, + 513 + ], + "score": 1.0, + "content": "the situation could be more complicated than our intuitions. The analysis of the role of residual", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 513, + 387, + 524 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 387, + 524 + ], + "score": 1.0, + "content": "connections in graph NNs is a promising direction for future research.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 424, + 506, + 524 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 554, + 195, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 553, + 198, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 198, + 570 + ], + "score": 1.0, + "content": "8 CONCLUSION", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "In this paper, to understand the empirically observed phenomena that deep non-linear graph NNs", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 505, + 612 + ], + "score": 1.0, + "content": "do not perform well, we analyzed their asymptotic behaviors by interpreting them as a dynamical", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 624 + ], + "score": 1.0, + "content": "system that includes GCN and Markov process as special cases. We gave theoretical conditions", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 505, + 635 + ], + "score": 1.0, + "content": "under which GCNs suffer from the information loss in the limit of infinite layers. Our theory directly", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "related the expressive power of graph NNs and topological information of the underlying graphs via", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "spectra of the Laplacian. It enabled us to leverage spectral and random graph theory to analyze the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "expressive power of graph NNs. To demonstrate this, we considered GCN on the Erdos – R ˝ enyi ´", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 506, + 680 + ], + "score": 1.0, + "content": "graph as an example and showed that when the underlying graph is sufficiently dense and large,", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "a wide range of GCNs on the graph suffer from information loss. Based on the theory, we gave", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "a principled guideline for how to determine the scale of weights of graph NNs and empirically", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "showed that the weight normalization implied by our theory performed well in real datasets. One", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "promising direction of research is to analyze the optimization and statistical properties such as the", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 720, + 503, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 503, + 734 + ], + "score": 1.0, + "content": "generalization power (Verma & Zhang, 2019) of graph NNs via spectral and random graph theories.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 45, + "bbox_fs": [ + 104, + 588, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 83, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "score": 1.0, + "content": "We thank Katsuhiko Ishiguro for providing a part of code for the experiments, Kohei Hayashi and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "Haru Negami Oono for giving us feedback and comments on the draft, Keyulu Xu and anonymous", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "reviewers for fruitful discussions via OpenReview, and Ryuta Osawa for pointing out errors and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "suggesting improvements of the paper. TS was partially supported by JSPS KAKENHI (15H05707,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 145, + 380, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 380, + 158 + ], + "score": 1.0, + "content": "18K19793, and 18H03201), Japan Digital Design, and JST CREST.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 107, + 173, + 175, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 174, + 176, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 176, + 186 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "Takuya Akiba, Shotaro Sano, Toshihiko Yanase, Takeru Ohta, and Masanori Koyama. Optuna:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "A next-generation hyperparameter optimization framework. In Proceedings of the 25th ACM", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 212, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 212, + 506, + 228 + ], + "score": 1.0, + "content": "SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’19, pp.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 225, + 504, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 225, + 504, + 237 + ], + "score": 1.0, + "content": "2623–2631, New York, NY, USA, 2019. ACM. ISBN 978-1-4503-6201-6. doi: 10.1145/3292500.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 156, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 156, + 249 + ], + "score": 1.0, + "content": "3330701.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 503, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "score": 1.0, + "content": "Dana Angluin and Leslie G Valiant. Fast probabilistic algorithms for hamiltonian circuits and match-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 266, + 399, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 399, + 277 + ], + "score": 1.0, + "content": "ings. Journal of Computer and system Sciences, 18(2):155–193, 1979.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 502, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 504, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 504, + 298 + ], + "score": 1.0, + "content": "Andrew R Barron. Universal approximation bounds for superpositions of a sigmoidal function.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 295, + 377, + 307 + ], + "spans": [ + { + "bbox": [ + 116, + 295, + 377, + 307 + ], + "score": 1.0, + "content": "IEEE Transactions on Information theory, 39(3):930–945, 1993.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "Peter W Battaglia, Jessica B Hamrick, Victor Bapst, Alvaro Sanchez-Gonzalez, Vinicius Zambaldi,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 116, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "Mateusz Malinowski, Andrea Tacchetti, David Raposo, Adam Santoro, Ryan Faulkner, et al.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 114, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "Relational inductive biases, deep learning, and graph networks. arXiv preprint arXiv:1806.01261,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 346, + 142, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 142, + 358 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 504, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 504, + 378 + ], + "score": 1.0, + "content": "Mikhail Belkin, Daniel Hsu, Siyuan Ma, and Soumik Mandal. Reconciling modern machine-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 375, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 505, + 390 + ], + "score": 1.0, + "content": "learning practice and the classical bias–variance trade-off. Proceedings of the National Academy", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 388, + 285, + 399 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 285, + 399 + ], + "score": 1.0, + "content": "of Sciences, 116(32):15849–15854, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 506, + 439 + ], + "lines": [ + { + "bbox": [ + 104, + 405, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 505, + 420 + ], + "score": 1.0, + "content": "James S. Bergstra, Remi Bardenet, Yoshua Bengio, and Bal ´ azs K ´ egl. Algorithms for hyper- ´", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "parameter optimization. In Advances in Neural Information Processing Systems 24, pp. 2546–", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 428, + 264, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 264, + 439 + ], + "score": 1.0, + "content": "2554. Curran Associates, Inc., 2011.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "Jie Chen, Tengfei Ma, and Cao Xiao. FastGCN: Fast learning with graph convolutional networks", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 116, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "via importance sampling. In International Conference on Learning Representations, 2018a. URL", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 469, + 366, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 469, + 302, + 482 + ], + "score": 1.0, + "content": "https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 302, + 470, + 309, + 478 + ], + "score": 0.54, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 469, + 366, + 482 + ], + "score": 1.0, + "content": "rytstxWAW.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "Minmin Chen, Jeffrey Pennington, and Samuel Schoenholz. Dynamical isometry and a mean field", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "theory of RNNs: Gating enables signal propagation in recurrent neural networks. In Proceedings", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 117, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 520, + 356, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 520, + 356, + 533 + ], + "score": 1.0, + "content": "Learning Research, pp. 873–882. PMLR, 10–15 Jul 2018b.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "Anna Choromanska, Yann LeCun, and Gerard Ben Arous. Open problem: The landscape of the ´", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "loss surfaces of multilayer networks. In Peter Grunwald, Elad Hazan, and Satyen Kale (eds.), ¨", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "Proceedings of The 28th Conference on Learning Theory, volume 40 of Proceedings of Machine", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 572, + 319, + 584 + ], + "spans": [ + { + "bbox": [ + 115, + 572, + 319, + 584 + ], + "score": 1.0, + "content": "Learning Research, pp. 1756–1760. PMLR, 2015.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 503, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 605 + ], + "score": 1.0, + "content": "Fan Chung and Linyuan Lu. Connected components in random graphs with given expected degree", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 602, + 349, + 614 + ], + "spans": [ + { + "bbox": [ + 115, + 602, + 349, + 614 + ], + "score": 1.0, + "content": "sequences. Annals of combinatorics, 6(2):125–145, 2002.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "Fan Chung and Mary Radcliffe. On the spectra of general random graphs. the electronic journal of", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 631, + 249, + 643 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 249, + 643 + ], + "score": 1.0, + "content": "combinatorics, 18(1):215, 2011.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 503, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 664 + ], + "score": 1.0, + "content": "Fan Chung, Linyuan Lu, and Van Vu. The spectra of random graphs with given expected degrees.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 660, + 291, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 291, + 673 + ], + "score": 1.0, + "content": "Internet Mathematics, 1(3):257–275, 2004.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Fan RK Chung and Fan Chung Graham. Spectral graph theory. Number 92 in CBMS Regional", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 691, + 405, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 405, + 702 + ], + "score": 1.0, + "content": "Conference Series in Mathematics. American Mathematical Soc., 1997.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 322, + 723 + ], + "score": 1.0, + "content": "Amin Coja-Oghlan. On the laplacian eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 322, + 711, + 342, + 722 + ], + "score": 0.9, + "content": "G _ { n , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". Combinatorics, Probability and Com-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 721, + 236, + 731 + ], + "spans": [ + { + "bbox": [ + 114, + 721, + 236, + 731 + ], + "score": 1.0, + "content": "puting, 16(6):923–946, 2007.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 301, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 83, + 200, + 93 + ], + "lines": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "spans": [ + { + "bbox": [ + 107, + 83, + 200, + 94 + ], + "score": 1.0, + "content": "ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 101, + 505, + 156 + ], + "lines": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 100, + 505, + 115 + ], + "score": 1.0, + "content": "We thank Katsuhiko Ishiguro for providing a part of code for the experiments, Kohei Hayashi and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 505, + 126 + ], + "score": 1.0, + "content": "Haru Negami Oono for giving us feedback and comments on the draft, Keyulu Xu and anonymous", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "reviewers for fruitful discussions via OpenReview, and Ryuta Osawa for pointing out errors and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 134, + 505, + 147 + ], + "score": 1.0, + "content": "suggesting improvements of the paper. TS was partially supported by JSPS KAKENHI (15H05707,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 145, + 380, + 158 + ], + "spans": [ + { + "bbox": [ + 106, + 145, + 380, + 158 + ], + "score": 1.0, + "content": "18K19793, and 18H03201), Japan Digital Design, and JST CREST.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 100, + 505, + 158 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 173, + 175, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 174, + 176, + 186 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 176, + 186 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 192, + 505, + 246 + ], + "lines": [ + { + "bbox": [ + 106, + 191, + 505, + 205 + ], + "spans": [ + { + "bbox": [ + 106, + 191, + 505, + 205 + ], + "score": 1.0, + "content": "Takuya Akiba, Shotaro Sano, Toshihiko Yanase, Takeru Ohta, and Masanori Koyama. Optuna:", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "spans": [ + { + "bbox": [ + 115, + 203, + 505, + 216 + ], + "score": 1.0, + "content": "A next-generation hyperparameter optimization framework. In Proceedings of the 25th ACM", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 114, + 212, + 506, + 228 + ], + "spans": [ + { + "bbox": [ + 114, + 212, + 506, + 228 + ], + "score": 1.0, + "content": "SIGKDD International Conference on Knowledge Discovery & Data Mining, KDD ’19, pp.", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 225, + 504, + 237 + ], + "spans": [ + { + "bbox": [ + 116, + 225, + 504, + 237 + ], + "score": 1.0, + "content": "2623–2631, New York, NY, USA, 2019. ACM. ISBN 978-1-4503-6201-6. doi: 10.1145/3292500.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 235, + 156, + 249 + ], + "spans": [ + { + "bbox": [ + 115, + 235, + 156, + 249 + ], + "score": 1.0, + "content": "3330701.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 191, + 506, + 249 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 254, + 503, + 277 + ], + "lines": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "spans": [ + { + "bbox": [ + 106, + 254, + 504, + 267 + ], + "score": 1.0, + "content": "Dana Angluin and Leslie G Valiant. Fast probabilistic algorithms for hamiltonian circuits and match-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 266, + 399, + 277 + ], + "spans": [ + { + "bbox": [ + 115, + 266, + 399, + 277 + ], + "score": 1.0, + "content": "ings. Journal of Computer and system Sciences, 18(2):155–193, 1979.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 254, + 504, + 277 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 284, + 502, + 307 + ], + "lines": [ + { + "bbox": [ + 105, + 283, + 504, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 504, + 298 + ], + "score": 1.0, + "content": "Andrew R Barron. Universal approximation bounds for superpositions of a sigmoidal function.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 295, + 377, + 307 + ], + "spans": [ + { + "bbox": [ + 116, + 295, + 377, + 307 + ], + "score": 1.0, + "content": "IEEE Transactions on Information theory, 39(3):930–945, 1993.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 283, + 504, + 307 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 313, + 505, + 358 + ], + "lines": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 106, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "Peter W Battaglia, Jessica B Hamrick, Victor Bapst, Alvaro Sanchez-Gonzalez, Vinicius Zambaldi,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 325, + 505, + 337 + ], + "spans": [ + { + "bbox": [ + 116, + 325, + 505, + 337 + ], + "score": 1.0, + "content": "Mateusz Malinowski, Andrea Tacchetti, David Raposo, Adam Santoro, Ryan Faulkner, et al.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 114, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "Relational inductive biases, deep learning, and graph networks. arXiv preprint arXiv:1806.01261,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 346, + 142, + 358 + ], + "spans": [ + { + "bbox": [ + 115, + 346, + 142, + 358 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 314, + 506, + 358 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 365, + 505, + 399 + ], + "lines": [ + { + "bbox": [ + 105, + 364, + 504, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 504, + 378 + ], + "score": 1.0, + "content": "Mikhail Belkin, Daniel Hsu, Siyuan Ma, and Soumik Mandal. Reconciling modern machine-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 375, + 505, + 390 + ], + "spans": [ + { + "bbox": [ + 115, + 375, + 505, + 390 + ], + "score": 1.0, + "content": "learning practice and the classical bias–variance trade-off. Proceedings of the National Academy", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 388, + 285, + 399 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 285, + 399 + ], + "score": 1.0, + "content": "of Sciences, 116(32):15849–15854, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 364, + 505, + 399 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 406, + 506, + 439 + ], + "lines": [ + { + "bbox": [ + 104, + 405, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 104, + 405, + 505, + 420 + ], + "score": 1.0, + "content": "James S. Bergstra, Remi Bardenet, Yoshua Bengio, and Bal ´ azs K ´ egl. Algorithms for hyper- ´", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 417, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 115, + 417, + 505, + 430 + ], + "score": 1.0, + "content": "parameter optimization. In Advances in Neural Information Processing Systems 24, pp. 2546–", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 428, + 264, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 264, + 439 + ], + "score": 1.0, + "content": "2554. Curran Associates, Inc., 2011.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 104, + 405, + 505, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 504, + 480 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 506, + 460 + ], + "score": 1.0, + "content": "Jie Chen, Tengfei Ma, and Cao Xiao. FastGCN: Fast learning with graph convolutional networks", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 458, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 116, + 458, + 505, + 470 + ], + "score": 1.0, + "content": "via importance sampling. In International Conference on Learning Representations, 2018a. URL", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 469, + 366, + 482 + ], + "spans": [ + { + "bbox": [ + 116, + 469, + 302, + 482 + ], + "score": 1.0, + "content": "https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 302, + 470, + 309, + 478 + ], + "score": 0.54, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 469, + 366, + 482 + ], + "score": 1.0, + "content": "rytstxWAW.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 446, + 506, + 482 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 487, + 505, + 531 + ], + "lines": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "Minmin Chen, Jeffrey Pennington, and Samuel Schoenholz. Dynamical isometry and a mean field", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 498, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 115, + 498, + 505, + 511 + ], + "score": 1.0, + "content": "theory of RNNs: Gating enables signal propagation in recurrent neural networks. In Proceedings", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 117, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 117, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "of the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 520, + 356, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 520, + 356, + 533 + ], + "score": 1.0, + "content": "Learning Research, pp. 873–882. PMLR, 10–15 Jul 2018b.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 487, + 506, + 533 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 539, + 505, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 551 + ], + "score": 1.0, + "content": "Anna Choromanska, Yann LeCun, and Gerard Ben Arous. Open problem: The landscape of the ´", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "loss surfaces of multilayer networks. In Peter Grunwald, Elad Hazan, and Satyen Kale (eds.), ¨", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "Proceedings of The 28th Conference on Learning Theory, volume 40 of Proceedings of Machine", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 572, + 319, + 584 + ], + "spans": [ + { + "bbox": [ + 115, + 572, + 319, + 584 + ], + "score": 1.0, + "content": "Learning Research, pp. 1756–1760. PMLR, 2015.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 540, + 506, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 590, + 503, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 605 + ], + "score": 1.0, + "content": "Fan Chung and Linyuan Lu. Connected components in random graphs with given expected degree", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 602, + 349, + 614 + ], + "spans": [ + { + "bbox": [ + 115, + 602, + 349, + 614 + ], + "score": 1.0, + "content": "sequences. Annals of combinatorics, 6(2):125–145, 2002.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 105, + 589, + 505, + 614 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 620, + 504, + 643 + ], + "lines": [ + { + "bbox": [ + 106, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 106, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "Fan Chung and Mary Radcliffe. On the spectra of general random graphs. the electronic journal of", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 631, + 249, + 643 + ], + "spans": [ + { + "bbox": [ + 115, + 631, + 249, + 643 + ], + "score": 1.0, + "content": "combinatorics, 18(1):215, 2011.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 619, + 506, + 643 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 650, + 503, + 673 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 664 + ], + "score": 1.0, + "content": "Fan Chung, Linyuan Lu, and Van Vu. The spectra of random graphs with given expected degrees.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 660, + 291, + 673 + ], + "spans": [ + { + "bbox": [ + 115, + 660, + 291, + 673 + ], + "score": 1.0, + "content": "Internet Mathematics, 1(3):257–275, 2004.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 648, + 505, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 680, + 503, + 703 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 505, + 693 + ], + "score": 1.0, + "content": "Fan RK Chung and Fan Chung Graham. Spectral graph theory. Number 92 in CBMS Regional", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 691, + 405, + 702 + ], + "spans": [ + { + "bbox": [ + 116, + 691, + 405, + 702 + ], + "score": 1.0, + "content": "Conference Series in Mathematics. American Mathematical Soc., 1997.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 105, + 678, + 505, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 503, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 322, + 723 + ], + "score": 1.0, + "content": "Amin Coja-Oghlan. On the laplacian eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 322, + 711, + 342, + 722 + ], + "score": 0.9, + "content": "G _ { n , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 709, + 505, + 723 + ], + "score": 1.0, + "content": ". Combinatorics, Probability and Com-", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 721, + 236, + 731 + ], + "spans": [ + { + "bbox": [ + 114, + 721, + 236, + 731 + ], + "score": 1.0, + "content": "puting, 16(6):923–946, 2007.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 709, + 505, + 731 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "George Cybenko. Approximation by superpositions of a sigmoidal function. Mathematics of control,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 284, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 284, + 105 + ], + "score": 1.0, + "content": "signals and systems, 2(4):303–314, 1989.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 504, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 504, + 125 + ], + "score": 1.0, + "content": "Michael Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks¨", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 114, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "on graphs with fast localized spectral filtering. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 353, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 353, + 147 + ], + "score": 1.0, + "content": "Systems 29, pp. 3844–3852. Curran Associates, Inc., 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "David K Duvenaud, Dougal Maclaurin, Jorge Iparraguirre, Rafael Bombarell, Timothy Hirzel, Alan", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "Aspuru-Guzik, and Ryan P Adams. Convolutional networks on graphs for learning molecular", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 177, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 116, + 177, + 504, + 189 + ], + "score": 1.0, + "content": "fingerprints. In Advances in Neural Information Processing Systems 28, pp. 2224–2232. Curran", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 209, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 209, + 199 + ], + "score": 1.0, + "content": "Associates, Inc., 2015.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 502, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "score": 1.0, + "content": "Paul Erdos and Alfr ¨ ed R ´ enyi. On random graphs I. ´ Publicationes Mathematicae (Debrecen), 6:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 181, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 181, + 230 + ], + "score": 1.0, + "content": "290–297, 1959.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 501, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 501, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 501, + 251 + ], + "score": 1.0, + "content": "Edgar N Gilbert. Random graphs. The Annals of Mathematical Statistics, 30(4):1141–1144, 1959.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 503, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 256, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 271 + ], + "score": 1.0, + "content": "C Lee Giles, Kurt D Bollacker, and Steve Lawrence. Citeseer: an automatic citation indexing system.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 268, + 474, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 474, + 280 + ], + "score": 1.0, + "content": "In Proceedings of the third ACM conference on Digital libraries, pp. 89–98. ACM, 1998.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 287, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "Justin Gilmer, Samuel S. Schoenholz, Patrick F. Riley, Oriol Vinyals, and George E. Dahl. Neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 115, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "message passing for quantum chemistry. In Proceedings of the 34th International Conference on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "Machine Learning, volume 70 of Proceedings of Machine Learning Research, pp. 1263–1272.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 174, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 174, + 333 + ], + "score": 1.0, + "content": "PMLR, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 105, + 339, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 104, + 337, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 506, + 355 + ], + "score": 1.0, + "content": "Torben Hagerup and Christine Rub. A guided tour of Chernoff bounds. ¨ Information processing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 351, + 235, + 363 + ], + "spans": [ + { + "bbox": [ + 116, + 351, + 235, + 363 + ], + "score": 1.0, + "content": "letters, 33(6):305–308, 1990.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 370, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems 30, pp. 1024–1034. Curran Associates,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 392, + 163, + 405 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 163, + 405 + ], + "score": 1.0, + "content": "Inc., 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 105, + 412, + 503, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "Mikael Henaff, Joan Bruna, and Yann LeCun. Deep convolutional networks on graph-structured", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 423, + 302, + 436 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 302, + 436 + ], + "score": 1.0, + "content": "data. arXiv preprint arXiv:1506.05163, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 442, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "Kurt Hornik. Approximation capabilities of multilayer feedforward networks. Neural networks, 4", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 453, + 196, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 196, + 466 + ], + "score": 1.0, + "content": "(2):251–257, 1991.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 504, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are uni-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 485, + 361, + 496 + ], + "spans": [ + { + "bbox": [ + 117, + 485, + 361, + 496 + ], + "score": 1.0, + "content": "versal approximators. Neural networks, 2(5):359–366, 1989.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 504, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 504, + 517 + ], + "score": 1.0, + "content": "CD Johnson. Stabilization of linear dynamical systems with respect to arbitrary linear subspaces.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 515, + 416, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 515, + 416, + 527 + ], + "score": 1.0, + "content": "Journal of Mathematical Analysis and Applications, 44(1):175–186, 1973.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 545, + 310, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 545, + 310, + 558 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional net-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 577, + 406, + 588 + ], + "spans": [ + { + "bbox": [ + 117, + 577, + 406, + 588 + ], + "score": 1.0, + "content": "works. In International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 503, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. ImageNet classification with deep convo-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "lutional neural networks. In Advances in Neural Information Processing Systems 25, pp. 1097–", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 618, + 264, + 629 + ], + "spans": [ + { + "bbox": [ + 117, + 618, + 264, + 629 + ], + "score": 1.0, + "content": "1105. Curran Associates, Inc., 2012.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Yann A LeCun, Leon Bottou, Genevieve B Orr, and Klaus-Robert M ´ uller. Efficient backprop. In ¨", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 648, + 370, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 370, + 661 + ], + "score": 1.0, + "content": "Neural networks: Tricks of the trade, pp. 9–48. Springer, 2012.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "score": 1.0, + "content": "Guohao Li, Matthias Muller, Ali Thabet, and Bernard Ghanem. Deepgcns: Can gcns go as deep as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "cnns? In Proceedings of the IEEE International Conference on Computer Vision, pp. 9267–9276,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 689, + 143, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 143, + 702 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 491, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 491, + 732 + ], + "score": 1.0, + "content": "semi-supervised learning. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "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": "text", + "bbox": [ + 105, + 82, + 503, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "George Cybenko. Approximation by superpositions of a sigmoidal function. Mathematics of control,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 284, + 105 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 284, + 105 + ], + "score": 1.0, + "content": "signals and systems, 2(4):303–314, 1989.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 105 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 113, + 503, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 113, + 504, + 125 + ], + "spans": [ + { + "bbox": [ + 106, + 113, + 504, + 125 + ], + "score": 1.0, + "content": "Michael Defferrard, Xavier Bresson, and Pierre Vandergheynst. Convolutional neural networks¨", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 123, + 505, + 137 + ], + "spans": [ + { + "bbox": [ + 114, + 123, + 505, + 137 + ], + "score": 1.0, + "content": "on graphs with fast localized spectral filtering. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 135, + 353, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 135, + 353, + 147 + ], + "score": 1.0, + "content": "Systems 29, pp. 3844–3852. Curran Associates, Inc., 2016.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 113, + 505, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 505, + 199 + ], + "lines": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 505, + 167 + ], + "score": 1.0, + "content": "David K Duvenaud, Dougal Maclaurin, Jorge Iparraguirre, Rafael Bombarell, Timothy Hirzel, Alan", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 166, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 116, + 166, + 505, + 178 + ], + "score": 1.0, + "content": "Aspuru-Guzik, and Ryan P Adams. Convolutional networks on graphs for learning molecular", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 177, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 116, + 177, + 504, + 189 + ], + "score": 1.0, + "content": "fingerprints. In Advances in Neural Information Processing Systems 28, pp. 2224–2232. Curran", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 209, + 199 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 209, + 199 + ], + "score": 1.0, + "content": "Associates, Inc., 2015.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 106, + 154, + 505, + 199 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 207, + 502, + 230 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 505, + 219 + ], + "score": 1.0, + "content": "Paul Erdos and Alfr ¨ ed R ´ enyi. On random graphs I. ´ Publicationes Mathematicae (Debrecen), 6:", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 218, + 181, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 181, + 230 + ], + "score": 1.0, + "content": "290–297, 1959.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 206, + 505, + 230 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 237, + 501, + 249 + ], + "lines": [ + { + "bbox": [ + 106, + 236, + 501, + 251 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 501, + 251 + ], + "score": 1.0, + "content": "Edgar N Gilbert. Random graphs. The Annals of Mathematical Statistics, 30(4):1141–1144, 1959.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 236, + 501, + 251 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 257, + 503, + 280 + ], + "lines": [ + { + "bbox": [ + 106, + 256, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 256, + 505, + 271 + ], + "score": 1.0, + "content": "C Lee Giles, Kurt D Bollacker, and Steve Lawrence. Citeseer: an automatic citation indexing system.", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 268, + 474, + 280 + ], + "spans": [ + { + "bbox": [ + 115, + 268, + 474, + 280 + ], + "score": 1.0, + "content": "In Proceedings of the third ACM conference on Digital libraries, pp. 89–98. ACM, 1998.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 106, + 256, + 505, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 287, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 288, + 505, + 300 + ], + "score": 1.0, + "content": "Justin Gilmer, Samuel S. Schoenholz, Patrick F. Riley, Oriol Vinyals, and George E. Dahl. Neural", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 299, + 506, + 312 + ], + "spans": [ + { + "bbox": [ + 115, + 299, + 506, + 312 + ], + "score": 1.0, + "content": "message passing for quantum chemistry. In Proceedings of the 34th International Conference on", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "Machine Learning, volume 70 of Proceedings of Machine Learning Research, pp. 1263–1272.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 174, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 174, + 333 + ], + "score": 1.0, + "content": "PMLR, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 288, + 506, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 339, + 504, + 363 + ], + "lines": [ + { + "bbox": [ + 104, + 337, + 506, + 355 + ], + "spans": [ + { + "bbox": [ + 104, + 337, + 506, + 355 + ], + "score": 1.0, + "content": "Torben Hagerup and Christine Rub. A guided tour of Chernoff bounds. ¨ Information processing", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 351, + 235, + 363 + ], + "spans": [ + { + "bbox": [ + 116, + 351, + 235, + 363 + ], + "score": 1.0, + "content": "letters, 33(6):305–308, 1990.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 104, + 337, + 506, + 363 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 370, + 505, + 404 + ], + "lines": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 384 + ], + "score": 1.0, + "content": "Will Hamilton, Zhitao Ying, and Jure Leskovec. Inductive representation learning on large graphs.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 381, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 115, + 381, + 506, + 395 + ], + "score": 1.0, + "content": "In Advances in Neural Information Processing Systems 30, pp. 1024–1034. Curran Associates,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 392, + 163, + 405 + ], + "spans": [ + { + "bbox": [ + 115, + 392, + 163, + 405 + ], + "score": 1.0, + "content": "Inc., 2017.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 369, + 506, + 405 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 412, + 503, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 505, + 425 + ], + "score": 1.0, + "content": "Mikael Henaff, Joan Bruna, and Yann LeCun. Deep convolutional networks on graph-structured", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 423, + 302, + 436 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 302, + 436 + ], + "score": 1.0, + "content": "data. arXiv preprint arXiv:1506.05163, 2015.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 412, + 505, + 436 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 442, + 504, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "Kurt Hornik. Approximation capabilities of multilayer feedforward networks. Neural networks, 4", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 453, + 196, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 453, + 196, + 466 + ], + "score": 1.0, + "content": "(2):251–257, 1991.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25.5, + "bbox_fs": [ + 106, + 442, + 505, + 466 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 504, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "Kurt Hornik, Maxwell Stinchcombe, and Halbert White. Multilayer feedforward networks are uni-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 117, + 485, + 361, + 496 + ], + "spans": [ + { + "bbox": [ + 117, + 485, + 361, + 496 + ], + "score": 1.0, + "content": "versal approximators. Neural networks, 2(5):359–366, 1989.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 106, + 473, + 505, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 504, + 504, + 527 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 504, + 517 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 504, + 517 + ], + "score": 1.0, + "content": "CD Johnson. Stabilization of linear dynamical systems with respect to arbitrary linear subspaces.", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 515, + 416, + 527 + ], + "spans": [ + { + "bbox": [ + 116, + 515, + 416, + 527 + ], + "score": 1.0, + "content": "Journal of Mathematical Analysis and Applications, 44(1):175–186, 1973.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 503, + 504, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 504, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "Diederik P Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In International", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 545, + 310, + 558 + ], + "spans": [ + { + "bbox": [ + 116, + 545, + 310, + 558 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2015.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 106, + 534, + 505, + 558 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 564, + 504, + 588 + ], + "lines": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 505, + 578 + ], + "score": 1.0, + "content": "Thomas N. Kipf and Max Welling. Semi-supervised classification with graph convolutional net-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 577, + 406, + 588 + ], + "spans": [ + { + "bbox": [ + 117, + 577, + 406, + 588 + ], + "score": 1.0, + "content": "works. In International Conference on Learning Representations, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 564, + 505, + 588 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 595, + 503, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 505, + 609 + ], + "score": 1.0, + "content": "Alex Krizhevsky, Ilya Sutskever, and Geoffrey E Hinton. ImageNet classification with deep convo-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 116, + 607, + 505, + 619 + ], + "score": 1.0, + "content": "lutional neural networks. In Advances in Neural Information Processing Systems 25, pp. 1097–", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 117, + 618, + 264, + 629 + ], + "spans": [ + { + "bbox": [ + 117, + 618, + 264, + 629 + ], + "score": 1.0, + "content": "1105. Curran Associates, Inc., 2012.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 595, + 505, + 629 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 637, + 504, + 660 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Yann A LeCun, Leon Bottou, Genevieve B Orr, and Klaus-Robert M ´ uller. Efficient backprop. In ¨", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 648, + 370, + 661 + ], + "spans": [ + { + "bbox": [ + 115, + 648, + 370, + 661 + ], + "score": 1.0, + "content": "Neural networks: Tricks of the trade, pp. 9–48. Springer, 2012.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 106, + 637, + 505, + 661 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 667, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 682 + ], + "score": 1.0, + "content": "Guohao Li, Matthias Muller, Ali Thabet, and Bernard Ghanem. Deepgcns: Can gcns go as deep as", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 505, + 691 + ], + "score": 1.0, + "content": "cnns? In Proceedings of the IEEE International Conference on Computer Vision, pp. 9267–9276,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 689, + 143, + 702 + ], + "spans": [ + { + "bbox": [ + 115, + 689, + 143, + 702 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 666, + 506, + 702 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 503, + 732 + ], + "lines": [ + { + "bbox": [ + 107, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Qimai Li, Zhichao Han, and Xiao-Ming Wu. Deeper insights into graph convolutional networks for", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 721, + 491, + 732 + ], + "spans": [ + { + "bbox": [ + 116, + 721, + 491, + 732 + ], + "score": 1.0, + "content": "semi-supervised learning. In Thirty-Second AAAI Conference on Artificial Intelligence, 2018.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43.5, + "bbox_fs": [ + 107, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Yujia Li, Richard Zemel, and Marc Brockschmidt. Gated graph sequence neural networks. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 365, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 365, + 106 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 504, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 504, + 124 + ], + "score": 1.0, + "content": "Sitao Luan, Mingde Zhao, Xiao-Wen Chang, and Doina Precup. Break the ceiling: Stronger multi-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "score": 1.0, + "content": "scale deep graph convolutional networks. In Advances in Neural Information Processing Systems", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 329, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 329, + 145 + ], + "score": 1.0, + "content": "32, pp. 10943–10953. Curran Associates, Inc., 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 503, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "Andrew L. Maas, Awni Y. Hannun, and Andrew Y. Ng. Rectifier nonlinearities improve neural net-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 505, + 176 + ], + "score": 1.0, + "content": "work acoustic models. In in ICML Workshop on Deep Learning for Audio, Speech and Language", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 173, + 191, + 186 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 191, + 186 + ], + "score": 1.0, + "content": "Processing, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 108, + 190, + 504, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 204 + ], + "score": 1.0, + "content": "Andrew Kachites McCallum, Kamal Nigam, Jason Rennie, and Kristie Seymore. Automating the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 115, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "construction of internet portals with machine learning. Information Retrieval, 3(2):127–163,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 212, + 142, + 225 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 142, + 225 + ], + "score": 1.0, + "content": "2000.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "Song Mei and Andrea Montanari. The generalization error of random features regression: Precise", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 242, + 436, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 436, + 254 + ], + "score": 1.0, + "content": "asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 443, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 442, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 442, + 273 + ], + "score": 1.0, + "content": "Carl D Meyer. Matrix analysis and applied linear algebra, volume 71. Siam, 2000.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 503, + 301 + ], + "lines": [ + { + "bbox": [ + 106, + 278, + 504, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 504, + 291 + ], + "score": 1.0, + "content": "Hrushikesh Narhar Mhaskar. Approximation properties of a multilayered feedforward artificial neu-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 289, + 411, + 301 + ], + "spans": [ + { + "bbox": [ + 116, + 289, + 411, + 301 + ], + "score": 1.0, + "content": "ral network. Advances in Computational Mathematics, 1(1):61–80, 1993.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 502, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 504, + 320 + ], + "score": 1.0, + "content": "Hai Nguyen, Shinichi Maeda, and Kenta Oono. Semi-supervised learning of hierarchical represen-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 318, + 486, + 331 + ], + "spans": [ + { + "bbox": [ + 115, + 318, + 486, + 331 + ], + "score": 1.0, + "content": "tations of molecules using neural message passing. arXiv preprint arXiv:1711.10168, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 504, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "James R Norris. Markov chains. Number 2 in Cambridge Series in Statistical and Probabilistic", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 346, + 312, + 359 + ], + "spans": [ + { + "bbox": [ + 116, + 346, + 312, + 359 + ], + "score": 1.0, + "content": "Mathematics. Cambridge university press, 1998.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 504, + 388 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "score": 1.0, + "content": "Hoang NT and Takanori Maehara. Revisiting graph neural networks: All we have is low-pass filters.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 376, + 279, + 388 + ], + "spans": [ + { + "bbox": [ + 116, + 376, + 279, + 388 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1905.09550, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 504, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 504, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 504, + 407 + ], + "score": 1.0, + "content": "Kenta Oono and Taiji Suzuki. Approximation and non-parametric estimation of ResNet-type con-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 405, + 391, + 417 + ], + "spans": [ + { + "bbox": [ + 116, + 405, + 391, + 417 + ], + "score": 1.0, + "content": "volutional neural networks. arXiv preprint arXiv:1903.10047, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 503, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 436 + ], + "score": 1.0, + "content": "Sinno Jialin Pan and Qiang Yang. A survey on transfer learning. IEEE Transactions on knowledge", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 434, + 311, + 446 + ], + "spans": [ + { + "bbox": [ + 116, + 434, + 311, + 446 + ], + "score": 1.0, + "content": "and data engineering, 22(10):1345–1359, 2010.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 502, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 504, + 464 + ], + "score": 1.0, + "content": "Philipp Petersen and Felix Voigtlaender. Equivalence of approximation by convolutional neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 462, + 442, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 462, + 442, + 475 + ], + "score": 1.0, + "content": "networks and fully-connected networks. arXiv preprint arXiv:1809.00973, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 502, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 503, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 503, + 493 + ], + "score": 1.0, + "content": "Franco Scarselli, Marco Gori, Ah Chung Tsoi, Markus Hagenbuchner, and Gabriele Monfardini.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 491, + 496, + 504 + ], + "spans": [ + { + "bbox": [ + 116, + 491, + 496, + 504 + ], + "score": 1.0, + "content": "The graph neural network model. IEEE Transactions on Neural Networks, 20(1):61–80, 2009.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 108, + 509, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Michael Schlichtkrull, Thomas N Kipf, Peter Bloem, Rianne Van Den Berg, Ivan Titov, and Max", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Welling. Modeling relational data with graph convolutional networks. In European Semantic Web", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 532, + 286, + 544 + ], + "spans": [ + { + "bbox": [ + 117, + 532, + 286, + 544 + ], + "score": 1.0, + "content": "Conference, pp. 593–607. Springer, 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 105, + 549, + 503, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 561, + 416, + 573 + ], + "spans": [ + { + "bbox": [ + 117, + 561, + 416, + 573 + ], + "score": 1.0, + "content": "Collective classification in network data. AI magazine, 29(3):93–93, 2008.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 504, + 601 + ], + "lines": [ + { + "bbox": [ + 107, + 579, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 107, + 579, + 504, + 591 + ], + "score": 1.0, + "content": "Sho Sonoda and Noboru Murata. Neural network with unbounded activation functions is universal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 590, + 460, + 602 + ], + "spans": [ + { + "bbox": [ + 115, + 590, + 460, + 602 + ], + "score": 1.0, + "content": "approximator. Applied and Computational Harmonic Analysis, 43(2):233–268, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 108, + 607, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "Dropout: A simple way to prevent neural networks from overfitting. Journal of Machine Learning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 630, + 245, + 641 + ], + "spans": [ + { + "bbox": [ + 116, + 630, + 245, + 641 + ], + "score": 1.0, + "content": "Research, 15:1929–1958, 2014.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 504, + 681 + ], + "lines": [ + { + "bbox": [ + 104, + 645, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 104, + 645, + 506, + 662 + ], + "score": 1.0, + "content": "Matus Telgarsky. Benefits of depth in neural networks. In 29th Annual Conference on Learning", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 116, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Theory, volume 49 of Proceedings of Machine Learning Research, pp. 1517–1539. PMLR, 23–", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 669, + 170, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 170, + 681 + ], + "score": 1.0, + "content": "26 Jun 2016.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "Seiya Tokui, Kenta Oono, Shohei Hido, and Justin Clayton. Chainer: a next-generation open", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "source framework for deep learning. In Proceedings of Workshop on Machine Learning Sys-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "tems (LearningSys) in The Twenty-ninth Annual Conference on Neural Information Processing", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 720, + 208, + 732 + ], + "spans": [ + { + "bbox": [ + 114, + 720, + 208, + 732 + ], + "score": 1.0, + "content": "Systems (NIPS), 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "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": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 107, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "Yujia Li, Richard Zemel, and Marc Brockschmidt. Gated graph sequence neural networks. In", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 365, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 365, + 106 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2016.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 107, + 82, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 111, + 504, + 145 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 504, + 124 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 504, + 124 + ], + "score": 1.0, + "content": "Sitao Luan, Mingde Zhao, Xiao-Wen Chang, and Doina Precup. Break the ceiling: Stronger multi-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 116, + 123, + 505, + 135 + ], + "score": 1.0, + "content": "scale deep graph convolutional networks. In Advances in Neural Information Processing Systems", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 133, + 329, + 145 + ], + "spans": [ + { + "bbox": [ + 115, + 133, + 329, + 145 + ], + "score": 1.0, + "content": "32, pp. 10943–10953. Curran Associates, Inc., 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 106, + 110, + 505, + 145 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 150, + 503, + 185 + ], + "lines": [ + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "spans": [ + { + "bbox": [ + 106, + 151, + 505, + 163 + ], + "score": 1.0, + "content": "Andrew L. Maas, Awni Y. Hannun, and Andrew Y. Ng. Rectifier nonlinearities improve neural net-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 161, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 161, + 505, + 176 + ], + "score": 1.0, + "content": "work acoustic models. In in ICML Workshop on Deep Learning for Audio, Speech and Language", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 173, + 191, + 186 + ], + "spans": [ + { + "bbox": [ + 116, + 173, + 191, + 186 + ], + "score": 1.0, + "content": "Processing, 2013.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 151, + 505, + 186 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 190, + 504, + 225 + ], + "lines": [ + { + "bbox": [ + 105, + 190, + 505, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 505, + 204 + ], + "score": 1.0, + "content": "Andrew Kachites McCallum, Kamal Nigam, Jason Rennie, and Kristie Seymore. Automating the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 202, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 115, + 202, + 505, + 214 + ], + "score": 1.0, + "content": "construction of internet portals with machine learning. Information Retrieval, 3(2):127–163,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 212, + 142, + 225 + ], + "spans": [ + { + "bbox": [ + 115, + 212, + 142, + 225 + ], + "score": 1.0, + "content": "2000.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 190, + 505, + 225 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 230, + 504, + 254 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 244 + ], + "score": 1.0, + "content": "Song Mei and Andrea Montanari. The generalization error of random features regression: Precise", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 115, + 242, + 436, + 254 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 436, + 254 + ], + "score": 1.0, + "content": "asymptotics and double descent curve. arXiv preprint arXiv:1908.05355, 2019.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5, + "bbox_fs": [ + 106, + 230, + 505, + 254 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 259, + 443, + 272 + ], + "lines": [ + { + "bbox": [ + 105, + 259, + 442, + 273 + ], + "spans": [ + { + "bbox": [ + 105, + 259, + 442, + 273 + ], + "score": 1.0, + "content": "Carl D Meyer. Matrix analysis and applied linear algebra, volume 71. Siam, 2000.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 259, + 442, + 273 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 278, + 503, + 301 + ], + "lines": [ + { + "bbox": [ + 106, + 278, + 504, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 278, + 504, + 291 + ], + "score": 1.0, + "content": "Hrushikesh Narhar Mhaskar. Approximation properties of a multilayered feedforward artificial neu-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 116, + 289, + 411, + 301 + ], + "spans": [ + { + "bbox": [ + 116, + 289, + 411, + 301 + ], + "score": 1.0, + "content": "ral network. Advances in Computational Mathematics, 1(1):61–80, 1993.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 106, + 278, + 504, + 301 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 306, + 502, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 306, + 504, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 504, + 320 + ], + "score": 1.0, + "content": "Hai Nguyen, Shinichi Maeda, and Kenta Oono. Semi-supervised learning of hierarchical represen-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 318, + 486, + 331 + ], + "spans": [ + { + "bbox": [ + 115, + 318, + 486, + 331 + ], + "score": 1.0, + "content": "tations of molecules using neural message passing. arXiv preprint arXiv:1711.10168, 2017.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 306, + 504, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 335, + 504, + 359 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "James R Norris. Markov chains. Number 2 in Cambridge Series in Statistical and Probabilistic", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 346, + 312, + 359 + ], + "spans": [ + { + "bbox": [ + 116, + 346, + 312, + 359 + ], + "score": 1.0, + "content": "Mathematics. Cambridge university press, 1998.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 335, + 505, + 359 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 504, + 388 + ], + "lines": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 504, + 378 + ], + "score": 1.0, + "content": "Hoang NT and Takanori Maehara. Revisiting graph neural networks: All we have is low-pass filters.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 116, + 376, + 279, + 388 + ], + "spans": [ + { + "bbox": [ + 116, + 376, + 279, + 388 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1905.09550, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 365, + 504, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 393, + 504, + 417 + ], + "lines": [ + { + "bbox": [ + 106, + 394, + 504, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 394, + 504, + 407 + ], + "score": 1.0, + "content": "Kenta Oono and Taiji Suzuki. Approximation and non-parametric estimation of ResNet-type con-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 405, + 391, + 417 + ], + "spans": [ + { + "bbox": [ + 116, + 405, + 391, + 417 + ], + "score": 1.0, + "content": "volutional neural networks. arXiv preprint arXiv:1903.10047, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 394, + 504, + 417 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 423, + 503, + 446 + ], + "lines": [ + { + "bbox": [ + 106, + 421, + 505, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 505, + 436 + ], + "score": 1.0, + "content": "Sinno Jialin Pan and Qiang Yang. A survey on transfer learning. IEEE Transactions on knowledge", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 434, + 311, + 446 + ], + "spans": [ + { + "bbox": [ + 116, + 434, + 311, + 446 + ], + "score": 1.0, + "content": "and data engineering, 22(10):1345–1359, 2010.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 106, + 421, + 505, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 502, + 475 + ], + "lines": [ + { + "bbox": [ + 106, + 451, + 504, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 504, + 464 + ], + "score": 1.0, + "content": "Philipp Petersen and Felix Voigtlaender. Equivalence of approximation by convolutional neural", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 462, + 442, + 475 + ], + "spans": [ + { + "bbox": [ + 115, + 462, + 442, + 475 + ], + "score": 1.0, + "content": "networks and fully-connected networks. arXiv preprint arXiv:1809.00973, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 451, + 504, + 475 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 480, + 502, + 504 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 503, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 503, + 493 + ], + "score": 1.0, + "content": "Franco Scarselli, Marco Gori, Ah Chung Tsoi, Markus Hagenbuchner, and Gabriele Monfardini.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 491, + 496, + 504 + ], + "spans": [ + { + "bbox": [ + 116, + 491, + 496, + 504 + ], + "score": 1.0, + "content": "The graph neural network model. IEEE Transactions on Neural Networks, 20(1):61–80, 2009.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 480, + 503, + 504 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 509, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 505, + 522 + ], + "score": 1.0, + "content": "Michael Schlichtkrull, Thomas N Kipf, Peter Bloem, Rianne Van Den Berg, Ivan Titov, and Max", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 116, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Welling. Modeling relational data with graph convolutional networks. In European Semantic Web", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 117, + 532, + 286, + 544 + ], + "spans": [ + { + "bbox": [ + 117, + 532, + 286, + 544 + ], + "score": 1.0, + "content": "Conference, pp. 593–607. Springer, 2018.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 509, + 505, + 544 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 549, + 503, + 573 + ], + "lines": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "Prithviraj Sen, Galileo Namata, Mustafa Bilgic, Lise Getoor, Brian Galligher, and Tina Eliassi-Rad.", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 117, + 561, + 416, + 573 + ], + "spans": [ + { + "bbox": [ + 117, + 561, + 416, + 573 + ], + "score": 1.0, + "content": "Collective classification in network data. AI magazine, 29(3):93–93, 2008.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 106, + 549, + 505, + 573 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 578, + 504, + 601 + ], + "lines": [ + { + "bbox": [ + 107, + 579, + 504, + 591 + ], + "spans": [ + { + "bbox": [ + 107, + 579, + 504, + 591 + ], + "score": 1.0, + "content": "Sho Sonoda and Noboru Murata. Neural network with unbounded activation functions is universal", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 590, + 460, + 602 + ], + "spans": [ + { + "bbox": [ + 115, + 590, + 460, + 602 + ], + "score": 1.0, + "content": "approximator. Applied and Computational Harmonic Analysis, 43(2):233–268, 2017.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5, + "bbox_fs": [ + 107, + 579, + 504, + 602 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 607, + 504, + 641 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 621 + ], + "score": 1.0, + "content": "Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 115, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "Dropout: A simple way to prevent neural networks from overfitting. Journal of Machine Learning", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 630, + 245, + 641 + ], + "spans": [ + { + "bbox": [ + 116, + 630, + 245, + 641 + ], + "score": 1.0, + "content": "Research, 15:1929–1958, 2014.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 607, + 506, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 647, + 504, + 681 + ], + "lines": [ + { + "bbox": [ + 104, + 645, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 104, + 645, + 506, + 662 + ], + "score": 1.0, + "content": "Matus Telgarsky. Benefits of depth in neural networks. In 29th Annual Conference on Learning", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 116, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 116, + 659, + 505, + 671 + ], + "score": 1.0, + "content": "Theory, volume 49 of Proceedings of Machine Learning Research, pp. 1517–1539. PMLR, 23–", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 669, + 170, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 669, + 170, + 681 + ], + "score": 1.0, + "content": "26 Jun 2016.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 104, + 645, + 506, + 681 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "Seiya Tokui, Kenta Oono, Shohei Hido, and Justin Clayton. Chainer: a next-generation open", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 115, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "source framework for deep learning. In Proceedings of Workshop on Machine Learning Sys-", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "tems (LearningSys) in The Twenty-ninth Annual Conference on Neural Information Processing", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 114, + 720, + 208, + 732 + ], + "spans": [ + { + "bbox": [ + 114, + 720, + 208, + 732 + ], + "score": 1.0, + "content": "Systems (NIPS), 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 687, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Seiya Tokui, Ryosuke Okuta, Takuya Akiba, Yusuke Niitani, Toru Ogawa, Shunta Saito, Shuji", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "Suzuki, Kota Uenishi, Brian Vogel, and Hiroyuki Yamazaki Vincent. Chainer: A deep learn-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "ing framework for accelerating the research cycle. In Proceedings of the 25th ACM SIGKDD", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "International Conference on Knowledge Discovery & Data Mining, pp. 2002–2011. ACM, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Li ´ o, and Yoshua `", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "Bengio. Graph attention networks. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 154, + 143, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 143, + 169 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 174, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 505, + 188 + ], + "score": 1.0, + "content": "Saurabh Verma and Zhi-Li Zhang. Stability and generalization of graph convolutional neural net-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 185, + 504, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 185, + 504, + 198 + ], + "score": 1.0, + "content": "works. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Dis-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 197, + 236, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 197, + 236, + 209 + ], + "score": 1.0, + "content": "covery & Data Mining, 2019.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 502, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 504, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 504, + 229 + ], + "score": 1.0, + "content": "Boris Weisfeiler and Lehman A.A. A reduction of a graph to a canonical form and an algebra arising", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 227, + 434, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 434, + 239 + ], + "score": 1.0, + "content": "during this reduction. Nauchno-Technicheskaya Informatsia, 2(9):12–16, 1968.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 244, + 503, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "Felix Wu, Tianyi Zhang, Amauri Holanda de Souza Jr, Christopher Fifty, Tao Yu, and Kilian Q", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 505, + 269 + ], + "score": 1.0, + "content": "Weinberger. Simplifying graph convolutional networks. arXiv preprint arXiv:1902.07153, 2019a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S Yu. A", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 482, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 482, + 299 + ], + "score": 1.0, + "content": "comprehensive survey on graph neural networks. arXiv preprint arXiv:1901.00596, 2019b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 116, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 338, + 318, + 351 + ], + "spans": [ + { + "bbox": [ + 116, + 338, + 318, + 351 + ], + "score": 1.0, + "content": "Learning Research, pp. 5453–5462. PMLR, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5 + }, + { + "type": "text", + "bbox": [ + 107, + 356, + 503, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 367, + 421, + 380 + ], + "spans": [ + { + "bbox": [ + 115, + 367, + 421, + 380 + ], + "score": 1.0, + "content": "networks? In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 503, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "Dmitry Yarotsky. Error bounds for approximations with deep ReLU networks. Neural Networks,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 398, + 194, + 409 + ], + "spans": [ + { + "bbox": [ + 116, + 398, + 194, + 409 + ], + "score": 1.0, + "content": "94:103–114, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 504, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 504, + 429 + ], + "score": 1.0, + "content": "Jiawei Zhang. Gresnet: Graph residuals for reviving deep graph neural nets from suspended anima-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 428, + 300, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 300, + 439 + ], + "score": 1.0, + "content": "tion. arXiv preprint arXiv:1909.05729, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 504, + 479 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 404, + 459 + ], + "score": 1.0, + "content": "Lingxiao Zhao and Leman Akoglu. Pairnorm: Tackling oversmoothing in", + "type": "text" + }, + { + "bbox": [ + 404, + 446, + 434, + 459 + ], + "score": 0.85, + "content": "\\{ \\mathrm { g n n } \\} \\mathrm { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 446, + 505, + 459 + ], + "score": 1.0, + "content": ". In International", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 457, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 117, + 457, + 504, + 469 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2020. URL https://openreview.net/forum?", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 468, + 199, + 480 + ], + "spans": [ + { + "bbox": [ + 116, + 468, + 129, + 480 + ], + "score": 1.0, + "content": "id", + "type": "text" + }, + { + "bbox": [ + 129, + 470, + 136, + 478 + ], + "score": 0.38, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 468, + 199, + 480 + ], + "score": 1.0, + "content": "rkecl1rtwB.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 105, + 486, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 506, + 500 + ], + "score": 1.0, + "content": "Ding-Xuan Zhou. Universality of deep convolutional neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 497, + 220, + 510 + ], + "spans": [ + { + "bbox": [ + 115, + 497, + 220, + 510 + ], + "score": 1.0, + "content": "arXiv:1805.10769, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 109, + 516, + 503, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 531 + ], + "score": 1.0, + "content": "Pan Zhou and Jiashi Feng. Understanding generalization and optimization performance of deep", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "CNNs. In Proceedings of the 35th International Conference on Machine Learning, volume 80 of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 539, + 418, + 551 + ], + "spans": [ + { + "bbox": [ + 116, + 539, + 418, + 551 + ], + "score": 1.0, + "content": "Proceedings of Machine Learning Research, pp. 5960–5969. PMLR, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 570, + 244, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 245, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 245, + 586 + ], + "score": 1.0, + "content": "A PROOF OF THEOREM 1", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "As we wrote in the main article, it is enough to show the following lemmas (definition of mis-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 606, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 351, + 622 + ], + "score": 1.0, + "content": "cellaneous variables are as in Section 3.2). Remember that", + "type": "text" + }, + { + "bbox": [ + 352, + 608, + 444, + 621 + ], + "score": 0.92, + "content": "\\lambda = \\operatorname* { s u p } _ { n \\in [ N - M ] } | \\lambda _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 606, + 464, + 622 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 609, + 478, + 619 + ], + "score": 0.86, + "content": "s _ { l h }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 606, + 506, + 622 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 619, + 237, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 218, + 632 + ], + "score": 1.0, + "content": "maximum singular value of", + "type": "text" + }, + { + "bbox": [ + 219, + 619, + 237, + 631 + ], + "score": 0.89, + "content": "W _ { l h }", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 105, + 632, + 371, + 646 + ], + "lines": [ + { + "bbox": [ + 104, + 630, + 372, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 630, + 187, + 649 + ], + "score": 1.0, + "content": "Lemma 1. For any", + "type": "text" + }, + { + "bbox": [ + 187, + 633, + 236, + 644 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 630, + 276, + 649 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 276, + 633, + 367, + 646 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( P X ) \\leq \\lambda d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 630, + 372, + 649 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 105, + 648, + 387, + 661 + ], + "lines": [ + { + "bbox": [ + 104, + 644, + 387, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 187, + 664 + ], + "score": 1.0, + "content": "Lemma 2. For any", + "type": "text" + }, + { + "bbox": [ + 187, + 647, + 236, + 659 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 644, + 276, + 664 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 276, + 648, + 383, + 661 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( X W _ { l h } ) \\leq s _ { l h } d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 644, + 387, + 664 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 663, + 370, + 676 + ], + "lines": [ + { + "bbox": [ + 104, + 659, + 367, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 187, + 679 + ], + "score": 1.0, + "content": "Lemma 3. For any", + "type": "text" + }, + { + "bbox": [ + 187, + 663, + 236, + 674 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 659, + 276, + 679 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 276, + 663, + 367, + 676 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( \\sigma ( X ) ) \\leq d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + } + ], + "index": 40 + } + ], + "index": 40 + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 506, + 734 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 173, + 700 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 174, + 688, + 179, + 698 + ], + "score": 0.29, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 687, + 210, + 700 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 211, + 688, + 220, + 698 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 687, + 357, + 700 + ], + "score": 1.0, + "content": "is a symmetric linear operator on", + "type": "text" + }, + { + "bbox": [ + 357, + 687, + 372, + 698 + ], + "score": 0.89, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 687, + 506, + 700 + ], + "score": 1.0, + "content": ", we can choose the orthonormal", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 697, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 697, + 130, + 713 + ], + "score": 1.0, + "content": "basis", + "type": "text" + }, + { + "bbox": [ + 130, + 699, + 201, + 711 + ], + "score": 0.91, + "content": "( e _ { m } ) _ { m = M + 1 , \\dots , N }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 697, + 214, + 713 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 215, + 698, + 230, + 709 + ], + "score": 0.88, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 697, + 358, + 713 + ], + "score": 1.0, + "content": "consisting of the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 359, + 699, + 382, + 711 + ], + "score": 0.92, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 697, + 405, + 713 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 405, + 699, + 420, + 710 + ], + "score": 0.89, + "content": "\\lambda _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 697, + 507, + 713 + ], + "score": 1.0, + "content": "be the eigenvalue of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 115, + 720 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 708, + 155, + 722 + ], + "score": 1.0, + "content": "to which", + "type": "text" + }, + { + "bbox": [ + 155, + 712, + 168, + 721 + ], + "score": 0.85, + "content": "e _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 708, + 225, + 722 + ], + "score": 1.0, + "content": "is associated", + "type": "text" + }, + { + "bbox": [ + 225, + 710, + 315, + 721 + ], + "score": 0.89, + "content": "( m = M + 1 , \\ldots , N )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 708, + 470, + 722 + ], + "score": 1.0, + "content": ". Note that since the operator norm of", + "type": "text" + }, + { + "bbox": [ + 470, + 710, + 493, + 722 + ], + "score": 0.92, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 114, + 731 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 720, + 153, + 734 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 153, + 721, + 192, + 732 + ], + "score": 0.93, + "content": "| \\lambda _ { m } | \\leq \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 720, + 220, + 734 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 221, + 721, + 303, + 732 + ], + "score": 0.88, + "content": "m = M + 1 , \\ldots , N", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 720, + 333, + 734 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 333, + 720, + 378, + 733 + ], + "score": 0.93, + "content": "( e _ { m } ) _ { m \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "forms the orthonormal basis of", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + } + ], + "page_idx": 12, + "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 2020", + "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": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Seiya Tokui, Ryosuke Okuta, Takuya Akiba, Yusuke Niitani, Toru Ogawa, Shunta Saito, Shuji", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "Suzuki, Kota Uenishi, Brian Vogel, and Hiroyuki Yamazaki Vincent. Chainer: A deep learn-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "ing framework for accelerating the research cycle. In Proceedings of the 25th ACM SIGKDD", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 115, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "International Conference on Knowledge Discovery & Data Mining, pp. 2002–2011. ACM, 2019.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 128 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 133, + 504, + 167 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 147 + ], + "score": 1.0, + "content": "Petar Velickovi ˇ c, Guillem Cucurull, Arantxa Casanova, Adriana Romero, Pietro Li ´ o, and Yoshua `", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "Bengio. Graph attention networks. In International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 154, + 143, + 169 + ], + "spans": [ + { + "bbox": [ + 115, + 154, + 143, + 169 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5, + "bbox_fs": [ + 105, + 133, + 505, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 174, + 505, + 209 + ], + "lines": [ + { + "bbox": [ + 106, + 174, + 505, + 188 + ], + "spans": [ + { + "bbox": [ + 106, + 174, + 505, + 188 + ], + "score": 1.0, + "content": "Saurabh Verma and Zhi-Li Zhang. Stability and generalization of graph convolutional neural net-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 185, + 504, + 198 + ], + "spans": [ + { + "bbox": [ + 116, + 185, + 504, + 198 + ], + "score": 1.0, + "content": "works. In Proceedings of the 25th ACM SIGKDD International Conference on Knowledge Dis-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 197, + 236, + 209 + ], + "spans": [ + { + "bbox": [ + 115, + 197, + 236, + 209 + ], + "score": 1.0, + "content": "covery & Data Mining, 2019.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 106, + 174, + 505, + 209 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 215, + 502, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 214, + 504, + 229 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 504, + 229 + ], + "score": 1.0, + "content": "Boris Weisfeiler and Lehman A.A. A reduction of a graph to a canonical form and an algebra arising", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 227, + 434, + 239 + ], + "spans": [ + { + "bbox": [ + 116, + 227, + 434, + 239 + ], + "score": 1.0, + "content": "during this reduction. Nauchno-Technicheskaya Informatsia, 2(9):12–16, 1968.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 214, + 504, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 244, + 503, + 269 + ], + "lines": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 244, + 505, + 258 + ], + "score": 1.0, + "content": "Felix Wu, Tianyi Zhang, Amauri Holanda de Souza Jr, Christopher Fifty, Tao Yu, and Kilian Q", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 255, + 505, + 269 + ], + "spans": [ + { + "bbox": [ + 116, + 255, + 505, + 269 + ], + "score": 1.0, + "content": "Weinberger. Simplifying graph convolutional networks. arXiv preprint arXiv:1902.07153, 2019a.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 244, + 505, + 269 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 275, + 505, + 298 + ], + "lines": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "spans": [ + { + "bbox": [ + 105, + 274, + 505, + 288 + ], + "score": 1.0, + "content": "Zonghan Wu, Shirui Pan, Fengwen Chen, Guodong Long, Chengqi Zhang, and Philip S Yu. A", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 482, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 482, + 299 + ], + "score": 1.0, + "content": "comprehensive survey on graph neural networks. arXiv preprint arXiv:1901.00596, 2019b.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 274, + 505, + 299 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 304, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 506, + 318 + ], + "score": 1.0, + "content": "Keyulu Xu, Chengtao Li, Yonglong Tian, Tomohiro Sonobe, Ken-ichi Kawarabayashi, and Stefanie", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 115, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "Jegelka. Representation learning on graphs with jumping knowledge networks. In Proceedings of", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 116, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 116, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "the 35th International Conference on Machine Learning, volume 80 of Proceedings of Machine", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 338, + 318, + 351 + ], + "spans": [ + { + "bbox": [ + 116, + 338, + 318, + 351 + ], + "score": 1.0, + "content": "Learning Research, pp. 5453–5462. PMLR, 2018.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 17.5, + "bbox_fs": [ + 106, + 305, + 506, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 356, + 503, + 380 + ], + "lines": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 106, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "Keyulu Xu, Weihua Hu, Jure Leskovec, and Stefanie Jegelka. How powerful are graph neural", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 367, + 421, + 380 + ], + "spans": [ + { + "bbox": [ + 115, + 367, + 421, + 380 + ], + "score": 1.0, + "content": "networks? In International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 356, + 505, + 380 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 503, + 410 + ], + "lines": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "Dmitry Yarotsky. Error bounds for approximations with deep ReLU networks. Neural Networks,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 398, + 194, + 409 + ], + "spans": [ + { + "bbox": [ + 116, + 398, + 194, + 409 + ], + "score": 1.0, + "content": "94:103–114, 2017.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 386, + 505, + 409 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 416, + 504, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 416, + 504, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 504, + 429 + ], + "score": 1.0, + "content": "Jiawei Zhang. Gresnet: Graph residuals for reviving deep graph neural nets from suspended anima-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 428, + 300, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 428, + 300, + 439 + ], + "score": 1.0, + "content": "tion. arXiv preprint arXiv:1909.05729, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 416, + 504, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 446, + 504, + 479 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 404, + 459 + ], + "score": 1.0, + "content": "Lingxiao Zhao and Leman Akoglu. Pairnorm: Tackling oversmoothing in", + "type": "text" + }, + { + "bbox": [ + 404, + 446, + 434, + 459 + ], + "score": 0.85, + "content": "\\{ \\mathrm { g n n } \\} \\mathrm { s }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 446, + 505, + 459 + ], + "score": 1.0, + "content": ". In International", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 117, + 457, + 504, + 469 + ], + "spans": [ + { + "bbox": [ + 117, + 457, + 504, + 469 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2020. URL https://openreview.net/forum?", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 468, + 199, + 480 + ], + "spans": [ + { + "bbox": [ + 116, + 468, + 129, + 480 + ], + "score": 1.0, + "content": "id", + "type": "text" + }, + { + "bbox": [ + 129, + 470, + 136, + 478 + ], + "score": 0.38, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 136, + 468, + 199, + 480 + ], + "score": 1.0, + "content": "rkecl1rtwB.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 446, + 505, + 480 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 486, + 505, + 510 + ], + "lines": [ + { + "bbox": [ + 106, + 485, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 506, + 500 + ], + "score": 1.0, + "content": "Ding-Xuan Zhou. Universality of deep convolutional neural networks. arXiv preprint", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 497, + 220, + 510 + ], + "spans": [ + { + "bbox": [ + 115, + 497, + 220, + 510 + ], + "score": 1.0, + "content": "arXiv:1805.10769, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 106, + 485, + 506, + 510 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 516, + 503, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 515, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 531 + ], + "score": 1.0, + "content": "Pan Zhou and Jiashi Feng. Understanding generalization and optimization performance of deep", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 116, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "CNNs. In Proceedings of the 35th International Conference on Machine Learning, volume 80 of", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 539, + 418, + 551 + ], + "spans": [ + { + "bbox": [ + 116, + 539, + 418, + 551 + ], + "score": 1.0, + "content": "Proceedings of Machine Learning Research, pp. 5960–5969. PMLR, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 515, + 505, + 551 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 570, + 244, + 584 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 245, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 245, + 586 + ], + "score": 1.0, + "content": "A PROOF OF THEOREM 1", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 596, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "As we wrote in the main article, it is enough to show the following lemmas (definition of mis-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 606, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 351, + 622 + ], + "score": 1.0, + "content": "cellaneous variables are as in Section 3.2). Remember that", + "type": "text" + }, + { + "bbox": [ + 352, + 608, + 444, + 621 + ], + "score": 0.92, + "content": "\\lambda = \\operatorname* { s u p } _ { n \\in [ N - M ] } | \\lambda _ { n } |", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 606, + 464, + 622 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 465, + 609, + 478, + 619 + ], + "score": 0.86, + "content": "s _ { l h }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 606, + 506, + 622 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 619, + 237, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 218, + 632 + ], + "score": 1.0, + "content": "maximum singular value of", + "type": "text" + }, + { + "bbox": [ + 219, + 619, + 237, + 631 + ], + "score": 0.89, + "content": "W _ { l h }", + "type": "inline_equation" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 596, + 506, + 632 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 632, + 371, + 646 + ], + "lines": [ + { + "bbox": [ + 104, + 630, + 372, + 649 + ], + "spans": [ + { + "bbox": [ + 104, + 630, + 187, + 649 + ], + "score": 1.0, + "content": "Lemma 1. For any", + "type": "text" + }, + { + "bbox": [ + 187, + 633, + 236, + 644 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 630, + 276, + 649 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 276, + 633, + 367, + 646 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( P X ) \\leq \\lambda d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 630, + 372, + 649 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 630, + 372, + 649 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 648, + 387, + 661 + ], + "lines": [ + { + "bbox": [ + 104, + 644, + 387, + 664 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 187, + 664 + ], + "score": 1.0, + "content": "Lemma 2. For any", + "type": "text" + }, + { + "bbox": [ + 187, + 647, + 236, + 659 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 644, + 276, + 664 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 276, + 648, + 383, + 661 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( X W _ { l h } ) \\leq s _ { l h } d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 644, + 387, + 664 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 104, + 644, + 387, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 663, + 370, + 676 + ], + "lines": [ + { + "bbox": [ + 104, + 659, + 367, + 679 + ], + "spans": [ + { + "bbox": [ + 104, + 659, + 187, + 679 + ], + "score": 1.0, + "content": "Lemma 3. For any", + "type": "text" + }, + { + "bbox": [ + 187, + 663, + 236, + 674 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 659, + 276, + 679 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 276, + 663, + 367, + 676 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( \\sigma ( X ) ) \\leq d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 659, + 367, + 679 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 687, + 506, + 734 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 173, + 700 + ], + "score": 1.0, + "content": "Proof of Lemma", + "type": "text" + }, + { + "bbox": [ + 174, + 688, + 179, + 698 + ], + "score": 0.29, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 687, + 210, + 700 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 211, + 688, + 220, + 698 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 220, + 687, + 357, + 700 + ], + "score": 1.0, + "content": "is a symmetric linear operator on", + "type": "text" + }, + { + "bbox": [ + 357, + 687, + 372, + 698 + ], + "score": 0.89, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 687, + 506, + 700 + ], + "score": 1.0, + "content": ", we can choose the orthonormal", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 697, + 507, + 713 + ], + "spans": [ + { + "bbox": [ + 104, + 697, + 130, + 713 + ], + "score": 1.0, + "content": "basis", + "type": "text" + }, + { + "bbox": [ + 130, + 699, + 201, + 711 + ], + "score": 0.91, + "content": "( e _ { m } ) _ { m = M + 1 , \\dots , N }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 697, + 214, + 713 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 215, + 698, + 230, + 709 + ], + "score": 0.88, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 697, + 358, + 713 + ], + "score": 1.0, + "content": "consisting of the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 359, + 699, + 382, + 711 + ], + "score": 0.92, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 697, + 405, + 713 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 405, + 699, + 420, + 710 + ], + "score": 0.89, + "content": "\\lambda _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 697, + 507, + 713 + ], + "score": 1.0, + "content": "be the eigenvalue of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 107, + 708, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 115, + 720 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 708, + 155, + 722 + ], + "score": 1.0, + "content": "to which", + "type": "text" + }, + { + "bbox": [ + 155, + 712, + 168, + 721 + ], + "score": 0.85, + "content": "e _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 708, + 225, + 722 + ], + "score": 1.0, + "content": "is associated", + "type": "text" + }, + { + "bbox": [ + 225, + 710, + 315, + 721 + ], + "score": 0.89, + "content": "( m = M + 1 , \\ldots , N )", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 708, + 470, + 722 + ], + "score": 1.0, + "content": ". Note that since the operator norm of", + "type": "text" + }, + { + "bbox": [ + 470, + 710, + 493, + 722 + ], + "score": 0.92, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 708, + 506, + 722 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 114, + 731 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 720, + 153, + 734 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 153, + 721, + 192, + 732 + ], + "score": 0.93, + "content": "| \\lambda _ { m } | \\leq \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 720, + 220, + 734 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 221, + 721, + 303, + 732 + ], + "score": 0.88, + "content": "m = M + 1 , \\ldots , N", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 720, + 333, + 734 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 333, + 720, + 378, + 733 + ], + "score": 0.93, + "content": "( e _ { m } ) _ { m \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "forms the orthonormal basis of", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 73, + 510, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 122, + 93 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { N }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 122, + 73, + 218, + 101 + ], + "score": 1.0, + "content": ", we can uniquely write", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 219, + 81, + 270, + 93 + ], + "score": 0.92, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 270, + 73, + 282, + 101 + ], + "score": 1.0, + "content": "as", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 282, + 80, + 376, + 95 + ], + "score": 0.93, + "content": "\\begin{array} { r } { X = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes w _ { m } } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 377, + 73, + 416, + 101 + ], + "score": 1.0, + "content": "for some", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 416, + 81, + 459, + 94 + ], + "score": 0.93, + "content": "w _ { m } \\in \\mathbb { R } ^ { C }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 460, + 73, + 510, + 101 + ], + "score": 1.0, + "content": ". Then, we", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 86, + 512, + 117 + ], + "spans": [ + { + "bbox": [ + 99, + 86, + 127, + 117 + ], + "score": 1.0, + "content": "have", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 127, + 93, + 247, + 110 + ], + "score": 0.93, + "content": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 247, + 86, + 275, + 117 + ], + "score": 1.0, + "content": "where", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 275, + 96, + 291, + 109 + ], + "score": 0.9, + "content": "\\| \\cdot \\|", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 292, + 86, + 512, + 117 + ], + "score": 1.0, + "content": "m=1 m m m is the 2-norm of a vector. On the other hand, we have", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 42.5, + "bbox_fs": [ + 104, + 687, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 79, + 506, + 110 + ], + "lines": [ + { + "bbox": [ + 106, + 73, + 510, + 101 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 122, + 93 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 122, + 73, + 218, + 101 + ], + "score": 1.0, + "content": ", we can uniquely write", + "type": "text" + }, + { + "bbox": [ + 219, + 81, + 270, + 93 + ], + "score": 0.92, + "content": "X \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 73, + 282, + 101 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 282, + 80, + 376, + 95 + ], + "score": 0.93, + "content": "\\begin{array} { r } { X = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes w _ { m } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 73, + 416, + 101 + ], + "score": 1.0, + "content": "for some", + "type": "text" + }, + { + "bbox": [ + 416, + 81, + 459, + 94 + ], + "score": 0.93, + "content": "w _ { m } \\in \\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 73, + 510, + 101 + ], + "score": 1.0, + "content": ". Then, we", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 99, + 86, + 512, + 117 + ], + "spans": [ + { + "bbox": [ + 99, + 86, + 127, + 117 + ], + "score": 1.0, + "content": "have", + "type": "text" + }, + { + "bbox": [ + 127, + 93, + 247, + 110 + ], + "score": 0.93, + "content": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 86, + 275, + 117 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 275, + 96, + 291, + 109 + ], + "score": 0.9, + "content": "\\| \\cdot \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 86, + 512, + 117 + ], + "score": 1.0, + "content": "m=1 m m m is the 2-norm of a vector. On the other hand, we have", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 116, + 408, + 223 + ], + "lines": [ + { + "bbox": [ + 203, + 116, + 408, + 223 + ], + "spans": [ + { + "bbox": [ + 203, + 116, + 408, + 223 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle P X = \\sum _ { m = 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { ~ } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes \\left( \\lambda _ { m } w _ { m } \\right) } } \\end{array}", + "type": "interline_equation", + "image_path": "ebdf38f8421714663fc0ce017ea1e1607adc9bfbfba6c6df26e9662d41ab49ca.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 203, + 116, + 408, + 137.4 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 203, + 137.4, + 408, + 158.8 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 203, + 158.8, + 408, + 180.20000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 203, + 180.20000000000002, + 408, + 201.60000000000002 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 203, + 201.60000000000002, + 408, + 223.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 229, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 132, + 228, + 510, + 267 + ], + "spans": [ + { + "bbox": [ + 132, + 230, + 141, + 240 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 228, + 218, + 267 + ], + "score": 1.0, + "content": "nvariant under . Therefore, w", + "type": "text" + }, + { + "bbox": [ + 219, + 230, + 228, + 240 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 228, + 245, + 267 + ], + "score": 1.0, + "content": ", forhave", + "type": "text" + }, + { + "bbox": [ + 266, + 230, + 309, + 241 + ], + "score": 0.91, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 230, + 392, + 241 + ], + "score": 0.9, + "content": "P e _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 228, + 510, + 267 + ], + "score": 1.0, + "content": "as a linear combination ofThen, we obtain the desired", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 241, + 387, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 160, + 255 + ], + "score": 0.91, + "content": "e _ { n } ( n \\in [ M ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 241, + 387, + 257 + ], + "score": 0.92, + "content": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 7.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 272, + 371, + 397 + ], + "lines": [ + { + "bbox": [ + 239, + 272, + 371, + 397 + ], + "spans": [ + { + "bbox": [ + 239, + 272, + 371, + 397 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } { { d _ { { \\mathcal M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } } \\\\ & { } & \\\\ & { } & { \\leq \\lambda ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { \\leq \\lambda ^ { 2 } \\displaystyle \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & \\\\ & { } & { = \\lambda ^ { 2 } d _ { { \\mathcal M } } ^ { 2 } ( X ) . } \\end{array}", + "type": "interline_equation", + "image_path": "2d20c7b13c75612e652ad08f45b54ce116add66b3167800688d04acf8a22592a.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 272, + 371, + 334.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 239, + 334.5, + 371, + 397.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 430, + 471, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 471, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 322, + 444 + ], + "score": 1.0, + "content": "Proof of Lemma 2. Using the same decomposition of", + "type": "text" + }, + { + "bbox": [ + 322, + 432, + 332, + 441 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 430, + 471, + 444 + ], + "score": 1.0, + "content": "as the proof in Lemma 1, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 449, + 425, + 521 + ], + "lines": [ + { + "bbox": [ + 186, + 449, + 425, + 521 + ], + "spans": [ + { + "bbox": [ + 186, + 449, + 425, + 521 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { X W _ { l h } = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) } } \\\\ & { } & { = \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "11c62737dd7afa77a1fa1f9b149e31987b5092043d5a2cbbdcbc4dd3cd85d7da.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 186, + 449, + 425, + 473.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 186, + 473.0, + 425, + 497.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 186, + 497.0, + 425, + 521.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 186, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 186, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 186, + 539 + ], + "score": 1.0, + "content": "Therefore, we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 545, + 378, + 632 + ], + "lines": [ + { + "bbox": [ + 232, + 545, + 378, + 632 + ], + "spans": [ + { + "bbox": [ + 232, + 545, + 378, + 632 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { d _ { \\mathcal { M } } ^ { 2 } ( X W _ { l h } ) = \\sum _ { m = M + 1 } ^ { N } \\| W _ { l h } ^ { \\top } w _ { m } \\| ^ { 2 } } } \\\\ & { } & { \\leq s _ { l h } ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { = s _ { l h } ^ { 2 } d _ { \\mathcal { M } } ^ { 2 } ( X ) . } \\end{array}", + "type": "interline_equation", + "image_path": "1e1f7af71d03e46e2b2c1f6a93dbe12369a4668beb889066020801bff330d278.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 545, + 378, + 588.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 232, + 588.5, + 378, + 632.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 506, + 735 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 232, + 681 + ], + "score": 1.0, + "content": "Proof of Lemma 3. We choose", + "type": "text" + }, + { + "bbox": [ + 233, + 668, + 317, + 680 + ], + "score": 0.91, + "content": "( e _ { m } ) _ { m = N - M + 1 , \\dots , N }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 666, + 482, + 681 + ], + "score": 1.0, + "content": "as in the proof of Lemma 1. We denote", + "type": "text" + }, + { + "bbox": [ + 483, + 668, + 505, + 678 + ], + "score": 0.85, + "content": "X =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 676, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 107, + 680, + 177, + 693 + ], + "score": 0.93, + "content": "( X _ { n c } ) _ { n \\in [ N ] , c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 676, + 196, + 695 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 196, + 680, + 272, + 693 + ], + "score": 0.92, + "content": "e _ { n } = ( e _ { m n } ) _ { m \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 676, + 348, + 695 + ], + "score": 1.0, + "content": ", respectively. Let", + "type": "text" + }, + { + "bbox": [ + 348, + 679, + 385, + 693 + ], + "score": 0.92, + "content": "( e _ { c } ^ { \\prime } ) _ { c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 676, + 486, + 695 + ], + "score": 1.0, + "content": "be the standard basis of", + "type": "text" + }, + { + "bbox": [ + 486, + 679, + 501, + 690 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 676, + 506, + 695 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 689, + 507, + 706 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 133, + 706 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + }, + { + "bbox": [ + 134, + 693, + 219, + 705 + ], + "score": 0.92, + "content": "( e _ { n } \\otimes e _ { c } ^ { \\prime } ) _ { n \\in [ N ] , c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 689, + 335, + 706 + ], + "score": 1.0, + "content": "is the orthonormal basis of", + "type": "text" + }, + { + "bbox": [ + 335, + 692, + 363, + 702 + ], + "score": 0.91, + "content": "\\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 689, + 507, + 706 + ], + "score": 1.0, + "content": ", endowed with the standard inner", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 103, + 703, + 508, + 725 + ], + "spans": [ + { + "bbox": [ + 103, + 703, + 334, + 725 + ], + "score": 1.0, + "content": "product as a Euclid space. Therefore, we can decompose", + "type": "text" + }, + { + "bbox": [ + 334, + 707, + 344, + 717 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 703, + 356, + 725 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 356, + 704, + 477, + 719 + ], + "score": 0.92, + "content": "\\begin{array} { r } { X = \\sum _ { n = 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { n } \\otimes e _ { c } ^ { \\prime } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 703, + 508, + 725 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 711, + 501, + 741 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 274, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { a _ { n c } = \\left. X , e _ { n } \\otimes e _ { c } ^ { \\prime } \\right. = \\sum _ { m = 1 } ^ { N } X _ { m c } e _ { m n } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 711, + 344, + 741 + ], + "score": 1.0, + "content": ". Then, we have", + "type": "text" + }, + { + "bbox": [ + 344, + 719, + 501, + 734 + ], + "score": 0.9, + "content": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { \\prime } \\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 20 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 637, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 495, + 639, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 495, + 639, + 505, + 649 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 402, + 505, + 413 + ], + "lines": [ + { + "bbox": [ + 496, + 404, + 504, + 412 + ], + "spans": [ + { + "bbox": [ + 496, + 404, + 504, + 412 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 79, + 506, + 110 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 99, + 73, + 512, + 117 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 116, + 408, + 223 + ], + "lines": [ + { + "bbox": [ + 203, + 116, + 408, + 223 + ], + "spans": [ + { + "bbox": [ + 203, + 116, + 408, + 223 + ], + "score": 0.95, + "content": "\\begin{array} { l } { { \\displaystyle P X = \\sum _ { m = 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { ~ } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes \\left( \\lambda _ { m } w _ { m } \\right) } } \\end{array}", + "type": "interline_equation", + "image_path": "ebdf38f8421714663fc0ce017ea1e1607adc9bfbfba6c6df26e9662d41ab49ca.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 203, + 116, + 408, + 137.4 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 203, + 137.4, + 408, + 158.8 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 203, + 158.8, + 408, + 180.20000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 203, + 180.20000000000002, + 408, + 201.60000000000002 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 203, + 201.60000000000002, + 408, + 223.00000000000003 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 229, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 132, + 228, + 510, + 267 + ], + "spans": [ + { + "bbox": [ + 132, + 230, + 141, + 240 + ], + "score": 0.81, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 228, + 218, + 267 + ], + "score": 1.0, + "content": "nvariant under . Therefore, w", + "type": "text" + }, + { + "bbox": [ + 219, + 230, + 228, + 240 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 228, + 245, + 267 + ], + "score": 1.0, + "content": ", forhave", + "type": "text" + }, + { + "bbox": [ + 266, + 230, + 309, + 241 + ], + "score": 0.91, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 230, + 392, + 241 + ], + "score": 0.9, + "content": "P e _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 228, + 510, + 267 + ], + "score": 1.0, + "content": "as a linear combination ofThen, we obtain the desired", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 241, + 387, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 243, + 160, + 255 + ], + "score": 0.91, + "content": "e _ { n } ( n \\in [ M ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 241, + 387, + 257 + ], + "score": 0.92, + "content": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 7 + } + ], + "index": 7.5, + "bbox_fs": [ + 106, + 228, + 510, + 267 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 272, + 371, + 397 + ], + "lines": [ + { + "bbox": [ + 239, + 272, + 371, + 397 + ], + "spans": [ + { + "bbox": [ + 239, + 272, + 371, + 397 + ], + "score": 0.92, + "content": "\\begin{array} { r l r } { { d _ { { \\mathcal M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } } \\\\ & { } & \\\\ & { } & { \\leq \\lambda ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { \\leq \\lambda ^ { 2 } \\displaystyle \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & \\\\ & { } & { = \\lambda ^ { 2 } d _ { { \\mathcal M } } ^ { 2 } ( X ) . } \\end{array}", + "type": "interline_equation", + "image_path": "2d20c7b13c75612e652ad08f45b54ce116add66b3167800688d04acf8a22592a.jpg" + } + ] + } + ], + "index": 9.5, + "virtual_lines": [ + { + "bbox": [ + 239, + 272, + 371, + 334.5 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 239, + 334.5, + 371, + 397.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 430, + 471, + 443 + ], + "lines": [ + { + "bbox": [ + 106, + 430, + 471, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 430, + 322, + 444 + ], + "score": 1.0, + "content": "Proof of Lemma 2. Using the same decomposition of", + "type": "text" + }, + { + "bbox": [ + 322, + 432, + 332, + 441 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 430, + 471, + 444 + ], + "score": 1.0, + "content": "as the proof in Lemma 1, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 430, + 471, + 444 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 449, + 425, + 521 + ], + "lines": [ + { + "bbox": [ + 186, + 449, + 425, + 521 + ], + "spans": [ + { + "bbox": [ + 186, + 449, + 425, + 521 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { X W _ { l h } = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) } } \\\\ & { } & { = \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "11c62737dd7afa77a1fa1f9b149e31987b5092043d5a2cbbdcbc4dd3cd85d7da.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 186, + 449, + 425, + 473.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 186, + 473.0, + 425, + 497.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 186, + 497.0, + 425, + 521.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 526, + 186, + 538 + ], + "lines": [ + { + "bbox": [ + 106, + 525, + 186, + 539 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 186, + 539 + ], + "score": 1.0, + "content": "Therefore, we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 525, + 186, + 539 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 232, + 545, + 378, + 632 + ], + "lines": [ + { + "bbox": [ + 232, + 545, + 378, + 632 + ], + "spans": [ + { + "bbox": [ + 232, + 545, + 378, + 632 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { { d _ { \\mathcal { M } } ^ { 2 } ( X W _ { l h } ) = \\sum _ { m = M + 1 } ^ { N } \\| W _ { l h } ^ { \\top } w _ { m } \\| ^ { 2 } } } \\\\ & { } & { \\leq s _ { l h } ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { = s _ { l h } ^ { 2 } d _ { \\mathcal { M } } ^ { 2 } ( X ) . } \\end{array}", + "type": "interline_equation", + "image_path": "1e1f7af71d03e46e2b2c1f6a93dbe12369a4668beb889066020801bff330d278.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 232, + 545, + 378, + 588.5 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 232, + 588.5, + 378, + 632.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 506, + 735 + ], + "lines": [ + { + "bbox": [ + 105, + 666, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 232, + 681 + ], + "score": 1.0, + "content": "Proof of Lemma 3. We choose", + "type": "text" + }, + { + "bbox": [ + 233, + 668, + 317, + 680 + ], + "score": 0.91, + "content": "( e _ { m } ) _ { m = N - M + 1 , \\dots , N }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 666, + 482, + 681 + ], + "score": 1.0, + "content": "as in the proof of Lemma 1. We denote", + "type": "text" + }, + { + "bbox": [ + 483, + 668, + 505, + 678 + ], + "score": 0.85, + "content": "X =", + "type": "inline_equation" + } + ], + "index": 18 + }, + { + "bbox": [ + 107, + 676, + 506, + 695 + ], + "spans": [ + { + "bbox": [ + 107, + 680, + 177, + 693 + ], + "score": 0.93, + "content": "( X _ { n c } ) _ { n \\in [ N ] , c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 676, + 196, + 695 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 196, + 680, + 272, + 693 + ], + "score": 0.92, + "content": "e _ { n } = ( e _ { m n } ) _ { m \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 676, + 348, + 695 + ], + "score": 1.0, + "content": ", respectively. Let", + "type": "text" + }, + { + "bbox": [ + 348, + 679, + 385, + 693 + ], + "score": 0.92, + "content": "( e _ { c } ^ { \\prime } ) _ { c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 676, + 486, + 695 + ], + "score": 1.0, + "content": "be the standard basis of", + "type": "text" + }, + { + "bbox": [ + 486, + 679, + 501, + 690 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 676, + 506, + 695 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 689, + 507, + 706 + ], + "spans": [ + { + "bbox": [ + 104, + 689, + 133, + 706 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + }, + { + "bbox": [ + 134, + 693, + 219, + 705 + ], + "score": 0.92, + "content": "( e _ { n } \\otimes e _ { c } ^ { \\prime } ) _ { n \\in [ N ] , c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 689, + 335, + 706 + ], + "score": 1.0, + "content": "is the orthonormal basis of", + "type": "text" + }, + { + "bbox": [ + 335, + 692, + 363, + 702 + ], + "score": 0.91, + "content": "\\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 689, + 507, + 706 + ], + "score": 1.0, + "content": ", endowed with the standard inner", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 103, + 703, + 508, + 725 + ], + "spans": [ + { + "bbox": [ + 103, + 703, + 334, + 725 + ], + "score": 1.0, + "content": "product as a Euclid space. Therefore, we can decompose", + "type": "text" + }, + { + "bbox": [ + 334, + 707, + 344, + 717 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 703, + 356, + 725 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 356, + 704, + 477, + 719 + ], + "score": 0.92, + "content": "\\begin{array} { r } { X = \\sum _ { n = 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { n } \\otimes e _ { c } ^ { \\prime } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 703, + 508, + 725 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 711, + 501, + 741 + ], + "spans": [ + { + "bbox": [ + 106, + 718, + 274, + 734 + ], + "score": 0.92, + "content": "\\begin{array} { r } { a _ { n c } = \\left. X , e _ { n } \\otimes e _ { c } ^ { \\prime } \\right. = \\sum _ { m = 1 } ^ { N } X _ { m c } e _ { m n } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 711, + 344, + 741 + ], + "score": 1.0, + "content": ". Then, we have", + "type": "text" + }, + { + "bbox": [ + 344, + 719, + 501, + 734 + ], + "score": 0.9, + "content": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { \\prime } \\| ^ { 2 } } \\end{array}", + "type": "inline_equation" + } + ], + "index": 22 + } + ], + "index": 20, + "bbox_fs": [ + 103, + 666, + 508, + 741 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 234, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 234, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 234, + 95 + ], + "score": 1.0, + "content": "which is further transformed as", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 97, + 395, + 240 + ], + "lines": [ + { + "bbox": [ + 213, + 97, + 395, + 240 + ], + "spans": [ + { + "bbox": [ + 213, + 97, + 395, + 240 + ], + "score": 0.95, + "content": "\\begin{array} { l } { \\displaystyle d _ { M } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\left\\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { t } \\right\\| ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { n = M + 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\sum _ { n = 1 } ^ { N } a _ { n c } ^ { 2 } - \\sum _ { n = 1 } ^ { M } a _ { n c } ^ { 2 } \\right) } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\mathrm { - c } } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } ( X _ { \\mathrm { - c } } , e _ { n } ) ^ { 2 } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "3e54bc240f5d9875acd41a1878664feda1310273d70a7eb5f0d1b1f678be3ff5.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 213, + 97, + 395, + 111.3 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 213, + 111.3, + 395, + 125.6 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 213, + 125.6, + 395, + 139.9 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 213, + 139.9, + 395, + 154.20000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 213, + 154.20000000000002, + 395, + 168.50000000000003 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 213, + 168.50000000000003, + 395, + 182.80000000000004 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 213, + 182.80000000000004, + 395, + 197.10000000000005 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 213, + 197.10000000000005, + 395, + 211.40000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 213, + 211.40000000000006, + 395, + 225.70000000000007 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 213, + 225.70000000000007, + 395, + 240.00000000000009 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 354, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 354, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 133, + 254 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 242, + 149, + 252 + ], + "score": 0.87, + "content": "X _ { \\cdot c }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 240, + 174, + 254 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 174, + 243, + 180, + 251 + ], + "score": 0.8, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 240, + 263, + 254 + ], + "score": 1.0, + "content": "-th column vector of", + "type": "text" + }, + { + "bbox": [ + 263, + 242, + 272, + 251 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 240, + 354, + 254 + ], + "score": 1.0, + "content": ". Similarly, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 256, + 403, + 290 + ], + "lines": [ + { + "bbox": [ + 207, + 256, + 403, + 290 + ], + "spans": [ + { + "bbox": [ + 207, + 256, + 403, + 290 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ^ { 2 } ( \\sigma ( X ) ) = \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\cdot c } ^ { + } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } \\langle X _ { \\cdot c } ^ { + } , e _ { n } \\rangle ^ { 2 } \\right) ,", + "type": "interline_equation", + "image_path": "48fd613479f3c412aeb06722190f64eaf2d54146933de23b64847c8812fb608a.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 256, + 403, + 273.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 207, + 273.0, + 403, + 290.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 504, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 176, + 308 + ], + "score": 1.0, + "content": "where we denote", + "type": "text" + }, + { + "bbox": [ + 177, + 294, + 282, + 307 + ], + "score": 0.93, + "content": "\\sigma ( X ) = ( X _ { n c } ^ { + } ) _ { n \\in [ N ] , c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 291, + 506, + 308 + ], + "score": 1.0, + "content": "in shorthand. Therefore, the inequality follow from the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 180, + 318 + ], + "score": 1.0, + "content": "following lemma.", + "type": "text" + }, + { + "bbox": [ + 497, + 308, + 504, + 314 + ], + "score": 0.688, + "content": "□", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 105, + 321, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 101, + 321, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 101, + 327, + 128, + 360 + ], + "score": 1.0, + "content": "fying wher", + "type": "text" + }, + { + "bbox": [ + 105, + 321, + 168, + 336 + ], + "score": 1.0, + "content": "Lemma 4. Let", + "type": "text" + }, + { + "bbox": [ + 128, + 336, + 160, + 347 + ], + "score": 0.89, + "content": "v _ { m } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 322, + 202, + 333 + ], + "score": 0.91, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 336, + 226, + 348 + ], + "score": 0.9, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 321, + 221, + 336 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 221, + 322, + 293, + 335 + ], + "score": 0.91, + "content": "v _ { 1 } , \\hdots , v _ { M } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 327, + 290, + 360 + ], + "score": 1.0, + "content": "en, we have .", + "type": "text" + }, + { + "bbox": [ + 291, + 334, + 504, + 349 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\| \\ b x \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x , \\ b v _ { m } \\rangle ^ { 2 } \\geq \\| \\ b x ^ { + } \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x ^ { + } , \\ b v _ { m } \\rangle ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 321, + 411, + 336 + ], + "score": 1.0, + "content": "be orthonormal vectors (i.e.,", + "type": "text" + }, + { + "bbox": [ + 411, + 323, + 479, + 335 + ], + "score": 0.9, + "content": "\\langle v _ { m } , v _ { n } \\rangle = \\delta _ { m n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 321, + 506, + 336 + ], + "score": 1.0, + "content": "satis-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 133, + 347, + 245, + 359 + ], + "spans": [ + { + "bbox": [ + 133, + 347, + 204, + 359 + ], + "score": 0.89, + "content": "x ^ { + } : = \\operatorname* { m a x } ( x , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 348, + 245, + 358 + ], + "score": 0.9, + "content": "x \\in \\mathbb { R }", + "type": "inline_equation" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 506, + 407 + ], + "lines": [ + { + "bbox": [ + 114, + 363, + 511, + 396 + ], + "spans": [ + { + "bbox": [ + 114, + 363, + 131, + 396 + ], + "score": 1.0, + "content": "roof.", + "type": "text" + }, + { + "bbox": [ + 146, + 363, + 178, + 396 + ], + "score": 1.0, + "content": "he value", + "type": "text" + }, + { + "bbox": [ + 178, + 371, + 272, + 386 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| y \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle y , u _ { m } \\rangle ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 363, + 453, + 396 + ], + "score": 1.0, + "content": "is invariant under simultaneous coordinate pe", + "type": "text" + }, + { + "bbox": [ + 460, + 363, + 511, + 396 + ], + "score": 1.0, + "content": "mutation of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 385, + 460, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 113, + 396 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 385, + 145, + 395 + ], + "score": 0.85, + "content": "u _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 387, + 460, + 394 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 395, + 407, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 272, + 407 + ], + "score": 0.91, + "content": "x _ { 1 } \\leq \\ldots \\leq x _ { L } < 0 \\leq x _ { L + 1 } \\leq \\cdot \\cdot \\cdot \\leq x _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 395, + 311, + 407 + ], + "score": 1.0, + "content": "for some", + "type": "text" + }, + { + "bbox": [ + 312, + 396, + 342, + 406 + ], + "score": 0.91, + "content": "L \\leq N", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 395, + 407, + 407 + ], + "score": 1.0, + "content": ". Then, we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 410, + 358, + 444 + ], + "lines": [ + { + "bbox": [ + 253, + 410, + 358, + 444 + ], + "spans": [ + { + "bbox": [ + 253, + 410, + 358, + 444 + ], + "score": 0.94, + "content": "\\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } = \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } .", + "type": "interline_equation", + "image_path": "68f7d8b8c5d76abce597c2e00354310b9c41ec8fdf5c4ec93f6ccaa43c8842c1.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 253, + 410, + 358, + 427.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 253, + 427.0, + 358, + 444.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 447, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 133, + 461 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 448, + 162, + 457 + ], + "score": 0.89, + "content": "L = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 444, + 478, + 461 + ], + "score": 1.0, + "content": ", the sum in the right hand side is treated as 0. On the other hand, writing as", + "type": "text" + }, + { + "bbox": [ + 479, + 448, + 505, + 459 + ], + "score": 0.83, + "content": "v _ { m } =", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 458, + 258, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 155, + 471 + ], + "score": 0.92, + "content": "( v _ { n m } ) _ { n \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 458, + 258, + 470 + ], + "score": 1.0, + "content": ", direct calculation shows", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 473, + 477, + 514 + ], + "lines": [ + { + "bbox": [ + 133, + 473, + 477, + 514 + ], + "spans": [ + { + "bbox": [ + 133, + 473, + 477, + 514 + ], + "score": 0.94, + "content": "\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } = \\sum _ { m = 1 } ^ { M } \\left( \\left( \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } - 2 \\sum _ { n = 1 } ^ { L } \\sum _ { l = L + 1 } ^ { N } x _ { n } x _ { l } v _ { n m } v _ { l m } \\right) .", + "type": "interline_equation", + "image_path": "ea22ca227c9ec044c61e3eba97e9317ef90575c82fd8b35c76fa72f45373c309.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 133, + 473, + 477, + 486.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 133, + 486.6666666666667, + 477, + 500.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 133, + 500.33333333333337, + 477, + 514.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 516, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 104, + 514, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 514, + 122, + 531 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 516, + 237, + 529 + ], + "score": 0.9, + "content": "I _ { m } : = \\{ n \\in [ N ] \\mid v _ { n m } > 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 514, + 307, + 531 + ], + "score": 1.0, + "content": "be the support of", + "type": "text" + }, + { + "bbox": [ + 308, + 519, + 321, + 528 + ], + "score": 0.86, + "content": "v _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 514, + 335, + 531 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 336, + 517, + 374, + 529 + ], + "score": 0.92, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 514, + 438, + 531 + ], + "score": 1.0, + "content": ". We note that if", + "type": "text" + }, + { + "bbox": [ + 438, + 516, + 501, + 529 + ], + "score": 0.91, + "content": "m \\neq m ^ { \\prime } \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 514, + 506, + 531 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 381, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 141, + 540 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 142, + 529, + 199, + 539 + ], + "score": 0.91, + "content": "{ \\cal I } _ { m } \\cap { \\cal I } _ { m ^ { \\prime } } = \\emptyset", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 527, + 284, + 540 + ], + "score": 1.0, + "content": "since if there existed", + "type": "text" + }, + { + "bbox": [ + 285, + 529, + 341, + 539 + ], + "score": 0.91, + "content": "n \\in I _ { m } \\cap I _ { m ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 527, + 381, + 540 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 543, + 370, + 557 + ], + "lines": [ + { + "bbox": [ + 239, + 543, + 370, + 557 + ], + "spans": [ + { + "bbox": [ + 239, + 543, + 370, + 557 + ], + "score": 0.89, + "content": "0 = \\left. v _ { m } , v _ { m ^ { \\prime } } \\right. \\geq v _ { n m } v _ { n m ^ { \\prime } } > 0 ,", + "type": "interline_equation", + "image_path": "cec6e1c89fcd9f94147f760c9fab60b687a9fb58a22ddf08e549e333eb77ee26.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 239, + 543, + 370, + 557 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 244, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 245, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 245, + 573 + ], + "score": 1.0, + "content": "which is contradictory. Therefore,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 574, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 500, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 500, + 732 + ], + "score": 0.86, + "content": "\\begin{array} { r l r } { \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } = \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } v _ { n m } \\right) ^ { 2 } } & { } & \\\\ { \\displaystyle } & { \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n m } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot \\mathrm { C a u c h y - S c h w a r z ~ i n e q u a l i t y } ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot | v _ { m } | ^ { 2 } = 1 ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "e363c202ba9b7ecee3de95f31889b854f5df5a540a429e3c029657ede6d04d16.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 105, + 574, + 505, + 626.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 105, + 626.6666666666666, + 505, + 679.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 105, + 679.3333333333333, + 505, + 731.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "15", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 234, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 234, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 234, + 95 + ], + "score": 1.0, + "content": "which is further transformed as", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 234, + 95 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 213, + 97, + 395, + 240 + ], + "lines": [ + { + "bbox": [ + 213, + 97, + 395, + 240 + ], + "spans": [ + { + "bbox": [ + 213, + 97, + 395, + 240 + ], + "score": 0.95, + "content": "\\begin{array} { l } { \\displaystyle d _ { M } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\left\\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { t } \\right\\| ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { n = M + 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\sum _ { n = 1 } ^ { N } a _ { n c } ^ { 2 } - \\sum _ { n = 1 } ^ { M } a _ { n c } ^ { 2 } \\right) } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\mathrm { - c } } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } ( X _ { \\mathrm { - c } } , e _ { n } ) ^ { 2 } \\right) , } \\end{array}", + "type": "interline_equation", + "image_path": "3e54bc240f5d9875acd41a1878664feda1310273d70a7eb5f0d1b1f678be3ff5.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 213, + 97, + 395, + 111.3 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 213, + 111.3, + 395, + 125.6 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 213, + 125.6, + 395, + 139.9 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 213, + 139.9, + 395, + 154.20000000000002 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 213, + 154.20000000000002, + 395, + 168.50000000000003 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 213, + 168.50000000000003, + 395, + 182.80000000000004 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 213, + 182.80000000000004, + 395, + 197.10000000000005 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 213, + 197.10000000000005, + 395, + 211.40000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 213, + 211.40000000000006, + 395, + 225.70000000000007 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 213, + 225.70000000000007, + 395, + 240.00000000000009 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 241, + 354, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 240, + 354, + 254 + ], + "spans": [ + { + "bbox": [ + 105, + 240, + 133, + 254 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 242, + 149, + 252 + ], + "score": 0.87, + "content": "X _ { \\cdot c }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 240, + 174, + 254 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 174, + 243, + 180, + 251 + ], + "score": 0.8, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 240, + 263, + 254 + ], + "score": 1.0, + "content": "-th column vector of", + "type": "text" + }, + { + "bbox": [ + 263, + 242, + 272, + 251 + ], + "score": 0.84, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 273, + 240, + 354, + 254 + ], + "score": 1.0, + "content": ". Similarly, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 240, + 354, + 254 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 256, + 403, + 290 + ], + "lines": [ + { + "bbox": [ + 207, + 256, + 403, + 290 + ], + "spans": [ + { + "bbox": [ + 207, + 256, + 403, + 290 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ^ { 2 } ( \\sigma ( X ) ) = \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\cdot c } ^ { + } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } \\langle X _ { \\cdot c } ^ { + } , e _ { n } \\rangle ^ { 2 } \\right) ,", + "type": "interline_equation", + "image_path": "48fd613479f3c412aeb06722190f64eaf2d54146933de23b64847c8812fb608a.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 256, + 403, + 273.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 207, + 273.0, + 403, + 290.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 294, + 504, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 291, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 176, + 308 + ], + "score": 1.0, + "content": "where we denote", + "type": "text" + }, + { + "bbox": [ + 177, + 294, + 282, + 307 + ], + "score": 0.93, + "content": "\\sigma ( X ) = ( X _ { n c } ^ { + } ) _ { n \\in [ N ] , c \\in [ C ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 291, + 506, + 308 + ], + "score": 1.0, + "content": "in shorthand. Therefore, the inequality follow from the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 504, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 180, + 318 + ], + "score": 1.0, + "content": "following lemma.", + "type": "text" + }, + { + "bbox": [ + 497, + 308, + 504, + 314 + ], + "score": 0.688, + "content": "□", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 291, + 506, + 318 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 321, + 505, + 360 + ], + "lines": [ + { + "bbox": [ + 101, + 321, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 101, + 327, + 128, + 360 + ], + "score": 1.0, + "content": "fying wher", + "type": "text" + }, + { + "bbox": [ + 105, + 321, + 168, + 336 + ], + "score": 1.0, + "content": "Lemma 4. Let", + "type": "text" + }, + { + "bbox": [ + 128, + 336, + 160, + 347 + ], + "score": 0.89, + "content": "v _ { m } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 322, + 202, + 333 + ], + "score": 0.91, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 336, + 226, + 348 + ], + "score": 0.9, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 321, + 221, + 336 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 221, + 322, + 293, + 335 + ], + "score": 0.91, + "content": "v _ { 1 } , \\hdots , v _ { M } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 327, + 290, + 360 + ], + "score": 1.0, + "content": "en, we have .", + "type": "text" + }, + { + "bbox": [ + 291, + 334, + 504, + 349 + ], + "score": 0.89, + "content": "\\begin{array} { r } { \\| \\ b x \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x , \\ b v _ { m } \\rangle ^ { 2 } \\geq \\| \\ b x ^ { + } \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x ^ { + } , \\ b v _ { m } \\rangle ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 321, + 411, + 336 + ], + "score": 1.0, + "content": "be orthonormal vectors (i.e.,", + "type": "text" + }, + { + "bbox": [ + 411, + 323, + 479, + 335 + ], + "score": 0.9, + "content": "\\langle v _ { m } , v _ { n } \\rangle = \\delta _ { m n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 321, + 506, + 336 + ], + "score": 1.0, + "content": "satis-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 133, + 347, + 245, + 359 + ], + "spans": [ + { + "bbox": [ + 133, + 347, + 204, + 359 + ], + "score": 0.89, + "content": "x ^ { + } : = \\operatorname* { m a x } ( x , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 348, + 245, + 358 + ], + "score": 0.9, + "content": "x \\in \\mathbb { R }", + "type": "inline_equation" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 101, + 321, + 506, + 360 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 371, + 506, + 407 + ], + "lines": [ + { + "bbox": [ + 114, + 363, + 511, + 396 + ], + "spans": [ + { + "bbox": [ + 114, + 363, + 131, + 396 + ], + "score": 1.0, + "content": "roof.", + "type": "text" + }, + { + "bbox": [ + 146, + 363, + 178, + 396 + ], + "score": 1.0, + "content": "he value", + "type": "text" + }, + { + "bbox": [ + 178, + 371, + 272, + 386 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\| y \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle y , u _ { m } \\rangle ^ { 2 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 363, + 453, + 396 + ], + "score": 1.0, + "content": "is invariant under simultaneous coordinate pe", + "type": "text" + }, + { + "bbox": [ + 460, + 363, + 511, + 396 + ], + "score": 1.0, + "content": "mutation of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 385, + 460, + 396 + ], + "spans": [ + { + "bbox": [ + 106, + 387, + 113, + 396 + ], + "score": 0.79, + "content": "y", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 385, + 145, + 395 + ], + "score": 0.85, + "content": "u _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 387, + 460, + 394 + ], + "score": 0.76, + "content": "x", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 395, + 407, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 272, + 407 + ], + "score": 0.91, + "content": "x _ { 1 } \\leq \\ldots \\leq x _ { L } < 0 \\leq x _ { L + 1 } \\leq \\cdot \\cdot \\cdot \\leq x _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 395, + 311, + 407 + ], + "score": 1.0, + "content": "for some", + "type": "text" + }, + { + "bbox": [ + 312, + 396, + 342, + 406 + ], + "score": 0.91, + "content": "L \\leq N", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 395, + 407, + 407 + ], + "score": 1.0, + "content": ". Then, we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 363, + 511, + 407 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 253, + 410, + 358, + 444 + ], + "lines": [ + { + "bbox": [ + 253, + 410, + 358, + 444 + ], + "spans": [ + { + "bbox": [ + 253, + 410, + 358, + 444 + ], + "score": 0.94, + "content": "\\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } = \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } .", + "type": "interline_equation", + "image_path": "68f7d8b8c5d76abce597c2e00354310b9c41ec8fdf5c4ec93f6ccaa43c8842c1.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 253, + 410, + 358, + 427.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 253, + 427.0, + 358, + 444.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 447, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 444, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 133, + 461 + ], + "score": 1.0, + "content": "When", + "type": "text" + }, + { + "bbox": [ + 133, + 448, + 162, + 457 + ], + "score": 0.89, + "content": "L = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 444, + 478, + 461 + ], + "score": 1.0, + "content": ", the sum in the right hand side is treated as 0. On the other hand, writing as", + "type": "text" + }, + { + "bbox": [ + 479, + 448, + 505, + 459 + ], + "score": 0.83, + "content": "v _ { m } =", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 107, + 458, + 258, + 471 + ], + "spans": [ + { + "bbox": [ + 107, + 458, + 155, + 471 + ], + "score": 0.92, + "content": "( v _ { n m } ) _ { n \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 458, + 258, + 470 + ], + "score": 1.0, + "content": ", direct calculation shows", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 444, + 505, + 471 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 473, + 477, + 514 + ], + "lines": [ + { + "bbox": [ + 133, + 473, + 477, + 514 + ], + "spans": [ + { + "bbox": [ + 133, + 473, + 477, + 514 + ], + "score": 0.94, + "content": "\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } = \\sum _ { m = 1 } ^ { M } \\left( \\left( \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } - 2 \\sum _ { n = 1 } ^ { L } \\sum _ { l = L + 1 } ^ { N } x _ { n } x _ { l } v _ { n m } v _ { l m } \\right) .", + "type": "interline_equation", + "image_path": "ea22ca227c9ec044c61e3eba97e9317ef90575c82fd8b35c76fa72f45373c309.jpg" + } + ] + } + ], + "index": 26, + "virtual_lines": [ + { + "bbox": [ + 133, + 473, + 477, + 486.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 133, + 486.6666666666667, + 477, + 500.33333333333337 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 133, + 500.33333333333337, + 477, + 514.0 + ], + "spans": [], + "index": 27 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 516, + 505, + 540 + ], + "lines": [ + { + "bbox": [ + 104, + 514, + 506, + 531 + ], + "spans": [ + { + "bbox": [ + 104, + 514, + 122, + 531 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 516, + 237, + 529 + ], + "score": 0.9, + "content": "I _ { m } : = \\{ n \\in [ N ] \\mid v _ { n m } > 0 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 514, + 307, + 531 + ], + "score": 1.0, + "content": "be the support of", + "type": "text" + }, + { + "bbox": [ + 308, + 519, + 321, + 528 + ], + "score": 0.86, + "content": "v _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 321, + 514, + 335, + 531 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 336, + 517, + 374, + 529 + ], + "score": 0.92, + "content": "m \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 514, + 438, + 531 + ], + "score": 1.0, + "content": ". We note that if", + "type": "text" + }, + { + "bbox": [ + 438, + 516, + 501, + 529 + ], + "score": 0.91, + "content": "m \\neq m ^ { \\prime } \\in [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 514, + 506, + 531 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 527, + 381, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 527, + 141, + 540 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 142, + 529, + 199, + 539 + ], + "score": 0.91, + "content": "{ \\cal I } _ { m } \\cap { \\cal I } _ { m ^ { \\prime } } = \\emptyset", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 527, + 284, + 540 + ], + "score": 1.0, + "content": "since if there existed", + "type": "text" + }, + { + "bbox": [ + 285, + 529, + 341, + 539 + ], + "score": 0.91, + "content": "n \\in I _ { m } \\cap I _ { m ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 527, + 381, + 540 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 514, + 506, + 540 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 239, + 543, + 370, + 557 + ], + "lines": [ + { + "bbox": [ + 239, + 543, + 370, + 557 + ], + "spans": [ + { + "bbox": [ + 239, + 543, + 370, + 557 + ], + "score": 0.89, + "content": "0 = \\left. v _ { m } , v _ { m ^ { \\prime } } \\right. \\geq v _ { n m } v _ { n m ^ { \\prime } } > 0 ,", + "type": "interline_equation", + "image_path": "cec6e1c89fcd9f94147f760c9fab60b687a9fb58a22ddf08e549e333eb77ee26.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 239, + 543, + 370, + 557 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 560, + 244, + 571 + ], + "lines": [ + { + "bbox": [ + 106, + 558, + 245, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 558, + 245, + 573 + ], + "score": 1.0, + "content": "which is contradictory. Therefore,", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 558, + 245, + 573 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 574, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 500, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 500, + 732 + ], + "score": 0.86, + "content": "\\begin{array} { r l r } { \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } = \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } v _ { n m } \\right) ^ { 2 } } & { } & \\\\ { \\displaystyle } & { \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n m } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot \\mathrm { C a u c h y - S c h w a r z ~ i n e q u a l i t y } ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot | v _ { m } | ^ { 2 } = 1 ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "e363c202ba9b7ecee3de95f31889b854f5df5a540a429e3c029657ede6d04d16.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 105, + 574, + 505, + 626.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 105, + 626.6666666666666, + 505, + 679.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 105, + 679.3333333333333, + 505, + 731.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 198, + 96 + ], + "score": 1.0, + "content": "We used the fact that", + "type": "text" + }, + { + "bbox": [ + 198, + 83, + 211, + 93 + ], + "score": 0.87, + "content": "I _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 81, + 288, + 96 + ], + "score": 1.0, + "content": "’s are disjoint and", + "type": "text" + }, + { + "bbox": [ + 288, + 83, + 330, + 93 + ], + "score": 0.9, + "content": "v _ { n m } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 81, + 341, + 96 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 342, + 83, + 392, + 94 + ], + "score": 0.9, + "content": "n \\not \\in \\cup _ { m } I _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "in the first equality above.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 176, + 108 + ], + "score": 1.0, + "content": "Further, we have", + "type": "text" + }, + { + "bbox": [ + 177, + 94, + 249, + 105 + ], + "score": 0.91, + "content": "x _ { n } x _ { l } v _ { n m } v _ { l m } \\leq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 92, + 264, + 108 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 265, + 94, + 312, + 105 + ], + "score": 0.92, + "content": "1 \\le n \\le L", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 92, + 331, + 108 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 94, + 397, + 105 + ], + "score": 0.9, + "content": "L + 1 \\le l \\le N", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 92, + 478, + 108 + ], + "score": 1.0, + "content": "by the definition of", + "type": "text" + }, + { + "bbox": [ + 479, + 94, + 487, + 104 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 357, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 177, + 117 + ], + "score": 1.0, + "content": "non-negativity of", + "type": "text" + }, + { + "bbox": [ + 178, + 106, + 191, + 115 + ], + "score": 0.87, + "content": "v _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 104, + 357, + 117 + ], + "score": 1.0, + "content": ". By combining (1), (2), and (3), we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 122, + 417, + 157 + ], + "lines": [ + { + "bbox": [ + 192, + 122, + 417, + 157 + ], + "spans": [ + { + "bbox": [ + 192, + 122, + 417, + 157 + ], + "score": 0.94, + "content": "\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } \\leq \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } = \\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "c39fabdc21d6ccc420a7956b6414e1b3de75315041ade8eba193e361d9db97c0.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 122, + 417, + 139.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 192, + 139.5, + 417, + 157.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 321, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 320, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 179, + 207 + ], + "score": 1.0, + "content": "Proof of Theorem", + "type": "text" + }, + { + "bbox": [ + 180, + 195, + 185, + 204 + ], + "score": 0.37, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 194, + 320, + 207 + ], + "score": 1.0, + "content": ". By Lemma 1, 2, and 3, we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 213, + 439, + 380 + ], + "lines": [ + { + "bbox": [ + 168, + 213, + 439, + 380 + ], + "spans": [ + { + "bbox": [ + 168, + 213, + 439, + 380 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { d _ { M } ( f _ { l } ( X ) ) = d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot W _ { l H _ { 1 } } \\rangle } _ { H \\mathrm { ~ i n e s } } ) } & { } \\\\ & { \\leq d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H \\mathrm { ~ i n e s } } ) } \\\\ & { \\leq s _ { i H _ { 1 } - 1 } d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H - 1 \\mathrm { ~ i n e s } } ) } \\\\ & { \\cdots } \\\\ & { \\leq \\displaystyle \\left( \\prod _ { i = 1 } ^ { H _ { l } } s _ { i h } \\right) d _ { M } ( P X ) } \\\\ & { \\leq s _ { i d _ { M } ( P X ) } } \\\\ & { \\leq s _ { i H _ { 1 } } d _ { M } ( X ) . } \\end{array}", + "type": "interline_equation", + "image_path": "15704c0189b83b8ac25bed3cd3d139dd55c80d16850523239a96a4637790c552.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 168, + 213, + 439, + 268.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 168, + 268.6666666666667, + 439, + 324.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 168, + 324.33333333333337, + 439, + 380.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 260, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 262, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 262, + 430 + ], + "score": 1.0, + "content": "B PROOF OF PROPOSITION 1", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 506, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 153, + 454 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 153, + 442, + 222, + 453 + ], + "score": 0.92, + "content": "{ \\tilde { \\mu } } _ { 1 } \\leq \\dots \\leq { \\tilde { \\mu } } _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 441, + 464, + 454 + ], + "score": 1.0, + "content": "be the eigenvalue of the augmented normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 464, + 440, + 473, + 452 + ], + "score": 0.84, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 441, + 506, + 454 + ], + "score": 1.0, + "content": ", sorted", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 213, + 468 + ], + "score": 1.0, + "content": "in ascending order. Since", + "type": "text" + }, + { + "bbox": [ + 213, + 453, + 271, + 466 + ], + "score": 0.93, + "content": "P = I _ { N } - \\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 454, + 361, + 468 + ], + "score": 1.0, + "content": ", it is enough to show", + "type": "text" + }, + { + "bbox": [ + 361, + 455, + 450, + 466 + ], + "score": 0.89, + "content": "\\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 454, + 455, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 455, + 501, + 466 + ], + "score": 0.81, + "content": "{ \\tilde { \\mu } } _ { M + 1 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 454, + 505, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 466, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 123, + 479 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 467, + 158, + 478 + ], + "score": 0.91, + "content": "\\tilde { \\mu } _ { N } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 466, + 379, + 479 + ], + "score": 1.0, + "content": ". For the first two, the statements are equivalent to that", + "type": "text" + }, + { + "bbox": [ + 379, + 466, + 389, + 477 + ], + "score": 0.82, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 466, + 506, + 479 + ], + "score": 1.0, + "content": "is positive semi-definite and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "that the multiplicity of the eigenvalue 0 is same as the number of connected components 6. This", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "is well-known for Laplacian or its normalized version (see, e.g., Chung & Graham (1997)) and the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 499, + 321, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 145, + 514 + ], + "score": 1.0, + "content": "proof for", + "type": "text" + }, + { + "bbox": [ + 145, + 499, + 154, + 511 + ], + "score": 0.87, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 500, + 321, + 514 + ], + "score": 1.0, + "content": "is similar. By direct calculation, we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 520, + 401, + 556 + ], + "lines": [ + { + "bbox": [ + 208, + 520, + 401, + 556 + ], + "spans": [ + { + "bbox": [ + 208, + 520, + 401, + 556 + ], + "score": 0.93, + "content": "x ^ { \\top } \\tilde { \\Delta } x = \\frac { 1 } { 2 } \\sum _ { i , j = 1 } ^ { N } a _ { i j } \\left( \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } - \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } \\right) ^ { 2 }", + "type": "interline_equation", + "image_path": "912b3f39f00da229f42e6b22f48e40279df357eb9f4ff841a0f14ea1354fcf33.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 520, + 401, + 538.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 208, + 538.0, + 401, + 556.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 564, + 485, + 579 + ], + "lines": [ + { + "bbox": [ + 103, + 562, + 483, + 582 + ], + "spans": [ + { + "bbox": [ + 103, + 562, + 137, + 582 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 137, + 564, + 253, + 579 + ], + "score": 0.85, + "content": "x = \\lbrack x _ { 1 } \\quad \\cdot \\cdot \\cdot \\quad x _ { N } \\rbrack ^ { \\top } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 562, + 302, + 582 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 302, + 565, + 312, + 577 + ], + "score": 0.86, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 562, + 452, + 582 + ], + "score": 1.0, + "content": "is positive semi-definite and hence", + "type": "text" + }, + { + "bbox": [ + 453, + 567, + 483, + 578 + ], + "score": 0.91, + "content": "\\tilde { \\mu } _ { 1 } \\geq 0", + "type": "inline_equation" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 506, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 209, + 598 + ], + "score": 1.0, + "content": "Suppose temporally that", + "type": "text" + }, + { + "bbox": [ + 209, + 586, + 218, + 595 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 583, + 289, + 598 + ], + "score": 1.0, + "content": "is connected. If", + "type": "text" + }, + { + "bbox": [ + 290, + 584, + 327, + 595 + ], + "score": 0.91, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 583, + 506, + 598 + ], + "score": 1.0, + "content": "is an eigenvector associated to 0, then, by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 595, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 232, + 614 + ], + "score": 1.0, + "content": "the aformentioned calculation,", + "type": "text" + }, + { + "bbox": [ + 232, + 596, + 259, + 612 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 595, + 279, + 614 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 596, + 308, + 614 + ], + "score": 0.93, + "content": "\\textstyle { \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 595, + 417, + 610 + ], + "score": 1.0, + "content": "must be same for all pairs", + "type": "text" + }, + { + "bbox": [ + 417, + 596, + 438, + 608 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 595, + 479, + 610 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 479, + 597, + 505, + 609 + ], + "score": 0.89, + "content": "a _ { i j } >", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 612, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 186, + 629 + ], + "score": 1.0, + "content": "0. However, since", + "type": "text" + }, + { + "bbox": [ + 186, + 613, + 195, + 623 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 612, + 254, + 629 + ], + "score": 1.0, + "content": "is connected,", + "type": "text" + }, + { + "bbox": [ + 254, + 614, + 281, + 628 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 612, + 397, + 629 + ], + "score": 1.0, + "content": "must be same value for all", + "type": "text" + }, + { + "bbox": [ + 397, + 613, + 432, + 625 + ], + "score": 0.93, + "content": "i \\in [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 612, + 505, + 629 + ], + "score": 1.0, + "content": ". That means the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "multiplicity of the eigenvalue 0 is 1 and any eigenvector associated to 0 must be proportional to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 636, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 128, + 649 + ], + "score": 0.87, + "content": "{ \\tilde { D } } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 636, + 197, + 652 + ], + "score": 1.0, + "content": ". Now, suppose", + "type": "text" + }, + { + "bbox": [ + 197, + 639, + 207, + 649 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 636, + 226, + 652 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 226, + 639, + 238, + 649 + ], + "score": 0.82, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 636, + 336, + 652 + ], + "score": 1.0, + "content": "connected components", + "type": "text" + }, + { + "bbox": [ + 336, + 638, + 385, + 650 + ], + "score": 0.92, + "content": "V _ { 1 } , \\dots , V _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 636, + 410, + 652 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 410, + 637, + 427, + 650 + ], + "score": 0.91, + "content": "\\tilde { \\Delta } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 636, + 506, + 652 + ], + "score": 1.0, + "content": "be the augmented", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 389, + 663 + ], + "score": 1.0, + "content": "normalized Laplacians corresponding to each connected component", + "type": "text" + }, + { + "bbox": [ + 389, + 650, + 404, + 661 + ], + "score": 0.89, + "content": "V _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 649, + 422, + 663 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 423, + 650, + 466, + 662 + ], + "score": 0.91, + "content": "m \\in \\ [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 649, + 506, + 663 + ], + "score": 1.0, + "content": ". By the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 214, + 675 + ], + "score": 1.0, + "content": "aformentioned discussion,", + "type": "text" + }, + { + "bbox": [ + 214, + 661, + 231, + 673 + ], + "score": 0.91, + "content": "\\tilde { \\Delta } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 662, + 424, + 675 + ], + "score": 1.0, + "content": "has the eigenvalue 0 with multiplicity 1. Since", + "type": "text" + }, + { + "bbox": [ + 425, + 661, + 434, + 672 + ], + "score": 0.84, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 662, + 506, + 675 + ], + "score": 1.0, + "content": "is the direct sum", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 117, + 687 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 673, + 139, + 687 + ], + "score": 0.92, + "content": "\\tilde { \\Delta } _ { m } ^ { \\prime } s", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 673, + 213, + 687 + ], + "score": 1.0, + "content": ", the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 213, + 674, + 222, + 685 + ], + "score": 0.86, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 673, + 320, + 687 + ], + "score": 1.0, + "content": "is the union of those for", + "type": "text" + }, + { + "bbox": [ + 320, + 673, + 336, + 686 + ], + "score": 0.91, + "content": "\\tilde { \\Delta } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 673, + 392, + 687 + ], + "score": 1.0, + "content": "’s. Therefore,", + "type": "text" + }, + { + "bbox": [ + 392, + 673, + 401, + 685 + ], + "score": 0.85, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 673, + 505, + 687 + ], + "score": 1.0, + "content": "has the eigenvalue 0 with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 686, + 420, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 155, + 700 + ], + "score": 1.0, + "content": "multiplicity", + "type": "text" + }, + { + "bbox": [ + 156, + 688, + 168, + 698 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 686, + 186, + 700 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 186, + 686, + 240, + 699 + ], + "score": 0.93, + "content": "e _ { m } = \\tilde { D } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 686, + 420, + 700 + ], + "score": 1.0, + "content": "’s are the orthogonal basis of the eigenspace.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 711, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 117, + 708, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 117, + 708, + 506, + 725 + ], + "score": 1.0, + "content": "6The former statement is identical to Lemma 1 and latter one is the extension of Lemma 2 of Wu et al.", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 719, + 141, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 141, + 734 + ], + "score": 1.0, + "content": "(2019a).", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 386, + 505, + 397 + ], + "lines": [ + { + "bbox": [ + 496, + 388, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 496, + 388, + 505, + 398 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 164, + 505, + 175 + ], + "lines": [ + { + "bbox": [ + 496, + 166, + 504, + 174 + ], + "spans": [ + { + "bbox": [ + 496, + 166, + 504, + 174 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 117 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 198, + 96 + ], + "score": 1.0, + "content": "We used the fact that", + "type": "text" + }, + { + "bbox": [ + 198, + 83, + 211, + 93 + ], + "score": 0.87, + "content": "I _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 81, + 288, + 96 + ], + "score": 1.0, + "content": "’s are disjoint and", + "type": "text" + }, + { + "bbox": [ + 288, + 83, + 330, + 93 + ], + "score": 0.9, + "content": "v _ { n m } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 81, + 341, + 96 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 342, + 83, + 392, + 94 + ], + "score": 0.9, + "content": "n \\not \\in \\cup _ { m } I _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "in the first equality above.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 176, + 108 + ], + "score": 1.0, + "content": "Further, we have", + "type": "text" + }, + { + "bbox": [ + 177, + 94, + 249, + 105 + ], + "score": 0.91, + "content": "x _ { n } x _ { l } v _ { n m } v _ { l m } \\leq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 92, + 264, + 108 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 265, + 94, + 312, + 105 + ], + "score": 0.92, + "content": "1 \\le n \\le L", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 92, + 331, + 108 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 94, + 397, + 105 + ], + "score": 0.9, + "content": "L + 1 \\le l \\le N", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 92, + 478, + 108 + ], + "score": 1.0, + "content": "by the definition of", + "type": "text" + }, + { + "bbox": [ + 479, + 94, + 487, + 104 + ], + "score": 0.81, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 104, + 357, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 104, + 177, + 117 + ], + "score": 1.0, + "content": "non-negativity of", + "type": "text" + }, + { + "bbox": [ + 178, + 106, + 191, + 115 + ], + "score": 0.87, + "content": "v _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 104, + 357, + 117 + ], + "score": 1.0, + "content": ". By combining (1), (2), and (3), we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 117 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 192, + 122, + 417, + 157 + ], + "lines": [ + { + "bbox": [ + 192, + 122, + 417, + 157 + ], + "spans": [ + { + "bbox": [ + 192, + 122, + 417, + 157 + ], + "score": 0.94, + "content": "\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } \\leq \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } = \\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } .", + "type": "interline_equation", + "image_path": "c39fabdc21d6ccc420a7956b6414e1b3de75315041ade8eba193e361d9db97c0.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 192, + 122, + 417, + 139.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 192, + 139.5, + 417, + 157.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 193, + 321, + 206 + ], + "lines": [ + { + "bbox": [ + 106, + 194, + 320, + 207 + ], + "spans": [ + { + "bbox": [ + 106, + 194, + 179, + 207 + ], + "score": 1.0, + "content": "Proof of Theorem", + "type": "text" + }, + { + "bbox": [ + 180, + 195, + 185, + 204 + ], + "score": 0.37, + "content": "^ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 194, + 320, + 207 + ], + "score": 1.0, + "content": ". By Lemma 1, 2, and 3, we have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5, + "bbox_fs": [ + 106, + 194, + 320, + 207 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 168, + 213, + 439, + 380 + ], + "lines": [ + { + "bbox": [ + 168, + 213, + 439, + 380 + ], + "spans": [ + { + "bbox": [ + 168, + 213, + 439, + 380 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { d _ { M } ( f _ { l } ( X ) ) = d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot W _ { l H _ { 1 } } \\rangle } _ { H \\mathrm { ~ i n e s } } ) } & { } \\\\ & { \\leq d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H \\mathrm { ~ i n e s } } ) } \\\\ & { \\leq s _ { i H _ { 1 } - 1 } d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H - 1 \\mathrm { ~ i n e s } } ) } \\\\ & { \\cdots } \\\\ & { \\leq \\displaystyle \\left( \\prod _ { i = 1 } ^ { H _ { l } } s _ { i h } \\right) d _ { M } ( P X ) } \\\\ & { \\leq s _ { i d _ { M } ( P X ) } } \\\\ & { \\leq s _ { i H _ { 1 } } d _ { M } ( X ) . } \\end{array}", + "type": "interline_equation", + "image_path": "15704c0189b83b8ac25bed3cd3d139dd55c80d16850523239a96a4637790c552.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 168, + 213, + 439, + 268.6666666666667 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 168, + 268.6666666666667, + 439, + 324.33333333333337 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 168, + 324.33333333333337, + 439, + 380.00000000000006 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 260, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 262, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 262, + 430 + ], + "score": 1.0, + "content": "B PROOF OF PROPOSITION 1", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 441, + 506, + 513 + ], + "lines": [ + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 153, + 454 + ], + "score": 1.0, + "content": "Proof. Let", + "type": "text" + }, + { + "bbox": [ + 153, + 442, + 222, + 453 + ], + "score": 0.92, + "content": "{ \\tilde { \\mu } } _ { 1 } \\leq \\dots \\leq { \\tilde { \\mu } } _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 441, + 464, + 454 + ], + "score": 1.0, + "content": "be the eigenvalue of the augmented normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 464, + 440, + 473, + 452 + ], + "score": 0.84, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 441, + 506, + 454 + ], + "score": 1.0, + "content": ", sorted", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 453, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 213, + 468 + ], + "score": 1.0, + "content": "in ascending order. Since", + "type": "text" + }, + { + "bbox": [ + 213, + 453, + 271, + 466 + ], + "score": 0.93, + "content": "P = I _ { N } - \\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 454, + 361, + 468 + ], + "score": 1.0, + "content": ", it is enough to show", + "type": "text" + }, + { + "bbox": [ + 361, + 455, + 450, + 466 + ], + "score": 0.89, + "content": "\\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 454, + 455, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 455, + 455, + 501, + 466 + ], + "score": 0.81, + "content": "{ \\tilde { \\mu } } _ { M + 1 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 454, + 505, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 466, + 506, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 123, + 479 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 467, + 158, + 478 + ], + "score": 0.91, + "content": "\\tilde { \\mu } _ { N } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 466, + 379, + 479 + ], + "score": 1.0, + "content": ". For the first two, the statements are equivalent to that", + "type": "text" + }, + { + "bbox": [ + 379, + 466, + 389, + 477 + ], + "score": 0.82, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 466, + 506, + 479 + ], + "score": 1.0, + "content": "is positive semi-definite and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 490 + ], + "score": 1.0, + "content": "that the multiplicity of the eigenvalue 0 is same as the number of connected components 6. This", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "is well-known for Laplacian or its normalized version (see, e.g., Chung & Graham (1997)) and the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 499, + 321, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 500, + 145, + 514 + ], + "score": 1.0, + "content": "proof for", + "type": "text" + }, + { + "bbox": [ + 145, + 499, + 154, + 511 + ], + "score": 0.87, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 500, + 321, + 514 + ], + "score": 1.0, + "content": "is similar. By direct calculation, we have", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 440, + 506, + 514 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 520, + 401, + 556 + ], + "lines": [ + { + "bbox": [ + 208, + 520, + 401, + 556 + ], + "spans": [ + { + "bbox": [ + 208, + 520, + 401, + 556 + ], + "score": 0.93, + "content": "x ^ { \\top } \\tilde { \\Delta } x = \\frac { 1 } { 2 } \\sum _ { i , j = 1 } ^ { N } a _ { i j } \\left( \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } - \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } \\right) ^ { 2 }", + "type": "interline_equation", + "image_path": "912b3f39f00da229f42e6b22f48e40279df357eb9f4ff841a0f14ea1354fcf33.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 208, + 520, + 401, + 538.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 208, + 538.0, + 401, + 556.0 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 564, + 485, + 579 + ], + "lines": [ + { + "bbox": [ + 103, + 562, + 483, + 582 + ], + "spans": [ + { + "bbox": [ + 103, + 562, + 137, + 582 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 137, + 564, + 253, + 579 + ], + "score": 0.85, + "content": "x = \\lbrack x _ { 1 } \\quad \\cdot \\cdot \\cdot \\quad x _ { N } \\rbrack ^ { \\top } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 562, + 302, + 582 + ], + "score": 1.0, + "content": ". Therefore,", + "type": "text" + }, + { + "bbox": [ + 302, + 565, + 312, + 577 + ], + "score": 0.86, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 562, + 452, + 582 + ], + "score": 1.0, + "content": "is positive semi-definite and hence", + "type": "text" + }, + { + "bbox": [ + 453, + 567, + 483, + 578 + ], + "score": 0.91, + "content": "\\tilde { \\mu } _ { 1 } \\geq 0", + "type": "inline_equation" + } + ], + "index": 18 + } + ], + "index": 18, + "bbox_fs": [ + 103, + 562, + 483, + 582 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 506, + 700 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 209, + 598 + ], + "score": 1.0, + "content": "Suppose temporally that", + "type": "text" + }, + { + "bbox": [ + 209, + 586, + 218, + 595 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 583, + 289, + 598 + ], + "score": 1.0, + "content": "is connected. If", + "type": "text" + }, + { + "bbox": [ + 290, + 584, + 327, + 595 + ], + "score": 0.91, + "content": "\\boldsymbol { x } \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 583, + 506, + 598 + ], + "score": 1.0, + "content": "is an eigenvector associated to 0, then, by", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 595, + 505, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 595, + 232, + 614 + ], + "score": 1.0, + "content": "the aformentioned calculation,", + "type": "text" + }, + { + "bbox": [ + 232, + 596, + 259, + 612 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 595, + 279, + 614 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 279, + 596, + 308, + 614 + ], + "score": 0.93, + "content": "\\textstyle { \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 309, + 595, + 417, + 610 + ], + "score": 1.0, + "content": "must be same for all pairs", + "type": "text" + }, + { + "bbox": [ + 417, + 596, + 438, + 608 + ], + "score": 0.92, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 595, + 479, + 610 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 479, + 597, + 505, + 609 + ], + "score": 0.89, + "content": "a _ { i j } >", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 612, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 612, + 186, + 629 + ], + "score": 1.0, + "content": "0. However, since", + "type": "text" + }, + { + "bbox": [ + 186, + 613, + 195, + 623 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 612, + 254, + 629 + ], + "score": 1.0, + "content": "is connected,", + "type": "text" + }, + { + "bbox": [ + 254, + 614, + 281, + 628 + ], + "score": 0.91, + "content": "\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 612, + 397, + 629 + ], + "score": 1.0, + "content": "must be same value for all", + "type": "text" + }, + { + "bbox": [ + 397, + 613, + 432, + 625 + ], + "score": 0.93, + "content": "i \\in [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 612, + 505, + 629 + ], + "score": 1.0, + "content": ". That means the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 506, + 639 + ], + "score": 1.0, + "content": "multiplicity of the eigenvalue 0 is 1 and any eigenvector associated to 0 must be proportional to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 636, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 128, + 649 + ], + "score": 0.87, + "content": "{ \\tilde { D } } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 636, + 197, + 652 + ], + "score": 1.0, + "content": ". Now, suppose", + "type": "text" + }, + { + "bbox": [ + 197, + 639, + 207, + 649 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 636, + 226, + 652 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 226, + 639, + 238, + 649 + ], + "score": 0.82, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 636, + 336, + 652 + ], + "score": 1.0, + "content": "connected components", + "type": "text" + }, + { + "bbox": [ + 336, + 638, + 385, + 650 + ], + "score": 0.92, + "content": "V _ { 1 } , \\dots , V _ { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 636, + 410, + 652 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 410, + 637, + 427, + 650 + ], + "score": 0.91, + "content": "\\tilde { \\Delta } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 636, + 506, + 652 + ], + "score": 1.0, + "content": "be the augmented", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 649, + 506, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 389, + 663 + ], + "score": 1.0, + "content": "normalized Laplacians corresponding to each connected component", + "type": "text" + }, + { + "bbox": [ + 389, + 650, + 404, + 661 + ], + "score": 0.89, + "content": "V _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 405, + 649, + 422, + 663 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 423, + 650, + 466, + 662 + ], + "score": 0.91, + "content": "m \\in \\ [ M ]", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 649, + 506, + 663 + ], + "score": 1.0, + "content": ". By the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 661, + 506, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 662, + 214, + 675 + ], + "score": 1.0, + "content": "aformentioned discussion,", + "type": "text" + }, + { + "bbox": [ + 214, + 661, + 231, + 673 + ], + "score": 0.91, + "content": "\\tilde { \\Delta } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 662, + 424, + 675 + ], + "score": 1.0, + "content": "has the eigenvalue 0 with multiplicity 1. Since", + "type": "text" + }, + { + "bbox": [ + 425, + 661, + 434, + 672 + ], + "score": 0.84, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 662, + 506, + 675 + ], + "score": 1.0, + "content": "is the direct sum", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 673, + 505, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 117, + 687 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 118, + 673, + 139, + 687 + ], + "score": 0.92, + "content": "\\tilde { \\Delta } _ { m } ^ { \\prime } s", + "type": "inline_equation" + }, + { + "bbox": [ + 139, + 673, + 213, + 687 + ], + "score": 1.0, + "content": ", the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 213, + 674, + 222, + 685 + ], + "score": 0.86, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 673, + 320, + 687 + ], + "score": 1.0, + "content": "is the union of those for", + "type": "text" + }, + { + "bbox": [ + 320, + 673, + 336, + 686 + ], + "score": 0.91, + "content": "\\tilde { \\Delta } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 673, + 392, + 687 + ], + "score": 1.0, + "content": "’s. Therefore,", + "type": "text" + }, + { + "bbox": [ + 392, + 673, + 401, + 685 + ], + "score": 0.85, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 673, + 505, + 687 + ], + "score": 1.0, + "content": "has the eigenvalue 0 with", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 686, + 420, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 686, + 155, + 700 + ], + "score": 1.0, + "content": "multiplicity", + "type": "text" + }, + { + "bbox": [ + 156, + 688, + 168, + 698 + ], + "score": 0.79, + "content": "M", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 686, + 186, + 700 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 186, + 686, + 240, + 699 + ], + "score": 0.93, + "content": "e _ { m } = \\tilde { D } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 } _ { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 686, + 420, + 700 + ], + "score": 1.0, + "content": "’s are the orthogonal basis of the eigenspace.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 583, + 506, + 700 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 107 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 181, + 95 + ], + "score": 1.0, + "content": "Finally, we prove", + "type": "text" + }, + { + "bbox": [ + 181, + 83, + 218, + 94 + ], + "score": 0.9, + "content": "\\tilde { \\mu } _ { N \\mathrm { ~ } } < \\mathrm { ~ 2 ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 80, + 241, + 95 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 242, + 84, + 257, + 94 + ], + "score": 0.84, + "content": "\\mu _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 80, + 482, + 95 + ], + "score": 1.0, + "content": "be the largest eigenvalue of the normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 482, + 82, + 505, + 94 + ], + "score": 0.83, + "content": "\\Delta =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 90, + 414, + 110 + ], + "spans": [ + { + "bbox": [ + 107, + 93, + 185, + 107 + ], + "score": 0.93, + "content": "D ^ { - \\frac { 1 } { 2 } } \\bar { ( } D - \\bar { A } ) D ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 90, + 216, + 110 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 216, + 93, + 279, + 105 + ], + "score": 0.92, + "content": "D ^ { - \\frac { 1 } { 2 } } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 90, + 414, + 110 + ], + "score": 1.0, + "content": "is the diagonal matrix defined by", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 112, + 384, + 146 + ], + "lines": [ + { + "bbox": [ + 225, + 112, + 384, + 146 + ], + "spans": [ + { + "bbox": [ + 225, + 112, + 384, + 146 + ], + "score": 0.94, + "content": "D _ { i i } ^ { - \\frac { 1 } { 2 } } = \\left\\{ \\begin{array} { l l } { \\deg ( i ) ^ { - \\frac { 1 } { 2 } } } & { ( \\mathrm { i f } \\deg ( i ) \\neq 0 ) } \\\\ { 0 } & { ( \\mathrm { i f } \\deg ( i ) = 0 ) } \\end{array} \\right. .", + "type": "interline_equation", + "image_path": "3d269a0ba588fd8303d9cdfd91801f8052013907dddbbf2c70e75cc2e48e6492.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 112, + 384, + 129.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 225, + 129.0, + 384, + 146.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 152, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 104, + 150, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 150, + 147, + 167 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 147, + 151, + 183, + 163 + ], + "score": 0.91, + "content": "D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 150, + 203, + 167 + ], + "score": 1.0, + "content": "nor", + "type": "text" + }, + { + "bbox": [ + 203, + 151, + 239, + 163 + ], + "score": 0.92, + "content": "D ^ { \\frac { 1 } { 2 } } D ^ { - { \\frac { 1 } { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 150, + 386, + 167 + ], + "score": 1.0, + "content": "are not equal to the identity matrix", + "type": "text" + }, + { + "bbox": [ + 387, + 154, + 400, + 164 + ], + "score": 0.89, + "content": "I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 150, + 506, + 167 + ], + "score": 1.0, + "content": "in general. However, we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 162, + 129, + 178 + ], + "spans": [ + { + "bbox": [ + 104, + 162, + 129, + 178 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 178, + 356, + 194 + ], + "lines": [ + { + "bbox": [ + 254, + 178, + 356, + 194 + ], + "spans": [ + { + "bbox": [ + 254, + 178, + 356, + 194 + ], + "score": 0.9, + "content": "L = D ^ { \\frac { 1 } { 2 } } D ^ { - \\frac { 1 } { 2 } } L D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }", + "type": "interline_equation", + "image_path": "f06328db9cdb9c357ee18d32337ee54247ad13e04e1cc4534382a8bbdb729367.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 254, + 178, + 356, + 194 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 396, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 396, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 133, + 213 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 200, + 183, + 210 + ], + "score": 0.91, + "content": "L = D - A", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 199, + 396, + 213 + ], + "score": 1.0, + "content": "is the (unnormalized) Laplacian. Therefore, we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 214, + 452, + 529 + ], + "lines": [ + { + "bbox": [ + 162, + 214, + 452, + 529 + ], + "spans": [ + { + "bbox": [ + 162, + 214, + 452, + 529 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { \\alpha _ { 1 } } & { \\gamma _ { 2 } \\geq \\frac { \\alpha _ { 2 } ( \\lambda _ { 1 } ) } { \\alpha _ { 1 } } } \\\\ { = } & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 1 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 3 } } \\\\ { = } & { \\gamma _ { 2 } \\geq \\alpha _ { 3 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 5 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 6 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } } \\\\ & { - \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 6 } } \\\\ & { \\gamma _ { 6 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\gamma _ { 7 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 3 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & \\gamma _ { 3 } \\geq \\ \\end{array}", + "type": "interline_equation", + "image_path": "0130e9d5369d0baf35ac0feeea7a01ddaaafd449509a606e0c5a756b6400d2fd.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 162, + 214, + 452, + 228.3181818181818 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 162, + 228.3181818181818, + 452, + 242.63636363636363 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 162, + 242.63636363636363, + 452, + 256.95454545454544 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 162, + 256.95454545454544, + 452, + 271.27272727272725 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 162, + 271.27272727272725, + 452, + 285.59090909090907 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 162, + 285.59090909090907, + 452, + 299.9090909090909 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 162, + 299.9090909090909, + 452, + 314.2272727272727 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 162, + 314.2272727272727, + 452, + 328.5454545454545 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 162, + 328.5454545454545, + 452, + 342.8636363636363 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 162, + 342.8636363636363, + 452, + 357.18181818181813 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 162, + 357.18181818181813, + 452, + 371.49999999999994 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 162, + 371.49999999999994, + 452, + 385.81818181818176 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 162, + 385.81818181818176, + 452, + 400.13636363636357 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 162, + 400.13636363636357, + 452, + 414.4545454545454 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 162, + 414.4545454545454, + 452, + 428.7727272727272 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 162, + 428.7727272727272, + 452, + 443.090909090909 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 162, + 443.090909090909, + 452, + 457.4090909090908 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 162, + 457.4090909090908, + 452, + 471.72727272727263 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 162, + 471.72727272727263, + 452, + 486.04545454545445 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 162, + 486.04545454545445, + 452, + 500.36363636363626 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 162, + 500.36363636363626, + 452, + 514.6818181818181 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 162, + 514.6818181818181, + 452, + 529.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 311, + 558 + ], + "score": 1.0, + "content": "Therefore, we have µ˜N ≤ µN 7. Since maxi∈[N]", + "type": "text" + }, + { + "bbox": [ + 266, + 536, + 381, + 559 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\frac { \\deg ( i ) } { \\deg ( i ) + 1 } \\right) ^ { \\frac { 1 } { 2 } } < 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 542, + 435, + 556 + ], + "score": 1.0, + "content": ", the equality", + "type": "text" + }, + { + "bbox": [ + 435, + 544, + 479, + 555 + ], + "score": 0.92, + "content": "\\tilde { \\mu } _ { N } = \\mu _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "holds", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 164, + 570 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 164, + 558, + 200, + 569 + ], + "score": 0.91, + "content": "\\mu _ { N } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 557, + 236, + 570 + ], + "score": 1.0, + "content": ", that is,", + "type": "text" + }, + { + "bbox": [ + 236, + 558, + 245, + 568 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 557, + 264, + 570 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 264, + 558, + 275, + 568 + ], + "score": 0.83, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "connected components. On the other hand, it is known", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 124, + 581 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 569, + 159, + 580 + ], + "score": 0.91, + "content": "\\mu _ { N } \\leq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 568, + 309, + 581 + ], + "score": 1.0, + "content": "and the equality holds if and only if", + "type": "text" + }, + { + "bbox": [ + 309, + 569, + 319, + 579 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "has non-trivial bipartite graph as a connected", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 224, + 592 + ], + "score": 1.0, + "content": "component (see, e.g., Chung", + "type": "text" + }, + { + "bbox": [ + 224, + 580, + 233, + 590 + ], + "score": 0.51, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 579, + 351, + 592 + ], + "score": 1.0, + "content": "Graham (1997)). Therefore,", + "type": "text" + }, + { + "bbox": [ + 351, + 580, + 393, + 591 + ], + "score": 0.91, + "content": "\\tilde { \\mu } _ { N } = \\mu _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 579, + 412, + 592 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 412, + 580, + 447, + 591 + ], + "score": 0.9, + "content": "\\mu _ { N } = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "does not hold", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 591, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 227, + 602 + ], + "score": 1.0, + "content": "simultaneously and we obtain", + "type": "text" + }, + { + "bbox": [ + 228, + 591, + 261, + 602 + ], + "score": 0.9, + "content": "\\mu _ { N } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 591, + 264, + 602 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 493, + 591, + 506, + 602 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 107, + 618, + 480, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 482, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 482, + 632 + ], + "score": 1.0, + "content": "C COUNTEREXAMPLE OF PREVIOUS STUDY ON OVER-SMOOTHING FOR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 632, + 234, + 645 + ], + "spans": [ + { + "bbox": [ + 126, + 632, + 234, + 645 + ], + "score": 1.0, + "content": "NON-LINEAR GNNS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 656, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 352, + 670 + ], + "score": 1.0, + "content": "We restate Theorem 1 of the preprint (version2) of Luan et al.", + "type": "text" + }, + { + "bbox": [ + 352, + 657, + 383, + 668 + ], + "score": 0.79, + "content": "( 2 0 1 9 ) ^ { 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 656, + 403, + 670 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 403, + 657, + 412, + 667 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 656, + 506, + 670 + ], + "score": 1.0, + "content": "be a simple undirected", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 152, + 681 + ], + "score": 1.0, + "content": "graph with", + "type": "text" + }, + { + "bbox": [ + 152, + 669, + 163, + 678 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 668, + 207, + 681 + ], + "score": 1.0, + "content": "nodes and", + "type": "text" + }, + { + "bbox": [ + 207, + 669, + 214, + 678 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "connected components such that it does not have a bipartite component.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 122, + 694 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 679, + 247, + 690 + ], + "score": 0.91, + "content": "L = \\tilde { D } ^ { - 1 / 2 } \\tilde { A } \\tilde { D } ^ { - 1 / 2 } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 677, + 421, + 694 + ], + "score": 1.0, + "content": "be the augmented normalized Laplacian of", + "type": "text" + }, + { + "bbox": [ + 422, + 681, + 431, + 690 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 677, + 451, + 694 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 451, + 680, + 487, + 692 + ], + "score": 0.92, + "content": "F \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 677, + 506, + 694 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 700, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 698, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 118, + 698, + 405, + 714 + ], + "score": 1.0, + "content": "7Theorem 1 of Wu et al. (2019a) showed that this inequality strictly holds when", + "type": "text" + }, + { + "bbox": [ + 406, + 701, + 414, + 710 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 698, + 506, + 714 + ], + "score": 1.0, + "content": "is simple and connected.", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 710, + 234, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 234, + 722 + ], + "score": 1.0, + "content": "We do not require this assumption.", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 719, + 308, + 733 + ], + "spans": [ + { + "bbox": [ + 117, + 719, + 308, + 733 + ], + "score": 1.0, + "content": "8https://arxiv.org/abs/1906.02174v2", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "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": "17", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 104, + 82, + 504, + 107 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 181, + 95 + ], + "score": 1.0, + "content": "Finally, we prove", + "type": "text" + }, + { + "bbox": [ + 181, + 83, + 218, + 94 + ], + "score": 0.9, + "content": "\\tilde { \\mu } _ { N \\mathrm { ~ } } < \\mathrm { ~ 2 ~ }", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 80, + 241, + 95 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 242, + 84, + 257, + 94 + ], + "score": 0.84, + "content": "\\mu _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 80, + 482, + 95 + ], + "score": 1.0, + "content": "be the largest eigenvalue of the normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 482, + 82, + 505, + 94 + ], + "score": 0.83, + "content": "\\Delta =", + "type": "inline_equation" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 90, + 414, + 110 + ], + "spans": [ + { + "bbox": [ + 107, + 93, + 185, + 107 + ], + "score": 0.93, + "content": "D ^ { - \\frac { 1 } { 2 } } \\bar { ( } D - \\bar { A } ) D ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 90, + 216, + 110 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 216, + 93, + 279, + 105 + ], + "score": 0.92, + "content": "D ^ { - \\frac { 1 } { 2 } } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 90, + 414, + 110 + ], + "score": 1.0, + "content": "is the diagonal matrix defined by", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 80, + 505, + 110 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 112, + 384, + 146 + ], + "lines": [ + { + "bbox": [ + 225, + 112, + 384, + 146 + ], + "spans": [ + { + "bbox": [ + 225, + 112, + 384, + 146 + ], + "score": 0.94, + "content": "D _ { i i } ^ { - \\frac { 1 } { 2 } } = \\left\\{ \\begin{array} { l l } { \\deg ( i ) ^ { - \\frac { 1 } { 2 } } } & { ( \\mathrm { i f } \\deg ( i ) \\neq 0 ) } \\\\ { 0 } & { ( \\mathrm { i f } \\deg ( i ) = 0 ) } \\end{array} \\right. .", + "type": "interline_equation", + "image_path": "3d269a0ba588fd8303d9cdfd91801f8052013907dddbbf2c70e75cc2e48e6492.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 225, + 112, + 384, + 129.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 225, + 129.0, + 384, + 146.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 152, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 104, + 150, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 104, + 150, + 147, + 167 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 147, + 151, + 183, + 163 + ], + "score": 0.91, + "content": "D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 150, + 203, + 167 + ], + "score": 1.0, + "content": "nor", + "type": "text" + }, + { + "bbox": [ + 203, + 151, + 239, + 163 + ], + "score": 0.92, + "content": "D ^ { \\frac { 1 } { 2 } } D ^ { - { \\frac { 1 } { 2 } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 150, + 386, + 167 + ], + "score": 1.0, + "content": "are not equal to the identity matrix", + "type": "text" + }, + { + "bbox": [ + 387, + 154, + 400, + 164 + ], + "score": 0.89, + "content": "I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 400, + 150, + 506, + 167 + ], + "score": 1.0, + "content": "in general. However, we", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 162, + 129, + 178 + ], + "spans": [ + { + "bbox": [ + 104, + 162, + 129, + 178 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 104, + 150, + 506, + 178 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 254, + 178, + 356, + 194 + ], + "lines": [ + { + "bbox": [ + 254, + 178, + 356, + 194 + ], + "spans": [ + { + "bbox": [ + 254, + 178, + 356, + 194 + ], + "score": 0.9, + "content": "L = D ^ { \\frac { 1 } { 2 } } D ^ { - \\frac { 1 } { 2 } } L D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }", + "type": "interline_equation", + "image_path": "f06328db9cdb9c357ee18d32337ee54247ad13e04e1cc4534382a8bbdb729367.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 254, + 178, + 356, + 194 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 396, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 199, + 396, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 133, + 213 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 200, + 183, + 210 + ], + "score": 0.91, + "content": "L = D - A", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 199, + 396, + 213 + ], + "score": 1.0, + "content": "is the (unnormalized) Laplacian. Therefore, we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 199, + 396, + 213 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 162, + 214, + 452, + 529 + ], + "lines": [ + { + "bbox": [ + 162, + 214, + 452, + 529 + ], + "spans": [ + { + "bbox": [ + 162, + 214, + 452, + 529 + ], + "score": 0.95, + "content": "\\begin{array} { r l } { \\alpha _ { 1 } } & { \\gamma _ { 2 } \\geq \\frac { \\alpha _ { 2 } ( \\lambda _ { 1 } ) } { \\alpha _ { 1 } } } \\\\ { = } & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 1 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 3 } } \\\\ { = } & { \\gamma _ { 2 } \\geq \\alpha _ { 3 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 5 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 6 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } } \\\\ & { - \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 6 } } \\\\ & { \\gamma _ { 6 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\gamma _ { 7 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 3 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & \\gamma _ { 3 } \\geq \\ \\end{array}", + "type": "interline_equation", + "image_path": "0130e9d5369d0baf35ac0feeea7a01ddaaafd449509a606e0c5a756b6400d2fd.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 162, + 214, + 452, + 228.3181818181818 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 162, + 228.3181818181818, + 452, + 242.63636363636363 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 162, + 242.63636363636363, + 452, + 256.95454545454544 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 162, + 256.95454545454544, + 452, + 271.27272727272725 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 162, + 271.27272727272725, + 452, + 285.59090909090907 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 162, + 285.59090909090907, + 452, + 299.9090909090909 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 162, + 299.9090909090909, + 452, + 314.2272727272727 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 162, + 314.2272727272727, + 452, + 328.5454545454545 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 162, + 328.5454545454545, + 452, + 342.8636363636363 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 162, + 342.8636363636363, + 452, + 357.18181818181813 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 162, + 357.18181818181813, + 452, + 371.49999999999994 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 162, + 371.49999999999994, + 452, + 385.81818181818176 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 162, + 385.81818181818176, + 452, + 400.13636363636357 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 162, + 400.13636363636357, + 452, + 414.4545454545454 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 162, + 414.4545454545454, + 452, + 428.7727272727272 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 162, + 428.7727272727272, + 452, + 443.090909090909 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 162, + 443.090909090909, + 452, + 457.4090909090908 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 162, + 457.4090909090908, + 452, + 471.72727272727263 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 162, + 471.72727272727263, + 452, + 486.04545454545445 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 162, + 486.04545454545445, + 452, + 500.36363636363626 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 162, + 500.36363636363626, + 452, + 514.6818181818181 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 162, + 514.6818181818181, + 452, + 529.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 537, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 536, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 311, + 558 + ], + "score": 1.0, + "content": "Therefore, we have µ˜N ≤ µN 7. Since maxi∈[N]", + "type": "text" + }, + { + "bbox": [ + 266, + 536, + 381, + 559 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\frac { \\deg ( i ) } { \\deg ( i ) + 1 } \\right) ^ { \\frac { 1 } { 2 } } < 1 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 542, + 435, + 556 + ], + "score": 1.0, + "content": ", the equality", + "type": "text" + }, + { + "bbox": [ + 435, + 544, + 479, + 555 + ], + "score": 0.92, + "content": "\\tilde { \\mu } _ { N } = \\mu _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 542, + 505, + 556 + ], + "score": 1.0, + "content": "holds", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 557, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 164, + 570 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 164, + 558, + 200, + 569 + ], + "score": 0.91, + "content": "\\mu _ { N } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 557, + 236, + 570 + ], + "score": 1.0, + "content": ", that is,", + "type": "text" + }, + { + "bbox": [ + 236, + 558, + 245, + 568 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 557, + 264, + 570 + ], + "score": 1.0, + "content": "has", + "type": "text" + }, + { + "bbox": [ + 264, + 558, + 275, + 568 + ], + "score": 0.83, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 557, + 505, + 570 + ], + "score": 1.0, + "content": "connected components. On the other hand, it is known", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 568, + 506, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 568, + 124, + 581 + ], + "score": 1.0, + "content": "that", + "type": "text" + }, + { + "bbox": [ + 124, + 569, + 159, + 580 + ], + "score": 0.91, + "content": "\\mu _ { N } \\leq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 568, + 309, + 581 + ], + "score": 1.0, + "content": "and the equality holds if and only if", + "type": "text" + }, + { + "bbox": [ + 309, + 569, + 319, + 579 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 568, + 506, + 581 + ], + "score": 1.0, + "content": "has non-trivial bipartite graph as a connected", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 579, + 506, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 224, + 592 + ], + "score": 1.0, + "content": "component (see, e.g., Chung", + "type": "text" + }, + { + "bbox": [ + 224, + 580, + 233, + 590 + ], + "score": 0.51, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 579, + 351, + 592 + ], + "score": 1.0, + "content": "Graham (1997)). Therefore,", + "type": "text" + }, + { + "bbox": [ + 351, + 580, + 393, + 591 + ], + "score": 0.91, + "content": "\\tilde { \\mu } _ { N } = \\mu _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 579, + 412, + 592 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 412, + 580, + 447, + 591 + ], + "score": 0.9, + "content": "\\mu _ { N } = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 579, + 506, + 592 + ], + "score": 1.0, + "content": "does not hold", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 591, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 591, + 227, + 602 + ], + "score": 1.0, + "content": "simultaneously and we obtain", + "type": "text" + }, + { + "bbox": [ + 228, + 591, + 261, + 602 + ], + "score": 0.9, + "content": "\\mu _ { N } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 591, + 264, + 602 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 493, + 591, + 506, + 602 + ], + "score": 0.996, + "content": "□", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 536, + 506, + 602 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 618, + 480, + 645 + ], + "lines": [ + { + "bbox": [ + 105, + 617, + 482, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 482, + 632 + ], + "score": 1.0, + "content": "C COUNTEREXAMPLE OF PREVIOUS STUDY ON OVER-SMOOTHING FOR", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 126, + 632, + 234, + 645 + ], + "spans": [ + { + "bbox": [ + 126, + 632, + 234, + 645 + ], + "score": 1.0, + "content": "NON-LINEAR GNNS", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35.5 + }, + { + "type": "text", + "bbox": [ + 106, + 656, + 505, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 656, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 352, + 670 + ], + "score": 1.0, + "content": "We restate Theorem 1 of the preprint (version2) of Luan et al.", + "type": "text" + }, + { + "bbox": [ + 352, + 657, + 383, + 668 + ], + "score": 0.79, + "content": "( 2 0 1 9 ) ^ { 8 }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 656, + 403, + 670 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 403, + 657, + 412, + 667 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 656, + 506, + 670 + ], + "score": 1.0, + "content": "be a simple undirected", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 152, + 681 + ], + "score": 1.0, + "content": "graph with", + "type": "text" + }, + { + "bbox": [ + 152, + 669, + 163, + 678 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 668, + 207, + 681 + ], + "score": 1.0, + "content": "nodes and", + "type": "text" + }, + { + "bbox": [ + 207, + 669, + 214, + 678 + ], + "score": 0.8, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "connected components such that it does not have a bipartite component.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 677, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 104, + 677, + 122, + 694 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 679, + 247, + 690 + ], + "score": 0.91, + "content": "L = \\tilde { D } ^ { - 1 / 2 } \\tilde { A } \\tilde { D } ^ { - 1 / 2 } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 247, + 677, + 421, + 694 + ], + "score": 1.0, + "content": "be the augmented normalized Laplacian of", + "type": "text" + }, + { + "bbox": [ + 422, + 681, + 431, + 690 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 677, + 451, + 694 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 451, + 680, + 487, + 692 + ], + "score": 0.92, + "content": "F \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 677, + 506, + 694 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 104, + 656, + 506, + 694 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 107, + 79, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 163, + 93 + ], + "score": 0.91, + "content": "W _ { n } \\in \\mathbb { R } ^ { F \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 79, + 250, + 96 + ], + "score": 1.0, + "content": "be the weight of the", + "type": "text" + }, + { + "bbox": [ + 250, + 84, + 258, + 92 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 79, + 308, + 96 + ], + "score": 1.0, + "content": "-th layer for", + "type": "text" + }, + { + "bbox": [ + 308, + 83, + 344, + 94 + ], + "score": 0.91, + "content": "n \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 79, + 406, + 96 + ], + "score": 1.0, + "content": ". For the input", + "type": "text" + }, + { + "bbox": [ + 407, + 81, + 459, + 93 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 79, + 506, + 96 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 89, + 504, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 89, + 150, + 108 + ], + "score": 1.0, + "content": "the output", + "type": "text" + }, + { + "bbox": [ + 150, + 93, + 204, + 105 + ], + "score": 0.93, + "content": "Y _ { n } \\in \\mathbb { R } ^ { N \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 89, + 232, + 108 + ], + "score": 1.0, + "content": "of the", + "type": "text" + }, + { + "bbox": [ + 232, + 95, + 239, + 104 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 89, + 331, + 108 + ], + "score": 1.0, + "content": "-th layer of a GCN by", + "type": "text" + }, + { + "bbox": [ + 331, + 93, + 467, + 106 + ], + "score": 0.91, + "content": "Y _ { n } = \\sigma ( L \\cdot \\cdot \\cdot \\sigma ( L X W _ { 0 } ) \\cdot \\cdot \\cdot W _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 89, + 496, + 108 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 496, + 96, + 504, + 103 + ], + "score": 0.74, + "content": "\\sigma", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 103, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 103, + 102, + 285, + 118 + ], + "score": 1.0, + "content": "is the ReLU function. We assume the input", + "type": "text" + }, + { + "bbox": [ + 286, + 105, + 296, + 114 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 102, + 473, + 118 + ], + "score": 1.0, + "content": "is drawn from a continuous distribution on", + "type": "text" + }, + { + "bbox": [ + 473, + 104, + 501, + 114 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { N \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 102, + 506, + 118 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 268, + 129 + ], + "score": 1.0, + "content": "Then, the theorem claims that we have", + "type": "text" + }, + { + "bbox": [ + 268, + 115, + 367, + 127 + ], + "score": 0.73, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { n \\to \\infty } \\operatorname { r a n k } ( Y _ { n } ) = k } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "almost surely with respect to the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 180, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 165, + 138 + ], + "score": 1.0, + "content": "distribution of", + "type": "text" + }, + { + "bbox": [ + 166, + 127, + 176, + 136 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 126, + 180, + 138 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 308, + 157 + ], + "score": 1.0, + "content": "We construct a conterexample. Consider a graph", + "type": "text" + }, + { + "bbox": [ + 309, + 144, + 318, + 154 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 141, + 375, + 157 + ], + "score": 1.0, + "content": "consisting of", + "type": "text" + }, + { + "bbox": [ + 375, + 144, + 406, + 154 + ], + "score": 0.91, + "content": "N = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 141, + 505, + 157 + ], + "score": 1.0, + "content": "nodes whose adjacency", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 145, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 145, + 166 + ], + "score": 1.0, + "content": "matrix is", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 169, + 351, + 217 + ], + "lines": [ + { + "bbox": [ + 259, + 169, + 351, + 217 + ], + "spans": [ + { + "bbox": [ + 259, + 169, + 351, + 217 + ], + "score": 0.94, + "content": "A = { \\left[ \\begin{array} { l l l l } { 1 } & { 1 } & { 1 } & { 1 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 0 } & { 0 } & { 1 } \\end{array} \\right] } ~ .", + "type": "interline_equation", + "image_path": "7a5e18ea3dc07a33bee281a590ef95fa607fa5f03975c7fdc507c908ced32b73.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 259, + 169, + 351, + 193.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 259, + 193.0, + 351, + 217.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 146, + 234 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 147, + 223, + 156, + 232 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 222, + 231, + 234 + ], + "score": 1.0, + "content": "is connected (i.e.,", + "type": "text" + }, + { + "bbox": [ + 231, + 222, + 258, + 232 + ], + "score": 0.89, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 222, + 437, + 234 + ], + "score": 1.0, + "content": ") and is not bipartite. We make a GCN with", + "type": "text" + }, + { + "bbox": [ + 437, + 223, + 466, + 232 + ], + "score": 0.91, + "content": "F = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "channels", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 237, + 246 + ], + "score": 1.0, + "content": "and whose weight matrices are", + "type": "text" + }, + { + "bbox": [ + 237, + 234, + 279, + 245 + ], + "score": 0.92, + "content": "W _ { n } \\ = \\ I _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 233, + 435, + 246 + ], + "score": 1.0, + "content": "(the identity matrix of size 3) for all", + "type": "text" + }, + { + "bbox": [ + 435, + 234, + 466, + 244 + ], + "score": 0.89, + "content": "n \\in \\mathbb N", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 233, + 505, + 246 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 207, + 256 + ], + "score": 1.0, + "content": "distribution of the input", + "type": "text" + }, + { + "bbox": [ + 207, + 245, + 217, + 254 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 244, + 505, + 256 + ], + "score": 1.0, + "content": ", we consider an absolutely continuous distribution with respect to the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 252, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 252, + 199, + 268 + ], + "score": 1.0, + "content": "Lebesgue measure on", + "type": "text" + }, + { + "bbox": [ + 199, + 254, + 222, + 265 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { 4 \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 252, + 266, + 268 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 266, + 255, + 339, + 267 + ], + "score": 0.92, + "content": "P ( X \\geq 0 ) ~ { \\stackrel { . } { > } } ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 252, + 368, + 268 + ], + "score": 1.0, + "content": "(here,", + "type": "text" + }, + { + "bbox": [ + 368, + 255, + 402, + 266 + ], + "score": 0.9, + "content": "X ~ \\geq ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 252, + 506, + 268 + ], + "score": 1.0, + "content": "means the element-wise", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 266, + 446, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 446, + 279 + ], + "score": 1.0, + "content": "comparison). For example, the standard Gaussian distribution satisfies the condition.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 131, + 295 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 283, + 159, + 294 + ], + "score": 0.9, + "content": "L \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 282, + 200, + 295 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 200, + 283, + 248, + 294 + ], + "score": 0.91, + "content": "Y _ { n } = L ^ { n } X", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 282, + 259, + 295 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 259, + 283, + 289, + 294 + ], + "score": 0.9, + "content": "X \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 282, + 311, + 295 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 312, + 282, + 364, + 293 + ], + "score": 0.91, + "content": "{ \\cal L } = { \\cal P } ^ { \\top } \\Delta { \\cal P }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 282, + 468, + 295 + ], + "score": 1.0, + "content": "be the diagonalization of", + "type": "text" + }, + { + "bbox": [ + 469, + 284, + 477, + 293 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 293, + 504, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 294, + 149, + 306 + ], + "score": 0.92, + "content": "P \\in O ( 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 293, + 311, + 307 + ], + "score": 1.0, + "content": "is an orthogonal matrix of size 4. Since", + "type": "text" + }, + { + "bbox": [ + 312, + 294, + 365, + 306 + ], + "score": 0.81, + "content": "\\mathrm { r a n k } ( L ) = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 293, + 405, + 307 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 405, + 294, + 464, + 306 + ], + "score": 0.91, + "content": "{ \\bar { \\operatorname { r a n k } } } ( \\Lambda ^ { n } ) = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 293, + 496, + 307 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 497, + 296, + 504, + 304 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 189, + 318 + ], + "score": 1.0, + "content": "(we can assume that", + "type": "text" + }, + { + "bbox": [ + 189, + 305, + 224, + 316 + ], + "score": 0.93, + "content": "\\Lambda _ { 4 4 } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 305, + 459, + 318 + ], + "score": 1.0, + "content": "without loss of generality). Therefore, under the condition", + "type": "text" + }, + { + "bbox": [ + 459, + 306, + 487, + 316 + ], + "score": 0.91, + "content": "X \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 305, + 505, + 318 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 129, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 129, + 328 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 331, + 461, + 366 + ], + "lines": [ + { + "bbox": [ + 149, + 331, + 461, + 366 + ], + "spans": [ + { + "bbox": [ + 149, + 331, + 461, + 366 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\mathrm { r a n k } ( Y _ { n } ) = 3 \\iff \\mathrm { r a n k } ( P ^ { \\top } \\Lambda ^ { n } P X ) = 3 } \\\\ & { \\qquad \\iff X \\in \\{ P ^ { - 1 } \\left[ B \\quad v \\right] ^ { \\top } | B \\in \\mathbb { R } ^ { 3 \\times 3 } \\mathrm { i s ~ i n v e r t i b l e } , v \\in \\mathbb { R } ^ { 3 } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "a6c4bcffddae18f22db6c3010b3d23d09c517d0a82c87531f0c12ddcfa294be5.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 149, + 331, + 461, + 342.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 149, + 342.6666666666667, + 461, + 354.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 149, + 354.33333333333337, + 461, + 366.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 370, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 290, + 383 + ], + "score": 1.0, + "content": "Note that the last condition is independent of", + "type": "text" + }, + { + "bbox": [ + 291, + 373, + 298, + 380 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 370, + 505, + 383 + ], + "score": 1.0, + "content": ". Since the set of invertible matrices is dense in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "set of all matrices of the same size (with respect to the standard topology of the Euclidean space),", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 507, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 141, + 406 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 142, + 392, + 216, + 405 + ], + "score": 0.92, + "content": "P ( \\{ \\mathrm { r a n k } ( Y _ { n } ) = 3 ", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 392, + 244, + 406 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 245, + 392, + 298, + 405 + ], + "score": 0.79, + "content": "n \\in \\mathbb { N } \\} ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 392, + 381, + 406 + ], + "score": 1.0, + "content": ". Therefore, we have", + "type": "text" + }, + { + "bbox": [ + 382, + 392, + 477, + 405 + ], + "score": 0.77, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { n \\infty } \\operatorname { r a n k } ( Y _ { n } ) = 3 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 392, + 507, + 406 + ], + "score": 1.0, + "content": "with a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 193, + 417 + ], + "score": 1.0, + "content": "non-zero probability.", + "type": "text" + }, + { + "bbox": [ + 494, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 245, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 245, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 245, + 446 + ], + "score": 1.0, + "content": "D PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "score": 1.0, + "content": "We follow the proof of Theorem 2 of Chung & Radcliffe (2011). The idea is to relate the spectral", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "distribution of the normalized Laplacian with that of its expected version. Since we can compute", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "the latter one explicitly for the Erdos-R ˝ enyi graph, we can derive the convergence of spectra. We ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 490, + 483, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 483, + 503 + ], + "score": 1.0, + "content": "employ this technique and derive similar conclusion for the augmented normalized Laplacian.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 444, + 519 + ], + "score": 1.0, + "content": "First, we consider genral random graphs not restricted to Erdos-R ˝ enyi graphs. Let ´", + "type": "text" + }, + { + "bbox": [ + 445, + 507, + 483, + 518 + ], + "score": 0.9, + "content": "N \\in { \\mathbb { N } } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 506, + 505, + 519 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 515, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 107, + 518, + 177, + 531 + ], + "score": 0.92, + "content": "P = ( p _ { i j } ) _ { i , j \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 515, + 387, + 533 + ], + "score": 1.0, + "content": "be a non-negative symmetric matrix (meaning that", + "type": "text" + }, + { + "bbox": [ + 387, + 518, + 421, + 530 + ], + "score": 0.92, + "content": "p _ { i j } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 515, + 455, + 533 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 455, + 518, + 500, + 529 + ], + "score": 0.9, + "content": "i , j \\in [ N ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 515, + 506, + 533 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 123, + 542 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 530, + 133, + 539 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 528, + 287, + 542 + ], + "score": 1.0, + "content": "be an undirected random graph with", + "type": "text" + }, + { + "bbox": [ + 288, + 529, + 298, + 539 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 528, + 438, + 542 + ], + "score": 1.0, + "content": "nodes such that an edge between", + "type": "text" + }, + { + "bbox": [ + 439, + 530, + 444, + 539 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 528, + 463, + 542 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 464, + 530, + 470, + 541 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "is inde-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 248, + 553 + ], + "score": 1.0, + "content": "pendently present with probability", + "type": "text" + }, + { + "bbox": [ + 248, + 541, + 262, + 551 + ], + "score": 0.82, + "content": "p _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 540, + 284, + 553 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 285, + 540, + 294, + 550 + ], + "score": 0.8, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 540, + 312, + 553 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 540, + 322, + 550 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "be the adjacency and the degree matrices of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 551, + 115, + 560 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 550, + 207, + 565 + ], + "score": 1.0, + "content": ", respectively (that is,", + "type": "text" + }, + { + "bbox": [ + 208, + 551, + 275, + 563 + ], + "score": 0.89, + "content": "A _ { i j } \\sim \\mathrm { B e r } ( p _ { i j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 550, + 485, + 565 + ], + "score": 1.0, + "content": ", i.i.d.). Define the expected node degree of node", + "type": "text" + }, + { + "bbox": [ + 485, + 551, + 491, + 560 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 562, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 174, + 578 + ], + "score": 0.92, + "content": "\\begin{array} { r } { t _ { i } : = \\sum _ { j = 1 } ^ { N } p _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 563, + 200, + 579 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 200, + 563, + 263, + 576 + ], + "score": 0.85, + "content": "{ \\tilde { A } } : = A + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 563, + 269, + 579 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 269, + 563, + 335, + 576 + ], + "score": 0.9, + "content": "{ \\tilde { D } } : = D + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 563, + 384, + 579 + ], + "score": 1.0, + "content": "and define", + "type": "text" + }, + { + "bbox": [ + 384, + 562, + 486, + 576 + ], + "score": 0.93, + "content": "{ \\bar { A } } : = \\mathbb { E } [ { \\tilde { A } } ] = P + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 563, + 507, + 579 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 576, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 256, + 591 + ], + "score": 0.88, + "content": "\\bar { D } : = \\mathbb { E } [ \\tilde { D } ] = \\mathrm { d i a g } ( t _ { 1 } , \\dots , t _ { N } ) + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 576, + 506, + 594 + ], + "score": 1.0, + "content": "correspondingly. We define the augmented normalized Lapla-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 589, + 503, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 126, + 604 + ], + "score": 1.0, + "content": "cian", + "type": "text" + }, + { + "bbox": [ + 127, + 591, + 137, + 602 + ], + "score": 0.83, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 589, + 150, + 604 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 151, + 592, + 160, + 602 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 589, + 176, + 604 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 176, + 590, + 280, + 603 + ], + "score": 0.85, + "content": "\\tilde { \\Delta } : = I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 589, + 399, + 604 + ], + "score": 1.0, + "content": "and its expected version by", + "type": "text" + }, + { + "bbox": [ + 399, + 590, + 503, + 603 + ], + "score": 0.92, + "content": "\\bar { \\Delta } : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\bar { A } \\bar { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 600, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 600, + 223, + 617 + ], + "score": 1.0, + "content": "9. For a symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 223, + 602, + 266, + 613 + ], + "score": 0.88, + "content": "X ~ \\in ~ \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 600, + 505, + 617 + ], + "score": 1.0, + "content": ", we define its eigenvalues, sorted in ascending order by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 613, + 419, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 203, + 626 + ], + "score": 0.93, + "content": "\\lambda _ { 1 } ( X ) \\leq \\cdots \\leq \\lambda _ { N } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 613, + 305, + 627 + ], + "score": 1.0, + "content": "and its operator norm by", + "type": "text" + }, + { + "bbox": [ + 305, + 613, + 414, + 627 + ], + "score": 0.93, + "content": "\\| X \\| = \\operatorname* { i n a x } _ { n \\in [ N ] } | \\lambda _ { n } ( X ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 613, + 419, + 627 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 360, + 642 + ], + "score": 1.0, + "content": "Lemma 5 (Ref. Chung & Radcliffe (2011) Theorem 2). Let", + "type": "text" + }, + { + "bbox": [ + 360, + 629, + 435, + 641 + ], + "score": 0.89, + "content": "\\delta : = \\mathrm { m i n } _ { n \\in [ N ] } t _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 627, + 505, + 642 + ], + "score": 1.0, + "content": "be the minimum", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 183, + 654 + ], + "score": 1.0, + "content": "expected degree of", + "type": "text" + }, + { + "bbox": [ + 183, + 641, + 192, + 651 + ], + "score": 0.71, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 641, + 211, + 654 + ], + "score": 1.0, + "content": ". Set", + "type": "text" + }, + { + "bbox": [ + 211, + 641, + 310, + 653 + ], + "score": 0.92, + "content": "k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 641, + 371, + 654 + ], + "score": 1.0, + "content": ". Then, for any", + "type": "text" + }, + { + "bbox": [ + 372, + 642, + 396, + 652 + ], + "score": 0.83, + "content": "\\varepsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 641, + 399, + 654 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 400, + 641, + 487, + 653 + ], + "score": 0.9, + "content": "i f { \\dot { \\delta } } + { \\dot { 1 } } > k ( \\varepsilon ) \\log N", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 641, + 505, + 654 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 651, + 129, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 129, + 665 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 667, + 396, + 696 + ], + "lines": [ + { + "bbox": [ + 215, + 667, + 396, + 696 + ], + "spans": [ + { + "bbox": [ + 215, + 667, + 396, + 696 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } }", + "type": "interline_equation", + "image_path": "faa530371dd9306d6740988ca847f650db8a9d0bcc8578a2693011979e058fb8.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 667, + 396, + 681.5 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 215, + 681.5, + 396, + 696.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 702, + 229, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 227, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 204, + 715 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 204, + 703, + 227, + 713 + ], + "score": 0.85, + "content": "1 - \\varepsilon", + "type": "inline_equation" + } + ], + "index": 45 + } + ], + "index": 45 + } + ], + "page_idx": 17, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 117, + 720, + 388, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 718, + 388, + 734 + ], + "spans": [ + { + "bbox": [ + 118, + 718, + 158, + 734 + ], + "score": 1.0, + "content": "9Note that", + "type": "text" + }, + { + "bbox": [ + 158, + 720, + 198, + 732 + ], + "score": 0.92, + "content": "\\mathbb { E } [ \\tilde { \\Delta } ] \\neq \\bar { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 718, + 351, + 734 + ], + "score": 1.0, + "content": "in general due to the dependence between", + "type": "text" + }, + { + "bbox": [ + 352, + 721, + 359, + 730 + ], + "score": 0.84, + "content": "\\tilde { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 718, + 375, + 734 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 376, + 720, + 384, + 730 + ], + "score": 0.85, + "content": "\\tilde { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 718, + 388, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 505, + 138 + ], + "lines": [ + { + "bbox": [ + 107, + 79, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 163, + 93 + ], + "score": 0.91, + "content": "W _ { n } \\in \\mathbb { R } ^ { F \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 79, + 250, + 96 + ], + "score": 1.0, + "content": "be the weight of the", + "type": "text" + }, + { + "bbox": [ + 250, + 84, + 258, + 92 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 79, + 308, + 96 + ], + "score": 1.0, + "content": "-th layer for", + "type": "text" + }, + { + "bbox": [ + 308, + 83, + 344, + 94 + ], + "score": 0.91, + "content": "n \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 79, + 406, + 96 + ], + "score": 1.0, + "content": ". For the input", + "type": "text" + }, + { + "bbox": [ + 407, + 81, + 459, + 93 + ], + "score": 0.91, + "content": "X \\in \\mathbb { R } ^ { N \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 79, + 506, + 96 + ], + "score": 1.0, + "content": ", we define", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 89, + 504, + 108 + ], + "spans": [ + { + "bbox": [ + 104, + 89, + 150, + 108 + ], + "score": 1.0, + "content": "the output", + "type": "text" + }, + { + "bbox": [ + 150, + 93, + 204, + 105 + ], + "score": 0.93, + "content": "Y _ { n } \\in \\mathbb { R } ^ { N \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 89, + 232, + 108 + ], + "score": 1.0, + "content": "of the", + "type": "text" + }, + { + "bbox": [ + 232, + 95, + 239, + 104 + ], + "score": 0.77, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 89, + 331, + 108 + ], + "score": 1.0, + "content": "-th layer of a GCN by", + "type": "text" + }, + { + "bbox": [ + 331, + 93, + 467, + 106 + ], + "score": 0.91, + "content": "Y _ { n } = \\sigma ( L \\cdot \\cdot \\cdot \\sigma ( L X W _ { 0 } ) \\cdot \\cdot \\cdot W _ { n } )", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 89, + 496, + 108 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 496, + 96, + 504, + 103 + ], + "score": 0.74, + "content": "\\sigma", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 103, + 102, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 103, + 102, + 285, + 118 + ], + "score": 1.0, + "content": "is the ReLU function. We assume the input", + "type": "text" + }, + { + "bbox": [ + 286, + 105, + 296, + 114 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 102, + 473, + 118 + ], + "score": 1.0, + "content": "is drawn from a continuous distribution on", + "type": "text" + }, + { + "bbox": [ + 473, + 104, + 501, + 114 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { N \\times F }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 102, + 506, + 118 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 113, + 506, + 129 + ], + "spans": [ + { + "bbox": [ + 105, + 113, + 268, + 129 + ], + "score": 1.0, + "content": "Then, the theorem claims that we have", + "type": "text" + }, + { + "bbox": [ + 268, + 115, + 367, + 127 + ], + "score": 0.73, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { n \\to \\infty } \\operatorname { r a n k } ( Y _ { n } ) = k } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 113, + 506, + 129 + ], + "score": 1.0, + "content": "almost surely with respect to the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 126, + 180, + 138 + ], + "spans": [ + { + "bbox": [ + 106, + 126, + 165, + 138 + ], + "score": 1.0, + "content": "distribution of", + "type": "text" + }, + { + "bbox": [ + 166, + 127, + 176, + 136 + ], + "score": 0.82, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 176, + 126, + 180, + 138 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2, + "bbox_fs": [ + 103, + 79, + 506, + 138 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 142, + 504, + 166 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 505, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 308, + 157 + ], + "score": 1.0, + "content": "We construct a conterexample. Consider a graph", + "type": "text" + }, + { + "bbox": [ + 309, + 144, + 318, + 154 + ], + "score": 0.82, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 318, + 141, + 375, + 157 + ], + "score": 1.0, + "content": "consisting of", + "type": "text" + }, + { + "bbox": [ + 375, + 144, + 406, + 154 + ], + "score": 0.91, + "content": "N = 4", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 141, + 505, + 157 + ], + "score": 1.0, + "content": "nodes whose adjacency", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 145, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 145, + 166 + ], + "score": 1.0, + "content": "matrix is", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 141, + 505, + 166 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 259, + 169, + 351, + 217 + ], + "lines": [ + { + "bbox": [ + 259, + 169, + 351, + 217 + ], + "spans": [ + { + "bbox": [ + 259, + 169, + 351, + 217 + ], + "score": 0.94, + "content": "A = { \\left[ \\begin{array} { l l l l } { 1 } & { 1 } & { 1 } & { 1 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 0 } & { 0 } & { 1 } \\end{array} \\right] } ~ .", + "type": "interline_equation", + "image_path": "7a5e18ea3dc07a33bee281a590ef95fa607fa5f03975c7fdc507c908ced32b73.jpg" + } + ] + } + ], + "index": 7.5, + "virtual_lines": [ + { + "bbox": [ + 259, + 169, + 351, + 193.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 259, + 193.0, + 351, + 217.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 221, + 505, + 278 + ], + "lines": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 146, + 234 + ], + "score": 1.0, + "content": "Note that", + "type": "text" + }, + { + "bbox": [ + 147, + 223, + 156, + 232 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 222, + 231, + 234 + ], + "score": 1.0, + "content": "is connected (i.e.,", + "type": "text" + }, + { + "bbox": [ + 231, + 222, + 258, + 232 + ], + "score": 0.89, + "content": "k = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 222, + 437, + 234 + ], + "score": 1.0, + "content": ") and is not bipartite. We make a GCN with", + "type": "text" + }, + { + "bbox": [ + 437, + 223, + 466, + 232 + ], + "score": 0.91, + "content": "F = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "channels", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 233, + 505, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 237, + 246 + ], + "score": 1.0, + "content": "and whose weight matrices are", + "type": "text" + }, + { + "bbox": [ + 237, + 234, + 279, + 245 + ], + "score": 0.92, + "content": "W _ { n } \\ = \\ I _ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 233, + 435, + 246 + ], + "score": 1.0, + "content": "(the identity matrix of size 3) for all", + "type": "text" + }, + { + "bbox": [ + 435, + 234, + 466, + 244 + ], + "score": 0.89, + "content": "n \\in \\mathbb N", + "type": "inline_equation" + }, + { + "bbox": [ + 466, + 233, + 505, + 246 + ], + "score": 1.0, + "content": ". For the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 244, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 207, + 256 + ], + "score": 1.0, + "content": "distribution of the input", + "type": "text" + }, + { + "bbox": [ + 207, + 245, + 217, + 254 + ], + "score": 0.8, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 244, + 505, + 256 + ], + "score": 1.0, + "content": ", we consider an absolutely continuous distribution with respect to the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 252, + 506, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 252, + 199, + 268 + ], + "score": 1.0, + "content": "Lebesgue measure on", + "type": "text" + }, + { + "bbox": [ + 199, + 254, + 222, + 265 + ], + "score": 0.9, + "content": "\\mathbb { R } ^ { 4 \\times 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 252, + 266, + 268 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 266, + 255, + 339, + 267 + ], + "score": 0.92, + "content": "P ( X \\geq 0 ) ~ { \\stackrel { . } { > } } ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 252, + 368, + 268 + ], + "score": 1.0, + "content": "(here,", + "type": "text" + }, + { + "bbox": [ + 368, + 255, + 402, + 266 + ], + "score": 0.9, + "content": "X ~ \\geq ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 252, + 506, + 268 + ], + "score": 1.0, + "content": "means the element-wise", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 266, + 446, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 446, + 279 + ], + "score": 1.0, + "content": "comparison). For example, the standard Gaussian distribution satisfies the condition.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11, + "bbox_fs": [ + 104, + 222, + 506, + 279 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 281, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 131, + 295 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 283, + 159, + 294 + ], + "score": 0.9, + "content": "L \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 282, + 200, + 295 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 200, + 283, + 248, + 294 + ], + "score": 0.91, + "content": "Y _ { n } = L ^ { n } X", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 282, + 259, + 295 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 259, + 283, + 289, + 294 + ], + "score": 0.9, + "content": "X \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 282, + 311, + 295 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 312, + 282, + 364, + 293 + ], + "score": 0.91, + "content": "{ \\cal L } = { \\cal P } ^ { \\top } \\Delta { \\cal P }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 282, + 468, + 295 + ], + "score": 1.0, + "content": "be the diagonalization of", + "type": "text" + }, + { + "bbox": [ + 469, + 284, + 477, + 293 + ], + "score": 0.82, + "content": "L", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "where", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 293, + 504, + 307 + ], + "spans": [ + { + "bbox": [ + 107, + 294, + 149, + 306 + ], + "score": 0.92, + "content": "P \\in O ( 4 )", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 293, + 311, + 307 + ], + "score": 1.0, + "content": "is an orthogonal matrix of size 4. Since", + "type": "text" + }, + { + "bbox": [ + 312, + 294, + 365, + 306 + ], + "score": 0.81, + "content": "\\mathrm { r a n k } ( L ) = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 365, + 293, + 405, + 307 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 405, + 294, + 464, + 306 + ], + "score": 0.91, + "content": "{ \\bar { \\operatorname { r a n k } } } ( \\Lambda ^ { n } ) = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 293, + 496, + 307 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 497, + 296, + 504, + 304 + ], + "score": 0.72, + "content": "n", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 189, + 318 + ], + "score": 1.0, + "content": "(we can assume that", + "type": "text" + }, + { + "bbox": [ + 189, + 305, + 224, + 316 + ], + "score": 0.93, + "content": "\\Lambda _ { 4 4 } = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 305, + 459, + 318 + ], + "score": 1.0, + "content": "without loss of generality). Therefore, under the condition", + "type": "text" + }, + { + "bbox": [ + 459, + 306, + 487, + 316 + ], + "score": 0.91, + "content": "X \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 305, + 505, + 318 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 315, + 129, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 129, + 328 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 282, + 505, + 328 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 149, + 331, + 461, + 366 + ], + "lines": [ + { + "bbox": [ + 149, + 331, + 461, + 366 + ], + "spans": [ + { + "bbox": [ + 149, + 331, + 461, + 366 + ], + "score": 0.87, + "content": "\\begin{array} { r l } & { \\mathrm { r a n k } ( Y _ { n } ) = 3 \\iff \\mathrm { r a n k } ( P ^ { \\top } \\Lambda ^ { n } P X ) = 3 } \\\\ & { \\qquad \\iff X \\in \\{ P ^ { - 1 } \\left[ B \\quad v \\right] ^ { \\top } | B \\in \\mathbb { R } ^ { 3 \\times 3 } \\mathrm { i s ~ i n v e r t i b l e } , v \\in \\mathbb { R } ^ { 3 } \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "a6c4bcffddae18f22db6c3010b3d23d09c517d0a82c87531f0c12ddcfa294be5.jpg" + } + ] + } + ], + "index": 19, + "virtual_lines": [ + { + "bbox": [ + 149, + 331, + 461, + 342.6666666666667 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 149, + 342.6666666666667, + 461, + 354.33333333333337 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 149, + 354.33333333333337, + 461, + 366.00000000000006 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 370, + 505, + 415 + ], + "lines": [ + { + "bbox": [ + 105, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 290, + 383 + ], + "score": 1.0, + "content": "Note that the last condition is independent of", + "type": "text" + }, + { + "bbox": [ + 291, + 373, + 298, + 380 + ], + "score": 0.78, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 370, + 505, + 383 + ], + "score": 1.0, + "content": ". Since the set of invertible matrices is dense in the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 393 + ], + "score": 1.0, + "content": "set of all matrices of the same size (with respect to the standard topology of the Euclidean space),", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 392, + 507, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 141, + 406 + ], + "score": 1.0, + "content": "we have", + "type": "text" + }, + { + "bbox": [ + 142, + 392, + 216, + 405 + ], + "score": 0.92, + "content": "P ( \\{ \\mathrm { r a n k } ( Y _ { n } ) = 3 ", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 392, + 244, + 406 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 245, + 392, + 298, + 405 + ], + "score": 0.79, + "content": "n \\in \\mathbb { N } \\} ) > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 392, + 381, + 406 + ], + "score": 1.0, + "content": ". Therefore, we have", + "type": "text" + }, + { + "bbox": [ + 382, + 392, + 477, + 405 + ], + "score": 0.77, + "content": "\\begin{array} { r } { \\operatorname* { l i m } _ { n \\infty } \\operatorname { r a n k } ( Y _ { n } ) = 3 } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 392, + 507, + 406 + ], + "score": 1.0, + "content": "with a", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 403, + 505, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 193, + 417 + ], + "score": 1.0, + "content": "non-zero probability.", + "type": "text" + }, + { + "bbox": [ + 494, + 403, + 505, + 414 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 370, + 507, + 417 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 431, + 245, + 444 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 245, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 245, + 446 + ], + "score": 1.0, + "content": "D PROOF OF THEOREM 3", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 456, + 505, + 501 + ], + "lines": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 505, + 469 + ], + "score": 1.0, + "content": "We follow the proof of Theorem 2 of Chung & Radcliffe (2011). The idea is to relate the spectral", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "distribution of the normalized Laplacian with that of its expected version. Since we can compute", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 479, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 505, + 492 + ], + "score": 1.0, + "content": "the latter one explicitly for the Erdos-R ˝ enyi graph, we can derive the convergence of spectra. We ´", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 490, + 483, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 483, + 503 + ], + "score": 1.0, + "content": "employ this technique and derive similar conclusion for the augmented normalized Laplacian.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 455, + 505, + 503 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 506, + 505, + 626 + ], + "lines": [ + { + "bbox": [ + 105, + 506, + 505, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 444, + 519 + ], + "score": 1.0, + "content": "First, we consider genral random graphs not restricted to Erdos-R ˝ enyi graphs. Let ´", + "type": "text" + }, + { + "bbox": [ + 445, + 507, + 483, + 518 + ], + "score": 0.9, + "content": "N \\in { \\mathbb { N } } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 506, + 505, + 519 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 515, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 107, + 518, + 177, + 531 + ], + "score": 0.92, + "content": "P = ( p _ { i j } ) _ { i , j \\in [ N ] }", + "type": "inline_equation" + }, + { + "bbox": [ + 177, + 515, + 387, + 533 + ], + "score": 1.0, + "content": "be a non-negative symmetric matrix (meaning that", + "type": "text" + }, + { + "bbox": [ + 387, + 518, + 421, + 530 + ], + "score": 0.92, + "content": "p _ { i j } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 515, + 455, + 533 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 455, + 518, + 500, + 529 + ], + "score": 0.9, + "content": "i , j \\in [ N ] )", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 515, + 506, + 533 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 528, + 506, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 123, + 542 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 530, + 133, + 539 + ], + "score": 0.76, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 528, + 287, + 542 + ], + "score": 1.0, + "content": "be an undirected random graph with", + "type": "text" + }, + { + "bbox": [ + 288, + 529, + 298, + 539 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 528, + 438, + 542 + ], + "score": 1.0, + "content": "nodes such that an edge between", + "type": "text" + }, + { + "bbox": [ + 439, + 530, + 444, + 539 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 528, + 463, + 542 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 464, + 530, + 470, + 541 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 470, + 528, + 506, + 542 + ], + "score": 1.0, + "content": "is inde-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 540, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 540, + 248, + 553 + ], + "score": 1.0, + "content": "pendently present with probability", + "type": "text" + }, + { + "bbox": [ + 248, + 541, + 262, + 551 + ], + "score": 0.82, + "content": "p _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 540, + 284, + 553 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 285, + 540, + 294, + 550 + ], + "score": 0.8, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 540, + 312, + 553 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 313, + 540, + 322, + 550 + ], + "score": 0.82, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 540, + 506, + 553 + ], + "score": 1.0, + "content": "be the adjacency and the degree matrices of", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 550, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 107, + 551, + 115, + 560 + ], + "score": 0.77, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 550, + 207, + 565 + ], + "score": 1.0, + "content": ", respectively (that is,", + "type": "text" + }, + { + "bbox": [ + 208, + 551, + 275, + 563 + ], + "score": 0.89, + "content": "A _ { i j } \\sim \\mathrm { B e r } ( p _ { i j } )", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 550, + 485, + 565 + ], + "score": 1.0, + "content": ", i.i.d.). Define the expected node degree of node", + "type": "text" + }, + { + "bbox": [ + 485, + 551, + 491, + 560 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 550, + 506, + 565 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 562, + 507, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 562, + 174, + 578 + ], + "score": 0.92, + "content": "\\begin{array} { r } { t _ { i } : = \\sum _ { j = 1 } ^ { N } p _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 563, + 200, + 579 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 200, + 563, + 263, + 576 + ], + "score": 0.85, + "content": "{ \\tilde { A } } : = A + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 563, + 269, + 579 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 269, + 563, + 335, + 576 + ], + "score": 0.9, + "content": "{ \\tilde { D } } : = D + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 563, + 384, + 579 + ], + "score": 1.0, + "content": "and define", + "type": "text" + }, + { + "bbox": [ + 384, + 562, + 486, + 576 + ], + "score": 0.93, + "content": "{ \\bar { A } } : = \\mathbb { E } [ { \\tilde { A } } ] = P + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 563, + 507, + 579 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 576, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 256, + 591 + ], + "score": 0.88, + "content": "\\bar { D } : = \\mathbb { E } [ \\tilde { D } ] = \\mathrm { d i a g } ( t _ { 1 } , \\dots , t _ { N } ) + I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 576, + 506, + 594 + ], + "score": 1.0, + "content": "correspondingly. We define the augmented normalized Lapla-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 589, + 503, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 126, + 604 + ], + "score": 1.0, + "content": "cian", + "type": "text" + }, + { + "bbox": [ + 127, + 591, + 137, + 602 + ], + "score": 0.83, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 589, + 150, + 604 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 151, + 592, + 160, + 602 + ], + "score": 0.8, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 589, + 176, + 604 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 176, + 590, + 280, + 603 + ], + "score": 0.85, + "content": "\\tilde { \\Delta } : = I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 589, + 399, + 604 + ], + "score": 1.0, + "content": "and its expected version by", + "type": "text" + }, + { + "bbox": [ + 399, + 590, + 503, + 603 + ], + "score": 0.92, + "content": "\\bar { \\Delta } : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\bar { A } \\bar { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 600, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 104, + 600, + 223, + 617 + ], + "score": 1.0, + "content": "9. For a symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 223, + 602, + 266, + 613 + ], + "score": 0.88, + "content": "X ~ \\in ~ \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 600, + 505, + 617 + ], + "score": 1.0, + "content": ", we define its eigenvalues, sorted in ascending order by", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 613, + 419, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 203, + 626 + ], + "score": 0.93, + "content": "\\lambda _ { 1 } ( X ) \\leq \\cdots \\leq \\lambda _ { N } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 613, + 305, + 627 + ], + "score": 1.0, + "content": "and its operator norm by", + "type": "text" + }, + { + "bbox": [ + 305, + 613, + 414, + 627 + ], + "score": 0.93, + "content": "\\| X \\| = \\operatorname* { i n a x } _ { n \\in [ N ] } | \\lambda _ { n } ( X ) |", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 613, + 419, + 627 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 506, + 507, + 627 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 628, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 505, + 642 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 360, + 642 + ], + "score": 1.0, + "content": "Lemma 5 (Ref. Chung & Radcliffe (2011) Theorem 2). Let", + "type": "text" + }, + { + "bbox": [ + 360, + 629, + 435, + 641 + ], + "score": 0.89, + "content": "\\delta : = \\mathrm { m i n } _ { n \\in [ N ] } t _ { n }", + "type": "inline_equation" + }, + { + "bbox": [ + 435, + 627, + 505, + 642 + ], + "score": 1.0, + "content": "be the minimum", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 641, + 505, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 183, + 654 + ], + "score": 1.0, + "content": "expected degree of", + "type": "text" + }, + { + "bbox": [ + 183, + 641, + 192, + 651 + ], + "score": 0.71, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 641, + 211, + 654 + ], + "score": 1.0, + "content": ". Set", + "type": "text" + }, + { + "bbox": [ + 211, + 641, + 310, + 653 + ], + "score": 0.92, + "content": "k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 641, + 371, + 654 + ], + "score": 1.0, + "content": ". Then, for any", + "type": "text" + }, + { + "bbox": [ + 372, + 642, + 396, + 652 + ], + "score": 0.83, + "content": "\\varepsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 396, + 641, + 399, + 654 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 400, + 641, + 487, + 653 + ], + "score": 0.9, + "content": "i f { \\dot { \\delta } } + { \\dot { 1 } } > k ( \\varepsilon ) \\log N", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 641, + 505, + 654 + ], + "score": 1.0, + "content": ", we", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 651, + 129, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 651, + 129, + 665 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 627, + 505, + 665 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 215, + 667, + 396, + 696 + ], + "lines": [ + { + "bbox": [ + 215, + 667, + 396, + 696 + ], + "spans": [ + { + "bbox": [ + 215, + 667, + 396, + 696 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } }", + "type": "interline_equation", + "image_path": "faa530371dd9306d6740988ca847f650db8a9d0bcc8578a2693011979e058fb8.jpg" + } + ] + } + ], + "index": 43.5, + "virtual_lines": [ + { + "bbox": [ + 215, + 667, + 396, + 681.5 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 215, + 681.5, + 396, + 696.0 + ], + "spans": [], + "index": 44 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 702, + 229, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 701, + 227, + 715 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 204, + 715 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 204, + 703, + 227, + 713 + ], + "score": 0.85, + "content": "1 - \\varepsilon", + "type": "inline_equation" + } + ], + "index": 45 + } + ], + "index": 45, + "bbox_fs": [ + 106, + 701, + 227, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 506, + 127 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 507, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 258, + 99 + ], + "score": 1.0, + "content": "Proof. By Weyl’s theorem, we have", + "type": "text" + }, + { + "bbox": [ + 259, + 80, + 433, + 100 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 80, + 507, + 99 + ], + "score": 1.0, + "content": ". Therefore, it is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 180, + 114 + ], + "score": 1.0, + "content": "enough to bound", + "type": "text" + }, + { + "bbox": [ + 181, + 99, + 222, + 113 + ], + "score": 0.91, + "content": "\\| \\tilde { \\Delta } - \\bar { \\Delta } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 97, + 247, + 114 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 248, + 100, + 340, + 112 + ], + "score": 0.9, + "content": "C : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\bar { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 97, + 506, + 114 + ], + "score": 1.0, + "content": ". By the triangular inequality, we have", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 111, + 414, + 128 + ], + "spans": [ + { + "bbox": [ + 107, + 112, + 248, + 126 + ], + "score": 0.91, + "content": "\\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 111, + 414, + 128 + ], + "score": 1.0, + "content": ". We will bound these terms respectively.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 105, + 130, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 104, + 130, + 504, + 145 + ], + "spans": [ + { + "bbox": [ + 104, + 130, + 170, + 144 + ], + "score": 1.0, + "content": "First, we bound", + "type": "text" + }, + { + "bbox": [ + 170, + 131, + 205, + 145 + ], + "score": 0.93, + "content": "\\| C - { \\bar { \\Delta } } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 130, + 308, + 144 + ], + "score": 1.0, + "content": ". Direct calculation shows", + "type": "text" + }, + { + "bbox": [ + 308, + 130, + 428, + 145 + ], + "score": 0.93, + "content": "C - \\bar { \\Delta } = - \\bar { D } ^ { - \\frac { 1 } { 2 } } ( A { - } P ) \\bar { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 130, + 447, + 144 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 447, + 131, + 504, + 143 + ], + "score": 0.86, + "content": "E ^ { i j } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 199, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 199, + 157 + ], + "score": 1.0, + "content": "be a matrix defined by", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 164, + 419, + 192 + ], + "lines": [ + { + "bbox": [ + 190, + 164, + 419, + 192 + ], + "spans": [ + { + "bbox": [ + 190, + 164, + 419, + 192 + ], + "score": 0.73, + "content": "( E ^ { i j } ) _ { k l } = { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } ( i = k { \\mathrm { ~ a n d ~ } } i = l ) { \\mathrm { ~ o r ~ } } ( i = l { \\mathrm { ~ a n d ~ } } j = k ) , } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e . } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "fe9cdfdb83f038780d2070d9493f39f5009327a9c0eb6768b53b00ddfffcfe9a.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 190, + 164, + 419, + 192 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 199, + 258, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 258, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 230, + 214 + ], + "score": 1.0, + "content": "We define the random variable", + "type": "text" + }, + { + "bbox": [ + 231, + 200, + 245, + 212 + ], + "score": 0.9, + "content": "Y _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 197, + 258, + 214 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 219, + 365, + 248 + ], + "lines": [ + { + "bbox": [ + 246, + 219, + 365, + 248 + ], + "spans": [ + { + "bbox": [ + 246, + 219, + 365, + 248 + ], + "score": 0.94, + "content": "Y _ { i j } : = \\frac { A _ { i j } - p _ { i j } } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } E ^ { i j } .", + "type": "interline_equation", + "image_path": "d4cfac4151ae12a2d38b39962bf8e377443e15fc5af480baf66fe0bf602e815e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 246, + 219, + 365, + 248 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 100, + 250, + 511, + 294 + ], + "spans": [ + { + "bbox": [ + 100, + 261, + 185, + 294 + ], + "score": 1.0, + "content": "ij Radcliffe (2011) to", + "type": "text" + }, + { + "bbox": [ + 101, + 250, + 132, + 279 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + }, + { + "bbox": [ + 146, + 250, + 274, + 279 + ], + "score": 1.0, + "content": "’s are independent and we have", + "type": "text" + }, + { + "bbox": [ + 185, + 273, + 199, + 286 + ], + "score": 0.89, + "content": "Y _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 261, + 251, + 294 + ], + "score": 1.0, + "content": "’s, we bound", + "type": "text" + }, + { + "bbox": [ + 252, + 273, + 312, + 286 + ], + "score": 0.93, + "content": "\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 256, + 363, + 272 + ], + "score": 0.94, + "content": "\\begin{array} { r } { C - \\bar { \\Delta } = \\sum _ { i , j = 1 } ^ { N } Y _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 261, + 331, + 294 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 271, + 399, + 287 + ], + "score": 0.92, + "content": "\\| \\Sigma _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 250, + 511, + 279 + ], + "score": 1.0, + "content": ". To apply Theorem 5 of Chung &", + "type": "text" + }, + { + "bbox": [ + 400, + 261, + 469, + 294 + ], + "score": 1.0, + "content": ". First, we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 294, + 424, + 325 + ], + "lines": [ + { + "bbox": [ + 186, + 294, + 424, + 325 + ], + "spans": [ + { + "bbox": [ + 186, + 294, + 424, + 325 + ], + "score": 0.92, + "content": "\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\| = \\| Y _ { i j } \\| \\leq \\frac { \\| E ^ { i j } \\| } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } \\leq ( \\delta + 1 ) ^ { - 1 } .", + "type": "interline_equation", + "image_path": "cae7c6b924677a28a81735f52c21a2db10cea67ace48042da7e719cbd90f9ece.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 186, + 294, + 424, + 325 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 131, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 132, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 132, + 344 + ], + "score": 1.0, + "content": "Since", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 348, + 409, + 378 + ], + "lines": [ + { + "bbox": [ + 200, + 348, + 409, + 378 + ], + "spans": [ + { + "bbox": [ + 200, + 348, + 409, + 378 + ], + "score": 0.92, + "content": "\\mathbb { E } [ Y _ { i j } ^ { 2 } ] = \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\left\\{ { E ^ { i i } + E ^ { j j } } \\begin{array} { l l } { ( \\mathrm { i f ~ } i \\ne j ) , } \\\\ { E ^ { i i } } & { ( \\mathrm { i f ~ } i = j ) , } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "a52cf9e5e80dfb4e7363c299ec6286164906ebce3dececfbc73d458f5b45119c.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 200, + 348, + 409, + 378 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 141, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 143, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 143, + 398 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 404, + 402, + 538 + ], + "lines": [ + { + "bbox": [ + 207, + 404, + 402, + 538 + ], + "spans": [ + { + "bbox": [ + 207, + 404, + 402, + 538 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\right| = \\left| \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } E ^ { i i } \\right| \\right| } \\\\ { = \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq ( \\delta + 1 ) ^ { - 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "671d8d0807c4af3435e2fc7a59b03aa66054295c22241b527c28d8f8d4f43a38.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 404, + 402, + 420.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 207, + 420.75, + 402, + 437.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 207, + 437.5, + 402, + 454.25 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 207, + 454.25, + 402, + 471.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 207, + 471.0, + 402, + 487.75 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 207, + 487.75, + 402, + 504.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 207, + 504.5, + 402, + 521.25 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 207, + 521.25, + 402, + 538.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 148, + 564 + ], + "score": 1.0, + "content": "By letting", + "type": "text" + }, + { + "bbox": [ + 149, + 546, + 222, + 566 + ], + "score": 0.89, + "content": "\\begin{array} { r } { a \\gets \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 546, + 227, + 566 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 227, + 549, + 293, + 564 + ], + "score": 0.52, + "content": "M \\gets ( \\delta + 1 ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 546, + 298, + 566 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 298, + 550, + 364, + 563 + ], + "score": 0.87, + "content": "v ^ { 2 } ( \\delta + 1 ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 546, + 505, + 566 + ], + "score": 1.0, + "content": "and applying Theorem 5 of Chung", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 563, + 223, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 223, + 577 + ], + "score": 1.0, + "content": "& Radcliffe (2011), we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 582, + 439, + 641 + ], + "lines": [ + { + "bbox": [ + 171, + 582, + 439, + 641 + ], + "spans": [ + { + "bbox": [ + 171, + 582, + 439, + 641 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\operatorname* { P r } ( \\| C - \\bar { \\Delta } \\| > a ) \\leq 2 N \\exp \\left( - \\displaystyle \\frac { a ^ { 2 } } { 2 ( \\delta + 1 ) ^ { - 1 } + 2 ( \\delta + 1 ) ^ { - 1 } a / 3 } \\right) } \\\\ & { \\phantom { \\operatorname* { P r } } \\leq 2 N \\exp \\left( - \\displaystyle \\frac { 3 \\log \\left( 4 N / \\varepsilon \\right) } { 2 ( 1 + a / 3 ) } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "a1bcd9ba5a9bd225226118673c07e91de3eaf40dfa178bcc7be802d6733cac42.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 171, + 582, + 439, + 601.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 171, + 601.6666666666666, + 439, + 621.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 171, + 621.3333333333333, + 439, + 640.9999999999999 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 443, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 442, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 187, + 660 + ], + "score": 1.0, + "content": "By the definition of", + "type": "text" + }, + { + "bbox": [ + 187, + 647, + 205, + 659 + ], + "score": 0.92, + "content": "k ( \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 645, + 244, + 660 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 245, + 648, + 270, + 657 + ], + "score": 0.89, + "content": "a < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 645, + 279, + 660 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 280, + 647, + 356, + 659 + ], + "score": 0.93, + "content": "\\delta + 1 > k ( \\varepsilon ) \\log n", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 645, + 397, + 660 + ], + "score": 1.0, + "content": ". For such", + "type": "text" + }, + { + "bbox": [ + 397, + 648, + 403, + 657 + ], + "score": 0.81, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 645, + 442, + 660 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 666, + 425, + 732 + ], + "lines": [ + { + "bbox": [ + 186, + 666, + 425, + 732 + ], + "spans": [ + { + "bbox": [ + 186, + 666, + 425, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\operatorname* { P r } ( | | C - \\bar { \\Delta } | | > a ) \\leq 2 N \\exp \\left( - \\frac { 3 \\log ( 4 N / \\varepsilon ) } { 2 ( 1 + a / 3 ) } \\right) } \\\\ { \\leq 2 N \\exp \\left( - \\log ( 4 N / \\varepsilon ) \\right) \\quad \\displaystyle ( \\because a < 1 ) } \\\\ { = \\displaystyle \\frac { \\varepsilon } { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "fc09ff0f9c9bdeeb3f37e0f6c7e58b8b98a7adbcd430ca7cb03b465487d743d3.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 666, + 425, + 682.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 186, + 682.5, + 425, + 699.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 186, + 699.0, + 425, + 715.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 186, + 715.5, + 425, + 732.0 + ], + "spans": [], + "index": 30 + } + ] + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 506, + 127 + ], + "lines": [ + { + "bbox": [ + 104, + 80, + 507, + 100 + ], + "spans": [ + { + "bbox": [ + 104, + 80, + 258, + 99 + ], + "score": 1.0, + "content": "Proof. By Weyl’s theorem, we have", + "type": "text" + }, + { + "bbox": [ + 259, + 80, + 433, + 100 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 80, + 507, + 99 + ], + "score": 1.0, + "content": ". Therefore, it is", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 97, + 506, + 114 + ], + "spans": [ + { + "bbox": [ + 105, + 97, + 180, + 114 + ], + "score": 1.0, + "content": "enough to bound", + "type": "text" + }, + { + "bbox": [ + 181, + 99, + 222, + 113 + ], + "score": 0.91, + "content": "\\| \\tilde { \\Delta } - \\bar { \\Delta } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 97, + 247, + 114 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 248, + 100, + 340, + 112 + ], + "score": 0.9, + "content": "C : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\bar { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 97, + 506, + 114 + ], + "score": 1.0, + "content": ". By the triangular inequality, we have", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 111, + 414, + 128 + ], + "spans": [ + { + "bbox": [ + 107, + 112, + 248, + 126 + ], + "score": 0.91, + "content": "\\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 111, + 414, + 128 + ], + "score": 1.0, + "content": ". We will bound these terms respectively.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 104, + 80, + 507, + 128 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 130, + 504, + 156 + ], + "lines": [ + { + "bbox": [ + 104, + 130, + 504, + 145 + ], + "spans": [ + { + "bbox": [ + 104, + 130, + 170, + 144 + ], + "score": 1.0, + "content": "First, we bound", + "type": "text" + }, + { + "bbox": [ + 170, + 131, + 205, + 145 + ], + "score": 0.93, + "content": "\\| C - { \\bar { \\Delta } } \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 130, + 308, + 144 + ], + "score": 1.0, + "content": ". Direct calculation shows", + "type": "text" + }, + { + "bbox": [ + 308, + 130, + 428, + 145 + ], + "score": 0.93, + "content": "C - \\bar { \\Delta } = - \\bar { D } ^ { - \\frac { 1 } { 2 } } ( A { - } P ) \\bar { D } ^ { - \\frac { 1 } { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 130, + 447, + 144 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 447, + 131, + 504, + 143 + ], + "score": 0.86, + "content": "E ^ { i j } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 142, + 199, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 142, + 199, + 157 + ], + "score": 1.0, + "content": "be a matrix defined by", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 104, + 130, + 504, + 157 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 190, + 164, + 419, + 192 + ], + "lines": [ + { + "bbox": [ + 190, + 164, + 419, + 192 + ], + "spans": [ + { + "bbox": [ + 190, + 164, + 419, + 192 + ], + "score": 0.73, + "content": "( E ^ { i j } ) _ { k l } = { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } ( i = k { \\mathrm { ~ a n d ~ } } i = l ) { \\mathrm { ~ o r ~ } } ( i = l { \\mathrm { ~ a n d ~ } } j = k ) , } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e . } } } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "fe9cdfdb83f038780d2070d9493f39f5009327a9c0eb6768b53b00ddfffcfe9a.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 190, + 164, + 419, + 192 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 199, + 258, + 212 + ], + "lines": [ + { + "bbox": [ + 106, + 197, + 258, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 230, + 214 + ], + "score": 1.0, + "content": "We define the random variable", + "type": "text" + }, + { + "bbox": [ + 231, + 200, + 245, + 212 + ], + "score": 0.9, + "content": "Y _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 197, + 258, + 214 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6, + "bbox_fs": [ + 106, + 197, + 258, + 214 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 246, + 219, + 365, + 248 + ], + "lines": [ + { + "bbox": [ + 246, + 219, + 365, + 248 + ], + "spans": [ + { + "bbox": [ + 246, + 219, + 365, + 248 + ], + "score": 0.94, + "content": "Y _ { i j } : = \\frac { A _ { i j } - p _ { i j } } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } E ^ { i j } .", + "type": "interline_equation", + "image_path": "d4cfac4151ae12a2d38b39962bf8e377443e15fc5af480baf66fe0bf602e815e.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 246, + 219, + 365, + 248 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 256, + 505, + 287 + ], + "lines": [ + { + "bbox": [ + 100, + 250, + 511, + 294 + ], + "spans": [ + { + "bbox": [ + 100, + 261, + 185, + 294 + ], + "score": 1.0, + "content": "ij Radcliffe (2011) to", + "type": "text" + }, + { + "bbox": [ + 101, + 250, + 132, + 279 + ], + "score": 1.0, + "content": "Then,", + "type": "text" + }, + { + "bbox": [ + 146, + 250, + 274, + 279 + ], + "score": 1.0, + "content": "’s are independent and we have", + "type": "text" + }, + { + "bbox": [ + 185, + 273, + 199, + 286 + ], + "score": 0.89, + "content": "Y _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 261, + 251, + 294 + ], + "score": 1.0, + "content": "’s, we bound", + "type": "text" + }, + { + "bbox": [ + 252, + 273, + 312, + 286 + ], + "score": 0.93, + "content": "\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 256, + 363, + 272 + ], + "score": 0.94, + "content": "\\begin{array} { r } { C - \\bar { \\Delta } = \\sum _ { i , j = 1 } ^ { N } Y _ { i j } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 261, + 331, + 294 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 331, + 271, + 399, + 287 + ], + "score": 0.92, + "content": "\\| \\Sigma _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 363, + 250, + 511, + 279 + ], + "score": 1.0, + "content": ". To apply Theorem 5 of Chung &", + "type": "text" + }, + { + "bbox": [ + 400, + 261, + 469, + 294 + ], + "score": 1.0, + "content": ". First, we have", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 100, + 250, + 511, + 294 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 294, + 424, + 325 + ], + "lines": [ + { + "bbox": [ + 186, + 294, + 424, + 325 + ], + "spans": [ + { + "bbox": [ + 186, + 294, + 424, + 325 + ], + "score": 0.92, + "content": "\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\| = \\| Y _ { i j } \\| \\leq \\frac { \\| E ^ { i j } \\| } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } \\leq ( \\delta + 1 ) ^ { - 1 } .", + "type": "interline_equation", + "image_path": "cae7c6b924677a28a81735f52c21a2db10cea67ace48042da7e719cbd90f9ece.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 186, + 294, + 424, + 325 + ], + "spans": [], + "index": 9 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 331, + 131, + 343 + ], + "lines": [ + { + "bbox": [ + 106, + 330, + 132, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 330, + 132, + 344 + ], + "score": 1.0, + "content": "Since", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 330, + 132, + 344 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 348, + 409, + 378 + ], + "lines": [ + { + "bbox": [ + 200, + 348, + 409, + 378 + ], + "spans": [ + { + "bbox": [ + 200, + 348, + 409, + 378 + ], + "score": 0.92, + "content": "\\mathbb { E } [ Y _ { i j } ^ { 2 } ] = \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\left\\{ { E ^ { i i } + E ^ { j j } } \\begin{array} { l l } { ( \\mathrm { i f ~ } i \\ne j ) , } \\\\ { E ^ { i i } } & { ( \\mathrm { i f ~ } i = j ) , } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "a52cf9e5e80dfb4e7363c299ec6286164906ebce3dececfbc73d458f5b45119c.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 200, + 348, + 409, + 378 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 386, + 141, + 397 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 143, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 143, + 398 + ], + "score": 1.0, + "content": "we have", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 384, + 143, + 398 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 404, + 402, + 538 + ], + "lines": [ + { + "bbox": [ + 207, + 404, + 402, + 538 + ], + "spans": [ + { + "bbox": [ + 207, + 404, + 402, + 538 + ], + "score": 0.94, + "content": "\\begin{array} { r } { \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\right| = \\left| \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } E ^ { i i } \\right| \\right| } \\\\ { = \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq ( \\delta + 1 ) ^ { - 1 } . } \\end{array}", + "type": "interline_equation", + "image_path": "671d8d0807c4af3435e2fc7a59b03aa66054295c22241b527c28d8f8d4f43a38.jpg" + } + ] + } + ], + "index": 16.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 404, + 402, + 420.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 207, + 420.75, + 402, + 437.5 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 207, + 437.5, + 402, + 454.25 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 207, + 454.25, + 402, + 471.0 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 207, + 471.0, + 402, + 487.75 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 207, + 487.75, + 402, + 504.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 207, + 504.5, + 402, + 521.25 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 207, + 521.25, + 402, + 538.0 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 546, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 546, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 551, + 148, + 564 + ], + "score": 1.0, + "content": "By letting", + "type": "text" + }, + { + "bbox": [ + 149, + 546, + 222, + 566 + ], + "score": 0.89, + "content": "\\begin{array} { r } { a \\gets \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 546, + 227, + 566 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 227, + 549, + 293, + 564 + ], + "score": 0.52, + "content": "M \\gets ( \\delta + 1 ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 546, + 298, + 566 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 298, + 550, + 364, + 563 + ], + "score": 0.87, + "content": "v ^ { 2 } ( \\delta + 1 ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 364, + 546, + 505, + 566 + ], + "score": 1.0, + "content": "and applying Theorem 5 of Chung", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 563, + 223, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 223, + 577 + ], + "score": 1.0, + "content": "& Radcliffe (2011), we have", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 105, + 546, + 505, + 577 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 171, + 582, + 439, + 641 + ], + "lines": [ + { + "bbox": [ + 171, + 582, + 439, + 641 + ], + "spans": [ + { + "bbox": [ + 171, + 582, + 439, + 641 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\operatorname* { P r } ( \\| C - \\bar { \\Delta } \\| > a ) \\leq 2 N \\exp \\left( - \\displaystyle \\frac { a ^ { 2 } } { 2 ( \\delta + 1 ) ^ { - 1 } + 2 ( \\delta + 1 ) ^ { - 1 } a / 3 } \\right) } \\\\ & { \\phantom { \\operatorname* { P r } } \\leq 2 N \\exp \\left( - \\displaystyle \\frac { 3 \\log \\left( 4 N / \\varepsilon \\right) } { 2 ( 1 + a / 3 ) } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "a1bcd9ba5a9bd225226118673c07e91de3eaf40dfa178bcc7be802d6733cac42.jpg" + } + ] + } + ], + "index": 24, + "virtual_lines": [ + { + "bbox": [ + 171, + 582, + 439, + 601.6666666666666 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 171, + 601.6666666666666, + 439, + 621.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 171, + 621.3333333333333, + 439, + 640.9999999999999 + ], + "spans": [], + "index": 25 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 443, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 645, + 442, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 187, + 660 + ], + "score": 1.0, + "content": "By the definition of", + "type": "text" + }, + { + "bbox": [ + 187, + 647, + 205, + 659 + ], + "score": 0.92, + "content": "k ( \\varepsilon )", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 645, + 244, + 660 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 245, + 648, + 270, + 657 + ], + "score": 0.89, + "content": "a < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 645, + 279, + 660 + ], + "score": 1.0, + "content": "if", + "type": "text" + }, + { + "bbox": [ + 280, + 647, + 356, + 659 + ], + "score": 0.93, + "content": "\\delta + 1 > k ( \\varepsilon ) \\log n", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 645, + 397, + 660 + ], + "score": 1.0, + "content": ". For such", + "type": "text" + }, + { + "bbox": [ + 397, + 648, + 403, + 657 + ], + "score": 0.81, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 645, + 442, + 660 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 645, + 442, + 660 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 186, + 666, + 425, + 732 + ], + "lines": [ + { + "bbox": [ + 186, + 666, + 425, + 732 + ], + "spans": [ + { + "bbox": [ + 186, + 666, + 425, + 732 + ], + "score": 0.94, + "content": "\\begin{array} { l } { \\displaystyle \\operatorname* { P r } ( | | C - \\bar { \\Delta } | | > a ) \\leq 2 N \\exp \\left( - \\frac { 3 \\log ( 4 N / \\varepsilon ) } { 2 ( 1 + a / 3 ) } \\right) } \\\\ { \\leq 2 N \\exp \\left( - \\log ( 4 N / \\varepsilon ) \\right) \\quad \\displaystyle ( \\because a < 1 ) } \\\\ { = \\displaystyle \\frac { \\varepsilon } { 2 } . } \\end{array}", + "type": "interline_equation", + "image_path": "fc09ff0f9c9bdeeb3f37e0f6c7e58b8b98a7adbcd430ca7cb03b465487d743d3.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 186, + 666, + 425, + 682.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 186, + 682.5, + 425, + 699.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 186, + 699.0, + 425, + 715.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 186, + 715.5, + 425, + 732.0 + ], + "spans": [], + "index": 30 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 174, + 96 + ], + "score": 1.0, + "content": "Next, we bound", + "type": "text" + }, + { + "bbox": [ + 175, + 81, + 215, + 95 + ], + "score": 0.93, + "content": "\\| \\tilde { \\Delta } - C \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 81, + 270, + 96 + ], + "score": 1.0, + "content": ". First, since", + "type": "text" + }, + { + "bbox": [ + 270, + 83, + 297, + 93 + ], + "score": 0.92, + "content": "a < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 81, + 505, + 96 + ], + "score": 1.0, + "content": ", by Chernoff bound (see, e.g. Angluin & Valiant", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 278, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 278, + 106 + ], + "score": 1.0, + "content": "(1979); Hagerup & Rub (1990))), we have ¨", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 108, + 409, + 188 + ], + "lines": [ + { + "bbox": [ + 200, + 108, + 409, + 188 + ], + "spans": [ + { + "bbox": [ + 200, + 108, + 409, + 188 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\operatorname* { P r } ( | d _ { i } - t _ { i } | > a ( t _ { i } + 1 ) ) \\le 2 \\exp ( - \\frac { a ^ { 2 } ( t _ { i } + 1 ) } { 3 } ) } } \\\\ & { } & \\\\ & { } & { \\le 2 \\exp ( - \\frac { a ^ { 2 } ( \\delta + 1 ) } { 3 } ) } \\\\ & { } & { = \\frac { \\varepsilon } { 2 N } . } \\end{array}", + "type": "interline_equation", + "image_path": "74d357cc81d67fef8ac3d521a2d5baabb76cb5a42dfb3a5cb3a28999d9b09ecd.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 200, + 108, + 409, + 124.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 200, + 124.0, + 409, + 140.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 200, + 140.0, + 409, + 156.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 200, + 156.0, + 409, + 172.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 200, + 172.0, + 409, + 188.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 303, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 302, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 159, + 202 + ], + "score": 1.0, + "content": "Therefore, if", + "type": "text" + }, + { + "bbox": [ + 160, + 189, + 244, + 201 + ], + "score": 0.92, + "content": "| d _ { i } - t _ { i } | \\leq a ( t _ { i } + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 189, + 302, + 202 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 204, + 445, + 280 + ], + "lines": [ + { + "bbox": [ + 165, + 204, + 445, + 280 + ], + "spans": [ + { + "bbox": [ + 165, + 204, + 445, + 280 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\left. \\sqrt { \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right. \\le \\left. \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } - 1 \\right. } & { \\left( \\cdot \\cdot | \\sqrt { x } - 1 | \\le | x - 1 | \\mathrm { \\ f o r \\ } x \\ge 0 \\right) } & \\\\ { = \\displaystyle \\left. \\displaystyle \\frac { d _ { i } - t _ { i } } { t _ { i } + 1 } \\right. } & \\\\ { \\le a . } & \\end{array}", + "type": "interline_equation", + "image_path": "c1060e4c83d8629475673c96d2ea0f7c95c94f2a4a6eb00fc748a911f99f3501.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 165, + 204, + 445, + 229.33333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 165, + 229.33333333333334, + 445, + 254.66666666666669 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 254.66666666666669, + 445, + 280.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 253, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 253, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 253, + 296 + ], + "score": 1.0, + "content": "Therefore, by union bound, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 297, + 399, + 331 + ], + "lines": [ + { + "bbox": [ + 212, + 297, + 399, + 331 + ], + "spans": [ + { + "bbox": [ + 212, + 297, + 399, + 331 + ], + "score": 0.94, + "content": "\\| \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| = \\operatorname* { m a x } _ { i \\in [ N ] } \\left| \\sqrt { \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right| \\leq a", + "type": "interline_equation", + "image_path": "277ca10271cab09840a50b713b61446378a2676bf929d31999e2bd31576d319d.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 297, + 399, + 314.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 212, + 314.0, + 399, + 331.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 334, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 203, + 347 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 204, + 334, + 236, + 346 + ], + "score": 0.92, + "content": "1 - \\varepsilon / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 333, + 505, + 347 + ], + "score": 1.0, + "content": ". Further, since the eigenvalue of the augmented normalized Lapla-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 147, + 361 + ], + "score": 1.0, + "content": "cian is in", + "type": "text" + }, + { + "bbox": [ + 148, + 347, + 168, + 359 + ], + "score": 0.66, + "content": "[ 0 , 2 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 345, + 332, + 361 + ], + "score": 1.0, + "content": "by the proof of Proposition 1, we have", + "type": "text" + }, + { + "bbox": [ + 333, + 345, + 397, + 359 + ], + "score": 0.94, + "content": "\\| I _ { N } - \\tilde { \\Delta } \\| \\leq \\bar { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 345, + 506, + 361 + ], + "score": 1.0, + "content": ". By combining them, we", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 357, + 128, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 128, + 370 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 368, + 466, + 418 + ], + "lines": [ + { + "bbox": [ + 145, + 368, + 466, + 418 + ], + "spans": [ + { + "bbox": [ + 145, + 368, + 466, + 418 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\tilde { \\Delta } - C \\| = \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } ) ( I _ { N } - \\tilde { \\Delta } ) \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } + ( I _ { N } - \\tilde { \\Delta } ) ( I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } ) \\| } \\\\ & { \\qquad \\leq \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| \\| \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| + \\| I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| } \\\\ & { \\qquad \\leq a ( a + 1 ) + a . } \\end{array}", + "type": "interline_equation", + "image_path": "b36d7b90316bd484e3acdd5b2078ffc194317e76183ac3b51ff553211a8c7236.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 145, + 368, + 466, + 384.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 145, + 384.6666666666667, + 466, + 401.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 145, + 401.33333333333337, + 466, + 418.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 213, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 213, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 213, + 433 + ], + "score": 1.0, + "content": "From (5) and (6), we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 433, + 377, + 494 + ], + "lines": [ + { + "bbox": [ + 233, + 433, + 377, + 494 + ], + "spans": [ + { + "bbox": [ + 233, + 433, + 377, + 494 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\| } \\\\ & { \\qquad \\leq a + a ( a + 1 ) + a } \\\\ & { \\qquad \\leq a ^ { 2 } + 3 a } \\\\ & { \\qquad \\leq 4 a \\quad ( \\because a < 1 ) } \\end{array}", + "type": "interline_equation", + "image_path": "7da86c93036b713cc0974d5bb45826b01ccbb959f3adf50cc6bf75e87c2a16ef.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 233, + 433, + 377, + 463.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 233, + 463.5, + 377, + 494.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 294, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 295, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 203, + 523 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 204, + 510, + 227, + 520 + ], + "score": 0.87, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 508, + 295, + 523 + ], + "score": 1.0, + "content": "by union bound.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 122, + 546 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 534, + 158, + 545 + ], + "score": 0.91, + "content": "N \\in { \\mathbb { N } } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 533, + 176, + 546 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 534, + 200, + 545 + ], + "score": 0.89, + "content": "p > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 533, + 351, + 546 + ], + "score": 1.0, + "content": ". In the case of the Erdos-R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 352, + 534, + 374, + 545 + ], + "score": 0.89, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 533, + 433, + 546 + ], + "score": 1.0, + "content": ", we should set", + "type": "text" + }, + { + "bbox": [ + 434, + 533, + 504, + 545 + ], + "score": 0.9, + "content": "P = p ( J _ { N } - I _ { N } )", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 542, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 104, + 542, + 134, + 559 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 545, + 190, + 556 + ], + "score": 0.92, + "content": "J _ { N } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 542, + 348, + 559 + ], + "score": 1.0, + "content": "are the all-one matrix. Then, we have", + "type": "text" + }, + { + "bbox": [ + 349, + 545, + 446, + 557 + ], + "score": 0.89, + "content": "\\bar { A } = p J _ { N } + ( 1 - p ) I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 542, + 450, + 559 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 451, + 545, + 505, + 558 + ], + "score": 0.89, + "content": "\\bar { D } = ( N p -", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 555, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 146, + 569 + ], + "score": 0.91, + "content": "p + 1 ) I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 556, + 168, + 569 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 168, + 556, + 281, + 571 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { \\Delta } = \\frac { p } { N p - p + 1 } ( N I _ { N } - J _ { N } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 555, + 383, + 570 + ], + "score": 1.0, + "content": ". Since the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 384, + 558, + 397, + 568 + ], + "score": 0.9, + "content": "J _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 555, + 408, + 570 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 409, + 558, + 419, + 567 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 555, + 506, + 570 + ], + "score": 1.0, + "content": "(with multiplicity 1)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 569, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 205, + 587 + ], + "score": 1.0, + "content": "and 0 (with multiplicity", + "type": "text" + }, + { + "bbox": [ + 205, + 572, + 235, + 583 + ], + "score": 0.87, + "content": "N - 1 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 569, + 313, + 587 + ], + "score": 1.0, + "content": "), the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 313, + 570, + 323, + 582 + ], + "score": 0.86, + "content": "\\bar { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 569, + 445, + 587 + ], + "score": 1.0, + "content": "is 0 (with multiplicity 1) and", + "type": "text" + }, + { + "bbox": [ + 445, + 570, + 480, + 586 + ], + "score": 0.94, + "content": "\\frac { N p } { N p - p + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 571, + 506, + 585 + ], + "score": 1.0, + "content": "(with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 156, + 598 + ], + "score": 1.0, + "content": "multiplicity", + "type": "text" + }, + { + "bbox": [ + 156, + 585, + 187, + 596 + ], + "score": 0.83, + "content": "N - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 584, + 212, + 598 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 212, + 585, + 234, + 597 + ], + "score": 0.86, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 584, + 239, + 598 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 239, + 586, + 245, + 595 + ], + "score": 0.63, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 584, + 375, + 598 + ], + "score": 1.0, + "content": "is the expected average degree", + "type": "text" + }, + { + "bbox": [ + 375, + 585, + 416, + 597 + ], + "score": 0.92, + "content": "( N - 1 ) p", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 584, + 506, + 598 + ], + "score": 1.0, + "content": ". Hence, we have the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 596, + 242, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 242, + 608 + ], + "score": 1.0, + "content": "following lemma from Lemma 5:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 105, + 610, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 169, + 626 + ], + "score": 1.0, + "content": "Lemma 6. Let", + "type": "text" + }, + { + "bbox": [ + 170, + 610, + 179, + 621 + ], + "score": 0.81, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 609, + 444, + 626 + ], + "score": 1.0, + "content": "be its augmented normalized Laplacian of the Erdos-R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 444, + 612, + 466, + 624 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 609, + 505, + 626 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 618, + 478, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 131, + 636 + ], + "score": 0.77, + "content": "\\varepsilon > 0 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 623, + 289, + 639 + ], + "score": 0.87, + "content": "\\begin{array} { r } { i f \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 618, + 413, + 640 + ], + "score": 1.0, + "content": ", then, with probability at least", + "type": "text" + }, + { + "bbox": [ + 414, + 625, + 436, + 635 + ], + "score": 0.86, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 618, + 478, + 640 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 642, + 412, + 675 + ], + "lines": [ + { + "bbox": [ + 198, + 642, + 412, + 675 + ], + "spans": [ + { + "bbox": [ + 198, + 642, + 412, + 675 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { i = 2 , \\ldots , N } \\left| \\lambda _ { i } ( \\tilde { \\Delta } ) - \\frac { N p } { N p - p + 1 } \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } .", + "type": "interline_equation", + "image_path": "e0c336f319cdb5b4687e3e0d749c2480665543a37bcb8772f9437612db712e00.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 642, + 412, + 658.5 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 198, + 658.5, + 412, + 675.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 506, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 241, + 691 + ], + "score": 1.0, + "content": "Corollary 4. Consider GCN on", + "type": "text" + }, + { + "bbox": [ + 241, + 679, + 263, + 690 + ], + "score": 0.89, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 676, + 287, + 691 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 287, + 678, + 300, + 689 + ], + "score": 0.82, + "content": "W _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 676, + 387, + 691 + ], + "score": 1.0, + "content": "be the weight of the", + "type": "text" + }, + { + "bbox": [ + 388, + 679, + 392, + 688 + ], + "score": 0.55, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 676, + 482, + 691 + ], + "score": 1.0, + "content": "-th layer of GCN and", + "type": "text" + }, + { + "bbox": [ + 482, + 680, + 491, + 689 + ], + "score": 0.79, + "content": "s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 235, + 704 + ], + "score": 1.0, + "content": "the maximum singular value of", + "type": "text" + }, + { + "bbox": [ + 235, + 690, + 248, + 700 + ], + "score": 0.81, + "content": "W _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 688, + 265, + 704 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 265, + 690, + 297, + 701 + ], + "score": 0.89, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 688, + 318, + 704 + ], + "score": 1.0, + "content": ". Set", + "type": "text" + }, + { + "bbox": [ + 318, + 691, + 375, + 703 + ], + "score": 0.87, + "content": "s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 688, + 397, + 704 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 397, + 690, + 423, + 699 + ], + "score": 0.91, + "content": "\\varepsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 688, + 470, + 704 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 470, + 689, + 505, + 701 + ], + "score": 0.91, + "content": "k ( \\varepsilon ) : =", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 700, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 706, + 171, + 719 + ], + "score": 0.9, + "content": "3 ( 1 + \\log ( 4 / \\varepsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 700, + 191, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 704, + 345, + 722 + ], + "score": 0.91, + "content": "\\begin{array} { r } { l ( N , p , \\varepsilon ) = { \\frac { 1 - p } { N p - p + 1 } } + 4 { \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 700, + 355, + 723 + ], + "score": 1.0, + "content": ". I", + "type": "text" + }, + { + "bbox": [ + 356, + 705, + 424, + 721 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\ell \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 700, + 443, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 705, + 501, + 719 + ], + "score": 0.92, + "content": "s \\leq l ( N , \\varepsilon ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 700, + 507, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 718, + 465, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 164, + 734 + ], + "score": 1.0, + "content": "then, GCN on", + "type": "text" + }, + { + "bbox": [ + 164, + 721, + 186, + 733 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 718, + 437, + 734 + ], + "score": 1.0, + "content": "satisfies the assumption of Theorem 2 with probability at least", + "type": "text" + }, + { + "bbox": [ + 438, + 721, + 460, + 731 + ], + "score": 0.86, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 718, + 465, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 494, + 510, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 496, + 512, + 504, + 520 + ], + "spans": [ + { + "bbox": [ + 496, + 512, + 504, + 520 + ], + "score": 0.997, + "content": "□", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 174, + 96 + ], + "score": 1.0, + "content": "Next, we bound", + "type": "text" + }, + { + "bbox": [ + 175, + 81, + 215, + 95 + ], + "score": 0.93, + "content": "\\| \\tilde { \\Delta } - C \\|", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 81, + 270, + 96 + ], + "score": 1.0, + "content": ". First, since", + "type": "text" + }, + { + "bbox": [ + 270, + 83, + 297, + 93 + ], + "score": 0.92, + "content": "a < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 81, + 505, + 96 + ], + "score": 1.0, + "content": ", by Chernoff bound (see, e.g. Angluin & Valiant", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 278, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 278, + 106 + ], + "score": 1.0, + "content": "(1979); Hagerup & Rub (1990))), we have ¨", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 108, + 409, + 188 + ], + "lines": [ + { + "bbox": [ + 200, + 108, + 409, + 188 + ], + "spans": [ + { + "bbox": [ + 200, + 108, + 409, + 188 + ], + "score": 0.94, + "content": "\\begin{array} { r l r } { { \\operatorname* { P r } ( | d _ { i } - t _ { i } | > a ( t _ { i } + 1 ) ) \\le 2 \\exp ( - \\frac { a ^ { 2 } ( t _ { i } + 1 ) } { 3 } ) } } \\\\ & { } & \\\\ & { } & { \\le 2 \\exp ( - \\frac { a ^ { 2 } ( \\delta + 1 ) } { 3 } ) } \\\\ & { } & { = \\frac { \\varepsilon } { 2 N } . } \\end{array}", + "type": "interline_equation", + "image_path": "74d357cc81d67fef8ac3d521a2d5baabb76cb5a42dfb3a5cb3a28999d9b09ecd.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 200, + 108, + 409, + 124.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 200, + 124.0, + 409, + 140.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 200, + 140.0, + 409, + 156.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 200, + 156.0, + 409, + 172.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 200, + 172.0, + 409, + 188.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 189, + 303, + 201 + ], + "lines": [ + { + "bbox": [ + 106, + 189, + 302, + 202 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 159, + 202 + ], + "score": 1.0, + "content": "Therefore, if", + "type": "text" + }, + { + "bbox": [ + 160, + 189, + 244, + 201 + ], + "score": 0.92, + "content": "| d _ { i } - t _ { i } | \\leq a ( t _ { i } + 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 189, + 302, + 202 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 189, + 302, + 202 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 165, + 204, + 445, + 280 + ], + "lines": [ + { + "bbox": [ + 165, + 204, + 445, + 280 + ], + "spans": [ + { + "bbox": [ + 165, + 204, + 445, + 280 + ], + "score": 0.93, + "content": "\\begin{array} { r l r } { \\left. \\sqrt { \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right. \\le \\left. \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } - 1 \\right. } & { \\left( \\cdot \\cdot | \\sqrt { x } - 1 | \\le | x - 1 | \\mathrm { \\ f o r \\ } x \\ge 0 \\right) } & \\\\ { = \\displaystyle \\left. \\displaystyle \\frac { d _ { i } - t _ { i } } { t _ { i } + 1 } \\right. } & \\\\ { \\le a . } & \\end{array}", + "type": "interline_equation", + "image_path": "c1060e4c83d8629475673c96d2ea0f7c95c94f2a4a6eb00fc748a911f99f3501.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 165, + 204, + 445, + 229.33333333333334 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 165, + 229.33333333333334, + 445, + 254.66666666666669 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 165, + 254.66666666666669, + 445, + 280.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 283, + 253, + 294 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 253, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 253, + 296 + ], + "score": 1.0, + "content": "Therefore, by union bound, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 281, + 253, + 296 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 212, + 297, + 399, + 331 + ], + "lines": [ + { + "bbox": [ + 212, + 297, + 399, + 331 + ], + "spans": [ + { + "bbox": [ + 212, + 297, + 399, + 331 + ], + "score": 0.94, + "content": "\\| \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| = \\operatorname* { m a x } _ { i \\in [ N ] } \\left| \\sqrt { \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right| \\leq a", + "type": "interline_equation", + "image_path": "277ca10271cab09840a50b713b61446378a2676bf929d31999e2bd31576d319d.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 212, + 297, + 399, + 314.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 212, + 314.0, + 399, + 331.0 + ], + "spans": [], + "index": 13 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 334, + 504, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 333, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 203, + 347 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 204, + 334, + 236, + 346 + ], + "score": 0.92, + "content": "1 - \\varepsilon / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 333, + 505, + 347 + ], + "score": 1.0, + "content": ". Further, since the eigenvalue of the augmented normalized Lapla-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 345, + 506, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 147, + 361 + ], + "score": 1.0, + "content": "cian is in", + "type": "text" + }, + { + "bbox": [ + 148, + 347, + 168, + 359 + ], + "score": 0.66, + "content": "[ 0 , 2 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 345, + 332, + 361 + ], + "score": 1.0, + "content": "by the proof of Proposition 1, we have", + "type": "text" + }, + { + "bbox": [ + 333, + 345, + 397, + 359 + ], + "score": 0.94, + "content": "\\| I _ { N } - \\tilde { \\Delta } \\| \\leq \\bar { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 345, + 506, + 361 + ], + "score": 1.0, + "content": ". By combining them, we", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 357, + 128, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 128, + 370 + ], + "score": 1.0, + "content": "have", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 333, + 506, + 370 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 368, + 466, + 418 + ], + "lines": [ + { + "bbox": [ + 145, + 368, + 466, + 418 + ], + "spans": [ + { + "bbox": [ + 145, + 368, + 466, + 418 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\| \\tilde { \\Delta } - C \\| = \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } ) ( I _ { N } - \\tilde { \\Delta } ) \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } + ( I _ { N } - \\tilde { \\Delta } ) ( I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } ) \\| } \\\\ & { \\qquad \\leq \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| \\| \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| + \\| I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| } \\\\ & { \\qquad \\leq a ( a + 1 ) + a . } \\end{array}", + "type": "interline_equation", + "image_path": "b36d7b90316bd484e3acdd5b2078ffc194317e76183ac3b51ff553211a8c7236.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 145, + 368, + 466, + 384.6666666666667 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 145, + 384.6666666666667, + 466, + 401.33333333333337 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 145, + 401.33333333333337, + 466, + 418.00000000000006 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 420, + 213, + 432 + ], + "lines": [ + { + "bbox": [ + 106, + 420, + 213, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 213, + 433 + ], + "score": 1.0, + "content": "From (5) and (6), we have", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20, + "bbox_fs": [ + 106, + 420, + 213, + 433 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 233, + 433, + 377, + 494 + ], + "lines": [ + { + "bbox": [ + 233, + 433, + 377, + 494 + ], + "spans": [ + { + "bbox": [ + 233, + 433, + 377, + 494 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\| } \\\\ & { \\qquad \\leq a + a ( a + 1 ) + a } \\\\ & { \\qquad \\leq a ^ { 2 } + 3 a } \\\\ & { \\qquad \\leq 4 a \\quad ( \\because a < 1 ) } \\end{array}", + "type": "interline_equation", + "image_path": "7da86c93036b713cc0974d5bb45826b01ccbb959f3adf50cc6bf75e87c2a16ef.jpg" + } + ] + } + ], + "index": 21.5, + "virtual_lines": [ + { + "bbox": [ + 233, + 433, + 377, + 463.5 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 233, + 463.5, + 377, + 494.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 509, + 294, + 522 + ], + "lines": [ + { + "bbox": [ + 105, + 508, + 295, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 203, + 523 + ], + "score": 1.0, + "content": "with probability at least", + "type": "text" + }, + { + "bbox": [ + 204, + 510, + 227, + 520 + ], + "score": 0.87, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 508, + 295, + 523 + ], + "score": 1.0, + "content": "by union bound.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 105, + 508, + 295, + 523 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 532, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 504, + 546 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 122, + 546 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 534, + 158, + 545 + ], + "score": 0.91, + "content": "N \\in { \\mathbb { N } } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 533, + 176, + 546 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 176, + 534, + 200, + 545 + ], + "score": 0.89, + "content": "p > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 533, + 351, + 546 + ], + "score": 1.0, + "content": ". In the case of the Erdos-R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 352, + 534, + 374, + 545 + ], + "score": 0.89, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 533, + 433, + 546 + ], + "score": 1.0, + "content": ", we should set", + "type": "text" + }, + { + "bbox": [ + 434, + 533, + 504, + 545 + ], + "score": 0.9, + "content": "P = p ( J _ { N } - I _ { N } )", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 542, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 104, + 542, + 134, + 559 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 545, + 190, + 556 + ], + "score": 0.92, + "content": "J _ { N } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 542, + 348, + 559 + ], + "score": 1.0, + "content": "are the all-one matrix. Then, we have", + "type": "text" + }, + { + "bbox": [ + 349, + 545, + 446, + 557 + ], + "score": 0.89, + "content": "\\bar { A } = p J _ { N } + ( 1 - p ) I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 542, + 450, + 559 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 451, + 545, + 505, + 558 + ], + "score": 0.89, + "content": "\\bar { D } = ( N p -", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 555, + 506, + 571 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 146, + 569 + ], + "score": 0.91, + "content": "p + 1 ) I _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 556, + 168, + 569 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 168, + 556, + 281, + 571 + ], + "score": 0.93, + "content": "\\begin{array} { r } { \\bar { \\Delta } = \\frac { p } { N p - p + 1 } ( N I _ { N } - J _ { N } ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 555, + 383, + 570 + ], + "score": 1.0, + "content": ". Since the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 384, + 558, + 397, + 568 + ], + "score": 0.9, + "content": "J _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 555, + 408, + 570 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 409, + 558, + 419, + 567 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 555, + 506, + 570 + ], + "score": 1.0, + "content": "(with multiplicity 1)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 569, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 205, + 587 + ], + "score": 1.0, + "content": "and 0 (with multiplicity", + "type": "text" + }, + { + "bbox": [ + 205, + 572, + 235, + 583 + ], + "score": 0.87, + "content": "N - 1 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 569, + 313, + 587 + ], + "score": 1.0, + "content": "), the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 313, + 570, + 323, + 582 + ], + "score": 0.86, + "content": "\\bar { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 569, + 445, + 587 + ], + "score": 1.0, + "content": "is 0 (with multiplicity 1) and", + "type": "text" + }, + { + "bbox": [ + 445, + 570, + 480, + 586 + ], + "score": 0.94, + "content": "\\frac { N p } { N p - p + 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 571, + 506, + 585 + ], + "score": 1.0, + "content": "(with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 584, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 584, + 156, + 598 + ], + "score": 1.0, + "content": "multiplicity", + "type": "text" + }, + { + "bbox": [ + 156, + 585, + 187, + 596 + ], + "score": 0.83, + "content": "N - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 584, + 212, + 598 + ], + "score": 1.0, + "content": ". For", + "type": "text" + }, + { + "bbox": [ + 212, + 585, + 234, + 597 + ], + "score": 0.86, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 584, + 239, + 598 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 239, + 586, + 245, + 595 + ], + "score": 0.63, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 584, + 375, + 598 + ], + "score": 1.0, + "content": "is the expected average degree", + "type": "text" + }, + { + "bbox": [ + 375, + 585, + 416, + 597 + ], + "score": 0.92, + "content": "( N - 1 ) p", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 584, + 506, + 598 + ], + "score": 1.0, + "content": ". Hence, we have the", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 596, + 242, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 242, + 608 + ], + "score": 1.0, + "content": "following lemma from Lemma 5:", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 104, + 533, + 506, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 610, + 505, + 638 + ], + "lines": [ + { + "bbox": [ + 105, + 609, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 169, + 626 + ], + "score": 1.0, + "content": "Lemma 6. Let", + "type": "text" + }, + { + "bbox": [ + 170, + 610, + 179, + 621 + ], + "score": 0.81, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 609, + 444, + 626 + ], + "score": 1.0, + "content": "be its augmented normalized Laplacian of the Erdos-R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 444, + 612, + 466, + 624 + ], + "score": 0.91, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 609, + 505, + 626 + ], + "score": 1.0, + "content": ". For any", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 618, + 478, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 131, + 636 + ], + "score": 0.77, + "content": "\\varepsilon > 0 ,", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 623, + 289, + 639 + ], + "score": 0.87, + "content": "\\begin{array} { r } { i f \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 618, + 413, + 640 + ], + "score": 1.0, + "content": ", then, with probability at least", + "type": "text" + }, + { + "bbox": [ + 414, + 625, + 436, + 635 + ], + "score": 0.86, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 618, + 478, + 640 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 609, + 505, + 640 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 198, + 642, + 412, + 675 + ], + "lines": [ + { + "bbox": [ + 198, + 642, + 412, + 675 + ], + "spans": [ + { + "bbox": [ + 198, + 642, + 412, + 675 + ], + "score": 0.92, + "content": "\\operatorname* { m a x } _ { i = 2 , \\ldots , N } \\left| \\lambda _ { i } ( \\tilde { \\Delta } ) - \\frac { N p } { N p - p + 1 } \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } .", + "type": "interline_equation", + "image_path": "e0c336f319cdb5b4687e3e0d749c2480665543a37bcb8772f9437612db712e00.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 198, + 642, + 412, + 658.5 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 198, + 658.5, + 412, + 675.0 + ], + "spans": [], + "index": 33 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 678, + 506, + 733 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 241, + 691 + ], + "score": 1.0, + "content": "Corollary 4. Consider GCN on", + "type": "text" + }, + { + "bbox": [ + 241, + 679, + 263, + 690 + ], + "score": 0.89, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 676, + 287, + 691 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 287, + 678, + 300, + 689 + ], + "score": 0.82, + "content": "W _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 676, + 387, + 691 + ], + "score": 1.0, + "content": "be the weight of the", + "type": "text" + }, + { + "bbox": [ + 388, + 679, + 392, + 688 + ], + "score": 0.55, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 676, + 482, + 691 + ], + "score": 1.0, + "content": "-th layer of GCN and", + "type": "text" + }, + { + "bbox": [ + 482, + 680, + 491, + 689 + ], + "score": 0.79, + "content": "s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 676, + 506, + 691 + ], + "score": 1.0, + "content": "be", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 688, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 235, + 704 + ], + "score": 1.0, + "content": "the maximum singular value of", + "type": "text" + }, + { + "bbox": [ + 235, + 690, + 248, + 700 + ], + "score": 0.81, + "content": "W _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 688, + 265, + 704 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 265, + 690, + 297, + 701 + ], + "score": 0.89, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 688, + 318, + 704 + ], + "score": 1.0, + "content": ". Set", + "type": "text" + }, + { + "bbox": [ + 318, + 691, + 375, + 703 + ], + "score": 0.87, + "content": "s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 688, + 397, + 704 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 397, + 690, + 423, + 699 + ], + "score": 0.91, + "content": "\\varepsilon > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 688, + 470, + 704 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 470, + 689, + 505, + 701 + ], + "score": 0.91, + "content": "k ( \\varepsilon ) : =", + "type": "inline_equation" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 700, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 706, + 171, + 719 + ], + "score": 0.9, + "content": "3 ( 1 + \\log ( 4 / \\varepsilon ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 171, + 700, + 191, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 704, + 345, + 722 + ], + "score": 0.91, + "content": "\\begin{array} { r } { l ( N , p , \\varepsilon ) = { \\frac { 1 - p } { N p - p + 1 } } + 4 { \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 700, + 355, + 723 + ], + "score": 1.0, + "content": ". I", + "type": "text" + }, + { + "bbox": [ + 356, + 705, + 424, + 721 + ], + "score": 0.82, + "content": "\\begin{array} { r } { \\ell \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 700, + 443, + 723 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 443, + 705, + 501, + 719 + ], + "score": 0.92, + "content": "s \\leq l ( N , \\varepsilon ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 700, + 507, + 723 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 718, + 465, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 718, + 164, + 734 + ], + "score": 1.0, + "content": "then, GCN on", + "type": "text" + }, + { + "bbox": [ + 164, + 721, + 186, + 733 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 718, + 437, + 734 + ], + "score": 1.0, + "content": "satisfies the assumption of Theorem 2 with probability at least", + "type": "text" + }, + { + "bbox": [ + 438, + 721, + 460, + 731 + ], + "score": 0.86, + "content": "1 - \\varepsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 718, + 465, + 734 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 676, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 354, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 355, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 217, + 94 + ], + "score": 1.0, + "content": "Proof of Theorem 3. Since", + "type": "text" + }, + { + "bbox": [ + 213, + 78, + 355, + 97 + ], + "score": 1.0, + "content": "log NNp = o(1), for fixed ε, we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 99, + 367, + 125 + ], + "lines": [ + { + "bbox": [ + 243, + 99, + 367, + 125 + ], + "spans": [ + { + "bbox": [ + 243, + 99, + 367, + 125 + ], + "score": 0.94, + "content": "\\frac { N p - p + 1 } { \\log N } > \\frac { N p } { \\log N } > k ( \\varepsilon )", + "type": "interline_equation", + "image_path": "463306171e0e7ca695b2cbb0e6dc4d97c6f902d744d5e10f5b1b37f770b5c8c8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 243, + 99, + 367, + 125 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 488, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 490, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 190, + 142 + ], + "score": 1.0, + "content": "for sufficiently large", + "type": "text" + }, + { + "bbox": [ + 190, + 130, + 200, + 140 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 129, + 238, + 142 + ], + "score": 1.0, + "content": ". Further,", + "type": "text" + }, + { + "bbox": [ + 239, + 130, + 279, + 141 + ], + "score": 0.91, + "content": "N p \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 129, + 291, + 142 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 291, + 130, + 327, + 140 + ], + "score": 0.9, + "content": "N \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 129, + 353, + 142 + ], + "score": 1.0, + "content": "whe", + "type": "text" + }, + { + "bbox": [ + 348, + 126, + 490, + 144 + ], + "score": 1.0, + "content": "n log NNp = o(1). Therefore, we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 146, + 401, + 174 + ], + "lines": [ + { + "bbox": [ + 210, + 146, + 401, + 174 + ], + "spans": [ + { + "bbox": [ + 210, + 146, + 401, + 174 + ], + "score": 0.93, + "content": "\\frac { ( 1 - p ) ^ { 2 } } { N p - p + 1 } \\leq \\frac { 1 } { N p } \\leq ( 7 - 4 \\sqrt { 3 } ) ^ { 2 } \\log \\left( \\frac { 4 N } { \\varepsilon } \\right)", + "type": "interline_equation", + "image_path": "13f440081ab3f99459b4e3aa7a438bf7b3d2fbfe37e2f3dc6de25b22a2cb82fa.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 210, + 146, + 401, + 174 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 234, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 235, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 190, + 190 + ], + "score": 1.0, + "content": "for sufficiently large", + "type": "text" + }, + { + "bbox": [ + 190, + 177, + 200, + 186 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 174, + 235, + 190 + ], + "score": 1.0, + "content": ". Hence.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 191, + 392, + 224 + ], + "lines": [ + { + "bbox": [ + 219, + 191, + 392, + 224 + ], + "spans": [ + { + "bbox": [ + 219, + 191, + 392, + 224 + ], + "score": 0.95, + "content": "\\frac { 1 - p } { N p - p + 1 } \\leq ( 7 - 4 \\sqrt { 3 } ) \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } .", + "type": "interline_equation", + "image_path": "805df5f48792754d6a0d9f84f4cf09222c7674b243da522e00a34824e6f6df78.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 191, + 392, + 207.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 219, + 207.5, + 392, + 224.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 506, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 190, + 246 + ], + "score": 1.0, + "content": "Therefore, we have", + "type": "text" + }, + { + "bbox": [ + 191, + 227, + 300, + 248 + ], + "score": 0.94, + "content": "\\begin{array} { r } { l ( N , p , \\varepsilon ) \\le 7 \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 228, + 302, + 248 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 304, + 228, + 364, + 248 + ], + "score": 1.0, + "content": "Therefore, if", + "type": "text" + }, + { + "bbox": [ + 365, + 228, + 442, + 248 + ], + "score": 0.94, + "content": "s ~ \\le ~ \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 228, + 506, + 248 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 246, + 178, + 260 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 174, + 260 + ], + "score": 0.91, + "content": "s \\leq l ( N , p , \\varepsilon ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 246, + 178, + 260 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 107, + 274, + 296, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 297, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 297, + 290 + ], + "score": 1.0, + "content": "E MISCELLANEOUS PROPOSITIONS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 359, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 359, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 359, + 312 + ], + "score": 1.0, + "content": "E.1 INVARIANCE OF ORTHOGONAL COMPLEMENT SPACE", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 104, + 316, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 185, + 333 + ], + "score": 1.0, + "content": "Proposition 2. Let", + "type": "text" + }, + { + "bbox": [ + 185, + 318, + 234, + 330 + ], + "score": 0.91, + "content": "P \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 316, + 439, + 333 + ], + "score": 1.0, + "content": "be a symmetric matrix, treated as a linear operator", + "type": "text" + }, + { + "bbox": [ + 439, + 319, + 501, + 330 + ], + "score": 0.9, + "content": "P : \\mathbb { R } ^ { N } \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 316, + 505, + 333 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 163, + 343 + ], + "score": 1.0, + "content": "If a subspace", + "type": "text" + }, + { + "bbox": [ + 163, + 330, + 202, + 341 + ], + "score": 0.91, + "content": "U \\subset \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 330, + 279, + 343 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + }, + { + "bbox": [ + 279, + 331, + 288, + 341 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 330, + 318, + 343 + ], + "score": 1.0, + "content": "(i.e., if", + "type": "text" + }, + { + "bbox": [ + 319, + 331, + 347, + 342 + ], + "score": 0.87, + "content": "u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 330, + 372, + 343 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 372, + 331, + 409, + 342 + ], + "score": 0.89, + "content": "P u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 330, + 439, + 343 + ], + "score": 1.0, + "content": "), then,", + "type": "text" + }, + { + "bbox": [ + 439, + 330, + 455, + 341 + ], + "score": 0.87, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "is invariant", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 341, + 163, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 132, + 354 + ], + "score": 1.0, + "content": "under", + "type": "text" + }, + { + "bbox": [ + 132, + 343, + 141, + 352 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 341, + 163, + 354 + ], + "score": 1.0, + "content": ", too.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 365, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 365, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 169, + 380 + ], + "score": 1.0, + "content": "Proof. For any", + "type": "text" + }, + { + "bbox": [ + 169, + 365, + 203, + 376 + ], + "score": 0.92, + "content": "u \\in U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 363, + 221, + 380 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 221, + 366, + 247, + 376 + ], + "score": 0.9, + "content": "v \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 363, + 317, + 380 + ], + "score": 1.0, + "content": ", by symmetry of", + "type": "text" + }, + { + "bbox": [ + 317, + 366, + 326, + 375 + ], + "score": 0.85, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 363, + 365, + 380 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14 + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 379, + 410, + 394 + ], + "lines": [ + { + "bbox": [ + 200, + 379, + 410, + 394 + ], + "spans": [ + { + "bbox": [ + 200, + 379, + 410, + 394 + ], + "score": 0.89, + "content": "\\langle P u , v \\rangle = ( P u ) ^ { \\top } v = u ^ { \\top } P ^ { \\top } v = u ^ { \\top } P v = \\langle u , P v \\rangle .", + "type": "interline_equation", + "image_path": "52ab40224e5255fd51194ad825ef29b1385ab12fd7152044ad6cf0db196800a5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 200, + 379, + 410, + 394 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 398, + 503, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 501, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 131, + 411 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 399, + 140, + 409 + ], + "score": 0.83, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 397, + 233, + 411 + ], + "score": 1.0, + "content": "is an invariant space of", + "type": "text" + }, + { + "bbox": [ + 233, + 399, + 242, + 409 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 397, + 280, + 411 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 280, + 399, + 314, + 409 + ], + "score": 0.9, + "content": "P v \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 397, + 383, + 411 + ], + "score": 1.0, + "content": ". Hence, we have", + "type": "text" + }, + { + "bbox": [ + 383, + 399, + 433, + 411 + ], + "score": 0.93, + "content": "\\langle u , P v \\rangle = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 397, + 467, + 411 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 468, + 398, + 501, + 409 + ], + "score": 0.91, + "content": "u \\in U ^ { \\perp }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 149, + 421 + ], + "score": 1.0, + "content": "We obtain", + "type": "text" + }, + { + "bbox": [ + 150, + 410, + 191, + 420 + ], + "score": 0.91, + "content": "P u \\in U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 409, + 271, + 421 + ], + "score": 1.0, + "content": "by the definition of", + "type": "text" + }, + { + "bbox": [ + 271, + 410, + 286, + 420 + ], + "score": 0.89, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 409, + 290, + 421 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 410, + 506, + 421 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 106, + 434, + 312, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 312, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 312, + 447 + ], + "score": 1.0, + "content": "E.2 CONVERGENCE TO TRIVIAL FIXED POINT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 104, + 452, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 122, + 468 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 454, + 172, + 465 + ], + "score": 0.91, + "content": "P \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 452, + 268, + 468 + ], + "score": 1.0, + "content": "be a symmetric matrix,", + "type": "text" + }, + { + "bbox": [ + 269, + 454, + 321, + 466 + ], + "score": 0.89, + "content": "W _ { l } \\in \\mathbb { R } ^ { C \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 452, + 325, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 457, + 335, + 466 + ], + "score": 0.72, + "content": "s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 452, + 476, + 468 + ], + "score": 1.0, + "content": "be the maximum singular value of", + "type": "text" + }, + { + "bbox": [ + 476, + 455, + 489, + 466 + ], + "score": 0.88, + "content": "W _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 452, + 506, + 468 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 462, + 507, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 139, + 478 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 462, + 190, + 480 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 190, + 465, + 282, + 477 + ], + "score": 0.91, + "content": "f _ { l } ^ { ^ { \\bullet } } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { N \\times { \\dot { C } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 462, + 298, + 480 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 298, + 466, + 385, + 478 + ], + "score": 0.93, + "content": "f _ { l } ( X ) : = \\sigma ( P X W _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 462, + 415, + 480 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 415, + 468, + 422, + 476 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 462, + 507, + 480 + ], + "score": 1.0, + "content": "is the element-wise", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 476, + 172, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 172, + 489 + ], + "score": 1.0, + "content": "ReLU function.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 351, + 504 + ], + "score": 1.0, + "content": "Proposition 3. Suppose further that the operator norm of", + "type": "text" + }, + { + "bbox": [ + 351, + 492, + 360, + 501 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 490, + 435, + 504 + ], + "score": 1.0, + "content": "is no larger than", + "type": "text" + }, + { + "bbox": [ + 436, + 492, + 443, + 501 + ], + "score": 0.77, + "content": "\\lambda ,", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 490, + 505, + 504 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 500, + 504, + 517 + ], + "spans": [ + { + "bbox": [ + 107, + 502, + 201, + 514 + ], + "score": 0.9, + "content": "\\| f _ { l } ( \\bar { \\boldsymbol { X } } ) \\| _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\| \\bar { \\boldsymbol { X } } \\| _ { \\mathrm { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 500, + 236, + 517 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 237, + 502, + 269, + 514 + ], + "score": 0.9, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 500, + 346, + 517 + ], + "score": 1.0, + "content": ". In particular, let", + "type": "text" + }, + { + "bbox": [ + 347, + 503, + 414, + 516 + ], + "score": 0.9, + "content": "s : = \\operatorname* { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 500, + 430, + 517 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 431, + 502, + 463, + 513 + ], + "score": 0.88, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 500, + 491, + 517 + ], + "score": 1.0, + "content": ", then,", + "type": "text" + }, + { + "bbox": [ + 491, + 502, + 504, + 513 + ], + "score": 0.85, + "content": "X _ { l }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 514, + 263, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 230, + 527 + ], + "score": 1.0, + "content": "exponentially approaches 0 as", + "type": "text" + }, + { + "bbox": [ + 230, + 515, + 259, + 524 + ], + "score": 0.88, + "content": "l \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 514, + 263, + 527 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 162, + 550 + ], + "score": 1.0, + "content": "Proof. Since", + "type": "text" + }, + { + "bbox": [ + 162, + 538, + 169, + 548 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 537, + 271, + 550 + ], + "score": 1.0, + "content": "is the operator norm of", + "type": "text" + }, + { + "bbox": [ + 271, + 538, + 295, + 550 + ], + "score": 0.92, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 537, + 506, + 550 + ], + "score": 1.0, + "content": ", the assumption implies that the operator norm of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 107, + 549, + 116, + 559 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 547, + 211, + 561 + ], + "score": 1.0, + "content": "itself is no larger than", + "type": "text" + }, + { + "bbox": [ + 211, + 549, + 218, + 558 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 547, + 308, + 561 + ], + "score": 1.0, + "content": ". Therefore, we have", + "type": "text" + }, + { + "bbox": [ + 308, + 549, + 468, + 560 + ], + "score": 0.9, + "content": "\\| P X W _ { l } \\| _ { \\mathrm { F } } \\leq \\lambda \\bar { \\| } X W _ { l } \\| _ { \\mathrm { F } } \\leq s _ { l } \\bar { \\lambda } \\| X \\| _ { \\mathrm { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 547, + 506, + 561 + ], + "score": 1.0, + "content": ". On the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 103, + 558, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 103, + 558, + 179, + 573 + ], + "score": 1.0, + "content": "other hand, since", + "type": "text" + }, + { + "bbox": [ + 179, + 559, + 230, + 571 + ], + "score": 0.93, + "content": "\\sigma ( x ) ^ { 2 } \\leq x ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 558, + 264, + 573 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 264, + 560, + 293, + 570 + ], + "score": 0.89, + "content": "x \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 558, + 334, + 573 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 335, + 560, + 415, + 571 + ], + "score": 0.88, + "content": "\\| \\sigma ( X ) \\| _ { \\mathrm { F } } \\leq \\| X \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 558, + 449, + 573 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 450, + 559, + 501, + 570 + ], + "score": 0.9, + "content": "\\boldsymbol { X } ^ { \\prime } \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 558, + 506, + 573 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 570, + 504, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 224, + 584 + ], + "score": 1.0, + "content": "Combining the two, we have", + "type": "text" + }, + { + "bbox": [ + 224, + 570, + 374, + 583 + ], + "score": 0.91, + "content": "\\Vert f _ { l } ( X ) \\Vert _ { \\mathrm { F } } \\leq \\Vert P X W _ { l } \\Vert _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\Vert X \\Vert _ { \\mathrm { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 570, + 379, + 584 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 496, + 572, + 504, + 579 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 107, + 595, + 253, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 254, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 254, + 608 + ], + "score": 1.0, + "content": "E.3 STRICTNESS OF THEOREM 1", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 211, + 628 + ], + "score": 1.0, + "content": "Theorem 1 implies that if", + "type": "text" + }, + { + "bbox": [ + 211, + 616, + 242, + 627 + ], + "score": 0.91, + "content": "s \\lambda \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 615, + 345, + 628 + ], + "score": 1.0, + "content": ", then, one-step transition", + "type": "text" + }, + { + "bbox": [ + 345, + 616, + 354, + 627 + ], + "score": 0.87, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 615, + 488, + 628 + ], + "score": 1.0, + "content": "does not increase the distance to", + "type": "text" + }, + { + "bbox": [ + 488, + 616, + 501, + 626 + ], + "score": 0.82, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "In this section, we first prove that this theorem is strict in the sense that, there exists a situation in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 638, + 483, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 133, + 650 + ], + "score": 1.0, + "content": "which", + "type": "text" + }, + { + "bbox": [ + 133, + 638, + 166, + 649 + ], + "score": 0.91, + "content": "s _ { l } \\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 638, + 258, + 650 + ], + "score": 1.0, + "content": "holds and the distance", + "type": "text" + }, + { + "bbox": [ + 258, + 638, + 275, + 649 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 638, + 404, + 650 + ], + "score": 1.0, + "content": "increases by one-step transition", + "type": "text" + }, + { + "bbox": [ + 404, + 638, + 413, + 649 + ], + "score": 0.86, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 638, + 470, + 650 + ], + "score": 1.0, + "content": "at some point", + "type": "text" + }, + { + "bbox": [ + 471, + 638, + 480, + 648 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 638, + 483, + 650 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 384, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 385, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 121, + 668 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 122, + 655, + 153, + 665 + ], + "score": 0.82, + "content": "N \\gets 2", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 653, + 156, + 668 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 156, + 655, + 186, + 665 + ], + "score": 0.82, + "content": "C \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 653, + 206, + 668 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 207, + 655, + 239, + 664 + ], + "score": 0.91, + "content": "M \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 653, + 317, + 668 + ], + "score": 1.0, + "content": "in Section 3.2. For", + "type": "text" + }, + { + "bbox": [ + 317, + 655, + 353, + 666 + ], + "score": 0.91, + "content": "\\mu , \\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 653, + 385, + 668 + ], + "score": 1.0, + "content": ", we set", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 668, + 402, + 696 + ], + "lines": [ + { + "bbox": [ + 206, + 668, + 402, + 696 + ], + "spans": [ + { + "bbox": [ + 206, + 668, + 402, + 696 + ], + "score": 0.93, + "content": "P [ { \\mu \\atop 0 } \\lambda ] , e [ 1 \\atop 0 ] , U \\{ [ { x \\atop y } ] \\mid y = 0 \\} .", + "type": "interline_equation", + "image_path": "31c8f337f767b389f9e29dc55525ffeb7295cd5c21158f1437be017ccbef7b58.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 206, + 668, + 402, + 696 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 311, + 711 + ], + "score": 1.0, + "content": "Then, by definition, we can check that the 3-tuple", + "type": "text" + }, + { + "bbox": [ + 311, + 699, + 347, + 710 + ], + "score": 0.89, + "content": "( P , e , U )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "satisfies the Assumptions 1 and 2. Set", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 704, + 508, + 725 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 186, + 720 + ], + "score": 0.9, + "content": "\\mathcal { M } : = U \\otimes \\mathbb { R } = U", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 704, + 235, + 725 + ], + "score": 1.0, + "content": "and choose", + "type": "text" + }, + { + "bbox": [ + 235, + 710, + 268, + 720 + ], + "score": 0.91, + "content": "W \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 704, + 298, + 725 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 299, + 710, + 340, + 720 + ], + "score": 0.88, + "content": "W ^ { \\setminus } > \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 704, + 404, + 725 + ], + "score": 1.0, + "content": ". Finally define", + "type": "text" + }, + { + "bbox": [ + 405, + 709, + 491, + 721 + ], + "score": 0.91, + "content": "f : \\mathbb { R } ^ { \\mathbf { \\hat { N } } \\times C } \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 704, + 508, + 725 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 720, + 369, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 187, + 732 + ], + "score": 0.91, + "content": "f ( X ) : = \\sigma ( P X W )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 720, + 216, + 733 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 216, + 722, + 223, + 730 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 720, + 369, + 733 + ], + "score": 1.0, + "content": "is the element-wise ReLU function.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 80, + 354, + 96 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 355, + 97 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 217, + 94 + ], + "score": 1.0, + "content": "Proof of Theorem 3. Since", + "type": "text" + }, + { + "bbox": [ + 213, + 78, + 355, + 97 + ], + "score": 1.0, + "content": "log NNp = o(1), for fixed ε, we have", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 105, + 78, + 355, + 97 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 243, + 99, + 367, + 125 + ], + "lines": [ + { + "bbox": [ + 243, + 99, + 367, + 125 + ], + "spans": [ + { + "bbox": [ + 243, + 99, + 367, + 125 + ], + "score": 0.94, + "content": "\\frac { N p - p + 1 } { \\log N } > \\frac { N p } { \\log N } > k ( \\varepsilon )", + "type": "interline_equation", + "image_path": "463306171e0e7ca695b2cbb0e6dc4d97c6f902d744d5e10f5b1b37f770b5c8c8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 243, + 99, + 367, + 125 + ], + "spans": [], + "index": 1 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 128, + 488, + 143 + ], + "lines": [ + { + "bbox": [ + 105, + 126, + 490, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 129, + 190, + 142 + ], + "score": 1.0, + "content": "for sufficiently large", + "type": "text" + }, + { + "bbox": [ + 190, + 130, + 200, + 140 + ], + "score": 0.81, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 129, + 238, + 142 + ], + "score": 1.0, + "content": ". Further,", + "type": "text" + }, + { + "bbox": [ + 239, + 130, + 279, + 141 + ], + "score": 0.91, + "content": "N p \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 129, + 291, + 142 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 291, + 130, + 327, + 140 + ], + "score": 0.9, + "content": "N \\to \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 129, + 353, + 142 + ], + "score": 1.0, + "content": "whe", + "type": "text" + }, + { + "bbox": [ + 348, + 126, + 490, + 144 + ], + "score": 1.0, + "content": "n log NNp = o(1). Therefore, we have", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 126, + 490, + 144 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 146, + 401, + 174 + ], + "lines": [ + { + "bbox": [ + 210, + 146, + 401, + 174 + ], + "spans": [ + { + "bbox": [ + 210, + 146, + 401, + 174 + ], + "score": 0.93, + "content": "\\frac { ( 1 - p ) ^ { 2 } } { N p - p + 1 } \\leq \\frac { 1 } { N p } \\leq ( 7 - 4 \\sqrt { 3 } ) ^ { 2 } \\log \\left( \\frac { 4 N } { \\varepsilon } \\right)", + "type": "interline_equation", + "image_path": "13f440081ab3f99459b4e3aa7a438bf7b3d2fbfe37e2f3dc6de25b22a2cb82fa.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 210, + 146, + 401, + 174 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 234, + 188 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 235, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 190, + 190 + ], + "score": 1.0, + "content": "for sufficiently large", + "type": "text" + }, + { + "bbox": [ + 190, + 177, + 200, + 186 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 174, + 235, + 190 + ], + "score": 1.0, + "content": ". Hence.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 174, + 235, + 190 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 219, + 191, + 392, + 224 + ], + "lines": [ + { + "bbox": [ + 219, + 191, + 392, + 224 + ], + "spans": [ + { + "bbox": [ + 219, + 191, + 392, + 224 + ], + "score": 0.95, + "content": "\\frac { 1 - p } { N p - p + 1 } \\leq ( 7 - 4 \\sqrt { 3 } ) \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } .", + "type": "interline_equation", + "image_path": "805df5f48792754d6a0d9f84f4cf09222c7674b243da522e00a34824e6f6df78.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 219, + 191, + 392, + 207.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 219, + 207.5, + 392, + 224.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 228, + 506, + 260 + ], + "lines": [ + { + "bbox": [ + 105, + 227, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 228, + 190, + 246 + ], + "score": 1.0, + "content": "Therefore, we have", + "type": "text" + }, + { + "bbox": [ + 191, + 227, + 300, + 248 + ], + "score": 0.94, + "content": "\\begin{array} { r } { l ( N , p , \\varepsilon ) \\le 7 \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 228, + 302, + 248 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 304, + 228, + 364, + 248 + ], + "score": 1.0, + "content": "Therefore, if", + "type": "text" + }, + { + "bbox": [ + 365, + 228, + 442, + 248 + ], + "score": 0.94, + "content": "s ~ \\le ~ \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } }", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 228, + 506, + 248 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 107, + 246, + 178, + 260 + ], + "spans": [ + { + "bbox": [ + 107, + 246, + 174, + 260 + ], + "score": 0.91, + "content": "s \\leq l ( N , p , \\varepsilon ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 246, + 178, + 260 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 227, + 506, + 260 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 274, + 296, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 297, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 297, + 290 + ], + "score": 1.0, + "content": "E MISCELLANEOUS PROPOSITIONS", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 359, + 311 + ], + "lines": [ + { + "bbox": [ + 105, + 298, + 359, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 359, + 312 + ], + "score": 1.0, + "content": "E.1 INVARIANCE OF ORTHOGONAL COMPLEMENT SPACE", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 298, + 359, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 318, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 104, + 316, + 505, + 333 + ], + "spans": [ + { + "bbox": [ + 104, + 316, + 185, + 333 + ], + "score": 1.0, + "content": "Proposition 2. Let", + "type": "text" + }, + { + "bbox": [ + 185, + 318, + 234, + 330 + ], + "score": 0.91, + "content": "P \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 316, + 439, + 333 + ], + "score": 1.0, + "content": "be a symmetric matrix, treated as a linear operator", + "type": "text" + }, + { + "bbox": [ + 439, + 319, + 501, + 330 + ], + "score": 0.9, + "content": "P : \\mathbb { R } ^ { N } \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 316, + 505, + 333 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 163, + 343 + ], + "score": 1.0, + "content": "If a subspace", + "type": "text" + }, + { + "bbox": [ + 163, + 330, + 202, + 341 + ], + "score": 0.91, + "content": "U \\subset \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 330, + 279, + 343 + ], + "score": 1.0, + "content": "is invariant under", + "type": "text" + }, + { + "bbox": [ + 279, + 331, + 288, + 341 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 330, + 318, + 343 + ], + "score": 1.0, + "content": "(i.e., if", + "type": "text" + }, + { + "bbox": [ + 319, + 331, + 347, + 342 + ], + "score": 0.87, + "content": "u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 330, + 372, + 343 + ], + "score": 1.0, + "content": ", then", + "type": "text" + }, + { + "bbox": [ + 372, + 331, + 409, + 342 + ], + "score": 0.89, + "content": "P u \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 330, + 439, + 343 + ], + "score": 1.0, + "content": "), then,", + "type": "text" + }, + { + "bbox": [ + 439, + 330, + 455, + 341 + ], + "score": 0.87, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "is invariant", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 341, + 163, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 132, + 354 + ], + "score": 1.0, + "content": "under", + "type": "text" + }, + { + "bbox": [ + 132, + 343, + 141, + 352 + ], + "score": 0.79, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 341, + 163, + 354 + ], + "score": 1.0, + "content": ", too.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 316, + 506, + 354 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 364, + 365, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 363, + 365, + 380 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 169, + 380 + ], + "score": 1.0, + "content": "Proof. For any", + "type": "text" + }, + { + "bbox": [ + 169, + 365, + 203, + 376 + ], + "score": 0.92, + "content": "u \\in U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 363, + 221, + 380 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 221, + 366, + 247, + 376 + ], + "score": 0.9, + "content": "v \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 363, + 317, + 380 + ], + "score": 1.0, + "content": ", by symmetry of", + "type": "text" + }, + { + "bbox": [ + 317, + 366, + 326, + 375 + ], + "score": 0.85, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 363, + 365, + 380 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 363, + 365, + 380 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 200, + 379, + 410, + 394 + ], + "lines": [ + { + "bbox": [ + 200, + 379, + 410, + 394 + ], + "spans": [ + { + "bbox": [ + 200, + 379, + 410, + 394 + ], + "score": 0.89, + "content": "\\langle P u , v \\rangle = ( P u ) ^ { \\top } v = u ^ { \\top } P ^ { \\top } v = u ^ { \\top } P v = \\langle u , P v \\rangle .", + "type": "interline_equation", + "image_path": "52ab40224e5255fd51194ad825ef29b1385ab12fd7152044ad6cf0db196800a5.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 200, + 379, + 410, + 394 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 398, + 503, + 422 + ], + "lines": [ + { + "bbox": [ + 105, + 397, + 501, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 131, + 411 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 131, + 399, + 140, + 409 + ], + "score": 0.83, + "content": "U", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 397, + 233, + 411 + ], + "score": 1.0, + "content": "is an invariant space of", + "type": "text" + }, + { + "bbox": [ + 233, + 399, + 242, + 409 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 397, + 280, + 411 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 280, + 399, + 314, + 409 + ], + "score": 0.9, + "content": "P v \\in U", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 397, + 383, + 411 + ], + "score": 1.0, + "content": ". Hence, we have", + "type": "text" + }, + { + "bbox": [ + 383, + 399, + 433, + 411 + ], + "score": 0.93, + "content": "\\langle u , P v \\rangle = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 397, + 467, + 411 + ], + "score": 1.0, + "content": "because", + "type": "text" + }, + { + "bbox": [ + 468, + 398, + 501, + 409 + ], + "score": 0.91, + "content": "u \\in U ^ { \\perp }", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 409, + 149, + 421 + ], + "score": 1.0, + "content": "We obtain", + "type": "text" + }, + { + "bbox": [ + 150, + 410, + 191, + 420 + ], + "score": 0.91, + "content": "P u \\in U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 409, + 271, + 421 + ], + "score": 1.0, + "content": "by the definition of", + "type": "text" + }, + { + "bbox": [ + 271, + 410, + 286, + 420 + ], + "score": 0.89, + "content": "U ^ { \\perp }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 409, + 290, + 421 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 410, + 506, + 421 + ], + "score": 1.0, + "content": "□", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 397, + 506, + 421 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 434, + 312, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 312, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 312, + 447 + ], + "score": 1.0, + "content": "E.2 CONVERGENCE TO TRIVIAL FIXED POINT", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 106, + 453, + 506, + 488 + ], + "lines": [ + { + "bbox": [ + 104, + 452, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 104, + 452, + 122, + 468 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 123, + 454, + 172, + 465 + ], + "score": 0.91, + "content": "P \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 452, + 268, + 468 + ], + "score": 1.0, + "content": "be a symmetric matrix,", + "type": "text" + }, + { + "bbox": [ + 269, + 454, + 321, + 466 + ], + "score": 0.89, + "content": "W _ { l } \\in \\mathbb { R } ^ { C \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 452, + 325, + 468 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 457, + 335, + 466 + ], + "score": 0.72, + "content": "s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 452, + 476, + 468 + ], + "score": 1.0, + "content": "be the maximum singular value of", + "type": "text" + }, + { + "bbox": [ + 476, + 455, + 489, + 466 + ], + "score": 0.88, + "content": "W _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 490, + 452, + 506, + 468 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 462, + 507, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 139, + 478 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 462, + 190, + 480 + ], + "score": 1.0, + "content": ". We define", + "type": "text" + }, + { + "bbox": [ + 190, + 465, + 282, + 477 + ], + "score": 0.91, + "content": "f _ { l } ^ { ^ { \\bullet } } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { N \\times { \\dot { C } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 462, + 298, + 480 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 298, + 466, + 385, + 478 + ], + "score": 0.93, + "content": "f _ { l } ( X ) : = \\sigma ( P X W _ { l } )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 462, + 415, + 480 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 415, + 468, + 422, + 476 + ], + "score": 0.78, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 462, + 507, + 480 + ], + "score": 1.0, + "content": "is the element-wise", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 476, + 172, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 172, + 489 + ], + "score": 1.0, + "content": "ReLU function.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20, + "bbox_fs": [ + 104, + 452, + 507, + 489 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 490, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 490, + 351, + 504 + ], + "score": 1.0, + "content": "Proposition 3. Suppose further that the operator norm of", + "type": "text" + }, + { + "bbox": [ + 351, + 492, + 360, + 501 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 490, + 435, + 504 + ], + "score": 1.0, + "content": "is no larger than", + "type": "text" + }, + { + "bbox": [ + 436, + 492, + 443, + 501 + ], + "score": 0.77, + "content": "\\lambda ,", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 490, + 505, + 504 + ], + "score": 1.0, + "content": ", then we have", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 500, + 504, + 517 + ], + "spans": [ + { + "bbox": [ + 107, + 502, + 201, + 514 + ], + "score": 0.9, + "content": "\\| f _ { l } ( \\bar { \\boldsymbol { X } } ) \\| _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\| \\bar { \\boldsymbol { X } } \\| _ { \\mathrm { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 500, + 236, + 517 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 237, + 502, + 269, + 514 + ], + "score": 0.9, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 270, + 500, + 346, + 517 + ], + "score": 1.0, + "content": ". In particular, let", + "type": "text" + }, + { + "bbox": [ + 347, + 503, + 414, + 516 + ], + "score": 0.9, + "content": "s : = \\operatorname* { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 500, + 430, + 517 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 431, + 502, + 463, + 513 + ], + "score": 0.88, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 500, + 491, + 517 + ], + "score": 1.0, + "content": ", then,", + "type": "text" + }, + { + "bbox": [ + 491, + 502, + 504, + 513 + ], + "score": 0.85, + "content": "X _ { l }", + "type": "inline_equation" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 514, + 263, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 514, + 230, + 527 + ], + "score": 1.0, + "content": "exponentially approaches 0 as", + "type": "text" + }, + { + "bbox": [ + 230, + 515, + 259, + 524 + ], + "score": 0.88, + "content": "l \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 514, + 263, + 527 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 490, + 505, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 162, + 550 + ], + "score": 1.0, + "content": "Proof. Since", + "type": "text" + }, + { + "bbox": [ + 162, + 538, + 169, + 548 + ], + "score": 0.81, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 170, + 537, + 271, + 550 + ], + "score": 1.0, + "content": "is the operator norm of", + "type": "text" + }, + { + "bbox": [ + 271, + 538, + 295, + 550 + ], + "score": 0.92, + "content": "P | _ { U ^ { \\perp } }", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 537, + 506, + 550 + ], + "score": 1.0, + "content": ", the assumption implies that the operator norm of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 107, + 549, + 116, + 559 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 547, + 211, + 561 + ], + "score": 1.0, + "content": "itself is no larger than", + "type": "text" + }, + { + "bbox": [ + 211, + 549, + 218, + 558 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 547, + 308, + 561 + ], + "score": 1.0, + "content": ". Therefore, we have", + "type": "text" + }, + { + "bbox": [ + 308, + 549, + 468, + 560 + ], + "score": 0.9, + "content": "\\| P X W _ { l } \\| _ { \\mathrm { F } } \\leq \\lambda \\bar { \\| } X W _ { l } \\| _ { \\mathrm { F } } \\leq s _ { l } \\bar { \\lambda } \\| X \\| _ { \\mathrm { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 547, + 506, + 561 + ], + "score": 1.0, + "content": ". On the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 103, + 558, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 103, + 558, + 179, + 573 + ], + "score": 1.0, + "content": "other hand, since", + "type": "text" + }, + { + "bbox": [ + 179, + 559, + 230, + 571 + ], + "score": 0.93, + "content": "\\sigma ( x ) ^ { 2 } \\leq x ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 558, + 264, + 573 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 264, + 560, + 293, + 570 + ], + "score": 0.89, + "content": "x \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 558, + 334, + 573 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 335, + 560, + 415, + 571 + ], + "score": 0.88, + "content": "\\| \\sigma ( X ) \\| _ { \\mathrm { F } } \\leq \\| X \\| _ { F }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 558, + 449, + 573 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 450, + 559, + 501, + 570 + ], + "score": 0.9, + "content": "\\boldsymbol { X } ^ { \\prime } \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 558, + 506, + 573 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 570, + 504, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 570, + 224, + 584 + ], + "score": 1.0, + "content": "Combining the two, we have", + "type": "text" + }, + { + "bbox": [ + 224, + 570, + 374, + 583 + ], + "score": 0.91, + "content": "\\Vert f _ { l } ( X ) \\Vert _ { \\mathrm { F } } \\leq \\Vert P X W _ { l } \\Vert _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\Vert X \\Vert _ { \\mathrm { F } }", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 570, + 379, + 584 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 496, + 572, + 504, + 579 + ], + "score": 0.998, + "content": "□", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 103, + 537, + 506, + 584 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 595, + 253, + 606 + ], + "lines": [ + { + "bbox": [ + 105, + 594, + 254, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 254, + 608 + ], + "score": 1.0, + "content": "E.3 STRICTNESS OF THEOREM 1", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 615, + 505, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 211, + 628 + ], + "score": 1.0, + "content": "Theorem 1 implies that if", + "type": "text" + }, + { + "bbox": [ + 211, + 616, + 242, + 627 + ], + "score": 0.91, + "content": "s \\lambda \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 615, + 345, + 628 + ], + "score": 1.0, + "content": ", then, one-step transition", + "type": "text" + }, + { + "bbox": [ + 345, + 616, + 354, + 627 + ], + "score": 0.87, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 615, + 488, + 628 + ], + "score": 1.0, + "content": "does not increase the distance to", + "type": "text" + }, + { + "bbox": [ + 488, + 616, + 501, + 626 + ], + "score": 0.82, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 505, + 638 + ], + "score": 1.0, + "content": "In this section, we first prove that this theorem is strict in the sense that, there exists a situation in", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 638, + 483, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 133, + 650 + ], + "score": 1.0, + "content": "which", + "type": "text" + }, + { + "bbox": [ + 133, + 638, + 166, + 649 + ], + "score": 0.91, + "content": "s _ { l } \\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 638, + 258, + 650 + ], + "score": 1.0, + "content": "holds and the distance", + "type": "text" + }, + { + "bbox": [ + 258, + 638, + 275, + 649 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 638, + 404, + 650 + ], + "score": 1.0, + "content": "increases by one-step transition", + "type": "text" + }, + { + "bbox": [ + 404, + 638, + 413, + 649 + ], + "score": 0.86, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 638, + 470, + 650 + ], + "score": 1.0, + "content": "at some point", + "type": "text" + }, + { + "bbox": [ + 471, + 638, + 480, + 648 + ], + "score": 0.85, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 481, + 638, + 483, + 650 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 615, + 505, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 654, + 384, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 385, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 121, + 668 + ], + "score": 1.0, + "content": "Set", + "type": "text" + }, + { + "bbox": [ + 122, + 655, + 153, + 665 + ], + "score": 0.82, + "content": "N \\gets 2", + "type": "inline_equation" + }, + { + "bbox": [ + 153, + 653, + 156, + 668 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 156, + 655, + 186, + 665 + ], + "score": 0.82, + "content": "C \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 653, + 206, + 668 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 207, + 655, + 239, + 664 + ], + "score": 0.91, + "content": "M \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 653, + 317, + 668 + ], + "score": 1.0, + "content": "in Section 3.2. For", + "type": "text" + }, + { + "bbox": [ + 317, + 655, + 353, + 666 + ], + "score": 0.91, + "content": "\\mu , \\lambda > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 353, + 653, + 385, + 668 + ], + "score": 1.0, + "content": ", we set", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 653, + 385, + 668 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 206, + 668, + 402, + 696 + ], + "lines": [ + { + "bbox": [ + 206, + 668, + 402, + 696 + ], + "spans": [ + { + "bbox": [ + 206, + 668, + 402, + 696 + ], + "score": 0.93, + "content": "P [ { \\mu \\atop 0 } \\lambda ] , e [ 1 \\atop 0 ] , U \\{ [ { x \\atop y } ] \\mid y = 0 \\} .", + "type": "interline_equation", + "image_path": "31c8f337f767b389f9e29dc55525ffeb7295cd5c21158f1437be017ccbef7b58.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 206, + 668, + 402, + 696 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 311, + 711 + ], + "score": 1.0, + "content": "Then, by definition, we can check that the 3-tuple", + "type": "text" + }, + { + "bbox": [ + 311, + 699, + 347, + 710 + ], + "score": 0.89, + "content": "( P , e , U )", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "satisfies the Assumptions 1 and 2. Set", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 704, + 508, + 725 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 186, + 720 + ], + "score": 0.9, + "content": "\\mathcal { M } : = U \\otimes \\mathbb { R } = U", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 704, + 235, + 725 + ], + "score": 1.0, + "content": "and choose", + "type": "text" + }, + { + "bbox": [ + 235, + 710, + 268, + 720 + ], + "score": 0.91, + "content": "W \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 268, + 704, + 298, + 725 + ], + "score": 1.0, + "content": "so that", + "type": "text" + }, + { + "bbox": [ + 299, + 710, + 340, + 720 + ], + "score": 0.88, + "content": "W ^ { \\setminus } > \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 704, + 404, + 725 + ], + "score": 1.0, + "content": ". Finally define", + "type": "text" + }, + { + "bbox": [ + 405, + 709, + 491, + 721 + ], + "score": 0.91, + "content": "f : \\mathbb { R } ^ { \\mathbf { \\hat { N } } \\times C } \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 704, + 508, + 725 + ], + "score": 1.0, + "content": "by", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 720, + 369, + 733 + ], + "spans": [ + { + "bbox": [ + 107, + 721, + 187, + 732 + ], + "score": 0.91, + "content": "f ( X ) : = \\sigma ( P X W )", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 720, + 216, + 733 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 216, + 722, + 223, + 730 + ], + "score": 0.79, + "content": "\\sigma", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 720, + 369, + 733 + ], + "score": 1.0, + "content": "is the element-wise ReLU function.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 698, + 508, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 232, + 120 + ], + "score": 1.0, + "content": "Proof. By definition, we have", + "type": "text" + }, + { + "bbox": [ + 233, + 106, + 298, + 119 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( X ) = | x _ { 2 } |", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 105, + 506, + 120 + ], + "score": 1.0, + "content": ". On the other hand, direct calculation shows that", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 119, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 107, + 119, + 260, + 134 + ], + "score": 0.86, + "content": "f _ { l } ( X ) = \\left[ ( W \\mu X _ { 1 } ) ^ { + } \\quad ( W \\lambda X _ { 2 } ) ^ { + } \\right] ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 119, + 279, + 134 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 120, + 387, + 133 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) = ( W \\lambda X _ { 2 } ) ^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 119, + 416, + 134 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 416, + 120, + 489, + 133 + ], + "score": 0.91, + "content": "x ^ { + } : = \\operatorname* { m a x } ( x , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 119, + 506, + 134 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 132, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 107, + 134, + 132, + 144 + ], + "score": 0.87, + "content": "x \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 132, + 162, + 147 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 162, + 133, + 203, + 144 + ], + "score": 0.89, + "content": "W > \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 132, + 221, + 147 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 222, + 135, + 251, + 145 + ], + "score": 0.89, + "content": "x _ { 2 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 132, + 290, + 147 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 290, + 134, + 384, + 146 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) > d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 132, + 389, + 147 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 134, + 506, + 145 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 506, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 505, + 169 + ], + "score": 1.0, + "content": "Next, we prove the non-strictness of Theorem 1 in the sense that there exists a situation in which", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 168, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 140, + 180 + ], + "score": 0.9, + "content": "s _ { l } \\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 168, + 234, + 181 + ], + "score": 1.0, + "content": "holds and the distance", + "type": "text" + }, + { + "bbox": [ + 234, + 169, + 250, + 180 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 168, + 348, + 181 + ], + "score": 1.0, + "content": "uniformly decreases by", + "type": "text" + }, + { + "bbox": [ + 348, + 169, + 357, + 180 + ], + "score": 0.84, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 168, + 435, + 181 + ], + "score": 1.0, + "content": ". Again, we set Set", + "type": "text" + }, + { + "bbox": [ + 435, + 169, + 467, + 179 + ], + "score": 0.85, + "content": "N \\gets 2", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 168, + 470, + 181 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 471, + 169, + 501, + 179 + ], + "score": 0.83, + "content": "C \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 168, + 506, + 181 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 180, + 249, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 123, + 191 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 180, + 156, + 190 + ], + "score": 0.89, + "content": "M \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 180, + 176, + 191 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 176, + 180, + 217, + 191 + ], + "score": 0.93, + "content": "\\lambda \\in ( 1 , 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 180, + 249, + 191 + ], + "score": 1.0, + "content": "and set", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 196, + 423, + 224 + ], + "lines": [ + { + "bbox": [ + 188, + 196, + 423, + 224 + ], + "spans": [ + { + "bbox": [ + 188, + 196, + 423, + 224 + ], + "score": 0.94, + "content": "P \\frac { \\lambda } { 2 } [ \\begin{array} { c c } { 1 } & { - 1 } \\\\ { - 1 } & { 1 } \\end{array} ] , e \\frac { 1 } { \\sqrt { 2 } } [ \\begin{array} { c } { 1 } \\\\ { 1 } \\end{array} ] , U \\{ [ \\begin{array} { c } { x } \\\\ { y } \\end{array} ] | x = y \\}", + "type": "interline_equation", + "image_path": "087c9606e481a961a37b1e1babb22cba1730aec8a623132d768567bf6bb36c81.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 188, + 196, + 423, + 224 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 228, + 494, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 227, + 495, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 267, + 242 + ], + "score": 1.0, + "content": "Then, we can directly show that 3-tuple", + "type": "text" + }, + { + "bbox": [ + 267, + 228, + 303, + 241 + ], + "score": 0.93, + "content": "( P , e , U )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 227, + 458, + 242 + ], + "score": 1.0, + "content": "satisfies the Assumptions 1 and 2. Set", + "type": "text" + }, + { + "bbox": [ + 459, + 229, + 491, + 239 + ], + "score": 0.88, + "content": "W 1", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 227, + 495, + 242 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 421, + 256 + ], + "lines": [ + { + "bbox": [ + 104, + 241, + 421, + 257 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 206, + 257 + ], + "score": 1.0, + "content": "Proposition 5. We have", + "type": "text" + }, + { + "bbox": [ + 207, + 243, + 242, + 254 + ], + "score": 0.9, + "content": "W \\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 241, + 261, + 257 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 243, + 355, + 255 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) < d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 241, + 383, + 257 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 383, + 243, + 417, + 254 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 241, + 421, + 257 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 104, + 267, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 267, + 197, + 285 + ], + "score": 1.0, + "content": "Proof. First, note that", + "type": "text" + }, + { + "bbox": [ + 198, + 267, + 277, + 285 + ], + "score": 0.9, + "content": "\\begin{array} { r } { e ^ { \\prime } : = \\frac { 1 } { \\sqrt { 2 } } \\left[ { \\begin{array} { l l } { 1 } & { - 1 } \\end{array} } \\right] ^ { \\top } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 267, + 363, + 285 + ], + "score": 1.0, + "content": "is the eigenvector of", + "type": "text" + }, + { + "bbox": [ + 363, + 271, + 372, + 280 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 267, + 427, + 285 + ], + "score": 1.0, + "content": "associated to", + "type": "text" + }, + { + "bbox": [ + 428, + 270, + 483, + 281 + ], + "score": 0.9, + "content": "\\lambda \\colon P e ^ { \\prime } = \\lambda e ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 267, + 506, + 285 + ], + "score": 1.0, + "content": ". For", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 282, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 205, + 296 + ], + "score": 0.86, + "content": "X = a e + b e ^ { \\prime } \\left( a , b { \\dot { \\omega } } 0 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 282, + 296, + 298 + ], + "score": 1.0, + "content": ", the distance between", + "type": "text" + }, + { + "bbox": [ + 297, + 284, + 307, + 294 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 282, + 326, + 298 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 284, + 339, + 294 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 282, + 350, + 298 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 351, + 284, + 408, + 296 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = | b |", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 282, + 505, + 298 + ], + "score": 1.0, + "content": ". On the other hand, by", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 295, + 222, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 222, + 307 + ], + "score": 1.0, + "content": "direct computation, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 311, + 406, + 357 + ], + "lines": [ + { + "bbox": [ + 204, + 311, + 406, + 357 + ], + "spans": [ + { + "bbox": [ + 204, + 311, + 406, + 357 + ], + "score": 0.94, + "content": "f ( X ) = \\sigma ( P X W ) = { \\left\\{ \\begin{array} { l l } { \\left[ 0 \\quad { \\frac { \\lambda b } { \\sqrt { 2 } } } \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b \\geq 0 { \\mathrm { ) } } , } \\\\ { \\left[ { \\frac { - \\lambda b } { \\sqrt { 2 } } } \\quad 0 \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b < 0 { \\mathrm { ) } } . } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "a159a4cc7dd5ac398b3cff74136fefb345275fef911e7b7089e5ae12ee2d25ab.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 204, + 311, + 406, + 326.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 204, + 326.3333333333333, + 406, + 341.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 204, + 341.66666666666663, + 406, + 356.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 504, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 241, + 374 + ], + "score": 1.0, + "content": "Therefore, the distance between", + "type": "text" + }, + { + "bbox": [ + 241, + 362, + 265, + 373 + ], + "score": 0.9, + "content": "f ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 361, + 285, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 362, + 299, + 372 + ], + "score": 0.84, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 361, + 311, + 374 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 312, + 361, + 401, + 374 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( f ( X ) ) = \\lambda | b | / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 361, + 434, + 374 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 434, + 362, + 464, + 372 + ], + "score": 0.88, + "content": "\\lambda \\ : < \\ : 2", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 361, + 505, + 374 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 372, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 107, + 373, + 198, + 385 + ], + "score": 0.92, + "content": "d _ { \\mathcal { M } } ( f ( X ) ) < d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 372, + 230, + 385 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 231, + 373, + 264, + 383 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 372, + 269, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 496, + 375, + 504, + 382 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 275, + 410 + ], + "score": 1.0, + "content": "We have shown that the non-negativity of", + "type": "text" + }, + { + "bbox": [ + 276, + 399, + 281, + 406 + ], + "score": 0.73, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 395, + 506, + 410 + ], + "score": 1.0, + "content": "(Assumption 1) is not a redundant condition in Section", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 406, + 126, + 421 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 126, + 421 + ], + "score": 1.0, + "content": "6.1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 107, + 435, + 297, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 298, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 298, + 450 + ], + "score": 1.0, + "content": "F RELATION TO MARKOV PROCESS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 104, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "It is known that any Markov process on finite states converges to a unique distribution (equilibrium)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "if it is irreducible and aperiodic (see, e.g., Norris (1998)). As we see in this section, this theorem is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 482, + 232, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 232, + 495 + ], + "score": 1.0, + "content": "the special case of Corollary 3.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 104, + 497, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 122, + 512 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 498, + 192, + 511 + ], + "score": 0.93, + "content": "S : = \\{ 1 , \\ldots , N \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 497, + 440, + 512 + ], + "score": 1.0, + "content": "be a finite discrete state space. Consider a Markov process on", + "type": "text" + }, + { + "bbox": [ + 441, + 500, + 448, + 509 + ], + "score": 0.82, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 497, + 506, + 512 + ], + "score": 1.0, + "content": "characterized", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 102, + 508, + 507, + 524 + ], + "spans": [ + { + "bbox": [ + 102, + 508, + 240, + 524 + ], + "score": 1.0, + "content": "by a symmetric transition matrix", + "type": "text" + }, + { + "bbox": [ + 240, + 510, + 348, + 523 + ], + "score": 0.92, + "content": "P = ( p _ { i j } ) _ { i , j \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 508, + 388, + 524 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 389, + 510, + 416, + 521 + ], + "score": 0.91, + "content": "P \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 508, + 434, + 524 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 434, + 510, + 468, + 520 + ], + "score": 0.91, + "content": "P \\mathbf { 1 } = \\mathbf { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 508, + 507, + 524 + ], + "score": 1.0, + "content": "where 1", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 244, + 534 + ], + "score": 1.0, + "content": "is the all-one vector. We interpret", + "type": "text" + }, + { + "bbox": [ + 244, + 523, + 258, + 533 + ], + "score": 0.86, + "content": "p _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 520, + 423, + 534 + ], + "score": 1.0, + "content": "as the transition probability from a state", + "type": "text" + }, + { + "bbox": [ + 423, + 522, + 428, + 531 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 520, + 439, + 534 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 439, + 522, + 446, + 532 + ], + "score": 0.79, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 520, + 506, + 534 + ], + "score": 1.0, + "content": ". We associate", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 531, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 107, + 532, + 116, + 542 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 531, + 172, + 545 + ], + "score": 1.0, + "content": "with a graph", + "type": "text" + }, + { + "bbox": [ + 172, + 532, + 242, + 544 + ], + "score": 0.93, + "content": "G _ { P } = ( V _ { P } , E _ { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 531, + 257, + 545 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 257, + 532, + 301, + 544 + ], + "score": 0.92, + "content": "V _ { P } = [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 531, + 321, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 321, + 532, + 370, + 544 + ], + "score": 0.92, + "content": "( i , j ) \\in E _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 531, + 429, + 545 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 429, + 533, + 463, + 544 + ], + "score": 0.92, + "content": "p _ { i j } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 531, + 495, + 545 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 495, + 532, + 504, + 542 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 221, + 555 + ], + "score": 1.0, + "content": "is symmetric, we can regard", + "type": "text" + }, + { + "bbox": [ + 222, + 543, + 237, + 554 + ], + "score": 0.87, + "content": "G _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 542, + 383, + 555 + ], + "score": 1.0, + "content": "as an undirected graph. We assume", + "type": "text" + }, + { + "bbox": [ + 383, + 543, + 392, + 553 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "is irreducible and aperiodic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 550, + 507, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 392, + 569 + ], + "score": 1.0, + "content": "10. Perron – Frobenius’ theorem (see, e.g., Meyer (2000)) implies that", + "type": "text" + }, + { + "bbox": [ + 392, + 554, + 401, + 564 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 550, + 507, + 569 + ], + "score": 1.0, + "content": "satisfy the assumption of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 564, + 210, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 174, + 578 + ], + "score": 1.0, + "content": "Corollary 3 with", + "type": "text" + }, + { + "bbox": [ + 175, + 565, + 205, + 575 + ], + "score": 0.9, + "content": "M = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 564, + 210, + 578 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 579, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 349, + 592 + ], + "score": 1.0, + "content": "Proposition 6 (Perron – Frobenius). Let the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 349, + 580, + 358, + 590 + ], + "score": 0.75, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 578, + 372, + 592 + ], + "score": 1.0, + "content": "be", + "type": "text" + }, + { + "bbox": [ + 372, + 580, + 438, + 591 + ], + "score": 0.88, + "content": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 578, + 505, + 592 + ], + "score": 1.0, + "content": ". Then, we have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 107, + 591, + 145, + 602 + ], + "score": 0.67, + "content": "- 1 < \\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 590, + 150, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 150, + 591, + 195, + 603 + ], + "score": 0.66, + "content": "\\lambda _ { N - 1 } < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 590, + 217, + 603 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 217, + 591, + 252, + 602 + ], + "score": 0.91, + "content": "\\lambda _ { N } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 590, + 399, + 603 + ], + "score": 1.0, + "content": ". Further, there exists unique vector", + "type": "text" + }, + { + "bbox": [ + 399, + 591, + 434, + 601 + ], + "score": 0.91, + "content": "e \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 590, + 475, + 603 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 475, + 591, + 501, + 602 + ], + "score": 0.88, + "content": "e \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 590, + 505, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 601, + 325, + 615 + ], + "spans": [ + { + "bbox": [ + 107, + 602, + 140, + 614 + ], + "score": 0.91, + "content": "\\| e \\| = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 601, + 162, + 615 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 162, + 604, + 168, + 612 + ], + "score": 0.46, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 601, + 325, + 615 + ], + "score": 1.0, + "content": "is the eigenvector for the eivenvalue 1.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 104, + 615, + 503, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 178, + 630 + ], + "score": 1.0, + "content": "Corollary 5. Let", + "type": "text" + }, + { + "bbox": [ + 179, + 616, + 307, + 628 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\lambda : = \\operatorname* { m a x } _ { n = 1 , \\ldots , N - 1 } | \\lambda _ { n } | ( < 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 614, + 327, + 630 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 615, + 434, + 628 + ], + "score": 0.9, + "content": "\\mathcal { M } : = \\{ e \\otimes w \\ | \\ w \\in \\mathbb { R } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 614, + 448, + 630 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 448, + 617, + 479, + 628 + ], + "score": 0.83, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 614, + 505, + 630 + ], + "score": 1.0, + "content": ", then,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 627, + 381, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 627, + 186, + 640 + ], + "score": 1.0, + "content": "for any initial value", + "type": "text" + }, + { + "bbox": [ + 186, + 628, + 199, + 639 + ], + "score": 0.8, + "content": "X _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 627, + 203, + 640 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 203, + 628, + 216, + 639 + ], + "score": 0.81, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 627, + 321, + 640 + ], + "score": 1.0, + "content": "exponentially approaches", + "type": "text" + }, + { + "bbox": [ + 322, + 628, + 334, + 637 + ], + "score": 0.58, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 627, + 347, + 640 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 347, + 629, + 376, + 637 + ], + "score": 0.8, + "content": "l \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 627, + 381, + 640 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 104, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 104, + 646, + 145, + 661 + ], + "score": 1.0, + "content": "If we set", + "type": "text" + }, + { + "bbox": [ + 145, + 648, + 175, + 658 + ], + "score": 0.9, + "content": "C = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 646, + 194, + 661 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 194, + 648, + 228, + 659 + ], + "score": 0.92, + "content": "W _ { l } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 646, + 258, + 661 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 258, + 648, + 290, + 660 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 646, + 438, + 661 + ], + "score": 1.0, + "content": ", then, we can inductively show that", + "type": "text" + }, + { + "bbox": [ + 439, + 648, + 472, + 659 + ], + "score": 0.91, + "content": "X _ { l } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "for any", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 131, + 670 + ], + "score": 0.9, + "content": "l \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 659, + 249, + 671 + ], + "score": 1.0, + "content": ". Therefore, we can interpret", + "type": "text" + }, + { + "bbox": [ + 250, + 660, + 262, + 670 + ], + "score": 0.86, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 659, + 331, + 671 + ], + "score": 1.0, + "content": "as a measure on", + "type": "text" + }, + { + "bbox": [ + 332, + 660, + 339, + 669 + ], + "score": 0.79, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 659, + 505, + 671 + ], + "score": 1.0, + "content": ". Suppose further that we take the initial", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 669, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 131, + 683 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 131, + 671, + 145, + 681 + ], + "score": 0.89, + "content": "X _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 669, + 159, + 683 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 159, + 670, + 195, + 681 + ], + "score": 0.92, + "content": "X _ { 1 } ~ \\geq ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 669, + 214, + 683 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 669, + 259, + 682 + ], + "score": 0.91, + "content": "X _ { 1 } ^ { \\top } \\mathbf { \\hat { 1 } } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 669, + 361, + 683 + ], + "score": 1.0, + "content": "so that we can interpret", + "type": "text" + }, + { + "bbox": [ + 361, + 671, + 375, + 681 + ], + "score": 0.88, + "content": "X _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 669, + 505, + 683 + ], + "score": 1.0, + "content": "as a probability distribution on", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 114, + 691 + ], + "score": 0.79, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 680, + 265, + 695 + ], + "score": 1.0, + "content": ". Then, we can inductively show that", + "type": "text" + }, + { + "bbox": [ + 266, + 681, + 298, + 693 + ], + "score": 0.87, + "content": "X _ { l } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 680, + 301, + 695 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 302, + 680, + 344, + 694 + ], + "score": 0.89, + "content": "X _ { l } ^ { \\top } \\mathbf { 1 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 680, + 366, + 695 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + }, + { + "bbox": [ + 366, + 682, + 379, + 692 + ], + "score": 0.89, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "is a probability distribution on", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 114, + 697, + 506, + 716 + ], + "spans": [ + { + "bbox": [ + 114, + 697, + 197, + 716 + ], + "score": 1.0, + "content": "10A symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 197, + 702, + 205, + 711 + ], + "score": 0.76, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 697, + 328, + 716 + ], + "score": 1.0, + "content": "is called irreducible if and only if", + "type": "text" + }, + { + "bbox": [ + 329, + 702, + 343, + 711 + ], + "score": 0.89, + "content": "G _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 697, + 450, + 716 + ], + "score": 1.0, + "content": "is connected. We say a graph", + "type": "text" + }, + { + "bbox": [ + 451, + 702, + 459, + 711 + ], + "score": 0.81, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 697, + 506, + 716 + ], + "score": 1.0, + "content": "is aperiodic", + "type": "text" + } + ] + }, + { + "bbox": [ + 104, + 710, + 505, + 724 + ], + "spans": [ + { + "bbox": [ + 104, + 710, + 305, + 724 + ], + "score": 1.0, + "content": "if the greatest common divisor of length of all loops in", + "type": "text" + }, + { + "bbox": [ + 306, + 712, + 314, + 721 + ], + "score": 0.83, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 710, + 408, + 724 + ], + "score": 1.0, + "content": "is 1. A symmetric matrix", + "type": "text" + }, + { + "bbox": [ + 408, + 712, + 416, + 720 + ], + "score": 0.81, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 710, + 505, + 724 + ], + "score": 1.0, + "content": "is aperiodic if the graph", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 219, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 121, + 731 + ], + "score": 0.87, + "content": "G _ { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 721, + 164, + 732 + ], + "score": 1.0, + "content": "induced by", + "type": "text" + }, + { + "bbox": [ + 164, + 722, + 172, + 730 + ], + "score": 0.8, + "content": "A", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 721, + 219, + 732 + ], + "score": 1.0, + "content": "is aperiodic.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 105, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 506, + 120 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 232, + 120 + ], + "score": 1.0, + "content": "Proof. By definition, we have", + "type": "text" + }, + { + "bbox": [ + 233, + 106, + 298, + 119 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( X ) = | x _ { 2 } |", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 105, + 506, + 120 + ], + "score": 1.0, + "content": ". On the other hand, direct calculation shows that", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 107, + 119, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 107, + 119, + 260, + 134 + ], + "score": 0.86, + "content": "f _ { l } ( X ) = \\left[ ( W \\mu X _ { 1 } ) ^ { + } \\quad ( W \\lambda X _ { 2 } ) ^ { + } \\right] ^ { \\top }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 119, + 279, + 134 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 280, + 120, + 387, + 133 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) = ( W \\lambda X _ { 2 } ) ^ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 119, + 416, + 134 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 416, + 120, + 489, + 133 + ], + "score": 0.91, + "content": "x ^ { + } : = \\operatorname* { m a x } ( x , 0 )", + "type": "inline_equation" + }, + { + "bbox": [ + 489, + 119, + 506, + 134 + ], + "score": 1.0, + "content": "for", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 132, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 107, + 134, + 132, + 144 + ], + "score": 0.87, + "content": "x \\in \\mathbb { R }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 132, + 162, + 147 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 162, + 133, + 203, + 144 + ], + "score": 0.89, + "content": "W > \\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 132, + 221, + 147 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 222, + 135, + 251, + 145 + ], + "score": 0.89, + "content": "x _ { 2 } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 132, + 290, + 147 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + }, + { + "bbox": [ + 290, + 134, + 384, + 146 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) > d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 132, + 389, + 147 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 494, + 134, + 506, + 145 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 105, + 506, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 157, + 506, + 191 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 505, + 169 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 505, + 169 + ], + "score": 1.0, + "content": "Next, we prove the non-strictness of Theorem 1 in the sense that there exists a situation in which", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 107, + 168, + 506, + 181 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 140, + 180 + ], + "score": 0.9, + "content": "s _ { l } \\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 168, + 234, + 181 + ], + "score": 1.0, + "content": "holds and the distance", + "type": "text" + }, + { + "bbox": [ + 234, + 169, + 250, + 180 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 168, + 348, + 181 + ], + "score": 1.0, + "content": "uniformly decreases by", + "type": "text" + }, + { + "bbox": [ + 348, + 169, + 357, + 180 + ], + "score": 0.84, + "content": "f _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 168, + 435, + 181 + ], + "score": 1.0, + "content": ". Again, we set Set", + "type": "text" + }, + { + "bbox": [ + 435, + 169, + 467, + 179 + ], + "score": 0.85, + "content": "N \\gets 2", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 168, + 470, + 181 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 471, + 169, + 501, + 179 + ], + "score": 0.83, + "content": "C \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 168, + 506, + 181 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 180, + 249, + 191 + ], + "spans": [ + { + "bbox": [ + 106, + 180, + 123, + 191 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 180, + 156, + 190 + ], + "score": 0.89, + "content": "M \\gets 1", + "type": "inline_equation" + }, + { + "bbox": [ + 156, + 180, + 176, + 191 + ], + "score": 1.0, + "content": ". Let", + "type": "text" + }, + { + "bbox": [ + 176, + 180, + 217, + 191 + ], + "score": 0.93, + "content": "\\lambda \\in ( 1 , 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 180, + 249, + 191 + ], + "score": 1.0, + "content": "and set", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 106, + 157, + 506, + 191 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 196, + 423, + 224 + ], + "lines": [ + { + "bbox": [ + 188, + 196, + 423, + 224 + ], + "spans": [ + { + "bbox": [ + 188, + 196, + 423, + 224 + ], + "score": 0.94, + "content": "P \\frac { \\lambda } { 2 } [ \\begin{array} { c c } { 1 } & { - 1 } \\\\ { - 1 } & { 1 } \\end{array} ] , e \\frac { 1 } { \\sqrt { 2 } } [ \\begin{array} { c } { 1 } \\\\ { 1 } \\end{array} ] , U \\{ [ \\begin{array} { c } { x } \\\\ { y } \\end{array} ] | x = y \\}", + "type": "interline_equation", + "image_path": "087c9606e481a961a37b1e1babb22cba1730aec8a623132d768567bf6bb36c81.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 188, + 196, + 423, + 224 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 228, + 494, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 227, + 495, + 242 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 267, + 242 + ], + "score": 1.0, + "content": "Then, we can directly show that 3-tuple", + "type": "text" + }, + { + "bbox": [ + 267, + 228, + 303, + 241 + ], + "score": 0.93, + "content": "( P , e , U )", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 227, + 458, + 242 + ], + "score": 1.0, + "content": "satisfies the Assumptions 1 and 2. Set", + "type": "text" + }, + { + "bbox": [ + 459, + 229, + 491, + 239 + ], + "score": 0.88, + "content": "W 1", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 227, + 495, + 242 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 227, + 495, + 242 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 243, + 421, + 256 + ], + "lines": [ + { + "bbox": [ + 104, + 241, + 421, + 257 + ], + "spans": [ + { + "bbox": [ + 104, + 241, + 206, + 257 + ], + "score": 1.0, + "content": "Proposition 5. We have", + "type": "text" + }, + { + "bbox": [ + 207, + 243, + 242, + 254 + ], + "score": 0.9, + "content": "W \\lambda > 1", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 241, + 261, + 257 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 261, + 243, + 355, + 255 + ], + "score": 0.91, + "content": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) < d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 356, + 241, + 383, + 257 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 383, + 243, + 417, + 254 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 241, + 421, + 257 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8, + "bbox_fs": [ + 104, + 241, + 421, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 267, + 505, + 307 + ], + "lines": [ + { + "bbox": [ + 104, + 267, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 104, + 267, + 197, + 285 + ], + "score": 1.0, + "content": "Proof. First, note that", + "type": "text" + }, + { + "bbox": [ + 198, + 267, + 277, + 285 + ], + "score": 0.9, + "content": "\\begin{array} { r } { e ^ { \\prime } : = \\frac { 1 } { \\sqrt { 2 } } \\left[ { \\begin{array} { l l } { 1 } & { - 1 } \\end{array} } \\right] ^ { \\top } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 267, + 363, + 285 + ], + "score": 1.0, + "content": "is the eigenvector of", + "type": "text" + }, + { + "bbox": [ + 363, + 271, + 372, + 280 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 267, + 427, + 285 + ], + "score": 1.0, + "content": "associated to", + "type": "text" + }, + { + "bbox": [ + 428, + 270, + 483, + 281 + ], + "score": 0.9, + "content": "\\lambda \\colon P e ^ { \\prime } = \\lambda e ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 267, + 506, + 285 + ], + "score": 1.0, + "content": ". For", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 282, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 284, + 205, + 296 + ], + "score": 0.86, + "content": "X = a e + b e ^ { \\prime } \\left( a , b { \\dot { \\omega } } 0 \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 282, + 296, + 298 + ], + "score": 1.0, + "content": ", the distance between", + "type": "text" + }, + { + "bbox": [ + 297, + 284, + 307, + 294 + ], + "score": 0.83, + "content": "X", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 282, + 326, + 298 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 326, + 284, + 339, + 294 + ], + "score": 0.83, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 282, + 350, + 298 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 351, + 284, + 408, + 296 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = | b |", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 282, + 505, + 298 + ], + "score": 1.0, + "content": ". On the other hand, by", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 295, + 222, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 295, + 222, + 307 + ], + "score": 1.0, + "content": "direct computation, we have", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 104, + 267, + 506, + 307 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 204, + 311, + 406, + 357 + ], + "lines": [ + { + "bbox": [ + 204, + 311, + 406, + 357 + ], + "spans": [ + { + "bbox": [ + 204, + 311, + 406, + 357 + ], + "score": 0.94, + "content": "f ( X ) = \\sigma ( P X W ) = { \\left\\{ \\begin{array} { l l } { \\left[ 0 \\quad { \\frac { \\lambda b } { \\sqrt { 2 } } } \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b \\geq 0 { \\mathrm { ) } } , } \\\\ { \\left[ { \\frac { - \\lambda b } { \\sqrt { 2 } } } \\quad 0 \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b < 0 { \\mathrm { ) } } . } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "a159a4cc7dd5ac398b3cff74136fefb345275fef911e7b7089e5ae12ee2d25ab.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 204, + 311, + 406, + 326.3333333333333 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 204, + 326.3333333333333, + 406, + 341.66666666666663 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 204, + 341.66666666666663, + 406, + 356.99999999999994 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 361, + 504, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 361, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 106, + 361, + 241, + 374 + ], + "score": 1.0, + "content": "Therefore, the distance between", + "type": "text" + }, + { + "bbox": [ + 241, + 362, + 265, + 373 + ], + "score": 0.9, + "content": "f ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 361, + 285, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 285, + 362, + 299, + 372 + ], + "score": 0.84, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 361, + 311, + 374 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 312, + 361, + 401, + 374 + ], + "score": 0.93, + "content": "d _ { \\mathcal { M } } ( f ( X ) ) = \\lambda | b | / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 361, + 434, + 374 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 434, + 362, + 464, + 372 + ], + "score": 0.88, + "content": "\\lambda \\ : < \\ : 2", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 361, + 505, + 374 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 107, + 372, + 504, + 385 + ], + "spans": [ + { + "bbox": [ + 107, + 373, + 198, + 385 + ], + "score": 0.92, + "content": "d _ { \\mathcal { M } } ( f ( X ) ) < d _ { \\mathcal { M } } ( X )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 372, + 230, + 385 + ], + "score": 1.0, + "content": "for any", + "type": "text" + }, + { + "bbox": [ + 231, + 373, + 264, + 383 + ], + "score": 0.9, + "content": "X \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 372, + 269, + 385 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 496, + 375, + 504, + 382 + ], + "score": 0.999, + "content": "□", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 106, + 361, + 505, + 385 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 275, + 410 + ], + "score": 1.0, + "content": "We have shown that the non-negativity of", + "type": "text" + }, + { + "bbox": [ + 276, + 399, + 281, + 406 + ], + "score": 0.73, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 281, + 395, + 506, + 410 + ], + "score": 1.0, + "content": "(Assumption 1) is not a redundant condition in Section", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 104, + 406, + 126, + 421 + ], + "spans": [ + { + "bbox": [ + 104, + 406, + 126, + 421 + ], + "score": 1.0, + "content": "6.1.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17.5, + "bbox_fs": [ + 104, + 395, + 506, + 421 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 435, + 297, + 448 + ], + "lines": [ + { + "bbox": [ + 105, + 434, + 298, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 298, + 450 + ], + "score": 1.0, + "content": "F RELATION TO MARKOV PROCESS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 505, + 493 + ], + "lines": [ + { + "bbox": [ + 104, + 459, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 104, + 459, + 505, + 473 + ], + "score": 1.0, + "content": "It is known that any Markov process on finite states converges to a unique distribution (equilibrium)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "if it is irreducible and aperiodic (see, e.g., Norris (1998)). As we see in this section, this theorem is", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 482, + 232, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 232, + 495 + ], + "score": 1.0, + "content": "the special case of Corollary 3.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 104, + 459, + 505, + 495 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 498, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 104, + 497, + 506, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 122, + 512 + ], + "score": 1.0, + "content": "Let", + "type": "text" + }, + { + "bbox": [ + 122, + 498, + 192, + 511 + ], + "score": 0.93, + "content": "S : = \\{ 1 , \\ldots , N \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 497, + 440, + 512 + ], + "score": 1.0, + "content": "be a finite discrete state space. Consider a Markov process on", + "type": "text" + }, + { + "bbox": [ + 441, + 500, + 448, + 509 + ], + "score": 0.82, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 497, + 506, + 512 + ], + "score": 1.0, + "content": "characterized", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 102, + 508, + 507, + 524 + ], + "spans": [ + { + "bbox": [ + 102, + 508, + 240, + 524 + ], + "score": 1.0, + "content": "by a symmetric transition matrix", + "type": "text" + }, + { + "bbox": [ + 240, + 510, + 348, + 523 + ], + "score": 0.92, + "content": "P = ( p _ { i j } ) _ { i , j \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 508, + 388, + 524 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 389, + 510, + 416, + 521 + ], + "score": 0.91, + "content": "P \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 508, + 434, + 524 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 434, + 510, + 468, + 520 + ], + "score": 0.91, + "content": "P \\mathbf { 1 } = \\mathbf { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 508, + 507, + 524 + ], + "score": 1.0, + "content": "where 1", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 104, + 520, + 244, + 534 + ], + "score": 1.0, + "content": "is the all-one vector. We interpret", + "type": "text" + }, + { + "bbox": [ + 244, + 523, + 258, + 533 + ], + "score": 0.86, + "content": "p _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 520, + 423, + 534 + ], + "score": 1.0, + "content": "as the transition probability from a state", + "type": "text" + }, + { + "bbox": [ + 423, + 522, + 428, + 531 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 520, + 439, + 534 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 439, + 522, + 446, + 532 + ], + "score": 0.79, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 446, + 520, + 506, + 534 + ], + "score": 1.0, + "content": ". We associate", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 531, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 107, + 532, + 116, + 542 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 116, + 531, + 172, + 545 + ], + "score": 1.0, + "content": "with a graph", + "type": "text" + }, + { + "bbox": [ + 172, + 532, + 242, + 544 + ], + "score": 0.93, + "content": "G _ { P } = ( V _ { P } , E _ { P } )", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 531, + 257, + 545 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 257, + 532, + 301, + 544 + ], + "score": 0.92, + "content": "V _ { P } = [ N ]", + "type": "inline_equation" + }, + { + "bbox": [ + 301, + 531, + 321, + 545 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 321, + 532, + 370, + 544 + ], + "score": 0.92, + "content": "( i , j ) \\in E _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 531, + 429, + 545 + ], + "score": 1.0, + "content": "if and only if", + "type": "text" + }, + { + "bbox": [ + 429, + 533, + 463, + 544 + ], + "score": 0.92, + "content": "p _ { i j } > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 531, + 495, + 545 + ], + "score": 1.0, + "content": ". Since", + "type": "text" + }, + { + "bbox": [ + 495, + 532, + 504, + 542 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 542, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 221, + 555 + ], + "score": 1.0, + "content": "is symmetric, we can regard", + "type": "text" + }, + { + "bbox": [ + 222, + 543, + 237, + 554 + ], + "score": 0.87, + "content": "G _ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 542, + 383, + 555 + ], + "score": 1.0, + "content": "as an undirected graph. We assume", + "type": "text" + }, + { + "bbox": [ + 383, + 543, + 392, + 553 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 542, + 505, + 555 + ], + "score": 1.0, + "content": "is irreducible and aperiodic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 550, + 507, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 550, + 392, + 569 + ], + "score": 1.0, + "content": "10. Perron – Frobenius’ theorem (see, e.g., Meyer (2000)) implies that", + "type": "text" + }, + { + "bbox": [ + 392, + 554, + 401, + 564 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 550, + 507, + 569 + ], + "score": 1.0, + "content": "satisfy the assumption of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 564, + 210, + 578 + ], + "spans": [ + { + "bbox": [ + 106, + 564, + 174, + 578 + ], + "score": 1.0, + "content": "Corollary 3 with", + "type": "text" + }, + { + "bbox": [ + 175, + 565, + 205, + 575 + ], + "score": 0.9, + "content": "M = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 564, + 210, + 578 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 102, + 497, + 507, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 579, + 505, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 349, + 592 + ], + "score": 1.0, + "content": "Proposition 6 (Perron – Frobenius). Let the eigenvalues of", + "type": "text" + }, + { + "bbox": [ + 349, + 580, + 358, + 590 + ], + "score": 0.75, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 359, + 578, + 372, + 592 + ], + "score": 1.0, + "content": "be", + "type": "text" + }, + { + "bbox": [ + 372, + 580, + 438, + 591 + ], + "score": 0.88, + "content": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 578, + 505, + 592 + ], + "score": 1.0, + "content": ". Then, we have", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 590, + 505, + 603 + ], + "spans": [ + { + "bbox": [ + 107, + 591, + 145, + 602 + ], + "score": 0.67, + "content": "- 1 < \\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 590, + 150, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 150, + 591, + 195, + 603 + ], + "score": 0.66, + "content": "\\lambda _ { N - 1 } < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 590, + 217, + 603 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 217, + 591, + 252, + 602 + ], + "score": 0.91, + "content": "\\lambda _ { N } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 252, + 590, + 399, + 603 + ], + "score": 1.0, + "content": ". Further, there exists unique vector", + "type": "text" + }, + { + "bbox": [ + 399, + 591, + 434, + 601 + ], + "score": 0.91, + "content": "e \\in \\mathbb { R } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 590, + 475, + 603 + ], + "score": 1.0, + "content": "such that", + "type": "text" + }, + { + "bbox": [ + 475, + 591, + 501, + 602 + ], + "score": 0.88, + "content": "e \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 590, + 505, + 603 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 601, + 325, + 615 + ], + "spans": [ + { + "bbox": [ + 107, + 602, + 140, + 614 + ], + "score": 0.91, + "content": "\\| e \\| = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 601, + 162, + 615 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 162, + 604, + 168, + 612 + ], + "score": 0.46, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 601, + 325, + 615 + ], + "score": 1.0, + "content": "is the eigenvector for the eivenvalue 1.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 578, + 505, + 615 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 615, + 503, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 614, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 178, + 630 + ], + "score": 1.0, + "content": "Corollary 5. Let", + "type": "text" + }, + { + "bbox": [ + 179, + 616, + 307, + 628 + ], + "score": 0.9, + "content": "\\begin{array} { r } { \\lambda : = \\operatorname* { m a x } _ { n = 1 , \\ldots , N - 1 } | \\lambda _ { n } | ( < 1 ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 614, + 327, + 630 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 327, + 615, + 434, + 628 + ], + "score": 0.9, + "content": "\\mathcal { M } : = \\{ e \\otimes w \\ | \\ w \\in \\mathbb { R } ^ { C } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 614, + 448, + 630 + ], + "score": 1.0, + "content": ". If", + "type": "text" + }, + { + "bbox": [ + 448, + 617, + 479, + 628 + ], + "score": 0.83, + "content": "s \\lambda < 1", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 614, + 505, + 630 + ], + "score": 1.0, + "content": ", then,", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 627, + 381, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 627, + 186, + 640 + ], + "score": 1.0, + "content": "for any initial value", + "type": "text" + }, + { + "bbox": [ + 186, + 628, + 199, + 639 + ], + "score": 0.8, + "content": "X _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 627, + 203, + 640 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 203, + 628, + 216, + 639 + ], + "score": 0.81, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 216, + 627, + 321, + 640 + ], + "score": 1.0, + "content": "exponentially approaches", + "type": "text" + }, + { + "bbox": [ + 322, + 628, + 334, + 637 + ], + "score": 0.58, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 627, + 347, + 640 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 347, + 629, + 376, + 637 + ], + "score": 0.8, + "content": "l \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 627, + 381, + 640 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 614, + 505, + 640 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 648, + 505, + 694 + ], + "lines": [ + { + "bbox": [ + 104, + 646, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 104, + 646, + 145, + 661 + ], + "score": 1.0, + "content": "If we set", + "type": "text" + }, + { + "bbox": [ + 145, + 648, + 175, + 658 + ], + "score": 0.9, + "content": "C = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 646, + 194, + 661 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 194, + 648, + 228, + 659 + ], + "score": 0.92, + "content": "W _ { l } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 646, + 258, + 661 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 258, + 648, + 290, + 660 + ], + "score": 0.91, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 646, + 438, + 661 + ], + "score": 1.0, + "content": ", then, we can inductively show that", + "type": "text" + }, + { + "bbox": [ + 439, + 648, + 472, + 659 + ], + "score": 0.91, + "content": "X _ { l } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 646, + 505, + 661 + ], + "score": 1.0, + "content": "for any", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 659, + 505, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 131, + 670 + ], + "score": 0.9, + "content": "l \\geq 2", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 659, + 249, + 671 + ], + "score": 1.0, + "content": ". Therefore, we can interpret", + "type": "text" + }, + { + "bbox": [ + 250, + 660, + 262, + 670 + ], + "score": 0.86, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 659, + 331, + 671 + ], + "score": 1.0, + "content": "as a measure on", + "type": "text" + }, + { + "bbox": [ + 332, + 660, + 339, + 669 + ], + "score": 0.79, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 659, + 505, + 671 + ], + "score": 1.0, + "content": ". Suppose further that we take the initial", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 669, + 505, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 131, + 683 + ], + "score": 1.0, + "content": "value", + "type": "text" + }, + { + "bbox": [ + 131, + 671, + 145, + 681 + ], + "score": 0.89, + "content": "X _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 669, + 159, + 683 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 159, + 670, + 195, + 681 + ], + "score": 0.92, + "content": "X _ { 1 } ~ \\geq ~ 0", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 669, + 214, + 683 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 214, + 669, + 259, + 682 + ], + "score": 0.91, + "content": "X _ { 1 } ^ { \\top } \\mathbf { \\hat { 1 } } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 669, + 361, + 683 + ], + "score": 1.0, + "content": "so that we can interpret", + "type": "text" + }, + { + "bbox": [ + 361, + 671, + 375, + 681 + ], + "score": 0.88, + "content": "X _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 375, + 669, + 505, + 683 + ], + "score": 1.0, + "content": "as a probability distribution on", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 680, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 114, + 691 + ], + "score": 0.79, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 680, + 265, + 695 + ], + "score": 1.0, + "content": ". Then, we can inductively show that", + "type": "text" + }, + { + "bbox": [ + 266, + 681, + 298, + 693 + ], + "score": 0.87, + "content": "X _ { l } \\geq 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 680, + 301, + 695 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 302, + 680, + 344, + 694 + ], + "score": 0.89, + "content": "X _ { l } ^ { \\top } \\mathbf { 1 } = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 680, + 366, + 695 + ], + "score": 1.0, + "content": "(i.e.,", + "type": "text" + }, + { + "bbox": [ + 366, + 682, + 379, + 692 + ], + "score": 0.89, + "content": "X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 680, + 505, + 695 + ], + "score": 1.0, + "content": "is a probability distribution on", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 104, + 646, + 505, + 695 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 115, + 93 + ], + "score": 0.63, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 82, + 139, + 95 + ], + "score": 1.0, + "content": "), and", + "type": "text" + }, + { + "bbox": [ + 139, + 82, + 255, + 95 + ], + "score": 0.92, + "content": "X _ { l + 1 } = \\sigma ( P X _ { l } W _ { l } ) = P X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 82, + 284, + 95 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 285, + 83, + 316, + 94 + ], + "score": 0.93, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". In conclusion, the corollary is reduced to the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "fact that if a finite and discrete Markov process is irreducible and aperiodic, any initial probability", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 421, + 118 + ], + "score": 1.0, + "content": "distribution converges exponentially to an equibrilium. In addition, the the rate", + "type": "text" + }, + { + "bbox": [ + 422, + 105, + 429, + 114 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "corresponds to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 250, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 250, + 128 + ], + "score": 1.0, + "content": "mixing time of the Markov process.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "title", + "bbox": [ + 107, + 142, + 362, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 363, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 363, + 157 + ], + "score": 1.0, + "content": "G GCN DEFINED BY NORMALIZED LAPLACIAN", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 104, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 104, + 167, + 209, + 179 + ], + "score": 1.0, + "content": "In Section 4, we defined", + "type": "text" + }, + { + "bbox": [ + 210, + 168, + 219, + 177 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 167, + 399, + 179 + ], + "score": 1.0, + "content": "using the augmented normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 399, + 165, + 409, + 177 + ], + "score": 0.85, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 167, + 424, + 179 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 424, + 165, + 483, + 178 + ], + "score": 0.93, + "content": "P = I _ { N } - \\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 167, + 505, + 179 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 178, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 322, + 189 + ], + "score": 1.0, + "content": "can alternatively use the usual normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 322, + 178, + 332, + 188 + ], + "score": 0.81, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 178, + 495, + 189 + ], + "score": 1.0, + "content": "instead of the augmented one to define", + "type": "text" + }, + { + "bbox": [ + 495, + 178, + 504, + 188 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "and want to apply the theory developed in Section 3.2. We write the normalized Laplacian version", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 118, + 212 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 200, + 187, + 211 + ], + "score": 0.92, + "content": "P _ { \\Delta } : = I _ { N } - \\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 200, + 397, + 212 + ], + "score": 1.0, + "content": ". The only obstacle is that the smallest eigenvalue", + "type": "text" + }, + { + "bbox": [ + 397, + 200, + 408, + 211 + ], + "score": 0.88, + "content": "\\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 200, + 422, + 212 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 423, + 200, + 437, + 211 + ], + "score": 0.89, + "content": "P _ { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "can be equal to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 120, + 222 + ], + "score": 0.78, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 211, + 178, + 223 + ], + "score": 1.0, + "content": ", while that of", + "type": "text" + }, + { + "bbox": [ + 178, + 212, + 187, + 221 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 211, + 274, + 223 + ], + "score": 1.0, + "content": "is strictly larger than", + "type": "text" + }, + { + "bbox": [ + 274, + 212, + 288, + 222 + ], + "score": 0.81, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "(see, Proposition 1). This corresponds to that fact the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 193, + 236 + ], + "score": 1.0, + "content": "largest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 194, + 222, + 203, + 233 + ], + "score": 0.87, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 222, + 368, + 236 + ], + "score": 1.0, + "content": "is strictly smaller than 2, while that for", + "type": "text" + }, + { + "bbox": [ + 369, + 223, + 378, + 233 + ], + "score": 0.8, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 222, + 505, + 236 + ], + "score": 1.0, + "content": "can be 2. It is known that the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 191, + 246 + ], + "score": 1.0, + "content": "largest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 191, + 235, + 201, + 244 + ], + "score": 0.82, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "is 2 if and only if the graph has a non-trivial bipartite connected component", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 180, + 258 + ], + "score": 1.0, + "content": "(see, e.g., Chung", + "type": "text" + }, + { + "bbox": [ + 180, + 245, + 189, + 255 + ], + "score": 0.33, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "Graham (1997)). Therefore, we can develop a theory using the normalized", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 390, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 377, + 268 + ], + "score": 1.0, + "content": "Laplacian instead of the augmented one in parallel for such a graph", + "type": "text" + }, + { + "bbox": [ + 377, + 257, + 386, + 266 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 255, + 390, + 268 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 504, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 504, + 285 + ], + "score": 1.0, + "content": "In Section 5, we characterized the asymptotic behavior of GCN defined by the augmented normal-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "ized Laplacian via its spectral distribution (Lemma 6 of Appendix D). We can derive a similar claim", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "for GCN defined via the normalized Laplacian using the original theorem for the normalized Lapla-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "cian in Chung & Radcliffe (2011) (Theorem 7 therein). The normalized Laplacian version of GCN is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "advantegeous over the one made from the augmented one because we know its spectral distribution", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "score": 1.0, + "content": "for broader range of random graphs. For example, Chung & Radcliffe (2011) proved the conver-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "gence of the spectral distribution of the normalized Laplacian for Chung-Lu’s model (Chung & Lu,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 348, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 348, + 506, + 363 + ], + "score": 1.0, + "content": "2002), which includes power law graphs as a special case (see, Theorem 4 of Chung & Radcliffe", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 360, + 142, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 142, + 374 + ], + "score": 1.0, + "content": "(2011)).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 107, + 387, + 316, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 316, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 316, + 402 + ], + "score": 1.0, + "content": "H DETAILS OF EXPERIMENT SETTINGS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 412, + 260, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 262, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 262, + 424 + ], + "score": 1.0, + "content": "H.1 EXPERIMENT OF SECTION 6.1", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 203, + 445 + ], + "score": 1.0, + "content": "We set the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 204, + 433, + 212, + 443 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 433, + 222, + 445 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 223, + 433, + 260, + 444 + ], + "score": 0.91, + "content": "\\lambda _ { 1 } = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 433, + 277, + 445 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 277, + 433, + 315, + 444 + ], + "score": 0.91, + "content": "\\lambda _ { 2 } = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 433, + 412, + 445 + ], + "score": 1.0, + "content": "and randomly generated", + "type": "text" + }, + { + "bbox": [ + 413, + 433, + 422, + 443 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "until the eigenvector", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 443, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 446, + 113, + 454 + ], + "score": 0.71, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 443, + 167, + 456 + ], + "score": 1.0, + "content": "associated to", + "type": "text" + }, + { + "bbox": [ + 167, + 444, + 178, + 455 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 443, + 466, + 456 + ], + "score": 1.0, + "content": "satisfies the condition of each case described in the main article. We set", + "type": "text" + }, + { + "bbox": [ + 466, + 444, + 504, + 454 + ], + "score": 0.87, + "content": "W = 1 . 2", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 455, + 330, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 293, + 467 + ], + "score": 1.0, + "content": "and used the following values for each case as", + "type": "text" + }, + { + "bbox": [ + 293, + 455, + 302, + 465 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 455, + 320, + 467 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 457, + 326, + 465 + ], + "score": 0.72, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 455, + 330, + 467 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 107, + 478, + 174, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 175, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 175, + 491 + ], + "score": 1.0, + "content": "H.1.1 CASE 1", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 497, + 423, + 526 + ], + "lines": [ + { + "bbox": [ + 188, + 497, + 423, + 526 + ], + "spans": [ + { + "bbox": [ + 188, + 497, + 423, + 526 + ], + "score": 0.91, + "content": "P = { \\left[ 0 . 2 4 9 9 8 1 9 \\quad 0 . 2 4 9 9 8 1 9 \\right] } , \\quad e = { \\left[ \\begin{array} { l } { 0 . 7 0 2 8 3 9 2 } \\\\ { 0 . 2 4 9 9 8 1 9 } \\end{array} \\right] } .", + "type": "interline_equation", + "image_path": "a45a554cc59f5473c1277d0fc3734b6b8f02d7f173def87ef21b7d057d87c7cf.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 497, + 423, + 511.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 188, + 511.5, + 423, + 526.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 533, + 175, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 176, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 176, + 547 + ], + "score": 1.0, + "content": "H.1.2 CASE 2", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 553, + 429, + 582 + ], + "lines": [ + { + "bbox": [ + 180, + 553, + 429, + 582 + ], + "spans": [ + { + "bbox": [ + 180, + 553, + 429, + 582 + ], + "score": 0.92, + "content": "P = \\left[ { \\begin{array} { c c } { 0 . 6 8 9 9 5 7 4 } & { - 0 . 2 4 2 6 8 2 7 } \\\\ { - 0 . 2 4 2 6 8 2 7 } & { 0 . 8 1 0 0 4 2 6 } \\end{array} } \\right] , \\quad e = \\left[ { \\begin{array} { c } { 0 . 6 1 6 3 7 2 3 4 } \\\\ { - 0 . 7 8 7 4 5 4 8 5 } \\end{array} } \\right] .", + "type": "interline_equation", + "image_path": "ea4a91aed77b14fa03a1a13d483c412a7308a19596269770f06c7f39a684c6ac.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 180, + 553, + 429, + 562.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 180, + 562.6666666666666, + 429, + 572.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 180, + 572.3333333333333, + 429, + 581.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 592, + 262, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 262, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 262, + 605 + ], + "score": 1.0, + "content": "H.2 EXPERIMENT OF SECTION 6.2", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 304, + 627 + ], + "score": 1.0, + "content": "We randomly generated an Erdos – R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 305, + 614, + 327, + 625 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 613, + 350, + 627 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 350, + 614, + 396, + 624 + ], + "score": 0.9, + "content": "N = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "and randomly generated a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 136, + 637 + ], + "score": 1.0, + "content": "one-of-", + "type": "text" + }, + { + "bbox": [ + 136, + 624, + 146, + 634 + ], + "score": 0.8, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 624, + 321, + 637 + ], + "score": 1.0, + "content": "hot vector for each node and embed it to a", + "type": "text" + }, + { + "bbox": [ + 322, + 625, + 330, + 634 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 624, + 506, + 637 + ], + "score": 1.0, + "content": "-dimensional vector using a random matrix", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 636, + 504, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 467, + 648 + ], + "score": 1.0, + "content": "whose elements were randomly sampled from the standard Gaussian distribution. Here,", + "type": "text" + }, + { + "bbox": [ + 468, + 636, + 504, + 646 + ], + "score": 0.88, + "content": "K = 1 0", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 644, + 507, + 661 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 123, + 661 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 647, + 158, + 658 + ], + "score": 0.9, + "content": "C = 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 644, + 365, + 661 + ], + "score": 1.0, + "content": ". We treated the resulting single as the input signal", + "type": "text" + }, + { + "bbox": [ + 366, + 646, + 427, + 658 + ], + "score": 0.93, + "content": "X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 644, + 507, + 661 + ], + "score": 1.0, + "content": ". We constructed a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 151, + 671 + ], + "score": 1.0, + "content": "GCN with", + "type": "text" + }, + { + "bbox": [ + 151, + 659, + 185, + 669 + ], + "score": 0.89, + "content": "L = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 658, + 231, + 671 + ], + "score": 1.0, + "content": "layers and", + "type": "text" + }, + { + "bbox": [ + 231, + 659, + 240, + 668 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "channels. All parameters were i.i.d. sampled from the Gaussian", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 409, + 681 + ], + "score": 1.0, + "content": "distribution whose standard deviation is same as the one used in LeCun et al.", + "type": "text" + }, + { + "bbox": [ + 409, + 669, + 444, + 681 + ], + "score": 0.74, + "content": "( 2 0 1 2 ) ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "and multiplied", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 477, + 693 + ], + "score": 1.0, + "content": "a scalar to each weight matrix so that the largest singular value equals to a specified value", + "type": "text" + }, + { + "bbox": [ + 477, + 682, + 483, + 690 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 680, + 505, + 693 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 212, + 704 + ], + "score": 1.0, + "content": "used three configurations", + "type": "text" + }, + { + "bbox": [ + 212, + 691, + 329, + 703 + ], + "score": 0.29, + "content": "( p , s ) = ( 0 . 1 , 0 . 1 ) \\overset { \\cdot } { , } ( 0 . 5 , 1 . \\overset { \\cdot } { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 691, + 384, + 704 + ], + "score": 1.0, + "content": ", (0.5, 10.0).", + "type": "text" + }, + { + "bbox": [ + 384, + 692, + 391, + 701 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "of the generated GCNs are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 700, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 104, + 700, + 477, + 716 + ], + "score": 1.0, + "content": "0.063, 0.197, 0.194, respectively. See Appendix 6.2 for the results of other configurations of", + "type": "text" + }, + { + "bbox": [ + 478, + 702, + 500, + 714 + ], + "score": 0.92, + "content": "( p , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 700, + 505, + 716 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40 + } + ], + "page_idx": 22, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 114, + 721, + 464, + 732 + ], + "lines": [ + { + "bbox": [ + 115, + 719, + 465, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 719, + 465, + 733 + ], + "score": 1.0, + "content": "11This is the default initialization method for weight matrices in Chainer and Chainer Chemistry.", + "type": "text" + } + ] + } + ] + }, + { + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 81, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 115, + 93 + ], + "score": 0.63, + "content": "S", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 82, + 139, + 95 + ], + "score": 1.0, + "content": "), and", + "type": "text" + }, + { + "bbox": [ + 139, + 82, + 255, + 95 + ], + "score": 0.92, + "content": "X _ { l + 1 } = \\sigma ( P X _ { l } W _ { l } ) = P X _ { l }", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 82, + 284, + 95 + ], + "score": 1.0, + "content": "for all", + "type": "text" + }, + { + "bbox": [ + 285, + 83, + 316, + 94 + ], + "score": 0.93, + "content": "l \\in \\mathbb { N } _ { + }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". In conclusion, the corollary is reduced to the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "fact that if a finite and discrete Markov process is irreducible and aperiodic, any initial probability", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 421, + 118 + ], + "score": 1.0, + "content": "distribution converges exponentially to an equibrilium. In addition, the the rate", + "type": "text" + }, + { + "bbox": [ + 422, + 105, + 429, + 114 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 429, + 104, + 505, + 118 + ], + "score": 1.0, + "content": "corresponds to the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 116, + 250, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 116, + 250, + 128 + ], + "score": 1.0, + "content": "mixing time of the Markov process.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 505, + 128 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 142, + 362, + 155 + ], + "lines": [ + { + "bbox": [ + 105, + 141, + 363, + 157 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 363, + 157 + ], + "score": 1.0, + "content": "G GCN DEFINED BY NORMALIZED LAPLACIAN", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 165, + 505, + 268 + ], + "lines": [ + { + "bbox": [ + 104, + 165, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 104, + 167, + 209, + 179 + ], + "score": 1.0, + "content": "In Section 4, we defined", + "type": "text" + }, + { + "bbox": [ + 210, + 168, + 219, + 177 + ], + "score": 0.81, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 167, + 399, + 179 + ], + "score": 1.0, + "content": "using the augmented normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 399, + 165, + 409, + 177 + ], + "score": 0.85, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 167, + 424, + 179 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 424, + 165, + 483, + 178 + ], + "score": 0.93, + "content": "P = I _ { N } - \\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 167, + 505, + 179 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 178, + 504, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 178, + 322, + 189 + ], + "score": 1.0, + "content": "can alternatively use the usual normalized Laplacian", + "type": "text" + }, + { + "bbox": [ + 322, + 178, + 332, + 188 + ], + "score": 0.81, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 178, + 495, + 189 + ], + "score": 1.0, + "content": "instead of the augmented one to define", + "type": "text" + }, + { + "bbox": [ + 495, + 178, + 504, + 188 + ], + "score": 0.8, + "content": "P", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 106, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "and want to apply the theory developed in Section 3.2. We write the normalized Laplacian version", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 505, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 118, + 212 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 118, + 200, + 187, + 211 + ], + "score": 0.92, + "content": "P _ { \\Delta } : = I _ { N } - \\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 200, + 397, + 212 + ], + "score": 1.0, + "content": ". The only obstacle is that the smallest eigenvalue", + "type": "text" + }, + { + "bbox": [ + 397, + 200, + 408, + 211 + ], + "score": 0.88, + "content": "\\lambda _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 200, + 422, + 212 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 423, + 200, + 437, + 211 + ], + "score": 0.89, + "content": "P _ { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 200, + 505, + 212 + ], + "score": 1.0, + "content": "can be equal to", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 211, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 212, + 120, + 222 + ], + "score": 0.78, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 121, + 211, + 178, + 223 + ], + "score": 1.0, + "content": ", while that of", + "type": "text" + }, + { + "bbox": [ + 178, + 212, + 187, + 221 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 187, + 211, + 274, + 223 + ], + "score": 1.0, + "content": "is strictly larger than", + "type": "text" + }, + { + "bbox": [ + 274, + 212, + 288, + 222 + ], + "score": 0.81, + "content": "- 1", + "type": "inline_equation" + }, + { + "bbox": [ + 288, + 211, + 505, + 223 + ], + "score": 1.0, + "content": "(see, Proposition 1). This corresponds to that fact the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 193, + 236 + ], + "score": 1.0, + "content": "largest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 194, + 222, + 203, + 233 + ], + "score": 0.87, + "content": "\\tilde { \\Delta }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 222, + 368, + 236 + ], + "score": 1.0, + "content": "is strictly smaller than 2, while that for", + "type": "text" + }, + { + "bbox": [ + 369, + 223, + 378, + 233 + ], + "score": 0.8, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 222, + 505, + 236 + ], + "score": 1.0, + "content": "can be 2. It is known that the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 191, + 246 + ], + "score": 1.0, + "content": "largest eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 191, + 235, + 201, + 244 + ], + "score": 0.82, + "content": "\\Delta", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "is 2 if and only if the graph has a non-trivial bipartite connected component", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 180, + 258 + ], + "score": 1.0, + "content": "(see, e.g., Chung", + "type": "text" + }, + { + "bbox": [ + 180, + 245, + 189, + 255 + ], + "score": 0.33, + "content": "\\&", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "Graham (1997)). Therefore, we can develop a theory using the normalized", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 255, + 390, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 377, + 268 + ], + "score": 1.0, + "content": "Laplacian instead of the augmented one in parallel for such a graph", + "type": "text" + }, + { + "bbox": [ + 377, + 257, + 386, + 266 + ], + "score": 0.79, + "content": "G", + "type": "inline_equation" + }, + { + "bbox": [ + 387, + 255, + 390, + 268 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 165, + 506, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 273, + 504, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 504, + 285 + ], + "score": 1.0, + "content": "In Section 5, we characterized the asymptotic behavior of GCN defined by the augmented normal-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 284, + 505, + 296 + ], + "score": 1.0, + "content": "ized Laplacian via its spectral distribution (Lemma 6 of Appendix D). We can derive a similar claim", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 308 + ], + "score": 1.0, + "content": "for GCN defined via the normalized Laplacian using the original theorem for the normalized Lapla-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 306, + 505, + 319 + ], + "score": 1.0, + "content": "cian in Chung & Radcliffe (2011) (Theorem 7 therein). The normalized Laplacian version of GCN is", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 505, + 329 + ], + "score": 1.0, + "content": "advantegeous over the one made from the augmented one because we know its spectral distribution", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 342 + ], + "score": 1.0, + "content": "for broader range of random graphs. For example, Chung & Radcliffe (2011) proved the conver-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 104, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "gence of the spectral distribution of the normalized Laplacian for Chung-Lu’s model (Chung & Lu,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 348, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 104, + 348, + 506, + 363 + ], + "score": 1.0, + "content": "2002), which includes power law graphs as a special case (see, Theorem 4 of Chung & Radcliffe", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 360, + 142, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 142, + 374 + ], + "score": 1.0, + "content": "(2011)).", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 273, + 506, + 374 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 387, + 316, + 401 + ], + "lines": [ + { + "bbox": [ + 105, + 387, + 316, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 316, + 402 + ], + "score": 1.0, + "content": "H DETAILS OF EXPERIMENT SETTINGS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "title", + "bbox": [ + 108, + 412, + 260, + 423 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 262, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 262, + 424 + ], + "score": 1.0, + "content": "H.1 EXPERIMENT OF SECTION 6.1", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 203, + 445 + ], + "score": 1.0, + "content": "We set the eigenvalue of", + "type": "text" + }, + { + "bbox": [ + 204, + 433, + 212, + 443 + ], + "score": 0.84, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 433, + 222, + 445 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 223, + 433, + 260, + 444 + ], + "score": 0.91, + "content": "\\lambda _ { 1 } = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 433, + 277, + 445 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 277, + 433, + 315, + 444 + ], + "score": 0.91, + "content": "\\lambda _ { 2 } = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 433, + 412, + 445 + ], + "score": 1.0, + "content": "and randomly generated", + "type": "text" + }, + { + "bbox": [ + 413, + 433, + 422, + 443 + ], + "score": 0.82, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 422, + 433, + 505, + 445 + ], + "score": 1.0, + "content": "until the eigenvector", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 107, + 443, + 504, + 456 + ], + "spans": [ + { + "bbox": [ + 107, + 446, + 113, + 454 + ], + "score": 0.71, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 443, + 167, + 456 + ], + "score": 1.0, + "content": "associated to", + "type": "text" + }, + { + "bbox": [ + 167, + 444, + 178, + 455 + ], + "score": 0.88, + "content": "\\lambda _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 443, + 466, + 456 + ], + "score": 1.0, + "content": "satisfies the condition of each case described in the main article. We set", + "type": "text" + }, + { + "bbox": [ + 466, + 444, + 504, + 454 + ], + "score": 0.87, + "content": "W = 1 . 2", + "type": "inline_equation" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 455, + 330, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 293, + 467 + ], + "score": 1.0, + "content": "and used the following values for each case as", + "type": "text" + }, + { + "bbox": [ + 293, + 455, + 302, + 465 + ], + "score": 0.83, + "content": "P", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 455, + 320, + 467 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 320, + 457, + 326, + 465 + ], + "score": 0.72, + "content": "e", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 455, + 330, + 467 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 433, + 505, + 467 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 478, + 174, + 489 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 175, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 175, + 491 + ], + "score": 1.0, + "content": "H.1.1 CASE 1", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "interline_equation", + "bbox": [ + 188, + 497, + 423, + 526 + ], + "lines": [ + { + "bbox": [ + 188, + 497, + 423, + 526 + ], + "spans": [ + { + "bbox": [ + 188, + 497, + 423, + 526 + ], + "score": 0.91, + "content": "P = { \\left[ 0 . 2 4 9 9 8 1 9 \\quad 0 . 2 4 9 9 8 1 9 \\right] } , \\quad e = { \\left[ \\begin{array} { l } { 0 . 7 0 2 8 3 9 2 } \\\\ { 0 . 2 4 9 9 8 1 9 } \\end{array} \\right] } .", + "type": "interline_equation", + "image_path": "a45a554cc59f5473c1277d0fc3734b6b8f02d7f173def87ef21b7d057d87c7cf.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 188, + 497, + 423, + 511.5 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 188, + 511.5, + 423, + 526.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 533, + 175, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 532, + 176, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 176, + 547 + ], + "score": 1.0, + "content": "H.1.2 CASE 2", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "interline_equation", + "bbox": [ + 180, + 553, + 429, + 582 + ], + "lines": [ + { + "bbox": [ + 180, + 553, + 429, + 582 + ], + "spans": [ + { + "bbox": [ + 180, + 553, + 429, + 582 + ], + "score": 0.92, + "content": "P = \\left[ { \\begin{array} { c c } { 0 . 6 8 9 9 5 7 4 } & { - 0 . 2 4 2 6 8 2 7 } \\\\ { - 0 . 2 4 2 6 8 2 7 } & { 0 . 8 1 0 0 4 2 6 } \\end{array} } \\right] , \\quad e = \\left[ { \\begin{array} { c } { 0 . 6 1 6 3 7 2 3 4 } \\\\ { - 0 . 7 8 7 4 5 4 8 5 } \\end{array} } \\right] .", + "type": "interline_equation", + "image_path": "ea4a91aed77b14fa03a1a13d483c412a7308a19596269770f06c7f39a684c6ac.jpg" + } + ] + } + ], + "index": 33, + "virtual_lines": [ + { + "bbox": [ + 180, + 553, + 429, + 562.6666666666666 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 180, + 562.6666666666666, + 429, + 572.3333333333333 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 180, + 572.3333333333333, + 429, + 581.9999999999999 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "title", + "bbox": [ + 108, + 592, + 262, + 604 + ], + "lines": [ + { + "bbox": [ + 105, + 592, + 262, + 605 + ], + "spans": [ + { + "bbox": [ + 105, + 592, + 262, + 605 + ], + "score": 1.0, + "content": "H.2 EXPERIMENT OF SECTION 6.2", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 613, + 505, + 714 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 506, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 304, + 627 + ], + "score": 1.0, + "content": "We randomly generated an Erdos – R ˝ enyi graph ´", + "type": "text" + }, + { + "bbox": [ + 305, + 614, + 327, + 625 + ], + "score": 0.9, + "content": "G _ { N , p }", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 613, + 350, + 627 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 350, + 614, + 396, + 624 + ], + "score": 0.9, + "content": "N = 1 0 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 613, + 506, + 627 + ], + "score": 1.0, + "content": "and randomly generated a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 624, + 506, + 637 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 136, + 637 + ], + "score": 1.0, + "content": "one-of-", + "type": "text" + }, + { + "bbox": [ + 136, + 624, + 146, + 634 + ], + "score": 0.8, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 624, + 321, + 637 + ], + "score": 1.0, + "content": "hot vector for each node and embed it to a", + "type": "text" + }, + { + "bbox": [ + 322, + 625, + 330, + 634 + ], + "score": 0.82, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 624, + 506, + 637 + ], + "score": 1.0, + "content": "-dimensional vector using a random matrix", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 636, + 504, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 636, + 467, + 648 + ], + "score": 1.0, + "content": "whose elements were randomly sampled from the standard Gaussian distribution. Here,", + "type": "text" + }, + { + "bbox": [ + 468, + 636, + 504, + 646 + ], + "score": 0.88, + "content": "K = 1 0", + "type": "inline_equation" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 644, + 507, + 661 + ], + "spans": [ + { + "bbox": [ + 104, + 644, + 123, + 661 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 647, + 158, + 658 + ], + "score": 0.9, + "content": "C = 3 2", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 644, + 365, + 661 + ], + "score": 1.0, + "content": ". We treated the resulting single as the input signal", + "type": "text" + }, + { + "bbox": [ + 366, + 646, + 427, + 658 + ], + "score": 0.93, + "content": "X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 644, + 507, + 661 + ], + "score": 1.0, + "content": ". We constructed a", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 658, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 658, + 151, + 671 + ], + "score": 1.0, + "content": "GCN with", + "type": "text" + }, + { + "bbox": [ + 151, + 659, + 185, + 669 + ], + "score": 0.89, + "content": "L = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 658, + 231, + 671 + ], + "score": 1.0, + "content": "layers and", + "type": "text" + }, + { + "bbox": [ + 231, + 659, + 240, + 668 + ], + "score": 0.79, + "content": "C", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 658, + 506, + 671 + ], + "score": 1.0, + "content": "channels. All parameters were i.i.d. sampled from the Gaussian", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 409, + 681 + ], + "score": 1.0, + "content": "distribution whose standard deviation is same as the one used in LeCun et al.", + "type": "text" + }, + { + "bbox": [ + 409, + 669, + 444, + 681 + ], + "score": 0.74, + "content": "( 2 0 1 2 ) ^ { 1 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 444, + 669, + 505, + 681 + ], + "score": 1.0, + "content": "and multiplied", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 104, + 680, + 505, + 693 + ], + "spans": [ + { + "bbox": [ + 104, + 680, + 477, + 693 + ], + "score": 1.0, + "content": "a scalar to each weight matrix so that the largest singular value equals to a specified value", + "type": "text" + }, + { + "bbox": [ + 477, + 682, + 483, + 690 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 680, + 505, + 693 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 691, + 505, + 704 + ], + "spans": [ + { + "bbox": [ + 105, + 691, + 212, + 704 + ], + "score": 1.0, + "content": "used three configurations", + "type": "text" + }, + { + "bbox": [ + 212, + 691, + 329, + 703 + ], + "score": 0.29, + "content": "( p , s ) = ( 0 . 1 , 0 . 1 ) \\overset { \\cdot } { , } ( 0 . 5 , 1 . \\overset { \\cdot } { 0 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 691, + 384, + 704 + ], + "score": 1.0, + "content": ", (0.5, 10.0).", + "type": "text" + }, + { + "bbox": [ + 384, + 692, + 391, + 701 + ], + "score": 0.7, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 691, + 505, + 704 + ], + "score": 1.0, + "content": "of the generated GCNs are", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 700, + 505, + 716 + ], + "spans": [ + { + "bbox": [ + 104, + 700, + 477, + 716 + ], + "score": 1.0, + "content": "0.063, 0.197, 0.194, respectively. See Appendix 6.2 for the results of other configurations of", + "type": "text" + }, + { + "bbox": [ + 478, + 702, + 500, + 714 + ], + "score": 0.92, + "content": "( p , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 700, + 505, + 716 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 40, + "bbox_fs": [ + 104, + 613, + 507, + 716 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 152, + 113, + 458, + 171 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 90, + 503, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 88, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 104, + 88, + 293, + 104 + ], + "score": 1.0, + "content": "Table 1: Dataset specifications. The threshold", + "type": "text" + }, + { + "bbox": [ + 293, + 90, + 311, + 101 + ], + "score": 0.89, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 88, + 505, + 104 + ], + "score": 1.0, + "content": "in the table indicates the upper bound of Corol-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 100, + 136, + 115 + ], + "spans": [ + { + "bbox": [ + 104, + 100, + 136, + 115 + ], + "score": 1.0, + "content": "lary 2.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 152, + 113, + 458, + 171 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 113, + 458, + 171 + ], + "spans": [ + { + "bbox": [ + 152, + 113, + 458, + 171 + ], + "score": 0.979, + "html": "
#Node#Edge#ClassChance RateThreshold λ-1
Cora27085429630.2%1+3.62 × 10-3
CiteSeer33124732721.1%1 + 1.25 × 10-3
PubMed1971744338339.9%1 + 9.57 × 10-3
", + "type": "table", + "image_path": "c6d48b13dcfd9e931066c5b04d7100274a1d08a14a6d14ae91c63888e263980c.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 152, + 113, + 458, + 132.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 152, + 132.33333333333334, + 458, + 151.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 152, + 151.66666666666669, + 458, + 171.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "table", + "bbox": [ + 156, + 216, + 454, + 284 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 193, + 505, + 215 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 401, + 207 + ], + "score": 1.0, + "content": "Table 2: Dataset specifications for noisy citation networks. The threshold", + "type": "text" + }, + { + "bbox": [ + 401, + 193, + 419, + 204 + ], + "score": 0.89, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "in the table indicates", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 204, + 235, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 235, + 217 + ], + "score": 1.0, + "content": "the upper bound of Corollary 2.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 156, + 216, + 454, + 284 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 216, + 454, + 284 + ], + "spans": [ + { + "bbox": [ + 156, + 216, + 454, + 284 + ], + "score": 0.979, + "html": "
Original Dataset#Edge AddedThreshold λ-1
Noisy Cora 2500Cora24951.11
Noisy ( Cora 5000Cora49881.15
Noisy CiteSeerCiteSeer49911.13
Noisy PubMedPubMed249931.17
", + "type": "table", + "image_path": "d8e780ecbc0fa4e44cbb222c9e07cff879326aa7fcb26c3f08983e08f637de59.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 156, + 216, + 454, + 238.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 156, + 238.66666666666666, + 454, + 261.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 156, + 261.3333333333333, + 454, + 284.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "title", + "bbox": [ + 107, + 306, + 261, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 263, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 263, + 318 + ], + "score": 1.0, + "content": "H.3 EXPERIMENT OF SECTION 6.3", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 327, + 182, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 183, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 183, + 340 + ], + "score": 1.0, + "content": "H.3.1 DATASET", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "We used the Cora (McCallum et al., 2000; Sen et al., 2008), CiteSeer (Giles et al., 1998; Sen et al.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "2008), and PubMed(Sen et al., 2008) datasets for experiments. We obtained the preprocessed dataset", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 282, + 383 + ], + "score": 1.0, + "content": "from the code repository of Kipf & Welling", + "type": "text" + }, + { + "bbox": [ + 283, + 369, + 317, + 381 + ], + "score": 0.32, + "content": "( 2 0 1 7 ) ^ { \\hat { 1 } 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 369, + 506, + 383 + ], + "score": 1.0, + "content": ". Table 1 summarizes specifications of datasets", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 381, + 325, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 325, + 393 + ], + "score": 1.0, + "content": "and their noisy version (explained in the next section).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "The Cora dataset is a citation network dataset consisting of 2708 papers and 5429 links. Each paper", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "score": 1.0, + "content": "is represented as the occurence of 1433 unique words and is associated to one of 7 genres (Case", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 420, + 504, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 504, + 431 + ], + "score": 1.0, + "content": "Based, Genetic Algorithms, Neural Networks, Probabilistic Methods, Reinforcement Learning, Rule", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "Learning, Theory). The graph made from the citation links has 78 connected components and the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 455, + 454 + ], + "score": 1.0, + "content": "smallest positive eigenvalue of the augmented Normalized Laplacian is approximately", + "type": "text" + }, + { + "bbox": [ + 455, + 442, + 505, + 452 + ], + "score": 0.89, + "content": "\\tilde { \\mu } = 3 . 6 2 \\times", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 128, + 463 + ], + "score": 0.89, + "content": "1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 451, + 312, + 466 + ], + "score": 1.0, + "content": ". Therefore, the upper bound of Theorem 2 is", + "type": "text" + }, + { + "bbox": [ + 312, + 452, + 467, + 464 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 } = ( \\bar { 1 - \\mu } ) ^ { - 1 } \\approx \\bar { 1 } + 3 . 6 2 \\times \\bar { 1 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 451, + 507, + 466 + ], + "score": 1.0, + "content": ". 818 out", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 463, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 506, + 476 + ], + "score": 1.0, + "content": "of 2708 samples are labelled as “Probabilistic Methods”, which is the largest proportion. Therefore,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 474, + 262, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 178, + 487 + ], + "score": 1.0, + "content": "the chance rate is", + "type": "text" + }, + { + "bbox": [ + 178, + 474, + 258, + 486 + ], + "score": 0.88, + "content": "8 1 8 / 2 7 0 8 = 3 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 474, + 262, + 487 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "score": 1.0, + "content": "The CiteSeer dataset is a citation network dataset consisting of 3312 papers and 4732 links. Each", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "paper is represented as the occurence of 3703 unique words and is associated to one of 6 genres", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "(Agents, AI, DB, IR, ML, HCI). The graph made from the citation links has 438 connected compo-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 524, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 504, + 537 + ], + "score": 1.0, + "content": "nents and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 533, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 175, + 547 + ], + "score": 0.92, + "content": "\\tilde { \\mu } = 1 . 2 5 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 533, + 354, + 548 + ], + "score": 1.0, + "content": ". Therefore, the upper bound of Theorem 2 is", + "type": "text" + }, + { + "bbox": [ + 354, + 534, + 501, + 547 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 } = ( 1 - \\dot { \\tilde { \\mu } } ) ^ { - 1 } \\approx 1 + \\dot { 1 } . 2 5 \\times 1 0 ^ { - \\dot { 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 533, + 505, + 548 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "score": 1.0, + "content": "701 out of 2708 samples are labelled as “IR”, which is the largest proportion. Therefore, the chance", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 217, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 134, + 569 + ], + "score": 1.0, + "content": "rate is", + "type": "text" + }, + { + "bbox": [ + 135, + 557, + 214, + 569 + ], + "score": 0.87, + "content": "7 0 1 / 3 3 1 2 = \\hat { 2 } 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 557, + 217, + 569 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "The PubMed dataset is a citation network dataset consisting of 19717 papers and 44338 links. Each", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "paper is represented as the occurence of 500 unique words and is associated to one of 3 genres", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 468, + 608 + ], + "score": 1.0, + "content": "(“Diabetes Mellitus, Experimental”, “Diabetes Mellitus Type 1”, “Diabetes Mellitus Type", + "type": "text" + }, + { + "bbox": [ + 468, + 596, + 479, + 606 + ], + "score": 0.5, + "content": "2 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "). The", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "graph made from the citation links has 438 connected components and the smallest positive eigen-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 366, + 630 + ], + "score": 1.0, + "content": "value of the augmented Normalized Laplacian is approximately", + "type": "text" + }, + { + "bbox": [ + 366, + 617, + 440, + 629 + ], + "score": 0.9, + "content": "\\tilde { \\mu } = 9 . 4 8 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 617, + 506, + 630 + ], + "score": 1.0, + "content": ". Therefore, the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 627, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 627, + 224, + 642 + ], + "score": 1.0, + "content": "upper bound of Theorem 2 is", + "type": "text" + }, + { + "bbox": [ + 225, + 628, + 376, + 641 + ], + "score": 0.93, + "content": "\\lambda ^ { - 1 } = ( \\bar { 1 ^ { - } } \\tilde { \\mu } ) ^ { - 1 } \\approx \\bar { 1 ^ { + } } 9 . 5 7 \\times \\bar { 1 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 627, + 506, + 642 + ], + "score": 1.0, + "content": ". 7875 out of 19717 samples are", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 252, + 653 + ], + "score": 1.0, + "content": "labelled as “Diabetes Mellitus Type", + "type": "text" + }, + { + "bbox": [ + 253, + 641, + 263, + 650 + ], + "score": 0.7, + "content": "2 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 639, + 506, + 653 + ], + "score": 1.0, + "content": ", which is the largest proportion. Therefore, the chance rate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 650, + 209, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 116, + 663 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 651, + 206, + 663 + ], + "score": 0.85, + "content": "7 8 7 5 / 1 9 7 1 7 = 3 9 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 650, + 209, + 663 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 107, + 676, + 267, + 688 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 268, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 268, + 690 + ], + "score": 1.0, + "content": "H.3.2 NOISY CITATION NETWORKS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 697, + 375, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 696, + 375, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 696, + 375, + 709 + ], + "score": 1.0, + "content": "We summarize the properties of noisy citation networks in Table 2.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40 + } + ], + "page_idx": 23, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 117, + 721, + 224, + 732 + ], + "lines": [ + { + "bbox": [ + 115, + 718, + 226, + 735 + ], + "spans": [ + { + "bbox": [ + 115, + 718, + 226, + 735 + ], + "score": 1.0, + "content": "12https://github.com/tkipf/gcn", + "type": "text" + } + ] + } + ] + }, + { + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 152, + 113, + 458, + 171 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 90, + 503, + 112 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 88, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 104, + 88, + 293, + 104 + ], + "score": 1.0, + "content": "Table 1: Dataset specifications. The threshold", + "type": "text" + }, + { + "bbox": [ + 293, + 90, + 311, + 101 + ], + "score": 0.89, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 88, + 505, + 104 + ], + "score": 1.0, + "content": "in the table indicates the upper bound of Corol-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 100, + 136, + 115 + ], + "spans": [ + { + "bbox": [ + 104, + 100, + 136, + 115 + ], + "score": 1.0, + "content": "lary 2.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 152, + 113, + 458, + 171 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 113, + 458, + 171 + ], + "spans": [ + { + "bbox": [ + 152, + 113, + 458, + 171 + ], + "score": 0.979, + "html": "
#Node#Edge#ClassChance RateThreshold λ-1
Cora27085429630.2%1+3.62 × 10-3
CiteSeer33124732721.1%1 + 1.25 × 10-3
PubMed1971744338339.9%1 + 9.57 × 10-3
", + "type": "table", + "image_path": "c6d48b13dcfd9e931066c5b04d7100274a1d08a14a6d14ae91c63888e263980c.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 152, + 113, + 458, + 132.33333333333334 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 152, + 132.33333333333334, + 458, + 151.66666666666669 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 152, + 151.66666666666669, + 458, + 171.00000000000003 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "table", + "bbox": [ + 156, + 216, + 454, + 284 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 193, + 505, + 215 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 192, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 401, + 207 + ], + "score": 1.0, + "content": "Table 2: Dataset specifications for noisy citation networks. The threshold", + "type": "text" + }, + { + "bbox": [ + 401, + 193, + 419, + 204 + ], + "score": 0.89, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 192, + 506, + 207 + ], + "score": 1.0, + "content": "in the table indicates", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 204, + 235, + 217 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 235, + 217 + ], + "score": 1.0, + "content": "the upper bound of Corollary 2.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "table_body", + "bbox": [ + 156, + 216, + 454, + 284 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 156, + 216, + 454, + 284 + ], + "spans": [ + { + "bbox": [ + 156, + 216, + 454, + 284 + ], + "score": 0.979, + "html": "
Original Dataset#Edge AddedThreshold λ-1
Noisy Cora 2500Cora24951.11
Noisy ( Cora 5000Cora49881.15
Noisy CiteSeerCiteSeer49911.13
Noisy PubMedPubMed249931.17
", + "type": "table", + "image_path": "d8e780ecbc0fa4e44cbb222c9e07cff879326aa7fcb26c3f08983e08f637de59.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 156, + 216, + 454, + 238.66666666666666 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 156, + 238.66666666666666, + 454, + 261.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 156, + 261.3333333333333, + 454, + 284.0 + ], + "spans": [], + "index": 9 + } + ] + } + ], + "index": 6.75 + }, + { + "type": "title", + "bbox": [ + 107, + 306, + 261, + 317 + ], + "lines": [ + { + "bbox": [ + 105, + 305, + 263, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 305, + 263, + 318 + ], + "score": 1.0, + "content": "H.3 EXPERIMENT OF SECTION 6.3", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 107, + 327, + 182, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 183, + 340 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 183, + 340 + ], + "score": 1.0, + "content": "H.3.1 DATASET", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 504, + 392 + ], + "lines": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "We used the Cora (McCallum et al., 2000; Sen et al., 2008), CiteSeer (Giles et al., 1998; Sen et al.,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "2008), and PubMed(Sen et al., 2008) datasets for experiments. We obtained the preprocessed dataset", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 369, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 282, + 383 + ], + "score": 1.0, + "content": "from the code repository of Kipf & Welling", + "type": "text" + }, + { + "bbox": [ + 283, + 369, + 317, + 381 + ], + "score": 0.32, + "content": "( 2 0 1 7 ) ^ { \\hat { 1 } 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 369, + 506, + 383 + ], + "score": 1.0, + "content": ". Table 1 summarizes specifications of datasets", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 381, + 325, + 393 + ], + "spans": [ + { + "bbox": [ + 106, + 381, + 325, + 393 + ], + "score": 1.0, + "content": "and their noisy version (explained in the next section).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 347, + 506, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 486 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 411 + ], + "score": 1.0, + "content": "The Cora dataset is a citation network dataset consisting of 2708 papers and 5429 links. Each paper", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 506, + 421 + ], + "score": 1.0, + "content": "is represented as the occurence of 1433 unique words and is associated to one of 7 genres (Case", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 420, + 504, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 420, + 504, + 431 + ], + "score": 1.0, + "content": "Based, Genetic Algorithms, Neural Networks, Probabilistic Methods, Reinforcement Learning, Rule", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 431, + 505, + 443 + ], + "score": 1.0, + "content": "Learning, Theory). The graph made from the citation links has 78 connected components and the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 442, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 455, + 454 + ], + "score": 1.0, + "content": "smallest positive eigenvalue of the augmented Normalized Laplacian is approximately", + "type": "text" + }, + { + "bbox": [ + 455, + 442, + 505, + 452 + ], + "score": 0.89, + "content": "\\tilde { \\mu } = 3 . 6 2 \\times", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 128, + 463 + ], + "score": 0.89, + "content": "1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 451, + 312, + 466 + ], + "score": 1.0, + "content": ". Therefore, the upper bound of Theorem 2 is", + "type": "text" + }, + { + "bbox": [ + 312, + 452, + 467, + 464 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 } = ( \\bar { 1 - \\mu } ) ^ { - 1 } \\approx \\bar { 1 } + 3 . 6 2 \\times \\bar { 1 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 451, + 507, + 466 + ], + "score": 1.0, + "content": ". 818 out", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 463, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 506, + 476 + ], + "score": 1.0, + "content": "of 2708 samples are labelled as “Probabilistic Methods”, which is the largest proportion. Therefore,", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 474, + 262, + 487 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 178, + 487 + ], + "score": 1.0, + "content": "the chance rate is", + "type": "text" + }, + { + "bbox": [ + 178, + 474, + 258, + 486 + ], + "score": 0.88, + "content": "8 1 8 / 2 7 0 8 = 3 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 474, + 262, + 487 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 396, + 507, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 491, + 505, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 506, + 504 + ], + "score": 1.0, + "content": "The CiteSeer dataset is a citation network dataset consisting of 3312 papers and 4732 links. Each", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "paper is represented as the occurence of 3703 unique words and is associated to one of 6 genres", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "(Agents, AI, DB, IR, ML, HCI). The graph made from the citation links has 438 connected compo-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 524, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 504, + 537 + ], + "score": 1.0, + "content": "nents and the smallest positive eigenvalue of the augmented Normalized Laplacian is approximately", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 533, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 535, + 175, + 547 + ], + "score": 0.92, + "content": "\\tilde { \\mu } = 1 . 2 5 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 175, + 533, + 354, + 548 + ], + "score": 1.0, + "content": ". Therefore, the upper bound of Theorem 2 is", + "type": "text" + }, + { + "bbox": [ + 354, + 534, + 501, + 547 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 } = ( 1 - \\dot { \\tilde { \\mu } } ) ^ { - 1 } \\approx 1 + \\dot { 1 } . 2 5 \\times 1 0 ^ { - \\dot { 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 533, + 505, + 548 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 506, + 559 + ], + "score": 1.0, + "content": "701 out of 2708 samples are labelled as “IR”, which is the largest proportion. Therefore, the chance", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 557, + 217, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 557, + 134, + 569 + ], + "score": 1.0, + "content": "rate is", + "type": "text" + }, + { + "bbox": [ + 135, + 557, + 214, + 569 + ], + "score": 0.87, + "content": "7 0 1 / 3 3 1 2 = \\hat { 2 } 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 214, + 557, + 217, + 569 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 491, + 506, + 569 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 573, + 505, + 662 + ], + "lines": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 505, + 586 + ], + "score": 1.0, + "content": "The PubMed dataset is a citation network dataset consisting of 19717 papers and 44338 links. Each", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 585, + 506, + 598 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 506, + 598 + ], + "score": 1.0, + "content": "paper is represented as the occurence of 500 unique words and is associated to one of 3 genres", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 596, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 106, + 596, + 468, + 608 + ], + "score": 1.0, + "content": "(“Diabetes Mellitus, Experimental”, “Diabetes Mellitus Type 1”, “Diabetes Mellitus Type", + "type": "text" + }, + { + "bbox": [ + 468, + 596, + 479, + 606 + ], + "score": 0.5, + "content": "2 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 596, + 505, + 608 + ], + "score": 1.0, + "content": "). The", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 606, + 506, + 621 + ], + "spans": [ + { + "bbox": [ + 104, + 606, + 506, + 621 + ], + "score": 1.0, + "content": "graph made from the citation links has 438 connected components and the smallest positive eigen-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 617, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 105, + 617, + 366, + 630 + ], + "score": 1.0, + "content": "value of the augmented Normalized Laplacian is approximately", + "type": "text" + }, + { + "bbox": [ + 366, + 617, + 440, + 629 + ], + "score": 0.9, + "content": "\\tilde { \\mu } = 9 . 4 8 \\times 1 0 ^ { - 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 617, + 506, + 630 + ], + "score": 1.0, + "content": ". Therefore, the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 627, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 104, + 627, + 224, + 642 + ], + "score": 1.0, + "content": "upper bound of Theorem 2 is", + "type": "text" + }, + { + "bbox": [ + 225, + 628, + 376, + 641 + ], + "score": 0.93, + "content": "\\lambda ^ { - 1 } = ( \\bar { 1 ^ { - } } \\tilde { \\mu } ) ^ { - 1 } \\approx \\bar { 1 ^ { + } } 9 . 5 7 \\times \\bar { 1 0 ^ { - 3 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 627, + 506, + 642 + ], + "score": 1.0, + "content": ". 7875 out of 19717 samples are", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 639, + 506, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 639, + 252, + 653 + ], + "score": 1.0, + "content": "labelled as “Diabetes Mellitus Type", + "type": "text" + }, + { + "bbox": [ + 253, + 641, + 263, + 650 + ], + "score": 0.7, + "content": "2 ^ { \\circ }", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 639, + 506, + 653 + ], + "score": 1.0, + "content": ", which is the largest proportion. Therefore, the chance rate", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 650, + 209, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 116, + 663 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 116, + 651, + 206, + 663 + ], + "score": 0.85, + "content": "7 8 7 5 / 1 9 7 1 7 = 3 9 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 650, + 209, + 663 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34.5, + "bbox_fs": [ + 104, + 574, + 506, + 663 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 676, + 267, + 688 + ], + "lines": [ + { + "bbox": [ + 105, + 675, + 268, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 675, + 268, + 690 + ], + "score": 1.0, + "content": "H.3.2 NOISY CITATION NETWORKS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 697, + 375, + 709 + ], + "lines": [ + { + "bbox": [ + 106, + 696, + 375, + 709 + ], + "spans": [ + { + "bbox": [ + 106, + 696, + 375, + 709 + ], + "score": 1.0, + "content": "We summarize the properties of noisy citation networks in Table 2.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 40, + "bbox_fs": [ + 106, + 696, + 375, + 709 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 124, + 86, + 486, + 323 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 124, + 86, + 486, + 323 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 86, + 486, + 323 + ], + "spans": [ + { + "bbox": [ + 124, + 86, + 486, + 323 + ], + "score": 0.976, + "type": "image", + "image_path": "33c624416452a1afbbaf1d3a06a17fe54c6e9a677c7771baa460eb82489179e5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 124, + 86, + 486, + 165.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 124, + 165.0, + 486, + 244.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 124, + 244.0, + 486, + 323.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 342, + 505, + 375 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "Figure 5: Spectral distribution of Laplacian for the citation network datasets. Left: normalized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "Laplacian. Right: augmented normalized Laplacian. Top: Cora and Noisy Cora (2500, 5000).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 363, + 261, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 261, + 376 + ], + "score": 1.0, + "content": "Bottom: CiteSeer and Noisy CiteSeer.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 411 + ], + "score": 1.0, + "content": "We created two datasets from the Cora dataset: Noisy Cora 2500 and Noisy Cora 5000. Noisy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Cora 2500 is made from the Cora dataset by uniformly randomly adding 2500 edges, respectively.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "Since some random edges are overlapped with existing edges, the number of newly-added edges", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "is 2495 in total. We only changed the underlying graph from the Cora dataset and did not change", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "word occurences (feature vectors) and genres (labels). The underlying graph of the Noisy Cora", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 426, + 466 + ], + "score": 1.0, + "content": "dataset has two connected components and the smallest positive eigenvalue is", + "type": "text" + }, + { + "bbox": [ + 426, + 452, + 501, + 464 + ], + "score": 0.91, + "content": "\\tilde { \\mu } \\approx 9 . 6 2 \\times 1 0 ^ { - 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 451, + 506, + 466 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "Therefore, the threshold of the maximum singular values of in Theorem 2 has been increased to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 473, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 210, + 487 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 } = ( 1 - \\tilde { \\mu } ) ^ { - 1 } \\approx 1 . 1 1", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 473, + 506, + 488 + ], + "score": 1.0, + "content": ". Similarly, Noisy Cora 5000 was made by adding 5000 edges uniformaly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "randomly. The number of newly added edges is 4988 and the graph is connected (i.e., it has only 1", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 496, + 489, + 510 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 202, + 510 + ], + "score": 1.0, + "content": "connected component).", + "type": "text" + }, + { + "bbox": [ + 202, + 497, + 210, + 508 + ], + "score": 0.82, + "content": "\\tilde { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 496, + 227, + 510 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 497, + 235, + 507 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 496, + 251, + 510 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 251, + 496, + 322, + 508 + ], + "score": 0.92, + "content": "\\tilde { \\mu } \\approx 1 . \\bar { 3 } 2 \\times 1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 496, + 340, + 510 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 340, + 496, + 433, + 509 + ], + "score": 0.92, + "content": "\\lambda = \\bar { ( 1 - \\mu ) } ^ { - 1 } \\approx 1 . 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 496, + 489, + 510 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "We made the noisy version of CiteSeer (Noisy CiteSeer) and PubMed (Noisy PubMed), in the sim-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "ilar way, by adding 5000 and 25000 edges uniformly randomly to the datasets. Since some random", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "score": 1.0, + "content": "edges were overlapped with existing edges, 4991 and 24993 edges are newly added, respectively.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 449, + 559 + ], + "score": 1.0, + "content": "This manipulation reduced the number of connected component of the graph to 3.", + "type": "text" + }, + { + "bbox": [ + 449, + 547, + 457, + 557 + ], + "score": 0.73, + "content": "\\tilde { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "is approxi-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 137, + 570 + ], + "score": 1.0, + "content": "mately", + "type": "text" + }, + { + "bbox": [ + 137, + 556, + 189, + 568 + ], + "score": 0.93, + "content": "1 . \\dot { 1 1 } \\times 1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 556, + 278, + 570 + ], + "score": 1.0, + "content": "(Noisy CiteSeer) and", + "type": "text" + }, + { + "bbox": [ + 279, + 556, + 330, + 568 + ], + "score": 0.91, + "content": "1 . 4 3 \\times 1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 556, + 419, + 570 + ], + "score": 1.0, + "content": "(Noisy PubMed) and", + "type": "text" + }, + { + "bbox": [ + 420, + 557, + 494, + 569 + ], + "score": 0.93, + "content": "\\lambda ^ { - 1 } = { \\bf \\bar { \\Phi } } ( 1 - \\bar { \\tilde { \\mu } } ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "approximately 1.13 (Noisy CiteSeer) and 1.17 (Noisy PubMed), respectively. Figure 5 (right) shows", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "the spectral distribution of the augmented normalized Laplacian For comparison, we show in Figure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 589, + 429, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 429, + 602 + ], + "score": 1.0, + "content": "5 (left) the spectral distribution of the normalized Laplacian for these datasets13.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 245, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 247, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 247, + 627 + ], + "score": 1.0, + "content": "H.3.3 MODEL ARCHITECTURE", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "We used a GCN consisting of a single node embedding layer, one to nine graph convolution layers,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "and a readout operation (Gilmer et al., 2017), which is a linear transformation common to all nodes", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 657, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 668 + ], + "score": 1.0, + "content": "in our case. We applied softmax function to the output of GCN. The output dimension of GCN", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "is same as the number of classes (i.e., seven for Noisy Cora 2500/5000, six for Noisy CiteSeer,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "and three for Noisy PubMed). We treated the number of units in each graph convolution layer as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 409, + 702 + ], + "score": 1.0, + "content": "a hyperparameter. Optionally, we specified the maximum singular values", + "type": "text" + }, + { + "bbox": [ + 410, + 691, + 416, + 699 + ], + "score": 0.62, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "of graph convolution", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + } + ], + "page_idx": 24, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 109, + 712, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 114, + 708, + 506, + 725 + ], + "spans": [ + { + "bbox": [ + 114, + 708, + 506, + 725 + ], + "score": 1.0, + "content": "13Due to computational resource problems, we cannot compute the spectral distributions for PubMed and", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 720, + 164, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 164, + 733 + ], + "score": 1.0, + "content": "Noisy Pubmed.", + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 124, + 86, + 486, + 323 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 124, + 86, + 486, + 323 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 124, + 86, + 486, + 323 + ], + "spans": [ + { + "bbox": [ + 124, + 86, + 486, + 323 + ], + "score": 0.976, + "type": "image", + "image_path": "33c624416452a1afbbaf1d3a06a17fe54c6e9a677c7771baa460eb82489179e5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 124, + 86, + 486, + 165.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 124, + 165.0, + 486, + 244.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 124, + 244.0, + 486, + 323.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 342, + 505, + 375 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 505, + 354 + ], + "score": 1.0, + "content": "Figure 5: Spectral distribution of Laplacian for the citation network datasets. Left: normalized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 354, + 505, + 366 + ], + "score": 1.0, + "content": "Laplacian. Right: augmented normalized Laplacian. Top: Cora and Noisy Cora (2500, 5000).", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 363, + 261, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 261, + 376 + ], + "score": 1.0, + "content": "Bottom: CiteSeer and Noisy CiteSeer.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 397, + 505, + 508 + ], + "lines": [ + { + "bbox": [ + 105, + 396, + 505, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 411 + ], + "score": 1.0, + "content": "We created two datasets from the Cora dataset: Noisy Cora 2500 and Noisy Cora 5000. Noisy", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Cora 2500 is made from the Cora dataset by uniformly randomly adding 2500 edges, respectively.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "Since some random edges are overlapped with existing edges, the number of newly-added edges", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "is 2495 in total. We only changed the underlying graph from the Cora dataset and did not change", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 506, + 454 + ], + "score": 1.0, + "content": "word occurences (feature vectors) and genres (labels). The underlying graph of the Noisy Cora", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 451, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 104, + 451, + 426, + 466 + ], + "score": 1.0, + "content": "dataset has two connected components and the smallest positive eigenvalue is", + "type": "text" + }, + { + "bbox": [ + 426, + 452, + 501, + 464 + ], + "score": 0.91, + "content": "\\tilde { \\mu } \\approx 9 . 6 2 \\times 1 0 ^ { - 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 501, + 451, + 506, + 466 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 476 + ], + "score": 1.0, + "content": "Therefore, the threshold of the maximum singular values of in Theorem 2 has been increased to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 473, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 210, + 487 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 } = ( 1 - \\tilde { \\mu } ) ^ { - 1 } \\approx 1 . 1 1", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 473, + 506, + 488 + ], + "score": 1.0, + "content": ". Similarly, Noisy Cora 5000 was made by adding 5000 edges uniformaly", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 505, + 498 + ], + "score": 1.0, + "content": "randomly. The number of newly added edges is 4988 and the graph is connected (i.e., it has only 1", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 496, + 489, + 510 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 202, + 510 + ], + "score": 1.0, + "content": "connected component).", + "type": "text" + }, + { + "bbox": [ + 202, + 497, + 210, + 508 + ], + "score": 0.82, + "content": "\\tilde { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 496, + 227, + 510 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 228, + 497, + 235, + 507 + ], + "score": 0.78, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 235, + 496, + 251, + 510 + ], + "score": 1.0, + "content": "are", + "type": "text" + }, + { + "bbox": [ + 251, + 496, + 322, + 508 + ], + "score": 0.92, + "content": "\\tilde { \\mu } \\approx 1 . \\bar { 3 } 2 \\times 1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 496, + 340, + 510 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 340, + 496, + 433, + 509 + ], + "score": 0.92, + "content": "\\lambda = \\bar { ( 1 - \\mu ) } ^ { - 1 } \\approx 1 . 1 5", + "type": "inline_equation" + }, + { + "bbox": [ + 434, + 496, + 489, + 510 + ], + "score": 1.0, + "content": ", respectively.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 396, + 506, + 510 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 513, + 505, + 601 + ], + "lines": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 526 + ], + "score": 1.0, + "content": "We made the noisy version of CiteSeer (Noisy CiteSeer) and PubMed (Noisy PubMed), in the sim-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 524, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 536 + ], + "score": 1.0, + "content": "ilar way, by adding 5000 and 25000 edges uniformly randomly to the datasets. Since some random", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 505, + 548 + ], + "score": 1.0, + "content": "edges were overlapped with existing edges, 4991 and 24993 edges are newly added, respectively.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 546, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 449, + 559 + ], + "score": 1.0, + "content": "This manipulation reduced the number of connected component of the graph to 3.", + "type": "text" + }, + { + "bbox": [ + 449, + 547, + 457, + 557 + ], + "score": 0.73, + "content": "\\tilde { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 546, + 505, + 559 + ], + "score": 1.0, + "content": "is approxi-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 556, + 506, + 570 + ], + "spans": [ + { + "bbox": [ + 105, + 556, + 137, + 570 + ], + "score": 1.0, + "content": "mately", + "type": "text" + }, + { + "bbox": [ + 137, + 556, + 189, + 568 + ], + "score": 0.93, + "content": "1 . \\dot { 1 1 } \\times 1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 556, + 278, + 570 + ], + "score": 1.0, + "content": "(Noisy CiteSeer) and", + "type": "text" + }, + { + "bbox": [ + 279, + 556, + 330, + 568 + ], + "score": 0.91, + "content": "1 . 4 3 \\times 1 0 ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 556, + 419, + 570 + ], + "score": 1.0, + "content": "(Noisy PubMed) and", + "type": "text" + }, + { + "bbox": [ + 420, + 557, + 494, + 569 + ], + "score": 0.93, + "content": "\\lambda ^ { - 1 } = { \\bf \\bar { \\Phi } } ( 1 - \\bar { \\tilde { \\mu } } ) ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 495, + 556, + 506, + 570 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 582 + ], + "score": 1.0, + "content": "approximately 1.13 (Noisy CiteSeer) and 1.17 (Noisy PubMed), respectively. Figure 5 (right) shows", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "the spectral distribution of the augmented normalized Laplacian For comparison, we show in Figure", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 589, + 429, + 602 + ], + "spans": [ + { + "bbox": [ + 104, + 589, + 429, + 602 + ], + "score": 1.0, + "content": "5 (left) the spectral distribution of the normalized Laplacian for these datasets13.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 513, + 506, + 602 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 614, + 245, + 626 + ], + "lines": [ + { + "bbox": [ + 106, + 615, + 247, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 247, + 627 + ], + "score": 1.0, + "content": "H.3.3 MODEL ARCHITECTURE", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 701 + ], + "lines": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "We used a GCN consisting of a single node embedding layer, one to nine graph convolution layers,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "and a readout operation (Gilmer et al., 2017), which is a linear transformation common to all nodes", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 657, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 505, + 668 + ], + "score": 1.0, + "content": "in our case. We applied softmax function to the output of GCN. The output dimension of GCN", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "is same as the number of classes (i.e., seven for Noisy Cora 2500/5000, six for Noisy CiteSeer,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "and three for Noisy PubMed). We treated the number of units in each graph convolution layer as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 689, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 689, + 409, + 702 + ], + "score": 1.0, + "content": "a hyperparameter. Optionally, we specified the maximum singular values", + "type": "text" + }, + { + "bbox": [ + 410, + 691, + 416, + 699 + ], + "score": 0.62, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 689, + 505, + 702 + ], + "score": 1.0, + "content": "of graph convolution", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 194, + 225 + ], + "score": 1.0, + "content": "layers. The choice of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 195, + 216, + 201, + 223 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 201, + 212, + 321, + 225 + ], + "score": 1.0, + "content": "is either 0.5 (smaller than 1),", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 321, + 214, + 331, + 224 + ], + "score": 0.83, + "content": "s _ { 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 332, + 212, + 394, + 225 + ], + "score": 1.0, + "content": "(in the interval", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 395, + 213, + 460, + 225 + ], + "score": 0.9, + "content": "\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 461, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "), 3 and 10", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 156, + 236 + ], + "score": 1.0, + "content": "(larger than", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 156, + 223, + 174, + 235 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 174, + 223, + 220, + 236 + ], + "score": 1.0, + "content": "). We used", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 221, + 225, + 264, + 235 + ], + "score": 0.9, + "content": "s _ { 1 } = 1 . 0 5", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 264, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "for Noisy Cora 2500, Noisy CiteSeer, and Noisy PubMed,", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 123, + 248 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 123, + 236, + 160, + 246 + ], + "score": 0.9, + "content": "s _ { 1 } = 1 . 1", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 160, + 235, + 355, + 248 + ], + "score": 1.0, + "content": "for Noisy Cora 5000 and Noisy CiteSeer so that", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 355, + 236, + 366, + 246 + ], + "score": 0.85, + "content": "s _ { 1 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 366, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "is not close to the edges of the the", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 245, + 207, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 139, + 258 + ], + "score": 1.0, + "content": "interval", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 140, + 246, + 203, + 258 + ], + "score": 0.93, + "content": "\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 203, + 245, + 207, + 258 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 9 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 634, + 506, + 702 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 177, + 124, + 434, + 192 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 91, + 504, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 90, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 354, + 104 + ], + "score": 1.0, + "content": "Table 3: Hyperparameters of the experiment in Section 6.3.", + "type": "text" + }, + { + "bbox": [ + 354, + 90, + 455, + 103 + ], + "score": 0.88, + "content": "X \\sim \\mathrm { L o g U n i f } [ 1 0 ^ { a } , 1 0 ^ { b } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 90, + 505, + 104 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 101, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 174, + 115 + ], + "score": 1.0, + "content": "random variable", + "type": "text" + }, + { + "bbox": [ + 174, + 102, + 208, + 114 + ], + "score": 0.92, + "content": "\\log _ { 1 0 } X", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 101, + 353, + 115 + ], + "score": 1.0, + "content": "obeys the uniform distribution over", + "type": "text" + }, + { + "bbox": [ + 353, + 102, + 374, + 114 + ], + "score": 0.87, + "content": "[ a , b ]", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 101, + 506, + 115 + ], + "score": 1.0, + "content": ". “Learning rate” corresponds to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 113, + 373, + 125 + ], + "spans": [ + { + "bbox": [ + 107, + 115, + 114, + 123 + ], + "score": 0.71, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 113, + 373, + 125 + ], + "score": 1.0, + "content": "when “Optimization algorithm” is Adam (Kingma & Ba, 2015).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 177, + 124, + 434, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 177, + 124, + 434, + 192 + ], + "spans": [ + { + "bbox": [ + 177, + 124, + 434, + 192 + ], + "score": 0.979, + "html": "
NameValue
Unit size{10,20,..., 500}
Epoch{10,20,...,100}
Optimization algorithm{SGD,MomentumSGD,Adam}
Learning rateLogUnif[10-5,10-2]
", + "type": "table", + "image_path": "80ab11f7788859aa5cff8fafb447d24232326adb5a8f87e277a4cff910d30034.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 177, + 124, + 434, + 146.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 177, + 146.66666666666666, + 434, + 169.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 177, + 169.33333333333331, + 434, + 191.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 258 + ], + "lines": [ + { + "bbox": [ + 105, + 212, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 194, + 225 + ], + "score": 1.0, + "content": "layers. The choice of", + "type": "text" + }, + { + "bbox": [ + 195, + 216, + 201, + 223 + ], + "score": 0.75, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 212, + 321, + 225 + ], + "score": 1.0, + "content": "is either 0.5 (smaller than 1),", + "type": "text" + }, + { + "bbox": [ + 321, + 214, + 331, + 224 + ], + "score": 0.83, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 212, + 394, + 225 + ], + "score": 1.0, + "content": "(in the interval", + "type": "text" + }, + { + "bbox": [ + 395, + 213, + 460, + 225 + ], + "score": 0.9, + "content": "\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 212, + 505, + 225 + ], + "score": 1.0, + "content": "), 3 and 10", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 156, + 236 + ], + "score": 1.0, + "content": "(larger than", + "type": "text" + }, + { + "bbox": [ + 156, + 223, + 174, + 235 + ], + "score": 0.92, + "content": "\\lambda ^ { - 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 223, + 220, + 236 + ], + "score": 1.0, + "content": "). We used", + "type": "text" + }, + { + "bbox": [ + 221, + 225, + 264, + 235 + ], + "score": 0.9, + "content": "s _ { 1 } = 1 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "for Noisy Cora 2500, Noisy CiteSeer, and Noisy PubMed,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 235, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 235, + 123, + 248 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 236, + 160, + 246 + ], + "score": 0.9, + "content": "s _ { 1 } = 1 . 1", + "type": "inline_equation" + }, + { + "bbox": [ + 160, + 235, + 355, + 248 + ], + "score": 1.0, + "content": "for Noisy Cora 5000 and Noisy CiteSeer so that", + "type": "text" + }, + { + "bbox": [ + 355, + 236, + 366, + 246 + ], + "score": 0.85, + "content": "s _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 235, + 505, + 248 + ], + "score": 1.0, + "content": "is not close to the edges of the the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 245, + 207, + 258 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 139, + 258 + ], + "score": 1.0, + "content": "interval", + "type": "text" + }, + { + "bbox": [ + 140, + 246, + 203, + 258 + ], + "score": 0.93, + "content": "\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 245, + 207, + 258 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "title", + "bbox": [ + 109, + 270, + 320, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 322, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 322, + 283 + ], + "score": 1.0, + "content": "H.3.4 PERFORMANCE EVALUATION PROCEDURE", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "We split all nodes in a graph (either Noisy Cora 2500/5000 or Noisy CiteSeer) into training, val-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "idation, and test sets. Data split is the same as the one done by Kipf & Welling (2017). This", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "is a transductive learning (Pan & Yang, 2010) setting because we can use node properties of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "validation and test data during training. We trained the model three times for each choice of hyper-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "paremeters using the training set and defined the objective function as the average accuracy on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "validation set. We chose the combination of hyperparameters that achieves the best value of objec-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "tive function. We evaluate the accuracy of the test dataset three times using the chosen combination", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 367, + 408, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 408, + 379 + ], + "score": 1.0, + "content": "of hyperparameters and computed their average and the standard deviation.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5 + }, + { + "type": "title", + "bbox": [ + 107, + 391, + 186, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 187, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 187, + 404 + ], + "score": 1.0, + "content": "H.3.5 TRAINING", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "At initialization, we sampled parameters from the i.i.d. Gaussian distribution. If the scale of maxi-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 191, + 434 + ], + "score": 1.0, + "content": "mum singular values", + "type": "text" + }, + { + "bbox": [ + 192, + 424, + 198, + 432 + ], + "score": 0.58, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "was specified, we subsequently scaled weight matrices of graph convolution", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 370, + 445 + ], + "score": 1.0, + "content": "layers so that their maximum singular values were normalized to", + "type": "text" + }, + { + "bbox": [ + 371, + 435, + 376, + 443 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 433, + 505, + 445 + ], + "score": 1.0, + "content": ". The loss function was defined", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "as the sum of the cross entropy loss for all training nodes. We train the model using the one of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 343, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 343, + 468 + ], + "score": 1.0, + "content": "gradient-based optimization methods described in Table 3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 479, + 224, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 225, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 225, + 491 + ], + "score": 1.0, + "content": "H.3.6 HYPERPRAMETERS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 504, + 532 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 504, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 504, + 512 + ], + "score": 1.0, + "content": "Table 3 shows the set of hyperparameters from which we chose. Since we compute the repre-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 508, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 524 + ], + "score": 1.0, + "content": "sentations of all nodes at once at each iteration, each epoch consists of 1 iteration. We employ", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 520, + 464, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 464, + 533 + ], + "score": 1.0, + "content": "Tree-structured Parzen Estimator (Bergstra et al., 2011) for hyperparameter optimization.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "title", + "bbox": [ + 108, + 546, + 219, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 221, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 221, + 558 + ], + "score": 1.0, + "content": "H.3.7 IMPLEMENTATION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 579 + ], + "score": 1.0, + "content": "We used Chainer Chemistry14, which is an extension library for the deep learning framework", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "score": 1.0, + "content": "Chainer (Tokui et al., 2015; 2019), to implement GCNs and Optuna (Akiba et al., 2019) for hy-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "perparameter tuning. We conducted experiments in a signel machine which has 2 Intel(R) Xeon(R)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "Gold 6136 CPU@3.00GHz (24 cores), 192 GB memory (DDR4), and 3 GPGPUs (NVIDIA Tesla", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 258, + 622 + ], + "score": 1.0, + "content": "V100). Our implementation achieved", + "type": "text" + }, + { + "bbox": [ + 258, + 609, + 285, + 620 + ], + "score": 0.87, + "content": "6 8 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "with Dropout (Srivastava et al., 2014) (2 graph convo-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 619, + 178, + 633 + ], + "score": 1.0, + "content": "lution layers) and", + "type": "text" + }, + { + "bbox": [ + 179, + 620, + 206, + 631 + ], + "score": 0.87, + "content": "6 4 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "without Dropout (1 graph convolution layer) on the test dataset. These are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "slightly worse than the accuracy reported in Kipf & Welling (2017), but are still comparable with it.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33 + }, + { + "type": "title", + "bbox": [ + 108, + 657, + 261, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 262, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 262, + 669 + ], + "score": 1.0, + "content": "H.4 EXPERIMENT OF SECTION 6.4", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 109, + 678, + 504, + 711 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "The experiment settings are almost same as the experiment in Section 6.3. The only difference is that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 107, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "we did not train the node embedding layer, which we put before convolution layers of a GCN, while", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "we did in Section 6.3. This is because we wanted to see the the effect of convolution operations", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "page_idx": 25, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 115, + 722, + 399, + 732 + ], + "lines": [ + { + "bbox": [ + 115, + 718, + 401, + 736 + ], + "spans": [ + { + "bbox": [ + 115, + 718, + 401, + 736 + ], + "score": 1.0, + "content": "14https://github.com/pfnet-research/chainer-chemistry", + "type": "text" + } + ] + } + ] + }, + { + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 177, + 124, + 434, + 192 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 91, + 504, + 124 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 90, + 505, + 104 + ], + "spans": [ + { + "bbox": [ + 105, + 90, + 354, + 104 + ], + "score": 1.0, + "content": "Table 3: Hyperparameters of the experiment in Section 6.3.", + "type": "text" + }, + { + "bbox": [ + 354, + 90, + 455, + 103 + ], + "score": 0.88, + "content": "X \\sim \\mathrm { L o g U n i f } [ 1 0 ^ { a } , 1 0 ^ { b } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 90, + 505, + 104 + ], + "score": 1.0, + "content": "denotes the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 101, + 506, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 174, + 115 + ], + "score": 1.0, + "content": "random variable", + "type": "text" + }, + { + "bbox": [ + 174, + 102, + 208, + 114 + ], + "score": 0.92, + "content": "\\log _ { 1 0 } X", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 101, + 353, + 115 + ], + "score": 1.0, + "content": "obeys the uniform distribution over", + "type": "text" + }, + { + "bbox": [ + 353, + 102, + 374, + 114 + ], + "score": 0.87, + "content": "[ a , b ]", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 101, + 506, + 115 + ], + "score": 1.0, + "content": ". “Learning rate” corresponds to", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 113, + 373, + 125 + ], + "spans": [ + { + "bbox": [ + 107, + 115, + 114, + 123 + ], + "score": 0.71, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 113, + 373, + 125 + ], + "score": 1.0, + "content": "when “Optimization algorithm” is Adam (Kingma & Ba, 2015).", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 177, + 124, + 434, + 192 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 177, + 124, + 434, + 192 + ], + "spans": [ + { + "bbox": [ + 177, + 124, + 434, + 192 + ], + "score": 0.979, + "html": "
NameValue
Unit size{10,20,..., 500}
Epoch{10,20,...,100}
Optimization algorithm{SGD,MomentumSGD,Adam}
Learning rateLogUnif[10-5,10-2]
", + "type": "table", + "image_path": "80ab11f7788859aa5cff8fafb447d24232326adb5a8f87e277a4cff910d30034.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 177, + 124, + 434, + 146.66666666666666 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 177, + 146.66666666666666, + 434, + 169.33333333333331 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 177, + 169.33333333333331, + 434, + 191.99999999999997 + ], + "spans": [], + "index": 5 + } + ] + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 213, + 505, + 258 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 105, + 212, + 505, + 258 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 109, + 270, + 320, + 282 + ], + "lines": [ + { + "bbox": [ + 106, + 270, + 322, + 283 + ], + "spans": [ + { + "bbox": [ + 106, + 270, + 322, + 283 + ], + "score": 1.0, + "content": "H.3.4 PERFORMANCE EVALUATION PROCEDURE", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 289, + 505, + 378 + ], + "lines": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 303 + ], + "score": 1.0, + "content": "We split all nodes in a graph (either Noisy Cora 2500/5000 or Noisy CiteSeer) into training, val-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "idation, and test sets. Data split is the same as the one done by Kipf & Welling (2017). This", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 105, + 312, + 505, + 325 + ], + "score": 1.0, + "content": "is a transductive learning (Pan & Yang, 2010) setting because we can use node properties of the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 505, + 336 + ], + "score": 1.0, + "content": "validation and test data during training. We trained the model three times for each choice of hyper-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 334, + 505, + 346 + ], + "score": 1.0, + "content": "paremeters using the training set and defined the objective function as the average accuracy on the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 505, + 358 + ], + "score": 1.0, + "content": "validation set. We chose the combination of hyperparameters that achieves the best value of objec-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 505, + 369 + ], + "score": 1.0, + "content": "tive function. We evaluate the accuracy of the test dataset three times using the chosen combination", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 367, + 408, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 408, + 379 + ], + "score": 1.0, + "content": "of hyperparameters and computed their average and the standard deviation.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 289, + 505, + 379 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 391, + 186, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 391, + 187, + 404 + ], + "spans": [ + { + "bbox": [ + 106, + 391, + 187, + 404 + ], + "score": 1.0, + "content": "H.3.5 TRAINING", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 423 + ], + "score": 1.0, + "content": "At initialization, we sampled parameters from the i.i.d. Gaussian distribution. If the scale of maxi-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 191, + 434 + ], + "score": 1.0, + "content": "mum singular values", + "type": "text" + }, + { + "bbox": [ + 192, + 424, + 198, + 432 + ], + "score": 0.58, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "was specified, we subsequently scaled weight matrices of graph convolution", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 433, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 433, + 370, + 445 + ], + "score": 1.0, + "content": "layers so that their maximum singular values were normalized to", + "type": "text" + }, + { + "bbox": [ + 371, + 435, + 376, + 443 + ], + "score": 0.66, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 433, + 505, + 445 + ], + "score": 1.0, + "content": ". The loss function was defined", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 444, + 505, + 456 + ], + "score": 1.0, + "content": "as the sum of the cross entropy loss for all training nodes. We train the model using the one of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 455, + 343, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 455, + 343, + 468 + ], + "score": 1.0, + "content": "gradient-based optimization methods described in Table 3.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 411, + 505, + 468 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 479, + 224, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 225, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 225, + 491 + ], + "score": 1.0, + "content": "H.3.6 HYPERPRAMETERS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 107, + 499, + 504, + 532 + ], + "lines": [ + { + "bbox": [ + 105, + 498, + 504, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 504, + 512 + ], + "score": 1.0, + "content": "Table 3 shows the set of hyperparameters from which we chose. Since we compute the repre-", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 508, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 508, + 505, + 524 + ], + "score": 1.0, + "content": "sentations of all nodes at once at each iteration, each epoch consists of 1 iteration. We employ", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 520, + 464, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 464, + 533 + ], + "score": 1.0, + "content": "Tree-structured Parzen Estimator (Bergstra et al., 2011) for hyperparameter optimization.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 498, + 505, + 533 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 546, + 219, + 557 + ], + "lines": [ + { + "bbox": [ + 106, + 545, + 221, + 558 + ], + "spans": [ + { + "bbox": [ + 106, + 545, + 221, + 558 + ], + "score": 1.0, + "content": "H.3.7 IMPLEMENTATION", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 579 + ], + "score": 1.0, + "content": "We used Chainer Chemistry14, which is an extension library for the deep learning framework", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 575, + 505, + 590 + ], + "score": 1.0, + "content": "Chainer (Tokui et al., 2015; 2019), to implement GCNs and Optuna (Akiba et al., 2019) for hy-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "perparameter tuning. We conducted experiments in a signel machine which has 2 Intel(R) Xeon(R)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 505, + 610 + ], + "score": 1.0, + "content": "Gold 6136 CPU@3.00GHz (24 cores), 192 GB memory (DDR4), and 3 GPGPUs (NVIDIA Tesla", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 609, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 258, + 622 + ], + "score": 1.0, + "content": "V100). Our implementation achieved", + "type": "text" + }, + { + "bbox": [ + 258, + 609, + 285, + 620 + ], + "score": 0.87, + "content": "6 8 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 609, + 505, + 622 + ], + "score": 1.0, + "content": "with Dropout (Srivastava et al., 2014) (2 graph convo-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 104, + 619, + 178, + 633 + ], + "score": 1.0, + "content": "lution layers) and", + "type": "text" + }, + { + "bbox": [ + 179, + 620, + 206, + 631 + ], + "score": 0.87, + "content": "6 4 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "without Dropout (1 graph convolution layer) on the test dataset. These are", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 505, + 644 + ], + "score": 1.0, + "content": "slightly worse than the accuracy reported in Kipf & Welling (2017), but are still comparable with it.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 33, + "bbox_fs": [ + 104, + 563, + 506, + 644 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 657, + 261, + 668 + ], + "lines": [ + { + "bbox": [ + 106, + 657, + 262, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 657, + 262, + 669 + ], + "score": 1.0, + "content": "H.4 EXPERIMENT OF SECTION 6.4", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 109, + 678, + 504, + 711 + ], + "lines": [ + { + "bbox": [ + 107, + 677, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 107, + 677, + 506, + 691 + ], + "score": 1.0, + "content": "The experiment settings are almost same as the experiment in Section 6.3. The only difference is that", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 107, + 689, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 107, + 689, + 505, + 701 + ], + "score": 1.0, + "content": "we did not train the node embedding layer, which we put before convolution layers of a GCN, while", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "we did in Section 6.3. This is because we wanted to see the the effect of convolution operations", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 677, + 506, + 712 + ] + } + ] + }, + { + "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": "on the perpendicular component of signals, while we interested in the prediction accuracy in real", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 284, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 284, + 106 + ], + "score": 1.0, + "content": "training settings in the previous experiment.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 106, + 121, + 312, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 312, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 312, + 135 + ], + "score": 1.0, + "content": "I ADDITIONAL EXPERIMENT RESULTS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 108, + 145, + 257, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 258, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 258, + 158 + ], + "score": 1.0, + "content": "I.1 EXPERIMENT OF SECTION 6.1", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 504, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 208, + 179 + ], + "score": 1.0, + "content": "We show the vector field", + "type": "text" + }, + { + "bbox": [ + 209, + 167, + 218, + 176 + ], + "score": 0.73, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 166, + 265, + 179 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 266, + 167, + 277, + 177 + ], + "score": 0.66, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "in Figure 6 (Case 1) and Figure 7 (Case 2). Parameters", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 177, + 502, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 149, + 190 + ], + "score": 1.0, + "content": "other than", + "type": "text" + }, + { + "bbox": [ + 149, + 178, + 161, + 187 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 177, + 502, + 190 + ], + "score": 1.0, + "content": "are same as experiments in Section 6.1 (detail values are available in Appendix H.1).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 108, + 202, + 257, + 213 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 259, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 259, + 214 + ], + "score": 1.0, + "content": "I.2 EXPERIMENT OF SECTION 6.2", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "score": 1.0, + "content": "Figure 8 shows the relative log distance of signals and their upper bound for various edge probability", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 113, + 245 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 234, + 248, + 246 + ], + "score": 1.0, + "content": "and the maximum singular value", + "type": "text" + }, + { + "bbox": [ + 249, + 236, + 255, + 244 + ], + "score": 0.67, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 234, + 506, + 246 + ], + "score": 1.0, + "content": ". Note that we generate a new graph for each configuration of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 129, + 257 + ], + "score": 0.9, + "content": "( p , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 245, + 457, + 258 + ], + "score": 1.0, + "content": ". Therefore, different configurations may have different graphs and hence different", + "type": "text" + }, + { + "bbox": [ + 457, + 245, + 464, + 255 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "even they", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 257, + 282, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 225, + 268 + ], + "score": 1.0, + "content": "have a same edge probability", + "type": "text" + }, + { + "bbox": [ + 225, + 258, + 231, + 268 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 257, + 282, + 268 + ], + "score": 1.0, + "content": "in common.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 108, + 280, + 257, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 259, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 259, + 293 + ], + "score": 1.0, + "content": "I.3 EXPERIMENT OF SECTION 6.3", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 301, + 243, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 243, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 243, + 314 + ], + "score": 1.0, + "content": "I.3.1 PREDICTIVE ACCURACY", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "Figure 9 shows the comparison of predictive performance in terms the maximum singular value", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "and layer size when the dataset is Noisy Cora 5000 (left) and Noisy Citeseer (right), respectively.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 343, + 271, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 271, + 353 + ], + "score": 1.0, + "content": "Concrete values are available in Table 4.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 106, + 366, + 340, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 341, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 341, + 379 + ], + "score": 1.0, + "content": "I.3.2 TRANSITION OF MAXIMUM SINGULAR VALUES", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "Figure 10 – 13 show the transition of weight of graph convolution layers during training when the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "dataset is Noisy Cora 2500, Noisy Cora 5000, and Noisy CiteSeer, respectively. We note that the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "result of 3-layered GCN from the Noisy Cora 2500 is identical to Figure 3 (right) of the main article.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 432, + 257, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 259, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 259, + 444 + ], + "score": 1.0, + "content": "I.4 EXPERIMENT OF SECTION 6.4", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "Figure 14 shows the logarithm of relative perpendicular component and prediction accuracy on", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "Noisy Cora, Noisy CiteSeer, and Noisy PubMed datasets. We use Pearson R as a correlation co-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "efficient. If GCNs have only one layer, it has more large relative perpendicular components (cor-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "responding to right points in the figures) than GCNs which have other number of layers. The cor-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "relation between the logarithm of relative perpendicular components and prediction accuracies are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 217, + 518 + ], + "score": 0.82, + "content": "0 . 8 2 7 ( p { = } 6 . 8 9 0 \\times \\bar { 1 0 } ^ { - 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 507, + 290, + 520 + ], + "score": 1.0, + "content": "for Noisy Cora,", + "type": "text" + }, + { + "bbox": [ + 290, + 507, + 400, + 519 + ], + "score": 0.91, + "content": "\\mathrm { { 0 . 5 2 4 } } ( p \\ = \\ 1 . { \\bar { 7 } } 7 1 \\times 1 0 ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "for Noisy CiteSeer, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 518, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 212, + 531 + ], + "score": 0.82, + "content": "0 . 6 7 9 ( p = 1 . 0 0 2 \\times 1 0 ^ { - 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 518, + 507, + 532 + ], + "score": 1.0, + "content": "for Noisy PubMed, if we treat the one-layer case as outliers and remove", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 529, + 132, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 132, + 542 + ], + "score": 1.0, + "content": "them.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5 + } + ], + "page_idx": 26, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "on the perpendicular component of signals, while we interested in the prediction accuracy in real", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 284, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 284, + 106 + ], + "score": 1.0, + "content": "training settings in the previous experiment.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 121, + 312, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 312, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 312, + 135 + ], + "score": 1.0, + "content": "I ADDITIONAL EXPERIMENT RESULTS", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 108, + 145, + 257, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 145, + 258, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 258, + 158 + ], + "score": 1.0, + "content": "I.1 EXPERIMENT OF SECTION 6.1", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 107, + 166, + 504, + 189 + ], + "lines": [ + { + "bbox": [ + 106, + 166, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 208, + 179 + ], + "score": 1.0, + "content": "We show the vector field", + "type": "text" + }, + { + "bbox": [ + 209, + 167, + 218, + 176 + ], + "score": 0.73, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 166, + 265, + 179 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 266, + 167, + 277, + 177 + ], + "score": 0.66, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 166, + 505, + 179 + ], + "score": 1.0, + "content": "in Figure 6 (Case 1) and Figure 7 (Case 2). Parameters", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 177, + 502, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 149, + 190 + ], + "score": 1.0, + "content": "other than", + "type": "text" + }, + { + "bbox": [ + 149, + 178, + 161, + 187 + ], + "score": 0.65, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 162, + 177, + 502, + 190 + ], + "score": 1.0, + "content": "are same as experiments in Section 6.1 (detail values are available in Appendix H.1).", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 166, + 505, + 190 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 202, + 257, + 213 + ], + "lines": [ + { + "bbox": [ + 105, + 201, + 259, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 201, + 259, + 214 + ], + "score": 1.0, + "content": "I.2 EXPERIMENT OF SECTION 6.2", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 222, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 236 + ], + "score": 1.0, + "content": "Figure 8 shows the relative log distance of signals and their upper bound for various edge probability", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 113, + 245 + ], + "score": 0.77, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 234, + 248, + 246 + ], + "score": 1.0, + "content": "and the maximum singular value", + "type": "text" + }, + { + "bbox": [ + 249, + 236, + 255, + 244 + ], + "score": 0.67, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 255, + 234, + 506, + 246 + ], + "score": 1.0, + "content": ". Note that we generate a new graph for each configuration of", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 107, + 245, + 505, + 258 + ], + "spans": [ + { + "bbox": [ + 107, + 245, + 129, + 257 + ], + "score": 0.9, + "content": "( p , s )", + "type": "inline_equation" + }, + { + "bbox": [ + 129, + 245, + 457, + 258 + ], + "score": 1.0, + "content": ". Therefore, different configurations may have different graphs and hence different", + "type": "text" + }, + { + "bbox": [ + 457, + 245, + 464, + 255 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 245, + 505, + 258 + ], + "score": 1.0, + "content": "even they", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 257, + 282, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 225, + 268 + ], + "score": 1.0, + "content": "have a same edge probability", + "type": "text" + }, + { + "bbox": [ + 225, + 258, + 231, + 268 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 257, + 282, + 268 + ], + "score": 1.0, + "content": "in common.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 222, + 506, + 268 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 280, + 257, + 292 + ], + "lines": [ + { + "bbox": [ + 105, + 280, + 259, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 259, + 293 + ], + "score": 1.0, + "content": "I.3 EXPERIMENT OF SECTION 6.3", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "title", + "bbox": [ + 108, + 301, + 243, + 312 + ], + "lines": [ + { + "bbox": [ + 105, + 301, + 243, + 314 + ], + "spans": [ + { + "bbox": [ + 105, + 301, + 243, + 314 + ], + "score": 1.0, + "content": "I.3.1 PREDICTIVE ACCURACY", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 320, + 504, + 354 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 333 + ], + "score": 1.0, + "content": "Figure 9 shows the comparison of predictive performance in terms the maximum singular value", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 505, + 345 + ], + "score": 1.0, + "content": "and layer size when the dataset is Noisy Cora 5000 (left) and Noisy Citeseer (right), respectively.", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 343, + 271, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 343, + 271, + 353 + ], + "score": 1.0, + "content": "Concrete values are available in Table 4.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 320, + 506, + 353 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 366, + 340, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 365, + 341, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 341, + 379 + ], + "score": 1.0, + "content": "I.3.2 TRANSITION OF MAXIMUM SINGULAR VALUES", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 385, + 505, + 419 + ], + "lines": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 505, + 398 + ], + "score": 1.0, + "content": "Figure 10 – 13 show the transition of weight of graph convolution layers during training when the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "dataset is Noisy Cora 2500, Noisy Cora 5000, and Noisy CiteSeer, respectively. We note that the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "result of 3-layered GCN from the Noisy Cora 2500 is identical to Figure 3 (right) of the main article.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 384, + 505, + 420 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 432, + 257, + 443 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 259, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 259, + 444 + ], + "score": 1.0, + "content": "I.4 EXPERIMENT OF SECTION 6.4", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 452, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 505, + 466 + ], + "score": 1.0, + "content": "Figure 14 shows the logarithm of relative perpendicular component and prediction accuracy on", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 106, + 464, + 505, + 476 + ], + "score": 1.0, + "content": "Noisy Cora, Noisy CiteSeer, and Noisy PubMed datasets. We use Pearson R as a correlation co-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "efficient. If GCNs have only one layer, it has more large relative perpendicular components (cor-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "responding to right points in the figures) than GCNs which have other number of layers. The cor-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 496, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 104, + 496, + 506, + 509 + ], + "score": 1.0, + "content": "relation between the logarithm of relative perpendicular components and prediction accuracies are", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 507, + 217, + 518 + ], + "score": 0.82, + "content": "0 . 8 2 7 ( p { = } 6 . 8 9 0 \\times \\bar { 1 0 } ^ { - 6 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 507, + 290, + 520 + ], + "score": 1.0, + "content": "for Noisy Cora,", + "type": "text" + }, + { + "bbox": [ + 290, + 507, + 400, + 519 + ], + "score": 0.91, + "content": "\\mathrm { { 0 . 5 2 4 } } ( p \\ = \\ 1 . { \\bar { 7 } } 7 1 \\times 1 0 ^ { - 2 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "for Noisy CiteSeer, and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 518, + 507, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 212, + 531 + ], + "score": 0.82, + "content": "0 . 6 7 9 ( p = 1 . 0 0 2 \\times 1 0 ^ { - 3 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 212, + 518, + 507, + 532 + ], + "score": 1.0, + "content": "for Noisy PubMed, if we treat the one-layer case as outliers and remove", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 529, + 132, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 132, + 542 + ], + "score": 1.0, + "content": "them.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 24.5, + "bbox_fs": [ + 104, + 452, + 507, + 542 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 144, + 480, + 630 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 144, + 480, + 630 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 144, + 480, + 630 + ], + "spans": [ + { + "bbox": [ + 114, + 144, + 480, + 630 + ], + "score": 0.964, + "type": "image", + "image_path": "a88890af3061b7f6c52d0927100734218d69193a2aa1e144aab4bb8cd705f753.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 144, + 480, + 306.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 306.0, + 480, + 468.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 468.0, + 480, + 630.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 638, + 505, + 672 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 638, + 504, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 199, + 650 + ], + "score": 1.0, + "content": "Figure 6: Vector field", + "type": "text" + }, + { + "bbox": [ + 199, + 639, + 209, + 649 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 638, + 258, + 650 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 259, + 639, + 271, + 649 + ], + "score": 0.71, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 638, + 365, + 650 + ], + "score": 1.0, + "content": "for Case 1. Top left:", + "type": "text" + }, + { + "bbox": [ + 365, + 639, + 407, + 649 + ], + "score": 0.89, + "content": "W = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 638, + 459, + 650 + ], + "score": 1.0, + "content": ". Top right:", + "type": "text" + }, + { + "bbox": [ + 460, + 639, + 501, + 649 + ], + "score": 0.87, + "content": "W = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 638, + 504, + 650 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 157, + 662 + ], + "score": 1.0, + "content": "Middle left:", + "type": "text" + }, + { + "bbox": [ + 158, + 650, + 196, + 660 + ], + "score": 0.9, + "content": "W = 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 649, + 410, + 662 + ], + "score": 1.0, + "content": "(same as Figure 1 in the main article). Middle right:", + "type": "text" + }, + { + "bbox": [ + 410, + 650, + 449, + 660 + ], + "score": 0.89, + "content": "W = 1 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 649, + 505, + 662 + ], + "score": 1.0, + "content": ". Bottom left:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 659, + 325, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 145, + 671 + ], + "score": 0.89, + "content": "W = 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 659, + 205, + 672 + ], + "score": 1.0, + "content": ". Bottom right:", + "type": "text" + }, + { + "bbox": [ + 206, + 660, + 244, + 671 + ], + "score": 0.9, + "content": "W = 4 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 659, + 325, + 672 + ], + "score": 1.0, + "content": ". Best view in color.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ], + "page_idx": 27, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "28", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 144, + 480, + 630 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 144, + 480, + 630 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 144, + 480, + 630 + ], + "spans": [ + { + "bbox": [ + 114, + 144, + 480, + 630 + ], + "score": 0.964, + "type": "image", + "image_path": "a88890af3061b7f6c52d0927100734218d69193a2aa1e144aab4bb8cd705f753.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 144, + 480, + 306.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 306.0, + 480, + 468.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 468.0, + 480, + 630.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 638, + 505, + 672 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 638, + 504, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 199, + 650 + ], + "score": 1.0, + "content": "Figure 6: Vector field", + "type": "text" + }, + { + "bbox": [ + 199, + 639, + 209, + 649 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 638, + 258, + 650 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 259, + 639, + 271, + 649 + ], + "score": 0.71, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 638, + 365, + 650 + ], + "score": 1.0, + "content": "for Case 1. Top left:", + "type": "text" + }, + { + "bbox": [ + 365, + 639, + 407, + 649 + ], + "score": 0.89, + "content": "W = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 638, + 459, + 650 + ], + "score": 1.0, + "content": ". Top right:", + "type": "text" + }, + { + "bbox": [ + 460, + 639, + 501, + 649 + ], + "score": 0.87, + "content": "W = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 638, + 504, + 650 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 649, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 157, + 662 + ], + "score": 1.0, + "content": "Middle left:", + "type": "text" + }, + { + "bbox": [ + 158, + 650, + 196, + 660 + ], + "score": 0.9, + "content": "W = 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 649, + 410, + 662 + ], + "score": 1.0, + "content": "(same as Figure 1 in the main article). Middle right:", + "type": "text" + }, + { + "bbox": [ + 410, + 650, + 449, + 660 + ], + "score": 0.89, + "content": "W = 1 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 649, + 505, + 662 + ], + "score": 1.0, + "content": ". Bottom left:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 659, + 325, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 145, + 671 + ], + "score": 0.89, + "content": "W = 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 659, + 205, + 672 + ], + "score": 1.0, + "content": ". Bottom right:", + "type": "text" + }, + { + "bbox": [ + 206, + 660, + 244, + 671 + ], + "score": 0.9, + "content": "W = 4 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 659, + 325, + 672 + ], + "score": 1.0, + "content": ". Best view in color.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 143, + 480, + 630 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 143, + 480, + 630 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 143, + 480, + 630 + ], + "spans": [ + { + "bbox": [ + 114, + 143, + 480, + 630 + ], + "score": 0.962, + "type": "image", + "image_path": "55e8e2cb9210bdfb7542bd78186fe6fc29fb504e4a82ce013518941d8c8ae0bc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 143, + 480, + 305.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 305.33333333333337, + 480, + 467.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 467.66666666666674, + 480, + 630.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 638, + 505, + 672 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 199, + 651 + ], + "score": 1.0, + "content": "Figure 7: Vector field", + "type": "text" + }, + { + "bbox": [ + 199, + 639, + 209, + 649 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 637, + 258, + 651 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 259, + 639, + 271, + 649 + ], + "score": 0.71, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 637, + 365, + 651 + ], + "score": 1.0, + "content": "for Case 2. Top left:", + "type": "text" + }, + { + "bbox": [ + 365, + 639, + 407, + 649 + ], + "score": 0.89, + "content": "W = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 637, + 459, + 651 + ], + "score": 1.0, + "content": ". Top right:", + "type": "text" + }, + { + "bbox": [ + 460, + 639, + 501, + 649 + ], + "score": 0.87, + "content": "W = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 637, + 505, + 651 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 649, + 504, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 157, + 661 + ], + "score": 1.0, + "content": "Middle left:", + "type": "text" + }, + { + "bbox": [ + 158, + 650, + 196, + 660 + ], + "score": 0.9, + "content": "W = 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 649, + 410, + 661 + ], + "score": 1.0, + "content": "(same as Figure 1 in the main article). Middle right:", + "type": "text" + }, + { + "bbox": [ + 410, + 650, + 449, + 660 + ], + "score": 0.89, + "content": "W = 1 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 649, + 504, + 661 + ], + "score": 1.0, + "content": ". Bottom left:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 660, + 325, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 145, + 671 + ], + "score": 0.89, + "content": "W = 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 660, + 205, + 672 + ], + "score": 1.0, + "content": ". Bottom right:", + "type": "text" + }, + { + "bbox": [ + 206, + 660, + 244, + 671 + ], + "score": 0.9, + "content": "W = 4 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 660, + 325, + 672 + ], + "score": 1.0, + "content": ". Best view in color.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ], + "page_idx": 28, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 143, + 480, + 630 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 143, + 480, + 630 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 143, + 480, + 630 + ], + "spans": [ + { + "bbox": [ + 114, + 143, + 480, + 630 + ], + "score": 0.962, + "type": "image", + "image_path": "55e8e2cb9210bdfb7542bd78186fe6fc29fb504e4a82ce013518941d8c8ae0bc.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 143, + 480, + 305.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 305.33333333333337, + 480, + 467.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 467.66666666666674, + 480, + 630.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 638, + 505, + 672 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 637, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 199, + 651 + ], + "score": 1.0, + "content": "Figure 7: Vector field", + "type": "text" + }, + { + "bbox": [ + 199, + 639, + 209, + 649 + ], + "score": 0.76, + "content": "V", + "type": "inline_equation" + }, + { + "bbox": [ + 209, + 637, + 258, + 651 + ], + "score": 1.0, + "content": "for various", + "type": "text" + }, + { + "bbox": [ + 259, + 639, + 271, + 649 + ], + "score": 0.71, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 271, + 637, + 365, + 651 + ], + "score": 1.0, + "content": "for Case 2. Top left:", + "type": "text" + }, + { + "bbox": [ + 365, + 639, + 407, + 649 + ], + "score": 0.89, + "content": "W = 0 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 637, + 459, + 651 + ], + "score": 1.0, + "content": ". Top right:", + "type": "text" + }, + { + "bbox": [ + 460, + 639, + 501, + 649 + ], + "score": 0.87, + "content": "W = 1 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 637, + 505, + 651 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 649, + 504, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 157, + 661 + ], + "score": 1.0, + "content": "Middle left:", + "type": "text" + }, + { + "bbox": [ + 158, + 650, + 196, + 660 + ], + "score": 0.9, + "content": "W = 1 . 2", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 649, + 410, + 661 + ], + "score": 1.0, + "content": "(same as Figure 1 in the main article). Middle right:", + "type": "text" + }, + { + "bbox": [ + 410, + 650, + 449, + 660 + ], + "score": 0.89, + "content": "W = 1 . 5", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 649, + 504, + 661 + ], + "score": 1.0, + "content": ". Bottom left:", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 660, + 325, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 145, + 671 + ], + "score": 0.89, + "content": "W = 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 660, + 205, + 672 + ], + "score": 1.0, + "content": ". Bottom right:", + "type": "text" + }, + { + "bbox": [ + 206, + 660, + 244, + 671 + ], + "score": 0.9, + "content": "W = 4 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 244, + 660, + 325, + 672 + ], + "score": 1.0, + "content": ". Best view in color.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 111, + 199, + 500, + 642 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 175, + 504, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "Table 4: Comparison of performance in terms of maximum singular value of weights and layer size.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 186, + 473, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 473, + 199 + ], + "score": 1.0, + "content": "“U” in the right most column indicates the accuracy of GCN without weight normalization.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 111, + 199, + 500, + 642 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 199, + 500, + 642 + ], + "spans": [ + { + "bbox": [ + 111, + 199, + 500, + 642 + ], + "score": 0.861, + "html": "
Noisy Cora 2500
Depth1.05310U
10.389 ± 0.1010.429 ± 0.0900.552 ± 0.0140.632 ± 0.0070.587 ± 0.008
30.273 ± 0.0510.309 ± 0.0170.580± 0.0580.661 ± 0.0030.494 ± 0.041
50.319 ± 0.0000.267 ± 0.0590.462 ± 0.0650.602 ± 0.0040.326 ± 0.029
70.261 ± 0.0760.262 ±0.0800.407 ± 0.0210.501 ± 0.0170.279 ± 0.129
90.261 ± 0.0800.319 ± 0.0000.284 ± 0.1090.443 ± 0.0140.319 ± 0.000
Noisy Cora 5000
Maximum Singular Value
Depth11.1310U
10.301 ± 0.0800.333 ± 0.0990.557 ± 0.0040.561 ± 0.0190.555 ± 0.016
30.245 ± 0.0660.247 ± 0.0760.370 ± 0.0410.587 ± 0.0090.286 ± 0.066
50.274± 0.0480.237 ± 0.0700.257 ± 0.0760.535 ± 0.0310.319 ± 0.000
70.263 ± 0.0800.297 ± 0.0310.260 ± 0.0740.339 ± 0.0600.319 ± 0.000
90.262 ± 0.0810.258 ± 0.0640.262 ± 0.0800.261 ±0.0820.318 ± 0.002
Noisy CiteSeer
Maximum Singular Value
Depth0.51.1 310U
10.461 ± 0.0180.467 ± 0.0120.490 ± 0.0160.494 ± 0.0060.495 ± 0.009
30.438 ± 0.0270.436 ± 0.0100.450 ± 0.0190.462 ± 0.0070.417 ± 0.061
50.285 ± 0.0080.371 ± 0.0160.373 ± 0.0110.425 ± 0.0070.380 ± 0.024
70.213 ± 0.0060.282 ± 0.0110.309 ± 0.0120.385 ± 0.0070.308 ± 0.012
90.182 ± 0.0050.242 ± 0.0300.303 ± 0.0210.325 ± 0.0030.229 ± 0.033
Noisy Pubmed
Maximum Singular Value
Depth0.51.1310U
10.488 ± 0.0390.636 ± 0.0060.641 ± 0.0100.632 ± 0.0020.631 ± 0.010
30.442 ± 0.0270.426 ± 0.0260.658 ± 0.0040.661 ± 0.0050.631 ± 0.013
50.431 ± 0.0330.431 ± 0.0340.561 ± 0.0830.641 ± 0.0040.424 ± 0.093
70.428 ± 0.0320.443 ± 0.0510.449 ± 0.0350.619 ± 0.0110.440 ± 0.041
90.413 ± 0.0090.438 ± 0.0390.539 ± 0.0520.569 ± 0.0420.473 ± 0.031
", + "type": "table", + "image_path": "f96cfa9e68c23c4032c8a3be2585c35040745266b8bd544118d3a828d0808a9b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 199, + 500, + 346.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 346.66666666666663, + 500, + 494.33333333333326 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 111, + 494.33333333333326, + 500, + 641.9999999999999 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + } + ], + "page_idx": 29, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "30", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 111, + 199, + 500, + 642 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 105, + 175, + 504, + 208 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 505, + 189 + ], + "score": 1.0, + "content": "Table 4: Comparison of performance in terms of maximum singular value of weights and layer size.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 186, + 473, + 199 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 473, + 199 + ], + "score": 1.0, + "content": "“U” in the right most column indicates the accuracy of GCN without weight normalization.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 111, + 199, + 500, + 642 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 199, + 500, + 642 + ], + "spans": [ + { + "bbox": [ + 111, + 199, + 500, + 642 + ], + "score": 0.861, + "html": "
Noisy Cora 2500
Depth1.05310U
10.389 ± 0.1010.429 ± 0.0900.552 ± 0.0140.632 ± 0.0070.587 ± 0.008
30.273 ± 0.0510.309 ± 0.0170.580± 0.0580.661 ± 0.0030.494 ± 0.041
50.319 ± 0.0000.267 ± 0.0590.462 ± 0.0650.602 ± 0.0040.326 ± 0.029
70.261 ± 0.0760.262 ±0.0800.407 ± 0.0210.501 ± 0.0170.279 ± 0.129
90.261 ± 0.0800.319 ± 0.0000.284 ± 0.1090.443 ± 0.0140.319 ± 0.000
Noisy Cora 5000
Maximum Singular Value
Depth11.1310U
10.301 ± 0.0800.333 ± 0.0990.557 ± 0.0040.561 ± 0.0190.555 ± 0.016
30.245 ± 0.0660.247 ± 0.0760.370 ± 0.0410.587 ± 0.0090.286 ± 0.066
50.274± 0.0480.237 ± 0.0700.257 ± 0.0760.535 ± 0.0310.319 ± 0.000
70.263 ± 0.0800.297 ± 0.0310.260 ± 0.0740.339 ± 0.0600.319 ± 0.000
90.262 ± 0.0810.258 ± 0.0640.262 ± 0.0800.261 ±0.0820.318 ± 0.002
Noisy CiteSeer
Maximum Singular Value
Depth0.51.1 310U
10.461 ± 0.0180.467 ± 0.0120.490 ± 0.0160.494 ± 0.0060.495 ± 0.009
30.438 ± 0.0270.436 ± 0.0100.450 ± 0.0190.462 ± 0.0070.417 ± 0.061
50.285 ± 0.0080.371 ± 0.0160.373 ± 0.0110.425 ± 0.0070.380 ± 0.024
70.213 ± 0.0060.282 ± 0.0110.309 ± 0.0120.385 ± 0.0070.308 ± 0.012
90.182 ± 0.0050.242 ± 0.0300.303 ± 0.0210.325 ± 0.0030.229 ± 0.033
Noisy Pubmed
Maximum Singular Value
Depth0.51.1310U
10.488 ± 0.0390.636 ± 0.0060.641 ± 0.0100.632 ± 0.0020.631 ± 0.010
30.442 ± 0.0270.426 ± 0.0260.658 ± 0.0040.661 ± 0.0050.631 ± 0.013
50.431 ± 0.0330.431 ± 0.0340.561 ± 0.0830.641 ± 0.0040.424 ± 0.093
70.428 ± 0.0320.443 ± 0.0510.449 ± 0.0350.619 ± 0.0110.440 ± 0.041
90.413 ± 0.0090.438 ± 0.0390.539 ± 0.0520.569 ± 0.0420.473 ± 0.031
", + "type": "table", + "image_path": "f96cfa9e68c23c4032c8a3be2585c35040745266b8bd544118d3a828d0808a9b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 111, + 199, + 500, + 346.66666666666663 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 111, + 346.66666666666663, + 500, + 494.33333333333326 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 111, + 494.33333333333326, + 500, + 641.9999999999999 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 211, + 488, + 524 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 211, + 488, + 524 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 211, + 488, + 524 + ], + "spans": [ + { + "bbox": [ + 117, + 211, + 488, + 524 + ], + "score": 0.976, + "type": "image", + "image_path": "35ca2d11400a46fce3bca8218b146c3b3f571e569a0c3840aef09cad2b8441e8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 211, + 488, + 315.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 315.3333333333333, + 488, + 419.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 419.66666666666663, + 488, + 524.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 506, + 604 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 223, + 552 + ], + "score": 1.0, + "content": "Figure 8: The actual distance", + "type": "text" + }, + { + "bbox": [ + 223, + 540, + 239, + 551 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 539, + 325, + 552 + ], + "score": 1.0, + "content": "to the invariant space", + "type": "text" + }, + { + "bbox": [ + 325, + 540, + 338, + 550 + ], + "score": 0.8, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "and the upper bound inferred by Theorem", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 200, + 564 + ], + "score": 1.0, + "content": "1. The edge probability", + "type": "text" + }, + { + "bbox": [ + 200, + 552, + 207, + 563 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 550, + 475, + 564 + ], + "score": 1.0, + "content": "takes 0.01(top), 0.1, 0.9(bottom) and the maximum singular value", + "type": "text" + }, + { + "bbox": [ + 476, + 553, + 482, + 561 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "takes", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 561, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 202, + 578 + ], + "score": 0.72, + "content": "0 . 1 ( \\mathrm { l e f t } ) , 1 . 0 , 1 0 ( \\mathrm { r i g h t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 561, + 402, + 583 + ], + "score": 1.0, + "content": ". Blue lines are the log relative distance defined by", + "type": "text" + }, + { + "bbox": [ + 402, + 562, + 487, + 581 + ], + "score": 0.94, + "content": "\\begin{array} { r } { y ( l ) : = \\log \\frac { d _ { \\mathcal { M } } ( X ^ { ( l ) } ) } { d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 561, + 506, + 583 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 579, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 250, + 594 + ], + "score": 1.0, + "content": "orange dotted lines are upper bound", + "type": "text" + }, + { + "bbox": [ + 251, + 580, + 320, + 593 + ], + "score": 0.92, + "content": "y ( l ) : = l \\log ( s \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 580, + 350, + 594 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 350, + 579, + 371, + 591 + ], + "score": 0.9, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 580, + 461, + 594 + ], + "score": 1.0, + "content": "is the input signal and", + "type": "text" + }, + { + "bbox": [ + 461, + 580, + 480, + 591 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 592, + 279, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 160, + 605 + ], + "score": 1.0, + "content": "output of the", + "type": "text" + }, + { + "bbox": [ + 160, + 593, + 164, + 602 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 592, + 279, + 605 + ], + "score": 1.0, + "content": "-th layer. Best view in color.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + } + ], + "page_idx": 30, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 211, + 488, + 524 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 211, + 488, + 524 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 211, + 488, + 524 + ], + "spans": [ + { + "bbox": [ + 117, + 211, + 488, + 524 + ], + "score": 0.976, + "type": "image", + "image_path": "35ca2d11400a46fce3bca8218b146c3b3f571e569a0c3840aef09cad2b8441e8.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 211, + 488, + 315.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 315.3333333333333, + 488, + 419.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 419.66666666666663, + 488, + 524.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 539, + 506, + 604 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 539, + 505, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 223, + 552 + ], + "score": 1.0, + "content": "Figure 8: The actual distance", + "type": "text" + }, + { + "bbox": [ + 223, + 540, + 239, + 551 + ], + "score": 0.9, + "content": "d _ { \\mathcal { M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 539, + 325, + 552 + ], + "score": 1.0, + "content": "to the invariant space", + "type": "text" + }, + { + "bbox": [ + 325, + 540, + 338, + 550 + ], + "score": 0.8, + "content": "\\mathcal { M }", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 539, + 505, + 552 + ], + "score": 1.0, + "content": "and the upper bound inferred by Theorem", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 550, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 200, + 564 + ], + "score": 1.0, + "content": "1. The edge probability", + "type": "text" + }, + { + "bbox": [ + 200, + 552, + 207, + 563 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 208, + 550, + 475, + 564 + ], + "score": 1.0, + "content": "takes 0.01(top), 0.1, 0.9(bottom) and the maximum singular value", + "type": "text" + }, + { + "bbox": [ + 476, + 553, + 482, + 561 + ], + "score": 0.78, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 550, + 506, + 564 + ], + "score": 1.0, + "content": "takes", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 561, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 202, + 578 + ], + "score": 0.72, + "content": "0 . 1 ( \\mathrm { l e f t } ) , 1 . 0 , 1 0 ( \\mathrm { r i g h t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 561, + 402, + 583 + ], + "score": 1.0, + "content": ". Blue lines are the log relative distance defined by", + "type": "text" + }, + { + "bbox": [ + 402, + 562, + 487, + 581 + ], + "score": 0.94, + "content": "\\begin{array} { r } { y ( l ) : = \\log \\frac { d _ { \\mathcal { M } } ( X ^ { ( l ) } ) } { d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 561, + 506, + 583 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 579, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 580, + 250, + 594 + ], + "score": 1.0, + "content": "orange dotted lines are upper bound", + "type": "text" + }, + { + "bbox": [ + 251, + 580, + 320, + 593 + ], + "score": 0.92, + "content": "y ( l ) : = l \\log ( s \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 580, + 350, + 594 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 350, + 579, + 371, + 591 + ], + "score": 0.9, + "content": "X ^ { ( 0 ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 580, + 461, + 594 + ], + "score": 1.0, + "content": "is the input signal and", + "type": "text" + }, + { + "bbox": [ + 461, + 580, + 480, + 591 + ], + "score": 0.9, + "content": "X ^ { ( l ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 580, + 506, + 594 + ], + "score": 1.0, + "content": "is the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 592, + 279, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 160, + 605 + ], + "score": 1.0, + "content": "output of the", + "type": "text" + }, + { + "bbox": [ + 160, + 593, + 164, + 602 + ], + "score": 0.69, + "content": "l", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 592, + 279, + 605 + ], + "score": 1.0, + "content": "-th layer. Best view in color.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 93, + 488, + 660 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 93, + 488, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 93, + 488, + 660 + ], + "spans": [ + { + "bbox": [ + 122, + 93, + 488, + 660 + ], + "score": 0.961, + "type": "image", + "image_path": "e5a0ea6bac9839dd91cc7cc13ba7f7a7b0ff470526d0f4afb7388e35011ae897.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 93, + 488, + 282.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 282.0, + 488, + 471.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 471.0, + 488, + 660.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 670, + 506, + 716 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "Figure 9: Effect of the maximum singular values of weights on predictive performance. Horizontal", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 261, + 694 + ], + "score": 1.0, + "content": "dotted lines indicate the chance rates", + "type": "text" + }, + { + "bbox": [ + 261, + 682, + 289, + 692 + ], + "score": 0.85, + "content": "3 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 682, + 378, + 694 + ], + "score": 1.0, + "content": "for Noisy Cora 5000,", + "type": "text" + }, + { + "bbox": [ + 379, + 682, + 406, + 692 + ], + "score": 0.84, + "content": "2 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "for Noisy CiteSeer, and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 693, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 134, + 703 + ], + "score": 0.85, + "content": "3 9 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 693, + 505, + 705 + ], + "score": 1.0, + "content": "for Noisy PubMed). The error bar is the standard deviation of 3 trials. Left: Noisy Cora", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 703, + 403, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 403, + 717 + ], + "score": 1.0, + "content": "5000. Right: Noisy CiteSeer. Bottom: Noisy Pubmed. Best view in color.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + } + ], + "page_idx": 31, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 761 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 93, + 488, + 660 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 93, + 488, + 660 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 93, + 488, + 660 + ], + "spans": [ + { + "bbox": [ + 122, + 93, + 488, + 660 + ], + "score": 0.961, + "type": "image", + "image_path": "e5a0ea6bac9839dd91cc7cc13ba7f7a7b0ff470526d0f4afb7388e35011ae897.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 93, + 488, + 282.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 282.0, + 488, + 471.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 471.0, + 488, + 660.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 670, + 506, + 716 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 506, + 684 + ], + "score": 1.0, + "content": "Figure 9: Effect of the maximum singular values of weights on predictive performance. Horizontal", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 682, + 505, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 682, + 261, + 694 + ], + "score": 1.0, + "content": "dotted lines indicate the chance rates", + "type": "text" + }, + { + "bbox": [ + 261, + 682, + 289, + 692 + ], + "score": 0.85, + "content": "3 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 682, + 378, + 694 + ], + "score": 1.0, + "content": "for Noisy Cora 5000,", + "type": "text" + }, + { + "bbox": [ + 379, + 682, + 406, + 692 + ], + "score": 0.84, + "content": "2 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 406, + 682, + 505, + 694 + ], + "score": 1.0, + "content": "for Noisy CiteSeer, and", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 693, + 505, + 705 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 134, + 703 + ], + "score": 0.85, + "content": "3 9 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 693, + 505, + 705 + ], + "score": 1.0, + "content": "for Noisy PubMed). The error bar is the standard deviation of 3 trials. Left: Noisy Cora", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 703, + 403, + 717 + ], + "spans": [ + { + "bbox": [ + 105, + 703, + 403, + 717 + ], + "score": 1.0, + "content": "5000. Right: Noisy CiteSeer. Bottom: Noisy Pubmed. Best view in color.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "score": 0.977, + "type": "image", + "image_path": "fbb64a2ad3ffb4819bd64e9f80ed2a25542f265d2c003b561d981ebe46bf9d83.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 192, + 495, + 321.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 321.66666666666663, + 495, + 451.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 451.33333333333326, + 495, + 580.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 600, + 504, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "score": 1.0, + "content": "Figure 10: Transition of maximum singular values of GCN during training using Noisy Cora 2500.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 611, + 436, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 436, + 624 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 5 layers. Bottom left: 7 layers. Bottom right: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 32, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "33", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 270, + 187, + 341, + 197 + ], + "lines": [ + { + "bbox": [ + 269, + 185, + 342, + 199 + ], + "spans": [ + { + "bbox": [ + 269, + 185, + 342, + 199 + ], + "score": 1.0, + "content": "Noisy Cora 2500", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "score": 0.977, + "type": "image", + "image_path": "fbb64a2ad3ffb4819bd64e9f80ed2a25542f265d2c003b561d981ebe46bf9d83.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 192, + 495, + 321.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 321.66666666666663, + 495, + 451.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 451.33333333333326, + 495, + 580.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 600, + 504, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "score": 1.0, + "content": "Figure 10: Transition of maximum singular values of GCN during training using Noisy Cora 2500.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 611, + 436, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 436, + 624 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 5 layers. Bottom left: 7 layers. Bottom right: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 193, + 493, + 582 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 193, + 493, + 582 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 193, + 493, + 582 + ], + "spans": [ + { + "bbox": [ + 114, + 193, + 493, + 582 + ], + "score": 0.976, + "type": "image", + "image_path": "1f6937585cdf3a009373b92bd7684c89717d7794c270d219f6efef36b2ea759b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 193, + 493, + 322.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 322.66666666666663, + 493, + 452.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 452.33333333333326, + 493, + 581.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 600, + 504, + 624 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "score": 1.0, + "content": "Figure 11: Transition of maximum singular values of GCN during training using Noisy Cora 5000.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 33, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 270, + 187, + 341, + 197 + ], + "lines": [ + { + "bbox": [ + 269, + 185, + 342, + 199 + ], + "spans": [ + { + "bbox": [ + 269, + 185, + 342, + 199 + ], + "score": 1.0, + "content": "Noisy Cora 5000", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 114, + 193, + 493, + 582 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 114, + 193, + 493, + 582 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 193, + 493, + 582 + ], + "spans": [ + { + "bbox": [ + 114, + 193, + 493, + 582 + ], + "score": 0.976, + "type": "image", + "image_path": "1f6937585cdf3a009373b92bd7684c89717d7794c270d219f6efef36b2ea759b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 193, + 493, + 322.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 322.66666666666663, + 493, + 452.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 452.33333333333326, + 493, + 581.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 600, + 504, + 624 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 504, + 613 + ], + "score": 1.0, + "content": "Figure 11: Transition of maximum singular values of GCN during training using Noisy Cora 5000.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "score": 0.977, + "type": "image", + "image_path": "370a0e6bddfbd9236178e95fde9473ffa8af793fdb6a431485b1c118dd5fa30b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 192, + 495, + 321.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 321.66666666666663, + 495, + 451.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 451.33333333333326, + 495, + 580.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 600, + 504, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Figure 12: Transition of maximum singular values of GCN during training using Noisy CiteSeer.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 34, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 192, + 495, + 581 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 192, + 495, + 581 + ], + "score": 0.977, + "type": "image", + "image_path": "370a0e6bddfbd9236178e95fde9473ffa8af793fdb6a431485b1c118dd5fa30b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 192, + 495, + 321.66666666666663 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 321.66666666666663, + 495, + 451.33333333333326 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 451.33333333333326, + 495, + 580.9999999999999 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 600, + 504, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Figure 12: Transition of maximum singular values of GCN during training using Noisy CiteSeer.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 611, + 505, + 624 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 191, + 493, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 191, + 493, + 581 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 191, + 493, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 191, + 493, + 581 + ], + "score": 0.977, + "type": "image", + "image_path": "8af84ea100c71eb26aa2e941cecfd27c1136c5885b58d83ae02109b6e1ef5f4c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 191, + 493, + 321.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 321.0, + 493, + 451.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 451.0, + 493, + 581.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 600, + 504, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Figure 13: Transition of maximum singular values of GCN during training using Noisy PubMed.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 35, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 763 + ], + "score": 1.0, + "content": "36", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 117, + 191, + 493, + 581 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 117, + 191, + 493, + 581 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 117, + 191, + 493, + 581 + ], + "spans": [ + { + "bbox": [ + 117, + 191, + 493, + 581 + ], + "score": 0.977, + "type": "image", + "image_path": "8af84ea100c71eb26aa2e941cecfd27c1136c5885b58d83ae02109b6e1ef5f4c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 117, + 191, + 493, + 321.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 117, + 321.0, + 493, + 451.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 117, + 451.0, + 493, + 581.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 600, + 504, + 623 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "Figure 13: Transition of maximum singular values of GCN during training using Noisy PubMed.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "spans": [ + { + "bbox": [ + 105, + 610, + 506, + 625 + ], + "score": 1.0, + "content": "Top left: 1 layer. Top right: 3 layers. Middle left: 5 layers. Middle right: 7 layers. Bottom: 9 layers.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 299, + 487, + 477 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 299, + 487, + 477 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 299, + 487, + 477 + ], + "spans": [ + { + "bbox": [ + 122, + 299, + 487, + 477 + ], + "score": 0.849, + "type": "image", + "image_path": "8d0df2fb98721b929112213b1bfbe51f28bd6ef4fb7b8349a5cec2e5bf926177.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 299, + 487, + 358.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 358.3333333333333, + 487, + 417.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 417.66666666666663, + 487, + 476.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 493, + 506, + 516 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 492, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 507 + ], + "score": 1.0, + "content": "Figure 14: Logarithm of relative perpendicular component and prediction accuracy. Left: Noisy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 504, + 502, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 239, + 516 + ], + "score": 1.0, + "content": "CiteSeer. Right: Noisy PubMed.", + "type": "text" + }, + { + "bbox": [ + 239, + 506, + 246, + 516 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 504, + 347, + 516 + ], + "score": 1.0, + "content": "in the title represents the", + "type": "text" + }, + { + "bbox": [ + 347, + 506, + 354, + 516 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 504, + 502, + 516 + ], + "score": 1.0, + "content": "-value for the Pearson R coefficients.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ], + "page_idx": 36, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 122, + 299, + 487, + 477 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 122, + 299, + 487, + 477 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 299, + 487, + 477 + ], + "spans": [ + { + "bbox": [ + 122, + 299, + 487, + 477 + ], + "score": 0.849, + "type": "image", + "image_path": "8d0df2fb98721b929112213b1bfbe51f28bd6ef4fb7b8349a5cec2e5bf926177.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 122, + 299, + 487, + 358.3333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 122, + 358.3333333333333, + 487, + 417.66666666666663 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 122, + 417.66666666666663, + 487, + 476.99999999999994 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 493, + 506, + 516 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 492, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 505, + 507 + ], + "score": 1.0, + "content": "Figure 14: Logarithm of relative perpendicular component and prediction accuracy. Left: Noisy", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 504, + 502, + 516 + ], + "spans": [ + { + "bbox": [ + 106, + 504, + 239, + 516 + ], + "score": 1.0, + "content": "CiteSeer. Right: Noisy PubMed.", + "type": "text" + }, + { + "bbox": [ + 239, + 506, + 246, + 516 + ], + "score": 0.78, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 504, + 347, + 516 + ], + "score": 1.0, + "content": "in the title represents the", + "type": "text" + }, + { + "bbox": [ + 347, + 506, + 354, + 516 + ], + "score": 0.8, + "content": "p", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 504, + 502, + 516 + ], + "score": 1.0, + "content": "-value for the Pearson R coefficients.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/S1ldO2EFPr/S1ldO2EFPr_model.json b/parse/train/S1ldO2EFPr/S1ldO2EFPr_model.json new file mode 100644 index 0000000000000000000000000000000000000000..0c3e925b61b95b37a93c764864c98ba124afd787 --- /dev/null +++ b/parse/train/S1ldO2EFPr/S1ldO2EFPr_model.json @@ -0,0 +1,67123 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 651, + 1302, + 651, + 1302, + 1231, + 398, + 1231 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 299, + 1356, + 1403, + 1356, + 1403, + 1570, + 299, + 1570 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1586, + 1404, + 1586, + 1404, + 1982, + 298, + 1982 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 299, + 219, + 1396, + 219, + 1396, + 324, + 299, + 324 + ], + "score": 0.965 + }, + { + "category_id": 2, + "poly": [ + 329, + 2006, + 1210, + 2006, + 1210, + 2034, + 329, + 2034 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 302, + 1288, + 573, + 1288, + 573, + 1322, + 302, + 1322 + ], + "score": 0.889 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 104, + 299, + 104 + ], + "score": 0.882 + }, + { + "category_id": 0, + "poly": [ + 773, + 584, + 927, + 584, + 927, + 617, + 773, + 617 + ], + "score": 0.868 + }, + { + "category_id": 1, + "poly": [ + 315, + 372, + 969, + 372, + 969, + 503, + 315, + 503 + ], + "score": 0.75 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 857, + 2089, + 857, + 2112, + 841, + 2112 + ], + "score": 0.697 + }, + { + "category_id": 15, + "poly": [ + 298.0, + 218.0, + 1404.0, + 218.0, + 1404.0, + 270.0, + 298.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 275.0, + 1306.0, + 275.0, + 1306.0, + 328.0, + 295.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 2000.0, + 1216.0, + 2000.0, + 1216.0, + 2040.0, + 332.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 579.0, + 1284.0, + 579.0, + 1330.0, + 294.0, + 1330.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": [ + 768.0, + 580.0, + 934.0, + 580.0, + 934.0, + 623.0, + 768.0, + 623.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": [ + 395.0, + 652.0, + 1304.0, + 652.0, + 1304.0, + 687.0, + 395.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 684.0, + 1305.0, + 684.0, + 1305.0, + 717.0, + 395.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 710.0, + 1307.0, + 710.0, + 1307.0, + 750.0, + 392.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 743.0, + 1307.0, + 743.0, + 1307.0, + 779.0, + 394.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 774.0, + 1307.0, + 774.0, + 1307.0, + 808.0, + 393.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 806.0, + 1306.0, + 806.0, + 1306.0, + 838.0, + 393.0, + 838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 835.0, + 1304.0, + 835.0, + 1304.0, + 870.0, + 394.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 868.0, + 1304.0, + 868.0, + 1304.0, + 897.0, + 395.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 895.0, + 1305.0, + 895.0, + 1305.0, + 930.0, + 394.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 926.0, + 1307.0, + 926.0, + 1307.0, + 960.0, + 392.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 958.0, + 1305.0, + 958.0, + 1305.0, + 990.0, + 393.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 987.0, + 1305.0, + 987.0, + 1305.0, + 1020.0, + 393.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1016.0, + 1306.0, + 1016.0, + 1306.0, + 1053.0, + 393.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1047.0, + 1305.0, + 1047.0, + 1305.0, + 1080.0, + 394.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1078.0, + 1306.0, + 1078.0, + 1306.0, + 1113.0, + 393.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1107.0, + 1305.0, + 1107.0, + 1305.0, + 1143.0, + 394.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1139.0, + 1305.0, + 1139.0, + 1305.0, + 1174.0, + 395.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1169.0, + 1306.0, + 1169.0, + 1306.0, + 1206.0, + 395.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1201.0, + 1230.0, + 1201.0, + 1230.0, + 1233.0, + 395.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1356.0, + 1404.0, + 1356.0, + 1404.0, + 1391.0, + 295.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1388.0, + 1405.0, + 1388.0, + 1405.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1418.0, + 1405.0, + 1418.0, + 1405.0, + 1452.0, + 293.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1483.0, + 293.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1475.0, + 1407.0, + 1475.0, + 1407.0, + 1515.0, + 293.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1508.0, + 1407.0, + 1508.0, + 1407.0, + 1544.0, + 293.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1536.0, + 682.0, + 1536.0, + 682.0, + 1576.0, + 294.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1584.0, + 1404.0, + 1584.0, + 1404.0, + 1623.0, + 295.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 1404.0, + 1616.0, + 1404.0, + 1652.0, + 294.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1648.0, + 1402.0, + 1648.0, + 1402.0, + 1681.0, + 296.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1677.0, + 1404.0, + 1677.0, + 1404.0, + 1713.0, + 296.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1708.0, + 1405.0, + 1708.0, + 1405.0, + 1744.0, + 294.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1736.0, + 1405.0, + 1736.0, + 1405.0, + 1775.0, + 293.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1766.0, + 1408.0, + 1766.0, + 1408.0, + 1806.0, + 292.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1796.0, + 1408.0, + 1796.0, + 1408.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1827.0, + 1408.0, + 1827.0, + 1408.0, + 1868.0, + 292.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1858.0, + 1405.0, + 1858.0, + 1405.0, + 1896.0, + 292.0, + 1896.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1890.0, + 1404.0, + 1890.0, + 1404.0, + 1926.0, + 294.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1921.0, + 1405.0, + 1921.0, + 1405.0, + 1957.0, + 294.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1949.0, + 1220.0, + 1949.0, + 1220.0, + 1989.0, + 292.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 373.0, + 684.0, + 373.0, + 684.0, + 409.0, + 310.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 403.0, + 972.0, + 403.0, + 972.0, + 446.0, + 313.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 435.0, + 896.0, + 435.0, + 896.0, + 474.0, + 313.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 466.0, + 947.0, + 466.0, + 947.0, + 510.0, + 310.0, + 510.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 230, + 1404, + 230, + 1404, + 627, + 298, + 627 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1650, + 1404, + 1650, + 1404, + 1957, + 298, + 1957 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 871, + 1404, + 871, + 1404, + 1152, + 297, + 1152 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 642, + 1403, + 642, + 1403, + 858, + 298, + 858 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 368, + 1225, + 1404, + 1225, + 1404, + 1537, + 368, + 1537 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1400, + 1972, + 1400, + 2034, + 297, + 2034 + ], + "score": 0.938 + }, + { + "category_id": 1, + "poly": [ + 298, + 1166, + 664, + 1166, + 664, + 1197, + 298, + 1197 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 300, + 1580, + 588, + 1580, + 588, + 1617, + 300, + 1617 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.71 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.157 + }, + { + "category_id": 13, + "poly": [ + 470, + 1010, + 614, + 1010, + 614, + 1062, + 470, + 1062 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { C \\sqrt { \\frac { N p } { \\log ( N / \\varepsilon ) } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 483, + 965, + 628, + 965, + 628, + 1009, + 483, + 1009 + ], + "score": 0.93, + "latex": "\\frac { \\log N } { p N } = o ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 668, + 533, + 780, + 533, + 780, + 568, + 668, + 568 + ], + "score": 0.93, + "latex": "{ \\cal O } ( ( s \\lambda ) ^ { \\widehat { L } } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 934, + 359, + 934, + 359, + 968, + 298, + 968 + ], + "score": 0.9, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 355, + 1060, + 419, + 1060, + 419, + 1088, + 355, + 1088 + ], + "score": 0.85, + "latex": "1 - \\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 504, + 1062, + 529, + 1062, + 529, + 1086, + 504, + 1086 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 489, + 935, + 517, + 935, + 517, + 961, + 489, + 961 + ], + "score": 0.82, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 811, + 970, + 838, + 970, + 838, + 997, + 811, + 997 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1353, + 567, + 1375, + 567, + 1375, + 593, + 1353, + 593 + ], + "score": 0.8, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1197, + 940, + 1214, + 940, + 1214, + 966, + 1197, + 966 + ], + "score": 0.74, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1381, + 536, + 1401, + 536, + 1401, + 563, + 1381, + 563 + ], + "score": 0.72, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 862, + 540, + 879, + 540, + 879, + 562, + 862, + 562 + ], + "score": 0.71, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1578.0, + 593.0, + 1578.0, + 593.0, + 1622.0, + 292.0, + 1622.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": [ + 296.0, + 232.0, + 1401.0, + 232.0, + 1401.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 262.0, + 1405.0, + 262.0, + 1405.0, + 298.0, + 293.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1404.0, + 320.0, + 1404.0, + 360.0, + 293.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 388.0, + 294.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 381.0, + 1406.0, + 381.0, + 1406.0, + 419.0, + 292.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 414.0, + 1405.0, + 414.0, + 1405.0, + 448.0, + 292.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 443.0, + 1406.0, + 443.0, + 1406.0, + 479.0, + 293.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 474.0, + 1406.0, + 474.0, + 1406.0, + 510.0, + 293.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 504.0, + 1405.0, + 504.0, + 1405.0, + 540.0, + 294.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 532.0, + 667.0, + 532.0, + 667.0, + 572.0, + 293.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 532.0, + 861.0, + 532.0, + 861.0, + 572.0, + 781.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 532.0, + 1380.0, + 532.0, + 1380.0, + 572.0, + 880.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 532.0, + 1408.0, + 532.0, + 1408.0, + 572.0, + 1402.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 563.0, + 1352.0, + 563.0, + 1352.0, + 602.0, + 292.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1376.0, + 563.0, + 1407.0, + 563.0, + 1407.0, + 602.0, + 1376.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 595.0, + 1271.0, + 595.0, + 1271.0, + 632.0, + 294.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1686.0, + 294.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1683.0, + 1405.0, + 1683.0, + 1405.0, + 1714.0, + 296.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1708.0, + 1408.0, + 1708.0, + 1408.0, + 1750.0, + 292.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1405.0, + 1742.0, + 1405.0, + 1778.0, + 294.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1773.0, + 1406.0, + 1773.0, + 1406.0, + 1809.0, + 294.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1804.0, + 1408.0, + 1804.0, + 1408.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1870.0, + 293.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1865.0, + 1408.0, + 1865.0, + 1408.0, + 1900.0, + 293.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1893.0, + 1406.0, + 1893.0, + 1406.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1926.0, + 605.0, + 1926.0, + 605.0, + 1961.0, + 294.0, + 1961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 873.0, + 1404.0, + 873.0, + 1404.0, + 906.0, + 297.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 898.0, + 1405.0, + 898.0, + 1405.0, + 941.0, + 291.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 297.0, + 931.0, + 297.0, + 972.0, + 294.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 931.0, + 488.0, + 931.0, + 488.0, + 972.0, + 360.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 931.0, + 1196.0, + 931.0, + 1196.0, + 972.0, + 518.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 972.0, + 1215.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 967.0, + 810.0, + 967.0, + 810.0, + 1008.0, + 629.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 967.0, + 1406.0, + 967.0, + 1406.0, + 1008.0, + 839.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1018.0, + 469.0, + 1018.0, + 469.0, + 1053.0, + 297.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1009.0, + 1409.0, + 1009.0, + 1409.0, + 1063.0, + 615.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1059.0, + 354.0, + 1059.0, + 354.0, + 1092.0, + 295.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 1059.0, + 503.0, + 1059.0, + 503.0, + 1092.0, + 420.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1059.0, + 1404.0, + 1059.0, + 1404.0, + 1092.0, + 530.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1091.0, + 1402.0, + 1091.0, + 1402.0, + 1124.0, + 294.0, + 1124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1119.0, + 918.0, + 1119.0, + 918.0, + 1156.0, + 295.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 960.5, + 551.0, + 960.5, + 551.0, + 1005.5, + 290.0, + 1005.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 487.0, + 982.0, + 544.0, + 982.0, + 544.0, + 1013.0, + 487.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1404.0, + 641.0, + 1404.0, + 676.0, + 294.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1405.0, + 672.0, + 1405.0, + 710.0, + 293.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 1403.0, + 702.0, + 1403.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 734.0, + 1403.0, + 734.0, + 1403.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 765.0, + 1403.0, + 765.0, + 1403.0, + 799.0, + 294.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 793.0, + 1403.0, + 793.0, + 1403.0, + 831.0, + 293.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 824.0, + 1035.0, + 824.0, + 1035.0, + 861.0, + 294.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1224.0, + 1401.0, + 1224.0, + 1401.0, + 1259.0, + 368.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1256.0, + 1299.0, + 1256.0, + 1299.0, + 1291.0, + 393.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1334.0, + 380.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1329.0, + 1405.0, + 1329.0, + 1405.0, + 1362.0, + 395.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1361.0, + 1401.0, + 1361.0, + 1401.0, + 1394.0, + 395.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1400.0, + 1403.0, + 1400.0, + 1403.0, + 1435.0, + 376.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1433.0, + 1396.0, + 1433.0, + 1396.0, + 1465.0, + 393.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 1473.0, + 1402.0, + 1473.0, + 1402.0, + 1510.0, + 367.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1506.0, + 686.0, + 1506.0, + 686.0, + 1539.0, + 395.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 1404.0, + 1970.0, + 1404.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1404.0, + 2002.0, + 1404.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1163.0, + 667.0, + 1163.0, + 667.0, + 1201.0, + 296.0, + 1201.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 367, + 1404, + 367, + 1404, + 857, + 298, + 857 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1416, + 1405, + 1416, + 1405, + 1734, + 297, + 1734 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 872, + 1404, + 872, + 1404, + 1238, + 297, + 1238 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 229, + 1402, + 229, + 1402, + 352, + 299, + 352 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1907, + 1403, + 1907, + 1403, + 2036, + 298, + 2036 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1833, + 1399, + 1833, + 1399, + 1895, + 299, + 1895 + ], + "score": 0.948 + }, + { + "category_id": 0, + "poly": [ + 300, + 1287, + 908, + 1287, + 908, + 1323, + 300, + 1323 + ], + "score": 0.919 + }, + { + "category_id": 0, + "poly": [ + 299, + 1358, + 491, + 1358, + 491, + 1390, + 299, + 1390 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 300, + 1774, + 621, + 1774, + 621, + 1806, + 300, + 1806 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.573 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.532 + }, + { + "category_id": 13, + "poly": [ + 1187, + 1908, + 1358, + 1908, + 1358, + 1942, + 1187, + 1942 + ], + "score": 0.92, + "latex": "W _ { l h } \\ \\in \\ \\mathbb { R } ^ { C \\times C }" + }, + { + "category_id": 13, + "poly": [ + 1025, + 1418, + 1245, + 1418, + 1245, + 1452, + 1025, + 1452 + ], + "score": 0.92, + "latex": "[ N ] : = \\{ 1 , \\dots , N \\}" + }, + { + "category_id": 13, + "poly": [ + 783, + 1419, + 888, + 1419, + 888, + 1451, + 783, + 1451 + ], + "score": 0.92, + "latex": "N \\in { \\mathbb { N } } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 999, + 1479, + 1091, + 1479, + 1091, + 1512, + 999, + 1512 + ], + "score": 0.92, + "latex": "c \\in [ C ]" + }, + { + "category_id": 13, + "poly": [ + 397, + 1538, + 557, + 1538, + 557, + 1573, + 397, + 1573 + ], + "score": 0.92, + "latex": "\\langle u , v \\rangle : = u ^ { \\top } v" + }, + { + "category_id": 13, + "poly": [ + 653, + 1480, + 761, + 1480, + 761, + 1510, + 653, + 1510 + ], + "score": 0.92, + "latex": "X _ { n c } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1264, + 1703, + 1314, + 1703, + 1314, + 1735, + 1264, + 1735 + ], + "score": 0.92, + "latex": "P | _ { V }" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1943, + 1311, + 1943, + 1311, + 1975, + 1043, + 1975 + ], + "score": 0.92, + "latex": "f _ { l } ( X ) \\ : = \\ \\mathrm { M L P } _ { l } ( P X )" + }, + { + "category_id": 13, + "poly": [ + 600, + 1538, + 720, + 1538, + 720, + 1571, + 600, + 1571 + ], + "score": 0.92, + "latex": "u , v \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 397, + 1700, + 571, + 1700, + 571, + 1730, + 397, + 1730 + ], + "score": 0.91, + "latex": "P : \\mathbb { R } ^ { \\tilde { N } } \\mathbb { R } ^ { M }" + }, + { + "category_id": 13, + "poly": [ + 893, + 1449, + 987, + 1449, + 987, + 1480, + 893, + 1480 + ], + "score": 0.91, + "latex": "n \\in [ N ]" + }, + { + "category_id": 13, + "poly": [ + 844, + 1480, + 944, + 1480, + 944, + 1512, + 844, + 1512 + ], + "score": 0.91, + "latex": "n \\in [ N ]" + }, + { + "category_id": 13, + "poly": [ + 404, + 1479, + 490, + 1479, + 490, + 1509, + 404, + 1509 + ], + "score": 0.91, + "latex": "X \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1256, + 1446, + 1393, + 1446, + 1393, + 1477, + 1256, + 1477 + ], + "score": 0.91, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 731, + 1451, + 815, + 1451, + 815, + 1479, + 731, + 1479 + ], + "score": 0.91, + "latex": "v _ { n } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 506, + 1450, + 575, + 1450, + 575, + 1479, + 506, + 1479 + ], + "score": 0.91, + "latex": "v \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1141, + 2000, + 1399, + 2000, + 1399, + 2030, + 1141, + 2030 + ], + "score": 0.9, + "latex": "\\sigma : \\mathbb { R } ^ { \\dot { N } \\times C } \\mathbb { R } ^ { N \\times \\dot { C } }" + }, + { + "category_id": 13, + "poly": [ + 711, + 1908, + 860, + 1908, + 860, + 1939, + 711, + 1939 + ], + "score": 0.9, + "latex": "P \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1448, + 389, + 1448, + 389, + 1477, + 297, + 1477 + ], + "score": 0.9, + "latex": "v \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 774, + 1538, + 1007, + 1538, + 1007, + 1571, + 774, + 1571 + ], + "score": 0.9, + "latex": "\\langle X , Y \\rangle : = \\mathrm { t r } ( X ^ { T } Y )" + }, + { + "category_id": 13, + "poly": [ + 969, + 1569, + 1067, + 1569, + 1067, + 1599, + 969, + 1599 + ], + "score": 0.9, + "latex": "w \\in \\mathbb { R } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 577, + 1510, + 628, + 1510, + 628, + 1542, + 577, + 1542 + ], + "score": 0.9, + "latex": "\\langle \\cdot , \\cdot \\rangle" + }, + { + "category_id": 13, + "poly": [ + 719, + 1701, + 821, + 1701, + 821, + 1731, + 719, + 1731 + ], + "score": 0.89, + "latex": "V \\subset \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 721, + 1939, + 994, + 1939, + 994, + 1974, + 721, + 1974 + ], + "score": 0.89, + "latex": "f _ { l } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { \\mathbf { \\tilde { N } } \\times C }" + }, + { + "category_id": 13, + "poly": [ + 506, + 2002, + 1050, + 2002, + 1050, + 2037, + 506, + 2037 + ], + "score": 0.89, + "latex": "\\mathrm { M L P } _ { l } ( X ) : = \\sigma ( \\cdots \\sigma ( \\sigma ( \\dot { X } ) \\bar { W } _ { l 1 } ) \\bar { W } _ { l 2 } \\cdot \\cdot \\cdot W _ { l H _ { l } } )" + }, + { + "category_id": 13, + "poly": [ + 675, + 1668, + 828, + 1668, + 828, + 1701, + 675, + 1701 + ], + "score": 0.89, + "latex": "I _ { N } \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 760, + 1605, + 981, + 1605, + 981, + 1637, + 760, + 1637 + ], + "score": 0.88, + "latex": "( v \\otimes w ) _ { n c } : = v _ { n } w _ { c } ." + }, + { + "category_id": 13, + "poly": [ + 296, + 1971, + 594, + 1971, + 594, + 2003, + 296, + 2003 + ], + "score": 0.88, + "latex": "\\mathrm { M L P } _ { l } : \\mathbb { R } ^ { N \\times C } \\to \\dot { \\mathbb { R } } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 953, + 1636, + 1400, + 1636, + 1400, + 1671, + 953, + 1671 + ], + "score": 0.88, + "latex": "\\mathrm { d i a g } ( v ) : = ( v _ { n } \\delta _ { n m } ) _ { n , m \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 821, + 1570, + 916, + 1570, + 916, + 1599, + 821, + 1599 + ], + "score": 0.87, + "latex": "v \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 455, + 1944, + 570, + 1944, + 570, + 1972, + 455, + 1972 + ], + "score": 0.87, + "latex": "h \\in \\lceil H _ { l } \\rceil" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1538, + 1223, + 1538, + 1223, + 1569, + 1053, + 1569 + ], + "score": 0.87, + "latex": "X , Y \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1943, + 397, + 1943, + 397, + 1973, + 298, + 1973 + ], + "score": 0.87, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 1082, + 1569, + 1266, + 1569, + 1266, + 1599, + 1082, + 1599 + ], + "score": 0.87, + "latex": "v \\otimes w \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1911, + 535, + 1911, + 535, + 1943, + 346, + 1943 + ], + "score": 0.87, + "latex": "N , C , H _ { l } \\ \\in \\ \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1603, + 1173, + 1603, + 1173, + 1634, + 1036, + 1634 + ], + "score": 0.86, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 652, + 1637, + 679, + 1637, + 679, + 1663, + 652, + 1663 + ], + "score": 0.85, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 498, + 1574, + 523, + 1574, + 523, + 1598, + 498, + 1598 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 342, + 1419, + 385, + 1419, + 385, + 1448, + 342, + 1448 + ], + "score": 0.84, + "latex": "\\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 1143, + 1704, + 1168, + 1704, + 1168, + 1730, + 1143, + 1730 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 843, + 1636, + 941, + 1636, + 941, + 1665, + 843, + 1665 + ], + "score": 0.84, + "latex": "v \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 1223, + 1673, + 1251, + 1673, + 1251, + 1699, + 1223, + 1699 + ], + "score": 0.82, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1199, + 1703, + 1225, + 1703, + 1225, + 1730, + 1199, + 1730 + ], + "score": 0.81, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1185, + 1600, + 1400, + 1600, + 1400, + 1637, + 1185, + 1637 + ], + "score": 0.8, + "latex": "\\| X \\| _ { \\mathrm { F } } : = \\langle X , X \\rangle ^ { \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1609, + 634, + 1609, + 634, + 1633, + 609, + 1633 + ], + "score": 0.78, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 542, + 1611, + 559, + 1611, + 559, + 1633, + 542, + 1633 + ], + "score": 0.76, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 547, + 1911, + 654, + 1911, + 654, + 1944, + 547, + 1944 + ], + "score": 0.74, + "latex": "( l \\in \\mathbb { N } _ { + } )" + }, + { + "category_id": 13, + "poly": [ + 642, + 1677, + 659, + 1677, + 659, + 1699, + 642, + 1699 + ], + "score": 0.67, + "latex": "v" + }, + { + "category_id": 13, + "poly": [ + 667, + 1974, + 679, + 1974, + 679, + 2000, + 667, + 2000 + ], + "score": 0.66, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1975, + 1260, + 1975, + 1260, + 1999, + 1220, + 1999 + ], + "score": 0.61, + "latex": "\\mathrm { { . x u } }" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1540, + 1273, + 1540, + 1273, + 1570, + 1233, + 1570 + ], + "score": 0.53, + "latex": "{ \\bf 1 } _ { P }" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1286.0, + 913.0, + 1286.0, + 913.0, + 1326.0, + 293.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1355.0, + 495.0, + 1355.0, + 495.0, + 1395.0, + 294.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1771.0, + 627.0, + 1771.0, + 627.0, + 1811.0, + 294.0, + 1811.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, + 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, + 369.0, + 1404.0, + 369.0, + 1404.0, + 403.0, + 296.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 399.0, + 1404.0, + 399.0, + 1404.0, + 434.0, + 294.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 429.0, + 1405.0, + 429.0, + 1405.0, + 466.0, + 291.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 461.0, + 1404.0, + 461.0, + 1404.0, + 495.0, + 294.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 488.0, + 1406.0, + 488.0, + 1406.0, + 528.0, + 292.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 522.0, + 1405.0, + 522.0, + 1405.0, + 557.0, + 294.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 553.0, + 1405.0, + 553.0, + 1405.0, + 587.0, + 294.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 582.0, + 1404.0, + 582.0, + 1404.0, + 617.0, + 294.0, + 617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 613.0, + 1404.0, + 613.0, + 1404.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 643.0, + 1404.0, + 643.0, + 1404.0, + 677.0, + 293.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 673.0, + 1405.0, + 673.0, + 1405.0, + 708.0, + 293.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 703.0, + 1406.0, + 703.0, + 1406.0, + 740.0, + 292.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 732.0, + 1406.0, + 732.0, + 1406.0, + 772.0, + 292.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 764.0, + 1402.0, + 764.0, + 1402.0, + 799.0, + 294.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 794.0, + 1405.0, + 794.0, + 1405.0, + 833.0, + 293.0, + 833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 827.0, + 669.0, + 827.0, + 669.0, + 862.0, + 296.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1413.0, + 341.0, + 1413.0, + 341.0, + 1455.0, + 292.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1413.0, + 782.0, + 1413.0, + 782.0, + 1455.0, + 386.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 1413.0, + 1024.0, + 1413.0, + 1024.0, + 1455.0, + 889.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1413.0, + 1406.0, + 1413.0, + 1406.0, + 1455.0, + 1246.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1438.0, + 296.0, + 1438.0, + 296.0, + 1485.0, + 287.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1438.0, + 505.0, + 1438.0, + 505.0, + 1485.0, + 390.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1438.0, + 730.0, + 1438.0, + 730.0, + 1485.0, + 576.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1438.0, + 892.0, + 1438.0, + 892.0, + 1485.0, + 816.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 988.0, + 1438.0, + 1255.0, + 1438.0, + 1255.0, + 1485.0, + 988.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1438.0, + 1406.0, + 1438.0, + 1406.0, + 1485.0, + 1394.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1477.0, + 403.0, + 1477.0, + 403.0, + 1514.0, + 295.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1477.0, + 652.0, + 1477.0, + 652.0, + 1514.0, + 491.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1477.0, + 843.0, + 1477.0, + 843.0, + 1514.0, + 762.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1477.0, + 998.0, + 1477.0, + 998.0, + 1514.0, + 945.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1477.0, + 1406.0, + 1477.0, + 1406.0, + 1514.0, + 1092.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1507.0, + 576.0, + 1507.0, + 576.0, + 1544.0, + 294.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1507.0, + 1403.0, + 1507.0, + 1403.0, + 1544.0, + 629.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1528.0, + 396.0, + 1528.0, + 396.0, + 1579.0, + 289.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1528.0, + 599.0, + 1528.0, + 599.0, + 1579.0, + 558.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1528.0, + 773.0, + 1528.0, + 773.0, + 1579.0, + 721.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1528.0, + 1052.0, + 1528.0, + 1052.0, + 1579.0, + 1008.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1528.0, + 1232.0, + 1528.0, + 1232.0, + 1579.0, + 1224.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1528.0, + 1411.0, + 1528.0, + 1411.0, + 1579.0, + 1274.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1561.0, + 497.0, + 1561.0, + 497.0, + 1609.0, + 290.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1561.0, + 820.0, + 1561.0, + 820.0, + 1609.0, + 524.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1561.0, + 968.0, + 1561.0, + 968.0, + 1609.0, + 917.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 1561.0, + 1081.0, + 1561.0, + 1081.0, + 1609.0, + 1068.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1561.0, + 1410.0, + 1561.0, + 1410.0, + 1609.0, + 1267.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1599.0, + 541.0, + 1599.0, + 541.0, + 1643.0, + 290.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 1599.0, + 608.0, + 1599.0, + 608.0, + 1643.0, + 560.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1599.0, + 759.0, + 1599.0, + 759.0, + 1643.0, + 635.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1599.0, + 1035.0, + 1599.0, + 1035.0, + 1643.0, + 982.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1599.0, + 1184.0, + 1599.0, + 1184.0, + 1643.0, + 1174.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1599.0, + 1407.0, + 1599.0, + 1407.0, + 1643.0, + 1401.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 285.0, + 1623.0, + 651.0, + 1623.0, + 651.0, + 1682.0, + 285.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1623.0, + 842.0, + 1623.0, + 842.0, + 1682.0, + 680.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1623.0, + 952.0, + 1623.0, + 952.0, + 1682.0, + 942.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1623.0, + 1412.0, + 1623.0, + 1412.0, + 1682.0, + 1401.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1661.0, + 641.0, + 1661.0, + 641.0, + 1708.0, + 291.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1661.0, + 674.0, + 1661.0, + 674.0, + 1708.0, + 660.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1661.0, + 1222.0, + 1661.0, + 1222.0, + 1708.0, + 829.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1661.0, + 1408.0, + 1661.0, + 1408.0, + 1708.0, + 1252.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1694.0, + 396.0, + 1694.0, + 396.0, + 1742.0, + 290.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1694.0, + 718.0, + 1694.0, + 718.0, + 1742.0, + 572.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1694.0, + 1142.0, + 1694.0, + 1142.0, + 1742.0, + 822.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1694.0, + 1198.0, + 1694.0, + 1198.0, + 1742.0, + 1169.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1694.0, + 1263.0, + 1694.0, + 1263.0, + 1742.0, + 1226.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 1694.0, + 1330.0, + 1694.0, + 1330.0, + 1742.0, + 1315.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 871.0, + 1405.0, + 871.0, + 1405.0, + 907.0, + 294.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 902.0, + 1404.0, + 902.0, + 1404.0, + 939.0, + 292.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 932.0, + 1405.0, + 932.0, + 1405.0, + 970.0, + 294.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 960.0, + 1405.0, + 960.0, + 1405.0, + 1002.0, + 292.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 996.0, + 1406.0, + 996.0, + 1406.0, + 1027.0, + 292.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1026.0, + 1404.0, + 1026.0, + 1404.0, + 1060.0, + 294.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1059.0, + 1401.0, + 1059.0, + 1401.0, + 1089.0, + 295.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1084.0, + 1402.0, + 1084.0, + 1402.0, + 1121.0, + 292.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1116.0, + 1405.0, + 1116.0, + 1405.0, + 1153.0, + 294.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1146.0, + 1406.0, + 1146.0, + 1406.0, + 1184.0, + 292.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1176.0, + 1404.0, + 1176.0, + 1404.0, + 1213.0, + 292.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1208.0, + 874.0, + 1208.0, + 874.0, + 1241.0, + 292.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1407.0, + 230.0, + 1407.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 327.0, + 294.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 319.0, + 1126.0, + 319.0, + 1126.0, + 359.0, + 293.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1902.0, + 345.0, + 1902.0, + 345.0, + 1948.0, + 291.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1902.0, + 546.0, + 1902.0, + 546.0, + 1948.0, + 536.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1902.0, + 710.0, + 1902.0, + 710.0, + 1948.0, + 655.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1902.0, + 1186.0, + 1902.0, + 1186.0, + 1948.0, + 861.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 1902.0, + 1409.0, + 1902.0, + 1409.0, + 1948.0, + 1359.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1929.0, + 297.0, + 1929.0, + 297.0, + 1982.0, + 286.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 1929.0, + 454.0, + 1929.0, + 454.0, + 1982.0, + 398.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 1929.0, + 720.0, + 1929.0, + 720.0, + 1982.0, + 571.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1929.0, + 1042.0, + 1929.0, + 1042.0, + 1982.0, + 995.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1929.0, + 1412.0, + 1929.0, + 1412.0, + 1982.0, + 1312.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1963.0, + 295.0, + 1963.0, + 295.0, + 2011.0, + 289.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 595.0, + 1963.0, + 666.0, + 1963.0, + 666.0, + 2011.0, + 595.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1963.0, + 1219.0, + 1963.0, + 1219.0, + 2011.0, + 680.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1963.0, + 1408.0, + 1963.0, + 1408.0, + 2011.0, + 1261.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1997.0, + 505.0, + 1997.0, + 505.0, + 2037.0, + 288.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1997.0, + 1140.0, + 1997.0, + 1140.0, + 2037.0, + 1051.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1997.0, + 1409.0, + 1997.0, + 1409.0, + 2037.0, + 1400.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1834.0, + 1403.0, + 1834.0, + 1403.0, + 1869.0, + 296.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 903.0, + 1864.0, + 903.0, + 1898.0, + 294.0, + 1898.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 532, + 1405, + 532, + 1405, + 719, + 297, + 719 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 804, + 1404, + 804, + 1404, + 978, + 298, + 978 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1378, + 1405, + 1378, + 1405, + 1569, + 297, + 1569 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2035, + 299, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1404, + 228, + 1404, + 332, + 297, + 332 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 1573, + 1405, + 1573, + 1405, + 1706, + 297, + 1706 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 298, + 1708, + 1403, + 1708, + 1403, + 1834, + 298, + 1834 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 299, + 1034, + 1404, + 1034, + 1404, + 1128, + 299, + 1128 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 303, + 344, + 1396, + 344, + 1396, + 439, + 303, + 439 + ], + "score": 0.939 + }, + { + "category_id": 1, + "poly": [ + 298, + 1141, + 1406, + 1141, + 1406, + 1242, + 298, + 1242 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 299, + 752, + 537, + 752, + 537, + 785, + 299, + 785 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.905 + }, + { + "category_id": 0, + "poly": [ + 301, + 1874, + 677, + 1874, + 677, + 1909, + 301, + 1909 + ], + "score": 0.903 + }, + { + "category_id": 1, + "poly": [ + 294, + 981, + 1394, + 981, + 1394, + 1017, + 294, + 1017 + ], + "score": 0.882 + }, + { + "category_id": 1, + "poly": [ + 298, + 480, + 1063, + 480, + 1063, + 513, + 298, + 513 + ], + "score": 0.858 + }, + { + "category_id": 1, + "poly": [ + 302, + 443, + 1349, + 443, + 1349, + 477, + 302, + 477 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 299, + 1285, + 1399, + 1285, + 1399, + 1360, + 299, + 1360 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 299, + 1247, + 1403, + 1247, + 1403, + 1281, + 299, + 1281 + ], + "score": 0.568 + }, + { + "category_id": 13, + "poly": [ + 425, + 1142, + 580, + 1142, + 580, + 1177, + 425, + 1177 + ], + "score": 0.95, + "latex": "d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 686, + 482, + 686, + 482, + 723, + 298, + 723 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\lambda = \\operatorname* { s u p } _ { \\mu } \\left| g ( \\mu ) \\right| } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 753, + 1668, + 1087, + 1668, + 1087, + 1707, + 753, + 1707 + ], + "score": 0.93, + "latex": "d _ { \\mathcal { M } } ( X ^ { ( l + 1 ) } ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X ^ { ( l ) } ) ." + }, + { + "category_id": 13, + "poly": [ + 802, + 442, + 929, + 442, + 929, + 479, + 802, + 479 + ], + "score": 0.93, + "latex": "( e _ { m } ) _ { m \\in [ M ] }" + }, + { + "category_id": 13, + "poly": [ + 722, + 911, + 906, + 911, + 906, + 950, + 722, + 950 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { s _ { l } : = \\prod _ { h = 1 } ^ { H _ { l } } s _ { l h } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 299, + 844, + 427, + 844, + 427, + 881, + 299, + 881 + ], + "score": 0.92, + "latex": "( e _ { m } ) _ { m \\in [ M ] }" + }, + { + "category_id": 13, + "poly": [ + 1111, + 230, + 1400, + 230, + 1400, + 264, + 1111, + 264 + ], + "score": 0.92, + "latex": "\\sigma ( X ) _ { n c } : = \\operatorname* { m a x } ( X _ { n c } , 0 )" + }, + { + "category_id": 13, + "poly": [ + 799, + 1284, + 1058, + 1284, + 1058, + 1323, + 799, + 1323 + ], + "score": 0.92, + "latex": "d _ { \\mathcal { M } } ( X ^ { ( l ) } ) = O ( ( s \\lambda ) ^ { l } )" + }, + { + "category_id": 13, + "poly": [ + 646, + 1381, + 824, + 1381, + 824, + 1415, + 646, + 1415 + ], + "score": 0.92, + "latex": "P | _ { U } : U \\to U" + }, + { + "category_id": 13, + "poly": [ + 1030, + 1446, + 1081, + 1446, + 1081, + 1479, + 1030, + 1479 + ], + "score": 0.92, + "latex": "P | _ { U }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1067, + 388, + 1067, + 388, + 1100, + 298, + 1100 + ], + "score": 0.92, + "latex": "d _ { \\mathcal { M } } ( \\boldsymbol { X } )" + }, + { + "category_id": 13, + "poly": [ + 1256, + 1247, + 1393, + 1247, + 1393, + 1283, + 1256, + 1283 + ], + "score": 0.92, + "latex": "f _ { l } ( X ) \\in \\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 791, + 656, + 852, + 656, + 852, + 689, + 791, + 689 + ], + "score": 0.92, + "latex": "g ( \\Delta )" + }, + { + "category_id": 13, + "poly": [ + 892, + 261, + 1127, + 261, + 1127, + 296, + 892, + 296 + ], + "score": 0.92, + "latex": "X ^ { ( l + 1 ) } : = f _ { l } ( X ^ { ( l ) } )" + }, + { + "category_id": 13, + "poly": [ + 1240, + 1034, + 1404, + 1034, + 1404, + 1069, + 1240, + 1069 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( \\sigma ( \\boldsymbol { X } ) ) \\leq" + }, + { + "category_id": 13, + "poly": [ + 297, + 297, + 464, + 297, + 464, + 328, + 297, + 328 + ], + "score": 0.91, + "latex": "X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 923, + 1770, + 1015, + 1770, + 1015, + 1800, + 923, + 1800 + ], + "score": 0.91, + "latex": "W _ { l } = 1" + }, + { + "category_id": 13, + "poly": [ + 298, + 624, + 433, + 624, + 433, + 654, + 298, + 654 + ], + "score": 0.91, + "latex": "U ^ { \\perp } \\to U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 1096, + 1770, + 1182, + 1770, + 1182, + 1802, + 1096, + 1802 + ], + "score": 0.91, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 498, + 1293, + 682, + 1293, + 682, + 1327, + 498, + 1327 + ], + "score": 0.91, + "latex": "s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }" + }, + { + "category_id": 13, + "poly": [ + 370, + 1636, + 637, + 1636, + 637, + 1671, + 370, + 1671 + ], + "score": 0.91, + "latex": "\\lambda : = \\operatorname* { m a x } _ { n \\in [ N - M ] } \\left| \\lambda _ { n } \\right|" + }, + { + "category_id": 13, + "poly": [ + 804, + 1248, + 887, + 1248, + 887, + 1281, + 804, + 1281 + ], + "score": 0.91, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 340, + 263, + 556, + 263, + 556, + 297, + 340, + 297 + ], + "score": 0.91, + "latex": "n \\in [ N ] , c \\in [ C ]" + }, + { + "category_id": 13, + "poly": [ + 345, + 346, + 450, + 346, + 450, + 377, + 345, + 377 + ], + "score": 0.91, + "latex": "M \\leq N" + }, + { + "category_id": 13, + "poly": [ + 826, + 626, + 892, + 626, + 892, + 657, + 826, + 657 + ], + "score": 0.91, + "latex": "P | _ { U ^ { \\perp } }" + }, + { + "category_id": 13, + "poly": [ + 789, + 1605, + 899, + 1605, + 899, + 1637, + 789, + 1637 + ], + "score": 0.9, + "latex": "M ( \\leq N )" + }, + { + "category_id": 13, + "poly": [ + 699, + 1208, + 756, + 1208, + 756, + 1240, + 699, + 1240 + ], + "score": 0.9, + "latex": "X ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 635, + 808, + 712, + 808, + 712, + 838, + 635, + 838 + ], + "score": 0.9, + "latex": "\\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 683, + 877, + 1111, + 877, + 1111, + 912, + 683, + 912 + ], + "score": 0.9, + "latex": "d _ { \\mathcal { M } } ( X ) : = \\operatorname* { i n f } \\left\\{ \\| X - Y \\| _ { \\mathrm { F } } \\mid Y \\in \\mathcal { M } \\right\\}" + }, + { + "category_id": 13, + "poly": [ + 1129, + 843, + 1270, + 843, + 1270, + 873, + 1129, + 873 + ], + "score": 0.9, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 959, + 481, + 1054, + 481, + 1054, + 509, + 959, + 509 + ], + "score": 0.9, + "latex": "P u \\in U" + }, + { + "category_id": 13, + "poly": [ + 963, + 1606, + 1346, + 1606, + 1346, + 1637, + 963, + 1637 + ], + "score": 0.9, + "latex": "\\lambda _ { N - M } < \\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1007, + 297, + 1059, + 297, + 1059, + 327, + 1007, + 327 + ], + "score": 0.9, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 496, + 915, + 547, + 915, + 547, + 946, + 496, + 946 + ], + "score": 0.9, + "latex": "W _ { l h }" + }, + { + "category_id": 13, + "poly": [ + 820, + 1174, + 873, + 1174, + 873, + 1206, + 820, + 1206 + ], + "score": 0.9, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 917, + 344, + 960, + 344, + 960, + 375, + 917, + 375 + ], + "score": 0.9, + "latex": "\\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 1010, + 1324, + 1066, + 1324, + 1066, + 1355, + 1010, + 1355 + ], + "score": 0.89, + "latex": "X ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 563, + 1199, + 563, + 1199, + 593, + 1155, + 593 + ], + "score": 0.89, + "latex": "U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 1036, + 1142, + 1036, + 1142, + 1067, + 1098, + 1067 + ], + "score": 0.89, + "latex": "d _ { \\mathcal { M } }" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1248, + 1096, + 1248, + 1096, + 1280, + 1001, + 1280 + ], + "score": 0.89, + "latex": "X \\in \\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1094, + 300, + 1176, + 300, + 1176, + 327, + 1094, + 327 + ], + "score": 0.89, + "latex": "l \\infty" + }, + { + "category_id": 13, + "poly": [ + 500, + 1575, + 683, + 1575, + 683, + 1606, + 500, + 1606 + ], + "score": 0.89, + "latex": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }" + }, + { + "category_id": 13, + "poly": [ + 698, + 1329, + 780, + 1329, + 780, + 1358, + 698, + 1358 + ], + "score": 0.89, + "latex": "l \\infty" + }, + { + "category_id": 13, + "poly": [ + 865, + 982, + 1162, + 982, + 1162, + 1016, + 865, + 1016 + ], + "score": 0.88, + "latex": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) \\leq s _ { l } \\lambda d _ { \\mathcal { M } } ( X )" + }, + { + "category_id": 13, + "poly": [ + 752, + 804, + 1327, + 804, + 1327, + 845, + 752, + 845 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\mathcal { M } : = U \\otimes \\mathbb { R } ^ { C } = \\{ \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes w _ { m } \\mid w _ { m } \\in \\mathbb { R } ^ { C } \\} } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1253, + 979, + 1389, + 979, + 1389, + 1012, + 1253, + 1012 + ], + "score": 0.88, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 298, + 563, + 669, + 563, + 669, + 598, + 298, + 598 + ], + "score": 0.88, + "latex": "\\{ u \\in \\mathbb { R } ^ { N } \\mid \\langle u , v \\rangle = 0 , \\forall v \\in U \\}" + }, + { + "category_id": 13, + "poly": [ + 418, + 531, + 462, + 531, + 462, + 562, + 418, + 562 + ], + "score": 0.88, + "latex": "\\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 715, + 1606, + 756, + 1606, + 756, + 1635, + 715, + 1635 + ], + "score": 0.88, + "latex": "\\lambda _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1638, + 1215, + 1638, + 1215, + 1665, + 1176, + 1665 + ], + "score": 0.88, + "latex": "\\lambda _ { N }" + }, + { + "category_id": 13, + "poly": [ + 783, + 1770, + 861, + 1770, + 861, + 1798, + 783, + 1798 + ], + "score": 0.87, + "latex": "C = 1" + }, + { + "category_id": 13, + "poly": [ + 741, + 1070, + 778, + 1070, + 778, + 1097, + 741, + 1097 + ], + "score": 0.87, + "latex": "e _ { m }" + }, + { + "category_id": 13, + "poly": [ + 1320, + 531, + 1405, + 531, + 1405, + 566, + 1320, + 566 + ], + "score": 0.86, + "latex": "U ^ { \\perp } : =" + }, + { + "category_id": 13, + "poly": [ + 684, + 1770, + 769, + 1770, + 769, + 1798, + 684, + 1798 + ], + "score": 0.86, + "latex": "M = 1" + }, + { + "category_id": 13, + "poly": [ + 589, + 920, + 627, + 920, + 627, + 946, + 589, + 946 + ], + "score": 0.85, + "latex": "s _ { l h }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1328, + 332, + 1328, + 332, + 1359, + 297, + 1359 + ], + "score": 0.85, + "latex": "X _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1145, + 1145, + 1170, + 1145, + 1170, + 1176, + 1145, + 1176 + ], + "score": 0.84, + "latex": "f _ { l }" + }, + { + "category_id": 13, + "poly": [ + 397, + 1412, + 451, + 1412, + 451, + 1444, + 397, + 1444 + ], + "score": 0.84, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1289, + 1337, + 1289, + 1337, + 1320, + 1252, + 1320 + ], + "score": 0.84, + "latex": "s \\lambda < 1" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1508, + 1374, + 1508, + 1374, + 1534, + 1349, + 1534 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 298, + 1414, + 385, + 1414, + 385, + 1445, + 298, + 1445 + ], + "score": 0.84, + "latex": "s \\lambda < 1" + }, + { + "category_id": 13, + "poly": [ + 655, + 657, + 681, + 657, + 681, + 683, + 655, + 683 + ], + "score": 0.83, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 533, + 879, + 561, + 879, + 561, + 906, + 533, + 906 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1133, + 409, + 1158, + 409, + 1158, + 435, + 1133, + 435 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 734, + 657, + 759, + 657, + 759, + 683, + 734, + 683 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 917, + 566, + 941, + 566, + 941, + 592, + 917, + 592 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 982, + 1508, + 1007, + 1508, + 1007, + 1534, + 982, + 1534 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1047, + 596, + 1072, + 596, + 1072, + 622, + 1047, + 622 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 610, + 879, + 646, + 879, + 646, + 907, + 610, + 907 + ], + "score": 0.83, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 941, + 378, + 966, + 378, + 966, + 404, + 941, + 404 + ], + "score": 0.82, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1170, + 347, + 1195, + 347, + 1195, + 374, + 1170, + 374 + ], + "score": 0.82, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 410, + 1539, + 435, + 1539, + 435, + 1566, + 410, + 1566 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1251, + 348, + 1276, + 348, + 1276, + 374, + 1251, + 374 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 591, + 347, + 623, + 347, + 623, + 374, + 591, + 374 + ], + "score": 0.81, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 819, + 482, + 892, + 482, + 892, + 512, + 819, + 512 + ], + "score": 0.81, + "latex": "u \\in U" + }, + { + "category_id": 13, + "poly": [ + 741, + 846, + 766, + 846, + 766, + 873, + 741, + 873 + ], + "score": 0.81, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 933, + 661, + 952, + 661, + 952, + 688, + 933, + 688 + ], + "score": 0.81, + "latex": "g" + }, + { + "category_id": 13, + "poly": [ + 1369, + 409, + 1394, + 409, + 1394, + 435, + 1369, + 435 + ], + "score": 0.81, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1051, + 627, + 1076, + 627, + 1076, + 654, + 1051, + 654 + ], + "score": 0.81, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1260, + 535, + 1284, + 535, + 1284, + 562, + 1260, + 562 + ], + "score": 0.81, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1478, + 1211, + 1478, + 1211, + 1504, + 1186, + 1504 + ], + "score": 0.81, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 564, + 811, + 601, + 811, + 601, + 839, + 564, + 839 + ], + "score": 0.81, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 892, + 1145, + 928, + 1145, + 928, + 1172, + 892, + 1172 + ], + "score": 0.81, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 904, + 408, + 930, + 408, + 930, + 436, + 904, + 436 + ], + "score": 0.8, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 501, + 347, + 527, + 347, + 527, + 374, + 501, + 374 + ], + "score": 0.8, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 298, + 597, + 322, + 597, + 322, + 622, + 298, + 622 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 923, + 1576, + 946, + 1576, + 946, + 1602, + 923, + 1602 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1188, + 1178, + 1224, + 1178, + 1224, + 1206, + 1188, + 1206 + ], + "score": 0.79, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 937, + 627, + 956, + 627, + 956, + 653, + 937, + 653 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 775, + 1507, + 808, + 1507, + 808, + 1535, + 775, + 1535 + ], + "score": 0.77, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1328, + 1447, + 1348, + 1447, + 1348, + 1473, + 1328, + 1473 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1026, + 1383, + 1045, + 1383, + 1045, + 1410, + 1026, + 1410 + ], + "score": 0.77, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1209, + 657, + 1229, + 657, + 1229, + 683, + 1209, + 683 + ], + "score": 0.76, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 770, + 1637, + 795, + 1637, + 795, + 1662, + 770, + 1662 + ], + "score": 0.76, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 818, + 1042, + 838, + 1042, + 838, + 1063, + 818, + 1063 + ], + "score": 0.76, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 626, + 1329, + 662, + 1329, + 662, + 1356, + 626, + 1356 + ], + "score": 0.76, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1312, + 594, + 1404, + 594, + 1404, + 628, + 1312, + 628 + ], + "score": 0.72, + "latex": "P | _ { U ^ { \\perp } } :" + }, + { + "category_id": 13, + "poly": [ + 713, + 481, + 737, + 481, + 737, + 509, + 713, + 509 + ], + "score": 0.71, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 451, + 1249, + 488, + 1249, + 488, + 1277, + 451, + 1277 + ], + "score": 0.71, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1673, + 322, + 1673, + 322, + 1701, + 297, + 1701 + ], + "score": 0.66, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1348, + 1803, + 1368, + 1803, + 1368, + 1828, + 1348, + 1828 + ], + "score": 0.64, + "latex": "F" + }, + { + "category_id": 13, + "poly": [ + 480, + 444, + 505, + 444, + 505, + 472, + 480, + 472 + ], + "score": 0.49, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 480, + 481, + 505, + 481, + 505, + 509, + 480, + 509 + ], + "score": 0.46, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1742, + 1250, + 1742, + 1250, + 1767, + 1233, + 1767 + ], + "score": 0.41, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 751.0, + 541.0, + 751.0, + 541.0, + 787.0, + 295.0, + 787.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": [ + 293.0, + 1871.0, + 678.0, + 1871.0, + 678.0, + 1915.0, + 293.0, + 1915.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": [ + 294.0, + 527.0, + 417.0, + 527.0, + 417.0, + 569.0, + 294.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 527.0, + 1259.0, + 527.0, + 1259.0, + 569.0, + 463.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 527.0, + 1319.0, + 527.0, + 1319.0, + 569.0, + 1285.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 558.0, + 297.0, + 558.0, + 297.0, + 601.0, + 291.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 558.0, + 916.0, + 558.0, + 916.0, + 601.0, + 670.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 558.0, + 1154.0, + 558.0, + 1154.0, + 601.0, + 942.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 558.0, + 1408.0, + 558.0, + 1408.0, + 601.0, + 1200.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 590.0, + 297.0, + 590.0, + 297.0, + 632.0, + 292.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 590.0, + 1046.0, + 590.0, + 1046.0, + 632.0, + 323.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 590.0, + 1311.0, + 590.0, + 1311.0, + 632.0, + 1073.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 619.0, + 297.0, + 619.0, + 297.0, + 661.0, + 292.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 619.0, + 825.0, + 619.0, + 825.0, + 661.0, + 434.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 619.0, + 936.0, + 619.0, + 936.0, + 661.0, + 893.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 619.0, + 1050.0, + 619.0, + 1050.0, + 661.0, + 957.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 619.0, + 1406.0, + 619.0, + 1406.0, + 661.0, + 1077.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 654.0, + 652.0, + 654.0, + 691.0, + 294.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 652.0, + 733.0, + 652.0, + 733.0, + 691.0, + 682.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 760.0, + 652.0, + 790.0, + 652.0, + 790.0, + 691.0, + 760.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 853.0, + 652.0, + 932.0, + 652.0, + 932.0, + 691.0, + 853.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 652.0, + 1208.0, + 652.0, + 1208.0, + 691.0, + 953.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 652.0, + 1406.0, + 652.0, + 1406.0, + 691.0, + 1230.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 683.0, + 297.0, + 683.0, + 297.0, + 724.0, + 291.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 683.0, + 1187.0, + 683.0, + 1187.0, + 724.0, + 483.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 782.0, + 298.0, + 782.0, + 298.0, + 882.0, + 281.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 782.0, + 563.0, + 782.0, + 563.0, + 882.0, + 428.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 782.0, + 634.0, + 782.0, + 634.0, + 882.0, + 602.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 782.0, + 740.0, + 782.0, + 740.0, + 882.0, + 713.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.0, + 782.0, + 1420.0, + 782.0, + 1420.0, + 882.0, + 1328.0, + 882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 876.0, + 532.0, + 876.0, + 532.0, + 914.0, + 293.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 876.0, + 609.0, + 876.0, + 609.0, + 914.0, + 562.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 647.0, + 876.0, + 682.0, + 876.0, + 682.0, + 914.0, + 647.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 876.0, + 1405.0, + 876.0, + 1405.0, + 914.0, + 1112.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 896.0, + 495.0, + 896.0, + 495.0, + 964.0, + 284.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 896.0, + 588.0, + 896.0, + 588.0, + 964.0, + 548.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 896.0, + 721.0, + 896.0, + 721.0, + 964.0, + 628.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 896.0, + 1415.0, + 896.0, + 1415.0, + 964.0, + 907.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 942.0, + 602.0, + 942.0, + 602.0, + 982.0, + 294.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1380.0, + 645.0, + 1380.0, + 645.0, + 1416.0, + 295.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1380.0, + 1025.0, + 1380.0, + 1025.0, + 1416.0, + 825.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1380.0, + 1406.0, + 1380.0, + 1406.0, + 1416.0, + 1046.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1410.0, + 297.0, + 1410.0, + 297.0, + 1453.0, + 292.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 1410.0, + 396.0, + 1410.0, + 396.0, + 1453.0, + 386.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 1410.0, + 1406.0, + 1410.0, + 1406.0, + 1453.0, + 452.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1445.0, + 1029.0, + 1445.0, + 1029.0, + 1481.0, + 295.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1445.0, + 1327.0, + 1445.0, + 1327.0, + 1481.0, + 1082.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1445.0, + 1405.0, + 1445.0, + 1405.0, + 1481.0, + 1349.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1477.0, + 1185.0, + 1477.0, + 1185.0, + 1510.0, + 296.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1212.0, + 1477.0, + 1403.0, + 1477.0, + 1403.0, + 1510.0, + 1212.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1506.0, + 774.0, + 1506.0, + 774.0, + 1542.0, + 295.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 1506.0, + 981.0, + 1506.0, + 981.0, + 1542.0, + 809.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1506.0, + 1348.0, + 1506.0, + 1348.0, + 1542.0, + 1008.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1506.0, + 1406.0, + 1506.0, + 1406.0, + 1542.0, + 1375.0, + 1542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1534.0, + 409.0, + 1534.0, + 409.0, + 1574.0, + 293.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 1534.0, + 593.0, + 1534.0, + 593.0, + 1574.0, + 436.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1938.0, + 1405.0, + 1938.0, + 1405.0, + 1980.0, + 294.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1975.0, + 1404.0, + 1975.0, + 1404.0, + 2005.0, + 297.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1403.0, + 2003.0, + 1403.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 224.0, + 1110.0, + 224.0, + 1110.0, + 267.0, + 291.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 256.0, + 339.0, + 256.0, + 339.0, + 303.0, + 291.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 256.0, + 891.0, + 256.0, + 891.0, + 303.0, + 557.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1128.0, + 256.0, + 1407.0, + 256.0, + 1407.0, + 303.0, + 1128.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 290.0, + 296.0, + 290.0, + 296.0, + 337.0, + 292.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 290.0, + 1006.0, + 290.0, + 1006.0, + 337.0, + 465.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 290.0, + 1093.0, + 290.0, + 1093.0, + 337.0, + 1060.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 290.0, + 1191.0, + 290.0, + 1191.0, + 337.0, + 1177.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 499.0, + 1570.0, + 499.0, + 1609.0, + 295.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1570.0, + 922.0, + 1570.0, + 922.0, + 1609.0, + 684.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1570.0, + 1405.0, + 1570.0, + 1405.0, + 1609.0, + 947.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1602.0, + 714.0, + 1602.0, + 714.0, + 1643.0, + 292.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1602.0, + 788.0, + 1602.0, + 788.0, + 1643.0, + 757.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1602.0, + 962.0, + 1602.0, + 962.0, + 1643.0, + 900.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1347.0, + 1602.0, + 1406.0, + 1602.0, + 1406.0, + 1643.0, + 1347.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1632.0, + 369.0, + 1632.0, + 369.0, + 1673.0, + 294.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1632.0, + 769.0, + 1632.0, + 769.0, + 1673.0, + 638.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 1632.0, + 1175.0, + 1632.0, + 1175.0, + 1673.0, + 796.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1632.0, + 1407.0, + 1632.0, + 1407.0, + 1673.0, + 1216.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1667.0, + 752.0, + 1667.0, + 752.0, + 1709.0, + 323.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1088.0, + 1667.0, + 1096.0, + 1667.0, + 1096.0, + 1709.0, + 1088.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1707.0, + 1405.0, + 1707.0, + 1405.0, + 1743.0, + 294.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1739.0, + 1232.0, + 1739.0, + 1232.0, + 1776.0, + 294.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1739.0, + 1407.0, + 1739.0, + 1407.0, + 1776.0, + 1251.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1770.0, + 683.0, + 1770.0, + 683.0, + 1805.0, + 291.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 1770.0, + 782.0, + 1770.0, + 782.0, + 1805.0, + 770.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 1770.0, + 922.0, + 1770.0, + 922.0, + 1805.0, + 862.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1770.0, + 1095.0, + 1770.0, + 1095.0, + 1805.0, + 1016.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1770.0, + 1406.0, + 1770.0, + 1406.0, + 1805.0, + 1183.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1800.0, + 1347.0, + 1800.0, + 1347.0, + 1837.0, + 293.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1369.0, + 1800.0, + 1380.0, + 1800.0, + 1380.0, + 1837.0, + 1369.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 817.0, + 1030.0, + 817.0, + 1073.0, + 293.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1030.0, + 1097.0, + 1030.0, + 1097.0, + 1073.0, + 839.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1030.0, + 1239.0, + 1030.0, + 1239.0, + 1073.0, + 1143.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1066.0, + 740.0, + 1066.0, + 740.0, + 1100.0, + 389.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1066.0, + 1404.0, + 1066.0, + 1404.0, + 1100.0, + 779.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1096.0, + 1061.0, + 1096.0, + 1061.0, + 1131.0, + 293.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 340.0, + 344.0, + 340.0, + 344.0, + 382.0, + 294.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 340.0, + 500.0, + 340.0, + 500.0, + 382.0, + 451.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 340.0, + 590.0, + 340.0, + 590.0, + 382.0, + 528.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 340.0, + 916.0, + 340.0, + 916.0, + 382.0, + 624.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 340.0, + 1169.0, + 340.0, + 1169.0, + 382.0, + 961.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 340.0, + 1250.0, + 340.0, + 1250.0, + 382.0, + 1196.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 340.0, + 1405.0, + 340.0, + 1405.0, + 382.0, + 1277.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 377.0, + 940.0, + 377.0, + 940.0, + 411.0, + 296.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 377.0, + 1401.0, + 377.0, + 1401.0, + 411.0, + 967.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 407.0, + 903.0, + 407.0, + 903.0, + 441.0, + 298.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 407.0, + 1132.0, + 407.0, + 1132.0, + 441.0, + 931.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 407.0, + 1368.0, + 407.0, + 1368.0, + 441.0, + 1159.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 407.0, + 1400.0, + 407.0, + 1400.0, + 441.0, + 1395.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1140.0, + 424.0, + 1140.0, + 424.0, + 1179.0, + 293.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1140.0, + 891.0, + 1140.0, + 891.0, + 1179.0, + 581.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1140.0, + 1144.0, + 1140.0, + 1144.0, + 1179.0, + 929.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1140.0, + 1406.0, + 1140.0, + 1406.0, + 1179.0, + 1171.0, + 1179.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1174.0, + 819.0, + 1174.0, + 819.0, + 1213.0, + 293.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1174.0, + 1187.0, + 1174.0, + 1187.0, + 1213.0, + 874.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1225.0, + 1174.0, + 1406.0, + 1174.0, + 1406.0, + 1213.0, + 1225.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1208.0, + 698.0, + 1208.0, + 698.0, + 1247.0, + 293.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1208.0, + 1398.0, + 1208.0, + 1398.0, + 1247.0, + 757.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 974.0, + 864.0, + 974.0, + 864.0, + 1022.0, + 291.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 974.0, + 1252.0, + 974.0, + 1252.0, + 1022.0, + 1163.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 974.0, + 1401.0, + 974.0, + 1401.0, + 1022.0, + 1390.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 478.0, + 479.0, + 478.0, + 479.0, + 515.0, + 295.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 478.0, + 712.0, + 478.0, + 712.0, + 515.0, + 506.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 478.0, + 818.0, + 478.0, + 818.0, + 515.0, + 738.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 478.0, + 958.0, + 478.0, + 958.0, + 515.0, + 893.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 478.0, + 1065.0, + 478.0, + 1065.0, + 515.0, + 1055.0, + 515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 439.0, + 479.0, + 439.0, + 479.0, + 483.0, + 295.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 439.0, + 801.0, + 439.0, + 801.0, + 483.0, + 506.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 439.0, + 1351.0, + 439.0, + 1351.0, + 483.0, + 930.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1283.0, + 497.0, + 1283.0, + 497.0, + 1327.0, + 293.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1283.0, + 798.0, + 1283.0, + 798.0, + 1327.0, + 683.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1283.0, + 1251.0, + 1283.0, + 1251.0, + 1327.0, + 1059.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1283.0, + 1406.0, + 1283.0, + 1406.0, + 1327.0, + 1338.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1323.0, + 296.0, + 1323.0, + 296.0, + 1362.0, + 293.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 333.0, + 1323.0, + 625.0, + 1323.0, + 625.0, + 1362.0, + 333.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 1323.0, + 697.0, + 1323.0, + 697.0, + 1362.0, + 663.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 781.0, + 1323.0, + 1009.0, + 1323.0, + 1009.0, + 1362.0, + 781.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1323.0, + 1078.0, + 1323.0, + 1078.0, + 1362.0, + 1067.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1246.0, + 450.0, + 1246.0, + 450.0, + 1285.0, + 297.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1246.0, + 803.0, + 1246.0, + 803.0, + 1285.0, + 489.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1246.0, + 1000.0, + 1246.0, + 1000.0, + 1285.0, + 888.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1246.0, + 1255.0, + 1246.0, + 1255.0, + 1285.0, + 1097.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1246.0, + 1402.0, + 1246.0, + 1402.0, + 1285.0, + 1394.0, + 1285.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1646, + 1404, + 1646, + 1404, + 1954, + 297, + 1954 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1012, + 1404, + 1012, + 1404, + 1266, + 297, + 1266 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 364, + 1405, + 364, + 1405, + 636, + 296, + 636 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 782, + 1404, + 782, + 1404, + 912, + 298, + 912 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1380, + 1404, + 1380, + 1404, + 1536, + 297, + 1536 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 650, + 1404, + 650, + 1404, + 775, + 298, + 775 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1403, + 228, + 1403, + 353, + 298, + 353 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 302, + 1278, + 1398, + 1278, + 1398, + 1372, + 302, + 1372 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 301, + 1977, + 1402, + 1977, + 1402, + 2034, + 301, + 2034 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 300, + 917, + 1400, + 917, + 1400, + 989, + 300, + 989 + ], + "score": 0.939 + }, + { + "category_id": 0, + "poly": [ + 302, + 1577, + 1228, + 1577, + 1228, + 1615, + 302, + 1615 + ], + "score": 0.929 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.757 + }, + { + "category_id": 13, + "poly": [ + 643, + 952, + 760, + 952, + 760, + 989, + 643, + 989 + ], + "score": 0.94, + "latex": "d _ { \\mathcal { M } } ( { \\boldsymbol { X } } ^ { ( l ) } )" + }, + { + "category_id": 13, + "poly": [ + 344, + 365, + 750, + 365, + 750, + 405, + 344, + 405 + ], + "score": 0.93, + "latex": "A : = ( \\mathbf { 1 } _ { \\{ ( i , j ) \\in E \\} } ) _ { i , j \\in [ N ] } \\ \\in \\ \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 1137, + 540, + 1326, + 540, + 1326, + 571, + 1137, + 571 + ], + "score": 0.93, + "latex": "f = f _ { L } \\circ \\cdot \\cdot \\cdot \\circ f _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 762, + 402, + 1155, + 402, + 1155, + 438, + 762, + 438 + ], + "score": 0.93, + "latex": "\\deg ( i ) : = | \\{ j \\in V \\mid ( i , j ) \\in E \\} |" + }, + { + "category_id": 13, + "poly": [ + 340, + 230, + 475, + 230, + 475, + 264, + 340, + 264 + ], + "score": 0.93, + "latex": "G = ( V , E )" + }, + { + "category_id": 13, + "poly": [ + 616, + 262, + 718, + 262, + 718, + 294, + 616, + 294 + ], + "score": 0.92, + "latex": "N = | V |" + }, + { + "category_id": 13, + "poly": [ + 299, + 952, + 476, + 952, + 476, + 989, + 299, + 989 + ], + "score": 0.92, + "latex": "( s \\lambda ) ^ { l } d _ { \\mathcal { M } } ( X ^ { ( 0 ) } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1802, + 576, + 1802, + 576, + 1834, + 298, + 1834 + ], + "score": 0.92, + "latex": "\\tilde { \\mu } _ { M + 1 } \\leq \\dots \\leq \\tilde { \\mu } _ { N } < 2" + }, + { + "category_id": 13, + "poly": [ + 584, + 505, + 736, + 505, + 736, + 540, + 584, + 540 + ], + "score": 0.92, + "latex": "P : = I _ { N } - \\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 298, + 503, + 495, + 503, + 495, + 539, + 298, + 539 + ], + "score": 0.92, + "latex": "I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 727, + 570, + 971, + 570, + 971, + 604, + 727, + 604 + ], + "score": 0.91, + "latex": "f _ { l } ( X ) : = \\sigma ( P X W _ { l } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 568, + 560, + 568, + 560, + 603, + 298, + 603 + ], + "score": 0.91, + "latex": "f _ { l } : \\mathbb { R } ^ { \\breve { N } \\times C } \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 788, + 1045, + 883, + 1045, + 883, + 1074, + 788, + 1074 + ], + "score": 0.91, + "latex": "X \\in { \\mathcal { M } }" + }, + { + "category_id": 13, + "poly": [ + 1041, + 1740, + 1150, + 1740, + 1150, + 1773, + 1041, + 1773 + ], + "score": 0.91, + "latex": "p \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 1036, + 1045, + 1131, + 1045, + 1131, + 1076, + 1036, + 1076 + ], + "score": 0.91, + "latex": "i , j \\in V" + }, + { + "category_id": 13, + "poly": [ + 1088, + 367, + 1403, + 367, + 1403, + 405, + 1088, + 405 + ], + "score": 0.91, + "latex": "D : = \\mathrm { d i a g } ( \\deg ( i ) _ { i \\in [ N ] } ) \\ \\in" + }, + { + "category_id": 13, + "poly": [ + 943, + 261, + 986, + 261, + 986, + 295, + 943, + 295 + ], + "score": 0.91, + "latex": "[ N ]" + }, + { + "category_id": 13, + "poly": [ + 871, + 652, + 1116, + 652, + 1116, + 682, + 871, + 682 + ], + "score": 0.91, + "latex": "V = V _ { 1 } \\sqcup \\cdots \\sqcup V _ { M }" + }, + { + "category_id": 13, + "poly": [ + 549, + 601, + 610, + 601, + 610, + 632, + 549, + 632 + ], + "score": 0.91, + "latex": "X ^ { ( L ) }" + }, + { + "category_id": 13, + "poly": [ + 443, + 1891, + 491, + 1891, + 491, + 1921, + 443, + 1921 + ], + "score": 0.91, + "latex": "\\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 707, + 816, + 1047, + 816, + 1047, + 846, + 707, + 846 + ], + "score": 0.9, + "latex": "\\lambda _ { N - M + 1 } = \\cdot \\cdot \\cdot = \\lambda _ { N } = 1" + }, + { + "category_id": 13, + "poly": [ + 561, + 1196, + 614, + 1196, + 614, + 1228, + 561, + 1228 + ], + "score": 0.9, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 713, + 917, + 769, + 917, + 769, + 950, + 713, + 950 + ], + "score": 0.9, + "latex": "X ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 1338, + 1680, + 1400, + 1680, + 1400, + 1714, + 1338, + 1714 + ], + "score": 0.9, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 1157, + 1978, + 1237, + 1978, + 1237, + 2005, + 1157, + 2005 + ], + "score": 0.9, + "latex": "H _ { l } = 1" + }, + { + "category_id": 13, + "poly": [ + 523, + 783, + 713, + 783, + 713, + 815, + 523, + 815 + ], + "score": 0.9, + "latex": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1295, + 1232, + 1393, + 1232, + 1393, + 1261, + 1295, + 1261 + ], + "score": 0.9, + "latex": "s < \\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1078, + 918, + 1131, + 918, + 1131, + 950, + 1078, + 950 + ], + "score": 0.9, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 485, + 1832, + 917, + 1832, + 917, + 1866, + 485, + 1866 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\lambda : = \\operatorname* { m i n } _ { m = M + 1 , \\ldots , N } | 1 - \\tilde { \\mu } _ { m } | ( < 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 562, + 436, + 737, + 436, + 737, + 471, + 562, + 471 + ], + "score": 0.9, + "latex": "{ \\tilde { D } } : = D + I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 928, + 849, + 1043, + 849, + 1043, + 884, + 928, + 884 + ], + "score": 0.9, + "latex": "m \\in [ M ]" + }, + { + "category_id": 13, + "poly": [ + 463, + 712, + 808, + 712, + 808, + 748, + 463, + 748 + ], + "score": 0.89, + "latex": "u _ { m } : = ( \\mathbf { 1 } _ { \\{ n \\in V _ { m } \\} } ) _ { n \\in [ N ] } \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 1111, + 1772, + 1403, + 1772, + 1403, + 1803, + 1111, + 1803 + ], + "score": 0.89, + "latex": "0 = \\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } <" + }, + { + "category_id": 13, + "poly": [ + 297, + 401, + 377, + 401, + 377, + 432, + 297, + 432 + ], + "score": 0.89, + "latex": "\\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 715, + 846, + 881, + 846, + 881, + 882, + 715, + 882 + ], + "score": 0.89, + "latex": "e _ { m } : = \\tilde { D } ^ { \\frac { 1 } { 2 } } u _ { m }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 1200, + 1161, + 1200, + 1161, + 1229, + 1092, + 1229 + ], + "score": 0.89, + "latex": "s < 1" + }, + { + "category_id": 13, + "poly": [ + 791, + 508, + 918, + 508, + 918, + 540, + 791, + 540 + ], + "score": 0.88, + "latex": "L , C \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 781, + 606, + 873, + 606, + 873, + 633, + 781, + 633 + ], + "score": 0.88, + "latex": "L \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 297, + 850, + 598, + 850, + 598, + 884, + 297, + 884 + ], + "score": 0.88, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { n = 1 , \\dots , N - M } | \\lambda _ { n } | < 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1243, + 917, + 1404, + 917, + 1404, + 955, + 1243, + 955 + ], + "score": 0.88, + "latex": "d _ { \\mathcal { M } } ( X ^ { ( l ) } ) ~ \\leq" + }, + { + "category_id": 13, + "poly": [ + 1293, + 1199, + 1386, + 1199, + 1386, + 1230, + 1293, + 1230 + ], + "score": 0.88, + "latex": "\\lambda _ { N } = 1" + }, + { + "category_id": 13, + "poly": [ + 759, + 1229, + 812, + 1229, + 812, + 1261, + 759, + 1261 + ], + "score": 0.88, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 956, + 1233, + 956, + 1233, + 985, + 1151, + 985 + ], + "score": 0.88, + "latex": "s \\lambda < 1" + }, + { + "category_id": 13, + "poly": [ + 377, + 435, + 547, + 435, + 547, + 471, + 377, + 471 + ], + "score": 0.88, + "latex": "{ \\tilde { A } } : = A + I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1335, + 470, + 1404, + 470, + 1404, + 506, + 1335, + 506 + ], + "score": 0.87, + "latex": "\\tilde { \\Delta } : =" + }, + { + "category_id": 13, + "poly": [ + 681, + 1231, + 748, + 1231, + 748, + 1263, + 681, + 1263 + ], + "score": 0.87, + "latex": "s \\geq 1" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1978, + 1387, + 1978, + 1387, + 2007, + 1303, + 2007 + ], + "score": 0.86, + "latex": "l \\in \\mathbb { N } ." + }, + { + "category_id": 13, + "poly": [ + 1023, + 1898, + 1063, + 1898, + 1063, + 1925, + 1023, + 1925 + ], + "score": 0.86, + "latex": "\\mu _ { m }" + }, + { + "category_id": 13, + "poly": [ + 493, + 817, + 637, + 817, + 637, + 847, + 493, + 847 + ], + "score": 0.85, + "latex": "\\lambda _ { N - M } ~ < ~ 1" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1077, + 1107, + 1077, + 1107, + 1102, + 1079, + 1102 + ], + "score": 0.85, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1337, + 815, + 1403, + 815, + 1403, + 847, + 1337, + 847 + ], + "score": 0.84, + "latex": "\\lambda : =" + }, + { + "category_id": 13, + "poly": [ + 536, + 1281, + 569, + 1281, + 569, + 1308, + 536, + 1308 + ], + "score": 0.84, + "latex": "s \\lambda" + }, + { + "category_id": 13, + "poly": [ + 716, + 294, + 744, + 294, + 744, + 319, + 716, + 319 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1711, + 1133, + 1711, + 1133, + 1737, + 1105, + 1737 + ], + "score": 0.83, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 656, + 406, + 681, + 406, + 681, + 432, + 656, + 432 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1065, + 232, + 1091, + 232, + 1091, + 258, + 1065, + 258 + ], + "score": 0.82, + "latex": "E" + }, + { + "category_id": 13, + "poly": [ + 344, + 1107, + 361, + 1107, + 361, + 1136, + 344, + 1136 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 479, + 653, + 513, + 653, + 513, + 679, + 479, + 679 + ], + "score": 0.81, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 822, + 539, + 895, + 539, + 895, + 568, + 822, + 568 + ], + "score": 0.81, + "latex": "\\mathrm { G C N } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 361, + 815, + 476, + 815, + 476, + 846, + 361, + 846 + ], + "score": 0.81, + "latex": "- 1 < \\lambda _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 316, + 292, + 342, + 292, + 342, + 319, + 316, + 319 + ], + "score": 0.81, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1074, + 541, + 1100, + 541, + 1100, + 568, + 1074, + 568 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1269, + 474, + 1295, + 474, + 1295, + 503, + 1269, + 503 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1233, + 1804, + 1258, + 1804, + 1258, + 1829, + 1233, + 1829 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1245, + 440, + 1270, + 440, + 1270, + 468, + 1245, + 468 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 401, + 652, + 427, + 652, + 427, + 679, + 401, + 679 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 435, + 538, + 577, + 538, + 577, + 569, + 435, + 569 + ], + "score": 0.8, + "latex": "W _ { l } \\in \\mathbb { R } ^ { C \\times C }" + }, + { + "category_id": 13, + "poly": [ + 554, + 262, + 580, + 262, + 580, + 290, + 554, + 290 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 810, + 232, + 836, + 232, + 836, + 258, + 810, + 258 + ], + "score": 0.79, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 657, + 1771, + 683, + 1771, + 683, + 1799, + 657, + 1799 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1221, + 686, + 1249, + 686, + 1249, + 711, + 1221, + 711 + ], + "score": 0.79, + "latex": "m" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1105, + 1345, + 1105, + 1345, + 1133, + 1308, + 1133 + ], + "score": 0.78, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 783, + 323, + 808, + 323, + 808, + 349, + 783, + 349 + ], + "score": 0.78, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1117, + 1106, + 1145, + 1106, + 1145, + 1132, + 1117, + 1132 + ], + "score": 0.76, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 956, + 785, + 980, + 785, + 980, + 811, + 956, + 811 + ], + "score": 0.76, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 442, + 683, + 468, + 683, + 468, + 710, + 442, + 710 + ], + "score": 0.76, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 747, + 1771, + 781, + 1771, + 781, + 1798, + 747, + 1798 + ], + "score": 0.74, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 859, + 262, + 885, + 262, + 885, + 290, + 859, + 290 + ], + "score": 0.74, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1311, + 1076, + 1311, + 1076, + 1338, + 1052, + 1338 + ], + "score": 0.7, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1218, + 262, + 1243, + 262, + 1243, + 290, + 1218, + 290 + ], + "score": 0.67, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 1387, + 1076, + 1401, + 1076, + 1401, + 1102, + 1387, + 1102 + ], + "score": 0.67, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 297, + 441, + 310, + 441, + 310, + 467, + 297, + 467 + ], + "score": 0.61, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 588, + 540, + 677, + 540, + 677, + 572, + 588, + 572 + ], + "score": 0.6, + "latex": "( l \\in [ L ] )" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1510, + 1235, + 1510, + 1235, + 1531, + 1215, + 1531 + ], + "score": 0.53, + "latex": "C" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1971.0, + 1156.0, + 1971.0, + 1156.0, + 2012.0, + 329.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1971.0, + 1302.0, + 1971.0, + 1302.0, + 2012.0, + 1238.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1388.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2012.0, + 1388.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2001.0, + 800.0, + 2001.0, + 800.0, + 2039.0, + 295.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1576.0, + 1231.0, + 1576.0, + 1231.0, + 1620.0, + 292.0, + 1620.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, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1647.0, + 1405.0, + 1647.0, + 1405.0, + 1683.0, + 295.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1671.0, + 1337.0, + 1671.0, + 1337.0, + 1721.0, + 291.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1671.0, + 1408.0, + 1671.0, + 1408.0, + 1721.0, + 1401.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1704.0, + 1104.0, + 1704.0, + 1104.0, + 1746.0, + 292.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1704.0, + 1406.0, + 1704.0, + 1406.0, + 1746.0, + 1134.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1736.0, + 1040.0, + 1736.0, + 1040.0, + 1778.0, + 292.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1736.0, + 1408.0, + 1736.0, + 1408.0, + 1778.0, + 1151.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1768.0, + 656.0, + 1768.0, + 656.0, + 1806.0, + 292.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1768.0, + 746.0, + 1768.0, + 746.0, + 1806.0, + 684.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1768.0, + 1110.0, + 1768.0, + 1110.0, + 1806.0, + 782.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1800.0, + 297.0, + 1800.0, + 297.0, + 1838.0, + 292.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 577.0, + 1800.0, + 1232.0, + 1800.0, + 1232.0, + 1838.0, + 577.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1838.0, + 1259.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1829.0, + 484.0, + 1829.0, + 484.0, + 1869.0, + 291.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1829.0, + 1407.0, + 1829.0, + 1407.0, + 1869.0, + 918.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1861.0, + 1405.0, + 1861.0, + 1405.0, + 1897.0, + 295.0, + 1897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1888.0, + 442.0, + 1888.0, + 442.0, + 1930.0, + 291.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 492.0, + 1888.0, + 1022.0, + 1888.0, + 1022.0, + 1930.0, + 492.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1888.0, + 1408.0, + 1888.0, + 1408.0, + 1930.0, + 1064.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1924.0, + 806.0, + 1924.0, + 806.0, + 1956.0, + 296.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1011.0, + 1407.0, + 1011.0, + 1407.0, + 1049.0, + 292.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1042.0, + 787.0, + 1042.0, + 787.0, + 1079.0, + 294.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1042.0, + 1035.0, + 1042.0, + 1035.0, + 1079.0, + 884.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1042.0, + 1405.0, + 1042.0, + 1405.0, + 1079.0, + 1132.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1075.0, + 1078.0, + 1075.0, + 1078.0, + 1108.0, + 294.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 1075.0, + 1386.0, + 1075.0, + 1386.0, + 1108.0, + 1108.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1075.0, + 1406.0, + 1075.0, + 1406.0, + 1108.0, + 1402.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1102.0, + 343.0, + 1102.0, + 343.0, + 1141.0, + 292.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1102.0, + 1116.0, + 1102.0, + 1116.0, + 1141.0, + 362.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1102.0, + 1307.0, + 1102.0, + 1307.0, + 1141.0, + 1146.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": [ + 294.0, + 1135.0, + 1404.0, + 1135.0, + 1404.0, + 1170.0, + 294.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1166.0, + 1405.0, + 1166.0, + 1405.0, + 1200.0, + 294.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 560.0, + 1197.0, + 560.0, + 1235.0, + 294.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1197.0, + 1091.0, + 1197.0, + 1091.0, + 1235.0, + 615.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1162.0, + 1197.0, + 1292.0, + 1197.0, + 1292.0, + 1235.0, + 1162.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1387.0, + 1197.0, + 1405.0, + 1197.0, + 1405.0, + 1235.0, + 1387.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1230.0, + 680.0, + 1230.0, + 680.0, + 1266.0, + 292.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1230.0, + 758.0, + 1230.0, + 758.0, + 1266.0, + 749.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 813.0, + 1230.0, + 1294.0, + 1230.0, + 1294.0, + 1266.0, + 813.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1230.0, + 1404.0, + 1230.0, + 1404.0, + 1266.0, + 1394.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 358.0, + 343.0, + 358.0, + 343.0, + 411.0, + 289.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 358.0, + 1087.0, + 358.0, + 1087.0, + 411.0, + 751.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 358.0, + 1408.0, + 358.0, + 1408.0, + 411.0, + 1404.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 394.0, + 296.0, + 394.0, + 296.0, + 445.0, + 290.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 394.0, + 655.0, + 394.0, + 655.0, + 445.0, + 378.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 394.0, + 761.0, + 394.0, + 761.0, + 445.0, + 682.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 394.0, + 1407.0, + 394.0, + 1407.0, + 445.0, + 1156.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 435.0, + 296.0, + 435.0, + 296.0, + 475.0, + 293.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 435.0, + 376.0, + 435.0, + 376.0, + 475.0, + 311.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 435.0, + 561.0, + 435.0, + 561.0, + 475.0, + 548.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 435.0, + 1244.0, + 435.0, + 1244.0, + 475.0, + 738.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 435.0, + 1405.0, + 435.0, + 1405.0, + 475.0, + 1271.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 470.0, + 1268.0, + 470.0, + 1268.0, + 510.0, + 295.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 470.0, + 1334.0, + 470.0, + 1334.0, + 510.0, + 1296.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 503.0, + 297.0, + 503.0, + 297.0, + 547.0, + 293.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 503.0, + 583.0, + 503.0, + 583.0, + 547.0, + 496.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 503.0, + 790.0, + 503.0, + 790.0, + 547.0, + 737.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 503.0, + 1405.0, + 503.0, + 1405.0, + 547.0, + 919.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 531.0, + 434.0, + 531.0, + 434.0, + 578.0, + 290.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 531.0, + 587.0, + 531.0, + 587.0, + 578.0, + 578.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 531.0, + 821.0, + 531.0, + 821.0, + 578.0, + 678.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 531.0, + 1073.0, + 531.0, + 1073.0, + 578.0, + 896.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 531.0, + 1136.0, + 531.0, + 1136.0, + 578.0, + 1101.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 531.0, + 1407.0, + 531.0, + 1407.0, + 578.0, + 1327.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 561.0, + 297.0, + 561.0, + 297.0, + 610.0, + 291.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 561.0, + 726.0, + 561.0, + 726.0, + 610.0, + 561.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 561.0, + 1408.0, + 561.0, + 1408.0, + 610.0, + 972.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 598.0, + 548.0, + 598.0, + 548.0, + 641.0, + 291.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 598.0, + 780.0, + 598.0, + 780.0, + 641.0, + 611.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 598.0, + 886.0, + 598.0, + 886.0, + 641.0, + 874.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 777.0, + 522.0, + 777.0, + 522.0, + 821.0, + 292.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 777.0, + 955.0, + 777.0, + 955.0, + 821.0, + 714.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 981.0, + 777.0, + 1406.0, + 777.0, + 1406.0, + 821.0, + 981.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 810.0, + 360.0, + 810.0, + 360.0, + 853.0, + 292.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 810.0, + 492.0, + 810.0, + 492.0, + 853.0, + 477.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 810.0, + 706.0, + 810.0, + 706.0, + 853.0, + 638.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 810.0, + 1336.0, + 810.0, + 1336.0, + 853.0, + 1048.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 845.0, + 296.0, + 845.0, + 296.0, + 889.0, + 289.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 845.0, + 714.0, + 845.0, + 714.0, + 889.0, + 599.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 845.0, + 927.0, + 845.0, + 927.0, + 889.0, + 882.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 845.0, + 1407.0, + 845.0, + 1407.0, + 889.0, + 1044.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 881.0, + 670.0, + 881.0, + 670.0, + 914.0, + 296.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1381.0, + 1402.0, + 1381.0, + 1402.0, + 1414.0, + 296.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1413.0, + 1402.0, + 1413.0, + 1402.0, + 1446.0, + 295.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1441.0, + 1404.0, + 1441.0, + 1404.0, + 1478.0, + 295.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1473.0, + 1406.0, + 1473.0, + 1406.0, + 1510.0, + 294.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1503.0, + 1214.0, + 1503.0, + 1214.0, + 1541.0, + 294.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1236.0, + 1503.0, + 1245.0, + 1503.0, + 1245.0, + 1541.0, + 1236.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 652.0, + 400.0, + 652.0, + 400.0, + 684.0, + 296.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 652.0, + 478.0, + 652.0, + 478.0, + 684.0, + 428.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 652.0, + 870.0, + 652.0, + 870.0, + 684.0, + 514.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 652.0, + 1406.0, + 652.0, + 1406.0, + 684.0, + 1117.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 682.0, + 441.0, + 682.0, + 441.0, + 715.0, + 296.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 682.0, + 1220.0, + 682.0, + 1220.0, + 715.0, + 469.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 682.0, + 1405.0, + 682.0, + 1405.0, + 715.0, + 1250.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 710.0, + 462.0, + 710.0, + 462.0, + 748.0, + 289.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 710.0, + 1407.0, + 710.0, + 1407.0, + 748.0, + 809.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 743.0, + 939.0, + 743.0, + 939.0, + 776.0, + 296.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 231.0, + 339.0, + 231.0, + 339.0, + 264.0, + 294.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 231.0, + 809.0, + 231.0, + 809.0, + 264.0, + 476.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 231.0, + 1064.0, + 231.0, + 1064.0, + 264.0, + 837.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 264.0, + 1092.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 259.0, + 553.0, + 259.0, + 553.0, + 296.0, + 292.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 259.0, + 615.0, + 259.0, + 615.0, + 296.0, + 581.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 259.0, + 858.0, + 259.0, + 858.0, + 296.0, + 719.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 259.0, + 942.0, + 259.0, + 942.0, + 296.0, + 886.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 259.0, + 1217.0, + 259.0, + 1217.0, + 296.0, + 987.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 259.0, + 1407.0, + 259.0, + 1407.0, + 296.0, + 1244.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 291.0, + 315.0, + 291.0, + 315.0, + 326.0, + 291.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 291.0, + 715.0, + 291.0, + 715.0, + 326.0, + 343.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 291.0, + 1405.0, + 291.0, + 1405.0, + 326.0, + 745.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 321.0, + 782.0, + 321.0, + 782.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 321.0, + 1331.0, + 321.0, + 1331.0, + 357.0, + 809.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1279.0, + 535.0, + 1279.0, + 535.0, + 1313.0, + 297.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 1279.0, + 1402.0, + 1279.0, + 1402.0, + 1313.0, + 570.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1310.0, + 1051.0, + 1310.0, + 1051.0, + 1344.0, + 297.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1310.0, + 1402.0, + 1310.0, + 1402.0, + 1344.0, + 1077.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1341.0, + 1251.0, + 1341.0, + 1251.0, + 1375.0, + 297.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 911.0, + 712.0, + 911.0, + 712.0, + 961.0, + 293.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 911.0, + 1077.0, + 911.0, + 1077.0, + 961.0, + 770.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 911.0, + 1242.0, + 911.0, + 1242.0, + 961.0, + 1132.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1405.0, + 911.0, + 1408.0, + 911.0, + 1408.0, + 961.0, + 1405.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 949.0, + 298.0, + 949.0, + 298.0, + 993.0, + 294.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 949.0, + 642.0, + 949.0, + 642.0, + 993.0, + 477.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 949.0, + 1150.0, + 949.0, + 1150.0, + 993.0, + 761.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1234.0, + 949.0, + 1246.0, + 949.0, + 1246.0, + 993.0, + 1234.0, + 993.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1325, + 1404, + 1325, + 1404, + 1479, + 298, + 1479 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 774, + 1404, + 774, + 1404, + 998, + 297, + 998 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1187, + 1404, + 1187, + 1404, + 1311, + 298, + 1311 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1494, + 1404, + 1494, + 1404, + 1649, + 298, + 1649 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1008, + 1405, + 1008, + 1405, + 1162, + 298, + 1162 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 299, + 1822, + 1403, + 1822, + 1403, + 1948, + 299, + 1948 + ], + "score": 0.973 + }, + { + "category_id": 3, + "poly": [ + 417, + 246, + 1247, + 246, + 1247, + 576, + 417, + 576 + ], + "score": 0.966 + }, + { + "category_id": 4, + "poly": [ + 298, + 626, + 1405, + 626, + 1405, + 720, + 298, + 720 + ], + "score": 0.953 + }, + { + "category_id": 2, + "poly": [ + 327, + 1974, + 1262, + 1974, + 1262, + 2034, + 327, + 2034 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 298, + 1765, + 871, + 1765, + 871, + 1798, + 298, + 1798 + ], + "score": 0.909 + }, + { + "category_id": 0, + "poly": [ + 300, + 1695, + 541, + 1695, + 541, + 1730, + 300, + 1730 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 859, + 2089, + 859, + 2112, + 840, + 2112 + ], + "score": 0.802 + }, + { + "category_id": 13, + "poly": [ + 393, + 1080, + 671, + 1080, + 671, + 1133, + 393, + 1133 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { s < s _ { 0 } : = \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 748, + 1249, + 903, + 1249, + 903, + 1282, + 748, + 1282 + ], + "score": 0.93, + "latex": "p = \\log N / N" + }, + { + "category_id": 13, + "poly": [ + 355, + 1854, + 611, + 1854, + 611, + 1889, + 355, + 1889 + ], + "score": 0.93, + "latex": "V ( X ) : = { f ( X ) } - { X ^ { 4 } }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1008, + 1251, + 1008, + 1251, + 1053, + 1105, + 1053 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 716, + 627, + 945, + 627, + 945, + 661, + 716, + 661 + ], + "score": 0.93, + "latex": "V ( X ) : = f ( X ) - X" + }, + { + "category_id": 13, + "poly": [ + 674, + 659, + 760, + 659, + 760, + 692, + 674, + 692 + ], + "score": 0.93, + "latex": "| V ( X ) |" + }, + { + "category_id": 13, + "poly": [ + 1203, + 775, + 1351, + 775, + 1351, + 819, + 1203, + 819 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1312, + 1914, + 1400, + 1914, + 1400, + 1945, + 1312, + 1945 + ], + "score": 0.92, + "latex": "\\bar { \\boldsymbol { e } } \\in \\mathbb { R } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1298, + 1855, + 1400, + 1855, + 1400, + 1887, + 1298, + 1887 + ], + "score": 0.92, + "latex": "\\lambda _ { 1 } \\leq \\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 816, + 1824, + 1042, + 1824, + 1042, + 1858, + 816, + 1858 + ], + "score": 0.92, + "latex": "f ( X ) : = \\sigma ( P X W )" + }, + { + "category_id": 13, + "poly": [ + 930, + 1014, + 993, + 1014, + 993, + 1048, + 930, + 1048 + ], + "score": 0.91, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1250, + 1402, + 1250, + 1402, + 1282, + 1286, + 1282 + ], + "score": 0.91, + "latex": "N p \\approx 4 . 3" + }, + { + "category_id": 13, + "poly": [ + 615, + 781, + 677, + 781, + 677, + 814, + 615, + 814 + ], + "score": 0.91, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1328, + 1108, + 1328, + 1108, + 1355, + 1009, + 1355 + ], + "score": 0.91, + "latex": "N \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 780, + 1884, + 1040, + 1884, + 1040, + 1918, + 780, + 1918 + ], + "score": 0.9, + "latex": "| \\lambda _ { 2 } | ^ { - 1 } \\le W < | \\lambda _ { 1 } | ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 1856, + 1236, + 1856, + 1236, + 1884, + 1155, + 1884 + ], + "score": 0.9, + "latex": "C = 1" + }, + { + "category_id": 13, + "poly": [ + 877, + 1331, + 976, + 1331, + 976, + 1357, + 877, + 1357 + ], + "score": 0.89, + "latex": "s _ { 0 } \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1857, + 1093, + 1857, + 1093, + 1884, + 1005, + 1884 + ], + "score": 0.87, + "latex": "M = 1" + }, + { + "category_id": 13, + "poly": [ + 694, + 1132, + 756, + 1132, + 756, + 1159, + 694, + 1159 + ], + "score": 0.87, + "latex": "1 - \\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 1219, + 2005, + 1253, + 2005, + 1253, + 2032, + 1219, + 2032 + ], + "score": 0.86, + "latex": "W _ { l }" + }, + { + "category_id": 13, + "poly": [ + 472, + 1050, + 545, + 1050, + 545, + 1078, + 472, + 1078 + ], + "score": 0.86, + "latex": "\\varepsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 908, + 1858, + 992, + 1858, + 992, + 1883, + 908, + 1883 + ], + "score": 0.85, + "latex": "N = 2" + }, + { + "category_id": 13, + "poly": [ + 541, + 1889, + 565, + 1889, + 565, + 1913, + 541, + 1913 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 903, + 661, + 931, + 661, + 931, + 686, + 903, + 686 + ], + "score": 0.79, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1393, + 1097, + 1393, + 1097, + 1419, + 1079, + 1419 + ], + "score": 0.78, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 434, + 1219, + 580, + 1219, + 580, + 1249, + 434, + 1249 + ], + "score": 0.77, + "latex": "N = 2 0 , 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 1102, + 2005, + 1166, + 2005, + 1166, + 2034, + 1102, + 2034 + ], + "score": 0.76, + "latex": "f _ { l } , X _ { l }" + }, + { + "category_id": 13, + "poly": [ + 710, + 1887, + 744, + 1887, + 744, + 1914, + 710, + 1914 + ], + "score": 0.73, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1290, + 659, + 1326, + 659, + 1326, + 687, + 1290, + 687 + ], + "score": 0.7, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1032, + 2007, + 1044, + 2007, + 1044, + 2030, + 1032, + 2030 + ], + "score": 0.68, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 328, + 1049, + 356, + 1049, + 356, + 1076, + 328, + 1076 + ], + "score": 0.68, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 980, + 1091, + 1007, + 1091, + 1007, + 1118, + 980, + 1118 + ], + "score": 0.63, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 732, + 1393, + 761, + 1393, + 761, + 1419, + 732, + 1419 + ], + "score": 0.63, + "latex": "s _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 703, + 1394, + 721, + 1394, + 721, + 1420, + 703, + 1420 + ], + "score": 0.4, + "latex": "p" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 249.0, + 626.0, + 249.0, + 626.0, + 272.0, + 571.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 249.0, + 1072.0, + 249.0, + 1072.0, + 272.0, + 1018.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 260.0, + 462.0, + 260.0, + 462.0, + 282.0, + 426.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 276.0, + 634.0, + 276.0, + 634.0, + 283.0, + 626.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 265.0, + 793.0, + 265.0, + 793.0, + 284.0, + 767.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 260.0, + 908.0, + 260.0, + 908.0, + 282.0, + 873.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 265.0, + 1240.0, + 265.0, + 1240.0, + 284.0, + 1215.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 295.0, + 460.0, + 295.0, + 460.0, + 317.0, + 425.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 297.0, + 906.0, + 297.0, + 906.0, + 315.0, + 871.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 305.0, + 794.0, + 305.0, + 794.0, + 324.0, + 767.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 966.0, + 308.0, + 975.0, + 308.0, + 975.0, + 318.0, + 966.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 305.0, + 1241.0, + 305.0, + 1241.0, + 324.0, + 1214.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 330.0, + 460.0, + 330.0, + 460.0, + 352.0, + 425.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 330.0, + 908.0, + 330.0, + 908.0, + 352.0, + 872.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 345.0, + 795.0, + 345.0, + 795.0, + 364.0, + 766.0, + 364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 346.0, + 1241.0, + 346.0, + 1241.0, + 366.0, + 1214.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 367.0, + 461.0, + 367.0, + 461.0, + 388.0, + 425.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 366.0, + 907.0, + 366.0, + 907.0, + 388.0, + 873.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 384.0, + 795.0, + 384.0, + 795.0, + 407.0, + 765.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1033.0, + 393.0, + 1046.0, + 393.0, + 1046.0, + 407.0, + 1033.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 386.0, + 1241.0, + 386.0, + 1241.0, + 406.0, + 1214.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 402.0, + 461.0, + 402.0, + 461.0, + 423.0, + 426.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 402.0, + 908.0, + 402.0, + 908.0, + 423.0, + 873.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 424.0, + 796.0, + 424.0, + 796.0, + 447.0, + 765.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 428.0, + 1241.0, + 428.0, + 1241.0, + 447.0, + 1214.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 437.0, + 460.0, + 437.0, + 460.0, + 459.0, + 421.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 437.0, + 907.0, + 437.0, + 907.0, + 459.0, + 866.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 472.0, + 461.0, + 472.0, + 461.0, + 494.0, + 420.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 466.0, + 794.0, + 466.0, + 794.0, + 485.0, + 766.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 472.0, + 908.0, + 472.0, + 908.0, + 494.0, + 866.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 468.0, + 1241.0, + 468.0, + 1241.0, + 487.0, + 1213.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 507.0, + 460.0, + 507.0, + 460.0, + 529.0, + 420.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 506.0, + 794.0, + 506.0, + 794.0, + 526.0, + 766.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 507.0, + 907.0, + 507.0, + 907.0, + 529.0, + 866.0, + 529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 508.0, + 1241.0, + 508.0, + 1241.0, + 528.0, + 1213.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 544.0, + 459.0, + 544.0, + 459.0, + 562.0, + 420.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 543.0, + 908.0, + 543.0, + 908.0, + 564.0, + 866.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 554.0, + 750.0, + 554.0, + 750.0, + 575.0, + 447.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 556.0, + 1196.0, + 556.0, + 1196.0, + 573.0, + 895.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 484.5, + 1113.0, + 484.5, + 1113.0, + 501.5, + 1092.0, + 501.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 624.0, + 715.0, + 624.0, + 715.0, + 662.0, + 293.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 624.0, + 1405.0, + 624.0, + 1405.0, + 662.0, + 946.0, + 662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 658.0, + 673.0, + 658.0, + 673.0, + 692.0, + 295.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 658.0, + 902.0, + 658.0, + 902.0, + 692.0, + 761.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 658.0, + 1289.0, + 658.0, + 1289.0, + 692.0, + 932.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 658.0, + 1402.0, + 658.0, + 1402.0, + 692.0, + 1327.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 690.0, + 774.0, + 690.0, + 774.0, + 720.0, + 298.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1970.0, + 1047.0, + 1970.0, + 1047.0, + 2008.0, + 330.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 2000.0, + 1031.0, + 2000.0, + 1031.0, + 2038.0, + 331.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 2000.0, + 1101.0, + 2000.0, + 1101.0, + 2038.0, + 1045.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 2000.0, + 1218.0, + 2000.0, + 1218.0, + 2038.0, + 1167.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 2000.0, + 1264.0, + 2000.0, + 1264.0, + 2038.0, + 1254.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1762.0, + 875.0, + 1762.0, + 875.0, + 1802.0, + 293.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1692.0, + 545.0, + 1692.0, + 545.0, + 1736.0, + 293.0, + 1736.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": [ + 840.0, + 2087.0, + 862.0, + 2087.0, + 862.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1327.0, + 876.0, + 1327.0, + 876.0, + 1360.0, + 297.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 977.0, + 1327.0, + 1008.0, + 1327.0, + 1008.0, + 1360.0, + 977.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 1327.0, + 1402.0, + 1327.0, + 1402.0, + 1360.0, + 1109.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1356.0, + 1405.0, + 1356.0, + 1405.0, + 1391.0, + 292.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1385.0, + 702.0, + 1385.0, + 702.0, + 1422.0, + 294.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1385.0, + 731.0, + 1385.0, + 731.0, + 1422.0, + 722.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 1385.0, + 1078.0, + 1385.0, + 1078.0, + 1422.0, + 762.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1385.0, + 1406.0, + 1385.0, + 1406.0, + 1422.0, + 1098.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1417.0, + 1406.0, + 1417.0, + 1406.0, + 1455.0, + 292.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1448.0, + 450.0, + 1448.0, + 450.0, + 1479.0, + 294.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 772.0, + 614.0, + 772.0, + 614.0, + 821.0, + 291.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 772.0, + 1202.0, + 772.0, + 1202.0, + 821.0, + 678.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 772.0, + 1407.0, + 772.0, + 1407.0, + 821.0, + 1352.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 813.0, + 1404.0, + 813.0, + 1404.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 842.0, + 1405.0, + 842.0, + 1405.0, + 881.0, + 291.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 876.0, + 1404.0, + 876.0, + 1404.0, + 908.0, + 295.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 905.0, + 1405.0, + 905.0, + 1405.0, + 939.0, + 292.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 937.0, + 1404.0, + 937.0, + 1404.0, + 972.0, + 295.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 966.0, + 750.0, + 966.0, + 750.0, + 1001.0, + 295.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1187.0, + 1405.0, + 1187.0, + 1405.0, + 1223.0, + 294.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1216.0, + 433.0, + 1216.0, + 433.0, + 1254.0, + 292.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 581.0, + 1216.0, + 1405.0, + 1216.0, + 1405.0, + 1254.0, + 581.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1249.0, + 747.0, + 1249.0, + 747.0, + 1283.0, + 292.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1249.0, + 1285.0, + 1249.0, + 1285.0, + 1283.0, + 904.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1249.0, + 1407.0, + 1249.0, + 1407.0, + 1283.0, + 1403.0, + 1283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1282.0, + 475.0, + 1282.0, + 475.0, + 1312.0, + 296.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1494.0, + 1404.0, + 1494.0, + 1404.0, + 1532.0, + 296.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1525.0, + 1405.0, + 1525.0, + 1405.0, + 1561.0, + 294.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1554.0, + 1405.0, + 1554.0, + 1405.0, + 1594.0, + 292.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1581.0, + 1406.0, + 1581.0, + 1406.0, + 1625.0, + 292.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1617.0, + 602.0, + 1617.0, + 602.0, + 1654.0, + 294.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1002.0, + 929.0, + 1002.0, + 929.0, + 1056.0, + 295.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 994.0, + 1002.0, + 1104.0, + 1002.0, + 1104.0, + 1056.0, + 994.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 1002.0, + 1405.0, + 1002.0, + 1405.0, + 1056.0, + 1252.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1047.0, + 327.0, + 1047.0, + 327.0, + 1082.0, + 293.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1047.0, + 471.0, + 1047.0, + 471.0, + 1082.0, + 357.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1047.0, + 1406.0, + 1047.0, + 1406.0, + 1082.0, + 546.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 1088.0, + 979.0, + 1088.0, + 979.0, + 1125.0, + 677.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1088.0, + 1408.0, + 1088.0, + 1408.0, + 1125.0, + 1008.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 1101.0, + 686.0, + 1101.0, + 686.0, + 1135.0, + 672.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1126.0, + 693.0, + 1126.0, + 693.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 757.0, + 1126.0, + 767.0, + 1126.0, + 767.0, + 1167.0, + 757.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1084.0, + 570.0, + 1084.0, + 570.0, + 1130.5, + 292.0, + 1130.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 815.0, + 1821.0, + 815.0, + 1860.0, + 294.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1821.0, + 1407.0, + 1821.0, + 1407.0, + 1860.0, + 1043.0, + 1860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1854.0, + 354.0, + 1854.0, + 354.0, + 1891.0, + 294.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1854.0, + 907.0, + 1854.0, + 907.0, + 1891.0, + 612.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 1854.0, + 1004.0, + 1854.0, + 1004.0, + 1891.0, + 993.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1854.0, + 1154.0, + 1854.0, + 1154.0, + 1891.0, + 1094.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1854.0, + 1297.0, + 1854.0, + 1297.0, + 1891.0, + 1237.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1854.0, + 1404.0, + 1854.0, + 1404.0, + 1891.0, + 1401.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1884.0, + 540.0, + 1884.0, + 540.0, + 1920.0, + 293.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1884.0, + 709.0, + 1884.0, + 709.0, + 1920.0, + 566.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1884.0, + 779.0, + 1884.0, + 779.0, + 1920.0, + 745.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1920.0, + 1041.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1913.0, + 1311.0, + 1913.0, + 1311.0, + 1952.0, + 290.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1913.0, + 1405.0, + 1913.0, + 1405.0, + 1952.0, + 1401.0, + 1952.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1607, + 1405, + 1607, + 1405, + 1848, + 297, + 1848 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 1291, + 1404, + 1291, + 1404, + 1513, + 297, + 1513 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 300, + 1940, + 1402, + 1940, + 1402, + 2035, + 300, + 2035 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 420, + 238, + 1276, + 238, + 1276, + 576, + 420, + 576 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 304, + 767, + 1383, + 767, + 1383, + 1072, + 304, + 1072 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 296, + 1111, + 1405, + 1111, + 1405, + 1235, + 296, + 1235 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 296, + 626, + 1405, + 626, + 1405, + 729, + 296, + 729 + ], + "score": 0.949 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 301, + 1884, + 1255, + 1884, + 1255, + 1916, + 301, + 1916 + ], + "score": 0.758 + }, + { + "category_id": 2, + "poly": [ + 842, + 2087, + 858, + 2087, + 858, + 2111, + 842, + 2111 + ], + "score": 0.635 + }, + { + "category_id": 0, + "poly": [ + 294, + 1549, + 979, + 1549, + 979, + 1583, + 294, + 1583 + ], + "score": 0.524 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 859, + 2087, + 859, + 2111, + 841, + 2111 + ], + "score": 0.339 + }, + { + "category_id": 1, + "poly": [ + 301, + 1884, + 1255, + 1884, + 1255, + 1916, + 301, + 1916 + ], + "score": 0.173 + }, + { + "category_id": 13, + "poly": [ + 1102, + 1707, + 1341, + 1707, + 1341, + 1755, + 1102, + 1755 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { y ( l ) = \\log \\frac { d \\mathcal { M } ( X ^ { ( l ) } ) } { d \\mathcal { M } ( X ^ { ( 0 ) } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 480, + 1413, + 657, + 1413, + 657, + 1453, + 480, + 1453 + ], + "score": 0.93, + "latex": "\\boldsymbol { e } = \\left[ e _ { 1 } \\quad e _ { 2 } \\right] ^ { \\intercal }" + }, + { + "category_id": 13, + "poly": [ + 375, + 2001, + 472, + 2001, + 472, + 2033, + 375, + 2033 + ], + "score": 0.92, + "latex": "s \\leq \\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 297, + 694, + 481, + 694, + 481, + 729, + 297, + 729 + ], + "score": 0.92, + "latex": "y ( l ) = l \\log ( s \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 567, + 692, + 624, + 692, + 624, + 724, + 567, + 724 + ], + "score": 0.91, + "latex": "X ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 647, + 657, + 1034, + 657, + 1034, + 695, + 647, + 695 + ], + "score": 0.91, + "latex": "y ( l ) = \\log ( d _ { \\mathcal { M } } ( \\mathbf { \\bar { { X } } } ^ { ( l ) } ) / d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) )" + }, + { + "category_id": 13, + "poly": [ + 893, + 1639, + 949, + 1639, + 949, + 1670, + 893, + 1670 + ], + "score": 0.91, + "latex": "X ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 821, + 1817, + 865, + 1817, + 865, + 1847, + 821, + 1847 + ], + "score": 0.9, + "latex": "d _ { \\mathcal { M } }" + }, + { + "category_id": 13, + "poly": [ + 549, + 1671, + 601, + 1671, + 601, + 1702, + 549, + 1702 + ], + "score": 0.9, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 1756, + 1394, + 1756, + 1394, + 1788, + 1210, + 1788 + ], + "score": 0.9, + "latex": "y ( l ) = l \\log ( s \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 879, + 694, + 932, + 694, + 932, + 723, + 879, + 723 + ], + "score": 0.89, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 912, + 1943, + 959, + 1943, + 959, + 1970, + 912, + 1970 + ], + "score": 0.89, + "latex": "\\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1143, + 1337, + 1143, + 1337, + 1174, + 1247, + 1174 + ], + "score": 0.88, + "latex": "( 3 0 . 2 \\% )" + }, + { + "category_id": 13, + "poly": [ + 474, + 1294, + 505, + 1294, + 505, + 1323, + 474, + 1323 + ], + "score": 0.87, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1354, + 1170, + 1354, + 1170, + 1385, + 1150, + 1385 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 925, + 1453, + 946, + 1453, + 946, + 1484, + 925, + 1484 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1009, + 1787, + 1042, + 1787, + 1042, + 1813, + 1009, + 1813 + ], + "score": 0.85, + "latex": "s \\lambda" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1453, + 1023, + 1453, + 1023, + 1483, + 1002, + 1483 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 922, + 1425, + 951, + 1425, + 951, + 1452, + 922, + 1452 + ], + "score": 0.84, + "latex": "e _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1008, + 1424, + 1038, + 1424, + 1038, + 1452, + 1008, + 1452 + ], + "score": 0.84, + "latex": "e _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 627, + 1454, + 663, + 1454, + 663, + 1480, + 627, + 1480 + ], + "score": 0.81, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1369, + 1294, + 1393, + 1294, + 1393, + 1321, + 1369, + 1321 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 506, + 1384, + 542, + 1384, + 542, + 1412, + 506, + 1412 + ], + "score": 0.8, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 884, + 629, + 920, + 629, + 920, + 655, + 884, + 655 + ], + "score": 0.79, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 456, + 1483, + 492, + 1483, + 492, + 1509, + 456, + 1509 + ], + "score": 0.79, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 827, + 1610, + 864, + 1610, + 864, + 1637, + 827, + 1637 + ], + "score": 0.78, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1680, + 1236, + 1680, + 1236, + 1706, + 1218, + 1706 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 580, + 1948, + 596, + 1948, + 596, + 1970, + 580, + 1970 + ], + "score": 0.77, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 865, + 1675, + 901, + 1675, + 901, + 1703, + 865, + 1703 + ], + "score": 0.76, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 464, + 1817, + 496, + 1817, + 496, + 1843, + 464, + 1843 + ], + "score": 0.76, + "latex": "s \\lambda" + }, + { + "category_id": 13, + "poly": [ + 373, + 1323, + 406, + 1323, + 406, + 1351, + 373, + 1351 + ], + "score": 0.72, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 1189, + 1978, + 1206, + 1978, + 1206, + 2000, + 1189, + 2000 + ], + "score": 0.69, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1385, + 1329, + 1402, + 1329, + 1402, + 1350, + 1385, + 1350 + ], + "score": 0.67, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 1380, + 1643, + 1391, + 1643, + 1391, + 1669, + 1380, + 1669 + ], + "score": 0.64, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 824, + 1324, + 849, + 1324, + 849, + 1350, + 824, + 1350 + ], + "score": 0.63, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 297, + 1329, + 313, + 1329, + 313, + 1350, + 297, + 1350 + ], + "score": 0.61, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 466, + 1722, + 482, + 1722, + 482, + 1743, + 466, + 1743 + ], + "score": 0.57, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1151, + 697, + 1163, + 697, + 1163, + 723, + 1151, + 723 + ], + "score": 0.44, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 579, + 1755, + 592, + 1755, + 592, + 1782, + 579, + 1782 + ], + "score": 0.31, + "latex": "l" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 240.0, + 826.0, + 240.0, + 826.0, + 269.0, + 490.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 240.0, + 1273.0, + 240.0, + 1273.0, + 269.0, + 926.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 837.0, + 267.0, + 951.0, + 267.0, + 951.0, + 530.0, + 837.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 268.0, + 496.0, + 268.0, + 496.0, + 295.0, + 472.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 276.0, + 792.0, + 276.0, + 792.0, + 308.0, + 715.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 987.0, + 276.0, + 1064.0, + 276.0, + 1064.0, + 308.0, + 987.0, + 308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 279.0, + 932.0, + 279.0, + 932.0, + 439.0, + 903.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1244.0, + 280.0, + 1252.0, + 280.0, + 1252.0, + 287.0, + 1244.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 286.0, + 458.0, + 286.0, + 458.0, + 508.0, + 417.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 301.0, + 496.0, + 301.0, + 496.0, + 334.0, + 445.0, + 334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 717.0, + 302.0, + 814.0, + 302.0, + 814.0, + 337.0, + 717.0, + 337.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 303.0, + 1086.0, + 303.0, + 1086.0, + 335.0, + 990.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 337.0, + 496.0, + 337.0, + 496.0, + 374.0, + 444.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 376.0, + 495.0, + 376.0, + 495.0, + 408.0, + 446.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 452.0, + 409.0, + 497.0, + 409.0, + 497.0, + 447.0, + 452.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 437.0, + 929.0, + 437.0, + 929.0, + 469.0, + 901.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 450.0, + 495.0, + 450.0, + 495.0, + 483.0, + 447.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 483.0, + 498.0, + 483.0, + 498.0, + 522.0, + 444.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 523.0, + 533.0, + 523.0, + 533.0, + 557.0, + 489.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 524.0, + 607.0, + 524.0, + 607.0, + 557.0, + 561.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 523.0, + 683.0, + 523.0, + 683.0, + 556.0, + 636.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 523.0, + 757.0, + 523.0, + 757.0, + 557.0, + 711.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 524.0, + 836.0, + 524.0, + 836.0, + 556.0, + 779.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 935.0, + 526.0, + 958.0, + 526.0, + 958.0, + 553.0, + 935.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 526.0, + 1018.0, + 526.0, + 1018.0, + 554.0, + 995.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 526.0, + 1082.0, + 526.0, + 1082.0, + 553.0, + 1057.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 525.0, + 1146.0, + 525.0, + 1146.0, + 555.0, + 1118.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1181.0, + 527.0, + 1205.0, + 527.0, + 1205.0, + 554.0, + 1181.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 525.0, + 1273.0, + 525.0, + 1273.0, + 555.0, + 1235.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 548.0, + 721.0, + 548.0, + 721.0, + 579.0, + 598.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 549.0, + 1161.0, + 549.0, + 1161.0, + 577.0, + 1041.0, + 577.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.75, + 304.0, + 580.75, + 304.0, + 580.75, + 319.0, + 524.75, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 760.0, + 974.0, + 760.0, + 974.0, + 1028.0, + 934.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 779.0, + 856.0, + 779.0, + 856.0, + 809.0, + 786.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 789.0, + 771.0, + 789.0, + 771.0, + 801.0, + 762.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 792.0, + 1130.0, + 792.0, + 1130.0, + 821.0, + 1056.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 800.0, + 866.0, + 800.0, + 866.0, + 830.0, + 783.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 803.0, + 372.0, + 803.0, + 372.0, + 836.0, + 325.0, + 836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 809.0, + 773.0, + 809.0, + 773.0, + 826.0, + 759.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 815.0, + 1129.0, + 815.0, + 1129.0, + 842.0, + 1054.0, + 842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 816.0, + 395.0, + 816.0, + 395.0, + 831.0, + 380.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 963.0, + 817.0, + 1004.0, + 817.0, + 1004.0, + 850.0, + 963.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 823.0, + 857.0, + 823.0, + 857.0, + 853.0, + 783.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 302.0, + 844.0, + 369.0, + 844.0, + 369.0, + 955.0, + 302.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 846.0, + 865.0, + 846.0, + 865.0, + 874.0, + 784.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 844.0, + 1049.0, + 844.0, + 1049.0, + 856.0, + 1020.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 836.0, + 1130.0, + 836.0, + 1130.0, + 866.0, + 1056.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 756.0, + 875.0, + 773.0, + 875.0, + 773.0, + 892.0, + 756.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 870.0, + 906.0, + 870.0, + 906.0, + 898.0, + 786.0, + 898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 867.0, + 1002.0, + 867.0, + 1002.0, + 895.0, + 960.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 887.0, + 371.0, + 887.0, + 371.0, + 921.0, + 325.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 913.0, + 1004.0, + 913.0, + 1004.0, + 946.0, + 961.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 930.0, + 371.0, + 930.0, + 371.0, + 963.0, + 325.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 937.0, + 475.0, + 937.0, + 475.0, + 950.0, + 464.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 462.0, + 951.0, + 473.0, + 951.0, + 473.0, + 963.0, + 462.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 971.0, + 371.0, + 971.0, + 371.0, + 1004.0, + 325.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 964.0, + 1003.0, + 964.0, + 1003.0, + 993.0, + 964.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1006.0, + 1031.0, + 1006.0, + 1031.0, + 1033.0, + 1008.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1003.0, + 1126.0, + 1003.0, + 1126.0, + 1037.0, + 1084.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 1002.0, + 1211.0, + 1002.0, + 1211.0, + 1036.0, + 1170.0, + 1036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1003.0, + 1297.0, + 1003.0, + 1297.0, + 1037.0, + 1256.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 1003.0, + 1381.0, + 1003.0, + 1381.0, + 1037.0, + 1342.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1019.0, + 441.0, + 1019.0, + 441.0, + 1050.0, + 417.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1019.0, + 524.0, + 1019.0, + 524.0, + 1049.0, + 501.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1019.0, + 608.0, + 1019.0, + 608.0, + 1050.0, + 584.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1019.0, + 691.0, + 1019.0, + 691.0, + 1050.0, + 668.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1030.0, + 1240.0, + 1030.0, + 1240.0, + 1059.0, + 1142.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1044.0, + 613.0, + 1044.0, + 613.0, + 1076.0, + 497.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1110.0, + 1405.0, + 1110.0, + 1405.0, + 1147.0, + 294.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1246.0, + 1143.0, + 1246.0, + 1175.0, + 295.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1338.0, + 1143.0, + 1405.0, + 1143.0, + 1405.0, + 1175.0, + 1338.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1210.0, + 293.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1205.0, + 1164.0, + 1205.0, + 1164.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 625.0, + 883.0, + 625.0, + 883.0, + 661.0, + 294.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 625.0, + 1403.0, + 625.0, + 1403.0, + 661.0, + 921.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 656.0, + 646.0, + 656.0, + 646.0, + 699.0, + 291.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 656.0, + 1407.0, + 656.0, + 1407.0, + 699.0, + 1035.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 689.0, + 296.0, + 689.0, + 296.0, + 736.0, + 291.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 482.0, + 689.0, + 566.0, + 689.0, + 566.0, + 736.0, + 482.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 689.0, + 878.0, + 689.0, + 878.0, + 736.0, + 625.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 689.0, + 1150.0, + 689.0, + 1150.0, + 736.0, + 933.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 689.0, + 1269.0, + 689.0, + 1269.0, + 736.0, + 1164.0, + 736.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": [ + 294.0, + 1882.0, + 1259.0, + 1882.0, + 1259.0, + 1920.0, + 294.0, + 1920.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": [ + 296.0, + 1549.0, + 979.0, + 1549.0, + 979.0, + 1586.0, + 296.0, + 1586.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": [ + 296.0, + 1606.0, + 826.0, + 1606.0, + 826.0, + 1642.0, + 296.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 1606.0, + 1405.0, + 1606.0, + 1405.0, + 1642.0, + 865.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1638.0, + 892.0, + 1638.0, + 892.0, + 1676.0, + 295.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1638.0, + 1379.0, + 1638.0, + 1379.0, + 1676.0, + 950.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 1638.0, + 1405.0, + 1638.0, + 1405.0, + 1676.0, + 1392.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1670.0, + 548.0, + 1670.0, + 548.0, + 1710.0, + 294.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1670.0, + 864.0, + 1670.0, + 864.0, + 1710.0, + 602.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 1670.0, + 1217.0, + 1670.0, + 1217.0, + 1710.0, + 902.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1670.0, + 1406.0, + 1670.0, + 1406.0, + 1710.0, + 1237.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1713.0, + 1406.0, + 1713.0, + 1406.0, + 1750.0, + 1344.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1753.0, + 578.0, + 1753.0, + 578.0, + 1790.0, + 294.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1753.0, + 1209.0, + 1753.0, + 1209.0, + 1790.0, + 593.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1753.0, + 1403.0, + 1753.0, + 1403.0, + 1790.0, + 1395.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1783.0, + 1008.0, + 1783.0, + 1008.0, + 1817.0, + 296.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1783.0, + 1403.0, + 1783.0, + 1403.0, + 1817.0, + 1043.0, + 1817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1815.0, + 463.0, + 1815.0, + 463.0, + 1849.0, + 296.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 1815.0, + 820.0, + 1815.0, + 820.0, + 1849.0, + 497.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1815.0, + 1246.0, + 1815.0, + 1246.0, + 1849.0, + 866.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 284.0, + 1696.5, + 1354.0, + 1696.5, + 1354.0, + 1766.5, + 284.0, + 1766.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1700.5, + 1339.0, + 1700.5, + 1339.0, + 1740.5, + 1230.0, + 1740.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1291.0, + 473.0, + 1291.0, + 473.0, + 1327.0, + 294.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1291.0, + 1368.0, + 1291.0, + 1368.0, + 1327.0, + 506.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1291.0, + 1404.0, + 1291.0, + 1404.0, + 1327.0, + 1394.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 1323.0, + 372.0, + 1323.0, + 372.0, + 1358.0, + 314.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1323.0, + 823.0, + 1323.0, + 823.0, + 1358.0, + 407.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1323.0, + 1384.0, + 1323.0, + 1384.0, + 1358.0, + 850.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1323.0, + 1406.0, + 1323.0, + 1406.0, + 1358.0, + 1403.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1348.0, + 1149.0, + 1348.0, + 1149.0, + 1389.0, + 292.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1389.0, + 1171.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1382.0, + 505.0, + 1382.0, + 505.0, + 1420.0, + 294.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1382.0, + 1404.0, + 1382.0, + 1404.0, + 1420.0, + 543.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1417.0, + 479.0, + 1417.0, + 479.0, + 1460.0, + 292.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1417.0, + 921.0, + 1417.0, + 921.0, + 1460.0, + 658.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1417.0, + 1007.0, + 1417.0, + 1007.0, + 1460.0, + 952.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 1417.0, + 1406.0, + 1417.0, + 1406.0, + 1460.0, + 1039.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1451.0, + 626.0, + 1451.0, + 626.0, + 1486.0, + 295.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1451.0, + 924.0, + 1451.0, + 924.0, + 1486.0, + 664.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 1451.0, + 1001.0, + 1451.0, + 1001.0, + 1486.0, + 947.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1451.0, + 1405.0, + 1451.0, + 1405.0, + 1486.0, + 1024.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1480.0, + 455.0, + 1480.0, + 455.0, + 1516.0, + 294.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1480.0, + 1374.0, + 1480.0, + 1374.0, + 1516.0, + 493.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1939.0, + 579.0, + 1939.0, + 579.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 1939.0, + 911.0, + 1939.0, + 911.0, + 1977.0, + 597.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1939.0, + 1404.0, + 1939.0, + 1404.0, + 1977.0, + 960.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1188.0, + 1972.0, + 1188.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2007.0, + 1207.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 374.0, + 2001.0, + 374.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 2001.0, + 1166.0, + 2001.0, + 1166.0, + 2039.0, + 473.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1259.0, + 1882.0, + 1259.0, + 1920.0, + 294.0, + 1920.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 904, + 988, + 904, + 988, + 1301, + 299, + 1301 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1430, + 1402, + 1430, + 1402, + 1646, + 298, + 1646 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 521, + 1404, + 521, + 1404, + 795, + 298, + 795 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1661, + 1403, + 1661, + 1403, + 1938, + 298, + 1938 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 1036, + 904, + 1377, + 904, + 1377, + 1252, + 1036, + 1252 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 298, + 230, + 1404, + 230, + 1404, + 505, + 298, + 505 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 299, + 1978, + 1402, + 1978, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 300, + 1355, + 529, + 1355, + 529, + 1392, + 300, + 1392 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.804 + }, + { + "category_id": 4, + "poly": [ + 1012, + 1293, + 1403, + 1293, + 1403, + 1357, + 1012, + 1357 + ], + "score": 0.792 + }, + { + "category_id": 1, + "poly": [ + 300, + 842, + 1382, + 842, + 1382, + 874, + 300, + 874 + ], + "score": 0.755 + }, + { + "category_id": 0, + "poly": [ + 300, + 842, + 1382, + 842, + 1382, + 874, + 300, + 874 + ], + "score": 0.196 + }, + { + "category_id": 13, + "poly": [ + 519, + 1087, + 711, + 1087, + 711, + 1121, + 519, + 1121 + ], + "score": 0.93, + "latex": "t ( \\mathbf { \\bar { \\boldsymbol { X } } } ) : = \\boldsymbol { X } _ { 1 } / \\boldsymbol { X } _ { 0 } ^ { \\mathbf { \\bar { \\alpha } } }" + }, + { + "category_id": 13, + "poly": [ + 801, + 702, + 898, + 702, + 898, + 734, + 801, + 734 + ], + "score": 0.92, + "latex": "s \\leq \\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1151, + 1555, + 1215, + 1555, + 1215, + 1587, + 1151, + 1587 + ], + "score": 0.92, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 820, + 905, + 988, + 905, + 988, + 936, + 820, + 936 + ], + "score": 0.92, + "latex": "X = X _ { 0 } + X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 725, + 580, + 838, + 580, + 838, + 611, + 725, + 611 + ], + "score": 0.91, + "latex": "s \\ < \\ \\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 985, + 411, + 1356, + 411, + 1356, + 444, + 985, + 444 + ], + "score": 0.91, + "latex": "\\stackrel { \\cdot } { 1 } \\leq s < \\lambda ^ { - 1 } \\approx 1 + 3 . 6 2 \\times 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 961, + 1584, + 1022, + 1584, + 1022, + 1618, + 961, + 1618 + ], + "score": 0.91, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 926, + 473, + 974, + 473, + 974, + 502, + 926, + 502 + ], + "score": 0.9, + "latex": "\\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1294, + 1229, + 1294, + 1229, + 1327, + 1128, + 1327 + ], + "score": 0.9, + "latex": "\\log t ( X )" + }, + { + "category_id": 13, + "poly": [ + 965, + 613, + 1061, + 613, + 1061, + 641, + 965, + 641 + ], + "score": 0.9, + "latex": "s ~ = ~ 1 0" + }, + { + "category_id": 13, + "poly": [ + 1052, + 1584, + 1103, + 1584, + 1103, + 1617, + 1052, + 1617 + ], + "score": 0.9, + "latex": "o ( 1 )" + }, + { + "category_id": 13, + "poly": [ + 1119, + 1461, + 1168, + 1461, + 1168, + 1491, + 1119, + 1491 + ], + "score": 0.9, + "latex": "\\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 949, + 997, + 988, + 997, + 988, + 1027, + 949, + 1027 + ], + "score": 0.87, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 902, + 938, + 941, + 938, + 941, + 966, + 902, + 966 + ], + "score": 0.87, + "latex": "X _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 690, + 1179, + 820, + 1179, + 820, + 1209, + 690, + 1209 + ], + "score": 0.85, + "latex": "R = 0 . 5 4 5 )" + }, + { + "category_id": 13, + "poly": [ + 635, + 906, + 662, + 906, + 662, + 932, + 635, + 932 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 450, + 1089, + 478, + 1089, + 478, + 1116, + 450, + 1116 + ], + "score": 0.8, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 299, + 934, + 585, + 934, + 585, + 967, + 299, + 967 + ], + "score": 0.72, + "latex": "( X _ { 0 } \\in \\mathcal { M } , \\bar { X _ { 1 } } \\in \\mathcal { M } ^ { \\perp } )" + }, + { + "category_id": 13, + "poly": [ + 459, + 709, + 476, + 709, + 476, + 731, + 459, + 731 + ], + "score": 0.63, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 899, + 741, + 916, + 741, + 916, + 762, + 899, + 762 + ], + "score": 0.62, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 467, + 589, + 484, + 589, + 484, + 610, + 467, + 610 + ], + "score": 0.62, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1306, + 1875, + 1342, + 1875, + 1342, + 1903, + 1306, + 1903 + ], + "score": 0.57, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 551, + 2010, + 566, + 2010, + 566, + 2030, + 551, + 2030 + ], + "score": 0.54, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 301, + 935, + 425, + 935, + 425, + 966, + 301, + 966 + ], + "score": 0.48, + "latex": "( X _ { 0 } ~ \\in ~ \\mathcal { M }" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 903.0, + 1361.0, + 903.0, + 1361.0, + 925.0, + 1097.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 915.0, + 1085.0, + 915.0, + 1085.0, + 936.0, + 1047.0, + 936.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 937.0, + 1218.0, + 937.0, + 1218.0, + 946.0, + 1208.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 949.0, + 1086.0, + 949.0, + 1086.0, + 973.0, + 1046.0, + 973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 973.0, + 1247.0, + 973.0, + 1247.0, + 990.0, + 1230.0, + 990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 976.0, + 1216.0, + 976.0, + 1216.0, + 991.0, + 1205.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 984.0, + 1086.0, + 984.0, + 1086.0, + 1009.0, + 1046.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1006.0, + 1221.0, + 1006.0, + 1221.0, + 1020.0, + 1208.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 998.0, + 1365.0, + 998.0, + 1365.0, + 1015.0, + 1349.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1021.0, + 1086.0, + 1021.0, + 1086.0, + 1042.0, + 1047.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1016.0, + 1202.0, + 1016.0, + 1202.0, + 1028.0, + 1189.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1024.0, + 1225.0, + 1024.0, + 1225.0, + 1034.0, + 1216.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1018.0, + 1363.0, + 1018.0, + 1363.0, + 1044.0, + 1349.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1036.0, + 1056.0, + 1036.0, + 1056.0, + 1103.0, + 1034.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1056.0, + 1085.0, + 1056.0, + 1085.0, + 1079.0, + 1047.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1060.0, + 1173.0, + 1060.0, + 1173.0, + 1070.0, + 1164.0, + 1070.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1067.0, + 1212.0, + 1067.0, + 1212.0, + 1080.0, + 1201.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1085.0, + 1179.0, + 1085.0, + 1179.0, + 1094.0, + 1171.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1083.0, + 1232.0, + 1083.0, + 1232.0, + 1095.0, + 1220.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1091.0, + 1086.0, + 1091.0, + 1086.0, + 1114.0, + 1048.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1126.0, + 1086.0, + 1126.0, + 1086.0, + 1150.0, + 1046.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1113.0, + 1158.0, + 1113.0, + 1158.0, + 1125.0, + 1146.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1123.0, + 1178.0, + 1123.0, + 1178.0, + 1132.0, + 1169.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1123.0, + 1269.0, + 1123.0, + 1269.0, + 1153.0, + 1255.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1117.0, + 1330.0, + 1117.0, + 1330.0, + 1155.0, + 1274.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1161.0, + 1087.0, + 1161.0, + 1087.0, + 1185.0, + 1046.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1150.0, + 1124.0, + 1150.0, + 1124.0, + 1172.0, + 1103.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1147.0, + 1161.0, + 1147.0, + 1161.0, + 1160.0, + 1148.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1155.0, + 1269.0, + 1155.0, + 1269.0, + 1184.0, + 1254.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1151.0, + 1331.0, + 1151.0, + 1331.0, + 1190.0, + 1274.0, + 1190.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1196.0, + 1087.0, + 1196.0, + 1087.0, + 1220.0, + 1046.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1193.0, + 1109.0, + 1193.0, + 1109.0, + 1206.0, + 1095.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1192.0, + 1269.0, + 1192.0, + 1269.0, + 1205.0, + 1255.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 1187.0, + 1368.0, + 1187.0, + 1368.0, + 1209.0, + 1276.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1213.0, + 1125.0, + 1213.0, + 1125.0, + 1236.0, + 1098.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1215.0, + 1194.0, + 1215.0, + 1194.0, + 1235.0, + 1169.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1242.0, + 1215.0, + 1258.0, + 1215.0, + 1258.0, + 1234.0, + 1242.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1215.0, + 1328.0, + 1215.0, + 1328.0, + 1234.0, + 1312.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 1230.0, + 1358.0, + 1230.0, + 1358.0, + 1252.0, + 1101.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2013.0, + 328.0, + 2013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 550.0, + 2002.0, + 550.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 2002.0, + 902.0, + 2002.0, + 902.0, + 2038.0, + 567.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1351.0, + 535.0, + 1351.0, + 535.0, + 1401.0, + 292.0, + 1401.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, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1010.0, + 1293.0, + 1127.0, + 1293.0, + 1127.0, + 1329.0, + 1010.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1293.0, + 1404.0, + 1293.0, + 1404.0, + 1329.0, + 1230.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 1322.0, + 1295.0, + 1322.0, + 1295.0, + 1363.0, + 1009.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 842.0, + 1386.0, + 842.0, + 1386.0, + 876.0, + 296.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 901.0, + 634.0, + 901.0, + 634.0, + 939.0, + 295.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 901.0, + 819.0, + 901.0, + 819.0, + 939.0, + 663.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 935.0, + 901.0, + 935.0, + 901.0, + 969.0, + 586.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 935.0, + 991.0, + 935.0, + 991.0, + 969.0, + 942.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 964.0, + 992.0, + 964.0, + 992.0, + 999.0, + 294.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 995.0, + 948.0, + 995.0, + 948.0, + 1031.0, + 294.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1027.0, + 993.0, + 1027.0, + 993.0, + 1060.0, + 293.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1055.0, + 993.0, + 1055.0, + 993.0, + 1092.0, + 294.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1088.0, + 449.0, + 1088.0, + 449.0, + 1121.0, + 295.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1088.0, + 518.0, + 1088.0, + 518.0, + 1121.0, + 479.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 1088.0, + 993.0, + 1088.0, + 993.0, + 1121.0, + 712.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1117.0, + 995.0, + 1117.0, + 995.0, + 1151.0, + 292.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1148.0, + 993.0, + 1148.0, + 993.0, + 1182.0, + 294.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1177.0, + 689.0, + 1177.0, + 689.0, + 1212.0, + 293.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1177.0, + 992.0, + 1177.0, + 992.0, + 1212.0, + 821.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1206.0, + 993.0, + 1206.0, + 993.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1239.0, + 993.0, + 1239.0, + 993.0, + 1271.0, + 294.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1269.0, + 706.0, + 1269.0, + 706.0, + 1302.0, + 293.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1429.0, + 1407.0, + 1429.0, + 1407.0, + 1468.0, + 294.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1460.0, + 1118.0, + 1460.0, + 1118.0, + 1497.0, + 292.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1460.0, + 1407.0, + 1460.0, + 1407.0, + 1497.0, + 1169.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1491.0, + 1407.0, + 1491.0, + 1407.0, + 1529.0, + 293.0, + 1529.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1523.0, + 1404.0, + 1523.0, + 1404.0, + 1558.0, + 294.0, + 1558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1553.0, + 1150.0, + 1553.0, + 1150.0, + 1591.0, + 294.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 1553.0, + 1407.0, + 1553.0, + 1407.0, + 1591.0, + 1216.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1582.0, + 960.0, + 1582.0, + 960.0, + 1621.0, + 293.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1582.0, + 1051.0, + 1582.0, + 1051.0, + 1621.0, + 1023.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 1582.0, + 1407.0, + 1582.0, + 1407.0, + 1621.0, + 1104.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1616.0, + 1190.0, + 1616.0, + 1190.0, + 1648.0, + 294.0, + 1648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 519.0, + 1405.0, + 519.0, + 1405.0, + 557.0, + 293.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 553.0, + 1404.0, + 553.0, + 1404.0, + 585.0, + 296.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 579.0, + 466.0, + 579.0, + 466.0, + 619.0, + 293.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 579.0, + 724.0, + 579.0, + 724.0, + 619.0, + 485.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 579.0, + 1406.0, + 579.0, + 1406.0, + 619.0, + 839.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 611.0, + 964.0, + 611.0, + 964.0, + 648.0, + 294.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 611.0, + 1405.0, + 611.0, + 1405.0, + 648.0, + 1062.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 642.0, + 1405.0, + 642.0, + 1405.0, + 677.0, + 292.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 671.0, + 1405.0, + 671.0, + 1405.0, + 710.0, + 293.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 702.0, + 458.0, + 702.0, + 458.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 702.0, + 800.0, + 702.0, + 800.0, + 739.0, + 477.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 702.0, + 1405.0, + 702.0, + 1405.0, + 739.0, + 899.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 898.0, + 732.0, + 898.0, + 772.0, + 293.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 732.0, + 1404.0, + 732.0, + 1404.0, + 772.0, + 917.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 766.0, + 1081.0, + 766.0, + 1081.0, + 798.0, + 296.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1661.0, + 1403.0, + 1661.0, + 1403.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1691.0, + 1402.0, + 1691.0, + 1402.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1722.0, + 1404.0, + 1722.0, + 1404.0, + 1759.0, + 294.0, + 1759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1792.0, + 292.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 1407.0, + 1784.0, + 1407.0, + 1820.0, + 294.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1814.0, + 1404.0, + 1814.0, + 1404.0, + 1848.0, + 292.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1845.0, + 1404.0, + 1845.0, + 1404.0, + 1878.0, + 296.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1874.0, + 1305.0, + 1874.0, + 1305.0, + 1911.0, + 294.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1874.0, + 1405.0, + 1874.0, + 1405.0, + 1911.0, + 1343.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1904.0, + 1405.0, + 1904.0, + 1405.0, + 1943.0, + 292.0, + 1943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 231.0, + 1405.0, + 231.0, + 1405.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 1406.0, + 261.0, + 1406.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 292.0, + 1406.0, + 292.0, + 1406.0, + 327.0, + 293.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 356.0, + 292.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 351.0, + 1405.0, + 351.0, + 1405.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 416.0, + 294.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 412.0, + 984.0, + 412.0, + 984.0, + 447.0, + 293.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 412.0, + 1404.0, + 412.0, + 1404.0, + 447.0, + 1357.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 442.0, + 1403.0, + 442.0, + 1403.0, + 479.0, + 293.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 473.0, + 925.0, + 473.0, + 925.0, + 508.0, + 294.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 473.0, + 1070.0, + 473.0, + 1070.0, + 508.0, + 975.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 842.0, + 1386.0, + 842.0, + 1386.0, + 876.0, + 296.0, + 876.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1637, + 1404, + 1637, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 537, + 1404, + 537, + 1404, + 903, + 298, + 903 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 308, + 1402, + 308, + 1402, + 521, + 298, + 521 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1178, + 1404, + 1178, + 1404, + 1455, + 298, + 1455 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 297, + 918, + 1403, + 918, + 1403, + 1164, + 297, + 1164 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 294, + 230, + 1399, + 230, + 1399, + 292, + 294, + 292 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 299, + 1541, + 543, + 1541, + 543, + 1577, + 299, + 1577 + ], + "score": 0.876 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 13, + "poly": [ + 299, + 980, + 405, + 980, + 405, + 1014, + 299, + 1014 + ], + "score": 0.92, + "latex": "\\{ X \\geq 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 854, + 337, + 903, + 337, + 903, + 367, + 854, + 367 + ], + "score": 0.9, + "latex": "\\bar { \\lambda } ^ { - 1 }" + }, + { + "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": [ + 292.0, + 1538.0, + 550.0, + 1538.0, + 550.0, + 1586.0, + 292.0, + 1586.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": [ + 292.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1672.0, + 292.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1670.0, + 1405.0, + 1670.0, + 1405.0, + 1702.0, + 296.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1697.0, + 1407.0, + 1697.0, + 1407.0, + 1735.0, + 292.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1727.0, + 1404.0, + 1727.0, + 1404.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1758.0, + 1408.0, + 1758.0, + 1408.0, + 1798.0, + 292.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1847.0, + 1408.0, + 1847.0, + 1408.0, + 1891.0, + 292.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1878.0, + 1408.0, + 1878.0, + 1408.0, + 1920.0, + 289.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1947.0, + 292.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1977.0, + 296.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2009.0, + 292.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1399.0, + 2001.0, + 1399.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 536.0, + 1405.0, + 536.0, + 1405.0, + 573.0, + 293.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 568.0, + 1404.0, + 568.0, + 1404.0, + 602.0, + 294.0, + 602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 596.0, + 1404.0, + 596.0, + 1404.0, + 634.0, + 295.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 630.0, + 1404.0, + 630.0, + 1404.0, + 664.0, + 294.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 662.0, + 1404.0, + 662.0, + 1404.0, + 692.0, + 296.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 724.0, + 294.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 720.0, + 1404.0, + 720.0, + 1404.0, + 756.0, + 293.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 750.0, + 1404.0, + 750.0, + 1404.0, + 784.0, + 294.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 781.0, + 1405.0, + 781.0, + 1405.0, + 816.0, + 292.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 810.0, + 1405.0, + 810.0, + 1405.0, + 849.0, + 292.0, + 849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 844.0, + 1405.0, + 844.0, + 1405.0, + 878.0, + 293.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 464.0, + 870.0, + 464.0, + 905.0, + 295.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 307.0, + 1406.0, + 307.0, + 1406.0, + 344.0, + 294.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 336.0, + 853.0, + 336.0, + 853.0, + 370.0, + 294.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 336.0, + 1404.0, + 336.0, + 1404.0, + 370.0, + 904.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 366.0, + 1403.0, + 366.0, + 1403.0, + 406.0, + 292.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 399.0, + 1406.0, + 399.0, + 1406.0, + 435.0, + 293.0, + 435.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": [ + 293.0, + 459.0, + 1407.0, + 459.0, + 1407.0, + 498.0, + 293.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 492.0, + 1404.0, + 492.0, + 1404.0, + 526.0, + 296.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1180.0, + 1404.0, + 1180.0, + 1404.0, + 1213.0, + 297.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1210.0, + 1404.0, + 1210.0, + 1404.0, + 1247.0, + 293.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1241.0, + 1405.0, + 1241.0, + 1405.0, + 1277.0, + 294.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1271.0, + 1406.0, + 1271.0, + 1406.0, + 1306.0, + 292.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1299.0, + 1408.0, + 1299.0, + 1408.0, + 1340.0, + 293.0, + 1340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1332.0, + 1405.0, + 1332.0, + 1405.0, + 1365.0, + 296.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1364.0, + 1402.0, + 1364.0, + 1402.0, + 1396.0, + 296.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1391.0, + 1405.0, + 1391.0, + 1405.0, + 1426.0, + 293.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1425.0, + 1077.0, + 1425.0, + 1077.0, + 1458.0, + 296.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 917.0, + 1405.0, + 917.0, + 1405.0, + 953.0, + 294.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 951.0, + 1405.0, + 951.0, + 1405.0, + 985.0, + 295.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 980.0, + 1405.0, + 980.0, + 1405.0, + 1016.0, + 406.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1011.0, + 1405.0, + 1011.0, + 1405.0, + 1045.0, + 292.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1042.0, + 1405.0, + 1042.0, + 1405.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1072.0, + 1405.0, + 1072.0, + 1405.0, + 1106.0, + 293.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 1407.0, + 1101.0, + 1407.0, + 1137.0, + 294.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1130.0, + 1257.0, + 1130.0, + 1257.0, + 1170.0, + 292.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1406.0, + 228.0, + 1406.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 1328.0, + 261.0, + 1328.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 283, + 1404, + 283, + 1404, + 436, + 299, + 436 + ], + "score": 0.966 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 483, + 487, + 483, + 487, + 516, + 299, + 516 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 837, + 2088, + 865, + 2088, + 865, + 2112, + 837, + 2112 + ], + "score": 0.829 + }, + { + "category_id": 0, + "poly": [ + 301, + 232, + 557, + 232, + 557, + 261, + 301, + 261 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 299, + 534, + 1405, + 534, + 1405, + 686, + 299, + 686 + ], + "score": 0.757 + }, + { + "category_id": 1, + "poly": [ + 297, + 1723, + 1400, + 1723, + 1400, + 1787, + 297, + 1787 + ], + "score": 0.716 + }, + { + "category_id": 1, + "poly": [ + 296, + 1240, + 1402, + 1240, + 1402, + 1336, + 296, + 1336 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 297, + 1971, + 1398, + 1971, + 1398, + 2033, + 297, + 2033 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 297, + 1015, + 1405, + 1015, + 1405, + 1109, + 297, + 1109 + ], + "score": 0.704 + }, + { + "category_id": 1, + "poly": [ + 298, + 1354, + 1405, + 1354, + 1405, + 1477, + 298, + 1477 + ], + "score": 0.701 + }, + { + "category_id": 1, + "poly": [ + 297, + 789, + 1396, + 789, + 1396, + 854, + 297, + 854 + ], + "score": 0.696 + }, + { + "category_id": 1, + "poly": [ + 295, + 1641, + 1399, + 1641, + 1399, + 1705, + 295, + 1705 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 297, + 1806, + 1398, + 1806, + 1398, + 1870, + 297, + 1870 + ], + "score": 0.681 + }, + { + "category_id": 1, + "poly": [ + 296, + 707, + 1398, + 707, + 1398, + 770, + 296, + 770 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 297, + 1498, + 1405, + 1498, + 1405, + 1623, + 297, + 1623 + ], + "score": 0.647 + }, + { + "category_id": 1, + "poly": [ + 297, + 871, + 1405, + 871, + 1405, + 995, + 297, + 995 + ], + "score": 0.637 + }, + { + "category_id": 1, + "poly": [ + 295, + 1889, + 1398, + 1889, + 1398, + 1953, + 295, + 1953 + ], + "score": 0.622 + }, + { + "category_id": 1, + "poly": [ + 296, + 1128, + 1406, + 1128, + 1406, + 1222, + 296, + 1222 + ], + "score": 0.198 + }, + { + "category_id": 13, + "poly": [ + 897, + 1977, + 952, + 1977, + 952, + 2007, + 897, + 2007 + ], + "score": 0.9, + "latex": "G _ { n , p }" + }, + { + "category_id": 13, + "poly": [ + 841, + 1308, + 860, + 1308, + 860, + 1330, + 841, + 1330 + ], + "score": 0.54, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } } =" + }, + { + "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": [ + 297.0, + 485.0, + 490.0, + 485.0, + 490.0, + 518.0, + 297.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 233.0, + 558.0, + 233.0, + 558.0, + 263.0, + 299.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 280.0, + 1405.0, + 280.0, + 1405.0, + 321.0, + 295.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 313.0, + 1404.0, + 313.0, + 1404.0, + 350.0, + 294.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 342.0, + 1405.0, + 342.0, + 1405.0, + 381.0, + 292.0, + 381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 374.0, + 1405.0, + 374.0, + 1405.0, + 411.0, + 293.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 404.0, + 1056.0, + 404.0, + 1056.0, + 441.0, + 295.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 533.0, + 1405.0, + 533.0, + 1405.0, + 571.0, + 296.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 564.0, + 1405.0, + 564.0, + 1405.0, + 601.0, + 322.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 590.0, + 1406.0, + 590.0, + 1406.0, + 635.0, + 319.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 626.0, + 1402.0, + 626.0, + 1402.0, + 659.0, + 323.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 653.0, + 436.0, + 653.0, + 436.0, + 692.0, + 321.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1722.0, + 1406.0, + 1722.0, + 1406.0, + 1761.0, + 295.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1755.0, + 692.0, + 1755.0, + 692.0, + 1788.0, + 322.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1239.0, + 1406.0, + 1239.0, + 1406.0, + 1278.0, + 293.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1273.0, + 1405.0, + 1273.0, + 1405.0, + 1306.0, + 323.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1305.0, + 840.0, + 1305.0, + 840.0, + 1339.0, + 324.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1305.0, + 1019.0, + 1305.0, + 1019.0, + 1339.0, + 861.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1970.0, + 896.0, + 1970.0, + 896.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1970.0, + 1403.0, + 1970.0, + 1403.0, + 2010.0, + 953.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 2003.0, + 657.0, + 2003.0, + 657.0, + 2033.0, + 319.0, + 2033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1013.0, + 1402.0, + 1013.0, + 1402.0, + 1051.0, + 294.0, + 1051.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1044.0, + 1405.0, + 1044.0, + 1405.0, + 1085.0, + 321.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1078.0, + 793.0, + 1078.0, + 793.0, + 1109.0, + 322.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1353.0, + 1406.0, + 1353.0, + 1406.0, + 1390.0, + 292.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1384.0, + 1405.0, + 1384.0, + 1405.0, + 1422.0, + 321.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1418.0, + 1403.0, + 1418.0, + 1403.0, + 1450.0, + 325.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1446.0, + 989.0, + 1446.0, + 989.0, + 1482.0, + 322.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 787.0, + 1401.0, + 787.0, + 1401.0, + 828.0, + 293.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 820.0, + 1049.0, + 820.0, + 1049.0, + 855.0, + 323.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1637.0, + 1404.0, + 1637.0, + 1404.0, + 1681.0, + 293.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1673.0, + 971.0, + 1673.0, + 971.0, + 1706.0, + 321.0, + 1706.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1801.0, + 1403.0, + 1801.0, + 1403.0, + 1846.0, + 293.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1835.0, + 811.0, + 1835.0, + 811.0, + 1870.0, + 322.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 707.0, + 1402.0, + 707.0, + 1402.0, + 742.0, + 295.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 739.0, + 1111.0, + 739.0, + 1111.0, + 772.0, + 321.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1500.0, + 1405.0, + 1500.0, + 1405.0, + 1532.0, + 296.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1528.0, + 1406.0, + 1528.0, + 1406.0, + 1565.0, + 320.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1559.0, + 1406.0, + 1559.0, + 1406.0, + 1596.0, + 323.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1591.0, + 887.0, + 1591.0, + 887.0, + 1624.0, + 320.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 873.0, + 1403.0, + 873.0, + 1403.0, + 906.0, + 295.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 904.0, + 1405.0, + 904.0, + 1405.0, + 937.0, + 323.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 932.0, + 1406.0, + 932.0, + 1406.0, + 970.0, + 319.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 962.0, + 395.0, + 962.0, + 395.0, + 995.0, + 320.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1886.0, + 1405.0, + 1886.0, + 1405.0, + 1926.0, + 294.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1920.0, + 1126.0, + 1920.0, + 1126.0, + 1952.0, + 324.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1125.0, + 1403.0, + 1125.0, + 1403.0, + 1167.0, + 291.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1159.0, + 1404.0, + 1159.0, + 1404.0, + 1196.0, + 320.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1191.0, + 735.0, + 1191.0, + 735.0, + 1221.0, + 324.0, + 1221.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1030, + 1403, + 1030, + 1403, + 1124, + 296, + 1124 + ], + "score": 0.893 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1399, + 229, + 1399, + 293, + 294, + 293 + ], + "score": 0.888 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.884 + }, + { + "category_id": 1, + "poly": [ + 297, + 1316, + 1401, + 1316, + 1401, + 1380, + 297, + 1380 + ], + "score": 0.88 + }, + { + "category_id": 1, + "poly": [ + 297, + 1230, + 1401, + 1230, + 1401, + 1295, + 297, + 1295 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 294, + 944, + 1401, + 944, + 1401, + 1009, + 294, + 1009 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 299, + 314, + 1398, + 314, + 1398, + 408, + 299, + 408 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 293, + 1146, + 1399, + 1146, + 1399, + 1210, + 293, + 1210 + ], + "score": 0.871 + }, + { + "category_id": 1, + "poly": [ + 299, + 1400, + 1401, + 1400, + 1401, + 1465, + 299, + 1465 + ], + "score": 0.869 + }, + { + "category_id": 1, + "poly": [ + 297, + 575, + 1397, + 575, + 1397, + 639, + 297, + 639 + ], + "score": 0.868 + }, + { + "category_id": 1, + "poly": [ + 299, + 1485, + 1400, + 1485, + 1400, + 1550, + 299, + 1550 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 297, + 714, + 1399, + 714, + 1399, + 779, + 297, + 779 + ], + "score": 0.859 + }, + { + "category_id": 1, + "poly": [ + 296, + 1569, + 1401, + 1569, + 1401, + 1635, + 296, + 1635 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 296, + 429, + 1404, + 429, + 1404, + 554, + 296, + 554 + ], + "score": 0.85 + }, + { + "category_id": 1, + "poly": [ + 298, + 798, + 1404, + 798, + 1404, + 924, + 298, + 924 + ], + "score": 0.842 + }, + { + "category_id": 1, + "poly": [ + 299, + 1654, + 1399, + 1654, + 1399, + 1750, + 299, + 1750 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 294, + 1770, + 1402, + 1770, + 1402, + 1836, + 294, + 1836 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.827 + }, + { + "category_id": 1, + "poly": [ + 297, + 1855, + 1403, + 1855, + 1403, + 1949, + 297, + 1949 + ], + "score": 0.813 + }, + { + "category_id": 1, + "poly": [ + 295, + 659, + 1393, + 659, + 1393, + 694, + 295, + 694 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 298, + 1971, + 1399, + 1971, + 1399, + 2035, + 298, + 2035 + ], + "score": 0.804 + }, + { + "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, + 868.0, + 2085.0, + 868.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1027.0, + 1403.0, + 1027.0, + 1403.0, + 1067.0, + 294.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1059.0, + 1408.0, + 1059.0, + 1408.0, + 1099.0, + 320.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1090.0, + 453.0, + 1090.0, + 453.0, + 1126.0, + 321.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 267.0, + 294.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 261.0, + 790.0, + 261.0, + 790.0, + 294.0, + 322.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1316.0, + 1403.0, + 1316.0, + 1403.0, + 1352.0, + 296.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1348.0, + 1003.0, + 1348.0, + 1003.0, + 1380.0, + 325.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1230.0, + 1405.0, + 1230.0, + 1405.0, + 1266.0, + 295.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1260.0, + 546.0, + 1260.0, + 546.0, + 1295.0, + 322.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 938.0, + 1406.0, + 938.0, + 1406.0, + 987.0, + 291.0, + 987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 977.0, + 654.0, + 977.0, + 654.0, + 1009.0, + 323.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 315.0, + 1402.0, + 315.0, + 1402.0, + 349.0, + 295.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 344.0, + 1404.0, + 344.0, + 1404.0, + 383.0, + 319.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 377.0, + 982.0, + 377.0, + 982.0, + 411.0, + 324.0, + 411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1146.0, + 1404.0, + 1146.0, + 1404.0, + 1182.0, + 295.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1177.0, + 840.0, + 1177.0, + 840.0, + 1213.0, + 323.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1399.0, + 1402.0, + 1399.0, + 1402.0, + 1438.0, + 294.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1431.0, + 1157.0, + 1431.0, + 1157.0, + 1466.0, + 323.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 574.0, + 1403.0, + 574.0, + 1403.0, + 610.0, + 294.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 607.0, + 505.0, + 607.0, + 505.0, + 640.0, + 323.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1484.0, + 1404.0, + 1484.0, + 1404.0, + 1520.0, + 295.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1516.0, + 862.0, + 1516.0, + 862.0, + 1551.0, + 324.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 713.0, + 1403.0, + 713.0, + 1403.0, + 753.0, + 295.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 745.0, + 1318.0, + 745.0, + 1318.0, + 780.0, + 321.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1568.0, + 1403.0, + 1568.0, + 1403.0, + 1606.0, + 295.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1603.0, + 1128.0, + 1603.0, + 1128.0, + 1636.0, + 325.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 429.0, + 1404.0, + 429.0, + 1404.0, + 466.0, + 295.0, + 466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 495.0, + 324.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 493.0, + 1402.0, + 493.0, + 1402.0, + 525.0, + 323.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 522.0, + 582.0, + 522.0, + 582.0, + 555.0, + 323.0, + 555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 802.0, + 1405.0, + 802.0, + 1405.0, + 835.0, + 294.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 832.0, + 1406.0, + 832.0, + 1406.0, + 868.0, + 321.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 861.0, + 1405.0, + 861.0, + 1405.0, + 897.0, + 321.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 889.0, + 484.0, + 889.0, + 484.0, + 926.0, + 320.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1653.0, + 1403.0, + 1653.0, + 1403.0, + 1692.0, + 293.0, + 1692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1687.0, + 1403.0, + 1687.0, + 1403.0, + 1722.0, + 323.0, + 1722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1718.0, + 735.0, + 1718.0, + 735.0, + 1749.0, + 325.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1771.0, + 1404.0, + 1771.0, + 1404.0, + 1807.0, + 297.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1800.0, + 1029.0, + 1800.0, + 1029.0, + 1837.0, + 322.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1852.0, + 1407.0, + 1852.0, + 1407.0, + 1895.0, + 294.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1886.0, + 1403.0, + 1886.0, + 1403.0, + 1920.0, + 322.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1914.0, + 399.0, + 1914.0, + 399.0, + 1951.0, + 320.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 658.0, + 1393.0, + 658.0, + 1393.0, + 698.0, + 296.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 298.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 2003.0, + 1365.0, + 2003.0, + 1365.0, + 2036.0, + 323.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 817, + 75, + 817, + 105, + 300, + 105 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 301, + 530, + 1400, + 530, + 1400, + 625, + 301, + 625 + ], + "score": 0.821 + }, + { + "category_id": 1, + "poly": [ + 297, + 641, + 1400, + 641, + 1400, + 707, + 297, + 707 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 298, + 418, + 1399, + 418, + 1399, + 514, + 298, + 514 + ], + "score": 0.799 + }, + { + "category_id": 1, + "poly": [ + 299, + 1013, + 1400, + 1013, + 1400, + 1079, + 299, + 1079 + ], + "score": 0.783 + }, + { + "category_id": 1, + "poly": [ + 298, + 773, + 1398, + 773, + 1398, + 837, + 298, + 837 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 302, + 1415, + 1401, + 1415, + 1401, + 1512, + 302, + 1512 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 297, + 1094, + 1400, + 1094, + 1400, + 1159, + 297, + 1159 + ], + "score": 0.748 + }, + { + "category_id": 1, + "poly": [ + 301, + 309, + 1401, + 309, + 1401, + 404, + 301, + 404 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 296, + 722, + 1233, + 722, + 1233, + 758, + 296, + 758 + ], + "score": 0.733 + }, + { + "category_id": 1, + "poly": [ + 298, + 1175, + 1399, + 1175, + 1399, + 1239, + 298, + 1239 + ], + "score": 0.728 + }, + { + "category_id": 1, + "poly": [ + 294, + 1526, + 1399, + 1526, + 1399, + 1593, + 294, + 1593 + ], + "score": 0.725 + }, + { + "category_id": 1, + "poly": [ + 302, + 1687, + 1402, + 1687, + 1402, + 1783, + 302, + 1783 + ], + "score": 0.718 + }, + { + "category_id": 1, + "poly": [ + 296, + 933, + 1400, + 933, + 1400, + 998, + 296, + 998 + ], + "score": 0.714 + }, + { + "category_id": 1, + "poly": [ + 296, + 229, + 1402, + 229, + 1402, + 294, + 296, + 294 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 297, + 1798, + 1401, + 1798, + 1401, + 1894, + 297, + 1894 + ], + "score": 0.711 + }, + { + "category_id": 1, + "poly": [ + 295, + 1607, + 1400, + 1607, + 1400, + 1672, + 295, + 1672 + ], + "score": 0.71 + }, + { + "category_id": 1, + "poly": [ + 296, + 852, + 1397, + 852, + 1397, + 919, + 296, + 919 + ], + "score": 0.698 + }, + { + "category_id": 1, + "poly": [ + 298, + 1256, + 1397, + 1256, + 1397, + 1321, + 298, + 1321 + ], + "score": 0.676 + }, + { + "category_id": 1, + "poly": [ + 298, + 1335, + 1395, + 1335, + 1395, + 1400, + 298, + 1400 + ], + "score": 0.658 + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1403, + 1910, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.612 + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 816.0, + 73.0, + 816.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 529.0, + 1405.0, + 529.0, + 1405.0, + 568.0, + 293.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 563.0, + 1405.0, + 563.0, + 1405.0, + 597.0, + 322.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 591.0, + 396.0, + 591.0, + 396.0, + 625.0, + 321.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 640.0, + 1404.0, + 640.0, + 1404.0, + 679.0, + 295.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 674.0, + 1213.0, + 674.0, + 1213.0, + 708.0, + 322.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 421.0, + 1403.0, + 421.0, + 1403.0, + 455.0, + 296.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 449.0, + 1405.0, + 449.0, + 1405.0, + 491.0, + 322.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 482.0, + 531.0, + 482.0, + 531.0, + 517.0, + 324.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1014.0, + 1402.0, + 1014.0, + 1402.0, + 1050.0, + 295.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1045.0, + 777.0, + 1045.0, + 777.0, + 1080.0, + 324.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 773.0, + 1402.0, + 773.0, + 1402.0, + 809.0, + 295.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 805.0, + 1144.0, + 805.0, + 1144.0, + 837.0, + 324.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1414.0, + 1404.0, + 1414.0, + 1404.0, + 1451.0, + 296.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1446.0, + 1405.0, + 1446.0, + 1405.0, + 1483.0, + 323.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1478.0, + 795.0, + 1478.0, + 795.0, + 1513.0, + 326.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1096.0, + 1402.0, + 1096.0, + 1402.0, + 1132.0, + 296.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1125.0, + 1088.0, + 1125.0, + 1088.0, + 1160.0, + 323.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 308.0, + 1401.0, + 308.0, + 1401.0, + 347.0, + 295.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 342.0, + 1404.0, + 342.0, + 1404.0, + 376.0, + 323.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 371.0, + 916.0, + 371.0, + 916.0, + 405.0, + 322.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 721.0, + 1229.0, + 721.0, + 1229.0, + 760.0, + 294.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1172.0, + 1403.0, + 1172.0, + 1403.0, + 1212.0, + 296.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1207.0, + 865.0, + 1207.0, + 865.0, + 1239.0, + 323.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1527.0, + 1403.0, + 1527.0, + 1403.0, + 1563.0, + 295.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1560.0, + 1157.0, + 1560.0, + 1157.0, + 1592.0, + 326.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1725.0, + 294.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1718.0, + 1406.0, + 1718.0, + 1406.0, + 1758.0, + 321.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1751.0, + 683.0, + 1751.0, + 683.0, + 1782.0, + 324.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 933.0, + 1404.0, + 933.0, + 1404.0, + 969.0, + 295.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 963.0, + 867.0, + 963.0, + 867.0, + 999.0, + 323.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 229.0, + 1406.0, + 229.0, + 1406.0, + 265.0, + 298.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 260.0, + 1014.0, + 260.0, + 1014.0, + 296.0, + 323.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1793.0, + 1406.0, + 1793.0, + 1406.0, + 1840.0, + 291.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1831.0, + 1405.0, + 1831.0, + 1405.0, + 1866.0, + 324.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1861.0, + 474.0, + 1861.0, + 474.0, + 1893.0, + 322.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1610.0, + 1402.0, + 1610.0, + 1402.0, + 1642.0, + 298.0, + 1642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1640.0, + 1278.0, + 1640.0, + 1278.0, + 1673.0, + 322.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 852.0, + 1401.0, + 852.0, + 1401.0, + 891.0, + 294.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 884.0, + 1351.0, + 884.0, + 1351.0, + 921.0, + 322.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1255.0, + 1402.0, + 1255.0, + 1402.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1286.0, + 1230.0, + 1286.0, + 1230.0, + 1322.0, + 322.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1335.0, + 1398.0, + 1335.0, + 1398.0, + 1371.0, + 295.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1366.0, + 1378.0, + 1366.0, + 1378.0, + 1402.0, + 324.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1948.0, + 293.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1977.0, + 322.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1972.0, + 1404.0, + 1972.0, + 1404.0, + 2011.0, + 320.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 2002.0, + 580.0, + 2002.0, + 580.0, + 2036.0, + 319.0, + 2036.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1909, + 1406, + 1909, + 1406, + 2039, + 297, + 2039 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 295, + 1656, + 1403, + 1656, + 1403, + 1752, + 295, + 1752 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.862 + }, + { + "category_id": 0, + "poly": [ + 301, + 1586, + 680, + 1586, + 680, + 1623, + 301, + 1623 + ], + "score": 0.842 + }, + { + "category_id": 1, + "poly": [ + 294, + 1352, + 1403, + 1352, + 1403, + 1417, + 294, + 1417 + ], + "score": 0.756 + }, + { + "category_id": 1, + "poly": [ + 296, + 1239, + 1402, + 1239, + 1402, + 1333, + 296, + 1333 + ], + "score": 0.713 + }, + { + "category_id": 1, + "poly": [ + 295, + 1156, + 1400, + 1156, + 1400, + 1221, + 295, + 1221 + ], + "score": 0.707 + }, + { + "category_id": 1, + "poly": [ + 296, + 764, + 1404, + 764, + 1404, + 830, + 296, + 830 + ], + "score": 0.697 + }, + { + "category_id": 1, + "poly": [ + 298, + 680, + 1399, + 680, + 1399, + 748, + 298, + 748 + ], + "score": 0.689 + }, + { + "category_id": 1, + "poly": [ + 297, + 372, + 1401, + 372, + 1401, + 466, + 297, + 466 + ], + "score": 0.68 + }, + { + "category_id": 1, + "poly": [ + 296, + 598, + 1396, + 598, + 1396, + 665, + 296, + 665 + ], + "score": 0.663 + }, + { + "category_id": 1, + "poly": [ + 303, + 1435, + 1399, + 1435, + 1399, + 1532, + 303, + 1532 + ], + "score": 0.624 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1405, + 228, + 1405, + 354, + 298, + 354 + ], + "score": 0.602 + }, + { + "category_id": 1, + "poly": [ + 297, + 846, + 1405, + 846, + 1405, + 973, + 297, + 973 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 296, + 1073, + 1399, + 1073, + 1399, + 1139, + 296, + 1139 + ], + "score": 0.593 + }, + { + "category_id": 1, + "poly": [ + 298, + 990, + 1398, + 990, + 1398, + 1057, + 298, + 1057 + ], + "score": 0.567 + }, + { + "category_id": 1, + "poly": [ + 293, + 1800, + 1076, + 1800, + 1076, + 1838, + 293, + 1838 + ], + "score": 0.557 + }, + { + "category_id": 1, + "poly": [ + 295, + 1842, + 1030, + 1842, + 1030, + 1880, + 295, + 1880 + ], + "score": 0.536 + }, + { + "category_id": 1, + "poly": [ + 292, + 1758, + 1032, + 1758, + 1032, + 1795, + 292, + 1795 + ], + "score": 0.525 + }, + { + "category_id": 1, + "poly": [ + 297, + 485, + 1404, + 485, + 1404, + 581, + 297, + 581 + ], + "score": 0.154 + }, + { + "category_id": 13, + "poly": [ + 426, + 2003, + 535, + 2003, + 535, + 2036, + 426, + 2036 + ], + "score": 0.93, + "latex": "| \\lambda _ { m } | \\leq \\lambda" + }, + { + "category_id": 13, + "poly": [ + 926, + 2002, + 1050, + 2002, + 1050, + 2038, + 926, + 2038 + ], + "score": 0.93, + "latex": "( e _ { m } ) _ { m \\in [ N ] }" + }, + { + "category_id": 13, + "poly": [ + 1307, + 1973, + 1372, + 1973, + 1372, + 2006, + 1307, + 2006 + ], + "score": 0.92, + "latex": "P | _ { U ^ { \\perp } }" + }, + { + "category_id": 13, + "poly": [ + 978, + 1689, + 1236, + 1689, + 1236, + 1726, + 978, + 1726 + ], + "score": 0.92, + "latex": "\\lambda = \\operatorname* { s u p } _ { n \\in [ N - M ] } | \\lambda _ { n } |" + }, + { + "category_id": 13, + "poly": [ + 998, + 1943, + 1063, + 1943, + 1063, + 1975, + 998, + 1975 + ], + "score": 0.92, + "latex": "P | _ { U ^ { \\perp } }" + }, + { + "category_id": 13, + "poly": [ + 768, + 1761, + 1022, + 1761, + 1022, + 1796, + 768, + 1796 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( P X ) \\leq \\lambda d _ { \\mathcal { M } } ( X )" + }, + { + "category_id": 13, + "poly": [ + 768, + 1802, + 1066, + 1802, + 1066, + 1838, + 768, + 1838 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( X W _ { l h } ) \\leq s _ { l h } d _ { \\mathcal { M } } ( X )" + }, + { + "category_id": 13, + "poly": [ + 522, + 1842, + 658, + 1842, + 658, + 1874, + 522, + 1874 + ], + "score": 0.91, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 363, + 1943, + 561, + 1943, + 561, + 1976, + 363, + 1976 + ], + "score": 0.91, + "latex": "( e _ { m } ) _ { m = M + 1 , \\dots , N }" + }, + { + "category_id": 13, + "poly": [ + 768, + 1844, + 1022, + 1844, + 1022, + 1879, + 768, + 1879 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( \\sigma ( X ) ) \\leq d _ { \\mathcal { M } } ( X )" + }, + { + "category_id": 13, + "poly": [ + 522, + 1759, + 658, + 1759, + 658, + 1791, + 522, + 1791 + ], + "score": 0.91, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 522, + 1799, + 658, + 1799, + 658, + 1833, + 522, + 1833 + ], + "score": 0.9, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 609, + 1721, + 659, + 1721, + 659, + 1753, + 609, + 1753 + ], + "score": 0.89, + "latex": "W _ { l h }" + }, + { + "category_id": 13, + "poly": [ + 627, + 1973, + 875, + 1973, + 875, + 2003, + 627, + 2003 + ], + "score": 0.89, + "latex": "( m = M + 1 , \\ldots , N )" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1943, + 1167, + 1943, + 1167, + 1974, + 1126, + 1974 + ], + "score": 0.89, + "latex": "\\lambda _ { m }" + }, + { + "category_id": 13, + "poly": [ + 993, + 1910, + 1036, + 1910, + 1036, + 1940, + 993, + 1940 + ], + "score": 0.89, + "latex": "U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 598, + 1940, + 641, + 1940, + 641, + 1970, + 598, + 1970 + ], + "score": 0.88, + "latex": "U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 614, + 2004, + 842, + 2004, + 842, + 2034, + 614, + 2034 + ], + "score": 0.88, + "latex": "m = M + 1 , \\ldots , N" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1692, + 1330, + 1692, + 1330, + 1720, + 1292, + 1720 + ], + "score": 0.86, + "latex": "s _ { l h }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1241, + 1206, + 1241, + 1206, + 1275, + 1124, + 1275 + ], + "score": 0.85, + "latex": "\\{ \\mathrm { g n n } \\} \\mathrm { s }" + }, + { + "category_id": 13, + "poly": [ + 432, + 1979, + 469, + 1979, + 469, + 2003, + 432, + 2003 + ], + "score": 0.85, + "latex": "e _ { m }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1974, + 322, + 1974, + 322, + 2000, + 298, + 2000 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 587, + 1913, + 612, + 1913, + 612, + 1939, + 587, + 1939 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 297, + 2004, + 317, + 2004, + 317, + 2031, + 297, + 2031 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 360, + 1306, + 378, + 1306, + 378, + 1329, + 360, + 1329 + ], + "score": 0.38, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 484, + 1913, + 499, + 1913, + 499, + 1939, + 484, + 1939 + ], + "score": 0.29, + "latex": "^ { l }" + }, + { + "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": [ + 831.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1584.0, + 682.0, + 1584.0, + 682.0, + 1628.0, + 295.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1909.0, + 483.0, + 1909.0, + 483.0, + 1946.0, + 295.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1909.0, + 586.0, + 1909.0, + 586.0, + 1946.0, + 500.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1909.0, + 992.0, + 1909.0, + 992.0, + 1946.0, + 613.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1946.0, + 1037.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1938.0, + 362.0, + 1938.0, + 362.0, + 1982.0, + 290.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1938.0, + 597.0, + 1938.0, + 597.0, + 1982.0, + 562.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1938.0, + 997.0, + 1938.0, + 997.0, + 1982.0, + 642.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1938.0, + 1125.0, + 1938.0, + 1125.0, + 1982.0, + 1064.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1938.0, + 1409.0, + 1938.0, + 1409.0, + 1982.0, + 1168.0, + 1982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1969.0, + 297.0, + 1969.0, + 297.0, + 2008.0, + 291.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1969.0, + 431.0, + 1969.0, + 431.0, + 2008.0, + 323.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1969.0, + 626.0, + 1969.0, + 626.0, + 2008.0, + 470.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 1969.0, + 1306.0, + 1969.0, + 1306.0, + 2008.0, + 876.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1969.0, + 1407.0, + 1969.0, + 1407.0, + 2008.0, + 1373.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2000.0, + 296.0, + 2000.0, + 296.0, + 2041.0, + 292.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 2000.0, + 425.0, + 2000.0, + 425.0, + 2041.0, + 318.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 2000.0, + 613.0, + 2000.0, + 613.0, + 2041.0, + 536.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 2000.0, + 925.0, + 2000.0, + 925.0, + 2041.0, + 843.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 2000.0, + 1408.0, + 2000.0, + 1408.0, + 2041.0, + 1051.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1656.0, + 1403.0, + 1656.0, + 1403.0, + 1691.0, + 295.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1684.0, + 977.0, + 1684.0, + 977.0, + 1730.0, + 292.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1684.0, + 1291.0, + 1684.0, + 1291.0, + 1730.0, + 1237.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1684.0, + 1406.0, + 1684.0, + 1406.0, + 1730.0, + 1331.0, + 1730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 608.0, + 1720.0, + 608.0, + 1758.0, + 294.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 1720.0, + 663.0, + 1720.0, + 663.0, + 1758.0, + 660.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1348.0, + 1406.0, + 1348.0, + 1406.0, + 1391.0, + 296.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1382.0, + 612.0, + 1382.0, + 612.0, + 1418.0, + 320.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1241.0, + 1123.0, + 1241.0, + 1123.0, + 1275.0, + 295.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1241.0, + 1404.0, + 1241.0, + 1404.0, + 1275.0, + 1207.0, + 1275.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1271.0, + 1402.0, + 1271.0, + 1402.0, + 1305.0, + 325.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1302.0, + 359.0, + 1302.0, + 359.0, + 1336.0, + 324.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 1302.0, + 555.0, + 1302.0, + 555.0, + 1336.0, + 379.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1158.0, + 1401.0, + 1158.0, + 1401.0, + 1194.0, + 294.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1189.0, + 835.0, + 1189.0, + 835.0, + 1222.0, + 322.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 763.0, + 1405.0, + 763.0, + 1405.0, + 802.0, + 294.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 796.0, + 1341.0, + 796.0, + 1341.0, + 831.0, + 321.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 680.0, + 1404.0, + 680.0, + 1404.0, + 719.0, + 293.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 711.0, + 1403.0, + 711.0, + 1403.0, + 748.0, + 324.0, + 748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 370.0, + 1403.0, + 370.0, + 1403.0, + 409.0, + 293.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 403.0, + 1405.0, + 403.0, + 1405.0, + 440.0, + 321.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 429.0, + 399.0, + 429.0, + 399.0, + 470.0, + 320.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 596.0, + 1401.0, + 596.0, + 1401.0, + 637.0, + 295.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 632.0, + 1208.0, + 632.0, + 1208.0, + 664.0, + 323.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1433.0, + 1404.0, + 1433.0, + 1404.0, + 1475.0, + 293.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1467.0, + 1404.0, + 1467.0, + 1404.0, + 1502.0, + 324.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1498.0, + 1162.0, + 1498.0, + 1162.0, + 1533.0, + 324.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 266.0, + 293.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 262.0, + 1403.0, + 262.0, + 1403.0, + 295.0, + 322.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 291.0, + 1406.0, + 291.0, + 1406.0, + 327.0, + 322.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 356.0, + 321.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 848.0, + 1407.0, + 848.0, + 1407.0, + 885.0, + 295.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 879.0, + 1408.0, + 879.0, + 1408.0, + 915.0, + 320.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 912.0, + 1405.0, + 912.0, + 1405.0, + 945.0, + 323.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 941.0, + 886.0, + 941.0, + 886.0, + 975.0, + 323.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1074.0, + 1404.0, + 1074.0, + 1404.0, + 1110.0, + 295.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1106.0, + 540.0, + 1106.0, + 540.0, + 1138.0, + 324.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 991.0, + 1403.0, + 991.0, + 1403.0, + 1027.0, + 295.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1022.0, + 1170.0, + 1022.0, + 1170.0, + 1057.0, + 322.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1789.0, + 521.0, + 1789.0, + 521.0, + 1846.0, + 290.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1789.0, + 767.0, + 1789.0, + 767.0, + 1846.0, + 659.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1789.0, + 1077.0, + 1789.0, + 1077.0, + 1846.0, + 1067.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1833.0, + 521.0, + 1833.0, + 521.0, + 1887.0, + 290.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1833.0, + 767.0, + 1833.0, + 767.0, + 1887.0, + 659.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1833.0, + 1034.0, + 1833.0, + 1034.0, + 1887.0, + 1023.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1751.0, + 521.0, + 1751.0, + 521.0, + 1804.0, + 290.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1751.0, + 767.0, + 1751.0, + 767.0, + 1804.0, + 659.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 1751.0, + 1034.0, + 1751.0, + 1034.0, + 1804.0, + 1023.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 485.0, + 1404.0, + 485.0, + 1404.0, + 523.0, + 295.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 516.0, + 1402.0, + 516.0, + 1402.0, + 550.0, + 324.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 549.0, + 658.0, + 549.0, + 658.0, + 582.0, + 322.0, + 582.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1852, + 1407, + 1852, + 1407, + 2043, + 295, + 2043 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 637, + 1405, + 637, + 1405, + 740, + 298, + 740 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 222, + 1407, + 222, + 1407, + 306, + 297, + 306 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 647, + 1515, + 1049, + 1515, + 1049, + 1758, + 647, + 1758 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 566, + 327, + 1133, + 327, + 1133, + 620, + 566, + 620 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 666, + 760, + 1032, + 760, + 1032, + 1102, + 666, + 1102 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 297, + 1462, + 517, + 1462, + 517, + 1496, + 297, + 1496 + ], + "score": 0.933 + }, + { + "category_id": 8, + "poly": [ + 520, + 1254, + 1180, + 1254, + 1180, + 1446, + 520, + 1446 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 291, + 1197, + 1309, + 1197, + 1309, + 1233, + 291, + 1233 + ], + "score": 0.926 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 817, + 73, + 817, + 106, + 297, + 106 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2113, + 836, + 2113 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1772, + 1404, + 1772, + 1404, + 1803, + 1373, + 1803 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 1373, + 1117, + 1404, + 1117, + 1404, + 1148, + 1373, + 1148 + ], + "score": 0.821 + }, + { + "category_id": 8, + "poly": [ + 521, + 1254, + 1178, + 1254, + 1178, + 1447, + 521, + 1447 + ], + "score": 0.21 + }, + { + "category_id": 14, + "poly": [ + 564, + 323, + 1134, + 323, + 1134, + 622, + 564, + 622 + ], + "score": 0.95, + "latex": "\\begin{array} { l } { { \\displaystyle P X = \\sum _ { m = 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { ~ } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } P e _ { m } \\otimes w _ { m } } } \\\\ { { \\displaystyle ~ = \\sum _ { m = 1 } ^ { M } P e _ { m } \\otimes w _ { m } + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes \\left( \\lambda _ { m } w _ { m } \\right) } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 518, + 1249, + 1181, + 1249, + 1181, + 1448, + 518, + 1448 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { { X W _ { l h } = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) } } \\\\ & { } & { = \\sum _ { m = 1 } ^ { M } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) + \\sum _ { m = M + 1 } ^ { N } e _ { m } \\otimes ( W _ { l h } ^ { \\top } w _ { m } ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 646, + 1514, + 1050, + 1514, + 1050, + 1758, + 646, + 1758 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { { d _ { \\mathcal { M } } ^ { 2 } ( X W _ { l h } ) = \\sum _ { m = M + 1 } ^ { N } \\| W _ { l h } ^ { \\top } w _ { m } \\| ^ { 2 } } } \\\\ & { } & { \\leq s _ { l h } ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { = s _ { l h } ^ { 2 } d _ { \\mathcal { M } } ^ { 2 } ( X ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1889, + 493, + 1889, + 493, + 1925, + 298, + 1925 + ], + "score": 0.93, + "latex": "( X _ { n c } ) _ { n \\in [ N ] , c \\in [ C ] }" + }, + { + "category_id": 13, + "poly": [ + 355, + 261, + 687, + 261, + 687, + 306, + 355, + 306 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 786, + 224, + 1047, + 224, + 1047, + 266, + 786, + 266 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { X = \\sum _ { m = 1 } ^ { N } e _ { m } \\otimes w _ { m } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1158, + 227, + 1277, + 227, + 1277, + 262, + 1158, + 262 + ], + "score": 0.93, + "latex": "w _ { m } \\in \\mathbb { R } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 969, + 1888, + 1072, + 1888, + 1072, + 1925, + 969, + 1925 + ], + "score": 0.92, + "latex": "( e _ { c } ^ { \\prime } ) _ { c \\in [ C ] }" + }, + { + "category_id": 13, + "poly": [ + 990, + 1957, + 1326, + 1957, + 1326, + 1998, + 990, + 1998 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { X = \\sum _ { n = 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { n } \\otimes e _ { c } ^ { \\prime } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 295, + 1996, + 762, + 1996, + 762, + 2039, + 295, + 2039 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { a _ { n c } = \\left. X , e _ { n } \\otimes e _ { c } ^ { \\prime } \\right. = \\sum _ { m = 1 } ^ { N } X _ { m c } e _ { m n } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 609, + 227, + 750, + 227, + 750, + 259, + 609, + 259 + ], + "score": 0.92, + "latex": "X \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 684, + 671, + 1075, + 671, + 1075, + 714, + 684, + 714 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 665, + 758, + 1033, + 758, + 1033, + 1104, + 665, + 1104 + ], + "score": 0.92, + "latex": "\\begin{array} { r l r } { { d _ { { \\mathcal M } } ^ { 2 } ( P X ) = \\sum _ { m = M + 1 } ^ { N } \\| \\lambda _ { m } w _ { m } \\| ^ { 2 } } } \\\\ & { } & \\\\ & { } & { \\leq \\lambda ^ { 2 } \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & { \\leq \\lambda ^ { 2 } \\displaystyle \\sum _ { m = M + 1 } ^ { N } \\| w _ { m } \\| ^ { 2 } } \\\\ & { } & \\\\ & { } & { = \\lambda ^ { 2 } d _ { { \\mathcal M } } ^ { 2 } ( X ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 373, + 1925, + 610, + 1925, + 610, + 1961, + 373, + 1961 + ], + "score": 0.92, + "latex": "( e _ { n } \\otimes e _ { c } ^ { \\prime } ) _ { n \\in [ N ] , c \\in [ C ] }" + }, + { + "category_id": 13, + "poly": [ + 547, + 1890, + 758, + 1890, + 758, + 1925, + 547, + 1925 + ], + "score": 0.92, + "latex": "e _ { n } = ( e _ { m n } ) _ { m \\in [ N ] }" + }, + { + "category_id": 13, + "poly": [ + 741, + 639, + 859, + 639, + 859, + 672, + 741, + 672 + ], + "score": 0.91, + "latex": "m \\in [ M ]" + }, + { + "category_id": 13, + "poly": [ + 648, + 1856, + 882, + 1856, + 882, + 1889, + 648, + 1889 + ], + "score": 0.91, + "latex": "( e _ { m } ) _ { m = N - M + 1 , \\dots , N }" + }, + { + "category_id": 13, + "poly": [ + 297, + 675, + 446, + 675, + 446, + 710, + 297, + 710 + ], + "score": 0.91, + "latex": "e _ { n } ( n \\in [ M ] )" + }, + { + "category_id": 13, + "poly": [ + 933, + 1923, + 1010, + 1923, + 1010, + 1952, + 933, + 1952 + ], + "score": 0.91, + "latex": "\\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 958, + 1999, + 1394, + 1999, + 1394, + 2040, + 958, + 2040 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { d _ { \\mathcal { M } } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { \\prime } \\| ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1031, + 641, + 1091, + 641, + 1091, + 670, + 1031, + 670 + ], + "score": 0.9, + "latex": "P e _ { m }" + }, + { + "category_id": 13, + "poly": [ + 765, + 267, + 811, + 267, + 811, + 303, + 765, + 303 + ], + "score": 0.9, + "latex": "\\| \\cdot \\|" + }, + { + "category_id": 13, + "poly": [ + 1352, + 1887, + 1393, + 1887, + 1393, + 1918, + 1352, + 1918 + ], + "score": 0.87, + "latex": "\\mathbb { R } ^ { C }" + }, + { + "category_id": 13, + "poly": [ + 297, + 227, + 340, + 227, + 340, + 259, + 297, + 259 + ], + "score": 0.87, + "latex": "\\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 1342, + 1857, + 1405, + 1857, + 1405, + 1884, + 1342, + 1884 + ], + "score": 0.85, + "latex": "X =" + }, + { + "category_id": 13, + "poly": [ + 896, + 1202, + 923, + 1202, + 923, + 1227, + 896, + 1227 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 609, + 641, + 634, + 641, + 634, + 667, + 609, + 667 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 929, + 1965, + 957, + 1965, + 957, + 1992, + 929, + 1992 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 369, + 641, + 394, + 641, + 394, + 668, + 369, + 668 + ], + "score": 0.81, + "latex": "U" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1377.0, + 1777.0, + 1403.0, + 1777.0, + 1403.0, + 1804.0, + 1377.0, + 1804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 1123.0, + 1402.0, + 1123.0, + 1402.0, + 1146.0, + 1379.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1850.0, + 647.0, + 1850.0, + 647.0, + 1894.0, + 293.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1850.0, + 1341.0, + 1850.0, + 1341.0, + 1894.0, + 883.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1880.0, + 297.0, + 1880.0, + 297.0, + 1931.0, + 290.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1880.0, + 546.0, + 1880.0, + 546.0, + 1931.0, + 494.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1880.0, + 968.0, + 1880.0, + 968.0, + 1931.0, + 759.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 1880.0, + 1351.0, + 1880.0, + 1351.0, + 1931.0, + 1073.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1931.0, + 1394.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1915.0, + 372.0, + 1915.0, + 372.0, + 1963.0, + 290.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1915.0, + 932.0, + 1915.0, + 932.0, + 1963.0, + 611.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1915.0, + 1410.0, + 1915.0, + 1410.0, + 1963.0, + 1011.0, + 1963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1954.0, + 928.0, + 1954.0, + 928.0, + 2015.0, + 288.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1954.0, + 989.0, + 1954.0, + 989.0, + 2015.0, + 958.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1954.0, + 1413.0, + 1954.0, + 1413.0, + 2015.0, + 1327.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 1975.0, + 294.0, + 1975.0, + 294.0, + 2059.0, + 280.0, + 2059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1975.0, + 957.0, + 1975.0, + 957.0, + 2059.0, + 763.0, + 2059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1975.0, + 1418.0, + 1975.0, + 1418.0, + 2059.0, + 1395.0, + 2059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.75, + 1955.5, + 1110.75, + 1955.5, + 1110.75, + 1982.5, + 1052.75, + 1982.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 282.0, + 636.0, + 296.0, + 636.0, + 296.0, + 742.0, + 282.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 447.0, + 636.0, + 608.0, + 636.0, + 608.0, + 742.0, + 447.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 636.0, + 683.0, + 636.0, + 683.0, + 742.0, + 635.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 636.0, + 1419.0, + 636.0, + 1419.0, + 742.0, + 1092.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 205.0, + 296.0, + 205.0, + 296.0, + 281.0, + 281.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 205.0, + 608.0, + 205.0, + 608.0, + 281.0, + 341.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 205.0, + 785.0, + 205.0, + 785.0, + 281.0, + 751.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 205.0, + 1157.0, + 205.0, + 1157.0, + 281.0, + 1048.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 205.0, + 1419.0, + 205.0, + 1419.0, + 281.0, + 1278.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 277.0, + 239.0, + 354.0, + 239.0, + 354.0, + 325.0, + 277.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 239.0, + 764.0, + 239.0, + 764.0, + 325.0, + 688.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 239.0, + 1423.0, + 239.0, + 1423.0, + 325.0, + 812.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 519.0, + 1459.0, + 519.0, + 1498.0, + 295.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1196.0, + 895.0, + 1196.0, + 895.0, + 1236.0, + 295.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1196.0, + 1311.0, + 1196.0, + 1311.0, + 1236.0, + 924.0, + 1236.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1031, + 1406, + 1031, + 1406, + 1132, + 296, + 1132 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 294, + 894, + 1405, + 894, + 1405, + 1000, + 294, + 1000 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 293, + 1597, + 1407, + 1597, + 1407, + 2031, + 293, + 2031 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 594, + 267, + 1102, + 267, + 1102, + 663, + 594, + 663 + ], + "score": 0.964 + }, + { + "category_id": 8, + "poly": [ + 574, + 714, + 1122, + 714, + 1122, + 808, + 574, + 808 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 376, + 1319, + 1319, + 1319, + 1319, + 1426, + 376, + 1426 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 292, + 1242, + 1403, + 1242, + 1403, + 1306, + 292, + 1306 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 299, + 817, + 1401, + 817, + 1401, + 881, + 299, + 881 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 665, + 1511, + 1033, + 1511, + 1033, + 1549, + 665, + 1549 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 291, + 1436, + 1403, + 1436, + 1403, + 1500, + 291, + 1500 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 299, + 1556, + 679, + 1556, + 679, + 1588, + 299, + 1588 + ], + "score": 0.927 + }, + { + "category_id": 1, + "poly": [ + 297, + 230, + 650, + 230, + 650, + 261, + 297, + 261 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 817, + 73, + 817, + 106, + 298, + 106 + ], + "score": 0.919 + }, + { + "category_id": 1, + "poly": [ + 296, + 670, + 985, + 670, + 985, + 704, + 296, + 704 + ], + "score": 0.909 + }, + { + "category_id": 8, + "poly": [ + 704, + 1146, + 994, + 1146, + 994, + 1232, + 704, + 1232 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1173, + 1401, + 1173, + 1401, + 1204, + 1365, + 1204 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1357, + 1401, + 1357, + 1401, + 1388, + 1365, + 1388 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 865, + 2087, + 865, + 2114, + 836, + 2114 + ], + "score": 0.861 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1969, + 1402, + 1969, + 1402, + 1999, + 1364, + 1999 + ], + "score": 0.854 + }, + { + "category_id": 1, + "poly": [ + 1043, + 1751, + 1403, + 1751, + 1403, + 1786, + 1043, + 1786 + ], + "score": 0.183 + }, + { + "category_id": 8, + "poly": [ + 703, + 1145, + 994, + 1145, + 994, + 1232, + 703, + 1232 + ], + "score": 0.173 + }, + { + "category_id": 14, + "poly": [ + 594, + 270, + 1099, + 270, + 1099, + 667, + 594, + 667 + ], + "score": 0.95, + "latex": "\\begin{array} { l } { \\displaystyle d _ { M } ^ { 2 } ( X ) = \\sum _ { n = M + 1 } ^ { N } \\left\\| \\sum _ { c = 1 } ^ { C } a _ { n c } e _ { c } ^ { t } \\right\\| ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { n = M + 1 } ^ { N } \\sum _ { c = 1 } ^ { C } a _ { n c } ^ { 2 } } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\sum _ { n = 1 } ^ { N } a _ { n c } ^ { 2 } - \\sum _ { n = 1 } ^ { M } a _ { n c } ^ { 2 } \\right) } \\\\ { = \\displaystyle \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\mathrm { - c } } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } ( X _ { \\mathrm { - c } } , e _ { n } ) ^ { 2 } \\right) , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 372, + 1316, + 1325, + 1316, + 1325, + 1429, + 372, + 1429 + ], + "score": 0.94, + "latex": "\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } = \\sum _ { m = 1 } ^ { M } \\left( \\left( \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } - 2 \\sum _ { n = 1 } ^ { L } \\sum _ { l = L + 1 } ^ { N } x _ { n } x _ { l } v _ { n m } v _ { l m } \\right) ." + }, + { + "category_id": 14, + "poly": [ + 703, + 1140, + 997, + 1140, + 997, + 1235, + 703, + 1235 + ], + "score": 0.94, + "latex": "\\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } = \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } ." + }, + { + "category_id": 13, + "poly": [ + 496, + 1031, + 757, + 1031, + 757, + 1073, + 496, + 1073 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\| y \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle y , u _ { m } \\rangle ^ { 2 } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 575, + 712, + 1121, + 712, + 1121, + 808, + 575, + 808 + ], + "score": 0.93, + "latex": "d _ { \\mathcal { M } } ^ { 2 } ( \\sigma ( X ) ) = \\sum _ { c = 1 } ^ { C } \\left( \\| X _ { \\cdot c } ^ { + } \\| ^ { 2 } - \\sum _ { n = 1 } ^ { M } \\langle X _ { \\cdot c } ^ { + } , e _ { n } \\rangle ^ { 2 } \\right) ," + }, + { + "category_id": 13, + "poly": [ + 492, + 817, + 786, + 817, + 786, + 854, + 492, + 854 + ], + "score": 0.93, + "latex": "\\sigma ( X ) = ( X _ { n c } ^ { + } ) _ { n \\in [ N ] , c \\in [ C ] }" + }, + { + "category_id": 13, + "poly": [ + 299, + 1274, + 431, + 1274, + 431, + 1310, + 299, + 1310 + ], + "score": 0.92, + "latex": "( v _ { n m } ) _ { n \\in [ N ] }" + }, + { + "category_id": 13, + "poly": [ + 934, + 1437, + 1039, + 1437, + 1039, + 1471, + 934, + 1471 + ], + "score": 0.92, + "latex": "m \\in [ M ]" + }, + { + "category_id": 13, + "poly": [ + 792, + 1470, + 948, + 1470, + 948, + 1499, + 792, + 1499 + ], + "score": 0.91, + "latex": "n \\in I _ { m } \\cap I _ { m ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 1219, + 1436, + 1393, + 1436, + 1393, + 1471, + 1219, + 1471 + ], + "score": 0.91, + "latex": "m \\neq m ^ { \\prime } \\in [ M ]" + }, + { + "category_id": 13, + "poly": [ + 470, + 896, + 563, + 896, + 563, + 927, + 470, + 927 + ], + "score": 0.91, + "latex": "\\boldsymbol { x } \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 615, + 896, + 816, + 896, + 816, + 931, + 615, + 931 + ], + "score": 0.91, + "latex": "v _ { 1 } , \\hdots , v _ { M } \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 867, + 1100, + 951, + 1100, + 951, + 1129, + 867, + 1129 + ], + "score": 0.91, + "latex": "L \\leq N" + }, + { + "category_id": 13, + "poly": [ + 395, + 1470, + 553, + 1470, + 553, + 1498, + 395, + 1498 + ], + "score": 0.91, + "latex": "{ \\cal I } _ { m } \\cap { \\cal I } _ { m ^ { \\prime } } = \\emptyset" + }, + { + "category_id": 13, + "poly": [ + 297, + 1100, + 757, + 1100, + 757, + 1131, + 297, + 1131 + ], + "score": 0.91, + "latex": "x _ { 1 } \\leq \\ldots \\leq x _ { L } < 0 \\leq x _ { L + 1 } \\leq \\cdot \\cdot \\cdot \\leq x _ { N }" + }, + { + "category_id": 13, + "poly": [ + 524, + 934, + 628, + 934, + 628, + 967, + 524, + 967 + ], + "score": 0.9, + "latex": "m \\in [ M ]" + }, + { + "category_id": 13, + "poly": [ + 340, + 1436, + 661, + 1436, + 661, + 1470, + 340, + 1470 + ], + "score": 0.9, + "latex": "I _ { m } : = \\{ n \\in [ N ] \\mid v _ { n m } > 0 \\}" + }, + { + "category_id": 13, + "poly": [ + 611, + 967, + 682, + 967, + 682, + 995, + 611, + 995 + ], + "score": 0.9, + "latex": "x \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 1143, + 898, + 1331, + 898, + 1331, + 931, + 1143, + 931 + ], + "score": 0.9, + "latex": "\\langle v _ { m } , v _ { n } \\rangle = \\delta _ { m n } )" + }, + { + "category_id": 13, + "poly": [ + 372, + 1245, + 452, + 1245, + 452, + 1271, + 372, + 1271 + ], + "score": 0.89, + "latex": "L = 0" + }, + { + "category_id": 13, + "poly": [ + 809, + 930, + 1400, + 930, + 1400, + 971, + 809, + 971 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { \\| \\ b x \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x , \\ b v _ { m } \\rangle ^ { 2 } \\geq \\| \\ b x ^ { + } \\| ^ { 2 } - \\sum _ { m = 1 } ^ { M } \\langle \\ b x ^ { + } , \\ b v _ { m } \\rangle ^ { 2 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 372, + 966, + 569, + 966, + 569, + 998, + 372, + 998 + ], + "score": 0.89, + "latex": "x ^ { + } : = \\operatorname* { m a x } ( x , 0 )" + }, + { + "category_id": 13, + "poly": [ + 358, + 935, + 447, + 935, + 447, + 966, + 358, + 966 + ], + "score": 0.89, + "latex": "v _ { m } \\geq 0" + }, + { + "category_id": 14, + "poly": [ + 666, + 1509, + 1030, + 1509, + 1030, + 1548, + 666, + 1548 + ], + "score": 0.89, + "latex": "0 = \\left. v _ { m } , v _ { m ^ { \\prime } } \\right. \\geq v _ { n m } v _ { n m ^ { \\prime } } > 0 ," + }, + { + "category_id": 13, + "poly": [ + 372, + 673, + 416, + 673, + 416, + 702, + 372, + 702 + ], + "score": 0.87, + "latex": "X _ { \\cdot c }" + }, + { + "category_id": 14, + "poly": [ + 294, + 1597, + 1390, + 1597, + 1390, + 2036, + 294, + 2036 + ], + "score": 0.86, + "latex": "\\begin{array} { r l r } { \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } v _ { n m } \\right) ^ { 2 } = \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } v _ { n m } \\right) ^ { 2 } } & { } & \\\\ { \\displaystyle } & { \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n m } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot \\mathrm { C a u c h y - S c h w a r z ~ i n e q u a l i t y } ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { m = 1 } ^ { N } \\left( \\displaystyle \\sum _ { n \\in L _ { I ^ { n } } \\cap [ L ] } x _ { n } ^ { 2 } \\right) } & { \\displaystyle ( \\cdot \\cdot | v _ { m } | ^ { 2 } = 1 ) } \\\\ { \\displaystyle } & { \\displaystyle \\leq \\displaystyle \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 856, + 1442, + 892, + 1442, + 892, + 1468, + 856, + 1468 + ], + "score": 0.86, + "latex": "v _ { m }" + }, + { + "category_id": 13, + "poly": [ + 365, + 1071, + 405, + 1071, + 405, + 1099, + 365, + 1099 + ], + "score": 0.85, + "latex": "u _ { m }" + }, + { + "category_id": 13, + "poly": [ + 732, + 673, + 758, + 673, + 758, + 699, + 732, + 699 + ], + "score": 0.84, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1331, + 1247, + 1404, + 1247, + 1404, + 1277, + 1331, + 1277 + ], + "score": 0.83, + "latex": "v _ { m } =" + }, + { + "category_id": 13, + "poly": [ + 486, + 677, + 501, + 677, + 501, + 699, + 486, + 699 + ], + "score": 0.8, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 297, + 1076, + 316, + 1076, + 316, + 1100, + 297, + 1100 + ], + "score": 0.79, + "latex": "y" + }, + { + "category_id": 13, + "poly": [ + 1260, + 1075, + 1278, + 1075, + 1278, + 1096, + 1260, + 1096 + ], + "score": 0.76, + "latex": "x" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 280.0, + 1010.0, + 296.0, + 1010.0, + 296.0, + 1102.0, + 280.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1010.0, + 364.0, + 1010.0, + 364.0, + 1102.0, + 317.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1010.0, + 495.0, + 1010.0, + 495.0, + 1102.0, + 406.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1010.0, + 1259.0, + 1010.0, + 1259.0, + 1102.0, + 758.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1010.0, + 1421.0, + 1010.0, + 1421.0, + 1102.0, + 1279.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1098.0, + 296.0, + 1098.0, + 296.0, + 1133.0, + 293.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1098.0, + 866.0, + 1098.0, + 866.0, + 1133.0, + 758.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1098.0, + 1132.0, + 1098.0, + 1132.0, + 1133.0, + 952.0, + 1133.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 892.0, + 469.0, + 892.0, + 469.0, + 935.0, + 293.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 892.0, + 614.0, + 892.0, + 614.0, + 935.0, + 564.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 892.0, + 1142.0, + 892.0, + 1142.0, + 935.0, + 817.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 892.0, + 1406.0, + 892.0, + 1406.0, + 935.0, + 1332.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 911.0, + 357.0, + 911.0, + 357.0, + 1000.0, + 281.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 911.0, + 808.0, + 911.0, + 808.0, + 1000.0, + 683.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 911.0, + 1416.0, + 911.0, + 1416.0, + 1000.0, + 1401.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1235.0, + 371.0, + 1235.0, + 371.0, + 1282.0, + 294.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 453.0, + 1235.0, + 1330.0, + 1235.0, + 1330.0, + 1282.0, + 453.0, + 1282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 432.0, + 1274.0, + 717.0, + 1274.0, + 717.0, + 1307.0, + 432.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 811.0, + 491.0, + 811.0, + 491.0, + 858.0, + 292.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 811.0, + 1407.0, + 811.0, + 1407.0, + 858.0, + 787.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 845.0, + 502.0, + 845.0, + 502.0, + 885.0, + 293.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1382.0, + 857.0, + 1400.0, + 857.0, + 1400.0, + 873.0, + 1382.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1430.0, + 339.0, + 1430.0, + 339.0, + 1476.0, + 290.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 1430.0, + 855.0, + 1430.0, + 855.0, + 1476.0, + 662.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1430.0, + 933.0, + 1430.0, + 933.0, + 1476.0, + 893.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1430.0, + 1218.0, + 1430.0, + 1218.0, + 1476.0, + 1040.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1430.0, + 1406.0, + 1430.0, + 1406.0, + 1476.0, + 1394.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1465.0, + 394.0, + 1465.0, + 394.0, + 1501.0, + 294.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1465.0, + 791.0, + 1465.0, + 791.0, + 1501.0, + 554.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 1465.0, + 1059.0, + 1465.0, + 1059.0, + 1501.0, + 949.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1551.0, + 682.0, + 1551.0, + 682.0, + 1594.0, + 295.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 226.0, + 652.0, + 226.0, + 652.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 667.0, + 371.0, + 667.0, + 371.0, + 708.0, + 294.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 667.0, + 485.0, + 667.0, + 485.0, + 708.0, + 417.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 667.0, + 731.0, + 667.0, + 731.0, + 708.0, + 502.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 667.0, + 985.0, + 667.0, + 985.0, + 708.0, + 759.0, + 708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1391.0, + 1745.0, + 1405.0, + 1745.0, + 1405.0, + 1794.0, + 1391.0, + 1794.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1225, + 1406, + 1225, + 1406, + 1425, + 296, + 1425 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 295, + 1622, + 1406, + 1622, + 1406, + 1945, + 295, + 1945 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1405, + 228, + 1405, + 325, + 298, + 325 + ], + "score": 0.973 + }, + { + "category_id": 8, + "poly": [ + 473, + 588, + 1227, + 588, + 1227, + 1054, + 473, + 1054 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 537, + 346, + 1159, + 346, + 1159, + 438, + 537, + 438 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 579, + 1447, + 1114, + 1447, + 1114, + 1546, + 579, + 1546 + ], + "score": 0.959 + }, + { + "category_id": 2, + "poly": [ + 296, + 1977, + 1406, + 1977, + 1406, + 2034, + 296, + 2034 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 297, + 538, + 892, + 538, + 892, + 573, + 297, + 573 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 292, + 1569, + 1349, + 1569, + 1349, + 1610, + 292, + 1610 + ], + "score": 0.919 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 817, + 73, + 817, + 106, + 298, + 106 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 300, + 1154, + 724, + 1154, + 724, + 1191, + 300, + 1191 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.869 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1073, + 1404, + 1073, + 1404, + 1103, + 1374, + 1103 + ], + "score": 0.832 + }, + { + "category_id": 2, + "poly": [ + 1373, + 456, + 1404, + 456, + 1404, + 487, + 1373, + 487 + ], + "score": 0.826 + }, + { + "category_id": 14, + "poly": [ + 535, + 341, + 1161, + 341, + 1161, + 438, + 535, + 438 + ], + "score": 0.94, + "latex": "\\sum _ { m = 1 } ^ { M } \\langle x , v _ { m } \\rangle ^ { 2 } - \\langle x ^ { + } , v _ { m } \\rangle ^ { 2 } \\leq \\sum _ { n = 1 } ^ { L } x _ { n } ^ { 2 } = \\| x \\| ^ { 2 } - \\| x ^ { + } \\| ^ { 2 } ." + }, + { + "category_id": 14, + "poly": [ + 469, + 592, + 1221, + 592, + 1221, + 1056, + 469, + 1056 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } { d _ { M } ( f _ { l } ( X ) ) = d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot W _ { l H _ { 1 } } \\rangle } _ { H \\mathrm { ~ i n e s } } ) } & { } \\\\ & { \\leq d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H \\mathrm { ~ i n e s } } ) } \\\\ & { \\leq s _ { i H _ { 1 } - 1 } d _ { M } ( \\underbrace { \\sigma \\langle \\cdot \\cdot \\sigma ( \\sigma ( P X ) W _ { l } ) W _ { l ^ { 2 } } \\cdot \\cdot \\cdot \\cdot \\cdot } _ { H - 1 \\mathrm { ~ i n e s } } ) } \\\\ & { \\cdots } \\\\ & { \\leq \\displaystyle \\left( \\prod _ { i = 1 } ^ { H _ { l } } s _ { i h } \\right) d _ { M } ( P X ) } \\\\ & { \\leq s _ { i d _ { M } ( P X ) } } \\\\ & { \\leq s _ { i H _ { 1 } } d _ { M } ( X ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 580, + 1445, + 1115, + 1445, + 1115, + 1546, + 580, + 1546 + ], + "score": 0.93, + "latex": "x ^ { \\top } \\tilde { \\Delta } x = \\frac { 1 } { 2 } \\sum _ { i , j = 1 } ^ { N } a _ { i j } \\left( \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } - \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } \\right) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 518, + 1906, + 668, + 1906, + 668, + 1942, + 518, + 1942 + ], + "score": 0.93, + "latex": "e _ { m } = \\tilde { D } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 } _ { m }" + }, + { + "category_id": 13, + "poly": [ + 594, + 1259, + 754, + 1259, + 754, + 1295, + 594, + 1295 + ], + "score": 0.93, + "latex": "P = I _ { N } - \\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1704, + 1201, + 1704, + 1201, + 1738, + 1104, + 1738 + ], + "score": 0.93, + "latex": "i \\in [ N ]" + }, + { + "category_id": 13, + "poly": [ + 776, + 1657, + 856, + 1657, + 856, + 1707, + 776, + 1707 + ], + "score": 0.93, + "latex": "\\textstyle { \\frac { x _ { j } } { \\sqrt { d _ { j } + 1 } } }" + }, + { + "category_id": 13, + "poly": [ + 427, + 1229, + 619, + 1229, + 619, + 1261, + 427, + 1261 + ], + "score": 0.92, + "latex": "{ \\tilde { \\mu } } _ { 1 } \\leq \\dots \\leq { \\tilde { \\mu } } _ { N }" + }, + { + "category_id": 13, + "poly": [ + 737, + 263, + 869, + 263, + 869, + 292, + 737, + 292 + ], + "score": 0.92, + "latex": "1 \\le n \\le L" + }, + { + "category_id": 13, + "poly": [ + 936, + 1774, + 1070, + 1774, + 1070, + 1807, + 936, + 1807 + ], + "score": 0.92, + "latex": "V _ { 1 } , \\dots , V _ { M }" + }, + { + "category_id": 13, + "poly": [ + 1161, + 1657, + 1219, + 1657, + 1219, + 1691, + 1161, + 1691 + ], + "score": 0.92, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 328, + 1871, + 387, + 1871, + 387, + 1909, + 328, + 1909 + ], + "score": 0.92, + "latex": "\\tilde { \\Delta } _ { m } ^ { \\prime } s" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1771, + 1187, + 1771, + 1187, + 1807, + 1141, + 1807 + ], + "score": 0.91, + "latex": "\\tilde { \\Delta } _ { m }" + }, + { + "category_id": 13, + "poly": [ + 806, + 1624, + 909, + 1624, + 909, + 1655, + 806, + 1655 + ], + "score": 0.91, + "latex": "\\boldsymbol { x } \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 1259, + 1576, + 1342, + 1576, + 1342, + 1608, + 1259, + 1608 + ], + "score": 0.91, + "latex": "\\tilde { \\mu } _ { 1 } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 708, + 1706, + 783, + 1706, + 783, + 1745, + 708, + 1745 + ], + "score": 0.91, + "latex": "\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }" + }, + { + "category_id": 13, + "poly": [ + 345, + 1298, + 439, + 1298, + 439, + 1330, + 345, + 1330 + ], + "score": 0.91, + "latex": "\\tilde { \\mu } _ { N } < 2" + }, + { + "category_id": 13, + "poly": [ + 646, + 1657, + 721, + 1657, + 721, + 1700, + 646, + 1700 + ], + "score": 0.91, + "latex": "\\textstyle { \\frac { x _ { i } } { \\sqrt { d _ { i } + 1 } } }" + }, + { + "category_id": 13, + "poly": [ + 890, + 1871, + 936, + 1871, + 936, + 1906, + 890, + 1906 + ], + "score": 0.91, + "latex": "\\tilde { \\Delta } _ { m }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 1806, + 1296, + 1806, + 1296, + 1839, + 1175, + 1839 + ], + "score": 0.91, + "latex": "m \\in \\ [ M ]" + }, + { + "category_id": 13, + "poly": [ + 492, + 263, + 693, + 263, + 693, + 293, + 492, + 293 + ], + "score": 0.91, + "latex": "x _ { n } x _ { l } v _ { n m } v _ { l m } \\leq 0" + }, + { + "category_id": 13, + "poly": [ + 597, + 1837, + 644, + 1837, + 644, + 1872, + 597, + 1872 + ], + "score": 0.91, + "latex": "\\tilde { \\Delta } _ { m }" + }, + { + "category_id": 13, + "poly": [ + 950, + 231, + 1090, + 231, + 1090, + 262, + 950, + 262 + ], + "score": 0.9, + "latex": "n \\not \\in \\cup _ { m } I _ { m }" + }, + { + "category_id": 13, + "poly": [ + 802, + 232, + 917, + 232, + 917, + 261, + 802, + 261 + ], + "score": 0.9, + "latex": "v _ { n m } = 0" + }, + { + "category_id": 13, + "poly": [ + 922, + 263, + 1105, + 263, + 1105, + 292, + 922, + 292 + ], + "score": 0.9, + "latex": "L + 1 \\le l \\le N" + }, + { + "category_id": 13, + "poly": [ + 1332, + 1660, + 1403, + 1660, + 1403, + 1692, + 1332, + 1692 + ], + "score": 0.89, + "latex": "a _ { i j } >" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1808, + 1124, + 1808, + 1124, + 1838, + 1083, + 1838 + ], + "score": 0.89, + "latex": "V _ { m }" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1264, + 1252, + 1264, + 1252, + 1296, + 1005, + 1296 + ], + "score": 0.89, + "latex": "\\tilde { \\mu } _ { 1 } = \\cdot \\cdot \\cdot = \\tilde { \\mu } _ { M } = 0" + }, + { + "category_id": 13, + "poly": [ + 552, + 232, + 588, + 232, + 588, + 261, + 552, + 261 + ], + "score": 0.87, + "latex": "I _ { m }" + }, + { + "category_id": 13, + "poly": [ + 495, + 297, + 531, + 297, + 531, + 322, + 495, + 322 + ], + "score": 0.87, + "latex": "v _ { m }" + }, + { + "category_id": 13, + "poly": [ + 404, + 1388, + 430, + 1388, + 430, + 1420, + 404, + 1420 + ], + "score": 0.87, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1770, + 357, + 1770, + 357, + 1805, + 297, + 1805 + ], + "score": 0.87, + "latex": "{ \\tilde { D } } ^ { \\frac { 1 } { 2 } } \\mathbf { 1 }" + }, + { + "category_id": 13, + "poly": [ + 840, + 1571, + 867, + 1571, + 867, + 1603, + 840, + 1603 + ], + "score": 0.86, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 593, + 1873, + 618, + 1873, + 618, + 1903, + 593, + 1903 + ], + "score": 0.86, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1871, + 1116, + 1871, + 1116, + 1904, + 1090, + 1904 + ], + "score": 0.85, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 383, + 1567, + 705, + 1567, + 705, + 1609, + 383, + 1609 + ], + "score": 0.85, + "latex": "x = \\lbrack x _ { 1 } \\quad \\cdot \\cdot \\cdot \\quad x _ { N } \\rbrack ^ { \\top } \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 1290, + 1224, + 1316, + 1224, + 1316, + 1257, + 1290, + 1257 + ], + "score": 0.84, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1181, + 1838, + 1208, + 1838, + 1208, + 1869, + 1181, + 1869 + ], + "score": 0.84, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 582, + 1628, + 607, + 1628, + 607, + 1654, + 582, + 1654 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 629, + 1776, + 663, + 1776, + 663, + 1804, + 629, + 1804 + ], + "score": 0.82, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 1055, + 1295, + 1081, + 1295, + 1081, + 1325, + 1055, + 1325 + ], + "score": 0.82, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1331, + 263, + 1353, + 263, + 1353, + 289, + 1331, + 289 + ], + "score": 0.81, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1264, + 1394, + 1264, + 1394, + 1297, + 1265, + 1297 + ], + "score": 0.81, + "latex": "{ \\tilde { \\mu } } _ { M + 1 } > 0" + }, + { + "category_id": 13, + "poly": [ + 549, + 1776, + 575, + 1776, + 575, + 1804, + 549, + 1804 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 518, + 1705, + 543, + 1705, + 543, + 1733, + 518, + 1733 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 434, + 1912, + 467, + 1912, + 467, + 1939, + 434, + 1939 + ], + "score": 0.79, + "latex": "M" + }, + { + "category_id": 13, + "poly": [ + 500, + 543, + 515, + 543, + 515, + 568, + 500, + 568 + ], + "score": 0.37, + "latex": "^ { l }" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1967.0, + 1406.0, + 1967.0, + 1406.0, + 2014.0, + 327.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1999.0, + 392.0, + 1999.0, + 392.0, + 2040.0, + 293.0, + 2040.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": [ + 294.0, + 1154.0, + 730.0, + 1154.0, + 730.0, + 1195.0, + 294.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 871.0, + 2085.0, + 871.0, + 2123.0, + 832.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1378.0, + 1078.0, + 1403.0, + 1078.0, + 1403.0, + 1106.0, + 1378.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 462.0, + 1402.0, + 462.0, + 1402.0, + 485.0, + 1379.0, + 485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1225.0, + 426.0, + 1225.0, + 426.0, + 1263.0, + 293.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 1225.0, + 1289.0, + 1225.0, + 1289.0, + 1263.0, + 620.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1225.0, + 1406.0, + 1225.0, + 1406.0, + 1263.0, + 1317.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 593.0, + 1262.0, + 593.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 1262.0, + 1004.0, + 1262.0, + 1004.0, + 1300.0, + 755.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1253.0, + 1262.0, + 1264.0, + 1262.0, + 1264.0, + 1300.0, + 1253.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1262.0, + 1404.0, + 1262.0, + 1404.0, + 1300.0, + 1395.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1296.0, + 344.0, + 1296.0, + 344.0, + 1333.0, + 294.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1296.0, + 1054.0, + 1296.0, + 1054.0, + 1333.0, + 440.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1296.0, + 1406.0, + 1296.0, + 1406.0, + 1333.0, + 1082.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 1404.0, + 1326.0, + 1404.0, + 1362.0, + 294.0, + 1362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1357.0, + 1406.0, + 1357.0, + 1406.0, + 1395.0, + 293.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1391.0, + 403.0, + 1391.0, + 403.0, + 1428.0, + 294.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 431.0, + 1391.0, + 893.0, + 1391.0, + 893.0, + 1428.0, + 431.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1621.0, + 581.0, + 1621.0, + 581.0, + 1662.0, + 294.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 1621.0, + 805.0, + 1621.0, + 805.0, + 1662.0, + 608.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1621.0, + 1406.0, + 1621.0, + 1406.0, + 1662.0, + 910.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1653.0, + 645.0, + 1653.0, + 645.0, + 1708.0, + 296.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1653.0, + 775.0, + 1653.0, + 775.0, + 1708.0, + 722.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1655.0, + 1160.0, + 1655.0, + 1160.0, + 1696.0, + 859.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1220.0, + 1655.0, + 1331.0, + 1655.0, + 1331.0, + 1696.0, + 1220.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1700.0, + 517.0, + 1700.0, + 517.0, + 1749.0, + 294.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 1700.0, + 707.0, + 1700.0, + 707.0, + 1749.0, + 544.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 1700.0, + 1103.0, + 1700.0, + 1103.0, + 1749.0, + 784.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1700.0, + 1405.0, + 1700.0, + 1405.0, + 1749.0, + 1202.0, + 1749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1737.0, + 1406.0, + 1737.0, + 1406.0, + 1776.0, + 293.0, + 1776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1769.0, + 548.0, + 1769.0, + 548.0, + 1813.0, + 358.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1769.0, + 628.0, + 1769.0, + 628.0, + 1813.0, + 576.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 1769.0, + 935.0, + 1769.0, + 935.0, + 1813.0, + 664.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1769.0, + 1140.0, + 1769.0, + 1140.0, + 1813.0, + 1071.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1769.0, + 1407.0, + 1769.0, + 1407.0, + 1813.0, + 1188.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1082.0, + 1803.0, + 1082.0, + 1842.0, + 293.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1125.0, + 1803.0, + 1174.0, + 1803.0, + 1174.0, + 1842.0, + 1125.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1803.0, + 1406.0, + 1803.0, + 1406.0, + 1842.0, + 1297.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1839.0, + 596.0, + 1839.0, + 596.0, + 1876.0, + 294.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 1839.0, + 1180.0, + 1839.0, + 1180.0, + 1876.0, + 645.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1839.0, + 1406.0, + 1839.0, + 1406.0, + 1876.0, + 1209.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1872.0, + 327.0, + 1872.0, + 327.0, + 1909.0, + 295.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 388.0, + 1872.0, + 592.0, + 1872.0, + 592.0, + 1909.0, + 388.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1872.0, + 889.0, + 1872.0, + 889.0, + 1909.0, + 619.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1872.0, + 1089.0, + 1872.0, + 1089.0, + 1909.0, + 937.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 1872.0, + 1404.0, + 1872.0, + 1404.0, + 1909.0, + 1117.0, + 1909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1908.0, + 433.0, + 1908.0, + 433.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1908.0, + 517.0, + 1908.0, + 517.0, + 1947.0, + 468.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1908.0, + 1167.0, + 1908.0, + 1167.0, + 1947.0, + 669.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 551.0, + 226.0, + 551.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 226.0, + 801.0, + 226.0, + 801.0, + 267.0, + 589.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 226.0, + 949.0, + 226.0, + 949.0, + 267.0, + 918.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 226.0, + 1405.0, + 226.0, + 1405.0, + 267.0, + 1091.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 258.0, + 491.0, + 258.0, + 491.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 258.0, + 736.0, + 258.0, + 736.0, + 300.0, + 694.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 258.0, + 921.0, + 258.0, + 921.0, + 300.0, + 870.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 258.0, + 1330.0, + 258.0, + 1330.0, + 300.0, + 1106.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 258.0, + 1407.0, + 258.0, + 1407.0, + 300.0, + 1354.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 291.0, + 494.0, + 291.0, + 494.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 291.0, + 992.0, + 291.0, + 992.0, + 326.0, + 532.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 539.0, + 499.0, + 539.0, + 499.0, + 576.0, + 296.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 539.0, + 891.0, + 539.0, + 891.0, + 576.0, + 516.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1563.0, + 382.0, + 1563.0, + 382.0, + 1617.0, + 288.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1563.0, + 839.0, + 1563.0, + 839.0, + 1617.0, + 706.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1563.0, + 1258.0, + 1563.0, + 1258.0, + 1617.0, + 868.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 1563.0, + 1358.0, + 1563.0, + 1358.0, + 1617.0, + 1343.0, + 1617.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1492, + 1405, + 1492, + 1405, + 1675, + 296, + 1675 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1824, + 1405, + 1824, + 1405, + 1924, + 297, + 1924 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 444, + 610, + 1264, + 610, + 1264, + 1474, + 444, + 1474 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 630, + 314, + 1067, + 314, + 1067, + 404, + 630, + 404 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 290, + 228, + 1401, + 228, + 1401, + 298, + 290, + 298 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 292, + 423, + 1402, + 423, + 1402, + 490, + 292, + 490 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 297, + 1946, + 1402, + 1946, + 1402, + 2033, + 297, + 2033 + ], + "score": 0.942 + }, + { + "category_id": 8, + "poly": [ + 710, + 498, + 988, + 498, + 988, + 540, + 710, + 540 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 299, + 1717, + 1334, + 1717, + 1334, + 1792, + 299, + 1792 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 297, + 555, + 1100, + 555, + 1100, + 590, + 297, + 590 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 817, + 74, + 817, + 106, + 298, + 106 + ], + "score": 0.915 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.854 + }, + { + "category_id": 9, + "poly": [ + 1365, + 509, + 1401, + 509, + 1401, + 539, + 1365, + 539 + ], + "score": 0.841 + }, + { + "category_id": 14, + "poly": [ + 452, + 597, + 1257, + 597, + 1257, + 1471, + 452, + 1471 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } { \\alpha _ { 1 } } & { \\gamma _ { 2 } \\geq \\frac { \\alpha _ { 2 } ( \\lambda _ { 1 } ) } { \\alpha _ { 1 } } } \\\\ { = } & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 1 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 3 } } \\\\ { = } & { \\gamma _ { 2 } \\geq \\alpha _ { 3 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 2 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 3 } \\geq \\alpha _ { 4 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 5 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { - \\gamma _ { 6 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } } \\\\ & { - \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 6 } } \\\\ & { \\gamma _ { 6 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\gamma _ { 7 } \\geq \\alpha _ { 6 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 7 } \\leq \\alpha _ { 8 } } \\\\ & { \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 1 } } \\\\ & { \\gamma _ { 1 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 2 } \\leq \\alpha _ { 3 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 3 } \\geq \\alpha _ { 5 } \\leq \\alpha _ { 4 } } \\\\ & { \\gamma _ { 2 } \\geq \\alpha _ { 2 } \\leq \\alpha _ { 3 } \\leq \\alpha _ { 4 } } \\\\ & \\gamma _ { 3 } \\geq \\ \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 627, + 312, + 1068, + 312, + 1068, + 407, + 627, + 407 + ], + "score": 0.94, + "latex": "D _ { i i } ^ { - \\frac { 1 } { 2 } } = \\left\\{ \\begin{array} { l l } { \\deg ( i ) ^ { - \\frac { 1 } { 2 } } } & { ( \\mathrm { i f } \\deg ( i ) \\neq 0 ) } \\\\ { 0 } & { ( \\mathrm { i f } \\deg ( i ) = 0 ) } \\end{array} \\right. ." + }, + { + "category_id": 13, + "poly": [ + 741, + 1490, + 1059, + 1490, + 1059, + 1555, + 741, + 1555 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\frac { \\deg ( i ) } { \\deg ( i ) + 1 } \\right) ^ { \\frac { 1 } { 2 } } < 1 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 260, + 515, + 260, + 515, + 299, + 298, + 299 + ], + "score": 0.93, + "latex": "D ^ { - \\frac { 1 } { 2 } } \\bar { ( } D - \\bar { A } ) D ^ { - \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 523, + 1508, + 654, + 1508, + 654, + 1544, + 523, + 1544 + ], + "score": 0.92, + "latex": "\\tilde { \\mu } _ { N } \\le \\mu _ { N } { } ^ { 7 }" + }, + { + "category_id": 13, + "poly": [ + 602, + 261, + 775, + 261, + 775, + 294, + 602, + 294 + ], + "score": 0.92, + "latex": "D ^ { - \\frac { 1 } { 2 } } \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 1211, + 1512, + 1332, + 1512, + 1332, + 1543, + 1211, + 1543 + ], + "score": 0.92, + "latex": "\\tilde { \\mu } _ { N } = \\mu _ { N }" + }, + { + "category_id": 13, + "poly": [ + 565, + 421, + 665, + 421, + 665, + 455, + 565, + 455 + ], + "score": 0.92, + "latex": "D ^ { \\frac { 1 } { 2 } } D ^ { - { \\frac { 1 } { 2 } } }" + }, + { + "category_id": 13, + "poly": [ + 1255, + 1891, + 1353, + 1891, + 1353, + 1924, + 1255, + 1924 + ], + "score": 0.92, + "latex": "F \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 977, + 1613, + 1094, + 1613, + 1094, + 1644, + 977, + 1644 + ], + "score": 0.91, + "latex": "\\tilde { \\mu } _ { N } = \\mu _ { N }" + }, + { + "category_id": 13, + "poly": [ + 372, + 558, + 509, + 558, + 509, + 586, + 372, + 586 + ], + "score": 0.91, + "latex": "L = D - A" + }, + { + "category_id": 13, + "poly": [ + 410, + 421, + 511, + 421, + 511, + 455, + 410, + 455 + ], + "score": 0.91, + "latex": "D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 458, + 1552, + 558, + 1552, + 558, + 1582, + 458, + 1582 + ], + "score": 0.91, + "latex": "\\mu _ { N } = 0" + }, + { + "category_id": 13, + "poly": [ + 341, + 1887, + 687, + 1887, + 687, + 1919, + 341, + 1919 + ], + "score": 0.91, + "latex": "L = \\tilde { D } ^ { - 1 / 2 } \\tilde { A } \\tilde { D } ^ { - 1 / 2 } \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1582, + 444, + 1582, + 444, + 1613, + 347, + 1613 + ], + "score": 0.91, + "latex": "\\mu _ { N } \\leq 2" + }, + { + "category_id": 13, + "poly": [ + 634, + 1643, + 726, + 1643, + 726, + 1674, + 634, + 1674 + ], + "score": 0.9, + "latex": "\\mu _ { N } < 2" + }, + { + "category_id": 13, + "poly": [ + 505, + 232, + 607, + 232, + 607, + 262, + 505, + 262 + ], + "score": 0.9, + "latex": "\\tilde { \\mu } _ { N \\mathrm { ~ } } < \\mathrm { ~ 2 ~ }" + }, + { + "category_id": 13, + "poly": [ + 1147, + 1613, + 1242, + 1613, + 1242, + 1644, + 1147, + 1644 + ], + "score": 0.9, + "latex": "\\mu _ { N } = 2" + }, + { + "category_id": 14, + "poly": [ + 708, + 496, + 990, + 496, + 990, + 539, + 708, + 539 + ], + "score": 0.9, + "latex": "L = D ^ { \\frac { 1 } { 2 } } D ^ { - \\frac { 1 } { 2 } } L D ^ { - \\frac { 1 } { 2 } } D ^ { \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1075, + 428, + 1112, + 428, + 1112, + 458, + 1075, + 458 + ], + "score": 0.89, + "latex": "I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 673, + 235, + 714, + 235, + 714, + 262, + 673, + 262 + ], + "score": 0.84, + "latex": "\\mu _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1341, + 230, + 1405, + 230, + 1405, + 263, + 1341, + 263 + ], + "score": 0.83, + "latex": "\\Delta =" + }, + { + "category_id": 13, + "poly": [ + 735, + 1552, + 764, + 1552, + 764, + 1578, + 735, + 1578 + ], + "score": 0.83, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 1128, + 1949, + 1151, + 1949, + 1151, + 1973, + 1128, + 1973 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1122, + 1827, + 1147, + 1827, + 1147, + 1855, + 1122, + 1855 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 657, + 1551, + 683, + 1551, + 683, + 1578, + 657, + 1578 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 861, + 1582, + 887, + 1582, + 887, + 1609, + 861, + 1609 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 424, + 1859, + 453, + 1859, + 453, + 1885, + 424, + 1885 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 576, + 1859, + 595, + 1859, + 595, + 1885, + 576, + 1885 + ], + "score": 0.8, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1173, + 1892, + 1198, + 1892, + 1198, + 1919, + 1173, + 1919 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 980, + 1825, + 1065, + 1825, + 1065, + 1858, + 980, + 1858 + ], + "score": 0.79, + "latex": "( 2 0 1 9 ) ^ { 8 }" + }, + { + "category_id": 13, + "poly": [ + 624, + 1613, + 649, + 1613, + 649, + 1640, + 624, + 1640 + ], + "score": 0.51, + "latex": "\\&" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1939.0, + 1127.0, + 1939.0, + 1127.0, + 1984.0, + 329.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1939.0, + 1406.0, + 1939.0, + 1406.0, + 1984.0, + 1152.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1973.0, + 650.0, + 1973.0, + 650.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1999.0, + 857.0, + 1999.0, + 857.0, + 2037.0, + 327.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1714.0, + 1340.0, + 1714.0, + 1340.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1758.0, + 650.0, + 1758.0, + 650.0, + 1793.0, + 352.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "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, + 869.0, + 2085.0, + 869.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1060.0, + 1508.0, + 1210.0, + 1508.0, + 1210.0, + 1546.0, + 1060.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1508.0, + 1403.0, + 1508.0, + 1403.0, + 1546.0, + 1333.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1548.0, + 457.0, + 1548.0, + 457.0, + 1584.0, + 294.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1548.0, + 656.0, + 1548.0, + 656.0, + 1584.0, + 559.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1548.0, + 734.0, + 1548.0, + 734.0, + 1584.0, + 684.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1548.0, + 1405.0, + 1548.0, + 1405.0, + 1584.0, + 765.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1580.0, + 346.0, + 1580.0, + 346.0, + 1615.0, + 295.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1580.0, + 860.0, + 1580.0, + 860.0, + 1615.0, + 445.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1580.0, + 1406.0, + 1580.0, + 1406.0, + 1615.0, + 888.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1609.0, + 623.0, + 1609.0, + 623.0, + 1647.0, + 293.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 1609.0, + 976.0, + 1609.0, + 976.0, + 1647.0, + 650.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 1609.0, + 1146.0, + 1609.0, + 1146.0, + 1647.0, + 1095.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1609.0, + 1408.0, + 1609.0, + 1408.0, + 1647.0, + 1243.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1642.0, + 633.0, + 1642.0, + 633.0, + 1673.0, + 296.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1642.0, + 736.0, + 1642.0, + 736.0, + 1673.0, + 727.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1372.0, + 1642.0, + 1406.0, + 1642.0, + 1406.0, + 1673.0, + 1372.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1502.0, + 864.0, + 1502.0, + 864.0, + 1550.0, + 292.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 979.0, + 1824.0, + 979.0, + 1863.0, + 295.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1824.0, + 1121.0, + 1824.0, + 1121.0, + 1863.0, + 1066.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1824.0, + 1406.0, + 1824.0, + 1406.0, + 1863.0, + 1148.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1857.0, + 423.0, + 1857.0, + 423.0, + 1894.0, + 294.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1857.0, + 575.0, + 1857.0, + 575.0, + 1894.0, + 454.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1857.0, + 1405.0, + 1857.0, + 1405.0, + 1894.0, + 596.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1881.0, + 340.0, + 1881.0, + 340.0, + 1930.0, + 290.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 1881.0, + 1172.0, + 1881.0, + 1172.0, + 1930.0, + 688.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1881.0, + 1254.0, + 1881.0, + 1254.0, + 1930.0, + 1199.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1881.0, + 1408.0, + 1881.0, + 1408.0, + 1930.0, + 1354.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 224.0, + 504.0, + 224.0, + 504.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 224.0, + 672.0, + 224.0, + 672.0, + 266.0, + 608.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 224.0, + 1340.0, + 224.0, + 1340.0, + 266.0, + 715.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 252.0, + 297.0, + 252.0, + 297.0, + 306.0, + 292.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 252.0, + 601.0, + 252.0, + 601.0, + 306.0, + 516.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 252.0, + 1152.0, + 252.0, + 1152.0, + 306.0, + 776.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 417.0, + 409.0, + 417.0, + 409.0, + 464.0, + 291.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 417.0, + 564.0, + 417.0, + 564.0, + 464.0, + 512.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 417.0, + 1074.0, + 417.0, + 1074.0, + 464.0, + 666.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 417.0, + 1407.0, + 417.0, + 1407.0, + 464.0, + 1113.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 451.0, + 361.0, + 451.0, + 361.0, + 495.0, + 291.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 555.0, + 371.0, + 555.0, + 371.0, + 594.0, + 295.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 555.0, + 1102.0, + 555.0, + 1102.0, + 594.0, + 510.0, + 594.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1407, + 1405, + 1407, + 1405, + 1740, + 295, + 1740 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 225, + 1405, + 225, + 1405, + 384, + 297, + 384 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 296, + 1268, + 1404, + 1268, + 1404, + 1394, + 296, + 1394 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 616, + 1405, + 616, + 1405, + 773, + 297, + 773 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 783, + 1404, + 783, + 1404, + 910, + 298, + 910 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 296, + 1029, + 1405, + 1029, + 1405, + 1154, + 296, + 1154 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1747, + 1405, + 1747, + 1405, + 1844, + 297, + 1844 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 724, + 473, + 971, + 473, + 971, + 602, + 724, + 602 + ], + "score": 0.954 + }, + { + "category_id": 8, + "poly": [ + 414, + 924, + 1279, + 924, + 1279, + 1015, + 414, + 1015 + ], + "score": 0.948 + }, + { + "category_id": 8, + "poly": [ + 598, + 1859, + 1099, + 1859, + 1099, + 1934, + 598, + 1934 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 299, + 397, + 1401, + 397, + 1401, + 462, + 299, + 462 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 300, + 1198, + 681, + 1198, + 681, + 1235, + 300, + 1235 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 298, + 1951, + 638, + 1951, + 638, + 1984, + 298, + 1984 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 327, + 2001, + 1078, + 2001, + 1078, + 2036, + 327, + 2036 + ], + "score": 0.884 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 865, + 2088, + 865, + 2113, + 836, + 2113 + ], + "score": 0.876 + }, + { + "category_id": 14, + "poly": [ + 722, + 472, + 975, + 472, + 975, + 603, + 722, + 603 + ], + "score": 0.94, + "latex": "A = { \\left[ \\begin{array} { l l l l } { 1 } & { 1 } & { 1 } & { 1 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 1 } & { 1 } & { 0 } \\\\ { 1 } & { 0 } & { 0 } & { 1 } \\end{array} \\right] } ~ ." + }, + { + "category_id": 13, + "poly": [ + 419, + 259, + 567, + 259, + 567, + 292, + 419, + 292 + ], + "score": 0.93, + "latex": "Y _ { n } \\in \\mathbb { R } ^ { N \\times F }" + }, + { + "category_id": 13, + "poly": [ + 849, + 1705, + 1152, + 1705, + 1152, + 1742, + 849, + 1742 + ], + "score": 0.93, + "latex": "\\| X \\| = \\operatorname* { i n a x } _ { n \\in [ N ] } | \\lambda _ { n } ( X ) |" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1563, + 1350, + 1563, + 1350, + 1602, + 1068, + 1602 + ], + "score": 0.93, + "latex": "{ \\bar { A } } : = \\mathbb { E } [ { \\tilde { A } } ] = P + I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1705, + 565, + 1705, + 565, + 1740, + 297, + 1740 + ], + "score": 0.93, + "latex": "\\lambda _ { 1 } ( X ) \\leq \\cdots \\leq \\lambda _ { N } ( X )" + }, + { + "category_id": 13, + "poly": [ + 527, + 849, + 623, + 849, + 623, + 879, + 527, + 879 + ], + "score": 0.93, + "latex": "\\Lambda _ { 4 4 } = 0" + }, + { + "category_id": 13, + "poly": [ + 660, + 650, + 776, + 650, + 776, + 681, + 660, + 681 + ], + "score": 0.92, + "latex": "W _ { n } \\ = \\ I _ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 588, + 1781, + 863, + 1781, + 863, + 1815, + 588, + 1815 + ], + "score": 0.92, + "latex": "k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) )" + }, + { + "category_id": 14, + "poly": [ + 599, + 1855, + 1100, + 1855, + 1100, + 1934, + 599, + 1934 + ], + "score": 0.92, + "latex": "\\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } }" + }, + { + "category_id": 13, + "poly": [ + 741, + 709, + 942, + 709, + 942, + 743, + 741, + 743 + ], + "score": 0.92, + "latex": "P ( X \\geq 0 ) ~ { \\stackrel { . } { > } } ~ 0" + }, + { + "category_id": 13, + "poly": [ + 297, + 1562, + 485, + 1562, + 485, + 1606, + 297, + 1606 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { t _ { i } : = \\sum _ { j = 1 } ^ { N } p _ { i j } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1076, + 1441, + 1171, + 1441, + 1171, + 1473, + 1076, + 1473 + ], + "score": 0.92, + "latex": "p _ { i j } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 1439, + 493, + 1439, + 493, + 1475, + 298, + 1475 + ], + "score": 0.92, + "latex": "P = ( p _ { i j } ) _ { i , j \\in [ N ] }" + }, + { + "category_id": 13, + "poly": [ + 395, + 1090, + 601, + 1090, + 601, + 1125, + 395, + 1125 + ], + "score": 0.92, + "latex": "P ( \\{ \\mathrm { r a n k } ( Y _ { n } ) = 3 " + }, + { + "category_id": 13, + "poly": [ + 298, + 818, + 414, + 818, + 414, + 851, + 298, + 851 + ], + "score": 0.92, + "latex": "P \\in O ( 4 )" + }, + { + "category_id": 13, + "poly": [ + 1110, + 1639, + 1399, + 1639, + 1399, + 1676, + 1110, + 1676 + ], + "score": 0.92, + "latex": "\\bar { \\Delta } : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\bar { A } \\bar { D } ^ { - \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 440, + 2000, + 552, + 2000, + 552, + 2035, + 440, + 2035 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ \\tilde { \\Delta } ] \\neq \\bar { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1131, + 227, + 1275, + 227, + 1275, + 259, + 1131, + 259 + ], + "score": 0.91, + "latex": "X \\in \\mathbb { R } ^ { N \\times F }" + }, + { + "category_id": 13, + "poly": [ + 298, + 227, + 455, + 227, + 455, + 261, + 298, + 261 + ], + "score": 0.91, + "latex": "W _ { n } \\in \\mathbb { R } ^ { F \\times F }" + }, + { + "category_id": 13, + "poly": [ + 557, + 788, + 691, + 788, + 691, + 818, + 557, + 818 + ], + "score": 0.91, + "latex": "Y _ { n } = L ^ { n } X" + }, + { + "category_id": 13, + "poly": [ + 1126, + 817, + 1290, + 817, + 1290, + 851, + 1126, + 851 + ], + "score": 0.91, + "latex": "{ \\bar { \\operatorname { r a n k } } } ( \\Lambda ^ { n } ) = 3" + }, + { + "category_id": 13, + "poly": [ + 1216, + 620, + 1296, + 620, + 1296, + 647, + 1216, + 647 + ], + "score": 0.91, + "latex": "F = 3" + }, + { + "category_id": 13, + "poly": [ + 858, + 231, + 957, + 231, + 957, + 263, + 858, + 263 + ], + "score": 0.91, + "latex": "n \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 1043, + 401, + 1129, + 401, + 1129, + 428, + 1043, + 428 + ], + "score": 0.91, + "latex": "N = 4" + }, + { + "category_id": 13, + "poly": [ + 921, + 261, + 1299, + 261, + 1299, + 295, + 921, + 295 + ], + "score": 0.91, + "latex": "Y _ { n } = \\sigma ( L \\cdot \\cdot \\cdot \\sigma ( L X W _ { 0 } ) \\cdot \\cdot \\cdot W _ { n } )" + }, + { + "category_id": 13, + "poly": [ + 867, + 784, + 1012, + 784, + 1012, + 815, + 867, + 815 + ], + "score": 0.91, + "latex": "{ \\cal L } = { \\cal P } ^ { \\top } \\Delta { \\cal P }" + }, + { + "category_id": 13, + "poly": [ + 1277, + 850, + 1354, + 850, + 1354, + 879, + 1277, + 879 + ], + "score": 0.91, + "latex": "X \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1112, + 1781, + 1354, + 1781, + 1354, + 1815, + 1112, + 1815 + ], + "score": 0.9, + "latex": "i f { \\dot { \\delta } } + { \\dot { 1 } } > k ( \\varepsilon ) \\log N" + }, + { + "category_id": 13, + "poly": [ + 1024, + 710, + 1117, + 710, + 1117, + 740, + 1024, + 740 + ], + "score": 0.9, + "latex": "X ~ \\geq ~ 0" + }, + { + "category_id": 13, + "poly": [ + 749, + 1564, + 931, + 1564, + 931, + 1600, + 749, + 1600 + ], + "score": 0.9, + "latex": "{ \\tilde { D } } : = D + I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 367, + 788, + 444, + 788, + 444, + 817, + 367, + 817 + ], + "score": 0.9, + "latex": "L \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 722, + 787, + 805, + 787, + 805, + 818, + 722, + 818 + ], + "score": 0.9, + "latex": "X \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 1266, + 1440, + 1391, + 1440, + 1391, + 1472, + 1266, + 1472 + ], + "score": 0.9, + "latex": "i , j \\in [ N ] )" + }, + { + "category_id": 13, + "poly": [ + 555, + 708, + 619, + 708, + 619, + 738, + 555, + 738 + ], + "score": 0.9, + "latex": "\\mathbb { R } ^ { 4 \\times 3 }" + }, + { + "category_id": 13, + "poly": [ + 1315, + 289, + 1393, + 289, + 1393, + 319, + 1315, + 319 + ], + "score": 0.9, + "latex": "\\mathbb { R } ^ { N \\times F }" + }, + { + "category_id": 13, + "poly": [ + 1237, + 1409, + 1344, + 1409, + 1344, + 1441, + 1237, + 1441 + ], + "score": 0.9, + "latex": "N \\in { \\mathbb { N } } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1749, + 1209, + 1749, + 1209, + 1783, + 1001, + 1783 + ], + "score": 0.89, + "latex": "\\delta : = \\mathrm { m i n } _ { n \\in [ N ] } t _ { n }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 650, + 1295, + 650, + 1295, + 678, + 1210, + 678 + ], + "score": 0.89, + "latex": "n \\in \\mathbb N" + }, + { + "category_id": 13, + "poly": [ + 643, + 619, + 718, + 619, + 718, + 647, + 643, + 647 + ], + "score": 0.89, + "latex": "k = 1" + }, + { + "category_id": 13, + "poly": [ + 578, + 1532, + 766, + 1532, + 766, + 1565, + 578, + 1565 + ], + "score": 0.89, + "latex": "A _ { i j } \\sim \\mathrm { B e r } ( p _ { i j } )" + }, + { + "category_id": 13, + "poly": [ + 296, + 1606, + 713, + 1606, + 713, + 1642, + 296, + 1642 + ], + "score": 0.88, + "latex": "\\bar { D } : = \\mathbb { E } [ \\tilde { D } ] = \\mathrm { d i a g } ( t _ { 1 } , \\dots , t _ { N } ) + I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 622, + 1674, + 740, + 1674, + 740, + 1705, + 622, + 1705 + ], + "score": 0.88, + "latex": "X ~ \\in ~ \\mathbb { R } ^ { N }" + }, + { + "category_id": 14, + "poly": [ + 414, + 920, + 1283, + 920, + 1283, + 1018, + 414, + 1018 + ], + "score": 0.87, + "latex": "\\begin{array} { r l } & { \\mathrm { r a n k } ( Y _ { n } ) = 3 \\iff \\mathrm { r a n k } ( P ^ { \\top } \\Lambda ^ { n } P X ) = 3 } \\\\ & { \\qquad \\iff X \\in \\{ P ^ { - 1 } \\left[ B \\quad v \\right] ^ { \\top } | B \\in \\mathbb { R } ^ { 3 \\times 3 } \\mathrm { i s ~ i n v e r t i b l e } , v \\in \\mathbb { R } ^ { 3 } \\} . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 568, + 1954, + 632, + 1954, + 632, + 1981, + 568, + 1981 + ], + "score": 0.85, + "latex": "1 - \\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 1045, + 2002, + 1069, + 2002, + 1069, + 2030, + 1045, + 2030 + ], + "score": 0.85, + "latex": "\\tilde { D }" + }, + { + "category_id": 13, + "poly": [ + 795, + 293, + 823, + 293, + 823, + 319, + 795, + 319 + ], + "score": 0.85, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 558, + 1565, + 732, + 1565, + 732, + 1600, + 558, + 1600 + ], + "score": 0.85, + "latex": "{ \\tilde { A } } : = A + I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 490, + 1641, + 778, + 1641, + 778, + 1675, + 490, + 1675 + ], + "score": 0.85, + "latex": "\\tilde { \\Delta } : = I _ { N } - \\tilde { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\tilde { D } ^ { - \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 978, + 2003, + 999, + 2003, + 999, + 2030, + 978, + 2030 + ], + "score": 0.84, + "latex": "\\tilde { A }" + }, + { + "category_id": 13, + "poly": [ + 1034, + 1784, + 1101, + 1784, + 1101, + 1812, + 1034, + 1812 + ], + "score": 0.83, + "latex": "\\varepsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 409, + 620, + 434, + 620, + 434, + 646, + 409, + 646 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 353, + 1642, + 381, + 1642, + 381, + 1673, + 353, + 1673 + ], + "score": 0.83, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 859, + 401, + 884, + 401, + 884, + 428, + 859, + 428 + ], + "score": 0.82, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 462, + 353, + 489, + 353, + 489, + 380, + 462, + 380 + ], + "score": 0.82, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 691, + 1505, + 728, + 1505, + 728, + 1533, + 691, + 1533 + ], + "score": 0.82, + "latex": "p _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 789, + 1325, + 789, + 1325, + 815, + 1303, + 815 + ], + "score": 0.82, + "latex": "L" + }, + { + "category_id": 13, + "poly": [ + 1289, + 1473, + 1307, + 1473, + 1307, + 1503, + 1289, + 1503 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 748, + 323, + 848, + 323, + 848, + 353, + 748, + 353 + ], + "score": 0.82, + "latex": "\\scriptstyle \\operatorname* { l i m } _ { n \\to \\infty }" + }, + { + "category_id": 13, + "poly": [ + 870, + 1502, + 897, + 1502, + 897, + 1528, + 870, + 1528 + ], + "score": 0.82, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 867, + 818, + 1015, + 818, + 1015, + 851, + 867, + 851 + ], + "score": 0.81, + "latex": "\\mathrm { r a n k } ( L ) = 3" + }, + { + "category_id": 13, + "poly": [ + 800, + 1472, + 829, + 1472, + 829, + 1498, + 800, + 1498 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 576, + 681, + 603, + 681, + 603, + 707, + 576, + 707 + ], + "score": 0.8, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 420, + 1646, + 445, + 1646, + 445, + 1674, + 420, + 1674 + ], + "score": 0.8, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 792, + 1502, + 817, + 1502, + 817, + 1528, + 792, + 1528 + ], + "score": 0.8, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 681, + 1091, + 829, + 1091, + 829, + 1125, + 681, + 1125 + ], + "score": 0.79, + "latex": "n \\in \\mathbb { N } \\} ) > 0" + }, + { + "category_id": 13, + "poly": [ + 697, + 235, + 717, + 235, + 717, + 258, + 697, + 258 + ], + "score": 0.78, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 809, + 1037, + 828, + 1037, + 828, + 1058, + 809, + 1058 + ], + "score": 0.78, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 298, + 1532, + 322, + 1532, + 322, + 1558, + 298, + 1558 + ], + "score": 0.77, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 646, + 266, + 666, + 266, + 666, + 289, + 646, + 289 + ], + "score": 0.77, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1062, + 1091, + 1325, + 1091, + 1325, + 1125, + 1062, + 1125 + ], + "score": 0.77, + "latex": "\\begin{array} { r } { \\operatorname* { l i m } _ { n \\infty } \\operatorname { r a n k } ( Y _ { n } ) = 3 } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 344, + 1473, + 370, + 1473, + 370, + 1499, + 344, + 1499 + ], + "score": 0.76, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1380, + 267, + 1401, + 267, + 1401, + 288, + 1380, + 288 + ], + "score": 0.74, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1473, + 1234, + 1473, + 1234, + 1498, + 1220, + 1498 + ], + "score": 0.73, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 747, + 322, + 1021, + 322, + 1021, + 355, + 747, + 355 + ], + "score": 0.73, + "latex": "\\begin{array} { r } { \\operatorname* { l i m } _ { n \\to \\infty } \\operatorname { r a n k } ( Y _ { n } ) = k } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1381, + 824, + 1401, + 824, + 1401, + 845, + 1381, + 845 + ], + "score": 0.72, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 510, + 1783, + 534, + 1783, + 534, + 1809, + 510, + 1809 + ], + "score": 0.71, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1533, + 1364, + 1533, + 1364, + 1558, + 1349, + 1558 + ], + "score": 0.7, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1061, + 1093, + 1161, + 1093, + 1161, + 1123, + 1061, + 1123 + ], + "score": 0.65, + "latex": "\\operatorname* { l i m } _ { n \\to \\infty }" + }, + { + "category_id": 13, + "poly": [ + 1173, + 975, + 1271, + 975, + 1271, + 1013, + 1173, + 1013 + ], + "score": 0.34, + "latex": "v \\in \\mathbb { R } ^ { 3 } \\}" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1196.0, + 683.0, + 1196.0, + 683.0, + 1240.0, + 294.0, + 1240.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": [ + 329.0, + 1995.0, + 439.0, + 1995.0, + 439.0, + 2040.0, + 329.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1995.0, + 977.0, + 1995.0, + 977.0, + 2040.0, + 553.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1995.0, + 1044.0, + 1995.0, + 1044.0, + 2040.0, + 1000.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 1995.0, + 1080.0, + 1995.0, + 1080.0, + 2040.0, + 1070.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1406.0, + 1236.0, + 1406.0, + 1236.0, + 1444.0, + 293.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1406.0, + 1405.0, + 1406.0, + 1405.0, + 1444.0, + 1345.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1432.0, + 297.0, + 1432.0, + 297.0, + 1481.0, + 290.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1432.0, + 1075.0, + 1432.0, + 1075.0, + 1481.0, + 494.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1432.0, + 1265.0, + 1432.0, + 1265.0, + 1481.0, + 1172.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1392.0, + 1432.0, + 1406.0, + 1432.0, + 1406.0, + 1481.0, + 1392.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 343.0, + 1468.0, + 343.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1468.0, + 799.0, + 1468.0, + 799.0, + 1506.0, + 371.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1468.0, + 1219.0, + 1468.0, + 1219.0, + 1506.0, + 830.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1468.0, + 1288.0, + 1468.0, + 1288.0, + 1506.0, + 1235.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1468.0, + 1406.0, + 1468.0, + 1406.0, + 1506.0, + 1308.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1500.0, + 690.0, + 1500.0, + 690.0, + 1538.0, + 293.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1500.0, + 791.0, + 1500.0, + 791.0, + 1538.0, + 729.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 1500.0, + 869.0, + 1500.0, + 869.0, + 1538.0, + 818.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1500.0, + 1406.0, + 1500.0, + 1406.0, + 1538.0, + 898.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1528.0, + 297.0, + 1528.0, + 297.0, + 1570.0, + 293.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1528.0, + 577.0, + 1528.0, + 577.0, + 1570.0, + 323.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 1528.0, + 1348.0, + 1528.0, + 1348.0, + 1570.0, + 767.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1528.0, + 1406.0, + 1528.0, + 1406.0, + 1570.0, + 1365.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1564.0, + 296.0, + 1564.0, + 296.0, + 1609.0, + 288.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 1564.0, + 557.0, + 1564.0, + 557.0, + 1609.0, + 486.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 1564.0, + 748.0, + 1564.0, + 748.0, + 1609.0, + 733.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1564.0, + 1067.0, + 1564.0, + 1067.0, + 1609.0, + 932.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1351.0, + 1564.0, + 1410.0, + 1564.0, + 1410.0, + 1609.0, + 1351.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1601.0, + 295.0, + 1601.0, + 295.0, + 1652.0, + 292.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1601.0, + 1407.0, + 1601.0, + 1407.0, + 1652.0, + 714.0, + 1652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1638.0, + 352.0, + 1638.0, + 352.0, + 1680.0, + 290.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1638.0, + 419.0, + 1638.0, + 419.0, + 1680.0, + 382.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1638.0, + 489.0, + 1638.0, + 489.0, + 1680.0, + 446.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1638.0, + 1109.0, + 1638.0, + 1109.0, + 1680.0, + 779.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1638.0, + 1407.0, + 1638.0, + 1407.0, + 1680.0, + 1400.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1667.0, + 621.0, + 1667.0, + 621.0, + 1715.0, + 289.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 741.0, + 1667.0, + 1405.0, + 1667.0, + 1405.0, + 1715.0, + 741.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1703.0, + 848.0, + 1703.0, + 848.0, + 1743.0, + 566.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1703.0, + 1164.0, + 1703.0, + 1164.0, + 1743.0, + 1153.0, + 1743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 221.0, + 297.0, + 221.0, + 297.0, + 267.0, + 291.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 456.0, + 221.0, + 696.0, + 221.0, + 696.0, + 267.0, + 456.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 221.0, + 857.0, + 221.0, + 857.0, + 267.0, + 718.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 221.0, + 1130.0, + 221.0, + 1130.0, + 267.0, + 958.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1276.0, + 221.0, + 1408.0, + 221.0, + 1408.0, + 267.0, + 1276.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 248.0, + 418.0, + 248.0, + 418.0, + 302.0, + 289.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 568.0, + 248.0, + 645.0, + 248.0, + 645.0, + 302.0, + 568.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 248.0, + 920.0, + 248.0, + 920.0, + 302.0, + 667.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 248.0, + 1379.0, + 248.0, + 1379.0, + 302.0, + 1300.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 248.0, + 1408.0, + 248.0, + 1408.0, + 302.0, + 1402.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 284.0, + 794.0, + 284.0, + 794.0, + 329.0, + 287.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 284.0, + 1314.0, + 284.0, + 1314.0, + 329.0, + 824.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 284.0, + 1406.0, + 284.0, + 1406.0, + 329.0, + 1394.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 315.0, + 746.0, + 315.0, + 746.0, + 360.0, + 292.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 315.0, + 1406.0, + 315.0, + 1406.0, + 360.0, + 1022.0, + 360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 350.0, + 461.0, + 350.0, + 461.0, + 384.0, + 296.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 350.0, + 501.0, + 350.0, + 501.0, + 384.0, + 490.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1266.0, + 1405.0, + 1266.0, + 1405.0, + 1305.0, + 294.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1300.0, + 1405.0, + 1300.0, + 1405.0, + 1336.0, + 295.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1331.0, + 1405.0, + 1331.0, + 1405.0, + 1367.0, + 294.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1363.0, + 1343.0, + 1363.0, + 1343.0, + 1398.0, + 294.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 618.0, + 408.0, + 618.0, + 408.0, + 652.0, + 295.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 618.0, + 642.0, + 618.0, + 642.0, + 652.0, + 435.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 618.0, + 1215.0, + 618.0, + 1215.0, + 652.0, + 719.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 618.0, + 1403.0, + 618.0, + 1403.0, + 652.0, + 1297.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 648.0, + 659.0, + 648.0, + 659.0, + 685.0, + 295.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 777.0, + 648.0, + 1209.0, + 648.0, + 1209.0, + 685.0, + 777.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 648.0, + 1405.0, + 648.0, + 1405.0, + 685.0, + 1296.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 680.0, + 575.0, + 680.0, + 575.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 680.0, + 1403.0, + 680.0, + 1403.0, + 713.0, + 604.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 701.0, + 554.0, + 701.0, + 554.0, + 747.0, + 291.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 701.0, + 740.0, + 701.0, + 740.0, + 747.0, + 620.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 701.0, + 1023.0, + 701.0, + 1023.0, + 747.0, + 943.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 701.0, + 1408.0, + 701.0, + 1408.0, + 747.0, + 1118.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 740.0, + 1240.0, + 740.0, + 1240.0, + 775.0, + 294.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 785.0, + 366.0, + 785.0, + 366.0, + 822.0, + 293.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 785.0, + 556.0, + 785.0, + 556.0, + 822.0, + 445.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 785.0, + 721.0, + 785.0, + 721.0, + 822.0, + 692.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 785.0, + 866.0, + 785.0, + 866.0, + 822.0, + 806.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 785.0, + 1302.0, + 785.0, + 1302.0, + 822.0, + 1013.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 785.0, + 1404.0, + 785.0, + 1404.0, + 822.0, + 1326.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 815.0, + 297.0, + 815.0, + 297.0, + 854.0, + 292.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 415.0, + 815.0, + 866.0, + 815.0, + 866.0, + 854.0, + 415.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 815.0, + 1125.0, + 815.0, + 1125.0, + 854.0, + 1016.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 815.0, + 1380.0, + 815.0, + 1380.0, + 854.0, + 1291.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 815.0, + 1406.0, + 815.0, + 1406.0, + 854.0, + 1402.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 848.0, + 526.0, + 848.0, + 526.0, + 884.0, + 293.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 848.0, + 1276.0, + 848.0, + 1276.0, + 884.0, + 624.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 848.0, + 1405.0, + 848.0, + 1405.0, + 884.0, + 1355.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 877.0, + 359.0, + 877.0, + 359.0, + 913.0, + 292.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1028.0, + 808.0, + 1028.0, + 808.0, + 1065.0, + 293.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1028.0, + 1405.0, + 1028.0, + 1405.0, + 1065.0, + 829.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 1403.0, + 1061.0, + 1403.0, + 1094.0, + 294.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1089.0, + 394.0, + 1089.0, + 394.0, + 1129.0, + 294.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1089.0, + 680.0, + 1089.0, + 680.0, + 1129.0, + 602.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 1089.0, + 1060.0, + 1089.0, + 1060.0, + 1129.0, + 830.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 1089.0, + 1410.0, + 1089.0, + 1410.0, + 1129.0, + 1326.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 537.0, + 1122.0, + 537.0, + 1159.0, + 294.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1122.0, + 1405.0, + 1122.0, + 1405.0, + 1152.0, + 1374.0, + 1152.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1744.0, + 1000.0, + 1744.0, + 1000.0, + 1786.0, + 294.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 1744.0, + 1405.0, + 1744.0, + 1405.0, + 1786.0, + 1210.0, + 1786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1781.0, + 509.0, + 1781.0, + 509.0, + 1819.0, + 294.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1781.0, + 587.0, + 1781.0, + 587.0, + 1819.0, + 535.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1781.0, + 1033.0, + 1781.0, + 1033.0, + 1819.0, + 864.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1781.0, + 1111.0, + 1781.0, + 1111.0, + 1819.0, + 1102.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1781.0, + 1405.0, + 1781.0, + 1405.0, + 1819.0, + 1355.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1809.0, + 360.0, + 1809.0, + 360.0, + 1848.0, + 292.0, + 1848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 393.0, + 858.0, + 393.0, + 858.0, + 437.0, + 293.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 393.0, + 1042.0, + 393.0, + 1042.0, + 437.0, + 885.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 393.0, + 1403.0, + 393.0, + 1403.0, + 437.0, + 1130.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 429.0, + 404.0, + 429.0, + 404.0, + 463.0, + 294.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1949.0, + 567.0, + 1949.0, + 567.0, + 1988.0, + 296.0, + 1988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 1949.0, + 643.0, + 1949.0, + 643.0, + 1988.0, + 633.0, + 1988.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 712, + 1405, + 712, + 1405, + 798, + 297, + 798 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 295, + 223, + 1406, + 223, + 1406, + 353, + 295, + 353 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 521, + 1852, + 1178, + 1852, + 1178, + 2031, + 521, + 2031 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 478, + 1623, + 1219, + 1623, + 1219, + 1778, + 478, + 1778 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 579, + 1118, + 1116, + 1118, + 1116, + 1494, + 579, + 1494 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 686, + 613, + 1013, + 613, + 1013, + 690, + 686, + 690 + ], + "score": 0.959 + }, + { + "category_id": 8, + "poly": [ + 556, + 969, + 1140, + 969, + 1140, + 1053, + 556, + 1053 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 518, + 820, + 1178, + 820, + 1178, + 902, + 518, + 902 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 526, + 455, + 1168, + 455, + 1168, + 532, + 526, + 532 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 292, + 363, + 1401, + 363, + 1401, + 436, + 292, + 436 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 297, + 1519, + 1403, + 1519, + 1403, + 1603, + 297, + 1603 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 296, + 1074, + 394, + 1074, + 394, + 1105, + 296, + 1105 + ], + "score": 0.931 + }, + { + "category_id": 1, + "poly": [ + 299, + 555, + 719, + 555, + 719, + 590, + 299, + 590 + ], + "score": 0.93 + }, + { + "category_id": 1, + "poly": [ + 296, + 1794, + 1231, + 1794, + 1231, + 1834, + 296, + 1834 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 817, + 73, + 817, + 106, + 297, + 106 + ], + "score": 0.924 + }, + { + "category_id": 1, + "poly": [ + 296, + 922, + 366, + 922, + 366, + 954, + 296, + 954 + ], + "score": 0.923 + }, + { + "category_id": 2, + "poly": [ + 836, + 2087, + 866, + 2087, + 866, + 2113, + 836, + 2113 + ], + "score": 0.865 + }, + { + "category_id": 9, + "poly": [ + 1364, + 1984, + 1402, + 1984, + 1402, + 2015, + 1364, + 2015 + ], + "score": 0.856 + }, + { + "category_id": 14, + "poly": [ + 577, + 1123, + 1119, + 1123, + 1119, + 1496, + 577, + 1496 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\right| = \\left| \\left| \\displaystyle \\sum _ { i , j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } E ^ { i i } \\right| \\right| } \\\\ { = \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq \\displaystyle \\operatorname* { m a x } _ { i \\in [ N ] } \\left( \\displaystyle \\sum _ { j = 1 } ^ { N } \\frac { p _ { i j } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\right) } \\\\ { \\leq ( \\delta + 1 ) ^ { - 1 } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 764, + 712, + 1010, + 712, + 1010, + 757, + 764, + 757 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { C - \\bar { \\Delta } = \\sum _ { i , j = 1 } ^ { N } Y _ { i j } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 519, + 1850, + 1181, + 1850, + 1181, + 2035, + 519, + 2035 + ], + "score": 0.94, + "latex": "\\begin{array} { l } { \\displaystyle \\operatorname* { P r } ( | | C - \\bar { \\Delta } | | > a ) \\leq 2 N \\exp \\left( - \\frac { 3 \\log ( 4 N / \\varepsilon ) } { 2 ( 1 + a / 3 ) } \\right) } \\\\ { \\leq 2 N \\exp \\left( - \\log ( 4 N / \\varepsilon ) \\right) \\quad \\displaystyle ( \\because a < 1 ) } \\\\ { = \\displaystyle \\frac { \\varepsilon } { 2 } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 684, + 610, + 1015, + 610, + 1015, + 689, + 684, + 689 + ], + "score": 0.94, + "latex": "Y _ { i j } : = \\frac { A _ { i j } - p _ { i j } } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } E ^ { i j } ." + }, + { + "category_id": 14, + "poly": [ + 476, + 1619, + 1221, + 1619, + 1221, + 1781, + 476, + 1781 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\operatorname* { P r } ( \\| C - \\bar { \\Delta } \\| > a ) \\leq 2 N \\exp \\left( - \\displaystyle \\frac { a ^ { 2 } } { 2 ( \\delta + 1 ) ^ { - 1 } + 2 ( \\delta + 1 ) ^ { - 1 } a / 3 } \\right) } \\\\ & { \\phantom { \\operatorname* { P r } } \\leq 2 N \\exp \\left( - \\displaystyle \\frac { 3 \\log \\left( 4 N / \\varepsilon \\right) } { 2 ( 1 + a / 3 ) } \\right) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 474, + 366, + 571, + 366, + 571, + 403, + 474, + 403 + ], + "score": 0.93, + "latex": "\\| C - { \\bar { \\Delta } } \\|" + }, + { + "category_id": 13, + "poly": [ + 720, + 223, + 1205, + 223, + 1205, + 280, + 720, + 280 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\operatorname* { m a x } _ { n \\in [ N ] } \\left| \\lambda _ { n } ( \\tilde { \\Delta } ) - \\lambda _ { n } ( \\bar { \\Delta } ) \\right| \\leq \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 778, + 1798, + 990, + 1798, + 990, + 1832, + 778, + 1832 + ], + "score": 0.93, + "latex": "\\delta + 1 > k ( \\varepsilon ) \\log n" + }, + { + "category_id": 13, + "poly": [ + 700, + 759, + 868, + 759, + 868, + 795, + 700, + 795 + ], + "score": 0.93, + "latex": "\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\|" + }, + { + "category_id": 13, + "poly": [ + 858, + 363, + 1190, + 363, + 1190, + 403, + 858, + 403 + ], + "score": 0.93, + "latex": "C - \\bar { \\Delta } = - \\bar { D } ^ { - \\frac { 1 } { 2 } } ( A { - } P ) \\bar { D } ^ { - \\frac { 1 } { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 921, + 755, + 1111, + 755, + 1111, + 799, + 921, + 799 + ], + "score": 0.92, + "latex": "\\| \\Sigma _ { i , j = 1 } ^ { N } \\mathbb { E } [ Y _ { i j } ^ { 2 } ] \\|" + }, + { + "category_id": 14, + "poly": [ + 518, + 819, + 1180, + 819, + 1180, + 903, + 518, + 903 + ], + "score": 0.92, + "latex": "\\| Y _ { i j } - \\mathbb { E } [ Y _ { i j } ] \\| = \\| Y _ { i j } \\| \\leq \\frac { \\| E ^ { i j } \\| } { \\sqrt { t _ { i } + 1 } \\sqrt { t _ { j } + 1 } } \\leq ( \\delta + 1 ) ^ { - 1 } ." + }, + { + "category_id": 14, + "poly": [ + 557, + 969, + 1138, + 969, + 1138, + 1050, + 557, + 1050 + ], + "score": 0.92, + "latex": "\\mathbb { E } [ Y _ { i j } ^ { 2 } ] = \\frac { p _ { i j } - p _ { i j } ^ { 2 } } { ( t _ { i } + 1 ) ( t _ { j } + 1 ) } \\left\\{ { E ^ { i i } + E ^ { j j } } \\begin{array} { l l } { ( \\mathrm { i f ~ } i \\ne j ) , } \\\\ { E ^ { i i } } & { ( \\mathrm { i f ~ } i = j ) , } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 521, + 1798, + 572, + 1798, + 572, + 1832, + 521, + 1832 + ], + "score": 0.92, + "latex": "k ( \\varepsilon )" + }, + { + "category_id": 13, + "poly": [ + 503, + 276, + 617, + 276, + 617, + 315, + 503, + 315 + ], + "score": 0.91, + "latex": "\\| \\tilde { \\Delta } - \\bar { \\Delta } \\|" + }, + { + "category_id": 13, + "poly": [ + 298, + 313, + 691, + 313, + 691, + 352, + 298, + 352 + ], + "score": 0.91, + "latex": "\\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\|" + }, + { + "category_id": 13, + "poly": [ + 689, + 278, + 946, + 278, + 946, + 313, + 689, + 313 + ], + "score": 0.9, + "latex": "C : = I _ { N } - \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { A } \\bar { D }" + }, + { + "category_id": 13, + "poly": [ + 642, + 557, + 681, + 557, + 681, + 591, + 642, + 591 + ], + "score": 0.9, + "latex": "Y _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 414, + 1519, + 617, + 1519, + 617, + 1574, + 414, + 1574 + ], + "score": 0.89, + "latex": "\\begin{array} { r } { a \\gets \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { \\delta + 1 } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 516, + 760, + 554, + 760, + 554, + 795, + 516, + 795 + ], + "score": 0.89, + "latex": "Y _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 681, + 1800, + 750, + 1800, + 750, + 1827, + 681, + 1827 + ], + "score": 0.89, + "latex": "a < 1" + }, + { + "category_id": 13, + "poly": [ + 369, + 719, + 407, + 719, + 407, + 753, + 369, + 753 + ], + "score": 0.89, + "latex": "Y _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 1081, + 462, + 1150, + 462, + 1150, + 493, + 1081, + 493 + ], + "score": 0.88, + "latex": "j = k" + }, + { + "category_id": 13, + "poly": [ + 829, + 1530, + 1012, + 1530, + 1012, + 1566, + 829, + 1566 + ], + "score": 0.87, + "latex": "v ^ { 2 } ( \\delta + 1 ) ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1244, + 364, + 1401, + 364, + 1401, + 399, + 1244, + 399 + ], + "score": 0.86, + "latex": "E ^ { i j } \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 971, + 462, + 1031, + 462, + 1031, + 490, + 971, + 490 + ], + "score": 0.84, + "latex": "i = l" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1800, + 1121, + 1800, + 1121, + 1826, + 1105, + 1826 + ], + "score": 0.81, + "latex": "\\delta" + }, + { + "category_id": 14, + "poly": [ + 528, + 456, + 1165, + 456, + 1165, + 534, + 528, + 534 + ], + "score": 0.73, + "latex": "( E ^ { i j } ) _ { k l } = { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } ( i = k { \\mathrm { ~ a n d ~ } } i = l ) { \\mathrm { ~ o r ~ } } ( i = l { \\mathrm { ~ a n d ~ } } j = k ) , } \\\\ { 0 } & { { \\mathrm { o t h e r w i s e . } } } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 861, + 462, + 921, + 462, + 921, + 489, + 861, + 489 + ], + "score": 0.69, + "latex": "i = l" + }, + { + "category_id": 13, + "poly": [ + 632, + 1525, + 816, + 1525, + 816, + 1567, + 632, + 1567 + ], + "score": 0.52, + "latex": "M \\gets ( \\delta + 1 ) ^ { - 1 }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 818.0, + 72.0, + 818.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2125.0, + 832.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 695.0, + 368.0, + 695.0, + 368.0, + 775.0, + 281.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 695.0, + 763.0, + 695.0, + 763.0, + 775.0, + 408.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 695.0, + 1420.0, + 695.0, + 1420.0, + 775.0, + 1011.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 279.0, + 727.0, + 515.0, + 727.0, + 515.0, + 818.0, + 279.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 727.0, + 699.0, + 727.0, + 699.0, + 818.0, + 555.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 727.0, + 920.0, + 727.0, + 920.0, + 818.0, + 869.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 727.0, + 1303.0, + 727.0, + 1303.0, + 818.0, + 1112.0, + 818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 223.0, + 719.0, + 223.0, + 719.0, + 276.0, + 290.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 223.0, + 1411.0, + 223.0, + 1411.0, + 276.0, + 1206.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 272.0, + 502.0, + 272.0, + 502.0, + 319.0, + 292.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 272.0, + 688.0, + 272.0, + 688.0, + 319.0, + 618.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 272.0, + 1407.0, + 272.0, + 1407.0, + 319.0, + 947.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 310.0, + 297.0, + 310.0, + 297.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 310.0, + 1152.0, + 310.0, + 1152.0, + 356.0, + 692.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 363.0, + 473.0, + 363.0, + 473.0, + 402.0, + 291.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 363.0, + 857.0, + 363.0, + 857.0, + 402.0, + 572.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 363.0, + 1243.0, + 363.0, + 1243.0, + 402.0, + 1191.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 395.0, + 553.0, + 395.0, + 553.0, + 437.0, + 293.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1531.0, + 413.0, + 1531.0, + 413.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1517.0, + 631.0, + 1517.0, + 631.0, + 1574.0, + 618.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1517.0, + 828.0, + 1517.0, + 828.0, + 1574.0, + 817.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1517.0, + 1405.0, + 1517.0, + 1405.0, + 1574.0, + 1013.0, + 1574.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1565.0, + 620.0, + 1565.0, + 620.0, + 1603.0, + 294.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1068.0, + 398.0, + 1068.0, + 398.0, + 1108.0, + 293.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 549.0, + 641.0, + 549.0, + 641.0, + 595.0, + 295.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 549.0, + 718.0, + 549.0, + 718.0, + 595.0, + 682.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1794.0, + 520.0, + 1794.0, + 520.0, + 1835.0, + 293.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1794.0, + 680.0, + 1794.0, + 680.0, + 1835.0, + 573.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 1794.0, + 777.0, + 1794.0, + 777.0, + 1835.0, + 751.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 991.0, + 1794.0, + 1104.0, + 1794.0, + 1104.0, + 1835.0, + 991.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1794.0, + 1230.0, + 1794.0, + 1230.0, + 1835.0, + 1122.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 919.0, + 369.0, + 919.0, + 369.0, + 958.0, + 295.0, + 958.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 295, + 1479, + 1406, + 1479, + 1406, + 1690, + 295, + 1690 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 300, + 928, + 1402, + 928, + 1402, + 1025, + 300, + 1025 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 468, + 572, + 1235, + 572, + 1235, + 777, + 468, + 777 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 559, + 303, + 1134, + 303, + 1134, + 520, + 559, + 520 + ], + "score": 0.968 + }, + { + "category_id": 8, + "poly": [ + 650, + 1205, + 1047, + 1205, + 1047, + 1373, + 650, + 1373 + ], + "score": 0.967 + }, + { + "category_id": 8, + "poly": [ + 404, + 1029, + 1296, + 1029, + 1296, + 1160, + 404, + 1160 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 588, + 829, + 1109, + 829, + 1109, + 919, + 588, + 919 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 551, + 1788, + 1146, + 1788, + 1146, + 1876, + 551, + 1876 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 294, + 226, + 1403, + 226, + 1403, + 294, + 294, + 294 + ], + "score": 0.943 + }, + { + "category_id": 1, + "poly": [ + 293, + 1697, + 1403, + 1697, + 1403, + 1773, + 293, + 1773 + ], + "score": 0.936 + }, + { + "category_id": 1, + "poly": [ + 297, + 1169, + 593, + 1169, + 593, + 1201, + 297, + 1201 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 299, + 1416, + 818, + 1416, + 818, + 1450, + 299, + 1450 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 787, + 705, + 787, + 705, + 819, + 297, + 819 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 296, + 525, + 843, + 525, + 843, + 561, + 296, + 561 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 817, + 73, + 817, + 106, + 298, + 106 + ], + "score": 0.921 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 866, + 2087, + 866, + 2113, + 834, + 2113 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1127, + 1401, + 1127, + 1401, + 1157, + 1365, + 1157 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 1374, + 1418, + 1403, + 1418, + 1403, + 1447, + 1374, + 1447 + ], + "score": 0.822 + }, + { + "category_id": 1, + "poly": [ + 295, + 1884, + 1406, + 1884, + 1406, + 2037, + 295, + 2037 + ], + "score": 0.59 + }, + { + "category_id": 13, + "poly": [ + 925, + 959, + 1105, + 959, + 1105, + 998, + 925, + 998 + ], + "score": 0.94, + "latex": "\\| I _ { N } - \\tilde { \\Delta } \\| \\leq \\bar { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1238, + 1584, + 1334, + 1584, + 1334, + 1629, + 1238, + 1629 + ], + "score": 0.94, + "latex": "\\frac { N p } { N p - p + 1 }" + }, + { + "category_id": 14, + "poly": [ + 589, + 827, + 1111, + 827, + 1111, + 921, + 589, + 921 + ], + "score": 0.94, + "latex": "\\| \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| = \\operatorname* { m a x } _ { i \\in [ N ] } \\left| \\sqrt { \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right| \\leq a" + }, + { + "category_id": 14, + "poly": [ + 558, + 300, + 1138, + 300, + 1138, + 523, + 558, + 523 + ], + "score": 0.94, + "latex": "\\begin{array} { r l r } { { \\operatorname* { P r } ( | d _ { i } - t _ { i } | > a ( t _ { i } + 1 ) ) \\le 2 \\exp ( - \\frac { a ^ { 2 } ( t _ { i } + 1 ) } { 3 } ) } } \\\\ & { } & \\\\ & { } & { \\le 2 \\exp ( - \\frac { a ^ { 2 } ( \\delta + 1 ) } { 3 } ) } \\\\ & { } & { = \\frac { \\varepsilon } { 2 N } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 649, + 1203, + 1049, + 1203, + 1049, + 1373, + 649, + 1373 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { \\| \\tilde { \\Delta } - \\bar { \\Delta } \\| \\leq \\| \\tilde { \\Delta } - C \\| + \\| C - \\bar { \\Delta } \\| } \\\\ & { \\qquad \\leq a + a ( a + 1 ) + a } \\\\ & { \\qquad \\leq a ^ { 2 } + 3 a } \\\\ & { \\qquad \\leq 4 a \\quad ( \\because a < 1 ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 403, + 1024, + 1297, + 1024, + 1297, + 1163, + 403, + 1163 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\| \\tilde { \\Delta } - C \\| = \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } ) ( I _ { N } - \\tilde { \\Delta } ) \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } + ( I _ { N } - \\tilde { \\Delta } ) ( I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } ) \\| } \\\\ & { \\qquad \\leq \\| ( \\bar { D } ^ { - \\frac { 1 } { 2 } } \\tilde { D } ^ { \\frac { 1 } { 2 } } - I _ { N } \\| \\| \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| + \\| I - \\tilde { D } ^ { \\frac { 1 } { 2 } } \\bar { D } ^ { - \\frac { 1 } { 2 } } \\| } \\\\ & { \\qquad \\leq a ( a + 1 ) + a . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 487, + 226, + 598, + 226, + 598, + 264, + 487, + 264 + ], + "score": 0.93, + "latex": "\\| \\tilde { \\Delta } - C \\|" + }, + { + "category_id": 13, + "poly": [ + 469, + 1546, + 781, + 1546, + 781, + 1588, + 469, + 1588 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\bar { \\Delta } = \\frac { p } { N p - p + 1 } ( N I _ { N } - J _ { N } ) } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 461, + 569, + 1238, + 569, + 1238, + 780, + 461, + 780 + ], + "score": 0.93, + "latex": "\\begin{array} { r l r } { \\left. \\sqrt { \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } } - 1 \\right. \\le \\left. \\displaystyle \\frac { d _ { i } + 1 } { t _ { i } + 1 } - 1 \\right. } & { \\left( \\cdot \\cdot | \\sqrt { x } - 1 | \\le | x - 1 | \\mathrm { \\ f o r \\ } x \\ge 0 \\right) } & \\\\ { = \\displaystyle \\left. \\displaystyle \\frac { d _ { i } - t _ { i } } { t _ { i } + 1 } \\right. } & \\\\ { \\le a . } & \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1043, + 1626, + 1156, + 1626, + 1156, + 1660, + 1043, + 1660 + ], + "score": 0.92, + "latex": "( N - 1 ) p" + }, + { + "category_id": 13, + "poly": [ + 1232, + 1961, + 1393, + 1961, + 1393, + 1998, + 1232, + 1998 + ], + "score": 0.92, + "latex": "s \\leq l ( N , \\varepsilon ) ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 751, + 232, + 827, + 232, + 827, + 260, + 751, + 260 + ], + "score": 0.92, + "latex": "a < 1" + }, + { + "category_id": 14, + "poly": [ + 550, + 1785, + 1147, + 1785, + 1147, + 1877, + 550, + 1877 + ], + "score": 0.92, + "latex": "\\operatorname* { m a x } _ { i = 2 , \\ldots , N } \\left| \\lambda _ { i } ( \\tilde { \\Delta } ) - \\frac { N p } { N p - p + 1 } \\right| \\leq 4 \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } ." + }, + { + "category_id": 13, + "poly": [ + 445, + 527, + 679, + 527, + 679, + 561, + 445, + 561 + ], + "score": 0.92, + "latex": "| d _ { i } - t _ { i } | \\leq a ( t _ { i } + 1 )" + }, + { + "category_id": 13, + "poly": [ + 567, + 929, + 657, + 929, + 657, + 963, + 567, + 963 + ], + "score": 0.92, + "latex": "1 - \\varepsilon / 2" + }, + { + "category_id": 13, + "poly": [ + 374, + 1516, + 529, + 1516, + 529, + 1547, + 374, + 1547 + ], + "score": 0.92, + "latex": "J _ { N } \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1548, + 407, + 1548, + 407, + 1581, + 297, + 1581 + ], + "score": 0.91, + "latex": "p + 1 ) I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 1916, + 1404, + 1916, + 1404, + 1949, + 1308, + 1949 + ], + "score": 0.91, + "latex": "k ( \\varepsilon ) : =" + }, + { + "category_id": 13, + "poly": [ + 1236, + 1700, + 1297, + 1700, + 1297, + 1734, + 1236, + 1734 + ], + "score": 0.91, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 1105, + 1918, + 1176, + 1918, + 1176, + 1944, + 1105, + 1944 + ], + "score": 0.91, + "latex": "\\varepsilon > 0" + }, + { + "category_id": 13, + "poly": [ + 340, + 1484, + 440, + 1484, + 440, + 1516, + 340, + 1516 + ], + "score": 0.91, + "latex": "N \\in { \\mathbb { N } } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 532, + 1956, + 959, + 1956, + 959, + 2007, + 532, + 2007 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { l ( N , p , \\varepsilon ) = { \\frac { 1 - p } { N p - p + 1 } } + 4 { \\sqrt { \\frac { 3 \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1206, + 1483, + 1400, + 1483, + 1400, + 1516, + 1206, + 1516 + ], + "score": 0.9, + "latex": "P = p ( J _ { N } - I _ { N } )" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1550, + 1105, + 1550, + 1105, + 1579, + 1067, + 1579 + ], + "score": 0.9, + "latex": "J _ { N }" + }, + { + "category_id": 13, + "poly": [ + 458, + 2003, + 519, + 2003, + 519, + 2037, + 458, + 2037 + ], + "score": 0.9, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1963, + 476, + 1963, + 476, + 1999, + 298, + 1999 + ], + "score": 0.9, + "latex": "3 ( 1 + \\log ( 4 / \\varepsilon ) )" + }, + { + "category_id": 13, + "poly": [ + 490, + 1485, + 558, + 1485, + 558, + 1515, + 490, + 1515 + ], + "score": 0.89, + "latex": "p > 0" + }, + { + "category_id": 13, + "poly": [ + 970, + 1516, + 1240, + 1516, + 1240, + 1549, + 970, + 1549 + ], + "score": 0.89, + "latex": "\\bar { A } = p J _ { N } + ( 1 - p ) I _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1516, + 1404, + 1516, + 1404, + 1550, + 1253, + 1550 + ], + "score": 0.89, + "latex": "\\bar { D } = ( N p -" + }, + { + "category_id": 13, + "poly": [ + 672, + 1887, + 733, + 1887, + 733, + 1919, + 672, + 1919 + ], + "score": 0.89, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 978, + 1485, + 1040, + 1485, + 1040, + 1516, + 978, + 1516 + ], + "score": 0.89, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 738, + 1917, + 825, + 1917, + 825, + 1949, + 738, + 1949 + ], + "score": 0.89, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 886, + 1920, + 1043, + 1920, + 1043, + 1955, + 886, + 1955 + ], + "score": 0.87, + "latex": "s : = \\mathrm { s u p } _ { l \\in \\mathbb { N } _ { + } }" + }, + { + "category_id": 13, + "poly": [ + 567, + 1419, + 631, + 1419, + 631, + 1447, + 567, + 1447 + ], + "score": 0.87, + "latex": "1 - \\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 572, + 1591, + 654, + 1591, + 654, + 1620, + 572, + 1620 + ], + "score": 0.87, + "latex": "N - 1 ," + }, + { + "category_id": 13, + "poly": [ + 367, + 1731, + 805, + 1731, + 805, + 1775, + 367, + 1775 + ], + "score": 0.87, + "latex": "\\begin{array} { r } { i f \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) : = 3 ( 1 + \\log ( 4 / \\varepsilon ) ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1217, + 2005, + 1279, + 2005, + 1279, + 2032, + 1217, + 2032 + ], + "score": 0.86, + "latex": "1 - \\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 1150, + 1738, + 1213, + 1738, + 1213, + 1766, + 1150, + 1766 + ], + "score": 0.86, + "latex": "1 - \\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 872, + 1586, + 899, + 1586, + 899, + 1617, + 872, + 1617 + ], + "score": 0.86, + "latex": "\\bar { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 590, + 1626, + 651, + 1626, + 651, + 1661, + 590, + 1661 + ], + "score": 0.86, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 436, + 1626, + 520, + 1626, + 520, + 1657, + 436, + 1657 + ], + "score": 0.83, + "latex": "N - 1 )" + }, + { + "category_id": 13, + "poly": [ + 799, + 1886, + 835, + 1886, + 835, + 1916, + 799, + 1916 + ], + "score": 0.82, + "latex": "W _ { l }" + }, + { + "category_id": 13, + "poly": [ + 989, + 1959, + 1179, + 1959, + 1179, + 2004, + 989, + 2004 + ], + "score": 0.82, + "latex": "\\begin{array} { r } { \\ell \\frac { N p - p + 1 } { \\log N } > k ( \\varepsilon ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1137, + 1550, + 1166, + 1550, + 1166, + 1575, + 1137, + 1575 + ], + "score": 0.81, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 473, + 1695, + 499, + 1695, + 499, + 1727, + 473, + 1727 + ], + "score": 0.81, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1918, + 690, + 1918, + 690, + 1947, + 655, + 1947 + ], + "score": 0.81, + "latex": "W _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1341, + 1890, + 1365, + 1890, + 1365, + 1916, + 1341, + 1916 + ], + "score": 0.79, + "latex": "s _ { l }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1735, + 365, + 1735, + 365, + 1769, + 297, + 1769 + ], + "score": 0.77, + "latex": "\\varepsilon > 0 ," + }, + { + "category_id": 13, + "poly": [ + 412, + 964, + 468, + 964, + 468, + 998, + 412, + 998 + ], + "score": 0.66, + "latex": "[ 0 , 2 ]" + }, + { + "category_id": 13, + "poly": [ + 665, + 1628, + 682, + 1628, + 682, + 1654, + 665, + 1654 + ], + "score": 0.63, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1078, + 1888, + 1089, + 1888, + 1089, + 1912, + 1078, + 1912 + ], + "score": 0.55, + "latex": "l" + }, + { + "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": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2124.0, + 828.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1379.0, + 1423.0, + 1402.0, + 1423.0, + 1402.0, + 1446.0, + 1379.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1481.0, + 339.0, + 1481.0, + 339.0, + 1519.0, + 293.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1481.0, + 489.0, + 1481.0, + 489.0, + 1519.0, + 441.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1481.0, + 977.0, + 1481.0, + 977.0, + 1519.0, + 559.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1481.0, + 1205.0, + 1481.0, + 1205.0, + 1519.0, + 1041.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1507.0, + 373.0, + 1507.0, + 373.0, + 1554.0, + 290.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1507.0, + 969.0, + 1507.0, + 969.0, + 1554.0, + 530.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1241.0, + 1507.0, + 1252.0, + 1507.0, + 1252.0, + 1554.0, + 1241.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1546.0, + 296.0, + 1546.0, + 296.0, + 1581.0, + 290.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1546.0, + 468.0, + 1546.0, + 468.0, + 1581.0, + 408.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 1544.0, + 1066.0, + 1544.0, + 1066.0, + 1584.0, + 782.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 1544.0, + 1136.0, + 1544.0, + 1136.0, + 1584.0, + 1106.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1544.0, + 1407.0, + 1544.0, + 1407.0, + 1584.0, + 1167.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1583.0, + 571.0, + 1583.0, + 571.0, + 1632.0, + 294.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1583.0, + 871.0, + 1583.0, + 871.0, + 1632.0, + 655.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1583.0, + 1237.0, + 1583.0, + 1237.0, + 1632.0, + 900.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1587.0, + 1407.0, + 1587.0, + 1407.0, + 1625.0, + 1335.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1623.0, + 435.0, + 1623.0, + 435.0, + 1662.0, + 293.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 1623.0, + 589.0, + 1623.0, + 589.0, + 1662.0, + 521.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1623.0, + 664.0, + 1623.0, + 664.0, + 1662.0, + 652.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1623.0, + 1042.0, + 1623.0, + 1042.0, + 1662.0, + 683.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 1623.0, + 1407.0, + 1623.0, + 1407.0, + 1662.0, + 1157.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1656.0, + 674.0, + 1656.0, + 674.0, + 1690.0, + 295.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 927.0, + 566.0, + 927.0, + 566.0, + 965.0, + 295.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 927.0, + 1403.0, + 927.0, + 1403.0, + 965.0, + 658.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 959.0, + 411.0, + 959.0, + 411.0, + 1004.0, + 293.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 959.0, + 924.0, + 959.0, + 924.0, + 1004.0, + 469.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 959.0, + 1406.0, + 959.0, + 1406.0, + 1004.0, + 1106.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 992.0, + 358.0, + 992.0, + 358.0, + 1030.0, + 293.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 225.0, + 486.0, + 225.0, + 486.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 599.0, + 225.0, + 750.0, + 225.0, + 750.0, + 268.0, + 599.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 268.0, + 828.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 260.0, + 773.0, + 260.0, + 773.0, + 297.0, + 296.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1692.0, + 472.0, + 1692.0, + 472.0, + 1739.0, + 292.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1692.0, + 1235.0, + 1692.0, + 1235.0, + 1739.0, + 500.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1692.0, + 1405.0, + 1692.0, + 1405.0, + 1739.0, + 1298.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1719.0, + 296.0, + 1719.0, + 296.0, + 1779.0, + 287.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 1719.0, + 1149.0, + 1719.0, + 1149.0, + 1779.0, + 806.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 1719.0, + 1328.0, + 1719.0, + 1328.0, + 1779.0, + 1214.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1167.0, + 593.0, + 1167.0, + 593.0, + 1204.0, + 295.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1413.0, + 566.0, + 1413.0, + 566.0, + 1454.0, + 294.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 632.0, + 1413.0, + 821.0, + 1413.0, + 821.0, + 1454.0, + 632.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 782.0, + 705.0, + 782.0, + 705.0, + 824.0, + 296.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 525.0, + 444.0, + 525.0, + 444.0, + 562.0, + 297.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 525.0, + 841.0, + 525.0, + 841.0, + 562.0, + 680.0, + 562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 671.0, + 1880.0, + 671.0, + 1922.0, + 294.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1880.0, + 798.0, + 1880.0, + 798.0, + 1922.0, + 734.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1880.0, + 1077.0, + 1880.0, + 1077.0, + 1922.0, + 836.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1880.0, + 1340.0, + 1880.0, + 1340.0, + 1922.0, + 1090.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1366.0, + 1880.0, + 1406.0, + 1880.0, + 1406.0, + 1922.0, + 1366.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1912.0, + 654.0, + 1912.0, + 654.0, + 1957.0, + 292.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1912.0, + 737.0, + 1912.0, + 737.0, + 1957.0, + 691.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1912.0, + 885.0, + 1912.0, + 885.0, + 1957.0, + 826.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 1912.0, + 1104.0, + 1912.0, + 1104.0, + 1957.0, + 1044.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1912.0, + 1307.0, + 1912.0, + 1307.0, + 1957.0, + 1177.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 1946.0, + 531.0, + 1946.0, + 531.0, + 2011.0, + 477.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1946.0, + 988.0, + 1946.0, + 988.0, + 2011.0, + 960.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 1946.0, + 1231.0, + 1946.0, + 1231.0, + 2011.0, + 1180.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1946.0, + 1409.0, + 1946.0, + 1409.0, + 2011.0, + 1394.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1997.0, + 457.0, + 1997.0, + 457.0, + 2041.0, + 293.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1997.0, + 1216.0, + 1997.0, + 1216.0, + 2041.0, + 520.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1280.0, + 1997.0, + 1292.0, + 1997.0, + 1292.0, + 2041.0, + 1280.0, + 2041.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1493, + 1405, + 1493, + 1405, + 1622, + 298, + 1622 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1941, + 1403, + 1941, + 1403, + 2036, + 297, + 2036 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1365, + 1405, + 1365, + 1405, + 1461, + 297, + 1461 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 1261, + 1406, + 1261, + 1406, + 1358, + 297, + 1358 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 634, + 1406, + 634, + 1406, + 724, + 297, + 724 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 297, + 1710, + 1405, + 1710, + 1405, + 1806, + 297, + 1806 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 296, + 885, + 1405, + 885, + 1405, + 983, + 296, + 983 + ], + "score": 0.969 + }, + { + "category_id": 8, + "poly": [ + 680, + 276, + 1022, + 276, + 1022, + 348, + 680, + 348 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 575, + 1857, + 1121, + 1857, + 1121, + 1935, + 575, + 1935 + ], + "score": 0.956 + }, + { + "category_id": 8, + "poly": [ + 611, + 537, + 1089, + 537, + 1089, + 622, + 611, + 622 + ], + "score": 0.951 + }, + { + "category_id": 1, + "poly": [ + 302, + 1107, + 1399, + 1107, + 1399, + 1173, + 302, + 1173 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 585, + 409, + 1111, + 409, + 1111, + 486, + 585, + 486 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 299, + 1817, + 1068, + 1817, + 1068, + 1852, + 299, + 1852 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 296, + 224, + 985, + 224, + 985, + 268, + 296, + 268 + ], + "score": 0.934 + }, + { + "category_id": 1, + "poly": [ + 297, + 490, + 652, + 490, + 652, + 524, + 297, + 524 + ], + "score": 0.932 + }, + { + "category_id": 1, + "poly": [ + 297, + 356, + 1357, + 356, + 1357, + 399, + 297, + 399 + ], + "score": 0.93 + }, + { + "category_id": 8, + "poly": [ + 556, + 1055, + 1141, + 1055, + 1141, + 1097, + 556, + 1097 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 298, + 1013, + 1014, + 1013, + 1014, + 1049, + 298, + 1049 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 299, + 1653, + 703, + 1653, + 703, + 1685, + 299, + 1685 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 297, + 73, + 817, + 73, + 817, + 106, + 297, + 106 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 299, + 763, + 823, + 763, + 823, + 801, + 299, + 801 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 297, + 1206, + 868, + 1206, + 868, + 1240, + 297, + 1240 + ], + "score": 0.894 + }, + { + "category_id": 1, + "poly": [ + 296, + 830, + 998, + 830, + 998, + 865, + 296, + 865 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 834, + 2087, + 863, + 2087, + 863, + 2113, + 834, + 2113 + ], + "score": 0.795 + }, + { + "category_id": 14, + "poly": [ + 609, + 531, + 1091, + 531, + 1091, + 624, + 609, + 624 + ], + "score": 0.95, + "latex": "\\frac { 1 - p } { N p - p + 1 } \\leq ( 7 - 4 \\sqrt { 3 } ) \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } ." + }, + { + "category_id": 13, + "poly": [ + 1014, + 634, + 1229, + 634, + 1229, + 691, + 1014, + 691 + ], + "score": 0.94, + "latex": "s ~ \\le ~ \\frac { 1 } { 7 } \\sqrt { \\frac { N p - p + 1 } { \\log ( 4 N / \\varepsilon ) } }" + }, + { + "category_id": 13, + "poly": [ + 531, + 633, + 834, + 633, + 834, + 689, + 531, + 689 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { l ( N , p , \\varepsilon ) \\le 7 \\sqrt { \\frac { \\log ( 4 N / \\varepsilon ) } { N p - p + 1 } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 677, + 275, + 1022, + 275, + 1022, + 349, + 677, + 349 + ], + "score": 0.94, + "latex": "\\frac { N p - p + 1 } { \\log N } > \\frac { N p } { \\log N } > k ( \\varepsilon )" + }, + { + "category_id": 13, + "poly": [ + 829, + 1296, + 1071, + 1296, + 1071, + 1329, + 829, + 1329 + ], + "score": 0.93, + "latex": "f _ { l } ( X ) : = \\sigma ( P X W _ { l } )" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1109, + 1204, + 1109, + 1204, + 1142, + 1066, + 1142 + ], + "score": 0.93, + "latex": "\\langle u , P v \\rangle = 0" + }, + { + "category_id": 14, + "poly": [ + 574, + 1857, + 1119, + 1857, + 1119, + 1934, + 574, + 1934 + ], + "score": 0.93, + "latex": "P [ { \\mu \\atop 0 } \\lambda ] , e [ 1 \\atop 0 ] , U \\{ [ { x \\atop y } ] \\mid y = 0 \\} ." + }, + { + "category_id": 13, + "poly": [ + 982, + 357, + 1127, + 357, + 1127, + 402, + 982, + 402 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 499, + 1554, + 640, + 1554, + 640, + 1588, + 499, + 1588 + ], + "score": 0.93, + "latex": "\\sigma ( x ) ^ { 2 } \\leq x ^ { 2 }" + }, + { + "category_id": 14, + "poly": [ + 584, + 407, + 1116, + 407, + 1116, + 486, + 584, + 486 + ], + "score": 0.93, + "latex": "\\frac { ( 1 - p ) ^ { 2 } } { N p - p + 1 } \\leq \\frac { 1 } { N p } \\leq ( 7 - 4 \\sqrt { 3 } ) ^ { 2 } \\log \\left( \\frac { 4 N } { \\varepsilon } \\right)" + }, + { + "category_id": 13, + "poly": [ + 604, + 226, + 748, + 226, + 748, + 271, + 604, + 271 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\frac { \\log N } { N p } = o ( 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 472, + 1015, + 564, + 1015, + 564, + 1045, + 472, + 1045 + ], + "score": 0.92, + "latex": "u \\in U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 755, + 1496, + 820, + 1496, + 820, + 1529, + 755, + 1529 + ], + "score": 0.92, + "latex": "P | _ { U ^ { \\perp } }" + }, + { + "category_id": 13, + "poly": [ + 882, + 1820, + 981, + 1820, + 981, + 1852, + 882, + 1852 + ], + "score": 0.91, + "latex": "\\mu , \\lambda > 0" + }, + { + "category_id": 13, + "poly": [ + 664, + 362, + 777, + 362, + 777, + 394, + 664, + 394 + ], + "score": 0.91, + "latex": "N p \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 342, + 1263, + 479, + 1263, + 479, + 1294, + 342, + 1294 + ], + "score": 0.91, + "latex": "P \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 298, + 686, + 485, + 686, + 485, + 723, + 298, + 723 + ], + "score": 0.91, + "latex": "s \\leq l ( N , p , \\varepsilon ) ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 417, + 1139, + 531, + 1139, + 531, + 1169, + 417, + 1169 + ], + "score": 0.91, + "latex": "P u \\in U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 624, + 1586, + 1040, + 1586, + 1040, + 1621, + 624, + 1621 + ], + "score": 0.91, + "latex": "\\Vert f _ { l } ( X ) \\Vert _ { \\mathrm { F } } \\leq \\Vert P X W _ { l } \\Vert _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\Vert X \\Vert _ { \\mathrm { F } }" + }, + { + "category_id": 13, + "poly": [ + 515, + 886, + 650, + 886, + 650, + 918, + 515, + 918 + ], + "score": 0.91, + "latex": "P \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 1125, + 1970, + 1364, + 1970, + 1364, + 2004, + 1125, + 2004 + ], + "score": 0.91, + "latex": "f : \\mathbb { R } ^ { \\mathbf { \\hat { N } } \\times C } \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 575, + 1820, + 665, + 1820, + 665, + 1847, + 575, + 1847 + ], + "score": 0.91, + "latex": "M \\gets 1" + }, + { + "category_id": 13, + "poly": [ + 588, + 1712, + 673, + 1712, + 673, + 1742, + 588, + 1742 + ], + "score": 0.91, + "latex": "s \\lambda \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 372, + 1773, + 463, + 1773, + 463, + 1803, + 372, + 1803 + ], + "score": 0.91, + "latex": "s _ { l } \\lambda > 1" + }, + { + "category_id": 13, + "poly": [ + 455, + 919, + 562, + 919, + 562, + 949, + 455, + 949 + ], + "score": 0.91, + "latex": "U \\subset \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 298, + 2003, + 522, + 2003, + 522, + 2036, + 298, + 2036 + ], + "score": 0.91, + "latex": "f ( X ) : = \\sigma ( P X W )" + }, + { + "category_id": 13, + "poly": [ + 530, + 1293, + 785, + 1293, + 785, + 1327, + 530, + 1327 + ], + "score": 0.91, + "latex": "f _ { l } ^ { ^ { \\bullet } } : \\mathbb { R } ^ { N \\times C } \\mathbb { R } ^ { N \\times { \\dot { C } } }" + }, + { + "category_id": 13, + "poly": [ + 1300, + 1107, + 1393, + 1107, + 1393, + 1138, + 1300, + 1138 + ], + "score": 0.91, + "latex": "u \\in U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1296, + 388, + 1296, + 388, + 1329, + 297, + 1329 + ], + "score": 0.91, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 655, + 1973, + 745, + 1973, + 745, + 2001, + 655, + 2001 + ], + "score": 0.91, + "latex": "W \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 779, + 1110, + 873, + 1110, + 873, + 1138, + 779, + 1138 + ], + "score": 0.9, + "latex": "P v \\in U" + }, + { + "category_id": 13, + "poly": [ + 616, + 1017, + 688, + 1017, + 688, + 1045, + 616, + 1045 + ], + "score": 0.9, + "latex": "v \\in U" + }, + { + "category_id": 13, + "poly": [ + 298, + 1395, + 561, + 1395, + 561, + 1430, + 298, + 1430 + ], + "score": 0.9, + "latex": "\\| f _ { l } ( \\bar { \\boldsymbol { X } } ) \\| _ { \\mathrm { F } } \\leq s _ { l } \\lambda \\| \\bar { \\boldsymbol { X } } \\| _ { \\mathrm { F } }" + }, + { + "category_id": 13, + "poly": [ + 719, + 1773, + 764, + 1773, + 764, + 1804, + 719, + 1804 + ], + "score": 0.9, + "latex": "d _ { \\mathcal { M } }" + }, + { + "category_id": 13, + "poly": [ + 1250, + 1554, + 1394, + 1554, + 1394, + 1584, + 1250, + 1584 + ], + "score": 0.9, + "latex": "\\boldsymbol { X } ^ { \\prime } \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 659, + 1396, + 749, + 1396, + 749, + 1428, + 659, + 1428 + ], + "score": 0.9, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 811, + 362, + 910, + 362, + 910, + 390, + 811, + 390 + ], + "score": 0.9, + "latex": "N \\to \\infty" + }, + { + "category_id": 13, + "poly": [ + 299, + 1973, + 519, + 1973, + 519, + 2001, + 299, + 2001 + ], + "score": 0.9, + "latex": "\\mathcal { M } : = U \\otimes \\mathbb { R } = U" + }, + { + "category_id": 13, + "poly": [ + 964, + 1399, + 1152, + 1399, + 1152, + 1434, + 964, + 1434 + ], + "score": 0.9, + "latex": "s : = \\operatorname* { s u p } _ { l \\in \\mathbb { N } _ { + } } s _ { l }" + }, + { + "category_id": 13, + "poly": [ + 857, + 1525, + 1300, + 1525, + 1300, + 1558, + 857, + 1558 + ], + "score": 0.9, + "latex": "\\| P X W _ { l } \\| _ { \\mathrm { F } } \\leq \\lambda \\bar { \\| } X W _ { l } \\| _ { \\mathrm { F } } \\leq s _ { l } \\bar { \\lambda } \\| X \\| _ { \\mathrm { F } }" + }, + { + "category_id": 13, + "poly": [ + 1222, + 887, + 1392, + 887, + 1392, + 917, + 1222, + 917 + ], + "score": 0.9, + "latex": "P : \\mathbb { R } ^ { N } \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 748, + 1262, + 894, + 1262, + 894, + 1295, + 748, + 1295 + ], + "score": 0.89, + "latex": "W _ { l } \\in \\mathbb { R } ^ { C \\times C }" + }, + { + "category_id": 13, + "poly": [ + 754, + 1139, + 796, + 1139, + 796, + 1168, + 754, + 1168 + ], + "score": 0.89, + "latex": "U ^ { \\perp }" + }, + { + "category_id": 14, + "poly": [ + 557, + 1055, + 1141, + 1055, + 1141, + 1097, + 557, + 1097 + ], + "score": 0.89, + "latex": "\\langle P u , v \\rangle = ( P u ) ^ { \\top } v = u ^ { \\top } P ^ { \\top } v = u ^ { \\top } P v = \\langle u , P v \\rangle ." + }, + { + "category_id": 13, + "poly": [ + 736, + 1557, + 815, + 1557, + 815, + 1584, + 736, + 1584 + ], + "score": 0.89, + "latex": "x \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 865, + 1942, + 964, + 1942, + 964, + 1974, + 865, + 1974 + ], + "score": 0.89, + "latex": "( P , e , U )" + }, + { + "category_id": 13, + "poly": [ + 1036, + 921, + 1137, + 921, + 1137, + 950, + 1036, + 950 + ], + "score": 0.89, + "latex": "P u \\in U" + }, + { + "category_id": 13, + "poly": [ + 1324, + 1266, + 1361, + 1266, + 1361, + 1296, + 1324, + 1296 + ], + "score": 0.88, + "latex": "W _ { l }" + }, + { + "category_id": 13, + "poly": [ + 831, + 1973, + 947, + 1973, + 947, + 2001, + 831, + 2001 + ], + "score": 0.88, + "latex": "W ^ { \\setminus } > \\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1397, + 1288, + 1397, + 1288, + 1426, + 1198, + 1426 + ], + "score": 0.88, + "latex": "s \\lambda < 1" + }, + { + "category_id": 13, + "poly": [ + 931, + 1557, + 1153, + 1557, + 1153, + 1588, + 931, + 1588 + ], + "score": 0.88, + "latex": "\\| \\sigma ( X ) \\| _ { \\mathrm { F } } \\leq \\| X \\| _ { F }" + }, + { + "category_id": 13, + "poly": [ + 640, + 1431, + 721, + 1431, + 721, + 1457, + 640, + 1457 + ], + "score": 0.88, + "latex": "l \\infty" + }, + { + "category_id": 13, + "poly": [ + 1222, + 919, + 1265, + 919, + 1265, + 949, + 1222, + 949 + ], + "score": 0.87, + "latex": "U ^ { \\perp }" + }, + { + "category_id": 13, + "poly": [ + 887, + 921, + 966, + 921, + 966, + 951, + 887, + 951 + ], + "score": 0.87, + "latex": "u \\in U" + }, + { + "category_id": 13, + "poly": [ + 961, + 1713, + 985, + 1713, + 985, + 1743, + 961, + 1743 + ], + "score": 0.87, + "latex": "f _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1773, + 1148, + 1773, + 1148, + 1805, + 1124, + 1805 + ], + "score": 0.86, + "latex": "f _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1366, + 1396, + 1400, + 1396, + 1400, + 1426, + 1366, + 1426 + ], + "score": 0.85, + "latex": "X _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1309, + 1774, + 1336, + 1774, + 1336, + 1800, + 1309, + 1800 + ], + "score": 0.85, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 882, + 1018, + 906, + 1018, + 906, + 1044, + 882, + 1044 + ], + "score": 0.85, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 649, + 1111, + 673, + 1111, + 673, + 1137, + 649, + 1137 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 365, + 1111, + 390, + 1111, + 390, + 1137, + 365, + 1137 + ], + "score": 0.83, + "latex": "U" + }, + { + "category_id": 13, + "poly": [ + 436, + 1820, + 517, + 1820, + 517, + 1848, + 436, + 1848 + ], + "score": 0.82, + "latex": "C \\gets 1" + }, + { + "category_id": 13, + "poly": [ + 976, + 1367, + 1001, + 1367, + 1001, + 1393, + 976, + 1393 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1358, + 1713, + 1393, + 1713, + 1393, + 1740, + 1358, + 1740 + ], + "score": 0.82, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 339, + 1820, + 425, + 1820, + 425, + 1848, + 339, + 1848 + ], + "score": 0.82, + "latex": "N \\gets 2" + }, + { + "category_id": 13, + "poly": [ + 451, + 1497, + 472, + 1497, + 472, + 1523, + 451, + 1523 + ], + "score": 0.81, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 529, + 363, + 557, + 363, + 557, + 389, + 529, + 389 + ], + "score": 0.81, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 298, + 1527, + 323, + 1527, + 323, + 1553, + 298, + 1553 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 776, + 922, + 801, + 922, + 801, + 948, + 776, + 948 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 529, + 493, + 557, + 493, + 557, + 519, + 529, + 519 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 369, + 953, + 393, + 953, + 393, + 978, + 369, + 978 + ], + "score": 0.79, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 601, + 2008, + 622, + 2008, + 622, + 2030, + 601, + 2030 + ], + "score": 0.79, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 1154, + 1301, + 1174, + 1301, + 1174, + 1323, + 1154, + 1323 + ], + "score": 0.78, + "latex": "\\sigma" + }, + { + "category_id": 13, + "poly": [ + 588, + 1527, + 608, + 1527, + 608, + 1552, + 588, + 1552 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1367, + 1232, + 1367, + 1232, + 1394, + 1212, + 1394 + ], + "score": 0.77, + "latex": "\\lambda ," + }, + { + "category_id": 13, + "poly": [ + 861, + 237, + 877, + 237, + 877, + 258, + 861, + 258 + ], + "score": 0.75, + "latex": "\\varepsilon" + }, + { + "category_id": 13, + "poly": [ + 906, + 1270, + 931, + 1270, + 931, + 1296, + 906, + 1296 + ], + "score": 0.72, + "latex": "s _ { l }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1650.0, + 708.0, + 1650.0, + 708.0, + 1690.0, + 294.0, + 1690.0 + ], + "score": 1.0, + "text": "" + }, + { + "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": [ + 292.0, + 759.0, + 826.0, + 759.0, + 826.0, + 806.0, + 292.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1206.0, + 868.0, + 1206.0, + 868.0, + 1243.0, + 294.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1492.0, + 450.0, + 1492.0, + 450.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 473.0, + 1492.0, + 754.0, + 1492.0, + 754.0, + 1530.0, + 473.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 821.0, + 1492.0, + 1407.0, + 1492.0, + 1407.0, + 1530.0, + 821.0, + 1530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1522.0, + 297.0, + 1522.0, + 297.0, + 1561.0, + 292.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1522.0, + 587.0, + 1522.0, + 587.0, + 1561.0, + 324.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1522.0, + 856.0, + 1522.0, + 856.0, + 1561.0, + 609.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1301.0, + 1522.0, + 1406.0, + 1522.0, + 1406.0, + 1561.0, + 1301.0, + 1561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1550.0, + 498.0, + 1550.0, + 498.0, + 1592.0, + 288.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1550.0, + 735.0, + 1550.0, + 735.0, + 1592.0, + 641.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 1550.0, + 930.0, + 1550.0, + 930.0, + 1592.0, + 816.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1550.0, + 1249.0, + 1550.0, + 1249.0, + 1592.0, + 1154.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1550.0, + 1408.0, + 1550.0, + 1408.0, + 1592.0, + 1395.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1584.0, + 623.0, + 1584.0, + 623.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 1584.0, + 1053.0, + 1584.0, + 1053.0, + 1623.0, + 1041.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1591.0, + 1400.0, + 1591.0, + 1400.0, + 1610.0, + 1380.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1941.0, + 864.0, + 1941.0, + 864.0, + 1975.0, + 295.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 965.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1975.0, + 965.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 1957.0, + 298.0, + 1957.0, + 298.0, + 2014.0, + 287.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 520.0, + 1957.0, + 654.0, + 1957.0, + 654.0, + 2014.0, + 520.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1957.0, + 830.0, + 1957.0, + 830.0, + 2014.0, + 746.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1957.0, + 1124.0, + 1957.0, + 1124.0, + 2014.0, + 948.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1957.0, + 1413.0, + 1957.0, + 1413.0, + 2014.0, + 1365.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 297.0, + 2001.0, + 297.0, + 2037.0, + 293.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 2001.0, + 600.0, + 2001.0, + 600.0, + 2037.0, + 523.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 2001.0, + 1026.0, + 2001.0, + 1026.0, + 2037.0, + 623.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1363.0, + 975.0, + 1363.0, + 975.0, + 1401.0, + 295.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1363.0, + 1211.0, + 1363.0, + 1211.0, + 1401.0, + 1002.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1233.0, + 1363.0, + 1405.0, + 1363.0, + 1405.0, + 1401.0, + 1233.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1390.0, + 297.0, + 1390.0, + 297.0, + 1438.0, + 294.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1390.0, + 658.0, + 1390.0, + 658.0, + 1438.0, + 562.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1390.0, + 963.0, + 1390.0, + 963.0, + 1438.0, + 750.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1390.0, + 1197.0, + 1390.0, + 1197.0, + 1438.0, + 1153.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 1390.0, + 1365.0, + 1390.0, + 1365.0, + 1438.0, + 1289.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1390.0, + 1406.0, + 1390.0, + 1406.0, + 1438.0, + 1401.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1430.0, + 639.0, + 1430.0, + 639.0, + 1464.0, + 296.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1430.0, + 733.0, + 1430.0, + 733.0, + 1464.0, + 722.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1257.0, + 341.0, + 1257.0, + 341.0, + 1301.0, + 291.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 1257.0, + 747.0, + 1257.0, + 747.0, + 1301.0, + 480.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1257.0, + 905.0, + 1257.0, + 905.0, + 1301.0, + 895.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1257.0, + 1323.0, + 1257.0, + 1323.0, + 1301.0, + 932.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1257.0, + 1407.0, + 1257.0, + 1407.0, + 1301.0, + 1362.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1285.0, + 296.0, + 1285.0, + 296.0, + 1334.0, + 289.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1285.0, + 529.0, + 1285.0, + 529.0, + 1334.0, + 389.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1285.0, + 828.0, + 1285.0, + 828.0, + 1334.0, + 786.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1285.0, + 1153.0, + 1285.0, + 1153.0, + 1334.0, + 1072.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1285.0, + 1409.0, + 1285.0, + 1409.0, + 1334.0, + 1175.0, + 1334.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 478.0, + 1323.0, + 478.0, + 1360.0, + 294.0, + 1360.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 635.0, + 530.0, + 635.0, + 530.0, + 686.0, + 293.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 635.0, + 841.0, + 635.0, + 841.0, + 689.0, + 835.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 635.0, + 1013.0, + 635.0, + 1013.0, + 690.0, + 847.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 635.0, + 1406.0, + 635.0, + 1406.0, + 690.0, + 1230.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 685.0, + 297.0, + 685.0, + 297.0, + 724.0, + 290.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 486.0, + 685.0, + 497.0, + 685.0, + 497.0, + 724.0, + 486.0, + 724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1709.0, + 587.0, + 1709.0, + 587.0, + 1747.0, + 295.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1709.0, + 960.0, + 1709.0, + 960.0, + 1747.0, + 674.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1709.0, + 1357.0, + 1709.0, + 1357.0, + 1747.0, + 986.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1709.0, + 1403.0, + 1709.0, + 1403.0, + 1747.0, + 1394.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1743.0, + 1403.0, + 1743.0, + 1403.0, + 1774.0, + 296.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1773.0, + 371.0, + 1773.0, + 371.0, + 1807.0, + 296.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 464.0, + 1773.0, + 718.0, + 1773.0, + 718.0, + 1807.0, + 464.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1773.0, + 1123.0, + 1773.0, + 1123.0, + 1807.0, + 765.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1773.0, + 1308.0, + 1773.0, + 1308.0, + 1807.0, + 1149.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1337.0, + 1773.0, + 1343.0, + 1773.0, + 1343.0, + 1807.0, + 1337.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 880.0, + 514.0, + 880.0, + 514.0, + 925.0, + 290.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 880.0, + 1221.0, + 880.0, + 1221.0, + 925.0, + 651.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1393.0, + 880.0, + 1405.0, + 880.0, + 1405.0, + 925.0, + 1393.0, + 925.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 917.0, + 454.0, + 917.0, + 454.0, + 954.0, + 293.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 917.0, + 775.0, + 917.0, + 775.0, + 954.0, + 563.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 917.0, + 886.0, + 917.0, + 886.0, + 954.0, + 802.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 917.0, + 1035.0, + 917.0, + 1035.0, + 954.0, + 967.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 917.0, + 1221.0, + 917.0, + 1221.0, + 954.0, + 1138.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 917.0, + 1406.0, + 917.0, + 1406.0, + 954.0, + 1266.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 949.0, + 368.0, + 949.0, + 368.0, + 985.0, + 294.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 949.0, + 454.0, + 949.0, + 454.0, + 985.0, + 394.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1105.0, + 364.0, + 1105.0, + 364.0, + 1144.0, + 294.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1105.0, + 648.0, + 1105.0, + 648.0, + 1144.0, + 391.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1105.0, + 778.0, + 1105.0, + 778.0, + 1144.0, + 674.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1105.0, + 1065.0, + 1105.0, + 1065.0, + 1144.0, + 874.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1105.0, + 1299.0, + 1105.0, + 1299.0, + 1144.0, + 1205.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1105.0, + 1404.0, + 1105.0, + 1404.0, + 1144.0, + 1394.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1137.0, + 416.0, + 1137.0, + 416.0, + 1171.0, + 296.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1137.0, + 753.0, + 1137.0, + 753.0, + 1171.0, + 532.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 1137.0, + 808.0, + 1137.0, + 808.0, + 1171.0, + 797.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 1140.0, + 1407.0, + 1140.0, + 1407.0, + 1171.0, + 1374.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1814.0, + 338.0, + 1814.0, + 338.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 1814.0, + 435.0, + 1814.0, + 435.0, + 1856.0, + 426.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1814.0, + 574.0, + 1814.0, + 574.0, + 1856.0, + 518.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1814.0, + 881.0, + 1814.0, + 881.0, + 1856.0, + 666.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 982.0, + 1814.0, + 1071.0, + 1814.0, + 1071.0, + 1856.0, + 982.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 603.0, + 227.0, + 603.0, + 263.0, + 294.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 219.0, + 987.0, + 219.0, + 987.0, + 270.0, + 594.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 486.0, + 528.0, + 486.0, + 528.0, + 528.0, + 294.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 486.0, + 654.0, + 486.0, + 654.0, + 528.0, + 558.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 359.0, + 528.0, + 359.0, + 528.0, + 395.0, + 292.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 359.0, + 663.0, + 359.0, + 663.0, + 395.0, + 558.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 359.0, + 810.0, + 359.0, + 810.0, + 395.0, + 778.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 359.0, + 981.0, + 359.0, + 981.0, + 395.0, + 911.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.25, + 351.0, + 1363.25, + 351.0, + 1363.25, + 400.5, + 968.25, + 400.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1010.0, + 471.0, + 1010.0, + 471.0, + 1057.0, + 293.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 565.0, + 1010.0, + 615.0, + 1010.0, + 615.0, + 1057.0, + 565.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 1010.0, + 881.0, + 1010.0, + 881.0, + 1057.0, + 689.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1010.0, + 1016.0, + 1010.0, + 1016.0, + 1057.0, + 907.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 830.0, + 998.0, + 830.0, + 998.0, + 868.0, + 293.0, + 868.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1385, + 1405, + 1385, + 1405, + 1602, + 296, + 1602 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1278, + 1405, + 1278, + 1405, + 1372, + 297, + 1372 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 437, + 1406, + 437, + 1406, + 532, + 297, + 532 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 294, + 1404, + 294, + 1404, + 407, + 297, + 407 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 296, + 1800, + 1404, + 1800, + 1404, + 1928, + 296, + 1928 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 743, + 1405, + 743, + 1405, + 853, + 297, + 853 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 568, + 868, + 1128, + 868, + 1128, + 992, + 568, + 992 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 298, + 1610, + 1403, + 1610, + 1403, + 1705, + 298, + 1705 + ], + "score": 0.958 + }, + { + "category_id": 2, + "poly": [ + 297, + 1948, + 1403, + 1948, + 1403, + 2034, + 297, + 2034 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 295, + 1102, + 1404, + 1102, + 1404, + 1166, + 295, + 1166 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 298, + 1003, + 1400, + 1003, + 1400, + 1071, + 298, + 1071 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 524, + 544, + 1171, + 544, + 1171, + 625, + 524, + 625 + ], + "score": 0.941 + }, + { + "category_id": 1, + "poly": [ + 291, + 1711, + 1399, + 1711, + 1399, + 1778, + 291, + 1778 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 299, + 1209, + 825, + 1209, + 825, + 1245, + 299, + 1245 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 817, + 73, + 817, + 106, + 298, + 106 + ], + "score": 0.918 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 1, + "poly": [ + 292, + 634, + 1373, + 634, + 1373, + 669, + 292, + 669 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 299, + 675, + 1171, + 675, + 1171, + 713, + 299, + 713 + ], + "score": 0.815 + }, + { + "category_id": 8, + "poly": [ + 288, + 223, + 1370, + 223, + 1370, + 268, + 288, + 268 + ], + "score": 0.531 + }, + { + "category_id": 1, + "poly": [ + 288, + 223, + 1370, + 223, + 1370, + 268, + 288, + 268 + ], + "score": 0.379 + }, + { + "category_id": 14, + "poly": [ + 569, + 865, + 1128, + 865, + 1128, + 993, + 569, + 993 + ], + "score": 0.94, + "latex": "f ( X ) = \\sigma ( P X W ) = { \\left\\{ \\begin{array} { l l } { \\left[ 0 \\quad { \\frac { \\lambda b } { \\sqrt { 2 } } } \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b \\geq 0 { \\mathrm { ) } } , } \\\\ { \\left[ { \\frac { - \\lambda b } { \\sqrt { 2 } } } \\quad 0 \\right] ^ { \\top } } & { { \\mathrm { ( i f ~ } } b < 0 { \\mathrm { ) } } . } \\end{array} \\right. }" + }, + { + "category_id": 14, + "poly": [ + 524, + 545, + 1176, + 545, + 1176, + 624, + 524, + 624 + ], + "score": 0.94, + "latex": "P \\frac { \\lambda } { 2 } [ \\begin{array} { c c } { 1 } & { - 1 } \\\\ { - 1 } & { 1 } \\end{array} ] , e \\frac { 1 } { \\sqrt { 2 } } [ \\begin{array} { c } { 1 } \\\\ { 1 } \\end{array} ] , U \\{ [ \\begin{array} { c } { x } \\\\ { y } \\end{array} ] | x = y \\}" + }, + { + "category_id": 13, + "poly": [ + 744, + 636, + 844, + 636, + 844, + 670, + 744, + 670 + ], + "score": 0.93, + "latex": "( P , e , U )" + }, + { + "category_id": 13, + "poly": [ + 490, + 500, + 604, + 500, + 604, + 533, + 490, + 533 + ], + "score": 0.93, + "latex": "\\lambda \\in ( 1 , 2 )" + }, + { + "category_id": 13, + "poly": [ + 867, + 1004, + 1114, + 1004, + 1114, + 1041, + 867, + 1041 + ], + "score": 0.93, + "latex": "d _ { \\mathcal { M } } ( f ( X ) ) = \\lambda | b | / 2" + }, + { + "category_id": 13, + "poly": [ + 975, + 789, + 1135, + 789, + 1135, + 824, + 975, + 824 + ], + "score": 0.93, + "latex": "d _ { \\mathcal { M } } ( \\boldsymbol { X } ) = | b |" + }, + { + "category_id": 13, + "poly": [ + 341, + 1386, + 535, + 1386, + 535, + 1421, + 341, + 1421 + ], + "score": 0.93, + "latex": "S : = \\{ 1 , \\ldots , N \\}" + }, + { + "category_id": 13, + "poly": [ + 648, + 297, + 829, + 297, + 829, + 331, + 648, + 331 + ], + "score": 0.93, + "latex": "d _ { \\mathcal { M } } ( X ) = | x _ { 2 } |" + }, + { + "category_id": 13, + "poly": [ + 479, + 1479, + 673, + 1479, + 673, + 1513, + 479, + 1513 + ], + "score": 0.93, + "latex": "G _ { P } = ( V _ { P } , E _ { P } )" + }, + { + "category_id": 13, + "poly": [ + 715, + 1479, + 837, + 1479, + 837, + 1513, + 715, + 1513 + ], + "score": 0.92, + "latex": "V _ { P } = [ N ]" + }, + { + "category_id": 13, + "poly": [ + 893, + 1480, + 1029, + 1480, + 1029, + 1512, + 893, + 1512 + ], + "score": 0.92, + "latex": "( i , j ) \\in E _ { P }" + }, + { + "category_id": 13, + "poly": [ + 668, + 1417, + 969, + 1417, + 969, + 1455, + 668, + 1455 + ], + "score": 0.92, + "latex": "P = ( p _ { i j } ) _ { i , j \\in [ N ] } \\in \\mathbb { R } ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1037, + 552, + 1037, + 552, + 1071, + 298, + 1071 + ], + "score": 0.92, + "latex": "d _ { \\mathcal { M } } ( f ( X ) ) < d _ { \\mathcal { M } } ( X )" + }, + { + "category_id": 13, + "poly": [ + 443, + 1863, + 542, + 1863, + 542, + 1894, + 443, + 1894 + ], + "score": 0.92, + "latex": "X _ { 1 } ~ \\geq ~ 0" + }, + { + "category_id": 13, + "poly": [ + 540, + 1802, + 635, + 1802, + 635, + 1833, + 540, + 1833 + ], + "score": 0.92, + "latex": "W _ { l } = 1" + }, + { + "category_id": 13, + "poly": [ + 1193, + 1482, + 1287, + 1482, + 1287, + 1513, + 1193, + 1513 + ], + "score": 0.92, + "latex": "p _ { i j } > 0" + }, + { + "category_id": 13, + "poly": [ + 1157, + 335, + 1360, + 335, + 1360, + 371, + 1157, + 371 + ], + "score": 0.91, + "latex": "x ^ { + } : = \\operatorname* { m a x } ( x , 0 )" + }, + { + "category_id": 13, + "poly": [ + 718, + 1802, + 807, + 1802, + 807, + 1835, + 718, + 1835 + ], + "score": 0.91, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1419, + 1158, + 1419, + 1158, + 1449, + 1081, + 1449 + ], + "score": 0.91, + "latex": "P \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 808, + 373, + 1069, + 373, + 1069, + 406, + 808, + 406 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) > d _ { \\mathcal { M } } ( X )" + }, + { + "category_id": 13, + "poly": [ + 1220, + 1802, + 1312, + 1802, + 1312, + 1833, + 1220, + 1833 + ], + "score": 0.91, + "latex": "X _ { l } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 597, + 1861, + 720, + 1861, + 720, + 1895, + 597, + 1895 + ], + "score": 0.91, + "latex": "X _ { 1 } ^ { \\top } \\mathbf { \\hat { 1 } } = 1" + }, + { + "category_id": 13, + "poly": [ + 727, + 676, + 988, + 676, + 988, + 711, + 727, + 711 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) < d _ { \\mathcal { M } } ( X )" + }, + { + "category_id": 13, + "poly": [ + 575, + 231, + 832, + 231, + 832, + 265, + 575, + 265 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( f ( X ) ) > d _ { \\mathcal { M } } ( X ) ." + }, + { + "category_id": 13, + "poly": [ + 1111, + 1642, + 1206, + 1642, + 1206, + 1671, + 1111, + 1671 + ], + "score": 0.91, + "latex": "e \\in \\mathbb { R } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1673, + 390, + 1673, + 390, + 1707, + 298, + 1707 + ], + "score": 0.91, + "latex": "\\| e \\| = 1" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1419, + 1302, + 1419, + 1302, + 1447, + 1208, + 1447 + ], + "score": 0.91, + "latex": "P \\mathbf { 1 } = \\mathbf { 1 }" + }, + { + "category_id": 13, + "poly": [ + 919, + 224, + 1169, + 224, + 1169, + 265, + 919, + 265 + ], + "score": 0.91, + "latex": "X = \\left[ x _ { 1 } \\quad x _ { 2 } \\right] ^ { \\top } \\in \\mathbb { R } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1643, + 700, + 1643, + 700, + 1673, + 605, + 1673 + ], + "score": 0.91, + "latex": "\\lambda _ { N } = 1" + }, + { + "category_id": 13, + "poly": [ + 778, + 335, + 1076, + 335, + 1076, + 371, + 778, + 371 + ], + "score": 0.91, + "latex": "d _ { \\mathcal { M } } ( f _ { l } ( X ) ) = ( W \\lambda X _ { 2 } ) ^ { + }" + }, + { + "category_id": 13, + "poly": [ + 651, + 471, + 695, + 471, + 695, + 501, + 651, + 501 + ], + "score": 0.9, + "latex": "d _ { \\mathcal { M } }" + }, + { + "category_id": 13, + "poly": [ + 910, + 1711, + 1207, + 1711, + 1207, + 1747, + 910, + 1747 + ], + "score": 0.9, + "latex": "\\mathcal { M } : = \\{ e \\otimes w \\ | \\ w \\in \\mathbb { R } ^ { C } \\}" + }, + { + "category_id": 13, + "poly": [ + 550, + 744, + 771, + 744, + 771, + 793, + 550, + 793 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { e ^ { \\prime } : = \\frac { 1 } { \\sqrt { 2 } } \\left[ { \\begin{array} { l l } { 1 } & { - 1 } \\end{array} } \\right] ^ { \\top } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 575, + 677, + 674, + 677, + 674, + 707, + 575, + 707 + ], + "score": 0.9, + "latex": "W \\lambda > 1" + }, + { + "category_id": 13, + "poly": [ + 671, + 1006, + 737, + 1006, + 737, + 1038, + 671, + 1038 + ], + "score": 0.9, + "latex": "f ( X )" + }, + { + "category_id": 13, + "poly": [ + 1066, + 675, + 1159, + 675, + 1159, + 707, + 1066, + 707 + ], + "score": 0.9, + "latex": "X \\in \\mathbb { R } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 298, + 471, + 391, + 471, + 391, + 500, + 298, + 500 + ], + "score": 0.9, + "latex": "s _ { l } \\lambda > 1" + }, + { + "category_id": 13, + "poly": [ + 405, + 1802, + 487, + 1802, + 487, + 1830, + 405, + 1830 + ], + "score": 0.9, + "latex": "C = 1" + }, + { + "category_id": 13, + "poly": [ + 498, + 1713, + 855, + 1713, + 855, + 1747, + 498, + 1747 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { \\lambda : = \\operatorname* { m a x } _ { n = 1 , \\ldots , N - 1 } | \\lambda _ { n } | ( < 1 ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1189, + 752, + 1344, + 752, + 1344, + 782, + 1189, + 782 + ], + "score": 0.9, + "latex": "\\lambda \\colon P e ^ { \\prime } = \\lambda e ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1832, + 365, + 1832, + 365, + 1863, + 297, + 1863 + ], + "score": 0.9, + "latex": "l \\geq 2" + }, + { + "category_id": 13, + "poly": [ + 487, + 1571, + 571, + 1571, + 571, + 1599, + 487, + 1599 + ], + "score": 0.9, + "latex": "M = 1" + }, + { + "category_id": 13, + "poly": [ + 642, + 1038, + 735, + 1038, + 735, + 1066, + 642, + 1066 + ], + "score": 0.9, + "latex": "X \\in \\mathbb { R } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 451, + 372, + 566, + 372, + 566, + 401, + 451, + 401 + ], + "score": 0.89, + "latex": "W > \\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 366, + 1864, + 404, + 1864, + 404, + 1893, + 366, + 1893 + ], + "score": 0.89, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1895, + 1054, + 1895, + 1054, + 1924, + 1019, + 1924 + ], + "score": 0.89, + "latex": "X _ { l }" + }, + { + "category_id": 13, + "poly": [ + 839, + 1891, + 957, + 1891, + 957, + 1928, + 839, + 1928 + ], + "score": 0.89, + "latex": "X _ { l } ^ { \\top } \\mathbf { 1 } = 1" + }, + { + "category_id": 13, + "poly": [ + 345, + 501, + 434, + 501, + 434, + 528, + 345, + 528 + ], + "score": 0.89, + "latex": "M \\gets 1" + }, + { + "category_id": 13, + "poly": [ + 914, + 1951, + 953, + 1951, + 953, + 1977, + 914, + 1977 + ], + "score": 0.89, + "latex": "G _ { A }" + }, + { + "category_id": 13, + "poly": [ + 617, + 375, + 699, + 375, + 699, + 403, + 617, + 403 + ], + "score": 0.89, + "latex": "x _ { 2 } > 0" + }, + { + "category_id": 13, + "poly": [ + 1004, + 1864, + 1042, + 1864, + 1042, + 1893, + 1004, + 1893 + ], + "score": 0.88, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 1207, + 1007, + 1289, + 1007, + 1289, + 1036, + 1207, + 1036 + ], + "score": 0.88, + "latex": "\\lambda \\ : < \\ : 2" + }, + { + "category_id": 13, + "poly": [ + 1275, + 637, + 1364, + 637, + 1364, + 665, + 1275, + 665 + ], + "score": 0.88, + "latex": "W 1" + }, + { + "category_id": 13, + "poly": [ + 1279, + 232, + 1361, + 232, + 1361, + 262, + 1279, + 262 + ], + "score": 0.88, + "latex": "x _ { 2 } > 0" + }, + { + "category_id": 13, + "poly": [ + 1035, + 1612, + 1218, + 1612, + 1218, + 1642, + 1035, + 1642 + ], + "score": 0.88, + "latex": "\\lambda _ { 1 } \\leq \\cdots \\leq \\lambda _ { N }" + }, + { + "category_id": 13, + "poly": [ + 1322, + 1644, + 1393, + 1644, + 1393, + 1673, + 1322, + 1673 + ], + "score": 0.88, + "latex": "e \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 739, + 1894, + 828, + 1894, + 828, + 1925, + 739, + 1925 + ], + "score": 0.87, + "latex": "X _ { l } \\geq 0" + }, + { + "category_id": 13, + "poly": [ + 298, + 374, + 369, + 374, + 369, + 401, + 298, + 401 + ], + "score": 0.87, + "latex": "x \\in \\mathbb { R }" + }, + { + "category_id": 13, + "poly": [ + 297, + 2005, + 337, + 2005, + 337, + 2032, + 297, + 2032 + ], + "score": 0.87, + "latex": "G _ { A }" + }, + { + "category_id": 13, + "poly": [ + 617, + 1511, + 660, + 1511, + 660, + 1540, + 617, + 1540 + ], + "score": 0.87, + "latex": "G _ { P }" + }, + { + "category_id": 13, + "poly": [ + 695, + 1834, + 729, + 1834, + 729, + 1862, + 695, + 1862 + ], + "score": 0.86, + "latex": "X _ { l }" + }, + { + "category_id": 13, + "poly": [ + 298, + 332, + 723, + 332, + 723, + 373, + 298, + 373 + ], + "score": 0.86, + "latex": "f _ { l } ( X ) = \\left[ ( W \\mu X _ { 1 } ) ^ { + } \\quad ( W \\lambda X _ { 2 } ) ^ { + } \\right] ^ { \\top }" + }, + { + "category_id": 13, + "poly": [ + 297, + 789, + 571, + 789, + 571, + 823, + 297, + 823 + ], + "score": 0.86, + "latex": "X = a e + b e ^ { \\prime } \\left( a , b { \\dot { \\omega } } 0 \\right)" + }, + { + "category_id": 13, + "poly": [ + 680, + 1455, + 717, + 1455, + 717, + 1482, + 680, + 1482 + ], + "score": 0.86, + "latex": "p _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 1210, + 471, + 1298, + 471, + 1298, + 498, + 1210, + 498 + ], + "score": 0.85, + "latex": "N \\gets 2" + }, + { + "category_id": 13, + "poly": [ + 968, + 471, + 992, + 471, + 992, + 501, + 968, + 501 + ], + "score": 0.84, + "latex": "f _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1065, + 1511, + 1090, + 1511, + 1090, + 1537, + 1065, + 1537 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1010, + 754, + 1035, + 754, + 1035, + 780, + 1010, + 780 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1090, + 1541, + 1114, + 1541, + 1114, + 1567, + 1090, + 1567 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 794, + 1007, + 831, + 1007, + 831, + 1035, + 794, + 1035 + ], + "score": 0.84, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 907, + 791, + 943, + 791, + 943, + 819, + 907, + 819 + ], + "score": 0.83, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 825, + 791, + 853, + 791, + 853, + 818, + 825, + 818 + ], + "score": 0.83, + "latex": "X" + }, + { + "category_id": 13, + "poly": [ + 1309, + 470, + 1393, + 470, + 1393, + 498, + 1309, + 498 + ], + "score": 0.83, + "latex": "C \\gets 1" + }, + { + "category_id": 13, + "poly": [ + 850, + 1979, + 873, + 1979, + 873, + 2003, + 850, + 2003 + ], + "score": 0.83, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1247, + 1714, + 1331, + 1714, + 1331, + 1745, + 1247, + 1745 + ], + "score": 0.83, + "latex": "s \\lambda < 1" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1389, + 1247, + 1389, + 1247, + 1416, + 1225, + 1416 + ], + "score": 0.82, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 565, + 1746, + 600, + 1746, + 600, + 1775, + 565, + 1775 + ], + "score": 0.81, + "latex": "X _ { l }" + }, + { + "category_id": 13, + "poly": [ + 1253, + 1951, + 1276, + 1951, + 1276, + 1975, + 1253, + 1975 + ], + "score": 0.81, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 1135, + 1979, + 1157, + 1979, + 1157, + 2002, + 1135, + 2002 + ], + "score": 0.81, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1480, + 1402, + 1480, + 1402, + 1507, + 1376, + 1507 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 298, + 1480, + 323, + 1480, + 323, + 1507, + 298, + 1507 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 966, + 1748, + 1047, + 1748, + 1047, + 1772, + 966, + 1772 + ], + "score": 0.8, + "latex": "l \\infty" + }, + { + "category_id": 13, + "poly": [ + 519, + 1746, + 554, + 1746, + 554, + 1775, + 519, + 1775 + ], + "score": 0.8, + "latex": "X _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 457, + 2006, + 479, + 2006, + 479, + 2030, + 457, + 2030 + ], + "score": 0.8, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 1222, + 1451, + 1239, + 1451, + 1239, + 1480, + 1222, + 1480 + ], + "score": 0.79, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 297, + 1895, + 319, + 1895, + 319, + 1921, + 297, + 1921 + ], + "score": 0.79, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 923, + 1834, + 944, + 1834, + 944, + 1860, + 923, + 1860 + ], + "score": 0.79, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 549, + 1951, + 572, + 1951, + 572, + 1975, + 549, + 1975 + ], + "score": 0.76, + "latex": "A" + }, + { + "category_id": 13, + "poly": [ + 972, + 1613, + 997, + 1613, + 997, + 1639, + 972, + 1639 + ], + "score": 0.75, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 767, + 1111, + 782, + 1111, + 782, + 1130, + 767, + 1130 + ], + "score": 0.73, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 1176, + 1451, + 1189, + 1451, + 1189, + 1476, + 1176, + 1476 + ], + "score": 0.71, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 298, + 1643, + 405, + 1643, + 405, + 1673, + 298, + 1673 + ], + "score": 0.67, + "latex": "- 1 < \\lambda _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 419, + 1643, + 542, + 1643, + 542, + 1675, + 419, + 1675 + ], + "score": 0.66, + "latex": "\\lambda _ { N - 1 } < 1" + }, + { + "category_id": 13, + "poly": [ + 895, + 1746, + 930, + 1746, + 930, + 1772, + 895, + 1772 + ], + "score": 0.58, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 451, + 1679, + 467, + 1679, + 467, + 1700, + 451, + 1700 + ], + "score": 0.46, + "latex": "e" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1937.0, + 548.0, + 1937.0, + 548.0, + 1989.0, + 318.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1937.0, + 913.0, + 1937.0, + 913.0, + 1989.0, + 573.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 1937.0, + 1252.0, + 1937.0, + 1252.0, + 1989.0, + 954.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1937.0, + 1407.0, + 1937.0, + 1407.0, + 1989.0, + 1277.0, + 1989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1974.0, + 849.0, + 1974.0, + 849.0, + 2012.0, + 291.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1974.0, + 1134.0, + 1974.0, + 1134.0, + 2012.0, + 874.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2012.0, + 1158.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 2004.0, + 456.0, + 2004.0, + 456.0, + 2036.0, + 338.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 2004.0, + 611.0, + 2004.0, + 611.0, + 2036.0, + 480.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1206.0, + 829.0, + 1206.0, + 829.0, + 1251.0, + 292.0, + 1251.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": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1383.0, + 340.0, + 1383.0, + 340.0, + 1423.0, + 291.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 1383.0, + 1224.0, + 1383.0, + 1224.0, + 1423.0, + 536.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1248.0, + 1383.0, + 1407.0, + 1383.0, + 1407.0, + 1423.0, + 1248.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 1413.0, + 667.0, + 1413.0, + 667.0, + 1457.0, + 286.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1413.0, + 1080.0, + 1413.0, + 1080.0, + 1457.0, + 970.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1413.0, + 1207.0, + 1413.0, + 1207.0, + 1457.0, + 1159.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 1413.0, + 1411.0, + 1413.0, + 1411.0, + 1457.0, + 1303.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1445.0, + 679.0, + 1445.0, + 679.0, + 1486.0, + 291.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 1445.0, + 1175.0, + 1445.0, + 1175.0, + 1486.0, + 718.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1445.0, + 1221.0, + 1445.0, + 1221.0, + 1486.0, + 1190.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1240.0, + 1445.0, + 1406.0, + 1445.0, + 1406.0, + 1486.0, + 1240.0, + 1486.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1475.0, + 297.0, + 1475.0, + 297.0, + 1516.0, + 293.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1475.0, + 478.0, + 1475.0, + 478.0, + 1516.0, + 324.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 674.0, + 1475.0, + 714.0, + 1475.0, + 714.0, + 1516.0, + 674.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 1475.0, + 892.0, + 1475.0, + 892.0, + 1516.0, + 838.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1475.0, + 1192.0, + 1475.0, + 1192.0, + 1516.0, + 1030.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1475.0, + 1375.0, + 1475.0, + 1375.0, + 1516.0, + 1288.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1475.0, + 1406.0, + 1475.0, + 1406.0, + 1516.0, + 1403.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1508.0, + 616.0, + 1508.0, + 616.0, + 1543.0, + 293.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 1508.0, + 1064.0, + 1508.0, + 1064.0, + 1543.0, + 661.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1091.0, + 1508.0, + 1405.0, + 1508.0, + 1405.0, + 1543.0, + 1091.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1528.0, + 1089.0, + 1528.0, + 1089.0, + 1582.0, + 289.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1528.0, + 1410.0, + 1528.0, + 1410.0, + 1582.0, + 1115.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1568.0, + 486.0, + 1568.0, + 486.0, + 1606.0, + 295.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1568.0, + 584.0, + 1568.0, + 584.0, + 1606.0, + 572.0, + 1606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1276.0, + 1403.0, + 1276.0, + 1403.0, + 1315.0, + 291.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1308.0, + 1405.0, + 1308.0, + 1405.0, + 1346.0, + 294.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1341.0, + 647.0, + 1341.0, + 647.0, + 1375.0, + 296.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 438.0, + 1404.0, + 438.0, + 1404.0, + 472.0, + 295.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 467.0, + 297.0, + 467.0, + 297.0, + 504.0, + 294.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 467.0, + 650.0, + 467.0, + 650.0, + 504.0, + 392.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 467.0, + 967.0, + 467.0, + 967.0, + 504.0, + 696.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 467.0, + 1209.0, + 467.0, + 1209.0, + 504.0, + 993.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 467.0, + 1308.0, + 467.0, + 1308.0, + 504.0, + 1299.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 467.0, + 1406.0, + 467.0, + 1406.0, + 504.0, + 1394.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 500.0, + 344.0, + 500.0, + 344.0, + 531.0, + 296.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 435.0, + 500.0, + 489.0, + 500.0, + 489.0, + 531.0, + 435.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 500.0, + 694.0, + 500.0, + 694.0, + 531.0, + 605.0, + 531.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 293.0, + 647.0, + 293.0, + 647.0, + 335.0, + 295.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 293.0, + 1407.0, + 293.0, + 1407.0, + 335.0, + 830.0, + 335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 333.0, + 777.0, + 333.0, + 777.0, + 374.0, + 724.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 333.0, + 1156.0, + 333.0, + 1156.0, + 374.0, + 1077.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1361.0, + 333.0, + 1406.0, + 333.0, + 1406.0, + 374.0, + 1361.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 368.0, + 297.0, + 368.0, + 297.0, + 409.0, + 292.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 368.0, + 450.0, + 368.0, + 450.0, + 409.0, + 370.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 368.0, + 616.0, + 368.0, + 616.0, + 409.0, + 567.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 368.0, + 807.0, + 368.0, + 807.0, + 409.0, + 700.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 368.0, + 1081.0, + 368.0, + 1081.0, + 409.0, + 1070.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1374.0, + 373.0, + 1406.0, + 373.0, + 1406.0, + 404.0, + 1374.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1797.0, + 404.0, + 1797.0, + 404.0, + 1838.0, + 291.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1797.0, + 539.0, + 1797.0, + 539.0, + 1838.0, + 488.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1797.0, + 717.0, + 1797.0, + 717.0, + 1838.0, + 636.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 808.0, + 1797.0, + 1219.0, + 1797.0, + 1219.0, + 1838.0, + 808.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 1797.0, + 1405.0, + 1797.0, + 1405.0, + 1838.0, + 1313.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1831.0, + 296.0, + 1831.0, + 296.0, + 1866.0, + 293.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 1831.0, + 694.0, + 1831.0, + 694.0, + 1866.0, + 366.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1831.0, + 922.0, + 1831.0, + 922.0, + 1866.0, + 730.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1831.0, + 1404.0, + 1831.0, + 1404.0, + 1866.0, + 945.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1859.0, + 365.0, + 1859.0, + 365.0, + 1898.0, + 293.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 1859.0, + 442.0, + 1859.0, + 442.0, + 1898.0, + 405.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1859.0, + 596.0, + 1859.0, + 596.0, + 1898.0, + 543.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 721.0, + 1859.0, + 1003.0, + 1859.0, + 1003.0, + 1898.0, + 721.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1043.0, + 1859.0, + 1405.0, + 1859.0, + 1405.0, + 1898.0, + 1043.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1890.0, + 296.0, + 1890.0, + 296.0, + 1931.0, + 293.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1890.0, + 738.0, + 1890.0, + 738.0, + 1931.0, + 320.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1890.0, + 838.0, + 1890.0, + 838.0, + 1931.0, + 829.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 1890.0, + 1018.0, + 1890.0, + 1018.0, + 1931.0, + 958.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 1890.0, + 1405.0, + 1890.0, + 1405.0, + 1931.0, + 1055.0, + 1931.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 744.0, + 549.0, + 744.0, + 549.0, + 793.0, + 291.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 744.0, + 1009.0, + 744.0, + 1009.0, + 793.0, + 772.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 744.0, + 1188.0, + 744.0, + 1188.0, + 793.0, + 1036.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 744.0, + 1408.0, + 744.0, + 1408.0, + 793.0, + 1345.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 784.0, + 824.0, + 784.0, + 824.0, + 828.0, + 572.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 784.0, + 906.0, + 784.0, + 906.0, + 828.0, + 854.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 944.0, + 784.0, + 974.0, + 784.0, + 974.0, + 828.0, + 944.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 784.0, + 1405.0, + 784.0, + 1405.0, + 828.0, + 1136.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 822.0, + 618.0, + 822.0, + 618.0, + 854.0, + 296.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1608.0, + 971.0, + 1608.0, + 971.0, + 1647.0, + 293.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1608.0, + 1034.0, + 1608.0, + 1034.0, + 1647.0, + 998.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1647.0, + 1219.0, + 1647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1639.0, + 418.0, + 1639.0, + 418.0, + 1677.0, + 406.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1639.0, + 604.0, + 1639.0, + 604.0, + 1677.0, + 543.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1639.0, + 1110.0, + 1639.0, + 1110.0, + 1677.0, + 701.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1639.0, + 1321.0, + 1639.0, + 1321.0, + 1677.0, + 1207.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1639.0, + 1404.0, + 1639.0, + 1404.0, + 1677.0, + 1394.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1671.0, + 450.0, + 1671.0, + 450.0, + 1709.0, + 391.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1671.0, + 904.0, + 1671.0, + 904.0, + 1709.0, + 468.0, + 1709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1098.0, + 766.0, + 1098.0, + 766.0, + 1139.0, + 292.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1098.0, + 1406.0, + 1098.0, + 1406.0, + 1139.0, + 783.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1130.0, + 352.0, + 1130.0, + 352.0, + 1171.0, + 290.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1004.0, + 670.0, + 1004.0, + 670.0, + 1041.0, + 296.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1004.0, + 793.0, + 1004.0, + 793.0, + 1041.0, + 738.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 1004.0, + 866.0, + 1004.0, + 866.0, + 1041.0, + 832.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1004.0, + 1206.0, + 1004.0, + 1206.0, + 1041.0, + 1115.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 1004.0, + 1405.0, + 1004.0, + 1405.0, + 1041.0, + 1290.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1036.0, + 297.0, + 1036.0, + 297.0, + 1071.0, + 293.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1036.0, + 641.0, + 1036.0, + 641.0, + 1071.0, + 553.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1036.0, + 748.0, + 1036.0, + 748.0, + 1071.0, + 736.0, + 1071.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 1042.0, + 1401.0, + 1042.0, + 1401.0, + 1063.0, + 1380.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1708.0, + 497.0, + 1708.0, + 497.0, + 1752.0, + 294.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1708.0, + 909.0, + 1708.0, + 909.0, + 1752.0, + 856.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1208.0, + 1708.0, + 1246.0, + 1708.0, + 1246.0, + 1752.0, + 1208.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1332.0, + 1708.0, + 1405.0, + 1708.0, + 1405.0, + 1752.0, + 1332.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1743.0, + 518.0, + 1743.0, + 518.0, + 1780.0, + 291.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1743.0, + 564.0, + 1743.0, + 564.0, + 1780.0, + 555.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1743.0, + 894.0, + 1743.0, + 894.0, + 1780.0, + 601.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1743.0, + 965.0, + 1743.0, + 965.0, + 1780.0, + 931.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1743.0, + 1059.0, + 1743.0, + 1059.0, + 1780.0, + 1048.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 633.0, + 743.0, + 633.0, + 743.0, + 673.0, + 296.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 633.0, + 1274.0, + 633.0, + 1274.0, + 673.0, + 845.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 633.0, + 1376.0, + 633.0, + 1376.0, + 673.0, + 1365.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 671.0, + 574.0, + 671.0, + 574.0, + 716.0, + 291.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 671.0, + 726.0, + 671.0, + 726.0, + 716.0, + 675.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 671.0, + 1065.0, + 671.0, + 1065.0, + 716.0, + 989.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.0, + 671.0, + 1172.0, + 671.0, + 1172.0, + 716.0, + 1160.0, + 716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 219.0, + 574.0, + 219.0, + 574.0, + 274.0, + 290.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 219.0, + 918.0, + 219.0, + 918.0, + 274.0, + 833.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1170.0, + 219.0, + 1278.0, + 219.0, + 1278.0, + 274.0, + 1170.0, + 274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 219.0, + 1374.0, + 219.0, + 1374.0, + 274.0, + 1362.0, + 274.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 758, + 1404, + 758, + 1404, + 1034, + 297, + 1034 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 461, + 1404, + 461, + 1404, + 745, + 297, + 745 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1703, + 1405, + 1703, + 1405, + 1984, + 297, + 1984 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 299, + 1202, + 1405, + 1202, + 1405, + 1296, + 299, + 1296 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 227, + 1403, + 227, + 1403, + 353, + 298, + 353 + ], + "score": 0.975 + }, + { + "category_id": 8, + "poly": [ + 502, + 1539, + 1192, + 1539, + 1192, + 1617, + 502, + 1617 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 524, + 1384, + 1171, + 1384, + 1171, + 1462, + 524, + 1462 + ], + "score": 0.95 + }, + { + "category_id": 0, + "poly": [ + 298, + 1077, + 878, + 1077, + 878, + 1114, + 298, + 1114 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 299, + 395, + 1006, + 395, + 1006, + 432, + 299, + 432 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 319, + 2004, + 1290, + 2004, + 1290, + 2034, + 319, + 2034 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.9 + }, + { + "category_id": 0, + "poly": [ + 300, + 1646, + 728, + 1646, + 728, + 1680, + 300, + 1680 + ], + "score": 0.899 + }, + { + "category_id": 0, + "poly": [ + 300, + 1145, + 724, + 1145, + 724, + 1177, + 300, + 1177 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 298, + 1328, + 484, + 1328, + 484, + 1360, + 298, + 1360 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 298, + 1483, + 487, + 1483, + 487, + 1515, + 298, + 1515 + ], + "score": 0.635 + }, + { + "category_id": 1, + "poly": [ + 298, + 1483, + 487, + 1483, + 487, + 1515, + 298, + 1515 + ], + "score": 0.32 + }, + { + "category_id": 13, + "poly": [ + 1179, + 460, + 1342, + 460, + 1342, + 496, + 1179, + 496 + ], + "score": 0.93, + "latex": "P = I _ { N } - \\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1796, + 1188, + 1796, + 1188, + 1828, + 1017, + 1828 + ], + "score": 0.93, + "latex": "X ^ { ( 0 ) } \\in \\mathbb { R } ^ { N \\times C }" + }, + { + "category_id": 13, + "poly": [ + 792, + 231, + 880, + 231, + 880, + 263, + 792, + 263 + ], + "score": 0.93, + "latex": "l \\in \\mathbb { N } _ { + }" + }, + { + "category_id": 13, + "poly": [ + 388, + 230, + 711, + 230, + 711, + 264, + 388, + 264 + ], + "score": 0.92, + "latex": "X _ { l + 1 } = \\sigma ( P X _ { l } W _ { l } ) = P X _ { l }" + }, + { + "category_id": 14, + "poly": [ + 501, + 1538, + 1194, + 1538, + 1194, + 1617, + 501, + 1617 + ], + "score": 0.92, + "latex": "P = \\left[ { \\begin{array} { c c } { 0 . 6 8 9 9 5 7 4 } & { - 0 . 2 4 2 6 8 2 7 } \\\\ { - 0 . 2 4 2 6 8 2 7 } & { 0 . 8 1 0 0 4 2 6 } \\end{array} } \\right] , \\quad e = \\left[ { \\begin{array} { c } { 0 . 6 1 6 3 7 2 3 4 } \\\\ { - 0 . 7 8 7 4 5 4 8 5 } \\end{array} } \\right] ." + }, + { + "category_id": 13, + "poly": [ + 1328, + 1952, + 1390, + 1952, + 1390, + 1985, + 1328, + 1985 + ], + "score": 0.92, + "latex": "( p , s )" + }, + { + "category_id": 13, + "poly": [ + 330, + 557, + 521, + 557, + 521, + 587, + 330, + 587 + ], + "score": 0.92, + "latex": "P _ { \\Delta } : = I _ { N } - \\Delta" + }, + { + "category_id": 13, + "poly": [ + 772, + 1204, + 876, + 1204, + 876, + 1234, + 772, + 1234 + ], + "score": 0.91, + "latex": "\\lambda _ { 2 } = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 620, + 1204, + 724, + 1204, + 724, + 1234, + 620, + 1234 + ], + "score": 0.91, + "latex": "\\lambda _ { 1 } = 0 . 5" + }, + { + "category_id": 14, + "poly": [ + 523, + 1383, + 1175, + 1383, + 1175, + 1463, + 523, + 1463 + ], + "score": 0.91, + "latex": "P = { \\left[ 0 . 2 4 9 9 8 1 9 \\quad 0 . 2 4 9 9 8 1 9 \\right] } , \\quad e = { \\left[ \\begin{array} { l } { 0 . 7 0 2 8 3 9 2 } \\\\ { 0 . 2 4 9 9 8 1 9 } \\end{array} \\right] } ." + }, + { + "category_id": 13, + "poly": [ + 345, + 1799, + 440, + 1799, + 440, + 1828, + 345, + 1828 + ], + "score": 0.9, + "latex": "C = 3 2" + }, + { + "category_id": 13, + "poly": [ + 974, + 1706, + 1102, + 1706, + 1102, + 1735, + 974, + 1735 + ], + "score": 0.9, + "latex": "N = 1 0 0 0" + }, + { + "category_id": 13, + "poly": [ + 848, + 1706, + 911, + 1706, + 911, + 1738, + 848, + 1738 + ], + "score": 0.9, + "latex": "G _ { N , p }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 557, + 1216, + 557, + 1216, + 587, + 1175, + 587 + ], + "score": 0.89, + "latex": "P _ { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 422, + 1831, + 516, + 1831, + 516, + 1859, + 422, + 1859 + ], + "score": 0.89, + "latex": "L = 1 0" + }, + { + "category_id": 13, + "poly": [ + 1104, + 557, + 1136, + 557, + 1136, + 587, + 1104, + 587 + ], + "score": 0.88, + "latex": "\\lambda _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 465, + 1235, + 497, + 1235, + 497, + 1265, + 465, + 1265 + ], + "score": 0.88, + "latex": "\\lambda _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1300, + 1767, + 1402, + 1767, + 1402, + 1796, + 1300, + 1796 + ], + "score": 0.88, + "latex": "K = 1 0" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1234, + 1401, + 1234, + 1401, + 1263, + 1296, + 1263 + ], + "score": 0.87, + "latex": "W = 1 . 2" + }, + { + "category_id": 13, + "poly": [ + 539, + 617, + 566, + 617, + 566, + 649, + 539, + 649 + ], + "score": 0.87, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 1110, + 461, + 1137, + 461, + 1137, + 494, + 1110, + 494 + ], + "score": 0.85, + "latex": "\\tilde { \\Delta }" + }, + { + "category_id": 13, + "poly": [ + 567, + 1205, + 591, + 1205, + 591, + 1231, + 567, + 1231 + ], + "score": 0.84, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 815, + 1266, + 840, + 1266, + 840, + 1292, + 815, + 1292 + ], + "score": 0.83, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1205, + 1173, + 1205, + 1173, + 1231, + 1148, + 1231 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 496, + 589, + 521, + 589, + 521, + 615, + 496, + 615 + ], + "score": 0.82, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 533, + 653, + 559, + 653, + 559, + 679, + 533, + 679 + ], + "score": 0.82, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 895, + 1738, + 919, + 1738, + 919, + 1763, + 895, + 1763 + ], + "score": 0.82, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 897, + 497, + 924, + 497, + 924, + 523, + 897, + 523 + ], + "score": 0.81, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 584, + 467, + 610, + 467, + 610, + 493, + 584, + 493 + ], + "score": 0.81, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 763, + 589, + 801, + 589, + 801, + 617, + 763, + 617 + ], + "score": 0.81, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 1025, + 622, + 1052, + 622, + 1052, + 649, + 1025, + 649 + ], + "score": 0.8, + "latex": "\\Delta" + }, + { + "category_id": 13, + "poly": [ + 1376, + 497, + 1401, + 497, + 1401, + 523, + 1376, + 523 + ], + "score": 0.8, + "latex": "P" + }, + { + "category_id": 13, + "poly": [ + 380, + 1736, + 408, + 1736, + 408, + 1763, + 380, + 1763 + ], + "score": 0.8, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 643, + 1832, + 669, + 1832, + 669, + 1858, + 643, + 1858 + ], + "score": 0.79, + "latex": "C" + }, + { + "category_id": 13, + "poly": [ + 1049, + 714, + 1074, + 714, + 1074, + 740, + 1049, + 740 + ], + "score": 0.79, + "latex": "G" + }, + { + "category_id": 13, + "poly": [ + 297, + 590, + 336, + 590, + 336, + 618, + 297, + 618 + ], + "score": 0.78, + "latex": "- 1" + }, + { + "category_id": 13, + "poly": [ + 1173, + 293, + 1192, + 293, + 1192, + 319, + 1173, + 319 + ], + "score": 0.75, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1138, + 1859, + 1234, + 1859, + 1234, + 1892, + 1138, + 1892 + ], + "score": 0.74, + "latex": "( 2 0 1 2 ) ^ { 1 1 }" + }, + { + "category_id": 13, + "poly": [ + 890, + 1271, + 906, + 1271, + 906, + 1292, + 890, + 1292 + ], + "score": 0.72, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 298, + 1240, + 314, + 1240, + 314, + 1262, + 298, + 1262 + ], + "score": 0.71, + "latex": "e" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1923, + 1088, + 1923, + 1088, + 1949, + 1068, + 1949 + ], + "score": 0.7, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1327, + 1897, + 1343, + 1897, + 1343, + 1919, + 1327, + 1919 + ], + "score": 0.66, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 297, + 231, + 321, + 231, + 321, + 260, + 297, + 260 + ], + "score": 0.63, + "latex": "S" + }, + { + "category_id": 13, + "poly": [ + 501, + 683, + 527, + 683, + 527, + 711, + 501, + 711 + ], + "score": 0.33, + "latex": "\\&" + }, + { + "category_id": 13, + "poly": [ + 590, + 1921, + 914, + 1921, + 914, + 1954, + 590, + 1954 + ], + "score": 0.29, + "latex": "( p , s ) = ( 0 . 1 , 0 . 1 ) \\overset { \\cdot } { , } ( 0 . 5 , 1 . \\overset { \\cdot } { 0 } )" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1076.0, + 880.0, + 1076.0, + 880.0, + 1118.0, + 294.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 392.0, + 1011.0, + 392.0, + 1011.0, + 438.0, + 293.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1999.0, + 1293.0, + 1999.0, + 1293.0, + 2038.0, + 322.0, + 2038.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": [ + 294.0, + 1645.0, + 730.0, + 1645.0, + 730.0, + 1682.0, + 294.0, + 1682.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 729.0, + 1143.0, + 729.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1325.0, + 488.0, + 1325.0, + 488.0, + 1366.0, + 295.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1480.0, + 490.0, + 1480.0, + 490.0, + 1520.0, + 294.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 760.0, + 1401.0, + 760.0, + 1401.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 789.0, + 1404.0, + 789.0, + 1404.0, + 824.0, + 294.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 818.0, + 1404.0, + 818.0, + 1404.0, + 856.0, + 292.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 850.0, + 1405.0, + 850.0, + 1405.0, + 887.0, + 294.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 882.0, + 1404.0, + 882.0, + 1404.0, + 914.0, + 295.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 906.0, + 1404.0, + 906.0, + 1404.0, + 950.0, + 292.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 940.0, + 1406.0, + 940.0, + 1406.0, + 980.0, + 291.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 968.0, + 1406.0, + 968.0, + 1406.0, + 1010.0, + 291.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1002.0, + 395.0, + 1002.0, + 395.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 464.0, + 583.0, + 464.0, + 583.0, + 499.0, + 291.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 464.0, + 1109.0, + 464.0, + 1109.0, + 499.0, + 611.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 464.0, + 1178.0, + 464.0, + 1178.0, + 499.0, + 1138.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 464.0, + 1405.0, + 464.0, + 1405.0, + 499.0, + 1343.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 496.0, + 896.0, + 496.0, + 896.0, + 527.0, + 293.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 496.0, + 1375.0, + 496.0, + 1375.0, + 527.0, + 925.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 527.0, + 1404.0, + 527.0, + 1404.0, + 561.0, + 295.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 557.0, + 329.0, + 557.0, + 329.0, + 591.0, + 294.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 557.0, + 1103.0, + 557.0, + 1103.0, + 591.0, + 522.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 557.0, + 1174.0, + 557.0, + 1174.0, + 591.0, + 1137.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 557.0, + 1405.0, + 557.0, + 1405.0, + 591.0, + 1217.0, + 591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 587.0, + 495.0, + 587.0, + 495.0, + 621.0, + 337.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 522.0, + 587.0, + 762.0, + 587.0, + 762.0, + 621.0, + 522.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 802.0, + 587.0, + 1404.0, + 587.0, + 1404.0, + 621.0, + 802.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 619.0, + 538.0, + 619.0, + 538.0, + 656.0, + 292.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 619.0, + 1024.0, + 619.0, + 1024.0, + 656.0, + 567.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 619.0, + 1404.0, + 619.0, + 1404.0, + 656.0, + 1053.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 532.0, + 652.0, + 532.0, + 686.0, + 294.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 652.0, + 1406.0, + 652.0, + 1406.0, + 686.0, + 560.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 683.0, + 500.0, + 683.0, + 500.0, + 717.0, + 295.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 683.0, + 1405.0, + 683.0, + 1405.0, + 717.0, + 528.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 711.0, + 1048.0, + 711.0, + 1048.0, + 747.0, + 292.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1075.0, + 711.0, + 1086.0, + 711.0, + 1086.0, + 747.0, + 1075.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1705.0, + 847.0, + 1705.0, + 847.0, + 1742.0, + 296.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1705.0, + 973.0, + 1705.0, + 973.0, + 1742.0, + 912.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 1705.0, + 1407.0, + 1705.0, + 1407.0, + 1742.0, + 1103.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1734.0, + 379.0, + 1734.0, + 379.0, + 1771.0, + 294.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 409.0, + 1734.0, + 894.0, + 1734.0, + 894.0, + 1771.0, + 409.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1734.0, + 1406.0, + 1734.0, + 1406.0, + 1771.0, + 920.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1767.0, + 1299.0, + 1767.0, + 1299.0, + 1800.0, + 296.0, + 1800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1791.0, + 344.0, + 1791.0, + 344.0, + 1837.0, + 290.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 441.0, + 1791.0, + 1016.0, + 1791.0, + 1016.0, + 1837.0, + 441.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1791.0, + 1411.0, + 1791.0, + 1411.0, + 1837.0, + 1189.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1828.0, + 421.0, + 1828.0, + 421.0, + 1866.0, + 294.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1828.0, + 642.0, + 1828.0, + 642.0, + 1866.0, + 517.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1828.0, + 1406.0, + 1828.0, + 1406.0, + 1866.0, + 670.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1861.0, + 1137.0, + 1861.0, + 1137.0, + 1894.0, + 295.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 1861.0, + 1405.0, + 1861.0, + 1405.0, + 1894.0, + 1235.0, + 1894.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1891.0, + 1326.0, + 1891.0, + 1326.0, + 1927.0, + 291.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1344.0, + 1891.0, + 1405.0, + 1891.0, + 1405.0, + 1927.0, + 1344.0, + 1927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1920.0, + 589.0, + 1920.0, + 589.0, + 1957.0, + 294.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 915.0, + 1920.0, + 1067.0, + 1920.0, + 1067.0, + 1957.0, + 915.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1920.0, + 1405.0, + 1920.0, + 1405.0, + 1957.0, + 1089.0, + 1957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1947.0, + 1327.0, + 1947.0, + 1327.0, + 1990.0, + 291.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1391.0, + 1947.0, + 1403.0, + 1947.0, + 1403.0, + 1990.0, + 1391.0, + 1990.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1203.0, + 566.0, + 1203.0, + 566.0, + 1237.0, + 295.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 1203.0, + 619.0, + 1203.0, + 619.0, + 1237.0, + 592.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1203.0, + 771.0, + 1203.0, + 771.0, + 1237.0, + 725.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1203.0, + 1147.0, + 1203.0, + 1147.0, + 1237.0, + 877.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1203.0, + 1405.0, + 1203.0, + 1405.0, + 1237.0, + 1174.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1233.0, + 297.0, + 1233.0, + 297.0, + 1267.0, + 292.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 1233.0, + 464.0, + 1233.0, + 464.0, + 1267.0, + 315.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1233.0, + 1295.0, + 1233.0, + 1295.0, + 1267.0, + 498.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1233.0, + 1405.0, + 1233.0, + 1405.0, + 1267.0, + 1402.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1265.0, + 814.0, + 1265.0, + 814.0, + 1299.0, + 295.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1265.0, + 889.0, + 1265.0, + 889.0, + 1299.0, + 841.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1265.0, + 919.0, + 1265.0, + 919.0, + 1299.0, + 907.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 229.0, + 387.0, + 229.0, + 387.0, + 265.0, + 322.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 229.0, + 791.0, + 229.0, + 791.0, + 265.0, + 712.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 881.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 261.0, + 1403.0, + 261.0, + 1403.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1172.0, + 291.0, + 1172.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 291.0, + 1404.0, + 291.0, + 1404.0, + 328.0, + 1193.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 323.0, + 695.0, + 323.0, + 695.0, + 356.0, + 294.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1480.0, + 490.0, + 1480.0, + 490.0, + 1520.0, + 294.0, + 1520.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 22, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1105, + 1404, + 1105, + 1404, + 1351, + 297, + 1351 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1594, + 1405, + 1594, + 1405, + 1841, + 297, + 1841 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 424, + 314, + 1274, + 314, + 1274, + 476, + 424, + 476 + ], + "score": 0.979, + "html": "
#Node#Edge#ClassChance RateThreshold λ-1
Cora27085429630.2%1+3.62 × 10-3
CiteSeer33124732721.1%1 + 1.25 × 10-3
PubMed1971744338339.9%1 + 9.57 × 10-3
" + }, + { + "category_id": 5, + "poly": [ + 435, + 601, + 1263, + 601, + 1263, + 791, + 435, + 791 + ], + "score": 0.979, + "html": "
Original Dataset#Edge AddedThreshold λ-1
Noisy Cora 2500Cora24951.11
Noisy ( Cora 5000Cora49881.15
Noisy CiteSeerCiteSeer49911.13
Noisy PubMedPubMed249931.17
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1365, + 1404, + 1365, + 1404, + 1580, + 297, + 1580 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 966, + 1402, + 966, + 1402, + 1090, + 299, + 1090 + ], + "score": 0.978 + }, + { + "category_id": 6, + "poly": [ + 296, + 252, + 1398, + 252, + 1398, + 313, + 296, + 313 + ], + "score": 0.926 + }, + { + "category_id": 6, + "poly": [ + 293, + 538, + 1403, + 538, + 1403, + 599, + 293, + 599 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 299, + 850, + 727, + 850, + 727, + 883, + 299, + 883 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 298, + 1937, + 1042, + 1937, + 1042, + 1970, + 298, + 1970 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 298, + 910, + 507, + 910, + 507, + 943, + 298, + 943 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 325, + 2005, + 624, + 2005, + 624, + 2034, + 325, + 2034 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.866 + }, + { + "category_id": 0, + "poly": [ + 298, + 1880, + 742, + 1880, + 742, + 1912, + 298, + 1912 + ], + "score": 0.685 + }, + { + "category_id": 6, + "poly": [ + 298, + 1880, + 742, + 1880, + 742, + 1912, + 298, + 1912 + ], + "score": 0.233 + }, + { + "category_id": 13, + "poly": [ + 625, + 1747, + 1045, + 1747, + 1045, + 1781, + 625, + 1781 + ], + "score": 0.93, + "latex": "\\lambda ^ { - 1 } = ( \\bar { 1 ^ { - } } \\tilde { \\mu } ) ^ { - 1 } \\approx \\bar { 1 ^ { + } } 9 . 5 7 \\times \\bar { 1 0 ^ { - 3 } }" + }, + { + "category_id": 13, + "poly": [ + 868, + 1257, + 1298, + 1257, + 1298, + 1291, + 868, + 1291 + ], + "score": 0.92, + "latex": "\\lambda ^ { - 1 } = ( \\bar { 1 - \\mu } ) ^ { - 1 } \\approx \\bar { 1 } + 3 . 6 2 \\times \\bar { 1 0 ^ { - 3 } }" + }, + { + "category_id": 13, + "poly": [ + 986, + 1486, + 1393, + 1486, + 1393, + 1522, + 986, + 1522 + ], + "score": 0.92, + "latex": "\\lambda ^ { - 1 } = ( 1 - \\dot { \\tilde { \\mu } } ) ^ { - 1 } \\approx 1 + \\dot { 1 } . 2 5 \\times 1 0 ^ { - \\dot { 3 } }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1487, + 487, + 1487, + 487, + 1520, + 297, + 1520 + ], + "score": 0.92, + "latex": "\\tilde { \\mu } = 1 . 2 5 \\times 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1716, + 1223, + 1716, + 1223, + 1748, + 1019, + 1748 + ], + "score": 0.9, + "latex": "\\tilde { \\mu } = 9 . 4 8 \\times 1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 815, + 251, + 864, + 251, + 864, + 282, + 815, + 282 + ], + "score": 0.89, + "latex": "\\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1265, + 1228, + 1404, + 1228, + 1404, + 1258, + 1265, + 1258 + ], + "score": 0.89, + "latex": "\\tilde { \\mu } = 3 . 6 2 \\times" + }, + { + "category_id": 13, + "poly": [ + 297, + 1256, + 357, + 1256, + 357, + 1287, + 297, + 1287 + ], + "score": 0.89, + "latex": "1 0 ^ { - 3 }" + }, + { + "category_id": 13, + "poly": [ + 1116, + 538, + 1165, + 538, + 1165, + 567, + 1116, + 567 + ], + "score": 0.89, + "latex": "\\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 496, + 1319, + 719, + 1319, + 719, + 1352, + 496, + 1352 + ], + "score": 0.88, + "latex": "8 1 8 / 2 7 0 8 = 3 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 375, + 1548, + 595, + 1548, + 595, + 1581, + 375, + 1581 + ], + "score": 0.87, + "latex": "7 0 1 / 3 3 1 2 = \\hat { 2 } 1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 324, + 1809, + 574, + 1809, + 574, + 1842, + 324, + 1842 + ], + "score": 0.85, + "latex": "7 8 7 5 / 1 9 7 1 7 = 3 9 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 703, + 1781, + 733, + 1781, + 733, + 1807, + 703, + 1807 + ], + "score": 0.7, + "latex": "2 ^ { \\circ }" + }, + { + "category_id": 13, + "poly": [ + 1301, + 1658, + 1332, + 1658, + 1332, + 1685, + 1301, + 1685 + ], + "score": 0.5, + "latex": "2 ^ { \\circ }" + }, + { + "category_id": 13, + "poly": [ + 787, + 1027, + 882, + 1027, + 882, + 1060, + 787, + 1060 + ], + "score": 0.32, + "latex": "( 2 0 1 7 ) ^ { \\hat { 1 } 2 }" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 247.0, + 814.0, + 247.0, + 814.0, + 289.0, + 291.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 865.0, + 247.0, + 1403.0, + 247.0, + 1403.0, + 289.0, + 865.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 279.0, + 380.0, + 279.0, + 380.0, + 321.0, + 290.0, + 321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 536.0, + 1115.0, + 536.0, + 1115.0, + 575.0, + 293.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 536.0, + 1406.0, + 536.0, + 1406.0, + 575.0, + 1166.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 568.0, + 655.0, + 568.0, + 655.0, + 604.0, + 296.0, + 604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 849.0, + 731.0, + 849.0, + 731.0, + 885.0, + 294.0, + 885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 909.0, + 509.0, + 909.0, + 509.0, + 945.0, + 295.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1995.0, + 630.0, + 1995.0, + 630.0, + 2044.0, + 320.0, + 2044.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": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1875.0, + 745.0, + 1875.0, + 745.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1875.0, + 745.0, + 1875.0, + 745.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1102.0, + 1406.0, + 1102.0, + 1406.0, + 1143.0, + 292.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1137.0, + 1406.0, + 1137.0, + 1406.0, + 1170.0, + 294.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1169.0, + 1402.0, + 1169.0, + 1402.0, + 1199.0, + 295.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1198.0, + 1405.0, + 1198.0, + 1405.0, + 1232.0, + 295.0, + 1232.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 1264.0, + 1228.0, + 1264.0, + 1262.0, + 294.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1254.0, + 867.0, + 1254.0, + 867.0, + 1295.0, + 358.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1254.0, + 1409.0, + 1254.0, + 1409.0, + 1295.0, + 1299.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1287.0, + 1406.0, + 1287.0, + 1406.0, + 1324.0, + 294.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1319.0, + 495.0, + 1319.0, + 495.0, + 1353.0, + 295.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1319.0, + 729.0, + 1319.0, + 729.0, + 1353.0, + 720.0, + 1353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1595.0, + 1405.0, + 1595.0, + 1405.0, + 1628.0, + 295.0, + 1628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1626.0, + 1406.0, + 1626.0, + 1406.0, + 1662.0, + 291.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1657.0, + 1300.0, + 1657.0, + 1300.0, + 1691.0, + 295.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1333.0, + 1657.0, + 1403.0, + 1657.0, + 1403.0, + 1691.0, + 1333.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1685.0, + 1407.0, + 1685.0, + 1407.0, + 1725.0, + 290.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1716.0, + 1018.0, + 1716.0, + 1018.0, + 1752.0, + 292.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1224.0, + 1716.0, + 1406.0, + 1716.0, + 1406.0, + 1752.0, + 1224.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1744.0, + 624.0, + 1744.0, + 624.0, + 1785.0, + 291.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 1744.0, + 1407.0, + 1744.0, + 1407.0, + 1785.0, + 1046.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1775.0, + 702.0, + 1775.0, + 702.0, + 1814.0, + 292.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 1775.0, + 1406.0, + 1775.0, + 1406.0, + 1814.0, + 734.0, + 1814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1808.0, + 323.0, + 1808.0, + 323.0, + 1842.0, + 292.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1808.0, + 583.0, + 1808.0, + 583.0, + 1842.0, + 575.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1364.0, + 1406.0, + 1364.0, + 1406.0, + 1402.0, + 294.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1396.0, + 1405.0, + 1396.0, + 1405.0, + 1431.0, + 292.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1426.0, + 1404.0, + 1426.0, + 1404.0, + 1463.0, + 292.0, + 1463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1458.0, + 1402.0, + 1458.0, + 1402.0, + 1492.0, + 292.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1482.0, + 296.0, + 1482.0, + 296.0, + 1523.0, + 290.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 488.0, + 1482.0, + 985.0, + 1482.0, + 985.0, + 1523.0, + 488.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1482.0, + 1405.0, + 1482.0, + 1405.0, + 1523.0, + 1394.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1516.0, + 1406.0, + 1516.0, + 1406.0, + 1555.0, + 292.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1548.0, + 374.0, + 1548.0, + 374.0, + 1581.0, + 292.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 596.0, + 1548.0, + 604.0, + 1548.0, + 604.0, + 1581.0, + 596.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 964.0, + 1406.0, + 964.0, + 1406.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 996.0, + 1406.0, + 996.0, + 1406.0, + 1032.0, + 294.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1026.0, + 786.0, + 1026.0, + 786.0, + 1065.0, + 293.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1026.0, + 1407.0, + 1026.0, + 1407.0, + 1065.0, + 883.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1061.0, + 903.0, + 1061.0, + 903.0, + 1093.0, + 295.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1936.0, + 1044.0, + 1936.0, + 1044.0, + 1972.0, + 297.0, + 1972.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 23, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1426, + 1404, + 1426, + 1404, + 1672, + 297, + 1672 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1105, + 1404, + 1105, + 1404, + 1413, + 297, + 1413 + ], + "score": 0.977 + }, + { + "category_id": 3, + "poly": [ + 346, + 240, + 1352, + 240, + 1352, + 899, + 346, + 899 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1764, + 1403, + 1764, + 1403, + 1949, + 298, + 1949 + ], + "score": 0.974 + }, + { + "category_id": 4, + "poly": [ + 297, + 952, + 1404, + 952, + 1404, + 1044, + 297, + 1044 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 303, + 1978, + 1404, + 1978, + 1404, + 2033, + 303, + 2033 + ], + "score": 0.925 + }, + { + "category_id": 0, + "poly": [ + 300, + 1708, + 683, + 1708, + 683, + 1740, + 300, + 1740 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 815, + 76, + 815, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.861 + }, + { + "category_id": 13, + "poly": [ + 1167, + 1548, + 1374, + 1548, + 1374, + 1581, + 1167, + 1581 + ], + "score": 0.93, + "latex": "\\lambda ^ { - 1 } = { \\bf \\bar { \\Phi } } ( 1 - \\bar { \\tilde { \\mu } } ) ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 382, + 1547, + 525, + 1547, + 525, + 1578, + 382, + 1578 + ], + "score": 0.93, + "latex": "1 . \\dot { 1 1 } \\times 1 0 ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 946, + 1379, + 1205, + 1379, + 1205, + 1414, + 946, + 1414 + ], + "score": 0.92, + "latex": "\\lambda = \\bar { ( 1 - \\mu ) } ^ { - 1 } \\approx 1 . 1 5" + }, + { + "category_id": 13, + "poly": [ + 297, + 1317, + 586, + 1317, + 586, + 1353, + 297, + 1353 + ], + "score": 0.92, + "latex": "\\lambda ^ { - 1 } = ( 1 - \\tilde { \\mu } ) ^ { - 1 } \\approx 1 . 1 1" + }, + { + "category_id": 13, + "poly": [ + 699, + 1379, + 896, + 1379, + 896, + 1413, + 699, + 1413 + ], + "score": 0.92, + "latex": "\\tilde { \\mu } \\approx 1 . \\bar { 3 } 2 \\times 1 0 ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 775, + 1547, + 919, + 1547, + 919, + 1578, + 775, + 1578 + ], + "score": 0.91, + "latex": "1 . 4 3 \\times 1 0 ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1186, + 1258, + 1393, + 1258, + 1393, + 1290, + 1186, + 1290 + ], + "score": 0.91, + "latex": "\\tilde { \\mu } \\approx 9 . 6 2 \\times 1 0 ^ { - 2 }" + }, + { + "category_id": 13, + "poly": [ + 563, + 1382, + 585, + 1382, + 585, + 1413, + 563, + 1413 + ], + "score": 0.82, + "latex": "\\tilde { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 634, + 1382, + 654, + 1382, + 654, + 1409, + 634, + 1409 + ], + "score": 0.78, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 1249, + 1520, + 1270, + 1520, + 1270, + 1548, + 1249, + 1548 + ], + "score": 0.73, + "latex": "\\tilde { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1922, + 1157, + 1922, + 1157, + 1944, + 1139, + 1944 + ], + "score": 0.62, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 240.0, + 424.0, + 240.0, + 424.0, + 278.0, + 370.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 241.0, + 949.0, + 241.0, + 949.0, + 278.0, + 894.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 267.0, + 530.0, + 267.0, + 530.0, + 295.0, + 477.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 263.0, + 1056.0, + 263.0, + 1056.0, + 297.0, + 999.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 298.0, + 425.0, + 298.0, + 425.0, + 446.0, + 344.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 290.0, + 628.0, + 290.0, + 628.0, + 344.0, + 476.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 298.0, + 948.0, + 298.0, + 948.0, + 427.0, + 867.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 290.0, + 1153.0, + 290.0, + 1153.0, + 344.0, + 997.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 361.0, + 419.0, + 361.0, + 419.0, + 390.0, + 373.0, + 390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 359.0, + 946.0, + 359.0, + 946.0, + 392.0, + 896.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 417.0, + 422.0, + 417.0, + 422.0, + 451.0, + 372.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 414.0, + 946.0, + 414.0, + 946.0, + 451.0, + 872.0, + 451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 472.0, + 423.0, + 472.0, + 423.0, + 510.0, + 371.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 472.0, + 947.0, + 472.0, + 947.0, + 511.0, + 895.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 493.0, + 454.0, + 493.0, + 454.0, + 523.0, + 427.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 493.0, + 536.0, + 493.0, + 536.0, + 524.0, + 480.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 492.0, + 809.0, + 492.0, + 809.0, + 524.0, + 539.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 496.0, + 976.0, + 496.0, + 976.0, + 522.0, + 954.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 493.0, + 1060.0, + 493.0, + 1060.0, + 524.0, + 1005.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 492.0, + 1333.0, + 492.0, + 1333.0, + 524.0, + 1061.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 515.0, + 663.0, + 515.0, + 663.0, + 553.0, + 584.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 515.0, + 1186.0, + 515.0, + 1186.0, + 553.0, + 1108.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 585.0, + 425.0, + 585.0, + 425.0, + 627.0, + 369.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 588.0, + 947.0, + 588.0, + 947.0, + 625.0, + 894.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 612.0, + 563.0, + 612.0, + 563.0, + 642.0, + 477.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 611.0, + 1087.0, + 611.0, + 1087.0, + 643.0, + 999.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 645.0, + 423.0, + 645.0, + 423.0, + 793.0, + 344.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 477.0, + 637.0, + 613.0, + 637.0, + 613.0, + 734.0, + 477.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 645.0, + 946.0, + 645.0, + 946.0, + 776.0, + 867.0, + 776.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 637.0, + 1137.0, + 637.0, + 1137.0, + 667.0, + 1001.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 764.0, + 422.0, + 764.0, + 422.0, + 798.0, + 371.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 762.0, + 948.0, + 762.0, + 948.0, + 799.0, + 872.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 820.0, + 424.0, + 820.0, + 424.0, + 858.0, + 371.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 820.0, + 948.0, + 820.0, + 948.0, + 858.0, + 895.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 841.0, + 454.0, + 841.0, + 454.0, + 872.0, + 427.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 836.0, + 587.0, + 836.0, + 587.0, + 874.0, + 514.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 836.0, + 697.0, + 836.0, + 697.0, + 874.0, + 622.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 734.0, + 838.0, + 804.0, + 838.0, + 804.0, + 873.0, + 734.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 842.0, + 976.0, + 842.0, + 976.0, + 870.0, + 953.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 836.0, + 1111.0, + 836.0, + 1111.0, + 874.0, + 1037.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 836.0, + 1220.0, + 836.0, + 1220.0, + 874.0, + 1145.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 838.0, + 1327.0, + 838.0, + 1327.0, + 873.0, + 1258.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 865.0, + 662.0, + 865.0, + 662.0, + 900.0, + 584.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 863.0, + 1186.0, + 863.0, + 1186.0, + 901.0, + 1108.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 620.0, + 300.0, + 840.0, + 300.0, + 840.0, + 351.5, + 620.0, + 351.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 363.5, + 647.0, + 363.5, + 647.0, + 375.0, + 622.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 374.5, + 613.0, + 374.5, + 613.0, + 385.5, + 582.0, + 385.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.75, + 370.5, + 1326.75, + 370.5, + 1326.75, + 396.5, + 1027.75, + 396.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 430.0, + 1045.0, + 430.0, + 1045.0, + 445.5, + 1014.0, + 445.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 415.5, + 572.0, + 415.5, + 572.0, + 450.0, + 416.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.75, + 439.5, + 1043.75, + 439.5, + 1043.75, + 477.5, + 933.75, + 477.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 709.0, + 658.0, + 709.0, + 658.0, + 725.0, + 625.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 951.0, + 1405.0, + 951.0, + 1405.0, + 986.0, + 292.0, + 986.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 984.0, + 1404.0, + 984.0, + 1404.0, + 1017.0, + 294.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1011.0, + 726.0, + 1011.0, + 726.0, + 1047.0, + 294.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1968.0, + 1408.0, + 1968.0, + 1408.0, + 2014.0, + 319.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 458.0, + 2002.0, + 458.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1709.0, + 687.0, + 1709.0, + 687.0, + 1742.0, + 296.0, + 1742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1425.0, + 1404.0, + 1425.0, + 1404.0, + 1462.0, + 295.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 1404.0, + 1458.0, + 1404.0, + 1491.0, + 294.0, + 1491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 1404.0, + 1487.0, + 1404.0, + 1524.0, + 294.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1519.0, + 1248.0, + 1519.0, + 1248.0, + 1553.0, + 295.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 1519.0, + 1404.0, + 1519.0, + 1404.0, + 1553.0, + 1271.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1545.0, + 381.0, + 1545.0, + 381.0, + 1586.0, + 292.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 526.0, + 1545.0, + 774.0, + 1545.0, + 774.0, + 1586.0, + 526.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1545.0, + 1166.0, + 1545.0, + 1166.0, + 1586.0, + 920.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1375.0, + 1545.0, + 1407.0, + 1545.0, + 1407.0, + 1586.0, + 1375.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1578.0, + 1405.0, + 1578.0, + 1405.0, + 1617.0, + 292.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1646.0, + 292.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1638.0, + 1194.0, + 1638.0, + 1194.0, + 1674.0, + 290.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1102.0, + 1405.0, + 1102.0, + 1405.0, + 1142.0, + 294.0, + 1142.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1134.0, + 1404.0, + 1134.0, + 1404.0, + 1172.0, + 294.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1166.0, + 1406.0, + 1166.0, + 1406.0, + 1202.0, + 295.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1195.0, + 1405.0, + 1195.0, + 1405.0, + 1235.0, + 292.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1227.0, + 1406.0, + 1227.0, + 1406.0, + 1263.0, + 294.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1254.0, + 1185.0, + 1254.0, + 1185.0, + 1295.0, + 290.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1394.0, + 1254.0, + 1406.0, + 1254.0, + 1406.0, + 1295.0, + 1394.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1286.0, + 1406.0, + 1286.0, + 1406.0, + 1323.0, + 294.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1314.0, + 296.0, + 1314.0, + 296.0, + 1357.0, + 291.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 587.0, + 1314.0, + 1406.0, + 1314.0, + 1406.0, + 1357.0, + 587.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1347.0, + 1404.0, + 1347.0, + 1404.0, + 1385.0, + 292.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1378.0, + 562.0, + 1378.0, + 562.0, + 1417.0, + 291.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 1378.0, + 633.0, + 1378.0, + 633.0, + 1417.0, + 586.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 1378.0, + 698.0, + 1378.0, + 698.0, + 1417.0, + 655.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1378.0, + 945.0, + 1378.0, + 945.0, + 1417.0, + 897.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1378.0, + 1360.0, + 1378.0, + 1360.0, + 1417.0, + 1206.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1762.0, + 1407.0, + 1762.0, + 1407.0, + 1799.0, + 294.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1794.0, + 1407.0, + 1794.0, + 1407.0, + 1828.0, + 293.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1825.0, + 1404.0, + 1825.0, + 1404.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1891.0, + 292.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1921.0, + 292.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1916.0, + 1138.0, + 1916.0, + 1138.0, + 1952.0, + 293.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1916.0, + 1405.0, + 1916.0, + 1405.0, + 1952.0, + 1158.0, + 1952.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 24, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1570, + 1403, + 1570, + 1403, + 1787, + 298, + 1787 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 805, + 1404, + 805, + 1404, + 1052, + 298, + 1052 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 492, + 347, + 1208, + 347, + 1208, + 535, + 492, + 535 + ], + "score": 0.979, + "html": "
NameValue
Unit size{10,20,..., 500}
Epoch{10,20,...,100}
Optimization algorithm{SGD,MomentumSGD,Adam}
Learning rateLogUnif[10-5,10-2]
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1143, + 1404, + 1143, + 1404, + 1296, + 299, + 1296 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 593, + 1405, + 593, + 1405, + 717, + 297, + 717 + ], + "score": 0.965 + }, + { + "category_id": 1, + "poly": [ + 299, + 1387, + 1400, + 1387, + 1400, + 1480, + 299, + 1480 + ], + "score": 0.965 + }, + { + "category_id": 6, + "poly": [ + 295, + 253, + 1401, + 253, + 1401, + 346, + 295, + 346 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 304, + 1884, + 1402, + 1884, + 1402, + 1976, + 304, + 1976 + ], + "score": 0.944 + }, + { + "category_id": 2, + "poly": [ + 320, + 2006, + 1111, + 2006, + 1111, + 2034, + 320, + 2034 + ], + "score": 0.913 + }, + { + "category_id": 0, + "poly": [ + 301, + 1825, + 726, + 1825, + 726, + 1857, + 301, + 1857 + ], + "score": 0.903 + }, + { + "category_id": 0, + "poly": [ + 300, + 1332, + 623, + 1332, + 623, + 1364, + 300, + 1364 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 298, + 1087, + 519, + 1087, + 519, + 1119, + 298, + 1119 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 300, + 1517, + 611, + 1517, + 611, + 1548, + 300, + 1548 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 303, + 752, + 891, + 752, + 891, + 785, + 303, + 785 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.865 + }, + { + "category_id": 13, + "poly": [ + 389, + 684, + 565, + 684, + 565, + 719, + 389, + 719 + ], + "score": 0.93, + "latex": "\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}" + }, + { + "category_id": 13, + "poly": [ + 485, + 285, + 578, + 285, + 578, + 318, + 485, + 318 + ], + "score": 0.92, + "latex": "\\log _ { 1 0 } X" + }, + { + "category_id": 13, + "poly": [ + 435, + 622, + 484, + 622, + 484, + 653, + 435, + 653 + ], + "score": 0.92, + "latex": "\\lambda ^ { - 1 }" + }, + { + "category_id": 13, + "poly": [ + 1098, + 592, + 1280, + 592, + 1280, + 627, + 1098, + 627 + ], + "score": 0.9, + "latex": "\\{ 1 \\leq s < \\lambda ^ { - 1 } \\}" + }, + { + "category_id": 13, + "poly": [ + 614, + 625, + 735, + 625, + 735, + 654, + 614, + 654 + ], + "score": 0.9, + "latex": "s _ { 1 } = 1 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 344, + 656, + 445, + 656, + 445, + 684, + 344, + 684 + ], + "score": 0.9, + "latex": "s _ { 1 } = 1 . 1" + }, + { + "category_id": 13, + "poly": [ + 985, + 252, + 1265, + 252, + 1265, + 287, + 985, + 287 + ], + "score": 0.88, + "latex": "X \\sim \\mathrm { L o g U n i f } [ 1 0 ^ { a } , 1 0 ^ { b } ]" + }, + { + "category_id": 13, + "poly": [ + 498, + 1724, + 574, + 1724, + 574, + 1753, + 498, + 1753 + ], + "score": 0.87, + "latex": "6 4 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 719, + 1694, + 794, + 1694, + 794, + 1723, + 719, + 1723 + ], + "score": 0.87, + "latex": "6 8 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 983, + 285, + 1039, + 285, + 1039, + 317, + 983, + 317 + ], + "score": 0.87, + "latex": "[ a , b ]" + }, + { + "category_id": 13, + "poly": [ + 988, + 658, + 1017, + 658, + 1017, + 685, + 988, + 685 + ], + "score": 0.85, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 893, + 597, + 922, + 597, + 922, + 624, + 893, + 624 + ], + "score": 0.83, + "latex": "s _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 542, + 600, + 559, + 600, + 559, + 621, + 542, + 621 + ], + "score": 0.75, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 298, + 321, + 318, + 321, + 318, + 342, + 298, + 342 + ], + "score": 0.71, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1210, + 1047, + 1210, + 1047, + 1232, + 1031, + 1232 + ], + "score": 0.66, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 534, + 1180, + 551, + 1180, + 551, + 1201, + 534, + 1201 + ], + "score": 0.58, + "latex": "s" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 251.0, + 984.0, + 251.0, + 984.0, + 289.0, + 294.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 251.0, + 1405.0, + 251.0, + 1405.0, + 289.0, + 1266.0, + 289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 283.0, + 484.0, + 283.0, + 484.0, + 320.0, + 294.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 579.0, + 283.0, + 982.0, + 283.0, + 982.0, + 320.0, + 579.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 283.0, + 1406.0, + 283.0, + 1406.0, + 320.0, + 1040.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 315.0, + 1038.0, + 315.0, + 1038.0, + 349.0, + 319.0, + 349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1995.0, + 1115.0, + 1995.0, + 1115.0, + 2045.0, + 321.0, + 2045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1826.0, + 730.0, + 1826.0, + 730.0, + 1859.0, + 296.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1334.0, + 626.0, + 1334.0, + 626.0, + 1366.0, + 296.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1087.0, + 522.0, + 1087.0, + 522.0, + 1123.0, + 295.0, + 1123.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": [ + 295.0, + 1514.0, + 615.0, + 1514.0, + 615.0, + 1552.0, + 295.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 751.0, + 897.0, + 751.0, + 897.0, + 788.0, + 295.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1565.0, + 1408.0, + 1565.0, + 1408.0, + 1610.0, + 292.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1598.0, + 1404.0, + 1598.0, + 1404.0, + 1639.0, + 293.0, + 1639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1631.0, + 1405.0, + 1631.0, + 1405.0, + 1669.0, + 292.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 1405.0, + 1662.0, + 1405.0, + 1697.0, + 294.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1693.0, + 718.0, + 1693.0, + 718.0, + 1728.0, + 294.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 1693.0, + 1405.0, + 1693.0, + 1405.0, + 1728.0, + 795.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1721.0, + 497.0, + 1721.0, + 497.0, + 1760.0, + 291.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1721.0, + 1407.0, + 1721.0, + 1407.0, + 1760.0, + 575.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1755.0, + 1404.0, + 1755.0, + 1404.0, + 1790.0, + 294.0, + 1790.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 804.0, + 1405.0, + 804.0, + 1405.0, + 843.0, + 293.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 872.0, + 293.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 869.0, + 1405.0, + 869.0, + 1405.0, + 903.0, + 293.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 895.0, + 1405.0, + 895.0, + 1405.0, + 935.0, + 293.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 930.0, + 1404.0, + 930.0, + 1404.0, + 963.0, + 293.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 956.0, + 1405.0, + 956.0, + 1405.0, + 996.0, + 292.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 991.0, + 1404.0, + 991.0, + 1404.0, + 1025.0, + 294.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1021.0, + 1136.0, + 1021.0, + 1136.0, + 1055.0, + 296.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1403.0, + 1143.0, + 1403.0, + 1175.0, + 295.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1175.0, + 533.0, + 1175.0, + 533.0, + 1208.0, + 295.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1175.0, + 1404.0, + 1175.0, + 1404.0, + 1208.0, + 552.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1205.0, + 1030.0, + 1205.0, + 1030.0, + 1237.0, + 295.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1205.0, + 1405.0, + 1205.0, + 1405.0, + 1237.0, + 1048.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1235.0, + 1405.0, + 1235.0, + 1405.0, + 1268.0, + 295.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1266.0, + 953.0, + 1266.0, + 953.0, + 1300.0, + 294.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 591.0, + 541.0, + 591.0, + 541.0, + 627.0, + 294.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 591.0, + 892.0, + 591.0, + 892.0, + 627.0, + 560.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 591.0, + 1097.0, + 591.0, + 1097.0, + 627.0, + 923.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 591.0, + 1405.0, + 591.0, + 1405.0, + 627.0, + 1281.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 621.0, + 434.0, + 621.0, + 434.0, + 657.0, + 295.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 621.0, + 613.0, + 621.0, + 613.0, + 657.0, + 485.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 621.0, + 1405.0, + 621.0, + 1405.0, + 657.0, + 736.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 654.0, + 343.0, + 654.0, + 343.0, + 690.0, + 295.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 654.0, + 987.0, + 654.0, + 987.0, + 690.0, + 446.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 654.0, + 1403.0, + 654.0, + 1403.0, + 690.0, + 1018.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 682.0, + 388.0, + 682.0, + 388.0, + 719.0, + 295.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 682.0, + 575.0, + 682.0, + 575.0, + 719.0, + 566.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1385.0, + 1402.0, + 1385.0, + 1402.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1413.0, + 1405.0, + 1413.0, + 1405.0, + 1456.0, + 292.0, + 1456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1447.0, + 1291.0, + 1447.0, + 1291.0, + 1483.0, + 294.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1883.0, + 1407.0, + 1883.0, + 1407.0, + 1920.0, + 298.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1916.0, + 1405.0, + 1916.0, + 1405.0, + 1949.0, + 299.0, + 1949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1980.0, + 296.0, + 1980.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 25, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 619, + 1404, + 619, + 1404, + 744, + 298, + 744 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1258, + 1404, + 1258, + 1404, + 1503, + 297, + 1503 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 1070, + 1403, + 1070, + 1403, + 1164, + 297, + 1164 + ], + "score": 0.971 + }, + { + "category_id": 1, + "poly": [ + 299, + 890, + 1402, + 890, + 1402, + 984, + 299, + 984 + ], + "score": 0.953 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1401, + 229, + 1401, + 293, + 297, + 293 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 299, + 462, + 1402, + 462, + 1402, + 526, + 299, + 526 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 297, + 337, + 867, + 337, + 867, + 373, + 297, + 373 + ], + "score": 0.911 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 301, + 562, + 716, + 562, + 716, + 594, + 301, + 594 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 301, + 1202, + 716, + 1202, + 716, + 1233, + 301, + 1233 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 300, + 405, + 715, + 405, + 715, + 437, + 300, + 437 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 301, + 780, + 716, + 780, + 716, + 812, + 301, + 812 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 0, + "poly": [ + 300, + 837, + 676, + 837, + 676, + 869, + 300, + 869 + ], + "score": 0.846 + }, + { + "category_id": 0, + "poly": [ + 297, + 1017, + 947, + 1017, + 947, + 1049, + 297, + 1049 + ], + "score": 0.778 + }, + { + "category_id": 0, + "poly": [ + 298, + 1017, + 947, + 1017, + 947, + 1049, + 298, + 1049 + ], + "score": 0.116 + }, + { + "category_id": 13, + "poly": [ + 808, + 1410, + 1113, + 1410, + 1113, + 1444, + 808, + 1444 + ], + "score": 0.91, + "latex": "\\mathrm { { 0 . 5 2 4 } } ( p \\ = \\ 1 . { \\bar { 7 } } 7 1 \\times 1 0 ^ { - 2 } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 682, + 360, + 682, + 360, + 715, + 298, + 715 + ], + "score": 0.9, + "latex": "( p , s )" + }, + { + "category_id": 13, + "poly": [ + 295, + 1442, + 589, + 1442, + 589, + 1475, + 295, + 1475 + ], + "score": 0.82, + "latex": "0 . 6 7 9 ( p = 1 . 0 0 2 \\times 1 0 ^ { - 3 } )" + }, + { + "category_id": 13, + "poly": [ + 295, + 1410, + 604, + 1410, + 604, + 1441, + 295, + 1441 + ], + "score": 0.82, + "latex": "0 . 8 2 7 ( p { = } 6 . 8 9 0 \\times \\bar { 1 0 } ^ { - 6 } )" + }, + { + "category_id": 13, + "poly": [ + 626, + 718, + 644, + 718, + 644, + 745, + 626, + 745 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 297, + 658, + 315, + 658, + 315, + 683, + 297, + 683 + ], + "score": 0.77, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1271, + 683, + 1290, + 683, + 1290, + 709, + 1271, + 709 + ], + "score": 0.75, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 581, + 464, + 607, + 464, + 607, + 491, + 581, + 491 + ], + "score": 0.73, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 692, + 658, + 709, + 658, + 709, + 679, + 692, + 679 + ], + "score": 0.67, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 739, + 464, + 772, + 464, + 772, + 492, + 739, + 492 + ], + "score": 0.66, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 416, + 495, + 449, + 495, + 449, + 522, + 416, + 522 + ], + "score": 0.65, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 336.0, + 869.0, + 336.0, + 869.0, + 376.0, + 293.0, + 376.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": [ + 292.0, + 559.0, + 721.0, + 559.0, + 721.0, + 597.0, + 292.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1200.0, + 720.0, + 1200.0, + 720.0, + 1236.0, + 294.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 405.0, + 719.0, + 405.0, + 719.0, + 441.0, + 294.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 778.0, + 720.0, + 778.0, + 720.0, + 815.0, + 294.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 837.0, + 677.0, + 837.0, + 677.0, + 873.0, + 294.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1015.0, + 948.0, + 1015.0, + 948.0, + 1053.0, + 293.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1015.0, + 948.0, + 1015.0, + 948.0, + 1053.0, + 293.0, + 1053.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 619.0, + 1405.0, + 619.0, + 1405.0, + 656.0, + 293.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 652.0, + 296.0, + 652.0, + 296.0, + 685.0, + 292.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 652.0, + 691.0, + 652.0, + 691.0, + 685.0, + 316.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 710.0, + 652.0, + 1406.0, + 652.0, + 1406.0, + 685.0, + 710.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 682.0, + 297.0, + 682.0, + 297.0, + 717.0, + 293.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 682.0, + 1270.0, + 682.0, + 1270.0, + 717.0, + 361.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 682.0, + 1404.0, + 682.0, + 1404.0, + 717.0, + 1291.0, + 717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 714.0, + 625.0, + 714.0, + 625.0, + 747.0, + 294.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 714.0, + 784.0, + 714.0, + 784.0, + 747.0, + 645.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1257.0, + 1405.0, + 1257.0, + 1405.0, + 1297.0, + 294.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1289.0, + 1404.0, + 1289.0, + 1404.0, + 1323.0, + 295.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1318.0, + 1404.0, + 1318.0, + 1404.0, + 1357.0, + 292.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1351.0, + 1404.0, + 1351.0, + 1404.0, + 1384.0, + 292.0, + 1384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1378.0, + 1407.0, + 1378.0, + 1407.0, + 1416.0, + 291.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 1409.0, + 807.0, + 1409.0, + 807.0, + 1446.0, + 605.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1114.0, + 1409.0, + 1407.0, + 1409.0, + 1407.0, + 1446.0, + 1114.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1439.0, + 294.0, + 1439.0, + 294.0, + 1480.0, + 291.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 590.0, + 1439.0, + 1409.0, + 1439.0, + 1409.0, + 1480.0, + 590.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1471.0, + 368.0, + 1471.0, + 368.0, + 1507.0, + 292.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1068.0, + 1405.0, + 1068.0, + 1405.0, + 1107.0, + 292.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1101.0, + 1404.0, + 1101.0, + 1404.0, + 1138.0, + 294.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1132.0, + 1405.0, + 1132.0, + 1405.0, + 1169.0, + 292.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 890.0, + 1406.0, + 890.0, + 1406.0, + 927.0, + 294.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 919.0, + 1404.0, + 919.0, + 1404.0, + 960.0, + 293.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 953.0, + 753.0, + 953.0, + 753.0, + 983.0, + 297.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1403.0, + 229.0, + 1403.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 262.0, + 790.0, + 262.0, + 790.0, + 296.0, + 295.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 462.0, + 580.0, + 462.0, + 580.0, + 498.0, + 297.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 462.0, + 738.0, + 462.0, + 738.0, + 498.0, + 608.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 462.0, + 1404.0, + 462.0, + 1404.0, + 498.0, + 773.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 493.0, + 415.0, + 493.0, + 415.0, + 530.0, + 294.0, + 530.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 493.0, + 1397.0, + 493.0, + 1397.0, + 530.0, + 450.0, + 530.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 26, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 318, + 400, + 1336, + 400, + 1336, + 1750, + 318, + 1750 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 296, + 1773, + 1405, + 1773, + 1405, + 1868, + 296, + 1868 + ], + "score": 0.954 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 13, + "poly": [ + 573, + 1836, + 679, + 1836, + 679, + 1865, + 573, + 1865 + ], + "score": 0.9, + "latex": "W = 4 . 0" + }, + { + "category_id": 13, + "poly": [ + 439, + 1806, + 547, + 1806, + 547, + 1835, + 439, + 1835 + ], + "score": 0.9, + "latex": "W = 1 . 2" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1806, + 1249, + 1806, + 1249, + 1835, + 1141, + 1835 + ], + "score": 0.89, + "latex": "W = 1 . 5" + }, + { + "category_id": 13, + "poly": [ + 297, + 1836, + 403, + 1836, + 403, + 1865, + 297, + 1865 + ], + "score": 0.89, + "latex": "W = 2 . 0" + }, + { + "category_id": 13, + "poly": [ + 1016, + 1776, + 1131, + 1776, + 1131, + 1804, + 1016, + 1804 + ], + "score": 0.89, + "latex": "W = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 1278, + 1775, + 1394, + 1775, + 1394, + 1805, + 1278, + 1805 + ], + "score": 0.87, + "latex": "W = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 555, + 1776, + 581, + 1776, + 581, + 1803, + 555, + 1803 + ], + "score": 0.76, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 720, + 1776, + 753, + 1776, + 753, + 1804, + 720, + 1804 + ], + "score": 0.71, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 413.0, + 575.0, + 413.0, + 575.0, + 444.0, + 508.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 413.0, + 1122.0, + 413.0, + 1122.0, + 444.0, + 1053.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 429.0, + 374.0, + 429.0, + 374.0, + 454.0, + 332.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 751.0, + 435.0, + 781.0, + 435.0, + 781.0, + 457.0, + 751.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 429.0, + 920.0, + 429.0, + 920.0, + 454.0, + 877.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 435.0, + 1327.0, + 435.0, + 1327.0, + 457.0, + 1295.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 472.0, + 374.0, + 472.0, + 374.0, + 500.0, + 330.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 483.0, + 781.0, + 483.0, + 781.0, + 507.0, + 750.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 471.0, + 920.0, + 471.0, + 920.0, + 500.0, + 877.0, + 500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 483.0, + 1328.0, + 483.0, + 1328.0, + 506.0, + 1293.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 507.0, + 1178.0, + 507.0, + 1178.0, + 521.0, + 1164.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 515.0, + 374.0, + 515.0, + 374.0, + 542.0, + 330.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 515.0, + 920.0, + 515.0, + 920.0, + 543.0, + 877.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 524.0, + 1152.0, + 524.0, + 1152.0, + 536.0, + 1140.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 531.0, + 784.0, + 531.0, + 784.0, + 560.0, + 746.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1140.0, + 545.0, + 1152.0, + 545.0, + 1152.0, + 557.0, + 1140.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 530.0, + 1330.0, + 530.0, + 1330.0, + 557.0, + 1292.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 558.0, + 374.0, + 558.0, + 374.0, + 584.0, + 330.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 558.0, + 391.0, + 558.0, + 391.0, + 569.0, + 379.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 558.0, + 920.0, + 558.0, + 920.0, + 586.0, + 877.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 923.0, + 558.0, + 935.0, + 558.0, + 935.0, + 569.0, + 923.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 560.0, + 1116.0, + 560.0, + 1116.0, + 575.0, + 1103.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1120.0, + 571.0, + 1132.0, + 571.0, + 1132.0, + 584.0, + 1120.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 583.0, + 784.0, + 583.0, + 784.0, + 610.0, + 745.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 578.0, + 1330.0, + 578.0, + 1330.0, + 607.0, + 1292.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 602.0, + 374.0, + 602.0, + 374.0, + 628.0, + 330.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 602.0, + 920.0, + 602.0, + 920.0, + 628.0, + 877.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 645.0, + 373.0, + 645.0, + 373.0, + 670.0, + 326.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 632.0, + 784.0, + 632.0, + 784.0, + 661.0, + 746.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 645.0, + 920.0, + 645.0, + 920.0, + 672.0, + 871.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 628.0, + 1330.0, + 628.0, + 1330.0, + 655.0, + 1292.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 688.0, + 376.0, + 688.0, + 376.0, + 714.0, + 321.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 684.0, + 782.0, + 684.0, + 782.0, + 709.0, + 744.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 688.0, + 920.0, + 688.0, + 920.0, + 714.0, + 868.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 676.0, + 1330.0, + 676.0, + 1330.0, + 703.0, + 1292.0, + 703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 732.0, + 374.0, + 732.0, + 374.0, + 758.0, + 321.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 735.0, + 781.0, + 735.0, + 781.0, + 758.0, + 746.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 731.0, + 920.0, + 731.0, + 920.0, + 758.0, + 868.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 728.0, + 1328.0, + 728.0, + 1328.0, + 750.0, + 1293.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 777.0, + 374.0, + 777.0, + 374.0, + 799.0, + 329.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 777.0, + 920.0, + 777.0, + 920.0, + 799.0, + 870.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 787.0, + 727.0, + 787.0, + 727.0, + 812.0, + 355.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 788.0, + 1274.0, + 788.0, + 1274.0, + 814.0, + 904.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 865.0, + 575.0, + 865.0, + 575.0, + 895.0, + 510.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 865.0, + 1123.0, + 865.0, + 1123.0, + 895.0, + 1053.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 880.0, + 374.0, + 880.0, + 374.0, + 907.0, + 330.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 888.0, + 781.0, + 888.0, + 781.0, + 909.0, + 750.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 880.0, + 921.0, + 880.0, + 921.0, + 907.0, + 877.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 888.0, + 1327.0, + 888.0, + 1327.0, + 909.0, + 1295.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 924.0, + 374.0, + 924.0, + 374.0, + 953.0, + 330.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 924.0, + 920.0, + 924.0, + 920.0, + 951.0, + 877.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 936.0, + 781.0, + 936.0, + 781.0, + 959.0, + 750.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 935.0, + 1330.0, + 935.0, + 1330.0, + 962.0, + 1292.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 966.0, + 374.0, + 966.0, + 374.0, + 993.0, + 330.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 966.0, + 920.0, + 966.0, + 920.0, + 995.0, + 877.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 983.0, + 784.0, + 983.0, + 784.0, + 1010.0, + 748.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 984.0, + 1330.0, + 984.0, + 1330.0, + 1012.0, + 1292.0, + 1012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1010.0, + 374.0, + 1010.0, + 374.0, + 1037.0, + 330.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1010.0, + 920.0, + 1010.0, + 920.0, + 1039.0, + 877.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1033.0, + 784.0, + 1033.0, + 784.0, + 1060.0, + 748.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1034.0, + 1330.0, + 1034.0, + 1330.0, + 1061.0, + 1292.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1054.0, + 376.0, + 1054.0, + 376.0, + 1080.0, + 330.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1054.0, + 920.0, + 1054.0, + 920.0, + 1081.0, + 877.0, + 1081.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1096.0, + 373.0, + 1096.0, + 373.0, + 1123.0, + 321.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1081.0, + 784.0, + 1081.0, + 784.0, + 1110.0, + 746.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1098.0, + 918.0, + 1098.0, + 918.0, + 1123.0, + 868.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1087.0, + 1328.0, + 1087.0, + 1328.0, + 1110.0, + 1293.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1140.0, + 374.0, + 1140.0, + 374.0, + 1166.0, + 323.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1132.0, + 781.0, + 1132.0, + 781.0, + 1157.0, + 750.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1140.0, + 920.0, + 1140.0, + 920.0, + 1167.0, + 868.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1135.0, + 1330.0, + 1135.0, + 1330.0, + 1163.0, + 1292.0, + 1163.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1184.0, + 373.0, + 1184.0, + 373.0, + 1209.0, + 321.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1182.0, + 781.0, + 1182.0, + 781.0, + 1205.0, + 746.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1184.0, + 920.0, + 1184.0, + 920.0, + 1209.0, + 868.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1185.0, + 1330.0, + 1185.0, + 1330.0, + 1212.0, + 1292.0, + 1212.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1229.0, + 373.0, + 1229.0, + 373.0, + 1250.0, + 324.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1226.0, + 920.0, + 1226.0, + 920.0, + 1252.0, + 868.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1223.0, + 939.0, + 1223.0, + 939.0, + 1237.0, + 924.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1241.0, + 728.0, + 1241.0, + 728.0, + 1265.0, + 358.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1240.0, + 1274.0, + 1240.0, + 1274.0, + 1264.0, + 904.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1320.0, + 575.0, + 1320.0, + 575.0, + 1345.0, + 510.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1320.0, + 1122.0, + 1320.0, + 1122.0, + 1345.0, + 1056.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1332.0, + 374.0, + 1332.0, + 374.0, + 1359.0, + 330.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1333.0, + 921.0, + 1333.0, + 921.0, + 1359.0, + 877.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1295.0, + 1354.0, + 1328.0, + 1354.0, + 1328.0, + 1377.0, + 1295.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1376.0, + 374.0, + 1376.0, + 374.0, + 1403.0, + 330.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1374.0, + 920.0, + 1374.0, + 920.0, + 1401.0, + 877.0, + 1401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1388.0, + 784.0, + 1388.0, + 784.0, + 1415.0, + 748.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1394.0, + 1330.0, + 1394.0, + 1330.0, + 1421.0, + 1293.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1419.0, + 374.0, + 1419.0, + 374.0, + 1445.0, + 330.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1419.0, + 920.0, + 1419.0, + 920.0, + 1445.0, + 877.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1438.0, + 784.0, + 1438.0, + 784.0, + 1465.0, + 748.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1438.0, + 1328.0, + 1438.0, + 1328.0, + 1460.0, + 1293.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1462.0, + 374.0, + 1462.0, + 374.0, + 1489.0, + 330.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1462.0, + 920.0, + 1462.0, + 920.0, + 1490.0, + 877.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1487.0, + 784.0, + 1487.0, + 784.0, + 1516.0, + 748.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1477.0, + 1330.0, + 1477.0, + 1330.0, + 1505.0, + 1292.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1505.0, + 374.0, + 1505.0, + 374.0, + 1533.0, + 330.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1505.0, + 920.0, + 1505.0, + 920.0, + 1533.0, + 877.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1519.0, + 1330.0, + 1519.0, + 1330.0, + 1546.0, + 1292.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1549.0, + 374.0, + 1549.0, + 374.0, + 1575.0, + 321.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1539.0, + 784.0, + 1539.0, + 784.0, + 1567.0, + 748.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1549.0, + 920.0, + 1549.0, + 920.0, + 1575.0, + 868.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1560.0, + 1330.0, + 1560.0, + 1330.0, + 1587.0, + 1292.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1595.0, + 373.0, + 1595.0, + 373.0, + 1616.0, + 323.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1592.0, + 781.0, + 1592.0, + 781.0, + 1616.0, + 750.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1595.0, + 918.0, + 1595.0, + 918.0, + 1616.0, + 870.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1602.0, + 1330.0, + 1602.0, + 1330.0, + 1629.0, + 1292.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1635.0, + 374.0, + 1635.0, + 374.0, + 1661.0, + 323.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1643.0, + 781.0, + 1643.0, + 781.0, + 1666.0, + 748.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 1635.0, + 920.0, + 1635.0, + 920.0, + 1661.0, + 870.0, + 1661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1292.0, + 1643.0, + 1330.0, + 1643.0, + 1330.0, + 1670.0, + 1292.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1681.0, + 373.0, + 1681.0, + 373.0, + 1702.0, + 323.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1678.0, + 920.0, + 1678.0, + 920.0, + 1703.0, + 868.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1693.0, + 727.0, + 1693.0, + 727.0, + 1717.0, + 358.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 904.0, + 1693.0, + 1274.0, + 1693.0, + 1274.0, + 1717.0, + 904.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 495.0, + 1214.0, + 495.0, + 1214.0, + 513.0, + 1177.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1338.5, + 784.0, + 1338.5, + 784.0, + 1361.5, + 746.0, + 1361.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1774.0, + 554.0, + 1774.0, + 554.0, + 1808.0, + 295.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1774.0, + 719.0, + 1774.0, + 719.0, + 1808.0, + 582.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1774.0, + 1015.0, + 1774.0, + 1015.0, + 1808.0, + 754.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1774.0, + 1277.0, + 1774.0, + 1277.0, + 1808.0, + 1132.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1774.0, + 1402.0, + 1774.0, + 1402.0, + 1808.0, + 1395.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1805.0, + 438.0, + 1805.0, + 438.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1805.0, + 1140.0, + 1805.0, + 1140.0, + 1839.0, + 548.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1805.0, + 1403.0, + 1805.0, + 1403.0, + 1839.0, + 1250.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1833.0, + 572.0, + 1833.0, + 572.0, + 1869.0, + 404.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1833.0, + 905.0, + 1833.0, + 905.0, + 1869.0, + 680.0, + 1869.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": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 27, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 319, + 399, + 1335, + 399, + 1335, + 1751, + 319, + 1751 + ], + "score": 0.962 + }, + { + "category_id": 4, + "poly": [ + 297, + 1773, + 1405, + 1773, + 1405, + 1868, + 297, + 1868 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 865, + 2088, + 865, + 2113, + 834, + 2113 + ], + "score": 0.859 + }, + { + "category_id": 13, + "poly": [ + 573, + 1836, + 679, + 1836, + 679, + 1865, + 573, + 1865 + ], + "score": 0.9, + "latex": "W = 4 . 0" + }, + { + "category_id": 13, + "poly": [ + 439, + 1806, + 547, + 1806, + 547, + 1835, + 439, + 1835 + ], + "score": 0.9, + "latex": "W = 1 . 2" + }, + { + "category_id": 13, + "poly": [ + 1141, + 1806, + 1249, + 1806, + 1249, + 1835, + 1141, + 1835 + ], + "score": 0.89, + "latex": "W = 1 . 5" + }, + { + "category_id": 13, + "poly": [ + 1016, + 1776, + 1131, + 1776, + 1131, + 1804, + 1016, + 1804 + ], + "score": 0.89, + "latex": "W = 0 . 5" + }, + { + "category_id": 13, + "poly": [ + 297, + 1836, + 403, + 1836, + 403, + 1865, + 297, + 1865 + ], + "score": 0.89, + "latex": "W = 2 . 0" + }, + { + "category_id": 13, + "poly": [ + 1278, + 1775, + 1394, + 1775, + 1394, + 1804, + 1278, + 1804 + ], + "score": 0.87, + "latex": "W = 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 555, + 1776, + 581, + 1776, + 581, + 1803, + 555, + 1803 + ], + "score": 0.76, + "latex": "V" + }, + { + "category_id": 13, + "poly": [ + 720, + 1776, + 753, + 1776, + 753, + 1804, + 720, + 1804 + ], + "score": 0.71, + "latex": "W" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 416.0, + 574.0, + 416.0, + 574.0, + 441.0, + 510.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 413.0, + 1123.0, + 413.0, + 1123.0, + 443.0, + 1054.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 429.0, + 374.0, + 429.0, + 374.0, + 455.0, + 331.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 435.0, + 782.0, + 435.0, + 782.0, + 458.0, + 750.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 429.0, + 919.0, + 429.0, + 919.0, + 455.0, + 877.0, + 455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 435.0, + 1327.0, + 435.0, + 1327.0, + 458.0, + 1296.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 450.0, + 976.0, + 450.0, + 976.0, + 465.0, + 962.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 465.0, + 994.0, + 465.0, + 994.0, + 479.0, + 980.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 472.0, + 374.0, + 472.0, + 374.0, + 499.0, + 331.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 482.0, + 783.0, + 482.0, + 783.0, + 509.0, + 747.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 472.0, + 919.0, + 472.0, + 919.0, + 499.0, + 877.0, + 499.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1296.0, + 484.0, + 1327.0, + 484.0, + 1327.0, + 508.0, + 1296.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 514.0, + 374.0, + 514.0, + 374.0, + 543.0, + 331.0, + 543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 514.0, + 919.0, + 514.0, + 919.0, + 541.0, + 877.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 534.0, + 785.0, + 534.0, + 785.0, + 561.0, + 748.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 532.0, + 1330.0, + 532.0, + 1330.0, + 559.0, + 1291.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 558.0, + 374.0, + 558.0, + 374.0, + 585.0, + 331.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 558.0, + 919.0, + 558.0, + 919.0, + 586.0, + 877.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 401.0, + 582.0, + 415.0, + 582.0, + 415.0, + 593.0, + 401.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 585.0, + 785.0, + 585.0, + 785.0, + 614.0, + 747.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 583.0, + 1330.0, + 583.0, + 1330.0, + 611.0, + 1291.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 602.0, + 374.0, + 602.0, + 374.0, + 627.0, + 331.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 602.0, + 919.0, + 602.0, + 919.0, + 627.0, + 877.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 645.0, + 374.0, + 645.0, + 374.0, + 671.0, + 322.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 635.0, + 785.0, + 635.0, + 785.0, + 664.0, + 745.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 645.0, + 918.0, + 645.0, + 918.0, + 671.0, + 868.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 633.0, + 1330.0, + 633.0, + 1330.0, + 661.0, + 1293.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 688.0, + 374.0, + 688.0, + 374.0, + 714.0, + 322.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 686.0, + 785.0, + 686.0, + 785.0, + 714.0, + 747.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 688.0, + 919.0, + 688.0, + 919.0, + 715.0, + 869.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 683.0, + 1330.0, + 683.0, + 1330.0, + 710.0, + 1291.0, + 710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 732.0, + 374.0, + 732.0, + 374.0, + 757.0, + 322.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 747.0, + 654.0, + 747.0, + 654.0, + 759.0, + 642.0, + 759.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 738.0, + 783.0, + 738.0, + 783.0, + 765.0, + 747.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 730.0, + 919.0, + 730.0, + 919.0, + 757.0, + 869.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 733.0, + 1330.0, + 733.0, + 1330.0, + 760.0, + 1291.0, + 760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 777.0, + 374.0, + 777.0, + 374.0, + 798.0, + 324.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 777.0, + 919.0, + 777.0, + 919.0, + 798.0, + 869.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 789.0, + 728.0, + 789.0, + 728.0, + 812.0, + 358.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 788.0, + 1274.0, + 788.0, + 1274.0, + 812.0, + 906.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 866.0, + 575.0, + 866.0, + 575.0, + 897.0, + 509.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 868.0, + 1121.0, + 868.0, + 1121.0, + 893.0, + 1056.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 881.0, + 375.0, + 881.0, + 375.0, + 907.0, + 331.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 887.0, + 782.0, + 887.0, + 782.0, + 909.0, + 750.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 881.0, + 921.0, + 881.0, + 921.0, + 909.0, + 877.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 887.0, + 1327.0, + 887.0, + 1327.0, + 909.0, + 1297.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 912.0, + 982.0, + 912.0, + 982.0, + 924.0, + 970.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 924.0, + 374.0, + 924.0, + 374.0, + 952.0, + 331.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 937.0, + 459.0, + 937.0, + 459.0, + 949.0, + 445.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 934.0, + 785.0, + 934.0, + 785.0, + 962.0, + 748.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 922.0, + 919.0, + 922.0, + 919.0, + 951.0, + 877.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 934.0, + 1330.0, + 934.0, + 1330.0, + 962.0, + 1294.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 949.0, + 1009.0, + 949.0, + 1009.0, + 962.0, + 997.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 968.0, + 374.0, + 968.0, + 374.0, + 993.0, + 331.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 968.0, + 921.0, + 968.0, + 921.0, + 993.0, + 877.0, + 993.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 984.0, + 785.0, + 984.0, + 785.0, + 1013.0, + 748.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 983.0, + 1330.0, + 983.0, + 1330.0, + 1011.0, + 1294.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1010.0, + 374.0, + 1010.0, + 374.0, + 1037.0, + 331.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1010.0, + 919.0, + 1010.0, + 919.0, + 1037.0, + 877.0, + 1037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1034.0, + 785.0, + 1034.0, + 785.0, + 1061.0, + 747.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1033.0, + 1330.0, + 1033.0, + 1330.0, + 1060.0, + 1293.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1054.0, + 374.0, + 1054.0, + 374.0, + 1080.0, + 331.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1054.0, + 919.0, + 1054.0, + 919.0, + 1080.0, + 877.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1084.0, + 785.0, + 1084.0, + 785.0, + 1111.0, + 747.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1083.0, + 1330.0, + 1083.0, + 1330.0, + 1110.0, + 1293.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1096.0, + 374.0, + 1096.0, + 374.0, + 1123.0, + 322.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1096.0, + 919.0, + 1096.0, + 919.0, + 1123.0, + 868.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1140.0, + 374.0, + 1140.0, + 374.0, + 1166.0, + 322.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1134.0, + 785.0, + 1134.0, + 785.0, + 1161.0, + 747.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1140.0, + 919.0, + 1140.0, + 919.0, + 1167.0, + 868.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1151.0, + 1154.0, + 1164.0, + 1154.0, + 1164.0, + 1166.0, + 1151.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1134.0, + 1329.0, + 1134.0, + 1329.0, + 1157.0, + 1293.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1182.0, + 374.0, + 1182.0, + 374.0, + 1210.0, + 322.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1184.0, + 785.0, + 1184.0, + 785.0, + 1211.0, + 747.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1182.0, + 919.0, + 1182.0, + 919.0, + 1210.0, + 868.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1184.0, + 1329.0, + 1184.0, + 1329.0, + 1207.0, + 1293.0, + 1207.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1228.0, + 372.0, + 1228.0, + 372.0, + 1250.0, + 320.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1228.0, + 918.0, + 1228.0, + 918.0, + 1250.0, + 866.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1241.0, + 728.0, + 1241.0, + 728.0, + 1266.0, + 354.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1241.0, + 1274.0, + 1241.0, + 1274.0, + 1266.0, + 900.0, + 1266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1317.0, + 577.0, + 1317.0, + 577.0, + 1347.0, + 509.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 1317.0, + 1123.0, + 1317.0, + 1123.0, + 1347.0, + 1054.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1334.0, + 374.0, + 1334.0, + 374.0, + 1359.0, + 331.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1334.0, + 921.0, + 1334.0, + 921.0, + 1359.0, + 877.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 1355.0, + 782.0, + 1355.0, + 782.0, + 1379.0, + 750.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1374.0, + 374.0, + 1374.0, + 374.0, + 1403.0, + 331.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1374.0, + 919.0, + 1374.0, + 919.0, + 1402.0, + 877.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1297.0, + 1371.0, + 1329.0, + 1371.0, + 1329.0, + 1396.0, + 1297.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1400.0, + 785.0, + 1400.0, + 785.0, + 1427.0, + 748.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1418.0, + 374.0, + 1418.0, + 374.0, + 1446.0, + 331.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1418.0, + 921.0, + 1418.0, + 921.0, + 1446.0, + 877.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1426.0, + 1329.0, + 1426.0, + 1329.0, + 1449.0, + 1294.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1446.0, + 785.0, + 1446.0, + 785.0, + 1474.0, + 748.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1462.0, + 374.0, + 1462.0, + 374.0, + 1489.0, + 331.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1461.0, + 919.0, + 1461.0, + 919.0, + 1489.0, + 877.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1293.0, + 1476.0, + 1330.0, + 1476.0, + 1330.0, + 1503.0, + 1293.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1499.0, + 565.0, + 1499.0, + 565.0, + 1514.0, + 551.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1492.0, + 785.0, + 1492.0, + 785.0, + 1521.0, + 747.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1505.0, + 374.0, + 1505.0, + 374.0, + 1533.0, + 331.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1505.0, + 921.0, + 1505.0, + 921.0, + 1533.0, + 877.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1548.0, + 374.0, + 1548.0, + 374.0, + 1576.0, + 322.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1539.0, + 785.0, + 1539.0, + 785.0, + 1567.0, + 748.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1548.0, + 919.0, + 1548.0, + 919.0, + 1576.0, + 868.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1527.0, + 1330.0, + 1527.0, + 1330.0, + 1556.0, + 1294.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1592.0, + 374.0, + 1592.0, + 374.0, + 1618.0, + 322.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1588.0, + 783.0, + 1588.0, + 783.0, + 1610.0, + 748.0, + 1610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1592.0, + 919.0, + 1592.0, + 919.0, + 1618.0, + 868.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1580.0, + 1330.0, + 1580.0, + 1330.0, + 1607.0, + 1294.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1635.0, + 374.0, + 1635.0, + 374.0, + 1660.0, + 322.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 747.0, + 1632.0, + 783.0, + 1632.0, + 783.0, + 1659.0, + 747.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 1635.0, + 919.0, + 1635.0, + 919.0, + 1662.0, + 868.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1630.0, + 1180.0, + 1630.0, + 1180.0, + 1638.0, + 1173.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1644.0, + 1191.0, + 1644.0, + 1191.0, + 1651.0, + 1183.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1633.0, + 1330.0, + 1633.0, + 1330.0, + 1660.0, + 1291.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1680.0, + 374.0, + 1680.0, + 374.0, + 1701.0, + 324.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 1680.0, + 918.0, + 1680.0, + 918.0, + 1701.0, + 871.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1694.0, + 727.0, + 1694.0, + 727.0, + 1718.0, + 354.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1692.0, + 1273.0, + 1692.0, + 1273.0, + 1716.0, + 900.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.75, + 491.5, + 1003.75, + 491.5, + 1003.75, + 501.5, + 992.75, + 501.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 734.5, + 1200.0, + 734.5, + 1200.0, + 754.5, + 1174.0, + 754.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.75, + 908.5, + 442.75, + 908.5, + 442.75, + 927.5, + 418.75, + 927.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 519.0, + 1037.0, + 551.0, + 1037.0, + 551.0, + 1062.0, + 519.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.25, + 1113.0, + 595.25, + 1113.0, + 595.25, + 1129.5, + 575.25, + 1129.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.25, + 1161.0, + 621.25, + 1161.0, + 621.25, + 1172.0, + 612.25, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.25, + 1209.0, + 662.25, + 1209.0, + 662.25, + 1221.0, + 644.25, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 1394.0, + 1017.0, + 1394.0, + 1017.0, + 1423.0, + 989.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1772.0, + 554.0, + 1772.0, + 554.0, + 1810.0, + 294.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 582.0, + 1772.0, + 719.0, + 1772.0, + 719.0, + 1810.0, + 582.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 754.0, + 1772.0, + 1015.0, + 1772.0, + 1015.0, + 1810.0, + 754.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 1772.0, + 1277.0, + 1772.0, + 1277.0, + 1810.0, + 1132.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1395.0, + 1772.0, + 1403.0, + 1772.0, + 1403.0, + 1810.0, + 1395.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 438.0, + 1803.0, + 438.0, + 1838.0, + 294.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1803.0, + 1140.0, + 1803.0, + 1140.0, + 1838.0, + 548.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1803.0, + 1402.0, + 1803.0, + 1402.0, + 1838.0, + 1250.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1836.0, + 572.0, + 1836.0, + 572.0, + 1867.0, + 404.0, + 1867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 1836.0, + 904.0, + 1836.0, + 904.0, + 1867.0, + 680.0, + 1867.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": [ + 830.0, + 2085.0, + 870.0, + 2085.0, + 870.0, + 2123.0, + 830.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 28, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.895 + }, + { + "category_id": 5, + "poly": [ + 311, + 554, + 1389, + 554, + 1389, + 1785, + 311, + 1785 + ], + "score": 0.861, + "html": "
Noisy Cora 2500
Depth1.05310U
10.389 ± 0.1010.429 ± 0.0900.552 ± 0.0140.632 ± 0.0070.587 ± 0.008
30.273 ± 0.0510.309 ± 0.0170.580± 0.0580.661 ± 0.0030.494 ± 0.041
50.319 ± 0.0000.267 ± 0.0590.462 ± 0.0650.602 ± 0.0040.326 ± 0.029
70.261 ± 0.0760.262 ±0.0800.407 ± 0.0210.501 ± 0.0170.279 ± 0.129
90.261 ± 0.0800.319 ± 0.0000.284 ± 0.1090.443 ± 0.0140.319 ± 0.000
Noisy Cora 5000
Maximum Singular Value
Depth11.1310U
10.301 ± 0.0800.333 ± 0.0990.557 ± 0.0040.561 ± 0.0190.555 ± 0.016
30.245 ± 0.0660.247 ± 0.0760.370 ± 0.0410.587 ± 0.0090.286 ± 0.066
50.274± 0.0480.237 ± 0.0700.257 ± 0.0760.535 ± 0.0310.319 ± 0.000
70.263 ± 0.0800.297 ± 0.0310.260 ± 0.0740.339 ± 0.0600.319 ± 0.000
90.262 ± 0.0810.258 ± 0.0640.262 ± 0.0800.261 ±0.0820.318 ± 0.002
Noisy CiteSeer
Maximum Singular Value
Depth0.51.1 310U
10.461 ± 0.0180.467 ± 0.0120.490 ± 0.0160.494 ± 0.0060.495 ± 0.009
30.438 ± 0.0270.436 ± 0.0100.450 ± 0.0190.462 ± 0.0070.417 ± 0.061
50.285 ± 0.0080.371 ± 0.0160.373 ± 0.0110.425 ± 0.0070.380 ± 0.024
70.213 ± 0.0060.282 ± 0.0110.309 ± 0.0120.385 ± 0.0070.308 ± 0.012
90.182 ± 0.0050.242 ± 0.0300.303 ± 0.0210.325 ± 0.0030.229 ± 0.033
Noisy Pubmed
Maximum Singular Value
Depth0.51.1310U
10.488 ± 0.0390.636 ± 0.0060.641 ± 0.0100.632 ± 0.0020.631 ± 0.010
30.442 ± 0.0270.426 ± 0.0260.658 ± 0.0040.661 ± 0.0050.631 ± 0.013
50.431 ± 0.0330.431 ± 0.0340.561 ± 0.0830.641 ± 0.0040.424 ± 0.093
70.428 ± 0.0320.443 ± 0.0510.449 ± 0.0350.619 ± 0.0110.440 ± 0.041
90.413 ± 0.0090.438 ± 0.0390.539 ± 0.0520.569 ± 0.0420.473 ± 0.031
" + }, + { + "category_id": 6, + "poly": [ + 299, + 488, + 1402, + 488, + 1402, + 580, + 299, + 580 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 866, + 2088, + 866, + 2113, + 835, + 2113 + ], + "score": 0.856 + }, + { + "category_id": 6, + "poly": [ + 292, + 489, + 1401, + 489, + 1401, + 550, + 292, + 550 + ], + "score": 0.212 + }, + { + "category_id": 6, + "poly": [ + 762, + 1182, + 937, + 1182, + 937, + 1213, + 762, + 1213 + ], + "score": 0.15 + }, + { + "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": [ + 295.0, + 490.0, + 1402.0, + 490.0, + 1402.0, + 523.0, + 295.0, + 523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 518.0, + 1314.0, + 518.0, + 1314.0, + 554.0, + 295.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 750.0, + 550.0, + 949.0, + 550.0, + 949.0, + 584.0, + 750.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 487.0, + 1403.0, + 487.0, + 1403.0, + 525.0, + 294.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 517.0, + 1314.0, + 517.0, + 1314.0, + 556.0, + 294.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 761.0, + 1178.0, + 939.0, + 1178.0, + 939.0, + 1218.0, + 761.0, + 1218.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 29, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 325, + 588, + 1358, + 588, + 1358, + 1458, + 325, + 1458 + ], + "score": 0.976 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 4, + "poly": [ + 295, + 1499, + 1407, + 1499, + 1407, + 1680, + 295, + 1680 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.523 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.332 + }, + { + "category_id": 1, + "poly": [ + 295, + 1499, + 1407, + 1499, + 1407, + 1680, + 295, + 1680 + ], + "score": 0.159 + }, + { + "category_id": 13, + "poly": [ + 1118, + 1562, + 1354, + 1562, + 1354, + 1614, + 1118, + 1614 + ], + "score": 0.94, + "latex": "\\begin{array} { r } { y ( l ) : = \\log \\frac { d _ { \\mathcal { M } } ( X ^ { ( l ) } ) } { d _ { \\mathcal { M } } ( X ^ { ( 0 ) } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 698, + 1613, + 890, + 1613, + 890, + 1649, + 698, + 1649 + ], + "score": 0.92, + "latex": "y ( l ) : = l \\log ( s \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 974, + 1611, + 1031, + 1611, + 1031, + 1643, + 974, + 1643 + ], + "score": 0.9, + "latex": "X ^ { ( 0 ) }" + }, + { + "category_id": 13, + "poly": [ + 621, + 1502, + 666, + 1502, + 666, + 1531, + 621, + 1531 + ], + "score": 0.9, + "latex": "d _ { \\mathcal { M } }" + }, + { + "category_id": 13, + "poly": [ + 1282, + 1613, + 1335, + 1613, + 1335, + 1643, + 1282, + 1643 + ], + "score": 0.9, + "latex": "X ^ { ( l ) }" + }, + { + "category_id": 13, + "poly": [ + 905, + 1502, + 941, + 1502, + 941, + 1529, + 905, + 1529 + ], + "score": 0.8, + "latex": "\\mathcal { M }" + }, + { + "category_id": 13, + "poly": [ + 558, + 1536, + 577, + 1536, + 577, + 1564, + 558, + 1564 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1323, + 1537, + 1339, + 1537, + 1339, + 1559, + 1323, + 1559 + ], + "score": 0.78, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 297, + 1572, + 563, + 1572, + 563, + 1607, + 297, + 1607 + ], + "score": 0.72, + "latex": "0 . 1 ( \\mathrm { l e f t } ) , 1 . 0 , 1 0 ( \\mathrm { r i g h t } )" + }, + { + "category_id": 13, + "poly": [ + 446, + 1648, + 458, + 1648, + 458, + 1674, + 446, + 1674 + ], + "score": 0.69, + "latex": "l" + }, + { + "category_id": 13, + "poly": [ + 799, + 1171, + 855, + 1171, + 855, + 1194, + 799, + 1194 + ], + "score": 0.6, + "latex": "\\underline { { s } } \\mathrm { = } 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 450, + 1171, + 506, + 1171, + 506, + 1193, + 450, + 1193 + ], + "score": 0.53, + "latex": "{ \\sf S } = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 804, + 589, + 860, + 589, + 860, + 611, + 804, + 611 + ], + "score": 0.51, + "latex": "{ \\sf S } { = } 1 . 0" + }, + { + "category_id": 13, + "poly": [ + 1148, + 589, + 1214, + 589, + 1214, + 611, + 1148, + 611 + ], + "score": 0.48, + "latex": "s { = } 1 0 . 0" + }, + { + "category_id": 13, + "poly": [ + 457, + 589, + 512, + 589, + 512, + 610, + 457, + 610 + ], + "score": 0.34, + "latex": "{ \\sf S } = 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 449, + 880, + 506, + 880, + 506, + 902, + 449, + 902 + ], + "score": 0.32, + "latex": "s { = } 0 . 1" + }, + { + "category_id": 13, + "poly": [ + 1286, + 1171, + 1351, + 1171, + 1351, + 1193, + 1286, + 1193 + ], + "score": 0.29, + "latex": "= 0 . 0 2 1" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 586.0, + 456.0, + 586.0, + 456.0, + 613.0, + 374.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 586.0, + 661.0, + 586.0, + 661.0, + 613.0, + 513.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 586.0, + 803.0, + 586.0, + 803.0, + 613.0, + 722.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 586.0, + 1009.0, + 586.0, + 1009.0, + 613.0, + 861.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 586.0, + 1147.0, + 586.0, + 1147.0, + 613.0, + 1066.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 586.0, + 1363.0, + 586.0, + 1363.0, + 613.0, + 1215.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 611.0, + 387.0, + 611.0, + 387.0, + 631.0, + 368.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 617.0, + 624.0, + 617.0, + 624.0, + 644.0, + 562.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 608.0, + 739.0, + 608.0, + 739.0, + 635.0, + 700.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 617.0, + 1193.0, + 617.0, + 1193.0, + 644.0, + 1132.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 630.0, + 353.0, + 630.0, + 353.0, + 808.0, + 322.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 660.0, + 388.0, + 660.0, + 388.0, + 683.0, + 354.0, + 683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 637.0, + 643.0, + 637.0, + 643.0, + 669.0, + 563.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 629.0, + 688.0, + 629.0, + 688.0, + 808.0, + 657.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 635.0, + 741.0, + 635.0, + 741.0, + 669.0, + 690.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 630.0, + 1087.0, + 630.0, + 1087.0, + 810.0, + 1035.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 637.0, + 1214.0, + 637.0, + 1214.0, + 668.0, + 1132.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 670.0, + 740.0, + 670.0, + 740.0, + 699.0, + 689.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 708.0, + 388.0, + 708.0, + 388.0, + 734.0, + 352.0, + 734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 688.0, + 701.0, + 739.0, + 701.0, + 739.0, + 730.0, + 688.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1054.0, + 700.0, + 1087.0, + 700.0, + 1087.0, + 726.0, + 1054.0, + 726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 734.0, + 740.0, + 734.0, + 740.0, + 762.0, + 682.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 757.0, + 389.0, + 757.0, + 389.0, + 784.0, + 352.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 765.0, + 738.0, + 765.0, + 738.0, + 793.0, + 681.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 782.0, + 774.0, + 845.0, + 774.0, + 845.0, + 800.0, + 782.0, + 800.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 755.0, + 1083.0, + 755.0, + 1083.0, + 778.0, + 1065.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 346.0, + 806.0, + 393.0, + 806.0, + 393.0, + 835.0, + 346.0, + 835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 680.0, + 797.0, + 740.0, + 797.0, + 740.0, + 825.0, + 680.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 792.0, + 864.0, + 792.0, + 864.0, + 824.0, + 785.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 807.0, + 1089.0, + 807.0, + 1089.0, + 832.0, + 1063.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 826.0, + 420.0, + 826.0, + 420.0, + 856.0, + 380.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 826.0, + 479.0, + 826.0, + 479.0, + 856.0, + 438.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 499.0, + 827.0, + 538.0, + 827.0, + 538.0, + 854.0, + 499.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 826.0, + 600.0, + 826.0, + 600.0, + 856.0, + 558.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 827.0, + 661.0, + 827.0, + 661.0, + 855.0, + 613.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 826.0, + 770.0, + 826.0, + 770.0, + 856.0, + 728.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 826.0, + 829.0, + 826.0, + 829.0, + 856.0, + 787.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 827.0, + 886.0, + 827.0, + 886.0, + 854.0, + 847.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 826.0, + 948.0, + 826.0, + 948.0, + 856.0, + 906.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 827.0, + 1010.0, + 827.0, + 1010.0, + 855.0, + 961.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 828.0, + 1115.0, + 828.0, + 1115.0, + 855.0, + 1078.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 826.0, + 1177.0, + 826.0, + 1177.0, + 856.0, + 1135.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 827.0, + 1236.0, + 827.0, + 1236.0, + 854.0, + 1197.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 826.0, + 1296.0, + 826.0, + 1296.0, + 856.0, + 1255.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 827.0, + 1358.0, + 827.0, + 1358.0, + 855.0, + 1310.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 846.0, + 569.0, + 846.0, + 569.0, + 873.0, + 469.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 846.0, + 918.0, + 846.0, + 918.0, + 873.0, + 817.0, + 873.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 847.0, + 1266.0, + 847.0, + 1266.0, + 871.0, + 1163.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 877.0, + 448.0, + 877.0, + 448.0, + 904.0, + 380.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 877.0, + 656.0, + 877.0, + 656.0, + 904.0, + 507.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 877.0, + 1004.0, + 877.0, + 1004.0, + 904.0, + 729.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 877.0, + 1358.0, + 877.0, + 1358.0, + 904.0, + 1072.0, + 904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 901.0, + 389.0, + 901.0, + 389.0, + 1073.0, + 325.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 909.0, + 643.0, + 909.0, + 643.0, + 957.0, + 562.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 903.0, + 738.0, + 903.0, + 738.0, + 1101.0, + 670.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 909.0, + 992.0, + 909.0, + 992.0, + 958.0, + 910.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 923.0, + 1062.0, + 923.0, + 1062.0, + 1101.0, + 1032.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 913.0, + 1085.0, + 913.0, + 1085.0, + 968.0, + 1065.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 909.0, + 1212.0, + 909.0, + 1212.0, + 957.0, + 1131.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 976.0, + 389.0, + 976.0, + 389.0, + 1002.0, + 348.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 697.0, + 966.0, + 741.0, + 966.0, + 741.0, + 999.0, + 697.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 979.0, + 1083.0, + 979.0, + 1083.0, + 1003.0, + 1065.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1014.0, + 391.0, + 1014.0, + 391.0, + 1043.0, + 347.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 700.0, + 1006.0, + 738.0, + 1006.0, + 738.0, + 1030.0, + 700.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1014.0, + 1086.0, + 1014.0, + 1086.0, + 1035.0, + 1066.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1052.0, + 391.0, + 1052.0, + 391.0, + 1100.0, + 329.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 696.0, + 1038.0, + 739.0, + 1038.0, + 739.0, + 1100.0, + 696.0, + 1100.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1061.0, + 1045.0, + 1085.0, + 1045.0, + 1085.0, + 1099.0, + 1061.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 1089.0, + 391.0, + 1089.0, + 391.0, + 1120.0, + 345.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1120.0, + 420.0, + 1120.0, + 420.0, + 1147.0, + 381.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1117.0, + 479.0, + 1117.0, + 479.0, + 1148.0, + 438.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1117.0, + 541.0, + 1117.0, + 541.0, + 1147.0, + 498.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 1117.0, + 600.0, + 1117.0, + 600.0, + 1148.0, + 559.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 1119.0, + 661.0, + 1119.0, + 661.0, + 1147.0, + 613.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1120.0, + 768.0, + 1120.0, + 768.0, + 1147.0, + 729.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1117.0, + 829.0, + 1117.0, + 829.0, + 1148.0, + 787.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1117.0, + 889.0, + 1117.0, + 889.0, + 1147.0, + 846.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1117.0, + 948.0, + 1117.0, + 948.0, + 1148.0, + 906.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 961.0, + 1119.0, + 1010.0, + 1119.0, + 1010.0, + 1147.0, + 961.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 1120.0, + 1116.0, + 1120.0, + 1116.0, + 1147.0, + 1078.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1117.0, + 1177.0, + 1117.0, + 1177.0, + 1148.0, + 1135.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1119.0, + 1236.0, + 1119.0, + 1236.0, + 1145.0, + 1197.0, + 1145.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1117.0, + 1297.0, + 1117.0, + 1297.0, + 1148.0, + 1256.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1119.0, + 1358.0, + 1119.0, + 1358.0, + 1147.0, + 1309.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1137.0, + 570.0, + 1137.0, + 570.0, + 1164.0, + 469.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 1137.0, + 918.0, + 1137.0, + 918.0, + 1164.0, + 817.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1137.0, + 1266.0, + 1137.0, + 1266.0, + 1164.0, + 1165.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1168.0, + 449.0, + 1168.0, + 449.0, + 1194.0, + 380.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1168.0, + 654.0, + 1168.0, + 654.0, + 1194.0, + 507.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1167.0, + 798.0, + 1167.0, + 798.0, + 1195.0, + 726.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 1167.0, + 1003.0, + 1167.0, + 1003.0, + 1195.0, + 856.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1167.0, + 1285.0, + 1167.0, + 1285.0, + 1195.0, + 1069.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1352.0, + 1167.0, + 1357.0, + 1167.0, + 1357.0, + 1195.0, + 1352.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1193.0, + 387.0, + 1193.0, + 387.0, + 1214.0, + 368.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1199.0, + 624.0, + 1199.0, + 624.0, + 1226.0, + 562.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 1193.0, + 735.0, + 1193.0, + 735.0, + 1214.0, + 716.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 1199.0, + 973.0, + 1199.0, + 973.0, + 1226.0, + 910.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1192.0, + 1088.0, + 1192.0, + 1088.0, + 1215.0, + 1063.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1258.0, + 1199.0, + 1321.0, + 1199.0, + 1321.0, + 1226.0, + 1258.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1211.0, + 354.0, + 1211.0, + 354.0, + 1393.0, + 320.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1218.0, + 644.0, + 1218.0, + 644.0, + 1251.0, + 564.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 671.0, + 1212.0, + 739.0, + 1212.0, + 739.0, + 1393.0, + 671.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1218.0, + 992.0, + 1218.0, + 992.0, + 1251.0, + 912.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 1210.0, + 1052.0, + 1210.0, + 1052.0, + 1392.0, + 1015.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1234.0, + 1087.0, + 1234.0, + 1087.0, + 1262.0, + 1056.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1259.0, + 1216.0, + 1342.0, + 1216.0, + 1342.0, + 1252.0, + 1259.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1252.0, + 389.0, + 1252.0, + 389.0, + 1277.0, + 352.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1286.0, + 736.0, + 1286.0, + 736.0, + 1309.0, + 702.0, + 1309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1278.0, + 1088.0, + 1278.0, + 1088.0, + 1304.0, + 1047.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1313.0, + 388.0, + 1313.0, + 388.0, + 1335.0, + 354.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1333.0, + 736.0, + 1333.0, + 736.0, + 1355.0, + 702.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1047.0, + 1323.0, + 1086.0, + 1323.0, + 1086.0, + 1349.0, + 1047.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 1372.0, + 389.0, + 1372.0, + 389.0, + 1397.0, + 347.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1377.0, + 740.0, + 1377.0, + 740.0, + 1404.0, + 694.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1366.0, + 1088.0, + 1366.0, + 1088.0, + 1394.0, + 1040.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1408.0, + 420.0, + 1408.0, + 420.0, + 1438.0, + 380.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 1408.0, + 479.0, + 1408.0, + 479.0, + 1438.0, + 439.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1408.0, + 539.0, + 1408.0, + 539.0, + 1438.0, + 498.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 1408.0, + 598.0, + 1408.0, + 598.0, + 1438.0, + 558.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1410.0, + 661.0, + 1410.0, + 661.0, + 1437.0, + 615.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1410.0, + 768.0, + 1410.0, + 768.0, + 1437.0, + 729.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1408.0, + 827.0, + 1408.0, + 827.0, + 1438.0, + 787.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1408.0, + 888.0, + 1408.0, + 888.0, + 1438.0, + 846.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 908.0, + 1408.0, + 948.0, + 1408.0, + 948.0, + 1438.0, + 908.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 1409.0, + 1010.0, + 1409.0, + 1010.0, + 1437.0, + 962.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1077.0, + 1406.0, + 1118.0, + 1406.0, + 1118.0, + 1440.0, + 1077.0, + 1440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1135.0, + 1408.0, + 1177.0, + 1408.0, + 1177.0, + 1438.0, + 1135.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1408.0, + 1236.0, + 1408.0, + 1236.0, + 1438.0, + 1196.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 1408.0, + 1296.0, + 1408.0, + 1296.0, + 1438.0, + 1256.0, + 1438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1409.0, + 1358.0, + 1409.0, + 1358.0, + 1437.0, + 1310.0, + 1437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 1428.0, + 568.0, + 1428.0, + 568.0, + 1453.0, + 468.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1427.0, + 919.0, + 1427.0, + 919.0, + 1454.0, + 815.0, + 1454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1428.0, + 1266.0, + 1428.0, + 1266.0, + 1453.0, + 1165.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 631.0, + 439.0, + 631.0, + 439.0, + 647.5, + 414.0, + 647.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.25, + 927.5, + 448.25, + 927.5, + 448.25, + 942.5, + 413.25, + 942.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.25, + 1219.5, + 792.25, + 1219.5, + 792.25, + 1236.5, + 762.25, + 1236.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 423.0, + 1231.5, + 455.0, + 1231.5, + 455.0, + 1243.5, + 423.0, + 1243.5 + ], + "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": [ + 296.0, + 1499.0, + 620.0, + 1499.0, + 620.0, + 1534.0, + 296.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1499.0, + 904.0, + 1499.0, + 904.0, + 1534.0, + 667.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1499.0, + 1403.0, + 1499.0, + 1403.0, + 1534.0, + 942.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 557.0, + 1528.0, + 557.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1528.0, + 1322.0, + 1528.0, + 1322.0, + 1568.0, + 578.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1528.0, + 1407.0, + 1528.0, + 1407.0, + 1568.0, + 1340.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 296.0, + 1561.0, + 296.0, + 1620.0, + 292.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1561.0, + 1117.0, + 1561.0, + 1117.0, + 1620.0, + 564.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1620.0, + 1355.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1612.0, + 697.0, + 1612.0, + 697.0, + 1650.0, + 293.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1612.0, + 973.0, + 1612.0, + 973.0, + 1650.0, + 891.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1612.0, + 1281.0, + 1612.0, + 1281.0, + 1650.0, + 1032.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1612.0, + 1406.0, + 1612.0, + 1406.0, + 1650.0, + 1336.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1646.0, + 445.0, + 1646.0, + 445.0, + 1681.0, + 295.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1646.0, + 776.0, + 1646.0, + 776.0, + 1681.0, + 459.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1499.0, + 620.0, + 1499.0, + 620.0, + 1534.0, + 296.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 667.0, + 1499.0, + 904.0, + 1499.0, + 904.0, + 1534.0, + 667.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 1499.0, + 1403.0, + 1499.0, + 1403.0, + 1534.0, + 942.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 557.0, + 1528.0, + 557.0, + 1568.0, + 294.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 578.0, + 1528.0, + 1322.0, + 1528.0, + 1322.0, + 1568.0, + 578.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1340.0, + 1528.0, + 1407.0, + 1528.0, + 1407.0, + 1568.0, + 1340.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1561.0, + 296.0, + 1561.0, + 296.0, + 1620.0, + 292.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1561.0, + 1117.0, + 1561.0, + 1117.0, + 1620.0, + 564.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1620.0, + 1355.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1612.0, + 697.0, + 1612.0, + 697.0, + 1650.0, + 293.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1612.0, + 973.0, + 1612.0, + 973.0, + 1650.0, + 891.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1612.0, + 1281.0, + 1612.0, + 1281.0, + 1650.0, + 1032.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1612.0, + 1406.0, + 1612.0, + 1406.0, + 1650.0, + 1336.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1646.0, + 445.0, + 1646.0, + 445.0, + 1681.0, + 295.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1646.0, + 776.0, + 1646.0, + 776.0, + 1681.0, + 459.0, + 1681.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 30, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 339, + 259, + 1357, + 259, + 1357, + 1835, + 339, + 1835 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 296, + 1863, + 1407, + 1863, + 1407, + 1989, + 296, + 1989 + ], + "score": 0.961 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.819 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2114, + 835, + 2114 + ], + "score": 0.093 + }, + { + "category_id": 13, + "poly": [ + 297, + 1925, + 373, + 1925, + 373, + 1955, + 297, + 1955 + ], + "score": 0.85, + "latex": "3 9 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 726, + 1895, + 803, + 1895, + 803, + 1924, + 726, + 1924 + ], + "score": 0.85, + "latex": "3 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1053, + 1895, + 1129, + 1895, + 1129, + 1924, + 1053, + 1924 + ], + "score": 0.84, + "latex": "2 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1159, + 928, + 1276, + 928, + 1276, + 961, + 1159, + 961 + ], + "score": 0.46, + "latex": "s = 1 0 . 0" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 277.0, + 451.0, + 277.0, + 451.0, + 328.0, + 376.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 286.0, + 1266.0, + 286.0, + 1266.0, + 329.0, + 1148.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 323.0, + 1266.0, + 323.0, + 1266.0, + 367.0, + 1148.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 336.0, + 1131.0, + 336.0, + 1131.0, + 359.0, + 1108.0, + 359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 361.0, + 450.0, + 361.0, + 450.0, + 413.0, + 376.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 361.0, + 1268.0, + 361.0, + 1268.0, + 406.0, + 1148.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 399.0, + 391.0, + 399.0, + 391.0, + 576.0, + 338.0, + 576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 400.0, + 1284.0, + 400.0, + 1284.0, + 442.0, + 1148.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 443.0, + 451.0, + 443.0, + 451.0, + 502.0, + 375.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 450.0, + 1124.0, + 450.0, + 1124.0, + 473.0, + 1110.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 441.0, + 1351.0, + 441.0, + 1351.0, + 481.0, + 1157.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 610.0, + 485.0, + 633.0, + 485.0, + 633.0, + 509.0, + 610.0, + 509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 518.0, + 907.0, + 518.0, + 907.0, + 539.0, + 895.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 532.0, + 450.0, + 532.0, + 450.0, + 583.0, + 373.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 618.0, + 450.0, + 618.0, + 450.0, + 670.0, + 376.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 691.0, + 570.0, + 691.0, + 570.0, + 738.0, + 530.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 691.0, + 712.0, + 691.0, + 712.0, + 738.0, + 670.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 691.0, + 850.0, + 691.0, + 850.0, + 740.0, + 811.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 693.0, + 988.0, + 693.0, + 988.0, + 736.0, + 955.0, + 736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 731.0, + 857.0, + 731.0, + 857.0, + 782.0, + 666.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 804.0, + 451.0, + 804.0, + 451.0, + 862.0, + 373.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 474.0, + 832.0, + 486.0, + 832.0, + 486.0, + 846.0, + 474.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 808.0, + 1266.0, + 808.0, + 1266.0, + 851.0, + 1148.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 845.0, + 1266.0, + 845.0, + 1266.0, + 888.0, + 1148.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 883.0, + 1269.0, + 883.0, + 1269.0, + 928.0, + 1150.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 917.0, + 447.0, + 917.0, + 447.0, + 1097.0, + 337.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 924.0, + 1158.0, + 924.0, + 1158.0, + 964.0, + 1149.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 924.0, + 1283.0, + 924.0, + 1283.0, + 964.0, + 1277.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 963.0, + 1351.0, + 963.0, + 1351.0, + 1002.0, + 1159.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1030.0, + 450.0, + 1030.0, + 450.0, + 1082.0, + 375.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1141.0, + 450.0, + 1141.0, + 450.0, + 1194.0, + 375.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 1211.0, + 570.0, + 1211.0, + 570.0, + 1260.0, + 530.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1211.0, + 712.0, + 1211.0, + 712.0, + 1260.0, + 670.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1211.0, + 851.0, + 1211.0, + 851.0, + 1260.0, + 811.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1211.0, + 991.0, + 1211.0, + 991.0, + 1260.0, + 953.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1253.0, + 857.0, + 1253.0, + 857.0, + 1304.0, + 666.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1328.0, + 1267.0, + 1328.0, + 1267.0, + 1375.0, + 1150.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 1372.0, + 495.0, + 1372.0, + 495.0, + 1403.0, + 465.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1367.0, + 1282.0, + 1367.0, + 1282.0, + 1410.0, + 1148.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1396.0, + 451.0, + 1396.0, + 451.0, + 1447.0, + 375.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1405.0, + 1269.0, + 1405.0, + 1269.0, + 1450.0, + 1150.0, + 1450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 338.0, + 1443.0, + 391.0, + 1443.0, + 391.0, + 1618.0, + 338.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1148.0, + 1444.0, + 1284.0, + 1444.0, + 1284.0, + 1485.0, + 1148.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1487.0, + 1133.0, + 1487.0, + 1133.0, + 1518.0, + 1107.0, + 1518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1481.0, + 1350.0, + 1481.0, + 1350.0, + 1526.0, + 1156.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1504.0, + 448.0, + 1504.0, + 448.0, + 1557.0, + 376.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1588.0, + 628.0, + 1588.0, + 628.0, + 1604.0, + 614.0, + 1604.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1615.0, + 447.0, + 1615.0, + 447.0, + 1660.0, + 373.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1735.0, + 567.0, + 1735.0, + 567.0, + 1780.0, + 534.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1733.0, + 710.0, + 1733.0, + 710.0, + 1780.0, + 670.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1731.0, + 850.0, + 1731.0, + 850.0, + 1782.0, + 811.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1733.0, + 988.0, + 1733.0, + 988.0, + 1779.0, + 955.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1775.0, + 857.0, + 1775.0, + 857.0, + 1826.0, + 666.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1864.0, + 1407.0, + 1864.0, + 1407.0, + 1900.0, + 294.0, + 1900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1895.0, + 725.0, + 1895.0, + 725.0, + 1928.0, + 295.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 1895.0, + 1052.0, + 1895.0, + 1052.0, + 1928.0, + 804.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1895.0, + 1405.0, + 1895.0, + 1405.0, + 1928.0, + 1130.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 374.0, + 1925.0, + 1405.0, + 1925.0, + 1405.0, + 1960.0, + 374.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1955.0, + 1121.0, + 1955.0, + 1121.0, + 1992.0, + 293.0, + 1992.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": [ + 830.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2125.0, + 830.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2125.0, + 829.0, + 2125.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 31, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 325, + 536, + 1377, + 536, + 1377, + 1616, + 325, + 1616 + ], + "score": 0.977 + }, + { + "category_id": 4, + "poly": [ + 295, + 1668, + 1400, + 1668, + 1400, + 1733, + 295, + 1733 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 751, + 520, + 948, + 520, + 948, + 549, + 751, + 549 + ], + "score": 0.113 + }, + { + "category_id": 15, + "poly": [ + 749.0, + 525.0, + 950.0, + 525.0, + 950.0, + 551.0, + 749.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 547.0, + 918.0, + 547.0, + 918.0, + 857.0, + 866.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 551.0, + 366.0, + 551.0, + 366.0, + 854.0, + 322.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 587.0, + 395.0, + 587.0, + 395.0, + 622.0, + 356.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 588.0, + 1087.0, + 588.0, + 1087.0, + 620.0, + 1003.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 451.0, + 590.0, + 534.0, + 590.0, + 534.0, + 620.0, + 451.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 615.0, + 953.0, + 615.0, + 953.0, + 656.0, + 897.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 613.0, + 1088.0, + 613.0, + 1088.0, + 647.0, + 1003.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 637.0, + 395.0, + 637.0, + 395.0, + 680.0, + 368.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 640.0, + 1087.0, + 640.0, + 1087.0, + 671.0, + 1005.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 672.0, + 950.0, + 672.0, + 950.0, + 707.0, + 897.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 689.0, + 397.0, + 689.0, + 397.0, + 740.0, + 367.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 724.0, + 950.0, + 724.0, + 950.0, + 761.0, + 897.0, + 761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 740.0, + 398.0, + 740.0, + 398.0, + 785.0, + 367.0, + 785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 792.0, + 393.0, + 792.0, + 393.0, + 828.0, + 369.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 780.0, + 950.0, + 780.0, + 950.0, + 815.0, + 898.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 399.0, + 833.0, + 419.0, + 833.0, + 419.0, + 858.0, + 399.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 823.0, + 565.0, + 823.0, + 565.0, + 866.0, + 516.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 825.0, + 697.0, + 825.0, + 697.0, + 865.0, + 651.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 826.0, + 827.0, + 826.0, + 827.0, + 865.0, + 783.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 831.0, + 976.0, + 831.0, + 976.0, + 860.0, + 952.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 825.0, + 1083.0, + 825.0, + 1083.0, + 865.0, + 1037.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 825.0, + 1180.0, + 825.0, + 1180.0, + 863.0, + 1134.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 825.0, + 1277.0, + 825.0, + 1277.0, + 865.0, + 1231.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 826.0, + 1370.0, + 826.0, + 1370.0, + 863.0, + 1326.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 851.0, + 664.0, + 851.0, + 664.0, + 892.0, + 551.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 855.0, + 1212.0, + 855.0, + 1212.0, + 892.0, + 1101.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 914.0, + 404.0, + 914.0, + 404.0, + 1108.0, + 322.0, + 1108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 951.0, + 543.0, + 951.0, + 543.0, + 1008.0, + 457.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 916.0, + 979.0, + 916.0, + 979.0, + 1033.0, + 871.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 973.0, + 1352.0, + 973.0, + 1352.0, + 1003.0, + 1269.0, + 1003.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 1001.0, + 543.0, + 1001.0, + 543.0, + 1034.0, + 459.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 997.0, + 1355.0, + 997.0, + 1355.0, + 1031.0, + 1267.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1024.0, + 403.0, + 1024.0, + 403.0, + 1062.0, + 352.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1028.0, + 542.0, + 1028.0, + 542.0, + 1058.0, + 457.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 1018.0, + 980.0, + 1018.0, + 980.0, + 1064.0, + 877.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1023.0, + 1356.0, + 1023.0, + 1356.0, + 1056.0, + 1268.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 1050.0, + 543.0, + 1050.0, + 543.0, + 1087.0, + 457.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1066.0, + 981.0, + 1066.0, + 981.0, + 1105.0, + 873.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1049.0, + 1355.0, + 1049.0, + 1355.0, + 1105.0, + 1270.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1087.0, + 403.0, + 1087.0, + 403.0, + 1214.0, + 325.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 1098.0, + 980.0, + 1098.0, + 980.0, + 1214.0, + 874.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1134.0, + 1272.0, + 1134.0, + 1272.0, + 1150.0, + 1232.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1101.0, + 1356.0, + 1101.0, + 1356.0, + 1160.0, + 1273.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1168.0, + 402.0, + 1168.0, + 402.0, + 1200.0, + 356.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1166.0, + 980.0, + 1166.0, + 980.0, + 1205.0, + 894.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1196.0, + 425.0, + 1196.0, + 425.0, + 1220.0, + 407.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 1188.0, + 569.0, + 1188.0, + 569.0, + 1227.0, + 523.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 1188.0, + 698.0, + 1188.0, + 698.0, + 1226.0, + 652.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 783.0, + 1189.0, + 829.0, + 1189.0, + 829.0, + 1226.0, + 783.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1194.0, + 999.0, + 1194.0, + 999.0, + 1224.0, + 975.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 1188.0, + 1103.0, + 1188.0, + 1103.0, + 1227.0, + 1056.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 1188.0, + 1194.0, + 1188.0, + 1194.0, + 1225.0, + 1142.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1188.0, + 1285.0, + 1188.0, + 1285.0, + 1226.0, + 1238.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1189.0, + 1377.0, + 1189.0, + 1377.0, + 1226.0, + 1331.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1217.0, + 667.0, + 1217.0, + 667.0, + 1253.0, + 556.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1217.0, + 1227.0, + 1217.0, + 1227.0, + 1253.0, + 1115.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1275.0, + 644.0, + 1275.0, + 644.0, + 1581.0, + 593.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1312.0, + 1082.0, + 1312.0, + 1082.0, + 1345.0, + 995.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1330.0, + 677.0, + 1330.0, + 677.0, + 1366.0, + 625.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1337.0, + 1085.0, + 1337.0, + 1085.0, + 1371.0, + 997.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1362.0, + 1085.0, + 1362.0, + 1085.0, + 1396.0, + 997.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1385.0, + 677.0, + 1385.0, + 677.0, + 1421.0, + 623.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1389.0, + 1085.0, + 1389.0, + 1085.0, + 1422.0, + 997.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1414.0, + 1082.0, + 1414.0, + 1082.0, + 1448.0, + 998.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1439.0, + 678.0, + 1439.0, + 678.0, + 1479.0, + 623.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1440.0, + 1084.0, + 1440.0, + 1084.0, + 1473.0, + 1000.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1466.0, + 1084.0, + 1466.0, + 1084.0, + 1498.0, + 998.0, + 1498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1495.0, + 676.0, + 1495.0, + 676.0, + 1532.0, + 626.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1489.0, + 1084.0, + 1489.0, + 1084.0, + 1526.0, + 997.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1526.0, + 773.0, + 1526.0, + 773.0, + 1536.0, + 763.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 803.0, + 1526.0, + 813.0, + 1526.0, + 813.0, + 1536.0, + 803.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1526.0, + 852.0, + 1526.0, + 852.0, + 1536.0, + 841.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1526.0, + 892.0, + 1526.0, + 892.0, + 1536.0, + 883.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 1526.0, + 933.0, + 1526.0, + 933.0, + 1536.0, + 918.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1517.0, + 1083.0, + 1517.0, + 1083.0, + 1550.0, + 1000.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1552.0, + 757.0, + 1552.0, + 757.0, + 1587.0, + 728.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 1553.0, + 852.0, + 1553.0, + 852.0, + 1586.0, + 824.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 1553.0, + 945.0, + 1553.0, + 945.0, + 1587.0, + 917.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1552.0, + 1040.0, + 1552.0, + 1040.0, + 1586.0, + 1011.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1576.0, + 939.0, + 1576.0, + 939.0, + 1616.0, + 827.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 1401.0, + 1668.0, + 1401.0, + 1704.0, + 295.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1699.0, + 1213.0, + 1699.0, + 1213.0, + 1735.0, + 296.0, + 1735.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": [ + 830.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2122.0, + 830.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 514.0, + 950.0, + 514.0, + 950.0, + 554.0, + 749.0, + 554.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 32, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 319, + 537, + 1370, + 537, + 1370, + 1617, + 319, + 1617 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 294, + 1668, + 1401, + 1668, + 1401, + 1734, + 294, + 1734 + ], + "score": 0.932 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 752, + 520, + 948, + 520, + 948, + 549, + 752, + 549 + ], + "score": 0.17 + }, + { + "category_id": 15, + "poly": [ + 751.0, + 528.0, + 950.0, + 528.0, + 950.0, + 551.0, + 751.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 551.0, + 926.0, + 551.0, + 926.0, + 855.0, + 883.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 557.0, + 342.0, + 557.0, + 342.0, + 855.0, + 307.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 593.0, + 534.0, + 593.0, + 534.0, + 623.0, + 450.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 612.0, + 399.0, + 612.0, + 399.0, + 650.0, + 329.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 622.0, + 939.0, + 622.0, + 939.0, + 646.0, + 918.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 625.0, + 951.0, + 625.0, + 951.0, + 639.0, + 941.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 669.0, + 399.0, + 669.0, + 399.0, + 711.0, + 341.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 662.0, + 1356.0, + 662.0, + 1356.0, + 719.0, + 1272.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 709.0, + 967.0, + 709.0, + 967.0, + 745.0, + 911.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 713.0, + 1357.0, + 713.0, + 1357.0, + 746.0, + 1272.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 342.0, + 727.0, + 399.0, + 727.0, + 399.0, + 767.0, + 342.0, + 767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 786.0, + 398.0, + 786.0, + 398.0, + 823.0, + 345.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 911.0, + 805.0, + 962.0, + 805.0, + 962.0, + 837.0, + 911.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 831.0, + 422.0, + 831.0, + 422.0, + 861.0, + 397.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 825.0, + 564.0, + 825.0, + 564.0, + 864.0, + 518.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 826.0, + 696.0, + 826.0, + 696.0, + 864.0, + 651.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 826.0, + 827.0, + 826.0, + 827.0, + 864.0, + 784.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 830.0, + 1039.0, + 830.0, + 1039.0, + 861.0, + 1016.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 830.0, + 1133.0, + 830.0, + 1133.0, + 862.0, + 1104.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 829.0, + 1224.0, + 829.0, + 1224.0, + 862.0, + 1196.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1289.0, + 830.0, + 1312.0, + 830.0, + 1312.0, + 861.0, + 1289.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 852.0, + 664.0, + 852.0, + 664.0, + 892.0, + 551.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 852.0, + 1221.0, + 852.0, + 1221.0, + 892.0, + 1108.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 915.0, + 363.0, + 915.0, + 363.0, + 1217.0, + 320.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 915.0, + 914.0, + 915.0, + 914.0, + 1217.0, + 867.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 928.0, + 404.0, + 928.0, + 404.0, + 964.0, + 353.0, + 964.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 952.0, + 1355.0, + 952.0, + 1355.0, + 982.0, + 1273.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 969.0, + 949.0, + 969.0, + 949.0, + 1004.0, + 899.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 977.0, + 1355.0, + 977.0, + 1355.0, + 1007.0, + 1272.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 989.0, + 405.0, + 989.0, + 405.0, + 1025.0, + 353.0, + 1025.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 998.0, + 810.0, + 998.0, + 810.0, + 1032.0, + 728.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1003.0, + 1354.0, + 1003.0, + 1354.0, + 1032.0, + 1275.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1026.0, + 809.0, + 1026.0, + 809.0, + 1056.0, + 726.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1028.0, + 1356.0, + 1028.0, + 1356.0, + 1058.0, + 1272.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1049.0, + 404.0, + 1049.0, + 404.0, + 1086.0, + 353.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1050.0, + 810.0, + 1050.0, + 810.0, + 1082.0, + 726.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1047.0, + 950.0, + 1047.0, + 950.0, + 1084.0, + 899.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1052.0, + 1356.0, + 1052.0, + 1356.0, + 1086.0, + 1274.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1077.0, + 810.0, + 1077.0, + 810.0, + 1107.0, + 727.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1080.0, + 1355.0, + 1080.0, + 1355.0, + 1110.0, + 1272.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1110.0, + 403.0, + 1110.0, + 403.0, + 1146.0, + 352.0, + 1146.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1103.0, + 810.0, + 1103.0, + 810.0, + 1134.0, + 729.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1275.0, + 1106.0, + 1356.0, + 1106.0, + 1356.0, + 1137.0, + 1275.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1129.0, + 950.0, + 1129.0, + 950.0, + 1164.0, + 900.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 355.0, + 1172.0, + 402.0, + 1172.0, + 402.0, + 1204.0, + 355.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1164.0, + 796.0, + 1164.0, + 796.0, + 1189.0, + 743.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1189.0, + 485.0, + 1189.0, + 485.0, + 1223.0, + 455.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.0, + 1191.0, + 579.0, + 1191.0, + 579.0, + 1222.0, + 549.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 644.0, + 1190.0, + 672.0, + 1190.0, + 672.0, + 1223.0, + 644.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 1189.0, + 766.0, + 1189.0, + 766.0, + 1225.0, + 738.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1189.0, + 1029.0, + 1189.0, + 1029.0, + 1225.0, + 1002.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1190.0, + 1125.0, + 1190.0, + 1125.0, + 1223.0, + 1096.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 1189.0, + 1218.0, + 1189.0, + 1218.0, + 1225.0, + 1189.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1190.0, + 1312.0, + 1190.0, + 1312.0, + 1225.0, + 1284.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 555.0, + 1217.0, + 666.0, + 1217.0, + 666.0, + 1253.0, + 555.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1217.0, + 1213.0, + 1217.0, + 1213.0, + 1253.0, + 1100.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1277.0, + 641.0, + 1277.0, + 641.0, + 1579.0, + 594.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 1295.0, + 676.0, + 1295.0, + 676.0, + 1330.0, + 626.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1314.0, + 1081.0, + 1314.0, + 1081.0, + 1344.0, + 1003.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1338.0, + 1083.0, + 1338.0, + 1083.0, + 1371.0, + 1002.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1363.0, + 1083.0, + 1363.0, + 1083.0, + 1397.0, + 1001.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1394.0, + 677.0, + 1394.0, + 677.0, + 1426.0, + 627.0, + 1426.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 1390.0, + 1081.0, + 1390.0, + 1081.0, + 1420.0, + 1003.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1415.0, + 1083.0, + 1415.0, + 1083.0, + 1447.0, + 1000.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1441.0, + 1083.0, + 1441.0, + 1083.0, + 1472.0, + 1000.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1467.0, + 1083.0, + 1467.0, + 1083.0, + 1500.0, + 1002.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1492.0, + 677.0, + 1492.0, + 677.0, + 1523.0, + 627.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1493.0, + 1083.0, + 1493.0, + 1083.0, + 1523.0, + 999.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1517.0, + 1084.0, + 1517.0, + 1084.0, + 1550.0, + 1000.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1551.0, + 756.0, + 1551.0, + 756.0, + 1587.0, + 728.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1554.0, + 849.0, + 1554.0, + 849.0, + 1585.0, + 825.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1551.0, + 945.0, + 1551.0, + 945.0, + 1587.0, + 916.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1553.0, + 1039.0, + 1553.0, + 1039.0, + 1586.0, + 1011.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1577.0, + 940.0, + 1577.0, + 940.0, + 1616.0, + 827.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1667.0, + 1402.0, + 1667.0, + 1402.0, + 1704.0, + 296.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 1404.0, + 1698.0, + 1404.0, + 1736.0, + 294.0, + 1736.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": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 515.0, + 950.0, + 515.0, + 950.0, + 554.0, + 749.0, + 554.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 33, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 325, + 535, + 1376, + 535, + 1376, + 1616, + 325, + 1616 + ], + "score": 0.977 + }, + { + "category_id": 4, + "poly": [ + 295, + 1668, + 1401, + 1668, + 1401, + 1733, + 295, + 1733 + ], + "score": 0.933 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.847 + }, + { + "category_id": 15, + "poly": [ + 761.0, + 524.0, + 937.0, + 524.0, + 937.0, + 551.0, + 761.0, + 551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 550.0, + 913.0, + 550.0, + 913.0, + 854.0, + 869.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 555.0, + 364.0, + 555.0, + 364.0, + 768.0, + 325.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 588.0, + 521.0, + 588.0, + 521.0, + 622.0, + 436.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 589.0, + 1086.0, + 589.0, + 1086.0, + 620.0, + 1004.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 626.0, + 378.0, + 626.0, + 378.0, + 651.0, + 358.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 631.0, + 951.0, + 631.0, + 951.0, + 667.0, + 895.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 613.0, + 1089.0, + 613.0, + 1089.0, + 672.0, + 1003.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 686.0, + 377.0, + 686.0, + 377.0, + 709.0, + 358.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 708.0, + 950.0, + 708.0, + 950.0, + 743.0, + 896.0, + 743.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 745.0, + 366.0, + 745.0, + 366.0, + 852.0, + 329.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 359.0, + 747.0, + 374.0, + 747.0, + 374.0, + 764.0, + 359.0, + 764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 801.0, + 375.0, + 801.0, + 375.0, + 827.0, + 358.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 785.0, + 948.0, + 785.0, + 948.0, + 817.0, + 898.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 385.0, + 831.0, + 410.0, + 831.0, + 410.0, + 860.0, + 385.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 465.0, + 827.0, + 511.0, + 827.0, + 511.0, + 864.0, + 465.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 826.0, + 601.0, + 826.0, + 601.0, + 864.0, + 554.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 826.0, + 691.0, + 826.0, + 691.0, + 864.0, + 646.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 735.0, + 826.0, + 780.0, + 826.0, + 780.0, + 865.0, + 735.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 828.0, + 976.0, + 828.0, + 976.0, + 861.0, + 947.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1068.0, + 826.0, + 1116.0, + 826.0, + 1116.0, + 865.0, + 1068.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 826.0, + 1244.0, + 826.0, + 1244.0, + 864.0, + 1199.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 826.0, + 1374.0, + 826.0, + 1374.0, + 864.0, + 1329.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 855.0, + 656.0, + 855.0, + 656.0, + 891.0, + 545.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1101.0, + 854.0, + 1213.0, + 854.0, + 1213.0, + 891.0, + 1101.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 911.0, + 418.0, + 911.0, + 418.0, + 1105.0, + 320.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 952.0, + 558.0, + 952.0, + 558.0, + 982.0, + 468.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 913.0, + 911.0, + 913.0, + 911.0, + 1106.0, + 868.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1020.0, + 952.0, + 1101.0, + 952.0, + 1101.0, + 983.0, + 1020.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 973.0, + 559.0, + 973.0, + 559.0, + 1010.0, + 472.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 975.0, + 966.0, + 975.0, + 966.0, + 1013.0, + 895.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 976.0, + 1104.0, + 976.0, + 1104.0, + 1009.0, + 1019.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1002.0, + 557.0, + 1002.0, + 557.0, + 1034.0, + 472.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1002.0, + 1102.0, + 1002.0, + 1102.0, + 1035.0, + 1019.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1029.0, + 419.0, + 1029.0, + 419.0, + 1067.0, + 348.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1026.0, + 558.0, + 1026.0, + 558.0, + 1060.0, + 472.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 1027.0, + 1104.0, + 1027.0, + 1104.0, + 1060.0, + 1016.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 1053.0, + 557.0, + 1053.0, + 557.0, + 1082.0, + 472.0, + 1082.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 895.0, + 1053.0, + 966.0, + 1053.0, + 966.0, + 1091.0, + 895.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1053.0, + 1104.0, + 1053.0, + 1104.0, + 1085.0, + 1018.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1090.0, + 420.0, + 1090.0, + 420.0, + 1214.0, + 327.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1086.0, + 908.0, + 1086.0, + 908.0, + 1215.0, + 872.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 1078.0, + 1104.0, + 1078.0, + 1104.0, + 1134.0, + 1018.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1132.0, + 966.0, + 1132.0, + 966.0, + 1170.0, + 896.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1194.0, + 444.0, + 1194.0, + 444.0, + 1222.0, + 419.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1189.0, + 563.0, + 1189.0, + 563.0, + 1227.0, + 514.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1189.0, + 669.0, + 1189.0, + 669.0, + 1227.0, + 621.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1189.0, + 775.0, + 1189.0, + 775.0, + 1227.0, + 729.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 1194.0, + 991.0, + 1194.0, + 991.0, + 1222.0, + 967.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1189.0, + 1095.0, + 1189.0, + 1095.0, + 1227.0, + 1048.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1189.0, + 1187.0, + 1189.0, + 1187.0, + 1227.0, + 1139.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1231.0, + 1189.0, + 1280.0, + 1189.0, + 1280.0, + 1227.0, + 1231.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1189.0, + 1378.0, + 1189.0, + 1378.0, + 1228.0, + 1317.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 1217.0, + 674.0, + 1217.0, + 674.0, + 1253.0, + 562.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 1217.0, + 1219.0, + 1217.0, + 1219.0, + 1253.0, + 1107.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 1276.0, + 657.0, + 1276.0, + 657.0, + 1464.0, + 609.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1312.0, + 829.0, + 1312.0, + 829.0, + 1345.0, + 746.0, + 1345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1328.0, + 693.0, + 1328.0, + 693.0, + 1363.0, + 638.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1337.0, + 830.0, + 1337.0, + 830.0, + 1372.0, + 745.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1363.0, + 831.0, + 1363.0, + 831.0, + 1396.0, + 743.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1391.0, + 829.0, + 1391.0, + 829.0, + 1421.0, + 746.0, + 1421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 1424.0, + 692.0, + 1424.0, + 692.0, + 1459.0, + 636.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1415.0, + 829.0, + 1415.0, + 829.0, + 1447.0, + 746.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 748.0, + 1441.0, + 831.0, + 1441.0, + 831.0, + 1474.0, + 748.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1450.0, + 653.0, + 1450.0, + 653.0, + 1578.0, + 615.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 746.0, + 1468.0, + 816.0, + 1468.0, + 816.0, + 1497.0, + 746.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1474.0, + 823.0, + 1474.0, + 823.0, + 1489.0, + 807.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 1492.0, + 830.0, + 1492.0, + 830.0, + 1522.0, + 745.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 1521.0, + 691.0, + 1521.0, + 691.0, + 1557.0, + 638.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 743.0, + 1518.0, + 830.0, + 1518.0, + 830.0, + 1550.0, + 743.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1554.0, + 718.0, + 1554.0, + 718.0, + 1584.0, + 693.0, + 1584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1550.0, + 811.0, + 1550.0, + 811.0, + 1588.0, + 765.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 1550.0, + 894.0, + 1550.0, + 894.0, + 1588.0, + 847.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1550.0, + 976.0, + 1550.0, + 976.0, + 1588.0, + 931.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1550.0, + 1058.0, + 1550.0, + 1058.0, + 1588.0, + 1013.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 835.0, + 1577.0, + 946.0, + 1577.0, + 946.0, + 1616.0, + 835.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.75, + 1351.5, + 1052.75, + 1351.5, + 1052.75, + 1364.0, + 1016.75, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 1403.0, + 1668.0, + 1403.0, + 1704.0, + 295.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1699.0, + 1405.0, + 1699.0, + 1405.0, + 1735.0, + 297.0, + 1735.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": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 34, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 325, + 533, + 1372, + 533, + 1372, + 1616, + 325, + 1616 + ], + "score": 0.977 + }, + { + "category_id": 4, + "poly": [ + 295, + 1667, + 1401, + 1667, + 1401, + 1733, + 295, + 1733 + ], + "score": 0.935 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.844 + }, + { + "category_id": 15, + "poly": [ + 760.0, + 522.0, + 940.0, + 522.0, + 940.0, + 553.0, + 760.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 344.0, + 554.0, + 387.0, + 554.0, + 387.0, + 854.0, + 344.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 556.0, + 912.0, + 556.0, + 912.0, + 857.0, + 870.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 572.0, + 924.0, + 572.0, + 924.0, + 601.0, + 902.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 589.0, + 541.0, + 589.0, + 541.0, + 619.0, + 459.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 593.0, + 1065.0, + 593.0, + 1065.0, + 623.0, + 983.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 631.0, + 399.0, + 631.0, + 399.0, + 653.0, + 379.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 628.0, + 925.0, + 628.0, + 925.0, + 657.0, + 902.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 619.0, + 1065.0, + 619.0, + 1065.0, + 649.0, + 983.0, + 649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 643.0, + 1067.0, + 643.0, + 1067.0, + 676.0, + 984.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 684.0, + 924.0, + 684.0, + 924.0, + 715.0, + 902.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 379.0, + 715.0, + 399.0, + 715.0, + 399.0, + 739.0, + 379.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 902.0, + 742.0, + 924.0, + 742.0, + 924.0, + 773.0, + 902.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 798.0, + 400.0, + 798.0, + 400.0, + 829.0, + 378.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 766.0, + 925.0, + 766.0, + 925.0, + 831.0, + 900.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 832.0, + 429.0, + 832.0, + 429.0, + 859.0, + 406.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 826.0, + 551.0, + 826.0, + 551.0, + 864.0, + 505.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 826.0, + 662.0, + 826.0, + 662.0, + 864.0, + 615.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 826.0, + 772.0, + 826.0, + 772.0, + 865.0, + 727.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 833.0, + 951.0, + 833.0, + 951.0, + 858.0, + 931.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 826.0, + 1101.0, + 826.0, + 1101.0, + 864.0, + 1055.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 826.0, + 1237.0, + 826.0, + 1237.0, + 864.0, + 1191.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 826.0, + 1373.0, + 826.0, + 1373.0, + 864.0, + 1329.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 855.0, + 667.0, + 855.0, + 667.0, + 891.0, + 556.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 852.0, + 1204.0, + 852.0, + 1204.0, + 891.0, + 1089.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 912.0, + 918.0, + 912.0, + 918.0, + 1219.0, + 866.0, + 1219.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 913.0, + 365.0, + 913.0, + 365.0, + 1215.0, + 322.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 941.0, + 417.0, + 941.0, + 417.0, + 977.0, + 351.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 950.0, + 1356.0, + 950.0, + 1356.0, + 983.0, + 1274.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 961.0, + 949.0, + 961.0, + 949.0, + 997.0, + 898.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 976.0, + 1356.0, + 976.0, + 1356.0, + 1008.0, + 1272.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 993.0, + 418.0, + 993.0, + 418.0, + 1033.0, + 352.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1000.0, + 809.0, + 1000.0, + 809.0, + 1030.0, + 726.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1018.0, + 1218.0, + 1018.0, + 1218.0, + 1026.0, + 1187.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1273.0, + 1005.0, + 1353.0, + 1005.0, + 1353.0, + 1031.0, + 1273.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1024.0, + 810.0, + 1024.0, + 810.0, + 1056.0, + 727.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1033.0, + 950.0, + 1033.0, + 950.0, + 1068.0, + 897.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1028.0, + 1356.0, + 1028.0, + 1356.0, + 1058.0, + 1272.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1047.0, + 420.0, + 1047.0, + 420.0, + 1086.0, + 353.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1050.0, + 811.0, + 1050.0, + 811.0, + 1080.0, + 727.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1272.0, + 1052.0, + 1356.0, + 1052.0, + 1356.0, + 1086.0, + 1272.0, + 1086.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1076.0, + 811.0, + 1076.0, + 811.0, + 1106.0, + 727.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1078.0, + 1356.0, + 1078.0, + 1356.0, + 1110.0, + 1274.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 1100.0, + 420.0, + 1100.0, + 420.0, + 1140.0, + 353.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 727.0, + 1100.0, + 811.0, + 1100.0, + 811.0, + 1134.0, + 727.0, + 1134.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 899.0, + 1104.0, + 950.0, + 1104.0, + 950.0, + 1141.0, + 899.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1274.0, + 1104.0, + 1355.0, + 1104.0, + 1355.0, + 1137.0, + 1274.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 1156.0, + 420.0, + 1156.0, + 420.0, + 1194.0, + 352.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 752.0, + 1173.0, + 783.0, + 1173.0, + 783.0, + 1185.0, + 752.0, + 1185.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1193.0, + 443.0, + 1193.0, + 443.0, + 1222.0, + 418.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 515.0, + 1188.0, + 562.0, + 1188.0, + 562.0, + 1227.0, + 515.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1188.0, + 668.0, + 1188.0, + 668.0, + 1226.0, + 621.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 730.0, + 1188.0, + 776.0, + 1188.0, + 776.0, + 1226.0, + 730.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1193.0, + 977.0, + 1193.0, + 977.0, + 1221.0, + 951.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 1189.0, + 1073.0, + 1189.0, + 1073.0, + 1227.0, + 1028.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1189.0, + 1159.0, + 1189.0, + 1159.0, + 1226.0, + 1112.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 1189.0, + 1244.0, + 1189.0, + 1244.0, + 1226.0, + 1198.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1282.0, + 1189.0, + 1329.0, + 1189.0, + 1329.0, + 1227.0, + 1282.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 1216.0, + 673.0, + 1216.0, + 673.0, + 1252.0, + 564.0, + 1252.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1102.0, + 1213.0, + 1214.0, + 1213.0, + 1214.0, + 1255.0, + 1102.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1277.0, + 641.0, + 1277.0, + 641.0, + 1580.0, + 594.0, + 1580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 621.0, + 1309.0, + 693.0, + 1309.0, + 693.0, + 1347.0, + 621.0, + 1347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1314.0, + 1082.0, + 1314.0, + 1082.0, + 1344.0, + 998.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 1338.0, + 1083.0, + 1338.0, + 1083.0, + 1371.0, + 997.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1370.0, + 693.0, + 1370.0, + 693.0, + 1410.0, + 624.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1362.0, + 1082.0, + 1362.0, + 1082.0, + 1420.0, + 999.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1415.0, + 1083.0, + 1415.0, + 1083.0, + 1448.0, + 999.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 625.0, + 1432.0, + 692.0, + 1432.0, + 692.0, + 1471.0, + 625.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1440.0, + 1084.0, + 1440.0, + 1084.0, + 1473.0, + 998.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 998.0, + 1467.0, + 1081.0, + 1467.0, + 1081.0, + 1497.0, + 998.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 627.0, + 1493.0, + 693.0, + 1493.0, + 693.0, + 1533.0, + 627.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 1493.0, + 1084.0, + 1493.0, + 1084.0, + 1523.0, + 999.0, + 1523.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1002.0, + 1517.0, + 1083.0, + 1517.0, + 1083.0, + 1550.0, + 1002.0, + 1550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1554.0, + 715.0, + 1554.0, + 715.0, + 1585.0, + 690.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 1550.0, + 852.0, + 1550.0, + 852.0, + 1588.0, + 805.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1553.0, + 975.0, + 1553.0, + 975.0, + 1587.0, + 933.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1553.0, + 1101.0, + 1553.0, + 1101.0, + 1587.0, + 1059.0, + 1587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 834.0, + 1577.0, + 946.0, + 1577.0, + 946.0, + 1616.0, + 834.0, + 1616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.25, + 787.5, + 990.25, + 787.5, + 990.25, + 794.5, + 960.25, + 794.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1668.0, + 1403.0, + 1668.0, + 1403.0, + 1704.0, + 295.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1696.0, + 1406.0, + 1696.0, + 1406.0, + 1738.0, + 294.0, + 1738.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": [ + 830.0, + 2084.0, + 870.0, + 2084.0, + 870.0, + 2121.0, + 830.0, + 2121.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 35, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 295, + 1372, + 1408, + 1372, + 1408, + 1436, + 295, + 1436 + ], + "score": 0.946 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.882 + }, + { + "category_id": 3, + "poly": [ + 340, + 833, + 1354, + 833, + 1354, + 1325, + 340, + 1325 + ], + "score": 0.849 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2112, + 835, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 13, + "poly": [ + 966, + 1407, + 984, + 1407, + 984, + 1434, + 966, + 1434 + ], + "score": 0.8, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 666, + 1407, + 685, + 1407, + 685, + 1435, + 666, + 1435 + ], + "score": 0.78, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 1097, + 836, + 1190, + 836, + 1190, + 861, + 1097, + 861 + ], + "score": 0.67, + "latex": "_ { \\cdot } \\mathsf { R } = 0 . 4 1 6" + }, + { + "category_id": 13, + "poly": [ + 576, + 836, + 669, + 836, + 669, + 861, + 576, + 861 + ], + "score": 0.56, + "latex": "_ { \\cdot } \\mathsf { R } = 0 . 5 8 0" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1369.0, + 1404.0, + 1369.0, + 1404.0, + 1410.0, + 292.0, + 1410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1400.0, + 665.0, + 1400.0, + 665.0, + 1436.0, + 296.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1400.0, + 965.0, + 1400.0, + 965.0, + 1436.0, + 686.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 1400.0, + 1396.0, + 1400.0, + 1396.0, + 1436.0, + 985.0, + 1436.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": [ + 413.0, + 832.0, + 575.0, + 832.0, + 575.0, + 864.0, + 413.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 832.0, + 826.0, + 832.0, + 826.0, + 864.0, + 670.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 940.0, + 832.0, + 1096.0, + 832.0, + 1096.0, + 864.0, + 940.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 832.0, + 1347.0, + 832.0, + 1347.0, + 864.0, + 1191.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 855.0, + 420.0, + 855.0, + 420.0, + 887.0, + 361.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 591.0, + 880.0, + 604.0, + 880.0, + 604.0, + 895.0, + 591.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1106.0, + 881.0, + 1130.0, + 881.0, + 1130.0, + 900.0, + 1106.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 589.0, + 894.0, + 599.0, + 894.0, + 599.0, + 908.0, + 589.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 924.0, + 418.0, + 924.0, + 418.0, + 958.0, + 361.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 931.0, + 807.0, + 931.0, + 807.0, + 985.0, + 784.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 918.0, + 941.0, + 918.0, + 941.0, + 952.0, + 885.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 940.0, + 1081.0, + 940.0, + 1081.0, + 952.0, + 1071.0, + 952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1109.0, + 928.0, + 1129.0, + 928.0, + 1129.0, + 947.0, + 1109.0, + 947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 965.0, + 603.0, + 965.0, + 603.0, + 974.0, + 592.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 970.0, + 985.0, + 970.0, + 985.0, + 985.0, + 970.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1113.0, + 978.0, + 1127.0, + 978.0, + 1127.0, + 995.0, + 1113.0, + 995.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 995.0, + 416.0, + 995.0, + 416.0, + 1028.0, + 361.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 997.0, + 940.0, + 997.0, + 940.0, + 1030.0, + 885.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 1021.0, + 373.0, + 1021.0, + 373.0, + 1115.0, + 343.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1021.0, + 896.0, + 1021.0, + 896.0, + 1113.0, + 866.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 1032.0, + 1096.0, + 1032.0, + 1096.0, + 1048.0, + 1081.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1066.0, + 415.0, + 1066.0, + 415.0, + 1099.0, + 362.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 1094.0, + 650.0, + 1094.0, + 650.0, + 1113.0, + 629.0, + 1113.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1077.0, + 940.0, + 1077.0, + 940.0, + 1110.0, + 882.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 575.0, + 1109.0, + 585.0, + 1109.0, + 585.0, + 1118.0, + 575.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 1103.0, + 625.0, + 1103.0, + 625.0, + 1126.0, + 600.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1108.0, + 1019.0, + 1108.0, + 1019.0, + 1123.0, + 1004.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1137.0, + 416.0, + 1137.0, + 416.0, + 1169.0, + 361.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1145.0, + 672.0, + 1145.0, + 672.0, + 1159.0, + 658.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 1135.0, + 753.0, + 1135.0, + 753.0, + 1166.0, + 686.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1146.0, + 1194.0, + 1146.0, + 1194.0, + 1158.0, + 1184.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1135.0, + 1276.0, + 1135.0, + 1276.0, + 1166.0, + 1209.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1167.0, + 637.0, + 1167.0, + 637.0, + 1191.0, + 611.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1173.0, + 668.0, + 1173.0, + 668.0, + 1182.0, + 659.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 1160.0, + 760.0, + 1160.0, + 760.0, + 1188.0, + 683.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1155.0, + 941.0, + 1155.0, + 941.0, + 1189.0, + 884.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1090.0, + 1152.0, + 1105.0, + 1152.0, + 1105.0, + 1168.0, + 1090.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1207.0, + 1160.0, + 1285.0, + 1160.0, + 1285.0, + 1188.0, + 1207.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 361.0, + 1207.0, + 416.0, + 1207.0, + 416.0, + 1241.0, + 361.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 427.0, + 1192.0, + 457.0, + 1192.0, + 457.0, + 1240.0, + 427.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 1202.0, + 508.0, + 1202.0, + 508.0, + 1220.0, + 490.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1228.0, + 565.0, + 1228.0, + 565.0, + 1243.0, + 551.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1197.0, + 669.0, + 1197.0, + 669.0, + 1206.0, + 659.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1184.0, + 761.0, + 1184.0, + 761.0, + 1237.0, + 684.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1198.0, + 967.0, + 1198.0, + 967.0, + 1213.0, + 950.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1196.0, + 1193.0, + 1196.0, + 1193.0, + 1206.0, + 1184.0, + 1206.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1185.0, + 1287.0, + 1185.0, + 1287.0, + 1240.0, + 1209.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 1239.0, + 676.0, + 1239.0, + 676.0, + 1262.0, + 651.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 1235.0, + 815.0, + 1235.0, + 815.0, + 1263.0, + 685.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 1234.0, + 940.0, + 1234.0, + 940.0, + 1267.0, + 885.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1241.0, + 1000.0, + 1241.0, + 1000.0, + 1261.0, + 983.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 1239.0, + 1201.0, + 1239.0, + 1201.0, + 1262.0, + 1175.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1209.0, + 1234.0, + 1340.0, + 1234.0, + 1340.0, + 1261.0, + 1209.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 450.0, + 1271.0, + 487.0, + 1271.0, + 487.0, + 1303.0, + 450.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 1273.0, + 578.0, + 1273.0, + 578.0, + 1301.0, + 543.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 1273.0, + 664.0, + 1273.0, + 664.0, + 1300.0, + 642.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1276.0, + 754.0, + 1276.0, + 754.0, + 1299.0, + 736.0, + 1299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1270.0, + 1194.0, + 1270.0, + 1194.0, + 1302.0, + 932.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1273.0, + 1245.0, + 1273.0, + 1245.0, + 1302.0, + 1203.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1273.0, + 1351.0, + 1273.0, + 1351.0, + 1302.0, + 1255.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 1295.0, + 801.0, + 1295.0, + 801.0, + 1324.0, + 442.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 1295.0, + 1325.0, + 1295.0, + 1325.0, + 1324.0, + 964.0, + 1324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2084.0, + 871.0, + 2084.0, + 871.0, + 2124.0, + 829.0, + 2124.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 36, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/S5S3eTEmouw/S5S3eTEmouw.md b/parse/train/S5S3eTEmouw/S5S3eTEmouw.md new file mode 100644 index 0000000000000000000000000000000000000000..d857907197f49b4137fa5333980462a21aa275fe --- /dev/null +++ b/parse/train/S5S3eTEmouw/S5S3eTEmouw.md @@ -0,0 +1,471 @@ +# OFFLINE META-REINFORCEMENT LEARNING WITHADVANTAGE WEIGHTING + +Anonymous authors Paper under double-blind review + +# ABSTRACT + +This paper introduces the offline meta-reinforcement learning (offline meta-RL) problem setting and proposes an algorithm that performs well in this setting. Offline meta-RL is analogous to the widely successful supervised learning strategy of pretraining a model on a large batch of fixed, pre-collected data (possibly from various tasks) and fine-tuning the model to a new task with relatively little data. That is, in offline meta-RL, we meta-train on fixed, pre-collected data from several tasks and adapt to a new task with a very small amount (less than 5 trajectories) of data from the new task. By nature of being offline, algorithms for offline meta-RL can utilize the largest possible pool of training data available and eliminate potentially unsafe or costly data collection during meta-training. This setting inherits the challenges of offline RL, but it differs significantly because offline RL does not generally consider a) transfer to new tasks or b) limited data from the test task, both of which we face in offline meta-RL. Targeting the offline meta-RL setting, we propose Meta-Actor Critic with Advantage Weighting (MACAW). MACAW is an optimization-based meta-learning algorithm that uses simple, supervised regression objectives for both the inner and outer loop of meta-training. On offline variants of common meta-RL benchmarks, we empirically find that this approach enables fully offline meta-reinforcement learning and achieves notable gains over prior methods. + +# 1 INTRODUCTION + +Meta-reinforcement learning (meta-RL) has emerged as a promising strategy for tackling the high sample complexity of reinforcement learning algorithms, when the goal is to ultimately learn many tasks. Meta-RL algorithms exploit shared structure among tasks during meta-training, amortizing the cost of learning across tasks and enabling rapid adaptation to new tasks during meta-testing from only a small amount of experience. Yet unlike in supervised learning, where large amounts of pre-collected data can be pooled from many sources to train a single model, existing meta-RL algorithms assume the ability to collect millions of environment interactions online during meta-training. Developing offline meta-RL methods would enable such methods, in principle, to leverage existing data from any source, making them easier to scale to real-world problems where large amounts of data might be necessary to generalize broadly. To this end, we propose the offline meta-RL problem setting and a corresponding algorithm that uses only offline (or batch) experience from a set of training tasks to enable efficient transfer to new tasks without any further interaction with either the training or testing environments. See Figure 1 for a comparison of offline meta-RL and standard meta-RL. + +Because the offline setting does not allow additional data collection during training, it highlights the desirability of a consistent meta-RL algorithm. A meta-RL algorithm is consistent if, given enough diverse data on the test task, adaptation can find a good policy for the task regardless of the training task distribution. Such an algorithm would provide a) rapid adaptation to new tasks from the same distribution as the train tasks while b) allowing for improvement even for out of distribution test tasks. However, designing a consistent meta-RL algorithm in the offline setting is difficult: the consistency requirement suggests we might aim to extend the model-agnostic meta-learning (MAML) algorithm (Finn et al., 2017a), since it directly corresponds to fine-tuning at meta-test time. However, existing MAML approaches use online policy gradients, and only value-based approaches have proven effective in the offline setting. Yet combining MAML with value-based RL subroutines is not straightforward: the higher-order optimization in MAML-like methods demands stable and efficient gradient-descent updates, while TD backups are both somewhat unstable and require a large number of steps to propagate reward information across long time horizons. + +To address these challenges, one might combine MAML with a supervised, bootstrap-free RL subroutine, such as advantage-weighted regression (AWR) (Peters and Schaal, 2007; Peng et al., 2019), for both for the inner and outer loop of a gradient-based meta-learning algorithm, yielding a ‘MAML+AWR’ algorithm. However, as we will discuss in Section 4 and find empirically in Section 5, naïvely combining MAML and AWR in this way does not provide satisfactory performance because the AWR policy update is not sufficiently expressive. Motivated by prior work that studies the expressive power of MAML (Finn and Levine, 2018), we increase the expressive power of the meta-learner by introducing a carefully chosen policy update in the inner loop. We theoretically prove that this change increases the richness of the policy’s update and find empirically that this policy update dramatically improves adaptation performance and stability in some settings. We further observe that standard feedforward neural network architectures used in reinforcement learning are not well-suited to optimization-based meta-learning and suggest an alternative that proves critical for good performance across four different environments. We call the resulting meta-RL algorithm and architecture Meta-Actor Critic with Advantage Weighting, or MACAW. + +Our main contributions are the offline meta-RL problem setting itself and MACAW, an offline meta-reinforcement learning algorithm that possesses three key properties: sample efficiency, offline meta-training, and consistency at meta-test time. To our knowledge, MACAW is the first algorithm to successfully combine gradient-based meta-learning and off-policy value-based RL. Our evaluations include experiments on offline variants of standard continuous control meta-RL benchmarks as well as settings specifically designed to test the robustness of an offline meta-learner when training tasks are scarce. In all of these settings, MACAW significantly outperforms fully offline variants state-of-the-art off-policy RL and meta-RL baselines. + +# 2 PRELIMINARIES + +In reinforcement learning, an agent interacts with a Markov Decision Process (MDP) to maximize its cumulative reward. An MDP is a tuple $( \boldsymbol { S } , \boldsymbol { A } , \boldsymbol { T } , \boldsymbol { r } )$ consisting of a state space $s$ , an action space $\mathcal { A }$ , stochastic transition dynamics $T : \mathcal { S } \times \mathcal { A } \times \mathcal { S } [ 0 , 1 ]$ , and a reward function $r$ . At each time step, the agent receives reward $r _ { t } = r ( s _ { t } , a _ { t } , s _ { t + 1 } )$ . The agent’s objective is to maximize the expected return (i.e. discounted sum of rewards) $\begin{array} { r } { \mathcal { R } = \sum _ { t } \gamma ^ { t } r _ { t } } \end{array}$ , where $\gamma \in [ 0 , 1 ]$ is a discount factor. To extend this setting to meta-RL, we consider tasks drawn from a distribution $\mathcal { T } _ { i } \sim p ( \mathcal { T } )$ , where each task $\mathcal { T } _ { i } = ( \mathcal { S } , \bar { \mathcal { A } } , p _ { i } , r _ { i } )$ represents a different MDP. Both the dynamics and reward function may vary across tasks. The tasks are generally assumed to exhibit some (unknown) shared structure. During meta-training, the agent is presented with tasks sampled from $p ( \mathcal T )$ ; at meta-test time, an agent’s objective is to rapidly find a high-performing policy for a (potentially unseen) task $\mathcal { T } ^ { \prime } \sim p ( \mathcal { T } )$ . That is, with only a small amount of experience on $\mathcal { T } ^ { \prime }$ , the agent should find a policy that achieves high expected return on that task. During meta-training, the agent meta-learns parameters or update rules that enables such rapid adaptation at test-time. + +Model-agnostic meta-learning One class of algorithms for addressing the meta-RL problem (as well as meta-supervised learning) are variants of the MAML algorithm (Finn et al., 2017a), which involves a bi-level optimization that aims to achieve fast adaptation via a few gradient updates. Specifically, MAML optimizes a set of initial policy parameters $\theta$ such that a few gradient-descent steps from $\theta$ leads to policy parameters that achieve good task performance. At each meta-training step, the inner loop adapts $\theta$ to a task $\tau$ by computing $\theta ^ { \prime } = \theta - \alpha \nabla _ { \theta } \mathcal { L } _ { T } ( \theta )$ , where $\mathcal { L }$ is the loss function for task $\tau$ and $\alpha$ is the step size (in general, $\theta ^ { \prime }$ might be computed from multiple gradient steps, rather than just one as is written here). The outer loop updates the initial parameters as $\theta \doteq \theta - \beta \nabla _ { \theta } \mathcal { L } _ { T } ^ { \prime } ( \bar { \theta } ^ { \prime } )$ , where $\mathcal { L } _ { \mathcal { T } } ^ { \prime }$ is a loss function for task $\tau$ , which may or may not be the same as the inner-loop loss function $\mathcal { L } _ { T }$ , and $\beta$ is the step size. MAML has been previously instantiated with policy gradient updates in the inner and outer loops (Finn et al., $2 0 1 7 \mathrm { a }$ ; Rothfuss et al., 2018), which can only be applied to on-policy meta-RL settings; we address this shortcoming in this work. + +Advantage-weighted regression. To develop an offline meta-RL algorithm, we build upon advantage-weighted regression (AWR) (Peng et al., 2019), a simple offline RL method. The AWR policy objective is given by + +$$ +\mathcal { L } ^ { \mathrm { A W R } } ( \vartheta , \varphi , B ) = \mathbb { E } _ { \mathbf { s } , \mathbf { a } \sim B } \left[ - \log \pi _ { \vartheta } ( \mathbf { a } | \mathbf { s } ) \exp \left( \frac { 1 } { T } \left( \mathcal { R } _ { B } ( \mathbf { s } , \mathbf { a } ) - V _ { \varphi } ( \mathbf { s } ) \right) \right) \right] , +$$ + +where $B = \{ \mathbf { s } _ { j } , \mathbf { a } _ { j } , \mathbf { s } _ { j } ^ { \prime } , r _ { j } \}$ can be an arbitrary dataset of transition tuples sampled from some behavior policy, and $\mathcal { R } _ { B } ( \mathbf { s } , \mathbf { a } )$ is the return recorded in the dataset for performing action a in state s, $V _ { \varphi } ( \mathbf { s } )$ is the learned value function for the behavior policy evaluated at state s, and $T > 0$ is a temperature parameter. The term $\mathcal { R } _ { B } ( \mathbf { s } , \mathbf { a } ) - V _ { \varphi } ( \mathbf { s } )$ represents the advantage of a particular action. The objective can be interpreted as a weighted regression problem, where actions that lead to higher advantages are assigned larger weights. The value function parameters $\varphi$ are typically trained using simple regression onto Monte Carlo returns, and the policy parameters $\vartheta$ are trained using $\mathcal { L } ^ { \mathrm { A W R } }$ . Next, we discuss the offline meta-RL problem and some of the challenges it poses. + +![](images/a17861f422ba39e7b1dfe60c3bd68a029f6f9c282c0c1ff49b334b0c0a136289.jpg) +Figure 1: Comparing the standard meta-RL setting (left), which includes on-policy and off-policy meta-RL, with offline meta-RL (right). In standard meta-RL, new interactions are sampled from the environment during both meta-training and meta-testing, potentially storing experiences in a replay buffer (off-policy meta-RL). In offline meta-RL, a batch of data is provided for each training task $\mathcal { T } _ { i }$ . This data could be the result of prior skills learned, demonstrations, or other means of data collection. The meta-learner uses these static buffers of data for meta-training and can then learn a new test task when given a small buffer of data for that task. + +# 3 THE OFFLINE META-RL PROBLEM + +In the offline meta-RL problem setting, we aim to leverage offline multi-task experience to enable fast adaptation to new downstream tasks. Each task $\mathcal { T } _ { i }$ is drawn from a task distribution $p ( \mathcal { T } )$ . In the offline setting, the meta-training algorithm is not permitted to directly interact with the meta-training tasks $\mathcal { T } _ { i }$ , but instead is provided with a fixed dataset of transition tuples $B _ { i } = \{ s _ { i , j } , a _ { i , j } , s _ { i , j } ^ { \prime } , r _ { i , j } \}$ for each task. Each $B _ { i }$ is populated with trajectories sampled from a corresponding behavior policy $\mu _ { i }$ . Each $\mu _ { i }$ might be an expert policy, sub-optimal demonstrations, other RL agents, or some mixture thereof. Regardless of the behavior policies $\mu _ { i }$ , the objective of offline meta-RL is to maximize return after adaptation on the test tasks. However, depending on the quality of the behavior policies, the maximum attainable return may vary. We observe such a phenomenon in a offline data quality ablation experiment in Section 5. + +Sampling data from a fixed dataset at both meta-training and meta-testing time, rather than from the learned policy itself, distinguishes offline meta-RL from the standard meta-RL setting. This constraint is significant, because most algorithms for meta-RL require a large amount of on-policy experience from the environment during meta-training; these algorithms are generally unable to fully make use of data collected by external sources. During meta-testing, a (generally unseen) test task $\mathcal { T } _ { \mathrm { t e s t } }$ is drawn from $p ( \mathcal T )$ , and the meta-trained agent is presented with a new batch of experience $D$ sampled from a distribution $B _ { \mathrm { t e s t } }$ . The agent’s objective is to use this batch of data to find the highest-performing policy for the test task. We consider the case where only $B _ { i }$ is fixed during meta-training and $B _ { \mathrm { t e s t } }$ corresponds to sampling online trajectories to be the offline meta-RL problem. The case where both $B _ { i }$ and $B _ { \mathrm { t e s t } }$ are fixed data buffers is called the fully offline meta-RL problem, which is especially applicable in situations when allowing online exploration might be difficult or dangerous. In the fully offline case, we might also consider the setting where we perform additional online rollouts with our adapted policy and fine-tune with this online data after the initial offline adaptation step. We call this the fully offline meta-RL problem with online fine-tuning. The experiments performed in this paper mostly correspond to the fully offline setting. In Appendix C.2 we also conduct an experiment in the setting of fully offline meta-RL with online fine-tuning. + +Prior meta-RL methods require interaction with the MDP for each of the meta-training tasks (Finn et al., 2017a), and though some prior methods build on off-policy RL algorithms (Rakelly et al., 2019), these algorithms are known to perform poorly in the fully offline setting (Levine et al., 2020). Both of the offline meta-RL settings described above inherit the distributional difficulties of offline RL, which means that addressing this problem setting requires a new type of meta-RL method that is capable of meta-training from offline data. + +# 4 MACAW: META ACTOR-CRITIC WITH ADVANTAGE WEIGHTING + +# Algorithm 1 MACAW Meta-Training + +# Algorithm 2 MACAW Meta-Testing + +1: Input: Tasks $\{ \mathcal { T } _ { i } \}$ , offline buffers $\{ D _ { i } \}$ +2: Hyperparameters: learning rates $\alpha _ { 1 }$ , $\alpha _ { 2 }$ , $\eta _ { 1 }$ +$\eta _ { 2 }$ , training iterations $n$ , temperature $T$ +3: Randomly initialize meta-parameters $\theta , \phi$ +4: for $n$ steps do +5: for task $\mathcal { T } _ { i } \in \{ \mathcal { T } _ { i } \}$ do +6: Sample disjoint batches $D _ { i } ^ { \mathrm { t r } } , D _ { i } ^ { \mathrm { t s } } \sim D _ { i }$ +7: $\begin{array}{c} \begin{array} { r l } & { \quad \phi _ { i } ^ { \prime } \xleftarrow { * } \phi - \check { \eta } _ { 1 } \nabla _ { \phi } \mathcal { L } _ { V } ( \phi , D _ { i } ^ { \mathrm { t r } } ) } \\ & { \quad \theta _ { i } ^ { \prime } \xleftarrow \theta - \alpha _ { 1 } \nabla _ { \theta } \mathcal { L } _ { \pi } ( \theta , \phi _ { i } ^ { \prime } , D _ { i } ^ { \mathrm { t r } } ) } \\ & { \quad \phi \xleftarrow \phi - \eta _ { 2 } \sum _ { i } \left[ \nabla _ { \phi } \mathcal { L } _ { V } ( \phi _ { i } ^ { \prime } , D _ { i } ^ { \mathrm { t s } } ) \right] } \\ & { \quad \theta \xleftarrow \theta - \alpha _ { 2 } \sum _ { i } \left[ \nabla _ { \theta } \mathcal { L } ^ { \mathrm { A W R } } ( \theta _ { i } ^ { \prime } , \phi _ { i } ^ { \prime } , \right.} \end{array} \end{array}$ +8: +9: +10: + +1: Input: Test task $\tau _ { j }$ , offline experience $D$ , meta-policy $\pi _ { \theta }$ , meta-value function $V _ { \phi }$ +2: Hyperparameters: learning rates $\alpha _ { 1 } , \eta$ , adaptation iterations $n$ , temperature $T$ +3: Initialize $\theta _ { 0 } \theta$ , $\phi _ { 0 } \phi$ . +4: for $n$ steps do +5: 6: $\begin{array} { r l } & { \phi _ { t + 1 } \dot { } \phi _ { t } - \eta _ { 1 } \nabla _ { \phi _ { t } } \mathcal { L } _ { V } ( \phi _ { t } , D ) } \\ & { \theta _ { t + 1 } \theta _ { t } - \alpha _ { 1 } \nabla _ { \theta _ { t } } \mathcal { L } _ { \pi } ( \theta _ { t } , \phi _ { t + 1 } , D ) } \end{array}$ + +In addition to satisfying the demands of the offline setting, an ideal method for offline meta-RL should not be limited to the distribution of tasks observed at training time. This is especially important in the offline meta-RL setting, in which the sampling of the training data is out of the control of the agent. In other words, it is critical that an offline meta-RL algorithm be consistent, in the sense that given enough, sufficiently diverse adaptation data at meta-test time, the algorithm can find a good solution to that task, regardless of the meta-training tasks. + +To address the numerous challenges posed by offline meta-RL, we propose meta actor-critic with advantage weighting (MACAW). MACAW is an offline meta-RL algorithm that learns initializations $\phi$ and $\theta$ for a value function $V _ { \phi }$ and policy $\pi _ { \theta }$ , respectively, that can rapidly adapt to a new task seen at meta-test time via gradient descent. Both the value function and the policy objectives correspond to simple regression losses in both the inner and outer loop, leading to a stable and consistent inner-loop adaptation process and outer-loop meta-training signal. While these objectives build upon AWR, we show that the naive application of an AWR update in the inner loop leads to unsatisfactory performance, motivating the enriched policy update that we describe in Section 4.1. In Sections 4.2 and 4.3, we detail the full meta-training procedure and an important architectural component of the policy and value networks. + +# 4.1 INNER-LOOP MACAW PROCEDURE + +The adaptation process for MACAW consists of a value function update followed by a policy update and can be found in lines 6-8 in Algorithm 1. Optimization-based meta-learning methods typically rely on truncated optimization for the adaptation process (Finn et al., 2017a), to satisfy both computational and memory constraints (Wu et al., 2018; Rajeswaran et al., 2019), and MACAW also uses a truncated optimization. However, value-based algorithms that use bootstrapping, such as Q-learning, can require many iterations for values to propagate. Therefore, we use a bootstrap-free update for the value function that simply performs supervised regression onto Monte-Carlo returns. + +![](images/c95b5d2cfb234d39803bd3d8890f803420ea4b928748173a00e2021c8d765a20.jpg) +Figure 2: MACAW policy architecture. Solid lines show the forward pass; dashed lines show gradient flow during the backward pass during adaptation only; the advantage head is not used in the outer loop policy update. + +Given a batch of training data $D _ { i } ^ { \mathrm { t r } }$ collected for $\mathcal { T } _ { i }$ , MACAW adapts the value function by taking one or a few gradient steps on the following supervised objective: + +$$ +\phi _ { i } ^ { \prime } \xleftarrow { } \phi - \eta _ { 1 } \nabla _ { \phi } \mathcal { L } _ { V } ( \phi , D _ { i } ^ { \mathrm { I } } ) , \qquad \mathrm { w h e r e } \qquad \mathcal { L } _ { V } ( \phi , D ) \triangleq \mathbb { E } _ { \mathbf { s } , \mathbf { a } \sim D } \left[ ( V _ { \phi } ( \mathbf { s } ) - \mathcal { R } _ { D } ( \mathbf { s } , \mathbf { a } ) ) ^ { 2 } \right] +$$ + +and where $\mathcal { R } _ { D } ( \mathbf { s } , \mathbf { a } )$ is the Monte Carlo return from the state s taking action a observed in $D$ . + +After adapting the value function, we proceed to updating the policy. The AWR algorithm updates its policy by performing supervised regression onto actions weighted by the estimated advantage, where the advantage is given by the return minus the value: $\mathcal { R } _ { D } ( \mathbf { s } , \mathbf { a } ) - V _ { \phi _ { i } ^ { \prime } } ( \mathbf { s } )$ . While it is tempting to use this same update rule here, we observe that this update does not provide the meta-learner with sufficient expressive power to be a universal update procedure for the policy, using universality in the sense used by Finn and Levine (2018). For MAML-based methods to approximate any learning procedure, the inner gradient must not discard information needed to infer the task (Finn and Levine, + +2018). The gradient of the AWR objective does not contain full information of both the regression weight and the regression target. That is, one cannot recover both the advantage weight and the action from the gradient. We formalize this problem in Theorem 1 in Appendix A. To address this issue and make our meta-learner sufficiently expressive, the MACAW policy update performs both advantage-weighted regression onto actions as well as an additional regression onto action advantages. This enriched policy update is only used during adaptation, and the predicted advantage is used only to enrich the inner loop policy update during meta-training; during meta-test, this predicted advantage is discarded. We prove the universality of the enriched policy update in Theorem 2 in Appendix A. We observe empirically the practical impact of the universality property with an ablation study presented in Figure 4 (left). + +To make predictions for both the AWR loss and advantage regression, our policy architecture has two output heads corresponding to the predicted action given the state, $\pi _ { \boldsymbol { \theta } } ( \cdot | \mathbf { s } )$ , and the predicted advantage given both state and action $A _ { \boldsymbol { \theta } } ( \mathbf { s } , \mathbf { a } )$ . This architecture is shown in Figure 2. Policy adaptation then proceeds as follows: + +$$ +\theta _ { i } ^ { \prime } \theta - \alpha _ { 1 } \nabla _ { \theta } \mathcal { L } _ { \pi } ( \theta , \phi _ { i } ^ { \prime } , D _ { i } ^ { \mathrm { t r } } ) , \qquad \mathrm { w h e r e } \qquad \mathcal { L } _ { \pi } = \mathcal { L } ^ { \mathrm { A W R } } + \lambda \mathcal { L } ^ { \mathrm { A D V } } . +$$ + +In our policy update, we show only one gradient step for conciseness of notation, but it can be easily extended to multiple gradient steps. The AWR loss is given in Equation 1, and the advantage regression loss is given by: + +$$ +\mathcal { L } ^ { \mathrm { A D V } } ( \theta , \phi _ { i } ^ { \prime } , D ) \triangleq \underset { \mathbf { s } , \mathbf { a } \sim D } { \triangleq } \left[ ( \hat { A } ( \mathbf { s } , \mathbf { a } ) - \left( \mathcal { R } _ { D } ( \mathbf { s } , \mathbf { a } ) - V _ { \phi _ { i } ^ { \prime } } ( \mathbf { s } ) \right) ) ^ { 2 } \right] +$$ + +Adapting with ${ \mathcal { L } } _ { \pi }$ rather than $\mathcal { L } ^ { \mathrm { A W R } }$ addresses the expressiveness problems noted earlier. This adaptation process is done both in the inner loop of meta-training and during meta-test time, as outlined in Algorithm 2. MACAW is consistent at meta-test time because it executes a well-defined RL fine-tuning subroutine based on AWR during adaptation. Next, we describe the meta-training procedure for learning the meta-parameters $\theta$ and $\phi$ , the initializations of the policy and value function, respectively. + +# 4.2 OUTER-LOOP MACAW PROCEDURE + +To enable rapid adaptation at meta-test time, we meta-train a set of initial parameters for both the value function and policy to optimize the AWR losses ${ \mathcal { L } } _ { V }$ and $\mathcal { L } ^ { \mathrm { A W R } }$ , respectively, after adaptation (L9-10 in Algorithm 1). We sample a batch of data $D _ { i } ^ { \mathrm { t s } }$ for the outer loop update that is disjoint from the adaptation data $D _ { i } ^ { \mathrm { t r } }$ in order to promote few-shot generalization rather than memorization of the adaptation data. The meta-learning procedure for the value function follows MAML, using the supervised Monte Carlo objective: + +$$ +\operatorname* { m i n } _ { \phi } \mathbb { E } _ { T _ { i } } \left[ \mathcal { L } _ { V } ( \phi _ { i } ^ { \prime } , D _ { i } ^ { \mathrm { t s } } ) \right] ~ = ~ \operatorname* { m i n } _ { \phi } \mathbb { E } _ { T _ { i } } \left[ \mathcal { L } _ { V } ( \phi - \eta _ { 1 } \nabla _ { \phi } \mathcal { L } _ { V } ( \phi , D _ { i } ^ { \mathrm { t } } ) , D _ { i } ^ { \mathrm { t s } } ) \right] . +$$ + +where ${ \mathcal { L } } _ { V }$ is defined in Equation 2. This objective optimizes for a set of initial value function parameters such that one or a few inner gradient steps lead to an accurate value estimator. + +Unlike the inner loop, we optimize the initial policy parameters in the outer loop with a standard advantage-weighted regression objective, since expressiveness concerns only pertain to the inner loop where only a small number of gradient steps are taken. Hence, the meta-objective for our initial policy parameters is as follows: + +$$ +\operatorname* { m i n } _ { \theta } \mathbb { E } _ { \mathcal { T } _ { i } } \left[ \mathcal { L } ^ { \mathrm { A W R } } ( \theta _ { i } ^ { \prime } , \phi _ { i } ^ { \prime } , D _ { i } ^ { \mathrm { t s } } ) \right] \ = \ \operatorname* { m i n } _ { \theta } \mathbb { E } _ { \mathcal { T } _ { i } } \left[ \mathcal { L } ^ { \mathrm { A W R } } ( \theta - \alpha _ { 1 } \nabla _ { \theta } \mathcal { L } _ { \pi } ( \theta , \phi _ { i } ^ { \prime } , D _ { i } ^ { \mathrm { t r } } ) , \phi _ { i } ^ { \prime } , D _ { i } ^ { \mathrm { t s } } ) \right] , +$$ + +where ${ \mathcal { L } } _ { \pi }$ is defined in Equation 3 and $\mathcal { L } ^ { \mathrm { A W R } }$ is defined in Equation 1. Note we use the adapted value function for policy adaptation. The complete MACAW algorithm is summarized in Algorithm 1. + +# 4.3 MACAW ARCHITECTURE + +MACAW’s enriched policy update (Equation 3) is motivated by the desire to make inner loop policy updates more expressive. In addition to augmenting the objective, we can also take an architectural approach to increasing gradient expressiveness. Recall that for an MLP, a single step of gradient descent can only make a rank-1 update to each weight matrix. Finn and Levine (2018) show that this implies that MLPs must be impractically deep for MAML to be able to produce any learning procedure. However, we can shortcut this rank-1 limitation with a relatively simple change to the layers of an MLP, which we call a weight transform layer. This layer maps a latent code into the weight matrix and bias, which are then used to compute the layer’s output just as in a typical fully-connected layer. This ‘layer-wise linear hypernetwork’ (Ha et al., 2016) doesn’t change the class of functions computable by the layer on its input, but it increases the expressivity of MAML’s gradient. Because we update the latent code by gradient descent (which is mapped back into a new weight matrix and bias in the forward pass) we can, in theory, acquire weight matrix updates of rank up to the dimensionality of the latent code. We use this strategy for all of the weights in both the value function network and the policy network. This architecture is similar to latent embedding optimization (LEO) (Rusu et al., 2019), but the choice of using simple linear mapping functions allows us to apply weight transform layers to the entire network while still providing more expressive gradients. For a more detailed explanation of this strategy, see Appendix B. Our experiments find that this layer significantly improves learning speed and stability. + +![](images/c2d3c77930d93ed2e281d85fd95e50e89fbb79687248630c2ac7e9cc8fc3189a.jpg) +Figure 3: Comparing MACAW with (i) an offline variant of PEARL (Rakelly et al., 2019), a state-of-the-art off-policy meta-RL method, (ii) an offline multi-task training $^ +$ fine tuning method based on AWR (Peng et al., 2019), and (iii) a meta-behavior cloning baseline. Shaded regions show one standard error of the mean reward of four seeds. MACAW is the only algorithm to consistently outperform the imitation learning baseline, and also learns with the fewest number of training steps in every environment (note the log x axis). + +# 5 EXPERIMENTS + +The primary goal of our empirical evaluations is to test whether we can acquire priors from offline multi-task data that facilitate rapid transfer to new tasks. Our evaluation compares MACAW with three sensible approaches to this problem: a meta-imitation learning, multi-task offline RL with fine-tuning, and an offline variant of the state-of-the-art off-policy meta-RL method, PEARL (Rakelly et al., 2019). Further, we analyze a) the importance of MACAW’s enriched policy update (Equation 3) in various data quality regimes; b) the effect of the proposed weight transformation; and c) how each method’s performance is affected when the sampling of the task space during training is very sparse. The first two settings highlight the differences between MACAW and the naïve combination of MAML and AWR; the third setting represents a realistic setting where fewer tasks are available during meta-training. See Appendix C for additional experiments a) ablating the weight transform layer b) investigating the performance of MACAW and PEARL when online fine-tuning is available and c) a richer task distribution. + +For our experiments, we construct offline variants of the widely-used simulated continuous control benchmark problems introduced by Finn et al. (2017a); Rothfuss et al. (2018), including the halfcheetah with varying directions and varying velocities, the walker with varying physical parameters, and the ant with varying directions. If not noted otherwise, the offline data for each experiment is generated from the replay buffer of a RL agent trained from scratch. This reflects a practical scenario where an agent has previously learned a set of tasks via RL, stored its experiences, and now would like to quickly learn a related task. Data collection information is available in Appendix D. + +![](images/622a648f60aef4640a9d619d79c6449b1fd72ba2fd307d65f26c9b17a2c7267d.jpg) +Ablating MACAW's Weight Transform + +![](images/0b2b8be14162f085ffb0cbb13f145ee11743a80135a9332f52d12997878a0b6b.jpg) +Test Performance with Sparse Task Sampling + +![](images/bb285f5837b705f9346b158e8b16fc2f1922ca5701f04b800fdca3994e6aa06b.jpg) +Ablating MACAW's Enriched Policy Update +Figure 4: Left: Ablating MACAW’s enriched policy update when varying the quality of the inner loop adaptation data. Solid lines correspond to MACAW, dashed lines correspond to MACAW without the auxiliary policy loss (equivalently, MAML $^ +$ AWR with weight transforms). Both perform similarly with good quality adaptation data (orange), but the policy adaptation step without the auxiliary loss begins to fail as adaptation data is increasingly sub-optimal (blue and red). Bad, medium, and good data correspond to the first, middle, and last 500 trajectories from the lifetime replay buffer of the behavior policy for each task; see Appendix D for learning curves of the individual offline policies. Center: Ablating MACAW’s weight transform layer in the same experimental setting as the cheetah-velocity experiment in Figure 3. Without the additional expressiveness, learning is much slower and less stable. Right: Train task sparsity split performance of MACAW, Offline PEARL, and Offline $\mathbf { M T + }$ fine tune. Each curve corresponds to the performance of a method as the number of tasks available for training is varied. MACAW shows the most consistent performance when different numbers of tasks are used, performing well even when only three tasks are used for training. + +Can we learn to adapt to new tasks quickly from purely offline data? Our first evaluation compares three approaches to the offline meta-RL problem setting, testing their ability to leverage the offline task datasets in order to quickly adapt to a new task. Specifically, we compare MACAW with i) offline PEARL (Rakelly et al., 2019), ii) multi-task AWR (Peng et al., 2019), which uses 20 steps of Adam (Kingma and Ba, 2015) to adapt to a new task at meta-test time (Offline $\mathrm { M T + F T }$ ) and iii) a meta-behavior cloning baseline. We choose PEARL and AWR because they achieve state-of-the-art performance in off-policy meta-RL and offline RL, respectively, and are readily adaptable to the offline meta-RL problem. As in Rakelly et al. (2019), for each experiment, we sample a finite set of training tasks and held out test tasks upfront and keep these fixed throughout training. Figure 3 shows the results. We find that MACAW is the only algorithm to consistently outperform the meta-behavior cloning baseline. Multi-task AWR $^ +$ fine-tuning makes meaningful progress on the simpler cheetah problems, but it is unable to adapt well on the more challenging walker and ant problems. Offline PEARL shows initial progress on cheetah-velocity and walker-params, but struggles to make steady progress on any of the problems. We attribute PEARL’s failure to Q-function extrapolation error, a problem known to affect many off-policy RL algorithms (Fujimoto et al., 2019), as well as generally unstable offline bootstrapping. MACAW’s and AWR’s value function is bootstrap-free and their policy updates maximize a weighted maximum likelihood objective during training, which biases the policy toward safer actions (Peng et al., 2019), implicitly avoiding problems caused by extrapolation error. In contrast to Offline PEARL and multi-task AWR, MACAW trains efficiently and relatively stably on all problems, providing an effective approach to learning representations from multi-task offline data that can be effectively adapted to new tasks at meta-test time. + +How does MACAW’s performance differ from MAML $^ +$ AWR? MACAW has two key features distinguishing it from MAML $^ +$ AWR: the enriched policy loss and weight transform layers. Here, we use the Cheetah-Velocity setting to test the effects of both of these changes. We first ablate the enriched policy loss used in MACAW’s inner loop update. This experiment compares MACAW and MAML $+ .$ AWR $^ +$ weight transform layers, which optimize Equation 3 and Equation 1 in the policy inner-loop, respectively. To identify when policy update expressiveness is most crucial, we repeat this ablation study three times, meta-training and meta-testing with various qualities of inner-loop data, using good outer loop data for all experiments. Figure 4 (left) shows the results. MAML $^ +$ AWR performs well when the offline adaptation data comes from a near-optimal policy, which is essentially a one-shot imitation setting (orange); however, when the offline adaptation data comes from a policy pre-convergence, the difference between MACAW and MAML $+$ AWR becomes significant (blue and red). This result supports the intuition that policy update expressiveness is of greater importance when the adaptation data is more random, because in this case the adaptation data includes a weaker signal from which to infer the task (e.g. the task cannot be inferred by simply looking at the states visited). Because an agent is unable to collect further experience from the environment during offline adaptation, it is effectively at the mercy of the quality of the behavior policy that produced the data. An important property of a meta-RL algorithm is thus its robustness to sub-optimal behavior policies, a property that MACAW exhibits. Next, we ablate the weight transform layers, comparing + +MAML $+ .$ AWR $^ +$ enriched policy update with MACAW. Figure 4 (center) suggests that the weight transform layers significantly improve both learning speed and stability. The No WT-Equal Width variant removes the weight transform from each fully-connected layer, replacing it with a regular fully-connected layer of equal width in the forward pass. The No WT-Equal Params variant replaces each of MACAW’s weight transform layers with a regular fully-connected layer of greater width, to keep the total number of learnable parameters in the network roughly constant. In either case, we find that MACAW provides a significant improvement in learning speed, as well as stability when compared to the Equal Width variant. Figure 5 in the appendix shows that this result is consistent across problems. + +How do algorithms perform with varying numbers of meta-training tasks? Generally, we prefer an offline meta-RL algorithm that can generalize to new tasks when presented with only a small number of meta-training tasks sampled from $p ( \mathcal { T } )$ . In this section, we conduct an experiment to evaluate the extent to which various algorithms rely on dense sampling of the space of tasks during training in order to generalize well. We compare the test performance of MACAW, offline PEARL, and offline multi-task AWR $^ +$ fine-tuning as we hold out an increasingly large percentage of the Cheetah-Velocity task space. The results are presented in Figure 4 (right). Surprisingly, Offline PEARL completely fails to learn both when training tasks are plentiful and when they are scarce, but learns relatively effectively in the middle regime (5-20 tasks). In our experiments, we often observe instability in Offline PEARL’s task inference and value function networks when training on too many offline tasks. On the other hand, with too few tasks, the task inference network simply learns a degenerate solution, providing no useful information for the value functions or policy to identify the task. The multi-task learning $^ +$ fine-tuning baseline exhibits a steadier degradation in performance as training tasks are removed, likely owing to its bootstrap-free learning procedure. Similarly to Offline PEARL, it is not able to learn a useful prior for fine-tuning when only presented with 3 tasks for training. However, MACAW finds a solution of reasonable quality for any sampling of the task space, even for very dense or very sparse samplings of the training tasks. In practice, this property is desirable, because it allows the same algorithm to scale to very large offline datasets while still producing useful adaptation behaviors for small datasets. Ultimately, MACAW effectively exploits the available data when meta-training tasks are plentiful and shows by far the greatest robustness when tasks are scarce, which we attribute to its SGD-based adaptation procedure during both meta-training and meta-testing. + +# 6 RELATED WORK + +Meta-learning algorithms enable efficient learning of new tasks by learning elements of the learning process itself (Schmidhuber, 1987; Bengio et al., 1992; Thrun and Pratt, 1998; Finn, 2018). We specifically consider the problem of meta-reinforcement learning. Prior methods for meta-RL can generally be categorized into two groups. Contextual meta-RL methods condition a neural network on experience using a recurrent network (Wang et al., 2016; Duan et al., 2016; Fakoor et al., 2020), a recursive network (Mishra et al., 2017), or a stochastic inference network (Rakelly et al., 2019; Zintgraf et al., 2020; Humplik et al., 2019; Sæmundsson et al., 2018). Optimization-based meta-RL methods embed an optimization procedure such as gradient descent into the meta-level optimization (Finn et al., 2017a; Nagabandi et al., 2019; Rothfuss et al., 2018; Zintgraf et al., 2019; Gupta et al., 2018; Mendonca et al., 2019; Yang et al., 2019), potentially using a learned loss function (Houthooft et al., 2018; Bechtle et al., 2019; Kirsch et al., 2020b;a). In prior works, the former class of approaches tend to reach higher asymptotic performance, while the latter class is typically more robust to out-of-distribution tasks, since the meta-test procedure corresponds to a well-formed optimization. Concurrent work by Dorfman and Tamar (2020) investigates the offline meta-RL setting, directly applying an existing meta-RL algorithm, VariBAD (Zintgraf et al., 2020), to the offline setting. The proposed method further assumes knowledge of the reward function for each task to relabel rewards and share data across tasks with shared dynamics. MACAW does not rely on this knowledge nor the assumption that some tasks share dynamics, but this technique could be readily combined with MACAW when these assumptions do hold. + +Unlike these prior works, we aim to develop an optimization-based meta-RL algorithm that can both learn from entirely offline data and produces a monotonic learning procedure. Only a handful of previous model-free meta-RL methods leverage off-policy data at all (Rakelly et al., 2019; Mendonca et al., 2019), and none have considered the fully offline setting. Guided meta-policy search (Mendonca et al., 2019) is optimization-based, but is not applicable to the batch setting as it partially relies on policy gradients. This only leaves PEARL (Rakelly et al., 2019) and its relatives (Fakoor et al., 2020), which correspond to a contextual meta-learning approach that is sensitive to the meta-training task distribution without fine-tuning (Fakoor et al., 2020) at test time. We also compare to PEARL, and find that, as expected, it performs worse than in the off-policy setting, since the fully offline setting is substantially more challenging than the off-policy setting that it was designed for. + +The proposed algorithm builds on the idea of batch off-policy or offline reinforcement learning (Fujimoto et al., 2019; Kumar et al., 2019b; Wu et al., 2019; Levine et al., 2020; Agarwal et al., 2020), extending the problem setting to the meta-learning setting. There are a number of recent works that have demonstrated successful results with offline reinforcement learning and deep neural networks (Fujimoto et al., 2019; Jaques et al., 2019; Kumar et al., 2019a; Wu et al., 2019; Peng et al., 2019; Agarwal et al., 2020). We specifically choose to build upon the advantage-weighted regression (AWR) algorithm (Peng et al., 2019). We find that AWR performs well without requiring dynamic programming, instead using Monte Carlo estimation to infer the value function. This property is appealing, as it is difficult to combine truncated optimization-based meta-learners such as MAML (Finn et al., 2017a) with TD learning, which requires a larger number of gradient steps to effectively back-up values. + +# 7 CONCLUSION + +In this work, we formulated the problem of offline meta-reinforcement learning and presented MACAW, a practical algorithm that achieves good performance on various continuous control tasks compared with other state-of-the-art meta-RL algorithms. We motivated the design of MACAW by the desire to build an offline meta-RL algorithm that is both sample-efficient (using value-based RL subroutines) and consistent (running a full-fledged RL algorithm at test time). We hope that this work serves as the basis for future research in offline meta-RL, enabling more sample-efficient learning algorithms to make better use of purely observational data from previous tasks and adapt to new tasks more quickly. + +We consider fully offline meta-training and meta-testing with and without online fine-tuning, showing that MACAW is effective both when collecting online data is totally infeasible as well as when some online data collection is possible at meta-test time. However, an interesting direction for future work is to consider how we might enable online adaptation from purely offline meta-training while preserving the consistency property of MACAW. This would require an offline strategy for learning to explore, a problem that has largely been considered in on-policy settings in the past (Gupta et al., 2018; Zintgraf et al., 2020) but also recently in offline settings (Dorfman and Tamar, 2020). + +# REFERENCES + +Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline reinforcement learning. In International Conference on Machine Learning, 2020. + +Sarah Bechtle, Artem Molchanov, Yevgen Chebotar, Edward Grefenstette, Ludovic Righetti, Gaurav Sukhatme, and Franziska Meier. Meta-learning via learned loss. arXiv preprint arXiv:1906.05374, 2019. + +Samy Bengio, Yoshua Bengio, Jocelyn Cloutier, and Jan Gecsei. On the optimization of a synaptic learning rule. In Preprints Conf. Optimality in Artificial and Biological Neural Networks, volume 2. Univ. of Texas, 1992. + +Tristan Deleu, Tobias Würfl, Mandana Samiei, Joseph Paul Cohen, and Yoshua Bengio. Torchmeta: A Meta-Learning library for PyTorch, 2019. URL https://arxiv.org/abs/1909.06576. Available at: https://github.com/tristandeleu/pytorch-meta. + +Ron Dorfman and Aviv Tamar. Offline meta reinforcement learning. arXiv preprint arXiv:2008.02598, 2020. + +Yan Duan, John Schulman, Xi Chen, Peter L Bartlett, Ilya Sutskever, and Pieter Abbeel. Rl2: Fast reinforcement learning via slow reinforcement learning. arXiv preprint arXiv:1611.02779, 2016. + +Rasool Fakoor, Pratik Chaudhari, Stefano Soatto, and Alexander J. Smola. Meta-q-learning. In International Conference on Learning Representations, 2020. + +Chelsea Finn and Sergey Levine. Meta-learning and universality: Deep representations and gradient descent can approximate any learning algorithm. International Conference on Learning Representations, 10 2018. + +Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. In International Conference on Machine Learning, 2017a. + +Chelsea Finn, Tianhe Yu, Tianhao Zhang, Pieter Abbeel, and Sergey Levine. One-shot visual imitation learning via meta-learning. CoRL, abs/1709.04905, 2017b. URL http://arxiv.org/abs/ 1709.04905. + +Chelsea B Finn. Learning to Learn with Gradients. University of California, Berkeley, 2018. + +Scott Fujimoto, Herke Hoof, and David Meger. Addressing function approximation error in actorcritic methods. In International Conference on Machine Learning, pages 1582–1591, 2018. + +Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov, editors, Proceedings of the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning Research, pages 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http://proceedings.mlr.press/v97/fujimoto19a.html. + +Abhishek Gupta, Russell Mendonca, YuXuan Liu, Pieter Abbeel, and Sergey Levine. Metareinforcement learning of structured exploration strategies. In Advances in Neural Information Processing Systems, pages 5302–5311, 2018. + +David Ha, Andrew Dai, and Quoc V. Le. Hypernetworks, 2016. + +Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290, 2018. + +Rein Houthooft, Yuhua Chen, Phillip Isola, Bradly Stadie, Filip Wolski, OpenAI Jonathan Ho, and Pieter Abbeel. Evolved policy gradients. In Advances in Neural Information Processing Systems, pages 5400–5409, 2018. + +Jan Humplik, Alexandre Galashov, Leonard Hasenclever, Pedro A Ortega, Yee Whye Teh, and Nicolas Heess. Meta reinforcement learning as task inference. arXiv preprint arXiv:1905.06424, 2019. + +Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019. + +Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Yoshua Bengio and Yann LeCun, editors, 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http://arxiv.org/abs/1412.6980. + +Louis Kirsch, Sjoerd van Steenkiste, and Juergen Schmidhuber. Improving generalization in meta reinforcement learning using learned objectives. In International Conference on Learning Representations, 2020a. URL https://openreview.net/forum?id $\underline { { \underline { { \mathbf { \Pi } } } } }$ S1evHerYPr. + +Louis Kirsch, Sjoerd van Steenkiste, and Jurgen Schmidhuber. Improving generalization in metareinforcement learning using learned objectives. ICLR, 2020b. + +Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. In Advances in Neural Information Processing Systems, pages 11761–11771, 2019a. + +Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. NeurIPS, 2019b. URL http://arxiv.org/abs/1906. 00949. + +B. M. Lake, R. Salakhutdinov, and J. B. Tenenbaum. Human-level concept learning through probabilistic program induction. Science, 350(6266):1332–1338, December 2015. doi: 10.1126/science. aab3050. URL https://doi.org/10.1126/science.aab3050. + +Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial, review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020. + +Russell Mendonca, Abhishek Gupta, Rosen Kralev, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Guided meta-policy search. In Advances in Neural Information Processing Systems, pages 9653–9664, 2019. + +Nikhil Mishra, Mostafa Rohaninejad, Xi Chen, and Pieter Abbeel. Meta-learning with temporal convolutions. arXiv:1707.03141, 2017. + +Anusha Nagabandi, Ignasi Clavera, Simin Liu, Ronald S Fearing, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Learning to adapt in dynamic, real-world environments through meta-reinforcement learning. International Conference on Learning Representations (ICLR), 2019. + +Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement learning with offline datasets, 2020. + +Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression: Simple and scalable off-policy reinforcement learning, 2019. + +Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for operational space control. In Proceedings of the 24th International Conference on Machine Learning, ICML ’07, page 745–750, New York, NY, USA, 2007. Association for Computing Machinery. ISBN 9781595937933. doi: 10.1145/1273496.1273590. URL https: //doi.org/10.1145/1273496.1273590. + +Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with implicit gradients. In Advances in Neural Information Processing Systems, pages 113–124, 2019. + +Kate Rakelly, Aurick Zhou, Deirdre Quillen, Chelsea Finn, and Sergey Levine. Efficient off-policy meta-reinforcement learning via probabilistic context variables. In International Conference on Machine Learning, 2019. + +Jonas Rothfuss, Dennis Lee, Ignasi Clavera, Tamim Asfour, and Pieter Abbeel. Promp: Proximal meta-policy search. arXiv preprint arXiv:1810.06784, 2018. + +Andrei A. Rusu, Dushyant Rao, Jakub Sygnowski, Oriol Vinyals, Razvan Pascanu, Simon Osindero, and Raia Hadsell. Meta-learning with latent embedding optimization. In International Conference on Learning Representations, 2019. URL https://openreview.net/forum?id= BJgklhAcK7. + +Steindór Sæmundsson, Katja Hofmann, and Marc Peter Deisenroth. Meta reinforcement learning with latent variable gaussian processes. arXiv preprint arXiv:1803.07551, 2018. + +Jurgen Schmidhuber. Evolutionary principles in self-referential learning. On learning how to learn: The meta-meta-... hook.) Diploma thesis, Institut f. Informatik, Tech. Univ. Munich, 1:2, 1987. + +Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn, pages 3–17. Springer, 1998. + +Oriol Vinyals, Charles Blundell, Timothy Lillicrap, koray kavukcuoglu, and Daan Wierstra. Matching networks for one shot learning. In D. Lee, M. Sugiyama, U. Luxburg, I. Guyon, and R. Garnett, editors, Advances in Neural Information Processing Systems, volume 29, pages 3630–3638. Curran Associates, Inc., 2016. URL https://proceedings.neurips.cc/paper/2016/ file/90e1357833654983612fb05e3ec9148c-Paper.pdf. + +Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos, Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv preprint arXiv:1611.05763, 2016. + +Yifan Wu, George Tucker, and Ofir Nachum. Behavior regularized offline reinforcement learning. arXiv preprint arXiv:1911.11361, 2019. + +Yuhuai Wu, Mengye Ren, Renjie Liao, and Roger Grosse. Understanding short-horizon bias in stochastic meta-optimization. arXiv preprint arXiv:1803.02021, 2018. + +Yuxiang Yang, Ken Caluwaerts, Atil Iscen, Jie Tan, and Chelsea Finn. Norml: No-reward meta learning. In Proceedings of the 18th International Conference on Autonomous Agents and MultiAgent Systems, pages 323–331. International Foundation for Autonomous Agents and Multiagent Systems, 2019. + +Tianhe Yu, Deirdre Quillen, Zhanpeng He, Ryan Julian, Karol Hausman, Chelsea Finn, and Sergey Levine. Meta-world: A benchmark and evaluation for multi-task and meta reinforcement learning. In Conference on Robot Learning, 2019. + +Luisa Zintgraf, Kyriacos Shiarlis, Maximilian Igl, Sebastian Schulze, Yarin Gal, Katja Hofmann, and Shimon Whiteson. Varibad: A very good method for bayes-adaptive deep rl via meta-learning. In International Conference on Learning Representations, 2020. + +Luisa M Zintgraf, Kyriacos Shiarlis, Vitaly Kurin, Katja Hofmann, and Shimon Whiteson. Fast context adaptation via meta-learning. In International Conference on Machine Learning, 2019. + +# Appendix + +# A MACAW AUXILIARY LOSS AND UPDATE EXPRESSIVENESS + +Finn and Levine (2018) lay out conditions under which the MAML update procedure is universal, in the sense that it can approximate any function $f ( \mathbf { x } , \mathbf { y } , \mathbf { x } ^ { * } )$ arbitrarily well (given enough capacity), where $\mathbf { x }$ and y are the support set inputs and labels, respectively, and $\mathbf { x } ^ { * }$ is the test input. Universality in this sense is an attractive property because it implies that the update is expressive enough to approximate any update procedure; a method that does not possess the universality property might be limited in its asymptotic post-adaptation performance because it cannot express (or closely approximate) the true optimal update procedure. In order for the MAML update procedure to be universal, several requirements of the network architecture, hyperparameters, and loss function must be satisfied. Most of these are not method-specific in that they stipulate minimum network depth, activation functions, and non-zero learning rate for any neural network. However, the condition placed on the loss function require more careful treatment. The requirement is described in Definition 1. + +Definition 1. A loss function is ‘universal’ if the gradient of the loss with respect to the prediction(s) is an invertible function of the label(s) used to compute the loss. + +We note that Definition 1 is a necessary but not sufficient condition for an update procedure to be universal (see other conditions above and Finn and Levine (2018)). For the AWR loss function (copied below from Equation 1 with minor changes), the labels are the ground truth action a and the corresponding advantage $\mathcal { R } ( \mathbf { s } , \mathbf { a } ) - V _ { \phi _ { i } ^ { \prime } } ( \mathbf { s } )$ . + +$$ +\mathcal { L } ^ { \mathrm { A W R } } ( \mathbf { s } , \mathbf { a } , \theta , \phi _ { i } ^ { \prime } ) = - \log \pi _ { \theta } ( \mathbf { a } | \mathbf { s } ) \exp \left( \frac { 1 } { T } \left( \mathcal { R } ( \mathbf { s } , \mathbf { a } ) - V _ { \phi _ { i } ^ { \prime } } ( \mathbf { s } ) \right) \right) +$$ + +For simplicity and without loss of generality (see Finn and Levine (2018), Sections 4 & 5), we will consider the loss for only a single sample, rather than averaged over a batch. + +In the remainder of this section, we first state in Theorem 1 that the standard AWR policy loss function does not satisfy the condition for universality described in Definition 1. The proof is by a simple counterexample. Next, we state in Theorem 2 that the MACAW auxiliary loss does satisfy the universality condition, enabling a universal update procedure given the other generic universality conditions are satisfied (note that the MACAW value function loss satisfies the condition in Definition 1 because it uses L2 regression Finn and Levine (2018)). + +# A.1 NON-UNIVERSALITY OF STANDARD AWR POLICY LOSS FUNCTION + +Intuitively, the AWR gradient does not satisfy the invertibility condition because it does not distinguish between a small error in the predicted action that has a large corresponding advantage weight and a large error in the predicted action (in the same direction) that has a small corresponding advantage weight. The following theorem formalizes this statement. + +Theorem 1. The AWR loss function $\mathcal { L } ^ { A W R }$ is not universal according to Definition 1. + +The proof is by counterexample; we will show that there exist different sets of labels $\{ \mathbf { a } _ { 1 } , A _ { 1 } ( \mathbf { s } , \mathbf { a } _ { 1 } ) \}$ and $\{ \mathbf { a } _ { 2 } , A _ { 2 } ( \mathbf { s } , \mathbf { a } _ { 1 } ) \}$ that produce the same gradient for some output of the model. First, rewriting Equation 7 with $A ( \mathbf { s } , \mathbf { a } ) = \left( \mathcal { R } ( \mathbf { s } , \mathbf { a } ) - V _ { \phi _ { i } ^ { \prime } } ( \mathbf { s } ) \right)$ , we have + +$$ +{ \mathcal { L } } ^ { \mathrm { A W R } } ( \mathbf { s } , \mathbf { a } , \theta ) = - \log \pi _ { \theta } ( \mathbf { a } | \mathbf { s } ) \exp \left( { \frac { A ( \mathbf { s } , \mathbf { a } ) } { T } } \right) +$$ + +Because our policy is parameterized as a Gaussian with fixed diagonal covariance $\sigma ^ { 2 } I$ , we can again rewrite this loss as + +$$ +\mathcal { L } ^ { \mathrm { A W R } } ( \mathbf { s } , \mathbf { a } , \hat { \mathbf { a } } _ { \mu } ) = \left( \log \frac { 1 } { ( 2 \pi \sigma ^ { 2 } ) ^ { \frac { k } { 2 } } } + \frac { | | \mathbf { a } - \hat { \mathbf { a } } _ { \mu } | | ^ { 2 } } { 2 \sigma ^ { 2 } } \right) \exp \left( \frac { A ( \mathbf { s } , \mathbf { a } ) } { T } \right) +$$ + +where $\hat { \mathbf { a } } _ { \mu }$ is the mean of the Gaussian output by the policy and $k = \dim ( \mathbf { a } )$ . For the purpose of the simplicity of the counterexample, we assume the policy output $\hat { \mathbf { a } } _ { \mu }$ is 0. The gradient of this loss with respect to the policy output is + +$$ +\nabla _ { \hat { \mathbf { a } } _ { \mu } } { \mathcal { L } } ^ { \mathrm { A W R } } ( \mathbf { s } , \mathbf { a } , \mathbf { 0 } ) = - { \frac { 1 } { \sigma ^ { 2 } } } \exp \left( { \frac { A ( \mathbf { s } , \mathbf { a } ) } { T } } \right) \mathbf { a } +$$ + +To demonstrate that the gradient operator applied to this loss function is not invertible, we pick two distinct label values and show that they give the same gradient. We pick $\mathbf { a } _ { 1 } = [ 1 , . . . , 1 ] ^ { T }$ , $A _ { 1 } ( \mathbf { s } , \mathbf { a } _ { 1 } ) =$ $T$ and $\mathbf { a } _ { 2 } = [ 0 . 1 , . . . , 0 . 1 ] ^ { T }$ , $A _ { 2 } ( \mathbf { s } , \mathbf { a } _ { 2 } ) \stackrel { - } { = } \log ( 1 0 ) T$ . Inserting these values into Equation A.1, this gives gradients $\begin{array} { r } { g _ { 1 } ~ = ~ \frac { - e } { \sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } } \end{array}$ and $\begin{array} { r } { g _ { 2 } ^ { \sim } = \frac { - 1 0 e } { \sigma ^ { 2 } } [ 0 . 1 , . . . , 0 . 1 ] ^ { T } = \frac { - e } { \sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } = g _ { 1 } } \end{array}$ . Thus the gradient of the standard AWR loss does not possess sufficient information to recover the labels uniquely and using this loss for policy adaptation does not produce a universal policy update procedure. Next, we show how the auxiliary loss used in MACAW alleviates this problem. + +# A.2 UNIVERSALITY OF THE MACAW POLICY ADAPTATION LOSS FUNCTION + +In this section, we show that by adding an additional term to the AWR loss function, we acquire a loss that satisfies the condition stated in Definition 1, which we state in Theorem 2. Intuitively, the additional loss term allows the gradient to distinguish between the cases that were problematic for the AWR loss (large action error and small advantage weight vs small action error and large advantage weight). + +Theorem 2. The MACAW policy loss function ${ \mathcal { L } } _ { \pi }$ is universal according to Definition 1. + +The MACAW policy adaptation loss (given in Equation 3) is the sum of the AWR loss and an auxiliary advantage regression loss (the following is adapted from Equation 8): + +$$ +\mathcal { L } _ { \pi } ( \mathbf { s } , \mathbf { a } , \hat { \mathbf { a } } _ { \mu } , \hat { A } ) = \left( \log \frac { 1 } { ( 2 \pi \sigma ^ { 2 } ) ^ { \frac { k } { 2 } } } + \frac { \| \mathbf { a } - \hat { \mathbf { a } } _ { \mu } \| ^ { 2 } } { 2 \sigma ^ { 2 } } \right) \exp \left( \frac { A ( \mathbf { s } , \mathbf { a } ) } { T } \right) + \lambda ( A ( \mathbf { s } , \mathbf { a } ) - \hat { A } ) ^ { 2 } +$$ + +where $\hat { A }$ is the predicted advantage output from the policy advantage head and $\lambda$ is the advantage regression coefficient. The gradient of this loss with respect to the predicted advantage $\hat { A }$ is + +$$ +g _ { \mathrm { A D V } } = \nabla _ { \hat { A } } \mathcal { L } _ { \pi } ( \mathbf { s } , \mathbf { a } , \hat { \mathbf { a } } _ { \mu } , \hat { A } ) = 2 \lambda ( \hat { A } - A ( \mathbf { s } , \mathbf { a } ) ) +$$ + +and the gradient of the loss with respect to $\hat { \mathbf { a } } _ { \mu }$ is + +$$ +\mathbf { g } _ { \mathrm { A W R } } = \nabla _ { \hat { \mathbf { a } } _ { \mu } } \mathcal { L } _ { \pi } ( \mathbf { s } , \mathbf { a } , \hat { \mathbf { a } } _ { \mu } , \hat { A } ) = \frac { 1 } { \sigma ^ { 2 } } \exp \left( \frac { A ( \mathbf { s } , \mathbf { a } ) } { T } \right) ( \hat { \mathbf { a } } _ { \mu } - \mathbf { a } ) +$$ + +We write the combined gradient as $\mathbf { g } = \left[ \mathbf { \mathcal { G } } _ { \mathrm { A W R } } \right]$ . In order to provide a universal update procedure, we must be able to recover both the action label a and the advantage label $A ( \mathbf { s } , \mathbf { a } )$ from g. First, because $g _ { \mathrm { A D V } }$ is an invertible function of $A ( \mathbf { s } , \mathbf { a } )$ , we can directly extract the advantage label by re-arranging Equation 9: + +$$ +A ( \mathbf { s } , \mathbf { a } ) = \frac { g _ { \mathrm { A D V } } - 2 \lambda \hat { A } } { - 2 \lambda } +$$ + +Similarly, gAWR is an invertible function of a, so we can then extract the action label by re-arranging Equation 10: + +$$ +\mathbf { a } = { \frac { \mathbf { g } _ { \mathrm { A W R } } - { \frac { 1 } { \sigma ^ { 2 } } } \exp \left( { \frac { A ( \mathbf { s } , \mathbf { a } ) } { T } } \right) \hat { \mathbf { a } } _ { \mu } } { - { \frac { 1 } { \sigma ^ { 2 } } } \exp \left( { \frac { A ( \mathbf { s } , \mathbf { a } ) } { T } } \right) } } +$$ + +Because we can compute $A ( \mathbf { s } , \mathbf { a } )$ from $g _ { \mathrm { A D V } }$ , there are no unknowns in the RHS of Equation 11 and we can compute a (here, $\sigma , \lambda$ , and $T$ are known constants); it is thus the additional information provided by $g _ { \mathrm { A D V } }$ that resolves the ambiguity that is problematic for the standard AWR policy loss gradient. We have now shown that both the action label and advantage label used in the MACAW policy adaptation loss are recoverable from its gradient, implying that the update procedure is universal under the conditions given by Finn and Levine (2018), which concludes the proof. + +# B WEIGHT TRANSFORM LAYERS + +Here, we describe in detail the ‘weight transformation’ layer that augments the expressiveness of the MAML update in MACAW. First, we start with the observation in past work (Finn et al., 2017b) that adding a ‘bias transformation’ to each layer improves the expressiveness of the MAML update. + +To understand the bias transform, we compare with a typical fully-connected layer, which has the forward pass + +$$ +\mathbf { y } = \sigma \left( W \mathbf { x } + \mathbf { b } \right) +$$ + +where $\mathbf { x }$ is the previous layer’s activations, $\mathbf { b }$ is the bias vector, $W$ is the weight matrix, and $\mathbf { y }$ is this layer’s activations. For a bias transformation layer, the forward pass is + +$$ +\mathbf { y } = \sigma \left( W \mathbf { x } + W ^ { b } \mathbf { z } \right) +$$ + +where $\mathbf { z }$ and $W ^ { b }$ are learnable parameters of the bias transformation. During adaptation, either only the vector $\mathbf { z }$ or both the vector $\mathbf { z }$ and the bias matrix $W ^ { b }$ are adapted. The vector $\mathbf { \bar { \boldsymbol { W } } } ^ { b } \mathbf { z }$ has the same dimensionality as the bias in the previous equation. This formulation does not increase the expressive power of the forward pass of the layer, but it does allow for a more expressive update of the ‘bias vector’ $W ^ { b } \mathbf { z }$ (in the case of $\dim ( \mathbf { z } ) = \dim ( \mathbf { b } )$ and $W ^ { b } = I$ , we recover the standard fully-connected layer). + +For a weight transformation layer (used in MACAW), we extend the idea of computing the bias from a latent vector to the weight matrix itself. We now present the forward pass for a weight transformation layer layer with $d$ input and $d$ output dimensions and latent dimension $c$ . First, we compute $w =$ $W ^ { \mathrm { w t } } \mathbf { z }$ , where $W ^ { \mathrm { w t } } \in \mathbf { \mathbb { R } } ^ { ( d ^ { 2 } + d ) \times c }$ . The first $d ^ { 2 }$ components of $w$ are reshaped into the $d \times d$ weight matrix of the layer $W ^ { * }$ , and the last $d$ components are used as the bias vector $b ^ { * }$ . The forward pass is then the same as a regular fully-connected layer, but using the computed matrix and bias $W ^ { * }$ and $b ^ { * }$ instead of a fixed matrix and bias vector; that is $y = \bar { \sigma } ( W ^ { * } \mathbf { x } + \mathbf { \bar { b } } ^ { * } )$ . During adaptation, both the latent vector $\mathbf { z }$ and the transform matrix $W ^ { \mathrm { w t } }$ are adapted. We note that adapting $\mathbf { z }$ enables the post-adaptation weight matrix used in the forward pass, $W ^ { * ^ { \prime } }$ , to differ from the pre-adaptation weight matrix $W ^ { * }$ by a matrix of rank up to the dimension of $\mathbf { z }$ , whereas gradient descent with normal layers makes rank-1 updates to weight matrices. We hypothesize it is this added expressivity that makes the weight transform layer effective. A comparison of MACAW with and without weight transformation layers can be found in Figures 4-center and 6. + +# C ADDITIONAL EXPERIMENTS AND ABLATIONS + +# C.1 WEIGHT TRANSFORM ABLATION STUDY + +In addition to the results shown in Figure 4 (center), we include an ablation of the weight transform here for all tasks. Figure 5 shows these results. We find that across environments, the weight transform plays a significant role in increasing training speed, stability, and even final performance. On the relatively simple cheetah direction benchmark, it does not affect the quality of the final meta-trained agent, but it does improve the speed and stability of training. On the other three (more difficult) tasks, we see a much more noticeable affect in terms of both training stability as well as final performance. + +Additionally, we investigate the effect of the weight transform in a few-shot image classification setting. We use the 20-way 1-shot Omniglot digit classification setup (Lake et al., 2015), specifically the train/val split used by (Vinyals et al., 2016) as implemented by Deleu et al. (2019). We compare three MLP models, all with 4 hidden layers: + +1. An MLP with weight transform layers of 128 hidden units and a latent layer dimension of 32 (4,866,048 parameters; Weight Transform in Figure 6). +2. An MLP without weight transform layers, with 128 hidden units (152,596 parameters; No WT-Equal Width in Figure 6) +3. An MLP without weight transform layers, with 1150 hidden units (4,896,720 parameters; No WT-Equal Params in Figure 6) + +We find that the model with weight transform layers shows the best combination of fast convergence and good asymptotic performance compared with baselines with regular fully-connected layers. No WT-Equal Width has the same number of hidden units as the weight transform model (128), which means the model has fewer parameters in total (because the weight transform layers include a larger weight matrix). The No WT-Equal Params baseline uses wider hidden layers to equalize the number of parameters in the entire model with the Weight Transform model. Somewhat surprisingly, the smaller baseline model (Equal Width) outperforms the larger baseline model (Equal Params). + +![](images/cedc853cfcacf9d7c0bdcc3294feab865d89f98d34b1c4415f03ae668dbfc96f.jpg) +Figure 5: Ablating the weight transformation in MACAW on the MuJoCo benchmark environments. All networks have the same number of hidden units. Although MACAW is able to learn with regular fully-connected layers, the weight transformation significantly improves performance on all tasks that require adaptation to unseen tasks. + +When using MAML-style meta-learners, it is important to consider that adding parameters to the model affects the expressiveness of both the forward computation of the model and the updates computable with a finite number of steps of gradient descent. + +Generally, increasing the number of parameters in the model should improve the model’s ability to fit the training set (because the inner loop of MAML is more expressive), which we observe here. Increasing the expressiveness of the inner loop of MAML can also speed convergence, which we also observe in Figure 6. However, by simply adding neurons to a typical MLP, the post-adaptation model tends to overfit the training set more, as we see in Figure 6. On the other hand, adding parameters through weight transformation layers increases expressiveness of the adaptation step by enabling weight updates with rank greater than 1 without changing the expressiveness of the forward computation of the model. + +![](images/bd1149db91abb6b55b7be7dced214bd043f024408c107192614d31e935ae5407.jpg) +Figure 6: Faster convergence provided by the weight transform layer (orange) on Omniglot 20- way 1-shot image classification (Lake et al., 2015). + +# C.2 ONLINE FINE-TUNING FOROUT-OF-DISTRIBUTION TEST TASKS + +In some cases, it may be necessary or desirable to perform online fine-tuning after the initial offline adaptation step. This is the fully offline meta-RL problem with online fine-tuning described in Section 3, where an algorithm is given a small amount of initial adaptation data from the test task, just as in the fully offline setting, and then is able to interact with the environment to collect additional training data and perform on-policy updates. This ability to continually improve with additional training after the initial offline adaptation step is what makes a consistent meta-reinforcement learner advantageous. + +This hybrid setting (offline training with additional online fine-tuning) is known to be extremely challenging in traditional reinforcement learning. These difficulties are clearly documented by recent work (Nair et al., 2020). In short, this setting is challenging in traditional RL because while offline pre-training might produce a policy that performs well, online fine-tuning often leads to a significant drop in initial performance, which can take a very long time to recover from (see Nair et al. (2020)). + +
Additional Env. StepsOffline PEARL+FTMACAW
RewardImprovementRewardImprovement
0-553.4 (21.2)-323.1 (42.9)
20k-565.0 (4.7)-11.5 (3.5)-279.1 (16.8)44.0 (14.5)
200k-533.6 (19.8)19.8 (3.7)-272.0 (15.2)51.1 (12.7)
+ +Table 1: Absolute reward as well as improvement (in terms of reward) of Offline PEARL $+ \mathrm { F T }$ and MACAW after 0, 20k, and $2 0 0 \mathrm { k }$ additional environment steps are gathered and used for online fine tuning. Standard errors of the mean over the 13 test tasks are reported in parentheses. Averages are taken over 10 rollouts of each policy. We find that MACAW achieves both better out-of-distribution performance before online training as well as faster improvement during online fine-tuning. Note that Offline PEARL $+ \mathrm { F T }$ experiences an initial drop in average performance on the test task after $2 0 \mathrm { k }$ steps, compared with the performance of the policy conditioned only on the initial batch of offline data. A similar effect has been reported in recent work in offline RL (Nair et al., 2020). + +In many cases, online fine-tuning can take a very long time to recover the performance of the offlineonly policy, if it does so at all. In offline meta-RL, we have a similar challenge; an offline meta-RL algorithm must not only meta-train for good performance on a single batch of offline test data, but it must also learn a set of parameters that enables fine-tuning to make productive updates to its policy and/or value function without completely destroying the meta-learned knowledge about the task distribution. + +In this section, we use a hybrid setting as described above to evaluate not only MACAW’s consistency (its ability to continue to improve after an initial offline adaptation step), but its ability to continue to improve even when the test task distribution differs from the train distribution. Because significant distribution shift means that some train tasks are irrelevant, or even detrimental to test performance, this setting is very difficult. In order to make a meaningful comparison, we compare with an "Offline PEARL $^ +$ fine-tuning" (Offline PEARL ${ \bf \Phi } + \mathrm { F T }$ ) algorithm, which is also technically consistent (because it essentially performs the SAC algorithm on the test task after the initial task inference step). However, we hypothesize that MACAW will have an advantage over this Offline PEARL $+ \mathrm { F T }$ algorithm because while both algorithms are consistent, MACAW explicitly trains for good fine-tunability with gradient descent, unlike task inference-based meta-RL algorithms. + +The training procedure for Offline PEARL+FT is the same at the regular Offline PEARL training procedure. However, at test time, after receiving an initial small batch of offline data for task inference, we alternative between performing rollouts of the task-conditioned policy to collect additional data from the test task and perform gradient descent on the PEARL policy and value function objectives with this off-policy data. Similarly, for MACAW test time involves first using the small batch of offline test task data to take an initial gradient step on the value and policy loss functions (Eqns 2 and 3), then alternating between rolling out the adapted policy and taking more steps of gradient descent on the MACAW losses. + +The specific experimental setup is as follows. We partition the individual tasks in the Cheetah-Vel problem such that training tasks correspond to target velocities in the range [0,2] and test tasks correspond to target velocities in the range [2,3]. After meta-training, for each test task, we provide the algorithm with a small batch of offline data for adaptation just as in the fully offline setting. However, we allow the algorithm to then collect and train on up to $2 0 0 \mathrm { k }$ additional interactions from the environment. Both algorithms alternate between sampling a single trajectory (200 environment interactions) and performing 100 steps of gradient descent on the aggregate buffer of data for the test task, which contains both the initial offline batch of data as well as all online data collected so far. We evaluate both algorithms on their performance after $2 0 \mathrm { k }$ and $2 0 0 \mathrm { k }$ additional interactions with the environment. The results of this experiment are reported in Table 1. We observe that MACAW achieves both higher absolute reward on the OOD test tasks as well as faster relative improvement over the offline-only adapted policy compared to the Offline PEARL+FT baseline. + +# C.3 METAWORLD ML45 BENCHMARK + +As an additional experiment, we test the training and generalization capabilities of MACAW on a much broader distribution of tasks, and where test tasks differ significantly from training tasks (e.g. picking up an object as opposed to opening a window or hammering a nail). Recently, + +![](images/9197515ff40248fcc48afe703179c7e00b59ad9d2ce4621a34699a9a92cb1b05.jpg) +Figure 7: Average success rates of MACAW, PEARL, and $\mathrm { M T } +$ fine-tuning (with 20 fine-tuning steps) on the 5 test tasks the Meta-World ML45 suite of continuous control tasks. Dashed line shows final PEARL average success rate after $1 0 \mathrm { m }$ training steps. + +Yu et al. (2019) proposed the Meta-World (Yu et al., 2019) suite of continuous control benchmark environments as a more realistic distribution of tasks for multi-task and meta-learning algorithms. This benchmark includes 45 meta-training tasks and 5 meta-testing tasks. The results of this experiment are summarized in Figure 7. + +We find that all methods are able to make meaningful progress on the test tasks, with gradient-based methods (MACAW and MT $^ +$ fine tune) learning much more quickly than PEARL. MACAW does achieve a quite high level of performance quite early on in training; however, it begins to overfit with further training. In the regime where periodic online evaluations are available for the purpose of early stopping, we could avoid this issue, in which case MACAW would slightly underperform the multi-task learning baseline. A possible reason for some inconsistency between the performance of each algorithm on Meta-World and the results reported in Figure 3 is the difficult scaling of the rewards in the current version of the Meta-World benchmark. Rewards can vary by 5 orders of magnitude, from negative values to values on the order of 100,000. This has been documented to adversely impact training performance even in single-task RL and increase hyperparameter sensitivity (see https://github.com/rlworkgroup/metaworld/issues/226). Because of the problems stemming from the current reward functions in Meta-World, the maintainers of the benchmark are updating them for the next version of the benchmark, which has not been released as of November 2020. + +# D EXPERIMENTAL SET-UP AND DATA COLLECTION + +D.1 OVERVIEW OF PROBLEM SETTINGS + +The problems of interest include: + +1. Half-Cheetah Direction Train a simple cheetah to run in one of two direction: forward and backward. Thus, there are no held-out test tasks for this problem, making it more ‘proof of concept’ than benchmark. +2. Half-Cheetah Velocity Train a cheetah to run at a desired velocity, which fully parameterizes each task. For our main experiment, values of the task parameters are sampled from a uniform interval of 40 velocities in the range [0, 3]. A subset of 5 target velocities is sampled randomly for evaluation. For ablation experiments +3. Ant-2D Direction Train a simulated ant with 8 articulated joints to run in a random 2D direction. For our experiments, we sample 50 random directions uniformly, holding out 5 for testing. +4. Walker-2D Params Train a simulated agent to move forward, where different tasks correspond to different randomized dynamics parameters rather than reward functions. For our experiments, we sample 50 random sets of dynamics parameters, holding out 5 for testing. +5. Meta-World ML45 Train a simulated Sawyer robot to complete 45 different robotics manipulation tasks (for training). 5 additional tasks are included for testing, making 50 tasks in total. Tasks include opening a window, hammering a nail, pulling a lever, picking & placing + +Table 2: Hyperparameters used for the PEARL experiments. For the MuJoCo tasks, we generally used the same parameters as reported in (Rakelly et al., 2019), with some minor modifications. The different parameters used for the MetaWorld ML45 environment are reported above. + +
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Meta batch size4-1016
Batch size2561
Embedding batch size100-256750
KL penalty0.1
Hidden layers31
Neurons per hidden layer300512
Latent space size58
Policy learning rate3e-41
Value function learning rate3e-4
Context embedding learning rate3e-4
Q-Function learning rate3e-4
Reward scale5.0
RecurrentFalse
+ +an object. See Yu et al. (2019) for more information. Our experiments use a continuous space randomization for each task setup, unlike the experiments in (Yu et al., 2019), which sample from a fixed number of task states. This creates a much more challenging environment, as seen in the success rate curves above. + +For the first 4 MuJoCo domains, each trajectory is 200 time steps (as in Rakelly et al. (2019)); for Meta-World, trajectories are 150 time steps long. + +# D.2 DATA COLLECTION + +We adapt each task to the offline setting by restricting the data sampling procedure to sample data only from a fixed offline buffer of data. For each task, we train a separate policy from scratch, using Soft Actor-Critic (Haarnoja et al., 2018) for all tasks except Cheetah-Velocity, for which we use TD3 (Fujimoto et al., 2018) as it proved more stable across the various Cheetah-Velocity tasks. We save complete replay buffers from the entire lifetime of training for each task, which includes 5M steps for Meta-World, 2.5M steps for Cheetah-Velocity, 2.5M steps for Cheetah-Dir, 2M steps for Ant-Direction, and 1M steps for Walker-Params. We use these buffers of trajectories, one per task for each problem, to sample data in both the inner and outer loop of the algorithm during training. See Figures 8 and 9 for the learning curves of the offline policies for each train and test task. + +# D.3 ABLATION EXPERIMENTS + +For the data quality experiment, we compare the post-adaptation performance when MACAW is trained with 3 different sampling regimes for the Cheetah-Vel problem setting. Bad, medium, and good data quality mean that adaptation data (during both training and evaluation) is drawn from the first, middle, and last 500 trajectories from the offline replay buffers. For the task quantity experiment, we order the tasks by the target velocity in ascending order, giving equally spaced tasks with target velocities $g _ { 0 } = 0 . 0 7 5$ , $g _ { 2 } = 0 . 1 5 , . . . , g _ { 3 9 } = 3 . 0$ . For the 20 task experiment, we use $g _ { i }$ with even $i$ for training and odd $i$ for testing. For the 10 task experiment, we move every other train task to the test set (e.g. tasks $i = 2 , 6 , 1 0 , . . . )$ . For the 5 task experiment, we move every other remaining train task to the test set (e.g. tasks $i = 4 , 1 2 , 2 0 , . . . )$ , and for the 3 task experiment, we again move every other task to the test set, so that the train set only contains tasks 0, 16, and 32. Task selection was performed this way to ensure that even in sparse task environments, the train tasks provide coverage of most of the task space. + +# E IMPLEMENTATION DETAILS AND HYPERPARAMETERS + +Peng et al. (2019) note several strategies used to increase the stability of their advantage-weighted regression implementation. We normalize the advantage logits in the policy update step to have zero mean and unit standard deviation, as in Peng et al. (2019). Advantage weight logits are also clipped + +![](images/f56b11358e36417a1ca4bfb309af242dbc448cfd4b43fad3c69a87df2aa73a04.jpg) +Figure 8: Learning curves for offline policies for the 4 different MuJoCo environments used in the experimental evaluations. Each curve corresponds to a policy trained on a unique task. Various levels of smoothing are applied for the purpose of easier visualization. + +![](images/2d6d567b921998eec2d15a9ea27caf595a591019afdd8e598bf1a85c9a4e9d84.jpg) +Figure 9: Learning curves and success rates for all tasks in the MetaWorld 45 benchmark. Each curve corresponds to a policy trained on a unique task. Various levels of smoothing are applied for the purpose of plotting. + +Table 3: Hyperparameters used for the multi-task learning $^ +$ fine tuning baseline. \*For the Walker environment, the value learning rate was 1e-5 for stability. + +
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Value learning rate1e-4*1e-6
Policy learning rate1e-41
Value fine-tuning learning rate1e-41e-6
Policy fine-tuning learning rate1e-31
Train outer loop batch size256
Fine-tuning batch size2561
Number of hidden layers31
Neurons per hidden layer100300
Task batch size51
Max advantage clip20
+ +
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Auxiliary advantage loss coefficient1e-21e-3
Outer value learning rate1e-51e-6
Outer policy learning rate1e-4
Inner policy learning rate1e-3 (learned)1e-2 (learned)
Inner value learning rate1e-3 (learned)1e-4 (learned)
Train outer loop batch size2561
Train adaptation batch size256256
Eval adaptation batch size2561
Number of adaptation steps11
Learning rate for learnable learning rate1e-31
Number of hidden layers31
Neurons per hidden layer100300
Task batch size510
Max advantage clip201
AWR policy temperature11
+ +Table 4: Hyperparameters used for MACAW. The Standard Configuration is used for all experiments and all environments except for Meta-World (due to the extreme difference in magnitude of rewards in Meta-World, which has typical rewards $1 0 0 { - } 1 0 0 0 \mathrm { x }$ larger than in the other tasks). For the Meta-World configuration, only parameters that differ from the standard configuration are listed. + +to avoid exploding gradients and numerical overflow. To train the value function, we use simple least squares regression onto Monte Carlo returns, rather than $\mathrm { T D } ( \lambda )$ . Finally, our policy is parameterized by a single Gaussian with fixed variance of 0.04; our policy network thus predicts only the mean of the Gaussian distribution. + +In addition to using weight transformation layers instead of regular fully-connected layers, we also learn learning rates for each layer of our network by gradient descent. To speed up training, we compute our loss using a ‘task minibatch’ of 5 tasks at each step of optimization, rather than using all of the training tasks. Finally, specific to the RL setting, we sample experiences in contiguous chunks from the replay buffers during train-time adaptation and uniformly (non-contiguously) from the replay buffers for outer-loop updates and test-time adaptation. For outer loop updates, we sample data selectively towards the end of the replay buffers. + +# E.1 HYPERPARAMETERS + +Tables 2, 3, and 4 describe the hyperparameters used for each algorithm in our empirical evaluations. We performed some manual tuning of hyperparameters for all algorithms, but found that the performance was not significantly affected for environments other than Meta-World, likely due to the difficult reward scaling in the current release of Meta-World. \ No newline at end of file diff --git a/parse/train/S5S3eTEmouw/S5S3eTEmouw_content_list.json b/parse/train/S5S3eTEmouw/S5S3eTEmouw_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..a2ed0e991c947e62f9b071fcad888d2fd3253277 --- /dev/null +++ b/parse/train/S5S3eTEmouw/S5S3eTEmouw_content_list.json @@ -0,0 +1,2392 @@ +[ + { + "type": "text", + "text": "OFFLINE META-REINFORCEMENT LEARNING WITHADVANTAGE WEIGHTING", + "text_level": 1, + "bbox": [ + 176, + 98, + 823, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Anonymous authors Paper under double-blind review ", + "bbox": [ + 183, + 170, + 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 introduces the offline meta-reinforcement learning (offline meta-RL) problem setting and proposes an algorithm that performs well in this setting. Offline meta-RL is analogous to the widely successful supervised learning strategy of pretraining a model on a large batch of fixed, pre-collected data (possibly from various tasks) and fine-tuning the model to a new task with relatively little data. That is, in offline meta-RL, we meta-train on fixed, pre-collected data from several tasks and adapt to a new task with a very small amount (less than 5 trajectories) of data from the new task. By nature of being offline, algorithms for offline meta-RL can utilize the largest possible pool of training data available and eliminate potentially unsafe or costly data collection during meta-training. This setting inherits the challenges of offline RL, but it differs significantly because offline RL does not generally consider a) transfer to new tasks or b) limited data from the test task, both of which we face in offline meta-RL. Targeting the offline meta-RL setting, we propose Meta-Actor Critic with Advantage Weighting (MACAW). MACAW is an optimization-based meta-learning algorithm that uses simple, supervised regression objectives for both the inner and outer loop of meta-training. On offline variants of common meta-RL benchmarks, we empirically find that this approach enables fully offline meta-reinforcement learning and achieves notable gains over prior methods. ", + "bbox": [ + 233, + 262, + 766, + 513 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 532, + 336, + 547 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Meta-reinforcement learning (meta-RL) has emerged as a promising strategy for tackling the high sample complexity of reinforcement learning algorithms, when the goal is to ultimately learn many tasks. Meta-RL algorithms exploit shared structure among tasks during meta-training, amortizing the cost of learning across tasks and enabling rapid adaptation to new tasks during meta-testing from only a small amount of experience. Yet unlike in supervised learning, where large amounts of pre-collected data can be pooled from many sources to train a single model, existing meta-RL algorithms assume the ability to collect millions of environment interactions online during meta-training. Developing offline meta-RL methods would enable such methods, in principle, to leverage existing data from any source, making them easier to scale to real-world problems where large amounts of data might be necessary to generalize broadly. To this end, we propose the offline meta-RL problem setting and a corresponding algorithm that uses only offline (or batch) experience from a set of training tasks to enable efficient transfer to new tasks without any further interaction with either the training or testing environments. See Figure 1 for a comparison of offline meta-RL and standard meta-RL. ", + "bbox": [ + 174, + 556, + 825, + 736 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Because the offline setting does not allow additional data collection during training, it highlights the desirability of a consistent meta-RL algorithm. A meta-RL algorithm is consistent if, given enough diverse data on the test task, adaptation can find a good policy for the task regardless of the training task distribution. Such an algorithm would provide a) rapid adaptation to new tasks from the same distribution as the train tasks while b) allowing for improvement even for out of distribution test tasks. However, designing a consistent meta-RL algorithm in the offline setting is difficult: the consistency requirement suggests we might aim to extend the model-agnostic meta-learning (MAML) algorithm (Finn et al., 2017a), since it directly corresponds to fine-tuning at meta-test time. However, existing MAML approaches use online policy gradients, and only value-based approaches have proven effective in the offline setting. Yet combining MAML with value-based RL subroutines is not straightforward: the higher-order optimization in MAML-like methods demands stable and efficient gradient-descent updates, while TD backups are both somewhat unstable and require a large number of steps to propagate reward information across long time horizons. ", + "bbox": [ + 174, + 743, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "To address these challenges, one might combine MAML with a supervised, bootstrap-free RL subroutine, such as advantage-weighted regression (AWR) (Peters and Schaal, 2007; Peng et al., 2019), for both for the inner and outer loop of a gradient-based meta-learning algorithm, yielding a ‘MAML+AWR’ algorithm. However, as we will discuss in Section 4 and find empirically in Section 5, naïvely combining MAML and AWR in this way does not provide satisfactory performance because the AWR policy update is not sufficiently expressive. Motivated by prior work that studies the expressive power of MAML (Finn and Levine, 2018), we increase the expressive power of the meta-learner by introducing a carefully chosen policy update in the inner loop. We theoretically prove that this change increases the richness of the policy’s update and find empirically that this policy update dramatically improves adaptation performance and stability in some settings. We further observe that standard feedforward neural network architectures used in reinforcement learning are not well-suited to optimization-based meta-learning and suggest an alternative that proves critical for good performance across four different environments. We call the resulting meta-RL algorithm and architecture Meta-Actor Critic with Advantage Weighting, or MACAW. ", + "bbox": [ + 174, + 103, + 825, + 299 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Our main contributions are the offline meta-RL problem setting itself and MACAW, an offline meta-reinforcement learning algorithm that possesses three key properties: sample efficiency, offline meta-training, and consistency at meta-test time. To our knowledge, MACAW is the first algorithm to successfully combine gradient-based meta-learning and off-policy value-based RL. Our evaluations include experiments on offline variants of standard continuous control meta-RL benchmarks as well as settings specifically designed to test the robustness of an offline meta-learner when training tasks are scarce. In all of these settings, MACAW significantly outperforms fully offline variants state-of-the-art off-policy RL and meta-RL baselines. ", + "bbox": [ + 174, + 304, + 825, + 416 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 PRELIMINARIES ", + "text_level": 1, + "bbox": [ + 176, + 426, + 339, + 441 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In reinforcement learning, an agent interacts with a Markov Decision Process (MDP) to maximize its cumulative reward. An MDP is a tuple $( \\boldsymbol { S } , \\boldsymbol { A } , \\boldsymbol { T } , \\boldsymbol { r } )$ consisting of a state space $s$ , an action space $\\mathcal { A }$ , stochastic transition dynamics $T : \\mathcal { S } \\times \\mathcal { A } \\times \\mathcal { S } [ 0 , 1 ]$ , and a reward function $r$ . At each time step, the agent receives reward $r _ { t } = r ( s _ { t } , a _ { t } , s _ { t + 1 } )$ . The agent’s objective is to maximize the expected return (i.e. discounted sum of rewards) $\\begin{array} { r } { \\mathcal { R } = \\sum _ { t } \\gamma ^ { t } r _ { t } } \\end{array}$ , where $\\gamma \\in [ 0 , 1 ]$ is a discount factor. To extend this setting to meta-RL, we consider tasks drawn from a distribution $\\mathcal { T } _ { i } \\sim p ( \\mathcal { T } )$ , where each task $\\mathcal { T } _ { i } = ( \\mathcal { S } , \\bar { \\mathcal { A } } , p _ { i } , r _ { i } )$ represents a different MDP. Both the dynamics and reward function may vary across tasks. The tasks are generally assumed to exhibit some (unknown) shared structure. During meta-training, the agent is presented with tasks sampled from $p ( \\mathcal T )$ ; at meta-test time, an agent’s objective is to rapidly find a high-performing policy for a (potentially unseen) task $\\mathcal { T } ^ { \\prime } \\sim p ( \\mathcal { T } )$ . That is, with only a small amount of experience on $\\mathcal { T } ^ { \\prime }$ , the agent should find a policy that achieves high expected return on that task. During meta-training, the agent meta-learns parameters or update rules that enables such rapid adaptation at test-time. ", + "bbox": [ + 174, + 450, + 825, + 631 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Model-agnostic meta-learning One class of algorithms for addressing the meta-RL problem (as well as meta-supervised learning) are variants of the MAML algorithm (Finn et al., 2017a), which involves a bi-level optimization that aims to achieve fast adaptation via a few gradient updates. Specifically, MAML optimizes a set of initial policy parameters $\\theta$ such that a few gradient-descent steps from $\\theta$ leads to policy parameters that achieve good task performance. At each meta-training step, the inner loop adapts $\\theta$ to a task $\\tau$ by computing $\\theta ^ { \\prime } = \\theta - \\alpha \\nabla _ { \\theta } \\mathcal { L } _ { T } ( \\theta )$ , where $\\mathcal { L }$ is the loss function for task $\\tau$ and $\\alpha$ is the step size (in general, $\\theta ^ { \\prime }$ might be computed from multiple gradient steps, rather than just one as is written here). The outer loop updates the initial parameters as $\\theta \\doteq \\theta - \\beta \\nabla _ { \\theta } \\mathcal { L } _ { T } ^ { \\prime } ( \\bar { \\theta } ^ { \\prime } )$ , where $\\mathcal { L } _ { \\mathcal { T } } ^ { \\prime }$ is a loss function for task $\\tau$ , which may or may not be the same as the inner-loop loss function $\\mathcal { L } _ { T }$ , and $\\beta$ is the step size. MAML has been previously instantiated with policy gradient updates in the inner and outer loops (Finn et al., $2 0 1 7 \\mathrm { a }$ ; Rothfuss et al., 2018), which can only be applied to on-policy meta-RL settings; we address this shortcoming in this work. ", + "bbox": [ + 173, + 635, + 825, + 801 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Advantage-weighted regression. To develop an offline meta-RL algorithm, we build upon advantage-weighted regression (AWR) (Peng et al., 2019), a simple offline RL method. The AWR policy objective is given by ", + "bbox": [ + 174, + 806, + 825, + 848 + ], + "page_idx": 1 + }, + { + "type": "equation", + "img_path": "images/886a0ad33f54459c65c90fdf8b78db2c14807f446b1c151a6e2119b8d03af889.jpg", + "text": "$$\n\\mathcal { L } ^ { \\mathrm { A W R } } ( \\vartheta , \\varphi , B ) = \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim B } \\left[ - \\log \\pi _ { \\vartheta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } ) \\right) \\right) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 250, + 853, + 745, + 888 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "where $B = \\{ \\mathbf { s } _ { j } , \\mathbf { a } _ { j } , \\mathbf { s } _ { j } ^ { \\prime } , r _ { j } \\}$ can be an arbitrary dataset of transition tuples sampled from some behavior policy, and $\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } )$ is the return recorded in the dataset for performing action a in state s, $V _ { \\varphi } ( \\mathbf { s } )$ is the learned value function for the behavior policy evaluated at state s, and $T > 0$ is a temperature parameter. The term $\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } )$ represents the advantage of a particular action. The objective can be interpreted as a weighted regression problem, where actions that lead to higher advantages are assigned larger weights. The value function parameters $\\varphi$ are typically trained using simple regression onto Monte Carlo returns, and the policy parameters $\\vartheta$ are trained using $\\mathcal { L } ^ { \\mathrm { A W R } }$ . Next, we discuss the offline meta-RL problem and some of the challenges it poses. ", + "bbox": [ + 174, + 893, + 823, + 924 + ], + "page_idx": 1 + }, + { + "type": "image", + "img_path": "images/a17861f422ba39e7b1dfe60c3bd68a029f6f9c282c0c1ff49b334b0c0a136289.jpg", + "image_caption": [ + "Figure 1: Comparing the standard meta-RL setting (left), which includes on-policy and off-policy meta-RL, with offline meta-RL (right). In standard meta-RL, new interactions are sampled from the environment during both meta-training and meta-testing, potentially storing experiences in a replay buffer (off-policy meta-RL). In offline meta-RL, a batch of data is provided for each training task $\\mathcal { T } _ { i }$ . This data could be the result of prior skills learned, demonstrations, or other means of data collection. The meta-learner uses these static buffers of data for meta-training and can then learn a new test task when given a small buffer of data for that task. " + ], + "image_footnote": [], + "bbox": [ + 179, + 99, + 825, + 212 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 303, + 826, + 387 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 THE OFFLINE META-RL PROBLEM ", + "text_level": 1, + "bbox": [ + 174, + 400, + 496, + 416 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "In the offline meta-RL problem setting, we aim to leverage offline multi-task experience to enable fast adaptation to new downstream tasks. Each task $\\mathcal { T } _ { i }$ is drawn from a task distribution $p ( \\mathcal { T } )$ . In the offline setting, the meta-training algorithm is not permitted to directly interact with the meta-training tasks $\\mathcal { T } _ { i }$ , but instead is provided with a fixed dataset of transition tuples $B _ { i } = \\{ s _ { i , j } , a _ { i , j } , s _ { i , j } ^ { \\prime } , r _ { i , j } \\}$ for each task. Each $B _ { i }$ is populated with trajectories sampled from a corresponding behavior policy $\\mu _ { i }$ . Each $\\mu _ { i }$ might be an expert policy, sub-optimal demonstrations, other RL agents, or some mixture thereof. Regardless of the behavior policies $\\mu _ { i }$ , the objective of offline meta-RL is to maximize return after adaptation on the test tasks. However, depending on the quality of the behavior policies, the maximum attainable return may vary. We observe such a phenomenon in a offline data quality ablation experiment in Section 5. ", + "bbox": [ + 173, + 426, + 825, + 565 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Sampling data from a fixed dataset at both meta-training and meta-testing time, rather than from the learned policy itself, distinguishes offline meta-RL from the standard meta-RL setting. This constraint is significant, because most algorithms for meta-RL require a large amount of on-policy experience from the environment during meta-training; these algorithms are generally unable to fully make use of data collected by external sources. During meta-testing, a (generally unseen) test task $\\mathcal { T } _ { \\mathrm { t e s t } }$ is drawn from $p ( \\mathcal T )$ , and the meta-trained agent is presented with a new batch of experience $D$ sampled from a distribution $B _ { \\mathrm { t e s t } }$ . The agent’s objective is to use this batch of data to find the highest-performing policy for the test task. We consider the case where only $B _ { i }$ is fixed during meta-training and $B _ { \\mathrm { t e s t } }$ corresponds to sampling online trajectories to be the offline meta-RL problem. The case where both $B _ { i }$ and $B _ { \\mathrm { t e s t } }$ are fixed data buffers is called the fully offline meta-RL problem, which is especially applicable in situations when allowing online exploration might be difficult or dangerous. In the fully offline case, we might also consider the setting where we perform additional online rollouts with our adapted policy and fine-tune with this online data after the initial offline adaptation step. We call this the fully offline meta-RL problem with online fine-tuning. The experiments performed in this paper mostly correspond to the fully offline setting. In Appendix C.2 we also conduct an experiment in the setting of fully offline meta-RL with online fine-tuning. ", + "bbox": [ + 173, + 573, + 825, + 795 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Prior meta-RL methods require interaction with the MDP for each of the meta-training tasks (Finn et al., 2017a), and though some prior methods build on off-policy RL algorithms (Rakelly et al., 2019), these algorithms are known to perform poorly in the fully offline setting (Levine et al., 2020). Both of the offline meta-RL settings described above inherit the distributional difficulties of offline RL, which means that addressing this problem setting requires a new type of meta-RL method that is capable of meta-training from offline data. ", + "bbox": [ + 174, + 801, + 825, + 886 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "4 MACAW: META ACTOR-CRITIC WITH ADVANTAGE WEIGHTING", + "text_level": 1, + "bbox": [ + 173, + 898, + 743, + 915 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Algorithm 1 MACAW Meta-Training ", + "text_level": 1, + "bbox": [ + 179, + 118, + 429, + 133 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Algorithm 2 MACAW Meta-Testing ", + "text_level": 1, + "bbox": [ + 516, + 118, + 758, + 133 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "1: Input: Tasks $\\{ \\mathcal { T } _ { i } \\}$ , offline buffers $\\{ D _ { i } \\}$ \n2: Hyperparameters: learning rates $\\alpha _ { 1 }$ , $\\alpha _ { 2 }$ , $\\eta _ { 1 }$ \n$\\eta _ { 2 }$ , training iterations $n$ , temperature $T$ \n3: Randomly initialize meta-parameters $\\theta , \\phi$ \n4: for $n$ steps do \n5: for task $\\mathcal { T } _ { i } \\in \\{ \\mathcal { T } _ { i } \\}$ do \n6: Sample disjoint batches $D _ { i } ^ { \\mathrm { t r } } , D _ { i } ^ { \\mathrm { t s } } \\sim D _ { i }$ \n7: $\\begin{array}{c} \\begin{array} { r l } & { \\quad \\phi _ { i } ^ { \\prime } \\xleftarrow { * } \\phi - \\check { \\eta } _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\theta _ { i } ^ { \\prime } \\xleftarrow \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\phi \\xleftarrow \\phi - \\eta _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] } \\\\ & { \\quad \\theta \\xleftarrow \\theta - \\alpha _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\theta } \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , \\right.} \\end{array} \\end{array}$ \n8: \n9: \n10: ", + "bbox": [ + 183, + 137, + 503, + 299 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "1: Input: Test task $\\tau _ { j }$ , offline experience $D$ , meta-policy $\\pi _ { \\theta }$ , meta-value function $V _ { \\phi }$ \n2: Hyperparameters: learning rates $\\alpha _ { 1 } , \\eta$ , adaptation iterations $n$ , temperature $T$ \n3: Initialize $\\theta _ { 0 } \\theta$ , $\\phi _ { 0 } \\phi$ . \n4: for $n$ steps do \n5: 6: $\\begin{array} { r l } & { \\phi _ { t + 1 } \\dot { } \\phi _ { t } - \\eta _ { 1 } \\nabla _ { \\phi _ { t } } \\mathcal { L } _ { V } ( \\phi _ { t } , D ) } \\\\ & { \\theta _ { t + 1 } \\theta _ { t } - \\alpha _ { 1 } \\nabla _ { \\theta _ { t } } \\mathcal { L } _ { \\pi } ( \\theta _ { t } , \\phi _ { t + 1 } , D ) } \\end{array}$ ", + "bbox": [ + 519, + 137, + 810, + 267 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In addition to satisfying the demands of the offline setting, an ideal method for offline meta-RL should not be limited to the distribution of tasks observed at training time. This is especially important in the offline meta-RL setting, in which the sampling of the training data is out of the control of the agent. In other words, it is critical that an offline meta-RL algorithm be consistent, in the sense that given enough, sufficiently diverse adaptation data at meta-test time, the algorithm can find a good solution to that task, regardless of the meta-training tasks. ", + "bbox": [ + 173, + 308, + 825, + 392 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "To address the numerous challenges posed by offline meta-RL, we propose meta actor-critic with advantage weighting (MACAW). MACAW is an offline meta-RL algorithm that learns initializations $\\phi$ and $\\theta$ for a value function $V _ { \\phi }$ and policy $\\pi _ { \\theta }$ , respectively, that can rapidly adapt to a new task seen at meta-test time via gradient descent. Both the value function and the policy objectives correspond to simple regression losses in both the inner and outer loop, leading to a stable and consistent inner-loop adaptation process and outer-loop meta-training signal. While these objectives build upon AWR, we show that the naive application of an AWR update in the inner loop leads to unsatisfactory performance, motivating the enriched policy update that we describe in Section 4.1. In Sections 4.2 and 4.3, we detail the full meta-training procedure and an important architectural component of the policy and value networks. ", + "bbox": [ + 173, + 398, + 825, + 441 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 443, + 633, + 566 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "4.1 INNER-LOOP MACAW PROCEDURE ", + "text_level": 1, + "bbox": [ + 176, + 574, + 465, + 588 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "The adaptation process for MACAW consists of a value function update followed by a policy update and can be found in lines 6-8 in Algorithm 1. Optimization-based meta-learning methods typically rely on truncated optimization for the adaptation process (Finn et al., 2017a), to satisfy both computational and memory constraints (Wu et al., 2018; Rajeswaran et al., 2019), and MACAW also uses a truncated optimization. However, value-based algorithms that use bootstrapping, such as Q-learning, can require many iterations for values to propagate. Therefore, we use a bootstrap-free update for the value function that simply performs supervised regression onto Monte-Carlo returns. ", + "bbox": [ + 173, + 597, + 633, + 736 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/c95b5d2cfb234d39803bd3d8890f803420ea4b928748173a00e2021c8d765a20.jpg", + "image_caption": [ + "Figure 2: MACAW policy architecture. Solid lines show the forward pass; dashed lines show gradient flow during the backward pass during adaptation only; the advantage head is not used in the outer loop policy update. " + ], + "image_footnote": [], + "bbox": [ + 650, + 457, + 821, + 632 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Given a batch of training data $D _ { i } ^ { \\mathrm { t r } }$ collected for $\\mathcal { T } _ { i }$ , MACAW adapts the value function by taking one or a few gradient steps on the following supervised objective: ", + "bbox": [ + 176, + 742, + 767, + 771 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/71c2b98665f5aca83629e19448eea1c57475acd4c704bce35bbf5fe32b38476c.jpg", + "text": "$$\n\\phi _ { i } ^ { \\prime } \\xleftarrow { } \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { I } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { V } ( \\phi , D ) \\triangleq \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim D } \\left[ ( V _ { \\phi } ( \\mathbf { s } ) - \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) ) ^ { 2 } \\right]\n$$", + "text_format": "latex", + "bbox": [ + 192, + 779, + 784, + 797 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "and where $\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } )$ is the Monte Carlo return from the state s taking action a observed in $D$ . ", + "bbox": [ + 173, + 805, + 787, + 820 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "After adapting the value function, we proceed to updating the policy. The AWR algorithm updates its policy by performing supervised regression onto actions weighted by the estimated advantage, where the advantage is given by the return minus the value: $\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )$ . While it is tempting to use this same update rule here, we observe that this update does not provide the meta-learner with sufficient expressive power to be a universal update procedure for the policy, using universality in the sense used by Finn and Levine (2018). For MAML-based methods to approximate any learning procedure, the inner gradient must not discard information needed to infer the task (Finn and Levine, ", + "bbox": [ + 173, + 825, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2018). The gradient of the AWR objective does not contain full information of both the regression weight and the regression target. That is, one cannot recover both the advantage weight and the action from the gradient. We formalize this problem in Theorem 1 in Appendix A. To address this issue and make our meta-learner sufficiently expressive, the MACAW policy update performs both advantage-weighted regression onto actions as well as an additional regression onto action advantages. This enriched policy update is only used during adaptation, and the predicted advantage is used only to enrich the inner loop policy update during meta-training; during meta-test, this predicted advantage is discarded. We prove the universality of the enriched policy update in Theorem 2 in Appendix A. We observe empirically the practical impact of the universality property with an ablation study presented in Figure 4 (left). ", + "bbox": [ + 173, + 103, + 825, + 243 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To make predictions for both the AWR loss and advantage regression, our policy architecture has two output heads corresponding to the predicted action given the state, $\\pi _ { \\boldsymbol { \\theta } } ( \\cdot | \\mathbf { s } )$ , and the predicted advantage given both state and action $A _ { \\boldsymbol { \\theta } } ( \\mathbf { s } , \\mathbf { a } )$ . This architecture is shown in Figure 2. Policy adaptation then proceeds as follows: ", + "bbox": [ + 173, + 250, + 825, + 305 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d9d487366e662c8e06e4457d1f4b9fe558f98893aa4c7345a14372da3092f5c9.jpg", + "text": "$$\n\\theta _ { i } ^ { \\prime } \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { \\pi } = \\mathcal { L } ^ { \\mathrm { A W R } } + \\lambda \\mathcal { L } ^ { \\mathrm { A D V } } .\n$$", + "text_format": "latex", + "bbox": [ + 266, + 311, + 730, + 330 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In our policy update, we show only one gradient step for conciseness of notation, but it can be easily extended to multiple gradient steps. The AWR loss is given in Equation 1, and the advantage regression loss is given by: ", + "bbox": [ + 174, + 337, + 825, + 378 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/482c32cc8bdb7fded9de4e44d5af8554c499b2eb61904ea2c0eddbcdae4b2e82.jpg", + "text": "$$\n\\mathcal { L } ^ { \\mathrm { A D V } } ( \\theta , \\phi _ { i } ^ { \\prime } , D ) \\triangleq \\underset { \\mathbf { s } , \\mathbf { a } \\sim D } { \\triangleq } \\left[ ( \\hat { A } ( \\mathbf { s } , \\mathbf { a } ) - \\left( \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) ) ^ { 2 } \\right]\n$$", + "text_format": "latex", + "bbox": [ + 292, + 385, + 704, + 415 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Adapting with ${ \\mathcal { L } } _ { \\pi }$ rather than $\\mathcal { L } ^ { \\mathrm { A W R } }$ addresses the expressiveness problems noted earlier. This adaptation process is done both in the inner loop of meta-training and during meta-test time, as outlined in Algorithm 2. MACAW is consistent at meta-test time because it executes a well-defined RL fine-tuning subroutine based on AWR during adaptation. Next, we describe the meta-training procedure for learning the meta-parameters $\\theta$ and $\\phi$ , the initializations of the policy and value function, respectively. ", + "bbox": [ + 173, + 429, + 825, + 515 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.2 OUTER-LOOP MACAW PROCEDURE ", + "text_level": 1, + "bbox": [ + 176, + 522, + 470, + 536 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "To enable rapid adaptation at meta-test time, we meta-train a set of initial parameters for both the value function and policy to optimize the AWR losses ${ \\mathcal { L } } _ { V }$ and $\\mathcal { L } ^ { \\mathrm { A W R } }$ , respectively, after adaptation (L9-10 in Algorithm 1). We sample a batch of data $D _ { i } ^ { \\mathrm { t s } }$ for the outer loop update that is disjoint from the adaptation data $D _ { i } ^ { \\mathrm { t r } }$ in order to promote few-shot generalization rather than memorization of the adaptation data. The meta-learning procedure for the value function follows MAML, using the supervised Monte Carlo objective: ", + "bbox": [ + 173, + 545, + 825, + 628 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/d3c75cc1761547c05843a33b40dbb952e169b26940e285137c20ee3794127e87.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ~ = ~ \\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t } } ) , D _ { i } ^ { \\mathrm { t s } } ) \\right] .\n$$", + "text_format": "latex", + "bbox": [ + 259, + 633, + 736, + 660 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where ${ \\mathcal { L } } _ { V }$ is defined in Equation 2. This objective optimizes for a set of initial value function parameters such that one or a few inner gradient steps lead to an accurate value estimator. ", + "bbox": [ + 173, + 665, + 823, + 694 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Unlike the inner loop, we optimize the initial policy parameters in the outer loop with a standard advantage-weighted regression objective, since expressiveness concerns only pertain to the inner loop where only a small number of gradient steps are taken. Hence, the meta-objective for our initial policy parameters is as follows: ", + "bbox": [ + 173, + 700, + 825, + 756 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/3eba80e6c83b1c69edaf1bc7ec67da8916a647856ac653345a0b250271b77a8c.jpg", + "text": "$$\n\\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] \\ = \\ \\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ,\n$$", + "text_format": "latex", + "bbox": [ + 217, + 762, + 781, + 786 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where ${ \\mathcal { L } } _ { \\pi }$ is defined in Equation 3 and $\\mathcal { L } ^ { \\mathrm { A W R } }$ is defined in Equation 1. Note we use the adapted value function for policy adaptation. The complete MACAW algorithm is summarized in Algorithm 1. ", + "bbox": [ + 174, + 794, + 826, + 824 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4.3 MACAW ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 174, + 830, + 397, + 845 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "MACAW’s enriched policy update (Equation 3) is motivated by the desire to make inner loop policy updates more expressive. In addition to augmenting the objective, we can also take an architectural approach to increasing gradient expressiveness. Recall that for an MLP, a single step of gradient descent can only make a rank-1 update to each weight matrix. Finn and Levine (2018) show that this implies that MLPs must be impractically deep for MAML to be able to produce any learning procedure. However, we can shortcut this rank-1 limitation with a relatively simple change to the layers of an MLP, which we call a weight transform layer. This layer maps a latent code into the weight matrix and bias, which are then used to compute the layer’s output just as in a typical fully-connected layer. This ‘layer-wise linear hypernetwork’ (Ha et al., 2016) doesn’t change the class of functions computable by the layer on its input, but it increases the expressivity of MAML’s gradient. Because we update the latent code by gradient descent (which is mapped back into a new weight matrix and bias in the forward pass) we can, in theory, acquire weight matrix updates of rank up to the dimensionality of the latent code. We use this strategy for all of the weights in both the value function network and the policy network. This architecture is similar to latent embedding optimization (LEO) (Rusu et al., 2019), but the choice of using simple linear mapping functions allows us to apply weight transform layers to the entire network while still providing more expressive gradients. For a more detailed explanation of this strategy, see Appendix B. Our experiments find that this layer significantly improves learning speed and stability. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "image", + "img_path": "images/c2d3c77930d93ed2e281d85fd95e50e89fbb79687248630c2ac7e9cc8fc3189a.jpg", + "image_caption": [ + "Figure 3: Comparing MACAW with (i) an offline variant of PEARL (Rakelly et al., 2019), a state-of-the-art off-policy meta-RL method, (ii) an offline multi-task training $^ +$ fine tuning method based on AWR (Peng et al., 2019), and (iii) a meta-behavior cloning baseline. Shaded regions show one standard error of the mean reward of four seeds. MACAW is the only algorithm to consistently outperform the imitation learning baseline, and also learns with the fewest number of training steps in every environment (note the log x axis). " + ], + "image_footnote": [], + "bbox": [ + 183, + 99, + 810, + 338 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 425, + 825, + 604 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 622, + 326, + 637 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "The primary goal of our empirical evaluations is to test whether we can acquire priors from offline multi-task data that facilitate rapid transfer to new tasks. Our evaluation compares MACAW with three sensible approaches to this problem: a meta-imitation learning, multi-task offline RL with fine-tuning, and an offline variant of the state-of-the-art off-policy meta-RL method, PEARL (Rakelly et al., 2019). Further, we analyze a) the importance of MACAW’s enriched policy update (Equation 3) in various data quality regimes; b) the effect of the proposed weight transformation; and c) how each method’s performance is affected when the sampling of the task space during training is very sparse. The first two settings highlight the differences between MACAW and the naïve combination of MAML and AWR; the third setting represents a realistic setting where fewer tasks are available during meta-training. See Appendix C for additional experiments a) ablating the weight transform layer b) investigating the performance of MACAW and PEARL when online fine-tuning is available and c) a richer task distribution. ", + "bbox": [ + 174, + 652, + 825, + 819 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "For our experiments, we construct offline variants of the widely-used simulated continuous control benchmark problems introduced by Finn et al. (2017a); Rothfuss et al. (2018), including the halfcheetah with varying directions and varying velocities, the walker with varying physical parameters, and the ant with varying directions. If not noted otherwise, the offline data for each experiment is generated from the replay buffer of a RL agent trained from scratch. This reflects a practical scenario where an agent has previously learned a set of tasks via RL, stored its experiences, and now would like to quickly learn a related task. Data collection information is available in Appendix D. ", + "bbox": [ + 174, + 827, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "image", + "img_path": "images/622a648f60aef4640a9d619d79c6449b1fd72ba2fd307d65f26c9b17a2c7267d.jpg", + "image_caption": [ + "Ablating MACAW's Weight Transform " + ], + "image_footnote": [], + "bbox": [ + 393, + 113, + 598, + 205 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/0b2b8be14162f085ffb0cbb13f145ee11743a80135a9332f52d12997878a0b6b.jpg", + "image_caption": [ + "Test Performance with Sparse Task Sampling " + ], + "image_footnote": [], + "bbox": [ + 604, + 113, + 789, + 205 + ], + "page_idx": 6 + }, + { + "type": "image", + "img_path": "images/bb285f5837b705f9346b158e8b16fc2f1922ca5701f04b800fdca3994e6aa06b.jpg", + "image_caption": [ + "Ablating MACAW's Enriched Policy Update ", + "Figure 4: Left: Ablating MACAW’s enriched policy update when varying the quality of the inner loop adaptation data. Solid lines correspond to MACAW, dashed lines correspond to MACAW without the auxiliary policy loss (equivalently, MAML $^ +$ AWR with weight transforms). Both perform similarly with good quality adaptation data (orange), but the policy adaptation step without the auxiliary loss begins to fail as adaptation data is increasingly sub-optimal (blue and red). Bad, medium, and good data correspond to the first, middle, and last 500 trajectories from the lifetime replay buffer of the behavior policy for each task; see Appendix D for learning curves of the individual offline policies. Center: Ablating MACAW’s weight transform layer in the same experimental setting as the cheetah-velocity experiment in Figure 3. Without the additional expressiveness, learning is much slower and less stable. Right: Train task sparsity split performance of MACAW, Offline PEARL, and Offline $\\mathbf { M T + }$ fine tune. Each curve corresponds to the performance of a method as the number of tasks available for training is varied. MACAW shows the most consistent performance when different numbers of tasks are used, performing well even when only three tasks are used for training. " + ], + "image_footnote": [], + "bbox": [ + 176, + 111, + 379, + 205 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Can we learn to adapt to new tasks quickly from purely offline data? Our first evaluation compares three approaches to the offline meta-RL problem setting, testing their ability to leverage the offline task datasets in order to quickly adapt to a new task. Specifically, we compare MACAW with i) offline PEARL (Rakelly et al., 2019), ii) multi-task AWR (Peng et al., 2019), which uses 20 steps of Adam (Kingma and Ba, 2015) to adapt to a new task at meta-test time (Offline $\\mathrm { M T + F T }$ ) and iii) a meta-behavior cloning baseline. We choose PEARL and AWR because they achieve state-of-the-art performance in off-policy meta-RL and offline RL, respectively, and are readily adaptable to the offline meta-RL problem. As in Rakelly et al. (2019), for each experiment, we sample a finite set of training tasks and held out test tasks upfront and keep these fixed throughout training. Figure 3 shows the results. We find that MACAW is the only algorithm to consistently outperform the meta-behavior cloning baseline. Multi-task AWR $^ +$ fine-tuning makes meaningful progress on the simpler cheetah problems, but it is unable to adapt well on the more challenging walker and ant problems. Offline PEARL shows initial progress on cheetah-velocity and walker-params, but struggles to make steady progress on any of the problems. We attribute PEARL’s failure to Q-function extrapolation error, a problem known to affect many off-policy RL algorithms (Fujimoto et al., 2019), as well as generally unstable offline bootstrapping. MACAW’s and AWR’s value function is bootstrap-free and their policy updates maximize a weighted maximum likelihood objective during training, which biases the policy toward safer actions (Peng et al., 2019), implicitly avoiding problems caused by extrapolation error. In contrast to Offline PEARL and multi-task AWR, MACAW trains efficiently and relatively stably on all problems, providing an effective approach to learning representations from multi-task offline data that can be effectively adapted to new tasks at meta-test time. ", + "bbox": [ + 173, + 376, + 825, + 666 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "How does MACAW’s performance differ from MAML $^ +$ AWR? MACAW has two key features distinguishing it from MAML $^ +$ AWR: the enriched policy loss and weight transform layers. Here, we use the Cheetah-Velocity setting to test the effects of both of these changes. We first ablate the enriched policy loss used in MACAW’s inner loop update. This experiment compares MACAW and MAML $+ .$ AWR $^ +$ weight transform layers, which optimize Equation 3 and Equation 1 in the policy inner-loop, respectively. To identify when policy update expressiveness is most crucial, we repeat this ablation study three times, meta-training and meta-testing with various qualities of inner-loop data, using good outer loop data for all experiments. Figure 4 (left) shows the results. MAML $^ +$ AWR performs well when the offline adaptation data comes from a near-optimal policy, which is essentially a one-shot imitation setting (orange); however, when the offline adaptation data comes from a policy pre-convergence, the difference between MACAW and MAML $+$ AWR becomes significant (blue and red). This result supports the intuition that policy update expressiveness is of greater importance when the adaptation data is more random, because in this case the adaptation data includes a weaker signal from which to infer the task (e.g. the task cannot be inferred by simply looking at the states visited). Because an agent is unable to collect further experience from the environment during offline adaptation, it is effectively at the mercy of the quality of the behavior policy that produced the data. An important property of a meta-RL algorithm is thus its robustness to sub-optimal behavior policies, a property that MACAW exhibits. Next, we ablate the weight transform layers, comparing ", + "bbox": [ + 173, + 674, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "MAML $+ .$ AWR $^ +$ enriched policy update with MACAW. Figure 4 (center) suggests that the weight transform layers significantly improve both learning speed and stability. The No WT-Equal Width variant removes the weight transform from each fully-connected layer, replacing it with a regular fully-connected layer of equal width in the forward pass. The No WT-Equal Params variant replaces each of MACAW’s weight transform layers with a regular fully-connected layer of greater width, to keep the total number of learnable parameters in the network roughly constant. In either case, we find that MACAW provides a significant improvement in learning speed, as well as stability when compared to the Equal Width variant. Figure 5 in the appendix shows that this result is consistent across problems. ", + "bbox": [ + 174, + 103, + 825, + 229 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "How do algorithms perform with varying numbers of meta-training tasks? Generally, we prefer an offline meta-RL algorithm that can generalize to new tasks when presented with only a small number of meta-training tasks sampled from $p ( \\mathcal { T } )$ . In this section, we conduct an experiment to evaluate the extent to which various algorithms rely on dense sampling of the space of tasks during training in order to generalize well. We compare the test performance of MACAW, offline PEARL, and offline multi-task AWR $^ +$ fine-tuning as we hold out an increasingly large percentage of the Cheetah-Velocity task space. The results are presented in Figure 4 (right). Surprisingly, Offline PEARL completely fails to learn both when training tasks are plentiful and when they are scarce, but learns relatively effectively in the middle regime (5-20 tasks). In our experiments, we often observe instability in Offline PEARL’s task inference and value function networks when training on too many offline tasks. On the other hand, with too few tasks, the task inference network simply learns a degenerate solution, providing no useful information for the value functions or policy to identify the task. The multi-task learning $^ +$ fine-tuning baseline exhibits a steadier degradation in performance as training tasks are removed, likely owing to its bootstrap-free learning procedure. Similarly to Offline PEARL, it is not able to learn a useful prior for fine-tuning when only presented with 3 tasks for training. However, MACAW finds a solution of reasonable quality for any sampling of the task space, even for very dense or very sparse samplings of the training tasks. In practice, this property is desirable, because it allows the same algorithm to scale to very large offline datasets while still producing useful adaptation behaviors for small datasets. Ultimately, MACAW effectively exploits the available data when meta-training tasks are plentiful and shows by far the greatest robustness when tasks are scarce, which we attribute to its SGD-based adaptation procedure during both meta-training and meta-testing. ", + "bbox": [ + 174, + 232, + 825, + 537 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "6 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 546, + 344, + 563 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Meta-learning algorithms enable efficient learning of new tasks by learning elements of the learning process itself (Schmidhuber, 1987; Bengio et al., 1992; Thrun and Pratt, 1998; Finn, 2018). We specifically consider the problem of meta-reinforcement learning. Prior methods for meta-RL can generally be categorized into two groups. Contextual meta-RL methods condition a neural network on experience using a recurrent network (Wang et al., 2016; Duan et al., 2016; Fakoor et al., 2020), a recursive network (Mishra et al., 2017), or a stochastic inference network (Rakelly et al., 2019; Zintgraf et al., 2020; Humplik et al., 2019; Sæmundsson et al., 2018). Optimization-based meta-RL methods embed an optimization procedure such as gradient descent into the meta-level optimization (Finn et al., 2017a; Nagabandi et al., 2019; Rothfuss et al., 2018; Zintgraf et al., 2019; Gupta et al., 2018; Mendonca et al., 2019; Yang et al., 2019), potentially using a learned loss function (Houthooft et al., 2018; Bechtle et al., 2019; Kirsch et al., 2020b;a). In prior works, the former class of approaches tend to reach higher asymptotic performance, while the latter class is typically more robust to out-of-distribution tasks, since the meta-test procedure corresponds to a well-formed optimization. Concurrent work by Dorfman and Tamar (2020) investigates the offline meta-RL setting, directly applying an existing meta-RL algorithm, VariBAD (Zintgraf et al., 2020), to the offline setting. The proposed method further assumes knowledge of the reward function for each task to relabel rewards and share data across tasks with shared dynamics. MACAW does not rely on this knowledge nor the assumption that some tasks share dynamics, but this technique could be readily combined with MACAW when these assumptions do hold. ", + "bbox": [ + 174, + 569, + 825, + 833 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Unlike these prior works, we aim to develop an optimization-based meta-RL algorithm that can both learn from entirely offline data and produces a monotonic learning procedure. Only a handful of previous model-free meta-RL methods leverage off-policy data at all (Rakelly et al., 2019; Mendonca et al., 2019), and none have considered the fully offline setting. Guided meta-policy search (Mendonca et al., 2019) is optimization-based, but is not applicable to the batch setting as it partially relies on policy gradients. This only leaves PEARL (Rakelly et al., 2019) and its relatives (Fakoor et al., 2020), which correspond to a contextual meta-learning approach that is sensitive to the meta-training task distribution without fine-tuning (Fakoor et al., 2020) at test time. We also compare to PEARL, and find that, as expected, it performs worse than in the off-policy setting, since the fully offline setting is substantially more challenging than the off-policy setting that it was designed for. ", + "bbox": [ + 174, + 840, + 825, + 924 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The proposed algorithm builds on the idea of batch off-policy or offline reinforcement learning (Fujimoto et al., 2019; Kumar et al., 2019b; Wu et al., 2019; Levine et al., 2020; Agarwal et al., 2020), extending the problem setting to the meta-learning setting. There are a number of recent works that have demonstrated successful results with offline reinforcement learning and deep neural networks (Fujimoto et al., 2019; Jaques et al., 2019; Kumar et al., 2019a; Wu et al., 2019; Peng et al., 2019; Agarwal et al., 2020). We specifically choose to build upon the advantage-weighted regression (AWR) algorithm (Peng et al., 2019). We find that AWR performs well without requiring dynamic programming, instead using Monte Carlo estimation to infer the value function. This property is appealing, as it is difficult to combine truncated optimization-based meta-learners such as MAML (Finn et al., 2017a) with TD learning, which requires a larger number of gradient steps to effectively back-up values. ", + "bbox": [ + 174, + 166, + 825, + 319 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 CONCLUSION ", + "text_level": 1, + "bbox": [ + 176, + 329, + 318, + 345 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "In this work, we formulated the problem of offline meta-reinforcement learning and presented MACAW, a practical algorithm that achieves good performance on various continuous control tasks compared with other state-of-the-art meta-RL algorithms. We motivated the design of MACAW by the desire to build an offline meta-RL algorithm that is both sample-efficient (using value-based RL subroutines) and consistent (running a full-fledged RL algorithm at test time). We hope that this work serves as the basis for future research in offline meta-RL, enabling more sample-efficient learning algorithms to make better use of purely observational data from previous tasks and adapt to new tasks more quickly. ", + "bbox": [ + 174, + 353, + 825, + 465 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We consider fully offline meta-training and meta-testing with and without online fine-tuning, showing that MACAW is effective both when collecting online data is totally infeasible as well as when some online data collection is possible at meta-test time. However, an interesting direction for future work is to consider how we might enable online adaptation from purely offline meta-training while preserving the consistency property of MACAW. This would require an offline strategy for learning to explore, a problem that has largely been considered in on-policy settings in the past (Gupta et al., 2018; Zintgraf et al., 2020) but also recently in offline settings (Dorfman and Tamar, 2020). ", + "bbox": [ + 174, + 472, + 825, + 570 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 102, + 287, + 118 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline reinforcement learning. In International Conference on Machine Learning, 2020. ", + "bbox": [ + 174, + 126, + 823, + 155 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sarah Bechtle, Artem Molchanov, Yevgen Chebotar, Edward Grefenstette, Ludovic Righetti, Gaurav Sukhatme, and Franziska Meier. Meta-learning via learned loss. arXiv preprint arXiv:1906.05374, 2019. ", + "bbox": [ + 174, + 162, + 826, + 204 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Samy Bengio, Yoshua Bengio, Jocelyn Cloutier, and Jan Gecsei. On the optimization of a synaptic learning rule. In Preprints Conf. Optimality in Artificial and Biological Neural Networks, volume 2. Univ. of Texas, 1992. ", + "bbox": [ + 173, + 213, + 825, + 256 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tristan Deleu, Tobias Würfl, Mandana Samiei, Joseph Paul Cohen, and Yoshua Bengio. Torchmeta: A Meta-Learning library for PyTorch, 2019. URL https://arxiv.org/abs/1909.06576. Available at: https://github.com/tristandeleu/pytorch-meta. ", + "bbox": [ + 178, + 263, + 825, + 308 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ron Dorfman and Aviv Tamar. Offline meta reinforcement learning. arXiv preprint arXiv:2008.02598, 2020. ", + "bbox": [ + 171, + 315, + 825, + 344 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Yan Duan, John Schulman, Xi Chen, Peter L Bartlett, Ilya Sutskever, and Pieter Abbeel. Rl2: Fast reinforcement learning via slow reinforcement learning. arXiv preprint arXiv:1611.02779, 2016. ", + "bbox": [ + 174, + 352, + 823, + 382 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rasool Fakoor, Pratik Chaudhari, Stefano Soatto, and Alexander J. Smola. Meta-q-learning. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 171, + 390, + 823, + 420 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chelsea Finn and Sergey Levine. Meta-learning and universality: Deep representations and gradient descent can approximate any learning algorithm. International Conference on Learning Representations, 10 2018. ", + "bbox": [ + 176, + 426, + 823, + 469 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of deep networks. In International Conference on Machine Learning, 2017a. ", + "bbox": [ + 173, + 477, + 823, + 507 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chelsea Finn, Tianhe Yu, Tianhao Zhang, Pieter Abbeel, and Sergey Levine. One-shot visual imitation learning via meta-learning. CoRL, abs/1709.04905, 2017b. URL http://arxiv.org/abs/ 1709.04905. ", + "bbox": [ + 176, + 515, + 826, + 558 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Chelsea B Finn. Learning to Learn with Gradients. University of California, Berkeley, 2018. ", + "bbox": [ + 174, + 565, + 784, + 582 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Scott Fujimoto, Herke Hoof, and David Meger. Addressing function approximation error in actorcritic methods. In International Conference on Machine Learning, pages 1582–1591, 2018. ", + "bbox": [ + 171, + 588, + 825, + 619 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov, editors, Proceedings of the 36th International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning Research, pages 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL http://proceedings.mlr.press/v97/fujimoto19a.html. ", + "bbox": [ + 174, + 626, + 825, + 698 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Abhishek Gupta, Russell Mendonca, YuXuan Liu, Pieter Abbeel, and Sergey Levine. Metareinforcement learning of structured exploration strategies. In Advances in Neural Information Processing Systems, pages 5302–5311, 2018. ", + "bbox": [ + 176, + 705, + 825, + 748 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "David Ha, Andrew Dai, and Quoc V. Le. Hypernetworks, 2016. ", + "bbox": [ + 173, + 756, + 591, + 771 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maximum entropy deep reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290, 2018. ", + "bbox": [ + 174, + 779, + 825, + 821 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rein Houthooft, Yuhua Chen, Phillip Isola, Bradly Stadie, Filip Wolski, OpenAI Jonathan Ho, and Pieter Abbeel. Evolved policy gradients. In Advances in Neural Information Processing Systems, pages 5400–5409, 2018. ", + "bbox": [ + 174, + 829, + 825, + 872 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jan Humplik, Alexandre Galashov, Leonard Hasenclever, Pedro A Ortega, Yee Whye Teh, and Nicolas Heess. Meta reinforcement learning as task inference. arXiv preprint arXiv:1905.06424, 2019. ", + "bbox": [ + 174, + 882, + 825, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019. ", + "bbox": [ + 176, + 103, + 821, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Yoshua Bengio and Yann LeCun, editors, 3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http://arxiv.org/abs/1412.6980. ", + "bbox": [ + 174, + 155, + 826, + 212 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Louis Kirsch, Sjoerd van Steenkiste, and Juergen Schmidhuber. Improving generalization in meta reinforcement learning using learned objectives. In International Conference on Learning Representations, 2020a. URL https://openreview.net/forum?id $\\underline { { \\underline { { \\mathbf { \\Pi } } } } }$ S1evHerYPr. ", + "bbox": [ + 173, + 222, + 826, + 265 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Louis Kirsch, Sjoerd van Steenkiste, and Jurgen Schmidhuber. Improving generalization in metareinforcement learning using learned objectives. ICLR, 2020b. ", + "bbox": [ + 173, + 273, + 823, + 303 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. In Advances in Neural Information Processing Systems, pages 11761–11771, 2019a. ", + "bbox": [ + 173, + 310, + 825, + 354 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning via bootstrapping error reduction. NeurIPS, 2019b. URL http://arxiv.org/abs/1906. 00949. ", + "bbox": [ + 173, + 363, + 825, + 406 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "B. M. Lake, R. Salakhutdinov, and J. B. Tenenbaum. Human-level concept learning through probabilistic program induction. Science, 350(6266):1332–1338, December 2015. doi: 10.1126/science. aab3050. URL https://doi.org/10.1126/science.aab3050. ", + "bbox": [ + 174, + 416, + 825, + 459 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial, review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020. ", + "bbox": [ + 171, + 467, + 825, + 497 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Russell Mendonca, Abhishek Gupta, Rosen Kralev, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Guided meta-policy search. In Advances in Neural Information Processing Systems, pages 9653–9664, 2019. ", + "bbox": [ + 173, + 506, + 825, + 549 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nikhil Mishra, Mostafa Rohaninejad, Xi Chen, and Pieter Abbeel. Meta-learning with temporal convolutions. arXiv:1707.03141, 2017. ", + "bbox": [ + 171, + 558, + 821, + 587 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Anusha Nagabandi, Ignasi Clavera, Simin Liu, Ronald S Fearing, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Learning to adapt in dynamic, real-world environments through meta-reinforcement learning. International Conference on Learning Representations (ICLR), 2019. ", + "bbox": [ + 173, + 595, + 825, + 640 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement learning with offline datasets, 2020. ", + "bbox": [ + 173, + 648, + 823, + 678 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression: Simple and scalable off-policy reinforcement learning, 2019. ", + "bbox": [ + 173, + 686, + 823, + 715 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for operational space control. In Proceedings of the 24th International Conference on Machine Learning, ICML ’07, page 745–750, New York, NY, USA, 2007. Association for Computing Machinery. ISBN 9781595937933. doi: 10.1145/1273496.1273590. URL https: //doi.org/10.1145/1273496.1273590. ", + "bbox": [ + 173, + 724, + 826, + 795 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with implicit gradients. In Advances in Neural Information Processing Systems, pages 113–124, 2019. ", + "bbox": [ + 171, + 804, + 823, + 834 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kate Rakelly, Aurick Zhou, Deirdre Quillen, Chelsea Finn, and Sergey Levine. Efficient off-policy meta-reinforcement learning via probabilistic context variables. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 843, + 823, + 886 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jonas Rothfuss, Dennis Lee, Ignasi Clavera, Tamim Asfour, and Pieter Abbeel. Promp: Proximal meta-policy search. arXiv preprint arXiv:1810.06784, 2018. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrei A. Rusu, Dushyant Rao, Jakub Sygnowski, Oriol Vinyals, Razvan Pascanu, Simon Osindero, and Raia Hadsell. Meta-learning with latent embedding optimization. In International Conference on Learning Representations, 2019. URL https://openreview.net/forum?id= BJgklhAcK7. ", + "bbox": [ + 174, + 103, + 826, + 159 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Steindór Sæmundsson, Katja Hofmann, and Marc Peter Deisenroth. Meta reinforcement learning with latent variable gaussian processes. arXiv preprint arXiv:1803.07551, 2018. ", + "bbox": [ + 171, + 167, + 823, + 198 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jurgen Schmidhuber. Evolutionary principles in self-referential learning. On learning how to learn: The meta-meta-... hook.) Diploma thesis, Institut f. Informatik, Tech. Univ. Munich, 1:2, 1987. ", + "bbox": [ + 176, + 205, + 821, + 236 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn, pages 3–17. Springer, 1998. ", + "bbox": [ + 173, + 244, + 825, + 272 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Oriol Vinyals, Charles Blundell, Timothy Lillicrap, koray kavukcuoglu, and Daan Wierstra. Matching networks for one shot learning. In D. Lee, M. Sugiyama, U. Luxburg, I. Guyon, and R. Garnett, editors, Advances in Neural Information Processing Systems, volume 29, pages 3630–3638. Curran Associates, Inc., 2016. URL https://proceedings.neurips.cc/paper/2016/ file/90e1357833654983612fb05e3ec9148c-Paper.pdf. ", + "bbox": [ + 173, + 281, + 826, + 353 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos, Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv preprint arXiv:1611.05763, 2016. ", + "bbox": [ + 174, + 361, + 825, + 404 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yifan Wu, George Tucker, and Ofir Nachum. Behavior regularized offline reinforcement learning. arXiv preprint arXiv:1911.11361, 2019. ", + "bbox": [ + 174, + 412, + 823, + 441 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yuhuai Wu, Mengye Ren, Renjie Liao, and Roger Grosse. Understanding short-horizon bias in stochastic meta-optimization. arXiv preprint arXiv:1803.02021, 2018. ", + "bbox": [ + 173, + 450, + 825, + 479 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yuxiang Yang, Ken Caluwaerts, Atil Iscen, Jie Tan, and Chelsea Finn. Norml: No-reward meta learning. In Proceedings of the 18th International Conference on Autonomous Agents and MultiAgent Systems, pages 323–331. International Foundation for Autonomous Agents and Multiagent Systems, 2019. ", + "bbox": [ + 176, + 488, + 825, + 545 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tianhe Yu, Deirdre Quillen, Zhanpeng He, Ryan Julian, Karol Hausman, Chelsea Finn, and Sergey Levine. Meta-world: A benchmark and evaluation for multi-task and meta reinforcement learning. In Conference on Robot Learning, 2019. ", + "bbox": [ + 174, + 554, + 823, + 597 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Luisa Zintgraf, Kyriacos Shiarlis, Maximilian Igl, Sebastian Schulze, Yarin Gal, Katja Hofmann, and Shimon Whiteson. Varibad: A very good method for bayes-adaptive deep rl via meta-learning. In International Conference on Learning Representations, 2020. ", + "bbox": [ + 174, + 604, + 823, + 648 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Luisa M Zintgraf, Kyriacos Shiarlis, Vitaly Kurin, Katja Hofmann, and Shimon Whiteson. Fast context adaptation via meta-learning. In International Conference on Machine Learning, 2019. ", + "bbox": [ + 173, + 656, + 823, + 686 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Appendix ", + "text_level": 1, + "bbox": [ + 174, + 99, + 272, + 119 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A MACAW AUXILIARY LOSS AND UPDATE EXPRESSIVENESS ", + "text_level": 1, + "bbox": [ + 176, + 127, + 705, + 143 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Finn and Levine (2018) lay out conditions under which the MAML update procedure is universal, in the sense that it can approximate any function $f ( \\mathbf { x } , \\mathbf { y } , \\mathbf { x } ^ { * } )$ arbitrarily well (given enough capacity), where $\\mathbf { x }$ and y are the support set inputs and labels, respectively, and $\\mathbf { x } ^ { * }$ is the test input. Universality in this sense is an attractive property because it implies that the update is expressive enough to approximate any update procedure; a method that does not possess the universality property might be limited in its asymptotic post-adaptation performance because it cannot express (or closely approximate) the true optimal update procedure. In order for the MAML update procedure to be universal, several requirements of the network architecture, hyperparameters, and loss function must be satisfied. Most of these are not method-specific in that they stipulate minimum network depth, activation functions, and non-zero learning rate for any neural network. However, the condition placed on the loss function require more careful treatment. The requirement is described in Definition 1. ", + "bbox": [ + 173, + 150, + 825, + 304 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Definition 1. A loss function is ‘universal’ if the gradient of the loss with respect to the prediction(s) is an invertible function of the label(s) used to compute the loss. ", + "bbox": [ + 169, + 306, + 825, + 335 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "We note that Definition 1 is a necessary but not sufficient condition for an update procedure to be universal (see other conditions above and Finn and Levine (2018)). For the AWR loss function (copied below from Equation 1 with minor changes), the labels are the ground truth action a and the corresponding advantage $\\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )$ . ", + "bbox": [ + 173, + 344, + 825, + 402 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/b9f96e0e46c5a961764182af63d8b231fbe5c8955b2c36cd857e6a4651cf77ab.jpg", + "text": "$$\n\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta , \\phi _ { i } ^ { \\prime } ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) \\right)\n$$", + "text_format": "latex", + "bbox": [ + 282, + 406, + 712, + 441 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "For simplicity and without loss of generality (see Finn and Levine (2018), Sections 4 & 5), we will consider the loss for only a single sample, rather than averaged over a batch. ", + "bbox": [ + 176, + 443, + 823, + 472 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "In the remainder of this section, we first state in Theorem 1 that the standard AWR policy loss function does not satisfy the condition for universality described in Definition 1. The proof is by a simple counterexample. Next, we state in Theorem 2 that the MACAW auxiliary loss does satisfy the universality condition, enabling a universal update procedure given the other generic universality conditions are satisfied (note that the MACAW value function loss satisfies the condition in Definition 1 because it uses L2 regression Finn and Levine (2018)). ", + "bbox": [ + 174, + 477, + 825, + 563 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A.1 NON-UNIVERSALITY OF STANDARD AWR POLICY LOSS FUNCTION ", + "text_level": 1, + "bbox": [ + 176, + 568, + 689, + 583 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Intuitively, the AWR gradient does not satisfy the invertibility condition because it does not distinguish between a small error in the predicted action that has a large corresponding advantage weight and a large error in the predicted action (in the same direction) that has a small corresponding advantage weight. The following theorem formalizes this statement. ", + "bbox": [ + 174, + 590, + 825, + 647 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Theorem 1. The AWR loss function $\\mathcal { L } ^ { A W R }$ is not universal according to Definition 1. ", + "bbox": [ + 171, + 648, + 723, + 664 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The proof is by counterexample; we will show that there exist different sets of labels $\\{ \\mathbf { a } _ { 1 } , A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}$ and $\\{ \\mathbf { a } _ { 2 } , A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}$ that produce the same gradient for some output of the model. First, rewriting Equation 7 with $A ( \\mathbf { s } , \\mathbf { a } ) = \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right)$ , we have ", + "bbox": [ + 173, + 674, + 825, + 719 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/3813254089b2ff7fb4eb079eaad12e525c4a78894cefb5281bd6dc2aeca61998.jpg", + "text": "$$\n{ \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 343, + 722, + 655, + 757 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Because our policy is parameterized as a Gaussian with fixed diagonal covariance $\\sigma ^ { 2 } I$ , we can again rewrite this loss as ", + "bbox": [ + 171, + 767, + 823, + 796 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/762165c3d80a603c30b2bad1d41cc2c1103cc34f6033644937a792e93a0af58f.jpg", + "text": "$$\n\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { | | \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } | | ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 277, + 796, + 718, + 839 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "where $\\hat { \\mathbf { a } } _ { \\mu }$ is the mean of the Gaussian output by the policy and $k = \\dim ( \\mathbf { a } )$ . For the purpose of the simplicity of the counterexample, we assume the policy output $\\hat { \\mathbf { a } } _ { \\mu }$ is 0. The gradient of this loss with respect to the policy output is ", + "bbox": [ + 174, + 848, + 826, + 891 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/3387741da6bbc1cb9c69d6a74e61a55225935aa84703de9e84adf8cde155a925.jpg", + "text": "$$\n\\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } { \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { 0 } ) = - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\mathbf { a }\n$$", + "text_format": "latex", + "bbox": [ + 349, + 893, + 648, + 929 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "To demonstrate that the gradient operator applied to this loss function is not invertible, we pick two distinct label values and show that they give the same gradient. We pick $\\mathbf { a } _ { 1 } = [ 1 , . . . , 1 ] ^ { T }$ , $A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) =$ $T$ and $\\mathbf { a } _ { 2 } = [ 0 . 1 , . . . , 0 . 1 ] ^ { T }$ , $A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 2 } ) \\stackrel { - } { = } \\log ( 1 0 ) T$ . Inserting these values into Equation A.1, this gives gradients $\\begin{array} { r } { g _ { 1 } ~ = ~ \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } } \\end{array}$ and $\\begin{array} { r } { g _ { 2 } ^ { \\sim } = \\frac { - 1 0 e } { \\sigma ^ { 2 } } [ 0 . 1 , . . . , 0 . 1 ] ^ { T } = \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } = g _ { 1 } } \\end{array}$ . Thus the gradient of the standard AWR loss does not possess sufficient information to recover the labels uniquely and using this loss for policy adaptation does not produce a universal policy update procedure. Next, we show how the auxiliary loss used in MACAW alleviates this problem. ", + "bbox": [ + 173, + 103, + 825, + 202 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "A.2 UNIVERSALITY OF THE MACAW POLICY ADAPTATION LOSS FUNCTION ", + "text_level": 1, + "bbox": [ + 176, + 208, + 722, + 224 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "In this section, we show that by adding an additional term to the AWR loss function, we acquire a loss that satisfies the condition stated in Definition 1, which we state in Theorem 2. Intuitively, the additional loss term allows the gradient to distinguish between the cases that were problematic for the AWR loss (large action error and small advantage weight vs small action error and large advantage weight). ", + "bbox": [ + 174, + 231, + 825, + 303 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Theorem 2. The MACAW policy loss function ${ \\mathcal { L } } _ { \\pi }$ is universal according to Definition 1. ", + "bbox": [ + 171, + 306, + 753, + 321 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The MACAW policy adaptation loss (given in Equation 3) is the sum of the AWR loss and an auxiliary advantage regression loss (the following is adapted from Equation 8): ", + "bbox": [ + 171, + 332, + 821, + 361 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/82d97852046e8ee39e7a36b0b858d89189f857d819c2421b116e8bb7df61a229.jpg", + "text": "$$\n\\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { \\| \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) + \\lambda ( A ( \\mathbf { s } , \\mathbf { a } ) - \\hat { A } ) ^ { 2 }\n$$", + "text_format": "latex", + "bbox": [ + 212, + 367, + 784, + 410 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "where $\\hat { A }$ is the predicted advantage output from the policy advantage head and $\\lambda$ is the advantage regression coefficient. The gradient of this loss with respect to the predicted advantage $\\hat { A }$ is ", + "bbox": [ + 174, + 419, + 823, + 449 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/c9bcda1a22cf74697efffb10741c6da0801de0f2e59f079092a9e8814884d39e.jpg", + "text": "$$\ng _ { \\mathrm { A D V } } = \\nabla _ { \\hat { A } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = 2 \\lambda ( \\hat { A } - A ( \\mathbf { s } , \\mathbf { a } ) )\n$$", + "text_format": "latex", + "bbox": [ + 339, + 455, + 656, + 477 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "and the gradient of the loss with respect to $\\hat { \\mathbf { a } } _ { \\mu }$ is ", + "bbox": [ + 173, + 482, + 490, + 497 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/7e298b76488092a1ed3d76c2f087f2e2acfda43a630409710794656fed4ca4bd.jpg", + "text": "$$\n\\mathbf { g } _ { \\mathrm { A W R } } = \\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\frac { 1 } { \\sigma ^ { 2 } } \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) ( \\hat { \\mathbf { a } } _ { \\mu } - \\mathbf { a } )\n$$", + "text_format": "latex", + "bbox": [ + 297, + 503, + 700, + 539 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We write the combined gradient as $\\mathbf { g } = \\left[ \\mathbf { \\mathcal { G } } _ { \\mathrm { A W R } } \\right]$ . In order to provide a universal update procedure, we must be able to recover both the action label a and the advantage label $A ( \\mathbf { s } , \\mathbf { a } )$ from g. First, because $g _ { \\mathrm { A D V } }$ is an invertible function of $A ( \\mathbf { s } , \\mathbf { a } )$ , we can directly extract the advantage label by re-arranging Equation 9: ", + "bbox": [ + 173, + 553, + 825, + 626 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/3be5edae99478d010d89ad50a1bff1f96236a901e862969b54940557989d6f0f.jpg", + "text": "$$\nA ( \\mathbf { s } , \\mathbf { a } ) = \\frac { g _ { \\mathrm { A D V } } - 2 \\lambda \\hat { A } } { - 2 \\lambda }\n$$", + "text_format": "latex", + "bbox": [ + 418, + 623, + 580, + 659 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Similarly, gAWR is an invertible function of a, so we can then extract the action label by re-arranging Equation 10: ", + "bbox": [ + 173, + 661, + 823, + 689 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/a3544562adfe6e374bd255a6dc1870deb30f888dc81cfe3f15218ce3bcbdd5e6.jpg", + "text": "$$\n\\mathbf { a } = { \\frac { \\mathbf { g } _ { \\mathrm { A W R } } - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\hat { \\mathbf { a } } _ { \\mu } } { - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) } }\n$$", + "text_format": "latex", + "bbox": [ + 383, + 695, + 612, + 750 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Because we can compute $A ( \\mathbf { s } , \\mathbf { a } )$ from $g _ { \\mathrm { A D V } }$ , there are no unknowns in the RHS of Equation 11 and we can compute a (here, $\\sigma , \\lambda$ , and $T$ are known constants); it is thus the additional information provided by $g _ { \\mathrm { A D V } }$ that resolves the ambiguity that is problematic for the standard AWR policy loss gradient. We have now shown that both the action label and advantage label used in the MACAW policy adaptation loss are recoverable from its gradient, implying that the update procedure is universal under the conditions given by Finn and Levine (2018), which concludes the proof. ", + "bbox": [ + 173, + 762, + 825, + 848 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B WEIGHT TRANSFORM LAYERS ", + "text_level": 1, + "bbox": [ + 176, + 857, + 464, + 873 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Here, we describe in detail the ‘weight transformation’ layer that augments the expressiveness of the MAML update in MACAW. First, we start with the observation in past work (Finn et al., 2017b) that adding a ‘bias transformation’ to each layer improves the expressiveness of the MAML update. ", + "bbox": [ + 176, + 881, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To understand the bias transform, we compare with a typical fully-connected layer, which has the forward pass ", + "bbox": [ + 173, + 103, + 825, + 132 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/570459d6f21bb99d0b0ab1aff7734187d08b534a960865c4fae0ef93e7358f36.jpg", + "text": "$$\n\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + \\mathbf { b } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 437, + 151, + 558, + 170 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where $\\mathbf { x }$ is the previous layer’s activations, $\\mathbf { b }$ is the bias vector, $W$ is the weight matrix, and $\\mathbf { y }$ is this layer’s activations. For a bias transformation layer, the forward pass is ", + "bbox": [ + 171, + 180, + 825, + 209 + ], + "page_idx": 14 + }, + { + "type": "equation", + "img_path": "images/5a72b45db102ca613fa04cb2d67797f366ca2b0a7146233b78e365875a92a01f.jpg", + "text": "$$\n\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + W ^ { b } \\mathbf { z } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 426, + 227, + 570, + 247 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "where $\\mathbf { z }$ and $W ^ { b }$ are learnable parameters of the bias transformation. During adaptation, either only the vector $\\mathbf { z }$ or both the vector $\\mathbf { z }$ and the bias matrix $W ^ { b }$ are adapted. The vector $\\mathbf { \\bar { \\boldsymbol { W } } } ^ { b } \\mathbf { z }$ has the same dimensionality as the bias in the previous equation. This formulation does not increase the expressive power of the forward pass of the layer, but it does allow for a more expressive update of the ‘bias vector’ $W ^ { b } \\mathbf { z }$ (in the case of $\\dim ( \\mathbf { z } ) = \\dim ( \\mathbf { b } )$ and $W ^ { b } = I$ , we recover the standard fully-connected layer). ", + "bbox": [ + 173, + 251, + 825, + 335 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For a weight transformation layer (used in MACAW), we extend the idea of computing the bias from a latent vector to the weight matrix itself. We now present the forward pass for a weight transformation layer layer with $d$ input and $d$ output dimensions and latent dimension $c$ . First, we compute $w =$ $W ^ { \\mathrm { w t } } \\mathbf { z }$ , where $W ^ { \\mathrm { w t } } \\in \\mathbf { \\mathbb { R } } ^ { ( d ^ { 2 } + d ) \\times c }$ . The first $d ^ { 2 }$ components of $w$ are reshaped into the $d \\times d$ weight matrix of the layer $W ^ { * }$ , and the last $d$ components are used as the bias vector $b ^ { * }$ . The forward pass is then the same as a regular fully-connected layer, but using the computed matrix and bias $W ^ { * }$ and $b ^ { * }$ instead of a fixed matrix and bias vector; that is $y = \\bar { \\sigma } ( W ^ { * } \\mathbf { x } + \\mathbf { \\bar { b } } ^ { * } )$ . During adaptation, both the latent vector $\\mathbf { z }$ and the transform matrix $W ^ { \\mathrm { w t } }$ are adapted. We note that adapting $\\mathbf { z }$ enables the post-adaptation weight matrix used in the forward pass, $W ^ { * ^ { \\prime } }$ , to differ from the pre-adaptation weight matrix $W ^ { * }$ by a matrix of rank up to the dimension of $\\mathbf { z }$ , whereas gradient descent with normal layers makes rank-1 updates to weight matrices. We hypothesize it is this added expressivity that makes the weight transform layer effective. A comparison of MACAW with and without weight transformation layers can be found in Figures 4-center and 6. ", + "bbox": [ + 173, + 343, + 825, + 527 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C ADDITIONAL EXPERIMENTS AND ABLATIONS ", + "text_level": 1, + "bbox": [ + 176, + 539, + 589, + 554 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C.1 WEIGHT TRANSFORM ABLATION STUDY ", + "text_level": 1, + "bbox": [ + 176, + 565, + 500, + 579 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "In addition to the results shown in Figure 4 (center), we include an ablation of the weight transform here for all tasks. Figure 5 shows these results. We find that across environments, the weight transform plays a significant role in increasing training speed, stability, and even final performance. On the relatively simple cheetah direction benchmark, it does not affect the quality of the final meta-trained agent, but it does improve the speed and stability of training. On the other three (more difficult) tasks, we see a much more noticeable affect in terms of both training stability as well as final performance. ", + "bbox": [ + 173, + 588, + 825, + 672 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Additionally, we investigate the effect of the weight transform in a few-shot image classification setting. We use the 20-way 1-shot Omniglot digit classification setup (Lake et al., 2015), specifically the train/val split used by (Vinyals et al., 2016) as implemented by Deleu et al. (2019). We compare three MLP models, all with 4 hidden layers: ", + "bbox": [ + 176, + 679, + 825, + 736 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "1. An MLP with weight transform layers of 128 hidden units and a latent layer dimension of 32 (4,866,048 parameters; Weight Transform in Figure 6). \n2. An MLP without weight transform layers, with 128 hidden units (152,596 parameters; No WT-Equal Width in Figure 6) \n3. An MLP without weight transform layers, with 1150 hidden units (4,896,720 parameters; No WT-Equal Params in Figure 6) ", + "bbox": [ + 210, + 746, + 825, + 843 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We find that the model with weight transform layers shows the best combination of fast convergence and good asymptotic performance compared with baselines with regular fully-connected layers. No WT-Equal Width has the same number of hidden units as the weight transform model (128), which means the model has fewer parameters in total (because the weight transform layers include a larger weight matrix). The No WT-Equal Params baseline uses wider hidden layers to equalize the number of parameters in the entire model with the Weight Transform model. Somewhat surprisingly, the smaller baseline model (Equal Width) outperforms the larger baseline model (Equal Params). ", + "bbox": [ + 174, + 854, + 825, + 924 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/cedc853cfcacf9d7c0bdcc3294feab865d89f98d34b1c4415f03ae668dbfc96f.jpg", + "image_caption": [ + "Figure 5: Ablating the weight transformation in MACAW on the MuJoCo benchmark environments. All networks have the same number of hidden units. Although MACAW is able to learn with regular fully-connected layers, the weight transformation significantly improves performance on all tasks that require adaptation to unseen tasks. " + ], + "image_footnote": [], + "bbox": [ + 230, + 104, + 769, + 305 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 410, + 823, + 439 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "When using MAML-style meta-learners, it is important to consider that adding parameters to the model affects the expressiveness of both the forward computation of the model and the updates computable with a finite number of steps of gradient descent. ", + "bbox": [ + 174, + 445, + 825, + 487 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Generally, increasing the number of parameters in the model should improve the model’s ability to fit the training set (because the inner loop of MAML is more expressive), which we observe here. Increasing the expressiveness of the inner loop of MAML can also speed convergence, which we also observe in Figure 6. However, by simply adding neurons to a typical MLP, the post-adaptation model tends to overfit the training set more, as we see in Figure 6. On the other hand, adding parameters through weight transformation layers increases expressiveness of the adaptation step by enabling weight updates with rank greater than 1 without changing the expressiveness of the forward computation of the model. ", + "bbox": [ + 174, + 494, + 485, + 717 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/bd1149db91abb6b55b7be7dced214bd043f024408c107192614d31e935ae5407.jpg", + "image_caption": [ + "Figure 6: Faster convergence provided by the weight transform layer (orange) on Omniglot 20- way 1-shot image classification (Lake et al., 2015). " + ], + "image_footnote": [], + "bbox": [ + 500, + 498, + 820, + 660 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C.2 ONLINE FINE-TUNING FOROUT-OF-DISTRIBUTION TEST TASKS", + "text_level": 1, + "bbox": [ + 173, + 726, + 431, + 753 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "In some cases, it may be necessary or desirable to perform online fine-tuning after the initial offline adaptation step. This is the fully offline meta-RL problem with online fine-tuning described in Section 3, where an algorithm is given a small amount of initial adaptation data from the test task, just as in the fully offline setting, and then is able to interact with the environment to collect additional training data and perform on-policy updates. This ability to continually improve with additional training after the initial offline adaptation step is what makes a consistent meta-reinforcement learner advantageous. ", + "bbox": [ + 173, + 763, + 825, + 847 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "This hybrid setting (offline training with additional online fine-tuning) is known to be extremely challenging in traditional reinforcement learning. These difficulties are clearly documented by recent work (Nair et al., 2020). In short, this setting is challenging in traditional RL because while offline pre-training might produce a policy that performs well, online fine-tuning often leads to a significant drop in initial performance, which can take a very long time to recover from (see Nair et al. (2020)). ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/d9bc753cc8cc5d60e547b31c73d1c4d8b2ae0f138dc0ddd9ea045ed160b56787.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
Additional Env. StepsOffline PEARL+FTMACAW
RewardImprovementRewardImprovement
0-553.4 (21.2)-323.1 (42.9)
20k-565.0 (4.7)-11.5 (3.5)-279.1 (16.8)44.0 (14.5)
200k-533.6 (19.8)19.8 (3.7)-272.0 (15.2)51.1 (12.7)
", + "bbox": [ + 240, + 102, + 758, + 181 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Table 1: Absolute reward as well as improvement (in terms of reward) of Offline PEARL $+ \\mathrm { F T }$ and MACAW after 0, 20k, and $2 0 0 \\mathrm { k }$ additional environment steps are gathered and used for online fine tuning. Standard errors of the mean over the 13 test tasks are reported in parentheses. Averages are taken over 10 rollouts of each policy. We find that MACAW achieves both better out-of-distribution performance before online training as well as faster improvement during online fine-tuning. Note that Offline PEARL $+ \\mathrm { F T }$ experiences an initial drop in average performance on the test task after $2 0 \\mathrm { k }$ steps, compared with the performance of the policy conditioned only on the initial batch of offline data. A similar effect has been reported in recent work in offline RL (Nair et al., 2020). ", + "bbox": [ + 173, + 190, + 825, + 303 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In many cases, online fine-tuning can take a very long time to recover the performance of the offlineonly policy, if it does so at all. In offline meta-RL, we have a similar challenge; an offline meta-RL algorithm must not only meta-train for good performance on a single batch of offline test data, but it must also learn a set of parameters that enables fine-tuning to make productive updates to its policy and/or value function without completely destroying the meta-learned knowledge about the task distribution. ", + "bbox": [ + 174, + 329, + 825, + 412 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In this section, we use a hybrid setting as described above to evaluate not only MACAW’s consistency (its ability to continue to improve after an initial offline adaptation step), but its ability to continue to improve even when the test task distribution differs from the train distribution. Because significant distribution shift means that some train tasks are irrelevant, or even detrimental to test performance, this setting is very difficult. In order to make a meaningful comparison, we compare with an \"Offline PEARL $^ +$ fine-tuning\" (Offline PEARL ${ \\bf \\Phi } + \\mathrm { F T }$ ) algorithm, which is also technically consistent (because it essentially performs the SAC algorithm on the test task after the initial task inference step). However, we hypothesize that MACAW will have an advantage over this Offline PEARL $+ \\mathrm { F T }$ algorithm because while both algorithms are consistent, MACAW explicitly trains for good fine-tunability with gradient descent, unlike task inference-based meta-RL algorithms. ", + "bbox": [ + 174, + 420, + 825, + 559 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The training procedure for Offline PEARL+FT is the same at the regular Offline PEARL training procedure. However, at test time, after receiving an initial small batch of offline data for task inference, we alternative between performing rollouts of the task-conditioned policy to collect additional data from the test task and perform gradient descent on the PEARL policy and value function objectives with this off-policy data. Similarly, for MACAW test time involves first using the small batch of offline test task data to take an initial gradient step on the value and policy loss functions (Eqns 2 and 3), then alternating between rolling out the adapted policy and taking more steps of gradient descent on the MACAW losses. ", + "bbox": [ + 174, + 565, + 825, + 676 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "The specific experimental setup is as follows. We partition the individual tasks in the Cheetah-Vel problem such that training tasks correspond to target velocities in the range [0,2] and test tasks correspond to target velocities in the range [2,3]. After meta-training, for each test task, we provide the algorithm with a small batch of offline data for adaptation just as in the fully offline setting. However, we allow the algorithm to then collect and train on up to $2 0 0 \\mathrm { k }$ additional interactions from the environment. Both algorithms alternate between sampling a single trajectory (200 environment interactions) and performing 100 steps of gradient descent on the aggregate buffer of data for the test task, which contains both the initial offline batch of data as well as all online data collected so far. We evaluate both algorithms on their performance after $2 0 \\mathrm { k }$ and $2 0 0 \\mathrm { k }$ additional interactions with the environment. The results of this experiment are reported in Table 1. We observe that MACAW achieves both higher absolute reward on the OOD test tasks as well as faster relative improvement over the offline-only adapted policy compared to the Offline PEARL+FT baseline. ", + "bbox": [ + 174, + 684, + 825, + 851 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "C.3 METAWORLD ML45 BENCHMARK ", + "text_level": 1, + "bbox": [ + 176, + 859, + 452, + 873 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "As an additional experiment, we test the training and generalization capabilities of MACAW on a much broader distribution of tasks, and where test tasks differ significantly from training tasks (e.g. picking up an object as opposed to opening a window or hammering a nail). Recently, ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/9197515ff40248fcc48afe703179c7e00b59ad9d2ce4621a34699a9a92cb1b05.jpg", + "image_caption": [ + "Figure 7: Average success rates of MACAW, PEARL, and $\\mathrm { M T } +$ fine-tuning (with 20 fine-tuning steps) on the 5 test tasks the Meta-World ML45 suite of continuous control tasks. Dashed line shows final PEARL average success rate after $1 0 \\mathrm { m }$ training steps. " + ], + "image_footnote": [], + "bbox": [ + 349, + 106, + 648, + 257 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Yu et al. (2019) proposed the Meta-World (Yu et al., 2019) suite of continuous control benchmark environments as a more realistic distribution of tasks for multi-task and meta-learning algorithms. This benchmark includes 45 meta-training tasks and 5 meta-testing tasks. The results of this experiment are summarized in Figure 7. ", + "bbox": [ + 174, + 339, + 825, + 395 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We find that all methods are able to make meaningful progress on the test tasks, with gradient-based methods (MACAW and MT $^ +$ fine tune) learning much more quickly than PEARL. MACAW does achieve a quite high level of performance quite early on in training; however, it begins to overfit with further training. In the regime where periodic online evaluations are available for the purpose of early stopping, we could avoid this issue, in which case MACAW would slightly underperform the multi-task learning baseline. A possible reason for some inconsistency between the performance of each algorithm on Meta-World and the results reported in Figure 3 is the difficult scaling of the rewards in the current version of the Meta-World benchmark. Rewards can vary by 5 orders of magnitude, from negative values to values on the order of 100,000. This has been documented to adversely impact training performance even in single-task RL and increase hyperparameter sensitivity (see https://github.com/rlworkgroup/metaworld/issues/226). Because of the problems stemming from the current reward functions in Meta-World, the maintainers of the benchmark are updating them for the next version of the benchmark, which has not been released as of November 2020. ", + "bbox": [ + 174, + 402, + 825, + 597 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "D EXPERIMENTAL SET-UP AND DATA COLLECTION ", + "text_level": 1, + "bbox": [ + 174, + 607, + 619, + 623 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "D.1 OVERVIEW OF PROBLEM SETTINGS ", + "bbox": [ + 178, + 633, + 464, + 647 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "The problems of interest include: ", + "bbox": [ + 174, + 656, + 392, + 670 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "1. Half-Cheetah Direction Train a simple cheetah to run in one of two direction: forward and backward. Thus, there are no held-out test tasks for this problem, making it more ‘proof of concept’ than benchmark. \n2. Half-Cheetah Velocity Train a cheetah to run at a desired velocity, which fully parameterizes each task. For our main experiment, values of the task parameters are sampled from a uniform interval of 40 velocities in the range [0, 3]. A subset of 5 target velocities is sampled randomly for evaluation. For ablation experiments \n3. Ant-2D Direction Train a simulated ant with 8 articulated joints to run in a random 2D direction. For our experiments, we sample 50 random directions uniformly, holding out 5 for testing. \n4. Walker-2D Params Train a simulated agent to move forward, where different tasks correspond to different randomized dynamics parameters rather than reward functions. For our experiments, we sample 50 random sets of dynamics parameters, holding out 5 for testing. \n5. Meta-World ML45 Train a simulated Sawyer robot to complete 45 different robotics manipulation tasks (for training). 5 additional tasks are included for testing, making 50 tasks in total. Tasks include opening a window, hammering a nail, pulling a lever, picking & placing ", + "bbox": [ + 210, + 683, + 826, + 924 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/1e0c2f9ed73377d9d126a04e8bca056e00a29ea02fe23af7a15310fd6adfa3e3.jpg", + "table_caption": [ + "Table 2: Hyperparameters used for the PEARL experiments. For the MuJoCo tasks, we generally used the same parameters as reported in (Rakelly et al., 2019), with some minor modifications. The different parameters used for the MetaWorld ML45 environment are reported above. " + ], + "table_footnote": [], + "table_body": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Meta batch size4-1016
Batch size2561
Embedding batch size100-256750
KL penalty0.1
Hidden layers31
Neurons per hidden layer300512
Latent space size58
Policy learning rate3e-41
Value function learning rate3e-4
Context embedding learning rate3e-4
Q-Function learning rate3e-4
Reward scale5.0
RecurrentFalse
", + "bbox": [ + 232, + 101, + 761, + 325 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "an object. See Yu et al. (2019) for more information. Our experiments use a continuous space randomization for each task setup, unlike the experiments in (Yu et al., 2019), which sample from a fixed number of task states. This creates a much more challenging environment, as seen in the success rate curves above. ", + "bbox": [ + 232, + 395, + 823, + 450 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "For the first 4 MuJoCo domains, each trajectory is 200 time steps (as in Rakelly et al. (2019)); for Meta-World, trajectories are 150 time steps long. ", + "bbox": [ + 174, + 463, + 823, + 491 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "D.2 DATA COLLECTION ", + "text_level": 1, + "bbox": [ + 174, + 500, + 352, + 513 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We adapt each task to the offline setting by restricting the data sampling procedure to sample data only from a fixed offline buffer of data. For each task, we train a separate policy from scratch, using Soft Actor-Critic (Haarnoja et al., 2018) for all tasks except Cheetah-Velocity, for which we use TD3 (Fujimoto et al., 2018) as it proved more stable across the various Cheetah-Velocity tasks. We save complete replay buffers from the entire lifetime of training for each task, which includes 5M steps for Meta-World, 2.5M steps for Cheetah-Velocity, 2.5M steps for Cheetah-Dir, 2M steps for Ant-Direction, and 1M steps for Walker-Params. We use these buffers of trajectories, one per task for each problem, to sample data in both the inner and outer loop of the algorithm during training. See Figures 8 and 9 for the learning curves of the offline policies for each train and test task. ", + "bbox": [ + 174, + 522, + 825, + 648 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "D.3 ABLATION EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 656, + 398, + 670 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "For the data quality experiment, we compare the post-adaptation performance when MACAW is trained with 3 different sampling regimes for the Cheetah-Vel problem setting. Bad, medium, and good data quality mean that adaptation data (during both training and evaluation) is drawn from the first, middle, and last 500 trajectories from the offline replay buffers. For the task quantity experiment, we order the tasks by the target velocity in ascending order, giving equally spaced tasks with target velocities $g _ { 0 } = 0 . 0 7 5$ , $g _ { 2 } = 0 . 1 5 , . . . , g _ { 3 9 } = 3 . 0$ . For the 20 task experiment, we use $g _ { i }$ with even $i$ for training and odd $i$ for testing. For the 10 task experiment, we move every other train task to the test set (e.g. tasks $i = 2 , 6 , 1 0 , . . . )$ . For the 5 task experiment, we move every other remaining train task to the test set (e.g. tasks $i = 4 , 1 2 , 2 0 , . . . )$ , and for the 3 task experiment, we again move every other task to the test set, so that the train set only contains tasks 0, 16, and 32. Task selection was performed this way to ensure that even in sparse task environments, the train tasks provide coverage of most of the task space. ", + "bbox": [ + 174, + 680, + 825, + 845 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "E IMPLEMENTATION DETAILS AND HYPERPARAMETERS ", + "text_level": 1, + "bbox": [ + 176, + 857, + 655, + 873 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "Peng et al. (2019) note several strategies used to increase the stability of their advantage-weighted regression implementation. We normalize the advantage logits in the policy update step to have zero mean and unit standard deviation, as in Peng et al. (2019). Advantage weight logits are also clipped ", + "bbox": [ + 176, + 882, + 823, + 924 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/f56b11358e36417a1ca4bfb309af242dbc448cfd4b43fad3c69a87df2aa73a04.jpg", + "image_caption": [ + "Figure 8: Learning curves for offline policies for the 4 different MuJoCo environments used in the experimental evaluations. Each curve corresponds to a policy trained on a unique task. Various levels of smoothing are applied for the purpose of easier visualization. " + ], + "image_footnote": [], + "bbox": [ + 178, + 140, + 816, + 811 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/2d6d567b921998eec2d15a9ea27caf595a591019afdd8e598bf1a85c9a4e9d84.jpg", + "image_caption": [ + "Figure 9: Learning curves and success rates for all tasks in the MetaWorld 45 benchmark. Each curve corresponds to a policy trained on a unique task. Various levels of smoothing are applied for the purpose of plotting. " + ], + "image_footnote": [], + "bbox": [ + 178, + 154, + 815, + 474 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/f3429d9660c7a2bc1784a990dcc44ad184d3429d8feb79bb0d06b975badddb36.jpg", + "table_caption": [ + "Table 3: Hyperparameters used for the multi-task learning $^ +$ fine tuning baseline. \\*For the Walker environment, the value learning rate was 1e-5 for stability. " + ], + "table_footnote": [], + "table_body": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Value learning rate1e-4*1e-6
Policy learning rate1e-41
Value fine-tuning learning rate1e-41e-6
Policy fine-tuning learning rate1e-31
Train outer loop batch size256
Fine-tuning batch size2561
Number of hidden layers31
Neurons per hidden layer100300
Task batch size51
Max advantage clip20
", + "bbox": [ + 236, + 642, + 754, + 824 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/1f94b5dd5972c647e5422db803d11afd0bc476699574bbfce6729afd919cb900.jpg", + "table_caption": [], + "table_footnote": [], + "table_body": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Auxiliary advantage loss coefficient1e-21e-3
Outer value learning rate1e-51e-6
Outer policy learning rate1e-4
Inner policy learning rate1e-3 (learned)1e-2 (learned)
Inner value learning rate1e-3 (learned)1e-4 (learned)
Train outer loop batch size2561
Train adaptation batch size256256
Eval adaptation batch size2561
Number of adaptation steps11
Learning rate for learnable learning rate1e-31
Number of hidden layers31
Neurons per hidden layer100300
Task batch size510
Max advantage clip201
AWR policy temperature11
", + "bbox": [ + 205, + 101, + 789, + 353 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Table 4: Hyperparameters used for MACAW. The Standard Configuration is used for all experiments and all environments except for Meta-World (due to the extreme difference in magnitude of rewards in Meta-World, which has typical rewards $1 0 0 { - } 1 0 0 0 \\mathrm { x }$ larger than in the other tasks). For the Meta-World configuration, only parameters that differ from the standard configuration are listed. ", + "bbox": [ + 173, + 369, + 825, + 426 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "to avoid exploding gradients and numerical overflow. To train the value function, we use simple least squares regression onto Monte Carlo returns, rather than $\\mathrm { T D } ( \\lambda )$ . Finally, our policy is parameterized by a single Gaussian with fixed variance of 0.04; our policy network thus predicts only the mean of the Gaussian distribution. ", + "bbox": [ + 174, + 435, + 825, + 491 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "In addition to using weight transformation layers instead of regular fully-connected layers, we also learn learning rates for each layer of our network by gradient descent. To speed up training, we compute our loss using a ‘task minibatch’ of 5 tasks at each step of optimization, rather than using all of the training tasks. Finally, specific to the RL setting, we sample experiences in contiguous chunks from the replay buffers during train-time adaptation and uniformly (non-contiguously) from the replay buffers for outer-loop updates and test-time adaptation. For outer loop updates, we sample data selectively towards the end of the replay buffers. ", + "bbox": [ + 173, + 498, + 825, + 597 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "E.1 HYPERPARAMETERS ", + "text_level": 1, + "bbox": [ + 174, + 604, + 357, + 619 + ], + "page_idx": 21 + }, + { + "type": "text", + "text": "Tables 2, 3, and 4 describe the hyperparameters used for each algorithm in our empirical evaluations. We performed some manual tuning of hyperparameters for all algorithms, but found that the performance was not significantly affected for environments other than Meta-World, likely due to the difficult reward scaling in the current release of Meta-World. ", + "bbox": [ + 174, + 627, + 825, + 683 + ], + "page_idx": 21 + } +] \ No newline at end of file diff --git a/parse/train/S5S3eTEmouw/S5S3eTEmouw_middle.json b/parse/train/S5S3eTEmouw/S5S3eTEmouw_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..afbb93442971a511f113d178d541c6f04bfcb7ca --- /dev/null +++ b/parse/train/S5S3eTEmouw/S5S3eTEmouw_middle.json @@ -0,0 +1,58924 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 78, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "OFFLINE META-REINFORCEMENT LEARNING WITH", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 295, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 295, + 118 + ], + "score": 1.0, + "content": "ADVANTAGE WEIGHTING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "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": [ + 277, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 208, + 469, + 407 + ], + "lines": [ + { + "bbox": [ + 142, + 209, + 470, + 222 + ], + "spans": [ + { + "bbox": [ + 142, + 209, + 470, + 222 + ], + "score": 1.0, + "content": "This paper introduces the offline meta-reinforcement learning (offline meta-RL)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 220, + 470, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 220, + 470, + 234 + ], + "score": 1.0, + "content": "problem setting and proposes an algorithm that performs well in this setting. Offline", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 231, + 470, + 245 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 470, + 245 + ], + "score": 1.0, + "content": "meta-RL is analogous to the widely successful supervised learning strategy of pre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "spans": [ + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "score": 1.0, + "content": "training a model on a large batch of fixed, pre-collected data (possibly from various", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 254, + 470, + 266 + ], + "spans": [ + { + "bbox": [ + 142, + 254, + 470, + 266 + ], + "score": 1.0, + "content": "tasks) and fine-tuning the model to a new task with relatively little data. That is,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 264, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 264, + 470, + 277 + ], + "score": 1.0, + "content": "in offline meta-RL, we meta-train on fixed, pre-collected data from several tasks", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "score": 1.0, + "content": "and adapt to a new task with a very small amount (less than 5 trajectories) of data", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 286, + 469, + 299 + ], + "spans": [ + { + "bbox": [ + 142, + 286, + 469, + 299 + ], + "score": 1.0, + "content": "from the new task. By nature of being offline, algorithms for offline meta-RL can", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 298, + 469, + 310 + ], + "spans": [ + { + "bbox": [ + 142, + 298, + 469, + 310 + ], + "score": 1.0, + "content": "utilize the largest possible pool of training data available and eliminate potentially", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 309, + 469, + 321 + ], + "spans": [ + { + "bbox": [ + 142, + 309, + 469, + 321 + ], + "score": 1.0, + "content": "unsafe or costly data collection during meta-training. This setting inherits the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 319, + 470, + 331 + ], + "spans": [ + { + "bbox": [ + 142, + 319, + 470, + 331 + ], + "score": 1.0, + "content": "challenges of offline RL, but it differs significantly because offline RL does not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 469, + 342 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 342 + ], + "score": 1.0, + "content": "generally consider a) transfer to new tasks or b) limited data from the test task, both", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 341, + 469, + 353 + ], + "spans": [ + { + "bbox": [ + 141, + 341, + 469, + 353 + ], + "score": 1.0, + "content": "of which we face in offline meta-RL. Targeting the offline meta-RL setting, we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 352, + 469, + 365 + ], + "spans": [ + { + "bbox": [ + 141, + 352, + 469, + 365 + ], + "score": 1.0, + "content": "propose Meta-Actor Critic with Advantage Weighting (MACAW). MACAW is an", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 363, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 142, + 363, + 469, + 375 + ], + "score": 1.0, + "content": "optimization-based meta-learning algorithm that uses simple, supervised regression", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 374, + 470, + 387 + ], + "spans": [ + { + "bbox": [ + 142, + 374, + 470, + 387 + ], + "score": 1.0, + "content": "objectives for both the inner and outer loop of meta-training. On offline variants of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 384, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 469, + 398 + ], + "score": 1.0, + "content": "common meta-RL benchmarks, we empirically find that this approach enables fully", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 396, + 470, + 408 + ], + "spans": [ + { + "bbox": [ + 142, + 396, + 470, + 408 + ], + "score": 1.0, + "content": "offline meta-reinforcement learning and achieves notable gains over prior methods.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 108, + 422, + 206, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 208, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 208, + 437 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "Meta-reinforcement learning (meta-RL) has emerged as a promising strategy for tackling the high", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "score": 1.0, + "content": "sample complexity of reinforcement learning algorithms, when the goal is to ultimately learn many", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "tasks. Meta-RL algorithms exploit shared structure among tasks during meta-training, amortizing the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 474, + 504, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 504, + 486 + ], + "score": 1.0, + "content": "cost of learning across tasks and enabling rapid adaptation to new tasks during meta-testing from only", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 484, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 506, + 499 + ], + "score": 1.0, + "content": "a small amount of experience. Yet unlike in supervised learning, where large amounts of pre-collected", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "data can be pooled from many sources to train a single model, existing meta-RL algorithms assume", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 504, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 521 + ], + "score": 1.0, + "content": "the ability to collect millions of environment interactions online during meta-training. Developing", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 532 + ], + "score": 1.0, + "content": "offline meta-RL methods would enable such methods, in principle, to leverage existing data from any", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "source, making them easier to scale to real-world problems where large amounts of data might be", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "necessary to generalize broadly. To this end, we propose the offline meta-RL problem setting and a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "corresponding algorithm that uses only offline (or batch) experience from a set of training tasks to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "score": 1.0, + "content": "enable efficient transfer to new tasks without any further interaction with either the training or testing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 460, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 460, + 584 + ], + "score": 1.0, + "content": "environments. See Figure 1 for a comparison of offline meta-RL and standard meta-RL.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "score": 1.0, + "content": "Because the offline setting does not allow additional data collection during training, it highlights", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "the desirability of a consistent meta-RL algorithm. A meta-RL algorithm is consistent if, given", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "enough diverse data on the test task, adaptation can find a good policy for the task regardless of the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "training task distribution. Such an algorithm would provide a) rapid adaptation to new tasks from the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "same distribution as the train tasks while b) allowing for improvement even for out of distribution", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "test tasks. However, designing a consistent meta-RL algorithm in the offline setting is difficult: the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "consistency requirement suggests we might aim to extend the model-agnostic meta-learning (MAML)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 664, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 507, + 680 + ], + "score": 1.0, + "content": "algorithm (Finn et al., 2017a), since it directly corresponds to fine-tuning at meta-test time. However,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "existing MAML approaches use online policy gradients, and only value-based approaches have", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "proven effective in the offline setting. Yet combining MAML with value-based RL subroutines is not", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "straightforward: the higher-order optimization in MAML-like methods demands stable and efficient", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "gradient-descent updates, while TD backups are both somewhat unstable and require a large number", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 378, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 378, + 734 + ], + "score": 1.0, + "content": "of steps to propagate reward information across long time horizons.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 43 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 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, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 505, + 98 + ], + "score": 1.0, + "content": "OFFLINE META-REINFORCEMENT LEARNING WITH", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 99, + 295, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 295, + 118 + ], + "score": 1.0, + "content": "ADVANTAGE WEIGHTING", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 135, + 244, + 157 + ], + "lines": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "spans": [ + { + "bbox": [ + 113, + 135, + 201, + 147 + ], + "score": 1.0, + "content": "Anonymous authors", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "spans": [ + { + "bbox": [ + 111, + 146, + 245, + 158 + ], + "score": 1.0, + "content": "Paper under double-blind review", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2.5, + "bbox_fs": [ + 111, + 135, + 245, + 158 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 186, + 333, + 199 + ], + "lines": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "spans": [ + { + "bbox": [ + 277, + 186, + 335, + 200 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 143, + 208, + 469, + 407 + ], + "lines": [ + { + "bbox": [ + 142, + 209, + 470, + 222 + ], + "spans": [ + { + "bbox": [ + 142, + 209, + 470, + 222 + ], + "score": 1.0, + "content": "This paper introduces the offline meta-reinforcement learning (offline meta-RL)", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 141, + 220, + 470, + 234 + ], + "spans": [ + { + "bbox": [ + 141, + 220, + 470, + 234 + ], + "score": 1.0, + "content": "problem setting and proposes an algorithm that performs well in this setting. Offline", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 231, + 470, + 245 + ], + "spans": [ + { + "bbox": [ + 141, + 231, + 470, + 245 + ], + "score": 1.0, + "content": "meta-RL is analogous to the widely successful supervised learning strategy of pre-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "spans": [ + { + "bbox": [ + 142, + 243, + 470, + 255 + ], + "score": 1.0, + "content": "training a model on a large batch of fixed, pre-collected data (possibly from various", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 254, + 470, + 266 + ], + "spans": [ + { + "bbox": [ + 142, + 254, + 470, + 266 + ], + "score": 1.0, + "content": "tasks) and fine-tuning the model to a new task with relatively little data. That is,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 264, + 470, + 277 + ], + "spans": [ + { + "bbox": [ + 141, + 264, + 470, + 277 + ], + "score": 1.0, + "content": "in offline meta-RL, we meta-train on fixed, pre-collected data from several tasks", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "spans": [ + { + "bbox": [ + 141, + 275, + 470, + 288 + ], + "score": 1.0, + "content": "and adapt to a new task with a very small amount (less than 5 trajectories) of data", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 142, + 286, + 469, + 299 + ], + "spans": [ + { + "bbox": [ + 142, + 286, + 469, + 299 + ], + "score": 1.0, + "content": "from the new task. By nature of being offline, algorithms for offline meta-RL can", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 142, + 298, + 469, + 310 + ], + "spans": [ + { + "bbox": [ + 142, + 298, + 469, + 310 + ], + "score": 1.0, + "content": "utilize the largest possible pool of training data available and eliminate potentially", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 142, + 309, + 469, + 321 + ], + "spans": [ + { + "bbox": [ + 142, + 309, + 469, + 321 + ], + "score": 1.0, + "content": "unsafe or costly data collection during meta-training. This setting inherits the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 142, + 319, + 470, + 331 + ], + "spans": [ + { + "bbox": [ + 142, + 319, + 470, + 331 + ], + "score": 1.0, + "content": "challenges of offline RL, but it differs significantly because offline RL does not", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 331, + 469, + 342 + ], + "spans": [ + { + "bbox": [ + 141, + 331, + 469, + 342 + ], + "score": 1.0, + "content": "generally consider a) transfer to new tasks or b) limited data from the test task, both", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 341, + 469, + 353 + ], + "spans": [ + { + "bbox": [ + 141, + 341, + 469, + 353 + ], + "score": 1.0, + "content": "of which we face in offline meta-RL. Targeting the offline meta-RL setting, we", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 352, + 469, + 365 + ], + "spans": [ + { + "bbox": [ + 141, + 352, + 469, + 365 + ], + "score": 1.0, + "content": "propose Meta-Actor Critic with Advantage Weighting (MACAW). MACAW is an", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 142, + 363, + 469, + 375 + ], + "spans": [ + { + "bbox": [ + 142, + 363, + 469, + 375 + ], + "score": 1.0, + "content": "optimization-based meta-learning algorithm that uses simple, supervised regression", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 142, + 374, + 470, + 387 + ], + "spans": [ + { + "bbox": [ + 142, + 374, + 470, + 387 + ], + "score": 1.0, + "content": "objectives for both the inner and outer loop of meta-training. On offline variants of", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 384, + 469, + 398 + ], + "spans": [ + { + "bbox": [ + 141, + 384, + 469, + 398 + ], + "score": 1.0, + "content": "common meta-RL benchmarks, we empirically find that this approach enables fully", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 142, + 396, + 470, + 408 + ], + "spans": [ + { + "bbox": [ + 142, + 396, + 470, + 408 + ], + "score": 1.0, + "content": "offline meta-reinforcement learning and achieves notable gains over prior methods.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 13.5, + "bbox_fs": [ + 141, + 209, + 470, + 408 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 422, + 206, + 434 + ], + "lines": [ + { + "bbox": [ + 105, + 421, + 208, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 421, + 208, + 437 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 441, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "Meta-reinforcement learning (meta-RL) has emerged as a promising strategy for tackling the high", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 505, + 465 + ], + "score": 1.0, + "content": "sample complexity of reinforcement learning algorithms, when the goal is to ultimately learn many", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "tasks. Meta-RL algorithms exploit shared structure among tasks during meta-training, amortizing the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 474, + 504, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 504, + 486 + ], + "score": 1.0, + "content": "cost of learning across tasks and enabling rapid adaptation to new tasks during meta-testing from only", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 484, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 104, + 484, + 506, + 499 + ], + "score": 1.0, + "content": "a small amount of experience. Yet unlike in supervised learning, where large amounts of pre-collected", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 505, + 509 + ], + "score": 1.0, + "content": "data can be pooled from many sources to train a single model, existing meta-RL algorithms assume", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 504, + 506, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 506, + 521 + ], + "score": 1.0, + "content": "the ability to collect millions of environment interactions online during meta-training. Developing", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 516, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 532 + ], + "score": 1.0, + "content": "offline meta-RL methods would enable such methods, in principle, to leverage existing data from any", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "source, making them easier to scale to real-world problems where large amounts of data might be", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 553 + ], + "score": 1.0, + "content": "necessary to generalize broadly. To this end, we propose the offline meta-RL problem setting and a", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "corresponding algorithm that uses only offline (or batch) experience from a set of training tasks to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 576 + ], + "score": 1.0, + "content": "enable efficient transfer to new tasks without any further interaction with either the training or testing", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 572, + 460, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 460, + 584 + ], + "score": 1.0, + "content": "environments. See Figure 1 for a comparison of offline meta-RL and standard meta-RL.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 441, + 506, + 584 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 590, + 505, + 601 + ], + "score": 1.0, + "content": "Because the offline setting does not allow additional data collection during training, it highlights", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "the desirability of a consistent meta-RL algorithm. A meta-RL algorithm is consistent if, given", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 505, + 623 + ], + "score": 1.0, + "content": "enough diverse data on the test task, adaptation can find a good policy for the task regardless of the", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 505, + 635 + ], + "score": 1.0, + "content": "training task distribution. Such an algorithm would provide a) rapid adaptation to new tasks from the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "same distribution as the train tasks while b) allowing for improvement even for out of distribution", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 657 + ], + "score": 1.0, + "content": "test tasks. However, designing a consistent meta-RL algorithm in the offline setting is difficult: the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "consistency requirement suggests we might aim to extend the model-agnostic meta-learning (MAML)", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 664, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 507, + 680 + ], + "score": 1.0, + "content": "algorithm (Finn et al., 2017a), since it directly corresponds to fine-tuning at meta-test time. However,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "existing MAML approaches use online policy gradients, and only value-based approaches have", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "proven effective in the offline setting. Yet combining MAML with value-based RL subroutines is not", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "straightforward: the higher-order optimization in MAML-like methods demands stable and efficient", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "gradient-descent updates, while TD backups are both somewhat unstable and require a large number", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 720, + 378, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 378, + 734 + ], + "score": 1.0, + "content": "of steps to propagate reward information across long time horizons.", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 590, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "To address these challenges, one might combine MAML with a supervised, bootstrap-free RL", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 507, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 507, + 107 + ], + "score": 1.0, + "content": "subroutine, such as advantage-weighted regression (AWR) (Peters and Schaal, 2007; Peng et al.,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 507, + 118 + ], + "score": 1.0, + "content": "2019), for both for the inner and outer loop of a gradient-based meta-learning algorithm, yielding a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "‘MAML+AWR’ algorithm. However, as we will discuss in Section 4 and find empirically in Section 5,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "naïvely combining MAML and AWR in this way does not provide satisfactory performance because", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "the AWR policy update is not sufficiently expressive. Motivated by prior work that studies the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "expressive power of MAML (Finn and Levine, 2018), we increase the expressive power of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "meta-learner by introducing a carefully chosen policy update in the inner loop. We theoretically prove", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "score": 1.0, + "content": "that this change increases the richness of the policy’s update and find empirically that this policy", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "update dramatically improves adaptation performance and stability in some settings. We further", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 507, + 206 + ], + "score": 1.0, + "content": "observe that standard feedforward neural network architectures used in reinforcement learning are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 215 + ], + "score": 1.0, + "content": "not well-suited to optimization-based meta-learning and suggest an alternative that proves critical for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "score": 1.0, + "content": "good performance across four different environments. We call the resulting meta-RL algorithm and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 225, + 394, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 394, + 237 + ], + "score": 1.0, + "content": "architecture Meta-Actor Critic with Advantage Weighting, or MACAW.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "Our main contributions are the offline meta-RL problem setting itself and MACAW, an offline", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "meta-reinforcement learning algorithm that possesses three key properties: sample efficiency, offline", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "meta-training, and consistency at meta-test time. To our knowledge, MACAW is the first algorithm to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "successfully combine gradient-based meta-learning and off-policy value-based RL. Our evaluations", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "include experiments on offline variants of standard continuous control meta-RL benchmarks as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "well as settings specifically designed to test the robustness of an offline meta-learner when training", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "tasks are scarce. In all of these settings, MACAW significantly outperforms fully offline variants", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 319, + 322, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 322, + 331 + ], + "score": 1.0, + "content": "state-of-the-art off-policy RL and meta-RL baselines.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5 + }, + { + "type": "title", + "bbox": [ + 108, + 338, + 208, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 209, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 209, + 353 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "In reinforcement learning, an agent interacts with a Markov Decision Process (MDP) to maximize its", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 263, + 380 + ], + "score": 1.0, + "content": "cumulative reward. An MDP is a tuple", + "type": "text" + }, + { + "bbox": [ + 263, + 368, + 311, + 379 + ], + "score": 0.91, + "content": "( \\boldsymbol { S } , \\boldsymbol { A } , \\boldsymbol { T } , \\boldsymbol { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 367, + 418, + 380 + ], + "score": 1.0, + "content": "consisting of a state space", + "type": "text" + }, + { + "bbox": [ + 418, + 369, + 426, + 378 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 367, + 493, + 380 + ], + "score": 1.0, + "content": ", an action space", + "type": "text" + }, + { + "bbox": [ + 493, + 369, + 502, + 378 + ], + "score": 0.77, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 367, + 506, + 380 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 377, + 507, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 377, + 230, + 393 + ], + "score": 1.0, + "content": "stochastic transition dynamics", + "type": "text" + }, + { + "bbox": [ + 230, + 379, + 327, + 390 + ], + "score": 0.85, + "content": "T : \\mathcal { S } \\times \\mathcal { A } \\times \\mathcal { S } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 377, + 421, + 393 + ], + "score": 1.0, + "content": ", and a reward function", + "type": "text" + }, + { + "bbox": [ + 421, + 381, + 427, + 389 + ], + "score": 0.67, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 377, + 507, + 393 + ], + "score": 1.0, + "content": ". At each time step,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 390, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 213, + 403 + ], + "score": 1.0, + "content": "the agent receives reward", + "type": "text" + }, + { + "bbox": [ + 213, + 390, + 293, + 402 + ], + "score": 0.9, + "content": "r _ { t } = r ( s _ { t } , a _ { t } , s _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 390, + 506, + 403 + ], + "score": 1.0, + "content": ". The agent’s objective is to maximize the expected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 260, + 415 + ], + "score": 1.0, + "content": "return (i.e. discounted sum of rewards)", + "type": "text" + }, + { + "bbox": [ + 261, + 401, + 316, + 414 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { R } = \\sum _ { t } \\gamma ^ { t } r _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 400, + 345, + 415 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 346, + 401, + 385, + 413 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "is a discount factor. To extend", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 388, + 425 + ], + "score": 1.0, + "content": "this setting to meta-RL, we consider tasks drawn from a distribution", + "type": "text" + }, + { + "bbox": [ + 389, + 412, + 433, + 424 + ], + "score": 0.93, + "content": "\\mathcal { T } _ { i } \\sim p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 411, + 506, + 425 + ], + "score": 1.0, + "content": ", where each task", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 421, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 107, + 423, + 183, + 435 + ], + "score": 0.92, + "content": "\\mathcal { T } _ { i } = ( \\mathcal { S } , \\bar { \\mathcal { A } } , p _ { i } , r _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 421, + 506, + 437 + ], + "score": 1.0, + "content": "represents a different MDP. Both the dynamics and reward function may vary", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 433, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 506, + 448 + ], + "score": 1.0, + "content": "across tasks. The tasks are generally assumed to exhibit some (unknown) shared structure. During", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 361, + 457 + ], + "score": 1.0, + "content": "meta-training, the agent is presented with tasks sampled from", + "type": "text" + }, + { + "bbox": [ + 361, + 445, + 383, + 457 + ], + "score": 0.92, + "content": "p ( \\mathcal T )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "; at meta-test time, an agent’s", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 434, + 469 + ], + "score": 1.0, + "content": "objective is to rapidly find a high-performing policy for a (potentially unseen) task", + "type": "text" + }, + { + "bbox": [ + 434, + 456, + 480, + 468 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { \\prime } \\sim p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 456, + 506, + 469 + ], + "score": 1.0, + "content": ". That", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 293, + 479 + ], + "score": 1.0, + "content": "is, with only a small amount of experience on", + "type": "text" + }, + { + "bbox": [ + 293, + 467, + 304, + 477 + ], + "score": 0.87, + "content": "\\mathcal { T } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 466, + 505, + 479 + ], + "score": 1.0, + "content": ", the agent should find a policy that achieves high", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "expected return on that task. During meta-training, the agent meta-learns parameters or update rules", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 488, + 293, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 293, + 502 + ], + "score": 1.0, + "content": "that enables such rapid adaptation at test-time.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "Model-agnostic meta-learning One class of algorithms for addressing the meta-RL problem (as", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "well as meta-supervised learning) are variants of the MAML algorithm (Finn et al., 2017a), which", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "involves a bi-level optimization that aims to achieve fast adaptation via a few gradient updates.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 365, + 549 + ], + "score": 1.0, + "content": "Specifically, MAML optimizes a set of initial policy parameters", + "type": "text" + }, + { + "bbox": [ + 366, + 537, + 372, + 546 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "such that a few gradient-descent", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 151, + 561 + ], + "score": 1.0, + "content": "steps from", + "type": "text" + }, + { + "bbox": [ + 151, + 548, + 158, + 557 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "leads to policy parameters that achieve good task performance. At each meta-training", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 217, + 572 + ], + "score": 1.0, + "content": "step, the inner loop adapts", + "type": "text" + }, + { + "bbox": [ + 217, + 559, + 224, + 568 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 558, + 262, + 572 + ], + "score": 1.0, + "content": "to a task", + "type": "text" + }, + { + "bbox": [ + 263, + 559, + 272, + 569 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 558, + 333, + 572 + ], + "score": 1.0, + "content": "by computing", + "type": "text" + }, + { + "bbox": [ + 333, + 558, + 420, + 570 + ], + "score": 0.92, + "content": "\\theta ^ { \\prime } = \\theta - \\alpha \\nabla _ { \\theta } \\mathcal { L } _ { T } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 558, + 452, + 572 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 452, + 559, + 460, + 568 + ], + "score": 0.78, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "is the loss", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 175, + 582 + ], + "score": 1.0, + "content": "function for task", + "type": "text" + }, + { + "bbox": [ + 176, + 570, + 185, + 579 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 569, + 203, + 582 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 203, + 571, + 211, + 579 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 569, + 321, + 582 + ], + "score": 1.0, + "content": "is the step size (in general,", + "type": "text" + }, + { + "bbox": [ + 321, + 569, + 330, + 579 + ], + "score": 0.82, + "content": "\\theta ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "might be computed from multiple gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 579, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 506, + 594 + ], + "score": 1.0, + "content": "steps, rather than just one as is written here). The outer loop updates the initial parameters as", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 590, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 107, + 591, + 194, + 604 + ], + "score": 0.92, + "content": "\\theta \\doteq \\theta - \\beta \\nabla _ { \\theta } \\mathcal { L } _ { T } ^ { \\prime } ( \\bar { \\theta } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 590, + 223, + 605 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 224, + 591, + 239, + 604 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathcal { T } } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 590, + 341, + 605 + ], + "score": 1.0, + "content": "is a loss function for task", + "type": "text" + }, + { + "bbox": [ + 342, + 592, + 351, + 601 + ], + "score": 0.78, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 590, + 506, + 605 + ], + "score": 1.0, + "content": ", which may or may not be the same as", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 217, + 615 + ], + "score": 1.0, + "content": "the inner-loop loss function", + "type": "text" + }, + { + "bbox": [ + 217, + 603, + 232, + 614 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 601, + 252, + 615 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 253, + 603, + 260, + 613 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "is the step size. MAML has been previously instantiated with", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 359, + 626 + ], + "score": 1.0, + "content": "policy gradient updates in the inner and outer loops (Finn et al.,", + "type": "text" + }, + { + "bbox": [ + 360, + 613, + 385, + 624 + ], + "score": 0.43, + "content": "2 0 1 7 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "; Rothfuss et al., 2018), which", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 624, + 479, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 479, + 637 + ], + "score": 1.0, + "content": "can only be applied to on-policy meta-RL settings; we address this shortcoming in this work.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "score": 1.0, + "content": "Advantage-weighted regression. To develop an offline meta-RL algorithm, we build upon", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "advantage-weighted regression (AWR) (Peng et al., 2019), a simple offline RL method. The AWR", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 662, + 218, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 218, + 674 + ], + "score": 1.0, + "content": "policy objective is given by", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 676, + 456, + 704 + ], + "lines": [ + { + "bbox": [ + 153, + 676, + 456, + 704 + ], + "spans": [ + { + "bbox": [ + 153, + 676, + 456, + 704 + ], + "score": 0.94, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\vartheta , \\varphi , B ) = \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim B } \\left[ - \\log \\pi _ { \\vartheta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } ) \\right) \\right) \\right] ,", + "type": "interline_equation", + "image_path": "886a0ad33f54459c65c90fdf8b78db2c14807f446b1c151a6e2119b8d03af889.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 153, + 676, + 456, + 685.3333333333334 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 153, + 685.3333333333334, + 456, + 694.6666666666667 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 153, + 694.6666666666667, + 456, + 704.0000000000001 + ], + "spans": [], + "index": 53 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 708, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 706, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 706, + 135, + 722 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 708, + 221, + 721 + ], + "score": 0.93, + "content": "B = \\{ \\mathbf { s } _ { j } , \\mathbf { a } _ { j } , \\mathbf { s } _ { j } ^ { \\prime } , r _ { j } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 706, + 506, + 722 + ], + "score": 1.0, + "content": "can be an arbitrary dataset of transition tuples sampled from some", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 191, + 734 + ], + "score": 1.0, + "content": "behavior policy, and", + "type": "text" + }, + { + "bbox": [ + 191, + 721, + 230, + 732 + ], + "score": 0.91, + "content": "\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "is the return recorded in the dataset for performing action a in state", + "type": "text" + } + ], + "index": 55 + } + ], + "index": 54.5 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 237 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "To address these challenges, one might combine MAML with a supervised, bootstrap-free RL", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 507, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 507, + 107 + ], + "score": 1.0, + "content": "subroutine, such as advantage-weighted regression (AWR) (Peters and Schaal, 2007; Peng et al.,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 103, + 507, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 103, + 507, + 118 + ], + "score": 1.0, + "content": "2019), for both for the inner and outer loop of a gradient-based meta-learning algorithm, yielding a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 128 + ], + "score": 1.0, + "content": "‘MAML+AWR’ algorithm. However, as we will discuss in Section 4 and find empirically in Section 5,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 139 + ], + "score": 1.0, + "content": "naïvely combining MAML and AWR in this way does not provide satisfactory performance because", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "the AWR policy update is not sufficiently expressive. Motivated by prior work that studies the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 104, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "expressive power of MAML (Finn and Levine, 2018), we increase the expressive power of the", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "meta-learner by introducing a carefully chosen policy update in the inner loop. We theoretically prove", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "spans": [ + { + "bbox": [ + 105, + 169, + 506, + 184 + ], + "score": 1.0, + "content": "that this change increases the richness of the policy’s update and find empirically that this policy", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 506, + 194 + ], + "score": 1.0, + "content": "update dramatically improves adaptation performance and stability in some settings. We further", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 191, + 507, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 507, + 206 + ], + "score": 1.0, + "content": "observe that standard feedforward neural network architectures used in reinforcement learning are", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 203, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 215 + ], + "score": 1.0, + "content": "not well-suited to optimization-based meta-learning and suggest an alternative that proves critical for", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 506, + 227 + ], + "score": 1.0, + "content": "good performance across four different environments. We call the resulting meta-RL algorithm and", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 225, + 394, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 225, + 394, + 237 + ], + "score": 1.0, + "content": "architecture Meta-Actor Critic with Advantage Weighting, or MACAW.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 82, + 507, + 237 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 241, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "spans": [ + { + "bbox": [ + 106, + 242, + 505, + 254 + ], + "score": 1.0, + "content": "Our main contributions are the offline meta-RL problem setting itself and MACAW, an offline", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "meta-reinforcement learning algorithm that possesses three key properties: sample efficiency, offline", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 505, + 276 + ], + "score": 1.0, + "content": "meta-training, and consistency at meta-test time. To our knowledge, MACAW is the first algorithm to", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 287 + ], + "score": 1.0, + "content": "successfully combine gradient-based meta-learning and off-policy value-based RL. Our evaluations", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 505, + 298 + ], + "score": 1.0, + "content": "include experiments on offline variants of standard continuous control meta-RL benchmarks as", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "well as settings specifically designed to test the robustness of an offline meta-learner when training", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 320 + ], + "score": 1.0, + "content": "tasks are scarce. In all of these settings, MACAW significantly outperforms fully offline variants", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 319, + 322, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 322, + 331 + ], + "score": 1.0, + "content": "state-of-the-art off-policy RL and meta-RL baselines.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17.5, + "bbox_fs": [ + 105, + 242, + 505, + 331 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 338, + 208, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 209, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 209, + 353 + ], + "score": 1.0, + "content": "2 PRELIMINARIES", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 357, + 505, + 500 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 505, + 370 + ], + "score": 1.0, + "content": "In reinforcement learning, an agent interacts with a Markov Decision Process (MDP) to maximize its", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 367, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 263, + 380 + ], + "score": 1.0, + "content": "cumulative reward. An MDP is a tuple", + "type": "text" + }, + { + "bbox": [ + 263, + 368, + 311, + 379 + ], + "score": 0.91, + "content": "( \\boldsymbol { S } , \\boldsymbol { A } , \\boldsymbol { T } , \\boldsymbol { r } )", + "type": "inline_equation" + }, + { + "bbox": [ + 311, + 367, + 418, + 380 + ], + "score": 1.0, + "content": "consisting of a state space", + "type": "text" + }, + { + "bbox": [ + 418, + 369, + 426, + 378 + ], + "score": 0.79, + "content": "s", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 367, + 493, + 380 + ], + "score": 1.0, + "content": ", an action space", + "type": "text" + }, + { + "bbox": [ + 493, + 369, + 502, + 378 + ], + "score": 0.77, + "content": "\\mathcal { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 367, + 506, + 380 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 104, + 377, + 507, + 393 + ], + "spans": [ + { + "bbox": [ + 104, + 377, + 230, + 393 + ], + "score": 1.0, + "content": "stochastic transition dynamics", + "type": "text" + }, + { + "bbox": [ + 230, + 379, + 327, + 390 + ], + "score": 0.85, + "content": "T : \\mathcal { S } \\times \\mathcal { A } \\times \\mathcal { S } [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 328, + 377, + 421, + 393 + ], + "score": 1.0, + "content": ", and a reward function", + "type": "text" + }, + { + "bbox": [ + 421, + 381, + 427, + 389 + ], + "score": 0.67, + "content": "r", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 377, + 507, + 393 + ], + "score": 1.0, + "content": ". At each time step,", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 390, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 213, + 403 + ], + "score": 1.0, + "content": "the agent receives reward", + "type": "text" + }, + { + "bbox": [ + 213, + 390, + 293, + 402 + ], + "score": 0.9, + "content": "r _ { t } = r ( s _ { t } , a _ { t } , s _ { t + 1 } )", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 390, + 506, + 403 + ], + "score": 1.0, + "content": ". The agent’s objective is to maximize the expected", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 400, + 506, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 260, + 415 + ], + "score": 1.0, + "content": "return (i.e. discounted sum of rewards)", + "type": "text" + }, + { + "bbox": [ + 261, + 401, + 316, + 414 + ], + "score": 0.92, + "content": "\\begin{array} { r } { \\mathcal { R } = \\sum _ { t } \\gamma ^ { t } r _ { t } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 400, + 345, + 415 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 346, + 401, + 385, + 413 + ], + "score": 0.92, + "content": "\\gamma \\in [ 0 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 400, + 506, + 415 + ], + "score": 1.0, + "content": "is a discount factor. To extend", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 411, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 388, + 425 + ], + "score": 1.0, + "content": "this setting to meta-RL, we consider tasks drawn from a distribution", + "type": "text" + }, + { + "bbox": [ + 389, + 412, + 433, + 424 + ], + "score": 0.93, + "content": "\\mathcal { T } _ { i } \\sim p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 411, + 506, + 425 + ], + "score": 1.0, + "content": ", where each task", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 107, + 421, + 506, + 437 + ], + "spans": [ + { + "bbox": [ + 107, + 423, + 183, + 435 + ], + "score": 0.92, + "content": "\\mathcal { T } _ { i } = ( \\mathcal { S } , \\bar { \\mathcal { A } } , p _ { i } , r _ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 421, + 506, + 437 + ], + "score": 1.0, + "content": "represents a different MDP. Both the dynamics and reward function may vary", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 104, + 433, + 506, + 448 + ], + "spans": [ + { + "bbox": [ + 104, + 433, + 506, + 448 + ], + "score": 1.0, + "content": "across tasks. The tasks are generally assumed to exhibit some (unknown) shared structure. During", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 361, + 457 + ], + "score": 1.0, + "content": "meta-training, the agent is presented with tasks sampled from", + "type": "text" + }, + { + "bbox": [ + 361, + 445, + 383, + 457 + ], + "score": 0.92, + "content": "p ( \\mathcal T )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "; at meta-test time, an agent’s", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 434, + 469 + ], + "score": 1.0, + "content": "objective is to rapidly find a high-performing policy for a (potentially unseen) task", + "type": "text" + }, + { + "bbox": [ + 434, + 456, + 480, + 468 + ], + "score": 0.92, + "content": "\\mathcal { T } ^ { \\prime } \\sim p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 456, + 506, + 469 + ], + "score": 1.0, + "content": ". That", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 466, + 505, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 293, + 479 + ], + "score": 1.0, + "content": "is, with only a small amount of experience on", + "type": "text" + }, + { + "bbox": [ + 293, + 467, + 304, + 477 + ], + "score": 0.87, + "content": "\\mathcal { T } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 466, + 505, + 479 + ], + "score": 1.0, + "content": ", the agent should find a policy that achieves high", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "expected return on that task. During meta-training, the agent meta-learns parameters or update rules", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 488, + 293, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 293, + 502 + ], + "score": 1.0, + "content": "that enables such rapid adaptation at test-time.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 29, + "bbox_fs": [ + 104, + 357, + 507, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 503, + 505, + 635 + ], + "lines": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "Model-agnostic meta-learning One class of algorithms for addressing the meta-RL problem (as", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 505, + 527 + ], + "score": 1.0, + "content": "well as meta-supervised learning) are variants of the MAML algorithm (Finn et al., 2017a), which", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 506, + 538 + ], + "score": 1.0, + "content": "involves a bi-level optimization that aims to achieve fast adaptation via a few gradient updates.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 537, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 365, + 549 + ], + "score": 1.0, + "content": "Specifically, MAML optimizes a set of initial policy parameters", + "type": "text" + }, + { + "bbox": [ + 366, + 537, + 372, + 546 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "such that a few gradient-descent", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 547, + 506, + 561 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 151, + 561 + ], + "score": 1.0, + "content": "steps from", + "type": "text" + }, + { + "bbox": [ + 151, + 548, + 158, + 557 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 547, + 506, + 561 + ], + "score": 1.0, + "content": "leads to policy parameters that achieve good task performance. At each meta-training", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 558, + 506, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 217, + 572 + ], + "score": 1.0, + "content": "step, the inner loop adapts", + "type": "text" + }, + { + "bbox": [ + 217, + 559, + 224, + 568 + ], + "score": 0.82, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 224, + 558, + 262, + 572 + ], + "score": 1.0, + "content": "to a task", + "type": "text" + }, + { + "bbox": [ + 263, + 559, + 272, + 569 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 272, + 558, + 333, + 572 + ], + "score": 1.0, + "content": "by computing", + "type": "text" + }, + { + "bbox": [ + 333, + 558, + 420, + 570 + ], + "score": 0.92, + "content": "\\theta ^ { \\prime } = \\theta - \\alpha \\nabla _ { \\theta } \\mathcal { L } _ { T } ( \\theta )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 558, + 452, + 572 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 452, + 559, + 460, + 568 + ], + "score": 0.78, + "content": "\\mathcal { L }", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 558, + 506, + 572 + ], + "score": 1.0, + "content": "is the loss", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 569, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 569, + 175, + 582 + ], + "score": 1.0, + "content": "function for task", + "type": "text" + }, + { + "bbox": [ + 176, + 570, + 185, + 579 + ], + "score": 0.8, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 569, + 203, + 582 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 203, + 571, + 211, + 579 + ], + "score": 0.77, + "content": "\\alpha", + "type": "inline_equation" + }, + { + "bbox": [ + 211, + 569, + 321, + 582 + ], + "score": 1.0, + "content": "is the step size (in general,", + "type": "text" + }, + { + "bbox": [ + 321, + 569, + 330, + 579 + ], + "score": 0.82, + "content": "\\theta ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 569, + 505, + 582 + ], + "score": 1.0, + "content": "might be computed from multiple gradient", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 104, + 579, + 506, + 594 + ], + "spans": [ + { + "bbox": [ + 104, + 579, + 506, + 594 + ], + "score": 1.0, + "content": "steps, rather than just one as is written here). The outer loop updates the initial parameters as", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 107, + 590, + 506, + 605 + ], + "spans": [ + { + "bbox": [ + 107, + 591, + 194, + 604 + ], + "score": 0.92, + "content": "\\theta \\doteq \\theta - \\beta \\nabla _ { \\theta } \\mathcal { L } _ { T } ^ { \\prime } ( \\bar { \\theta } ^ { \\prime } )", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 590, + 223, + 605 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 224, + 591, + 239, + 604 + ], + "score": 0.89, + "content": "\\mathcal { L } _ { \\mathcal { T } } ^ { \\prime }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 590, + 341, + 605 + ], + "score": 1.0, + "content": "is a loss function for task", + "type": "text" + }, + { + "bbox": [ + 342, + 592, + 351, + 601 + ], + "score": 0.78, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 590, + 506, + 605 + ], + "score": 1.0, + "content": ", which may or may not be the same as", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 601, + 506, + 615 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 217, + 615 + ], + "score": 1.0, + "content": "the inner-loop loss function", + "type": "text" + }, + { + "bbox": [ + 217, + 603, + 232, + 614 + ], + "score": 0.88, + "content": "\\mathcal { L } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 601, + 252, + 615 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 253, + 603, + 260, + 613 + ], + "score": 0.85, + "content": "\\beta", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 601, + 506, + 615 + ], + "score": 1.0, + "content": "is the step size. MAML has been previously instantiated with", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 613, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 359, + 626 + ], + "score": 1.0, + "content": "policy gradient updates in the inner and outer loops (Finn et al.,", + "type": "text" + }, + { + "bbox": [ + 360, + 613, + 385, + 624 + ], + "score": 0.43, + "content": "2 0 1 7 \\mathrm { a }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 613, + 506, + 626 + ], + "score": 1.0, + "content": "; Rothfuss et al., 2018), which", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 624, + 479, + 637 + ], + "spans": [ + { + "bbox": [ + 106, + 624, + 479, + 637 + ], + "score": 1.0, + "content": "can only be applied to on-policy meta-RL settings; we address this shortcoming in this work.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 41.5, + "bbox_fs": [ + 104, + 503, + 506, + 637 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 639, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 652 + ], + "score": 1.0, + "content": "Advantage-weighted regression. To develop an offline meta-RL algorithm, we build upon", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 505, + 663 + ], + "score": 1.0, + "content": "advantage-weighted regression (AWR) (Peng et al., 2019), a simple offline RL method. The AWR", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 662, + 218, + 674 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 218, + 674 + ], + "score": 1.0, + "content": "policy objective is given by", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49, + "bbox_fs": [ + 105, + 638, + 505, + 674 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 153, + 676, + 456, + 704 + ], + "lines": [ + { + "bbox": [ + 153, + 676, + 456, + 704 + ], + "spans": [ + { + "bbox": [ + 153, + 676, + 456, + 704 + ], + "score": 0.94, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\vartheta , \\varphi , B ) = \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim B } \\left[ - \\log \\pi _ { \\vartheta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } ) \\right) \\right) \\right] ,", + "type": "interline_equation", + "image_path": "886a0ad33f54459c65c90fdf8b78db2c14807f446b1c151a6e2119b8d03af889.jpg" + } + ] + } + ], + "index": 52, + "virtual_lines": [ + { + "bbox": [ + 153, + 676, + 456, + 685.3333333333334 + ], + "spans": [], + "index": 51 + }, + { + "bbox": [ + 153, + 685.3333333333334, + 456, + 694.6666666666667 + ], + "spans": [], + "index": 52 + }, + { + "bbox": [ + 153, + 694.6666666666667, + 456, + 704.0000000000001 + ], + "spans": [], + "index": 53 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 708, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 706, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 706, + 135, + 722 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 708, + 221, + 721 + ], + "score": 0.93, + "content": "B = \\{ \\mathbf { s } _ { j } , \\mathbf { a } _ { j } , \\mathbf { s } _ { j } ^ { \\prime } , r _ { j } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 706, + 506, + 722 + ], + "score": 1.0, + "content": "can be an arbitrary dataset of transition tuples sampled from some", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 719, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 719, + 191, + 734 + ], + "score": 1.0, + "content": "behavior policy, and", + "type": "text" + }, + { + "bbox": [ + 191, + 721, + 230, + 732 + ], + "score": 0.91, + "content": "\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 719, + 505, + 734 + ], + "score": 1.0, + "content": "is the return recorded in the dataset for performing action a in state", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 104, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 240, + 116, + 253 + ], + "score": 1.0, + "content": "s,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 117, + 241, + 141, + 253 + ], + "score": 0.9, + "content": "V _ { \\varphi } ( \\mathbf { s } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 142, + 240, + 459, + 253 + ], + "score": 1.0, + "content": "is the learned value function for the behavior policy evaluated at state s, and", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 459, + 241, + 487, + 252 + ], + "score": 0.9, + "content": "T > 0", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 487, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "is a", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 252, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 241, + 264 + ], + "score": 1.0, + "content": "temperature parameter. The term", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 242, + 252, + 316, + 264 + ], + "score": 0.92, + "content": "\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 317, + 252, + 507, + 264 + ], + "score": 1.0, + "content": "represents the advantage of a particular action.", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 262, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 506, + 275 + ], + "score": 1.0, + "content": "The objective can be interpreted as a weighted regression problem, where actions that lead to higher", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 389, + 286 + ], + "score": 1.0, + "content": "advantages are assigned larger weights. The value function parameters", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 390, + 276, + 398, + 285 + ], + "score": 0.82, + "content": "\\varphi", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 398, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "are typically trained using", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 103, + 282, + 507, + 298 + ], + "spans": [ + { + "bbox": [ + 103, + 282, + 398, + 298 + ], + "score": 1.0, + "content": "simple regression onto Monte Carlo returns, and the policy parameters", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 399, + 285, + 406, + 294 + ], + "score": 0.82, + "content": "\\vartheta", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 407, + 282, + 479, + 298 + ], + "score": 1.0, + "content": "are trained using", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 479, + 284, + 503, + 295 + ], + "score": 0.89, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 503, + 282, + 507, + 298 + ], + "score": 1.0, + "content": ".", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 438, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 438, + 308 + ], + "score": 1.0, + "content": "Next, we discuss the offline meta-RL problem and some of the challenges it poses.", + "type": "text", + "cross_page": true + } + ], + "index": 14 + } + ], + "index": 54.5, + "bbox_fs": [ + 105, + 706, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 79, + 505, + 168 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 79, + 505, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 79, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 110, + 79, + 505, + 168 + ], + "score": 0.965, + "type": "image", + "image_path": "a17861f422ba39e7b1dfe60c3bd68a029f6f9c282c0c1ff49b334b0c0a136289.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 79, + 505, + 108.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 108.66666666666667, + 505, + 138.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 138.33333333333334, + 505, + 168.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 173, + 505, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "score": 1.0, + "content": "Figure 1: Comparing the standard meta-RL setting (left), which includes on-policy and off-policy meta-RL,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "with offline meta-RL (right). In standard meta-RL, new interactions are sampled from the environment during", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 193, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 205 + ], + "score": 1.0, + "content": "both meta-training and meta-testing, potentially storing experiences in a replay buffer (off-policy meta-RL). In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 203, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 339, + 214 + ], + "score": 1.0, + "content": "offline meta-RL, a batch of data is provided for each training task", + "type": "text" + }, + { + "bbox": [ + 339, + 204, + 349, + 213 + ], + "score": 0.85, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 203, + 505, + 214 + ], + "score": 1.0, + "content": ". This data could be the result of prior skills", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 214, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 506, + 224 + ], + "score": 1.0, + "content": "learned, demonstrations, or other means of data collection. The meta-learner uses these static buffers of data for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 224, + 448, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 448, + 234 + ], + "score": 1.0, + "content": "meta-training and can then learn a new test task when given a small buffer of data for that task.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 506, + 307 + ], + "lines": [ + { + "bbox": [ + 104, + 240, + 506, + 253 + ], + "spans": [ + { + "bbox": [ + 104, + 240, + 116, + 253 + ], + "score": 1.0, + "content": "s,", + "type": "text" + }, + { + "bbox": [ + 117, + 241, + 141, + 253 + ], + "score": 0.9, + "content": "V _ { \\varphi } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 142, + 240, + 459, + 253 + ], + "score": 1.0, + "content": "is the learned value function for the behavior policy evaluated at state s, and", + "type": "text" + }, + { + "bbox": [ + 459, + 241, + 487, + 252 + ], + "score": 0.9, + "content": "T > 0", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 240, + 506, + 253 + ], + "score": 1.0, + "content": "is a", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 252, + 507, + 264 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 241, + 264 + ], + "score": 1.0, + "content": "temperature parameter. The term", + "type": "text" + }, + { + "bbox": [ + 242, + 252, + 316, + 264 + ], + "score": 0.92, + "content": "\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 252, + 507, + 264 + ], + "score": 1.0, + "content": "represents the advantage of a particular action.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 262, + 506, + 275 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 506, + 275 + ], + "score": 1.0, + "content": "The objective can be interpreted as a weighted regression problem, where actions that lead to higher", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 273, + 389, + 286 + ], + "score": 1.0, + "content": "advantages are assigned larger weights. The value function parameters", + "type": "text" + }, + { + "bbox": [ + 390, + 276, + 398, + 285 + ], + "score": 0.82, + "content": "\\varphi", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "are typically trained using", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 103, + 282, + 507, + 298 + ], + "spans": [ + { + "bbox": [ + 103, + 282, + 398, + 298 + ], + "score": 1.0, + "content": "simple regression onto Monte Carlo returns, and the policy parameters", + "type": "text" + }, + { + "bbox": [ + 399, + 285, + 406, + 294 + ], + "score": 0.82, + "content": "\\vartheta", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 282, + 479, + 298 + ], + "score": 1.0, + "content": "are trained using", + "type": "text" + }, + { + "bbox": [ + 479, + 284, + 503, + 295 + ], + "score": 0.89, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 282, + 507, + 298 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 295, + 438, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 438, + 308 + ], + "score": 1.0, + "content": "Next, we discuss the offline meta-RL problem and some of the challenges it poses.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 107, + 317, + 304, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 305, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 305, + 332 + ], + "score": 1.0, + "content": "3 THE OFFLINE META-RL PROBLEM", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "In the offline meta-RL problem setting, we aim to leverage offline multi-task experience to enable", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 311, + 361 + ], + "score": 1.0, + "content": "fast adaptation to new downstream tasks. Each task", + "type": "text" + }, + { + "bbox": [ + 312, + 350, + 322, + 361 + ], + "score": 0.86, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 350, + 453, + 361 + ], + "score": 1.0, + "content": "is drawn from a task distribution", + "type": "text" + }, + { + "bbox": [ + 453, + 349, + 475, + 362 + ], + "score": 0.92, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 350, + 505, + 361 + ], + "score": 1.0, + "content": ". In the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 359, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 374 + ], + "score": 1.0, + "content": "offline setting, the meta-training algorithm is not permitted to directly interact with the meta-training", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 369, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 129, + 387 + ], + "score": 1.0, + "content": "tasks", + "type": "text" + }, + { + "bbox": [ + 129, + 372, + 139, + 383 + ], + "score": 0.86, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 369, + 398, + 387 + ], + "score": 1.0, + "content": ", but instead is provided with a fixed dataset of transition tuples", + "type": "text" + }, + { + "bbox": [ + 398, + 371, + 504, + 385 + ], + "score": 0.93, + "content": "B _ { i } = \\{ s _ { i , j } , a _ { i , j } , s _ { i , j } ^ { \\prime } , r _ { i , j } \\}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 185, + 395 + ], + "score": 1.0, + "content": "for each task. Each", + "type": "text" + }, + { + "bbox": [ + 185, + 383, + 198, + 393 + ], + "score": 0.88, + "content": "B _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 381, + 505, + 395 + ], + "score": 1.0, + "content": "is populated with trajectories sampled from a corresponding behavior policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 107, + 395, + 117, + 405 + ], + "score": 0.83, + "content": "\\mu _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 394, + 143, + 406 + ], + "score": 1.0, + "content": ". Each", + "type": "text" + }, + { + "bbox": [ + 143, + 395, + 154, + 405 + ], + "score": 0.85, + "content": "\\mu _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "might be an expert policy, sub-optimal demonstrations, other RL agents, or some mixture", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 290, + 417 + ], + "score": 1.0, + "content": "thereof. Regardless of the behavior policies", + "type": "text" + }, + { + "bbox": [ + 290, + 406, + 301, + 416 + ], + "score": 0.85, + "content": "\\mu _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 403, + 506, + 417 + ], + "score": 1.0, + "content": ", the objective of offline meta-RL is to maximize", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 416, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 506, + 427 + ], + "score": 1.0, + "content": "return after adaptation on the test tasks. However, depending on the quality of the behavior policies,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "the maximum attainable return may vary. We observe such a phenomenon in a offline data quality", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 437, + 241, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 241, + 449 + ], + "score": 1.0, + "content": "ablation experiment in Section 5.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 106, + 454, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 504, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 504, + 466 + ], + "score": 1.0, + "content": "Sampling data from a fixed dataset at both meta-training and meta-testing time, rather than from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "learned policy itself, distinguishes offline meta-RL from the standard meta-RL setting. This constraint", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "is significant, because most algorithms for meta-RL require a large amount of on-policy experience", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "from the environment during meta-training; these algorithms are generally unable to fully make use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 451, + 511 + ], + "score": 1.0, + "content": "of data collected by external sources. During meta-testing, a (generally unseen) test task", + "type": "text" + }, + { + "bbox": [ + 452, + 498, + 469, + 509 + ], + "score": 0.9, + "content": "\\mathcal { T } _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "is drawn", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 128, + 523 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 128, + 509, + 150, + 521 + ], + "score": 0.91, + "content": "p ( \\mathcal T )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 509, + 437, + 523 + ], + "score": 1.0, + "content": ", and the meta-trained agent is presented with a new batch of experience", + "type": "text" + }, + { + "bbox": [ + 437, + 510, + 447, + 519 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "sampled from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 162, + 533 + ], + "score": 1.0, + "content": "a distribution", + "type": "text" + }, + { + "bbox": [ + 163, + 520, + 181, + 531 + ], + "score": 0.9, + "content": "B _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 519, + 505, + 533 + ], + "score": 1.0, + "content": ". The agent’s objective is to use this batch of data to find the highest-performing", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 529, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 529, + 336, + 545 + ], + "score": 1.0, + "content": "policy for the test task. We consider the case where only", + "type": "text" + }, + { + "bbox": [ + 337, + 531, + 348, + 542 + ], + "score": 0.89, + "content": "B _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 529, + 485, + 545 + ], + "score": 1.0, + "content": "is fixed during meta-training and", + "type": "text" + }, + { + "bbox": [ + 485, + 531, + 504, + 542 + ], + "score": 0.89, + "content": "B _ { \\mathrm { t e s t } }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "corresponds to sampling online trajectories to be the offline meta-RL problem. The case where both", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 551, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 118, + 564 + ], + "score": 0.87, + "content": "B _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 551, + 137, + 566 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 553, + 157, + 564 + ], + "score": 0.91, + "content": "B _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 551, + 505, + 566 + ], + "score": 1.0, + "content": "are fixed data buffers is called the fully offline meta-RL problem, which is especially", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "applicable in situations when allowing online exploration might be difficult or dangerous. In the fully", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "offline case, we might also consider the setting where we perform additional online rollouts with our", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 599 + ], + "score": 1.0, + "content": "adapted policy and fine-tune with this online data after the initial offline adaptation step. We call this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "the fully offline meta-RL problem with online fine-tuning. The experiments performed in this paper", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 608, + 504, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 504, + 621 + ], + "score": 1.0, + "content": "mostly correspond to the fully offline setting. In Appendix C.2 we also conduct an experiment in the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 330, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 330, + 632 + ], + "score": 1.0, + "content": "setting of fully offline meta-RL with online fine-tuning.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "Prior meta-RL methods require interaction with the MDP for each of the meta-training tasks (Finn", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "et al., 2017a), and though some prior methods build on off-policy RL algorithms (Rakelly et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "2019), these algorithms are known to perform poorly in the fully offline setting (Levine et al., 2020).", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Both of the offline meta-RL settings described above inherit the distributional difficulties of offline", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "score": 1.0, + "content": "RL, which means that addressing this problem setting requires a new type of meta-RL method that is", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 690, + 278, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 278, + 703 + ], + "score": 1.0, + "content": "capable of meta-training from offline data.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5 + }, + { + "type": "title", + "bbox": [ + 106, + 712, + 455, + 725 + ], + "lines": [ + { + "bbox": [ + 105, + 711, + 457, + 726 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 457, + 726 + ], + "score": 1.0, + "content": "4 MACAW: META ACTOR-CRITIC WITH ADVANTAGE WEIGHTING", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 110, + 79, + 505, + 168 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 79, + 505, + 168 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 79, + 505, + 168 + ], + "spans": [ + { + "bbox": [ + 110, + 79, + 505, + 168 + ], + "score": 0.965, + "type": "image", + "image_path": "a17861f422ba39e7b1dfe60c3bd68a029f6f9c282c0c1ff49b334b0c0a136289.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 79, + 505, + 108.66666666666667 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 108.66666666666667, + 505, + 138.33333333333334 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 138.33333333333334, + 505, + 168.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 173, + 505, + 234 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 173, + 506, + 185 + ], + "score": 1.0, + "content": "Figure 1: Comparing the standard meta-RL setting (left), which includes on-policy and off-policy meta-RL,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 105, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "with offline meta-RL (right). In standard meta-RL, new interactions are sampled from the environment during", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 193, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 193, + 506, + 205 + ], + "score": 1.0, + "content": "both meta-training and meta-testing, potentially storing experiences in a replay buffer (off-policy meta-RL). In", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 203, + 505, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 339, + 214 + ], + "score": 1.0, + "content": "offline meta-RL, a batch of data is provided for each training task", + "type": "text" + }, + { + "bbox": [ + 339, + 204, + 349, + 213 + ], + "score": 0.85, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 203, + 505, + 214 + ], + "score": 1.0, + "content": ". This data could be the result of prior skills", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 214, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 106, + 214, + 506, + 224 + ], + "score": 1.0, + "content": "learned, demonstrations, or other means of data collection. The meta-learner uses these static buffers of data for", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 224, + 448, + 234 + ], + "spans": [ + { + "bbox": [ + 105, + 224, + 448, + 234 + ], + "score": 1.0, + "content": "meta-training and can then learn a new test task when given a small buffer of data for that task.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 240, + 506, + 307 + ], + "lines": [], + "index": 11.5, + "bbox_fs": [ + 103, + 240, + 507, + 308 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 317, + 304, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 316, + 305, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 305, + 332 + ], + "score": 1.0, + "content": "3 THE OFFLINE META-RL PROBLEM", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 338, + 505, + 448 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 505, + 351 + ], + "score": 1.0, + "content": "In the offline meta-RL problem setting, we aim to leverage offline multi-task experience to enable", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 350, + 311, + 361 + ], + "score": 1.0, + "content": "fast adaptation to new downstream tasks. Each task", + "type": "text" + }, + { + "bbox": [ + 312, + 350, + 322, + 361 + ], + "score": 0.86, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 350, + 453, + 361 + ], + "score": 1.0, + "content": "is drawn from a task distribution", + "type": "text" + }, + { + "bbox": [ + 453, + 349, + 475, + 362 + ], + "score": 0.92, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 475, + 350, + 505, + 361 + ], + "score": 1.0, + "content": ". In the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 359, + 505, + 374 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 505, + 374 + ], + "score": 1.0, + "content": "offline setting, the meta-training algorithm is not permitted to directly interact with the meta-training", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 104, + 369, + 504, + 387 + ], + "spans": [ + { + "bbox": [ + 104, + 369, + 129, + 387 + ], + "score": 1.0, + "content": "tasks", + "type": "text" + }, + { + "bbox": [ + 129, + 372, + 139, + 383 + ], + "score": 0.86, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 369, + 398, + 387 + ], + "score": 1.0, + "content": ", but instead is provided with a fixed dataset of transition tuples", + "type": "text" + }, + { + "bbox": [ + 398, + 371, + 504, + 385 + ], + "score": 0.93, + "content": "B _ { i } = \\{ s _ { i , j } , a _ { i , j } , s _ { i , j } ^ { \\prime } , r _ { i , j } \\}", + "type": "inline_equation" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 381, + 505, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 185, + 395 + ], + "score": 1.0, + "content": "for each task. Each", + "type": "text" + }, + { + "bbox": [ + 185, + 383, + 198, + 393 + ], + "score": 0.88, + "content": "B _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 381, + 505, + 395 + ], + "score": 1.0, + "content": "is populated with trajectories sampled from a corresponding behavior policy", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 394, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 107, + 395, + 117, + 405 + ], + "score": 0.83, + "content": "\\mu _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 394, + 143, + 406 + ], + "score": 1.0, + "content": ". Each", + "type": "text" + }, + { + "bbox": [ + 143, + 395, + 154, + 405 + ], + "score": 0.85, + "content": "\\mu _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 394, + 505, + 406 + ], + "score": 1.0, + "content": "might be an expert policy, sub-optimal demonstrations, other RL agents, or some mixture", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 290, + 417 + ], + "score": 1.0, + "content": "thereof. Regardless of the behavior policies", + "type": "text" + }, + { + "bbox": [ + 290, + 406, + 301, + 416 + ], + "score": 0.85, + "content": "\\mu _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 403, + 506, + 417 + ], + "score": 1.0, + "content": ", the objective of offline meta-RL is to maximize", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 416, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 416, + 506, + 427 + ], + "score": 1.0, + "content": "return after adaptation on the test tasks. However, depending on the quality of the behavior policies,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 505, + 439 + ], + "score": 1.0, + "content": "the maximum attainable return may vary. We observe such a phenomenon in a offline data quality", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 437, + 241, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 241, + 449 + ], + "score": 1.0, + "content": "ablation experiment in Section 5.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 338, + 506, + 449 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 454, + 505, + 630 + ], + "lines": [ + { + "bbox": [ + 106, + 454, + 504, + 466 + ], + "spans": [ + { + "bbox": [ + 106, + 454, + 504, + 466 + ], + "score": 1.0, + "content": "Sampling data from a fixed dataset at both meta-training and meta-testing time, rather than from the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "learned policy itself, distinguishes offline meta-RL from the standard meta-RL setting. This constraint", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 505, + 489 + ], + "score": 1.0, + "content": "is significant, because most algorithms for meta-RL require a large amount of on-policy experience", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "from the environment during meta-training; these algorithms are generally unable to fully make use", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 497, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 451, + 511 + ], + "score": 1.0, + "content": "of data collected by external sources. During meta-testing, a (generally unseen) test task", + "type": "text" + }, + { + "bbox": [ + 452, + 498, + 469, + 509 + ], + "score": 0.9, + "content": "\\mathcal { T } _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 497, + 506, + 511 + ], + "score": 1.0, + "content": "is drawn", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 509, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 128, + 523 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 128, + 509, + 150, + 521 + ], + "score": 0.91, + "content": "p ( \\mathcal T )", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 509, + 437, + 523 + ], + "score": 1.0, + "content": ", and the meta-trained agent is presented with a new batch of experience", + "type": "text" + }, + { + "bbox": [ + 437, + 510, + 447, + 519 + ], + "score": 0.75, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 447, + 509, + 506, + 523 + ], + "score": 1.0, + "content": "sampled from", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 519, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 104, + 519, + 162, + 533 + ], + "score": 1.0, + "content": "a distribution", + "type": "text" + }, + { + "bbox": [ + 163, + 520, + 181, + 531 + ], + "score": 0.9, + "content": "B _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 519, + 505, + 533 + ], + "score": 1.0, + "content": ". The agent’s objective is to use this batch of data to find the highest-performing", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 529, + 504, + 545 + ], + "spans": [ + { + "bbox": [ + 104, + 529, + 336, + 545 + ], + "score": 1.0, + "content": "policy for the test task. We consider the case where only", + "type": "text" + }, + { + "bbox": [ + 337, + 531, + 348, + 542 + ], + "score": 0.89, + "content": "B _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 349, + 529, + 485, + 545 + ], + "score": 1.0, + "content": "is fixed during meta-training and", + "type": "text" + }, + { + "bbox": [ + 485, + 531, + 504, + 542 + ], + "score": 0.89, + "content": "B _ { \\mathrm { t e s t } }", + "type": "inline_equation" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "corresponds to sampling online trajectories to be the offline meta-RL problem. The case where both", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 107, + 551, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 107, + 553, + 118, + 564 + ], + "score": 0.87, + "content": "B _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 119, + 551, + 137, + 566 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 138, + 553, + 157, + 564 + ], + "score": 0.91, + "content": "B _ { \\mathrm { t e s t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 551, + 505, + 566 + ], + "score": 1.0, + "content": "are fixed data buffers is called the fully offline meta-RL problem, which is especially", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "applicable in situations when allowing online exploration might be difficult or dangerous. In the fully", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 574, + 506, + 587 + ], + "score": 1.0, + "content": "offline case, we might also consider the setting where we perform additional online rollouts with our", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 586, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 505, + 599 + ], + "score": 1.0, + "content": "adapted policy and fine-tune with this online data after the initial offline adaptation step. We call this", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 506, + 610 + ], + "score": 1.0, + "content": "the fully offline meta-RL problem with online fine-tuning. The experiments performed in this paper", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 608, + 504, + 621 + ], + "spans": [ + { + "bbox": [ + 106, + 608, + 504, + 621 + ], + "score": 1.0, + "content": "mostly correspond to the fully offline setting. In Appendix C.2 we also conduct an experiment in the", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 618, + 330, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 330, + 632 + ], + "score": 1.0, + "content": "setting of fully offline meta-RL with online fine-tuning.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 33.5, + "bbox_fs": [ + 104, + 454, + 506, + 632 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 635, + 505, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 105, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "Prior meta-RL methods require interaction with the MDP for each of the meta-training tasks (Finn", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 506, + 659 + ], + "score": 1.0, + "content": "et al., 2017a), and though some prior methods build on off-policy RL algorithms (Rakelly et al.,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 670 + ], + "score": 1.0, + "content": "2019), these algorithms are known to perform poorly in the fully offline setting (Levine et al., 2020).", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 105, + 668, + 505, + 681 + ], + "score": 1.0, + "content": "Both of the offline meta-RL settings described above inherit the distributional difficulties of offline", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 506, + 692 + ], + "score": 1.0, + "content": "RL, which means that addressing this problem setting requires a new type of meta-RL method that is", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 690, + 278, + 703 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 278, + 703 + ], + "score": 1.0, + "content": "capable of meta-training from offline data.", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 635, + 506, + 703 + ] + }, + { + "type": "title", + "bbox": [ + 106, + 712, + 455, + 725 + ], + "lines": [ + { + "bbox": [ + 105, + 711, + 457, + 726 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 457, + 726 + ], + "score": 1.0, + "content": "4 MACAW: META ACTOR-CRITIC WITH ADVANTAGE WEIGHTING", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 48 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 110, + 94, + 263, + 106 + ], + "lines": [ + { + "bbox": [ + 108, + 92, + 264, + 108 + ], + "spans": [ + { + "bbox": [ + 108, + 92, + 264, + 108 + ], + "score": 1.0, + "content": "Algorithm 1 MACAW Meta-Training", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 316, + 94, + 464, + 106 + ], + "lines": [ + { + "bbox": [ + 313, + 91, + 465, + 109 + ], + "spans": [ + { + "bbox": [ + 313, + 91, + 465, + 109 + ], + "score": 1.0, + "content": "Algorithm 2 MACAW Meta-Testing", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 112, + 109, + 308, + 237 + ], + "lines": [ + { + "bbox": [ + 113, + 109, + 286, + 123 + ], + "spans": [ + { + "bbox": [ + 113, + 109, + 181, + 123 + ], + "score": 1.0, + "content": "1: Input: Tasks", + "type": "text" + }, + { + "bbox": [ + 181, + 110, + 201, + 122 + ], + "score": 0.91, + "content": "\\{ \\mathcal { T } _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 109, + 263, + 123 + ], + "score": 1.0, + "content": ", offline buffers", + "type": "text" + }, + { + "bbox": [ + 264, + 110, + 286, + 122 + ], + "score": 0.87, + "content": "\\{ D _ { i } \\}", + "type": "inline_equation" + } + ], + "index": 2 + }, + { + "bbox": [ + 114, + 120, + 307, + 135 + ], + "spans": [ + { + "bbox": [ + 114, + 120, + 264, + 135 + ], + "score": 1.0, + "content": "2: Hyperparameters: learning rates", + "type": "text" + }, + { + "bbox": [ + 265, + 123, + 276, + 132 + ], + "score": 0.46, + "content": "\\alpha _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 120, + 280, + 135 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 281, + 124, + 292, + 132 + ], + "score": 0.46, + "content": "\\alpha _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 120, + 296, + 135 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 296, + 123, + 307, + 132 + ], + "score": 0.48, + "content": "\\eta _ { 1 }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 126, + 132, + 283, + 144 + ], + "spans": [ + { + "bbox": [ + 126, + 134, + 136, + 144 + ], + "score": 0.81, + "content": "\\eta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 132, + 213, + 144 + ], + "score": 1.0, + "content": ", training iterations", + "type": "text" + }, + { + "bbox": [ + 213, + 135, + 221, + 142 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 132, + 274, + 144 + ], + "score": 1.0, + "content": ", temperature", + "type": "text" + }, + { + "bbox": [ + 275, + 133, + 283, + 142 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + } + ], + "index": 4 + }, + { + "bbox": [ + 114, + 143, + 294, + 155 + ], + "spans": [ + { + "bbox": [ + 114, + 144, + 123, + 153 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 124, + 143, + 276, + 155 + ], + "score": 1.0, + "content": "Randomly initialize meta-parameters", + "type": "text" + }, + { + "bbox": [ + 276, + 143, + 294, + 155 + ], + "score": 0.28, + "content": "\\theta , \\phi", + "type": "inline_equation" + } + ], + "index": 5 + }, + { + "bbox": [ + 114, + 154, + 186, + 167 + ], + "spans": [ + { + "bbox": [ + 114, + 155, + 123, + 164 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 124, + 154, + 140, + 167 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 141, + 156, + 148, + 164 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 154, + 186, + 167 + ], + "score": 1.0, + "content": "steps do", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 113, + 164, + 225, + 177 + ], + "spans": [ + { + "bbox": [ + 113, + 165, + 124, + 176 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 135, + 164, + 169, + 177 + ], + "score": 1.0, + "content": "for task", + "type": "text" + }, + { + "bbox": [ + 169, + 165, + 210, + 177 + ], + "score": 0.91, + "content": "\\mathcal { T } _ { i } \\in \\{ \\mathcal { T } _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 164, + 225, + 177 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 113, + 175, + 300, + 189 + ], + "spans": [ + { + "bbox": [ + 113, + 176, + 124, + 187 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 145, + 175, + 243, + 189 + ], + "score": 1.0, + "content": "Sample disjoint batches", + "type": "text" + }, + { + "bbox": [ + 243, + 176, + 300, + 188 + ], + "score": 0.8, + "content": "D _ { i } ^ { \\mathrm { t r } } , D _ { i } ^ { \\mathrm { t s } } \\sim D _ { i }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 113, + 186, + 272, + 236 + ], + "spans": [ + { + "bbox": [ + 113, + 186, + 124, + 199 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 136, + 186, + 272, + 236 + ], + "score": 0.28, + "content": "\\begin{array}{c} \\begin{array} { r l } & { \\quad \\phi _ { i } ^ { \\prime } \\xleftarrow { * } \\phi - \\check { \\eta } _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\theta _ { i } ^ { \\prime } \\xleftarrow \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\phi \\xleftarrow \\phi - \\eta _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] } \\\\ & { \\quad \\theta \\xleftarrow \\theta - \\alpha _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\theta } \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , \\right.} \\end{array} \\end{array}", + "type": "inline_equation", + "image_path": "c67c4bfd334ee63e2b48a0738be462d554a1aa1a7db1e5e04feb3265bbc0132a.jpg" + } + ], + "index": 18 + }, + { + "bbox": [ + 112, + 198, + 124, + 209 + ], + "spans": [ + { + "bbox": [ + 112, + 198, + 124, + 209 + ], + "score": 1.0, + "content": "8:", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 112, + 209, + 124, + 220 + ], + "spans": [ + { + "bbox": [ + 112, + 209, + 124, + 220 + ], + "score": 1.0, + "content": "9:", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 109, + 222, + 124, + 232 + ], + "spans": [ + { + "bbox": [ + 109, + 222, + 124, + 232 + ], + "score": 1.0, + "content": "10:", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 318, + 109, + 496, + 212 + ], + "lines": [ + { + "bbox": [ + 319, + 108, + 496, + 123 + ], + "spans": [ + { + "bbox": [ + 319, + 108, + 403, + 123 + ], + "score": 1.0, + "content": "1: Input: Test task", + "type": "text" + }, + { + "bbox": [ + 403, + 110, + 414, + 122 + ], + "score": 0.87, + "content": "\\tau _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 108, + 496, + 123 + ], + "score": 1.0, + "content": ", offline experience", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 332, + 120, + 496, + 133 + ], + "spans": [ + { + "bbox": [ + 332, + 121, + 342, + 131 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 120, + 396, + 133 + ], + "score": 1.0, + "content": ", meta-policy", + "type": "text" + }, + { + "bbox": [ + 396, + 123, + 407, + 132 + ], + "score": 0.84, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 120, + 496, + 133 + ], + "score": 1.0, + "content": ", meta-value function", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 332, + 132, + 344, + 144 + ], + "spans": [ + { + "bbox": [ + 332, + 132, + 344, + 144 + ], + "score": 0.75, + "content": "V _ { \\phi }", + "type": "inline_equation" + } + ], + "index": 12 + }, + { + "bbox": [ + 320, + 141, + 498, + 156 + ], + "spans": [ + { + "bbox": [ + 320, + 141, + 471, + 156 + ], + "score": 1.0, + "content": "2: Hyperparameters: learning rates", + "type": "text" + }, + { + "bbox": [ + 471, + 145, + 493, + 154 + ], + "score": 0.87, + "content": "\\alpha _ { 1 } , \\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 141, + 498, + 156 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 331, + 154, + 485, + 165 + ], + "spans": [ + { + "bbox": [ + 331, + 154, + 415, + 165 + ], + "score": 1.0, + "content": "adaptation iterations", + "type": "text" + }, + { + "bbox": [ + 415, + 156, + 423, + 164 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 154, + 476, + 165 + ], + "score": 1.0, + "content": ", temperature", + "type": "text" + }, + { + "bbox": [ + 477, + 154, + 485, + 163 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 320, + 163, + 442, + 177 + ], + "spans": [ + { + "bbox": [ + 320, + 163, + 369, + 177 + ], + "score": 1.0, + "content": "3: Initialize", + "type": "text" + }, + { + "bbox": [ + 370, + 164, + 401, + 176 + ], + "score": 0.87, + "content": "\\theta _ { 0 } \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 163, + 404, + 177 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 404, + 165, + 437, + 176 + ], + "score": 0.88, + "content": "\\phi _ { 0 } \\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 163, + 442, + 177 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 318, + 174, + 392, + 188 + ], + "spans": [ + { + "bbox": [ + 318, + 174, + 346, + 188 + ], + "score": 1.0, + "content": "4: for", + "type": "text" + }, + { + "bbox": [ + 347, + 177, + 354, + 185 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 174, + 392, + 188 + ], + "score": 1.0, + "content": "steps do", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 317, + 185, + 490, + 211 + ], + "spans": [ + { + "bbox": [ + 317, + 185, + 340, + 199 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 317, + 196, + 340, + 211 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 340, + 186, + 490, + 211 + ], + "score": 0.4, + "content": "\\begin{array} { r l } & { \\phi _ { t + 1 } \\dot { } \\phi _ { t } - \\eta _ { 1 } \\nabla _ { \\phi _ { t } } \\mathcal { L } _ { V } ( \\phi _ { t } , D ) } \\\\ & { \\theta _ { t + 1 } \\theta _ { t } - \\alpha _ { 1 } \\nabla _ { \\theta _ { t } } \\mathcal { L } _ { \\pi } ( \\theta _ { t } , \\phi _ { t + 1 } , D ) } \\end{array}", + "type": "inline_equation", + "image_path": "1cfb705fb3ff673a84b4b534343881faa1899ab9482c29b1569e61fcfa1e17c7.jpg" + } + ], + "index": 20 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 244, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "score": 1.0, + "content": "In addition to satisfying the demands of the offline setting, an ideal method for offline meta-RL should", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "not be limited to the distribution of tasks observed at training time. This is especially important in the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "offline meta-RL setting, in which the sampling of the training data is out of the control of the agent.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "In other words, it is critical that an offline meta-RL algorithm be consistent, in the sense that given", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "enough, sufficiently diverse adaptation data at meta-test time, the algorithm can find a good solution", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 299, + 304, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 304, + 312 + ], + "score": 1.0, + "content": "to that task, regardless of the meta-training tasks.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 330 + ], + "score": 1.0, + "content": "To address the numerous challenges posed by offline meta-RL, we propose meta actor-critic with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "advantage weighting (MACAW). MACAW is an offline meta-RL algorithm that learns initializations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 114, + 350 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 339, + 133, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 133, + 339, + 140, + 348 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 339, + 225, + 351 + ], + "score": 1.0, + "content": "for a value function", + "type": "text" + }, + { + "bbox": [ + 226, + 339, + 238, + 351 + ], + "score": 0.88, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 339, + 285, + 351 + ], + "score": 1.0, + "content": "and policy", + "type": "text" + }, + { + "bbox": [ + 286, + 340, + 297, + 349 + ], + "score": 0.83, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 339, + 505, + 351 + ], + "score": 1.0, + "content": ", respectively, that can rapidly adapt to a new task", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 351, + 388, + 449 + ], + "lines": [ + { + "bbox": [ + 105, + 350, + 388, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 388, + 361 + ], + "score": 1.0, + "content": "seen at meta-test time via gradient descent. Both the value function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 361, + 388, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 388, + 372 + ], + "score": 1.0, + "content": "and the policy objectives correspond to simple regression losses in both", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 371, + 388, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 388, + 384 + ], + "score": 1.0, + "content": "the inner and outer loop, leading to a stable and consistent inner-loop", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 383, + 388, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 388, + 394 + ], + "score": 1.0, + "content": "adaptation process and outer-loop meta-training signal. While these", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 393, + 388, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 388, + 405 + ], + "score": 1.0, + "content": "objectives build upon AWR, we show that the naive application of an", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 404, + 389, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 389, + 417 + ], + "score": 1.0, + "content": "AWR update in the inner loop leads to unsatisfactory performance,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 415, + 389, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 389, + 427 + ], + "score": 1.0, + "content": "motivating the enriched policy update that we describe in Section 4.1.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 426, + 389, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 389, + 439 + ], + "score": 1.0, + "content": "In Sections 4.2 and 4.3, we detail the full meta-training procedure and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 437, + 389, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 389, + 449 + ], + "score": 1.0, + "content": "an important architectural component of the policy and value networks.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 34 + }, + { + "type": "title", + "bbox": [ + 108, + 455, + 285, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 455, + 286, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 286, + 468 + ], + "score": 1.0, + "content": "4.1 INNER-LOOP MACAW PROCEDURE", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 388, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 388, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 388, + 486 + ], + "score": 1.0, + "content": "The adaptation process for MACAW consists of a value function update", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 483, + 389, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 389, + 496 + ], + "score": 1.0, + "content": "followed by a policy update and can be found in lines 6-8 in Algo-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 495, + 388, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 388, + 507 + ], + "score": 1.0, + "content": "rithm 1. Optimization-based meta-learning methods typically rely on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 505, + 389, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 389, + 518 + ], + "score": 1.0, + "content": "truncated optimization for the adaptation process (Finn et al., 2017a),", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 516, + 390, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 390, + 529 + ], + "score": 1.0, + "content": "to satisfy both computational and memory constraints (Wu et al., 2018;", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 528, + 389, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 389, + 540 + ], + "score": 1.0, + "content": "Rajeswaran et al., 2019), and MACAW also uses a truncated optimiza-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 538, + 389, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 389, + 552 + ], + "score": 1.0, + "content": "tion. However, value-based algorithms that use bootstrapping, such as", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 550, + 390, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 390, + 563 + ], + "score": 1.0, + "content": "Q-learning, can require many iterations for values to propagate. There-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 560, + 389, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 389, + 574 + ], + "score": 1.0, + "content": "fore, we use a bootstrap-free update for the value function that simply", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 572, + 341, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 341, + 584 + ], + "score": 1.0, + "content": "performs supervised regression onto Monte-Carlo returns.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45.5 + }, + { + "type": "image", + "bbox": [ + 398, + 362, + 503, + 501 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 398, + 362, + 503, + 501 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 398, + 362, + 503, + 501 + ], + "spans": [ + { + "bbox": [ + 398, + 362, + 503, + 501 + ], + "score": 0.958, + "type": "image", + "image_path": "c95b5d2cfb234d39803bd3d8890f803420ea4b928748173a00e2021c8d765a20.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 398, + 362, + 503, + 501 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 395, + 507, + 505, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 394, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 394, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "Figure 2: MACAW policy ar-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 395, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 395, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "chitecture. Solid lines show", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 395, + 528, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 395, + 528, + 504, + 538 + ], + "score": 1.0, + "content": "the forward pass; dashed lines", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 396, + 538, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 396, + 538, + 505, + 549 + ], + "score": 1.0, + "content": "show gradient flow during the", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 395, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 395, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "backward pass during adapta-", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 395, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 395, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "tion only; the advantage head", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 394, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 394, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "is not used in the outer loop", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 394, + 578, + 450, + 590 + ], + "spans": [ + { + "bbox": [ + 394, + 578, + 450, + 590 + ], + "score": 1.0, + "content": "policy update.", + "type": "text" + } + ], + "index": 60 + } + ], + "index": 55.5 + } + ], + "index": 47.75 + }, + { + "type": "text", + "bbox": [ + 108, + 588, + 470, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 388, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 225, + 601 + ], + "score": 1.0, + "content": "Given a batch of training data", + "type": "text" + }, + { + "bbox": [ + 226, + 589, + 240, + 601 + ], + "score": 0.9, + "content": "D _ { i } ^ { \\mathrm { t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 588, + 293, + 601 + ], + "score": 1.0, + "content": "collected for", + "type": "text" + }, + { + "bbox": [ + 293, + 589, + 303, + 600 + ], + "score": 0.86, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 588, + 388, + 601 + ], + "score": 1.0, + "content": ", MACAW adapts the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 599, + 469, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 469, + 612 + ], + "score": 1.0, + "content": "value function by taking one or a few gradient steps on the following supervised objective:", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 55.0 + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 617, + 480, + 632 + ], + "lines": [ + { + "bbox": [ + 118, + 617, + 480, + 632 + ], + "spans": [ + { + "bbox": [ + 118, + 617, + 480, + 632 + ], + "score": 0.89, + "content": "\\phi _ { i } ^ { \\prime } \\xleftarrow { } \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { I } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { V } ( \\phi , D ) \\triangleq \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim D } \\left[ ( V _ { \\phi } ( \\mathbf { s } ) - \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) ) ^ { 2 } \\right]", + "type": "interline_equation", + "image_path": "71c2b98665f5aca83629e19448eea1c57475acd4c704bce35bbf5fe32b38476c.jpg" + } + ] + } + ], + "index": 61, + "virtual_lines": [ + { + "bbox": [ + 118, + 617, + 480, + 632 + ], + "spans": [], + "index": 61 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 482, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 482, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 150, + 651 + ], + "score": 1.0, + "content": "and where", + "type": "text" + }, + { + "bbox": [ + 150, + 638, + 189, + 650 + ], + "score": 0.93, + "content": "\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 637, + 469, + 651 + ], + "score": 1.0, + "content": "is the Monte Carlo return from the state s taking action a observed in", + "type": "text" + }, + { + "bbox": [ + 469, + 639, + 478, + 648 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 637, + 482, + 651 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 62 + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "After adapting the value function, we proceed to updating the policy. The AWR algorithm updates", + "type": "text" + } + ], + "index": 63 + }, + { + "bbox": [ + 104, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "its policy by performing supervised regression onto actions weighted by the estimated advantage,", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 342, + 691 + ], + "score": 1.0, + "content": "where the advantage is given by the return minus the value:", + "type": "text" + }, + { + "bbox": [ + 343, + 677, + 420, + 691 + ], + "score": 0.89, + "content": "\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 676, + 506, + 691 + ], + "score": 1.0, + "content": ". While it is tempting", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "to use this same update rule here, we observe that this update does not provide the meta-learner with", + "type": "text" + } + ], + "index": 66 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "sufficient expressive power to be a universal update procedure for the policy, using universality in", + "type": "text" + } + ], + "index": 67 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "the sense used by Finn and Levine (2018). For MAML-based methods to approximate any learning", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "procedure, the inner gradient must not discard information needed to infer the task (Finn and Levine,", + "type": "text" + } + ], + "index": 69 + } + ], + "index": 66 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 110, + 94, + 263, + 106 + ], + "lines": [ + { + "bbox": [ + 108, + 92, + 264, + 108 + ], + "spans": [ + { + "bbox": [ + 108, + 92, + 264, + 108 + ], + "score": 1.0, + "content": "Algorithm 1 MACAW Meta-Training", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 316, + 94, + 464, + 106 + ], + "lines": [ + { + "bbox": [ + 313, + 91, + 465, + 109 + ], + "spans": [ + { + "bbox": [ + 313, + 91, + 465, + 109 + ], + "score": 1.0, + "content": "Algorithm 2 MACAW Meta-Testing", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "index", + "bbox": [ + 112, + 109, + 308, + 237 + ], + "lines": [ + { + "bbox": [ + 113, + 109, + 286, + 123 + ], + "spans": [ + { + "bbox": [ + 113, + 109, + 181, + 123 + ], + "score": 1.0, + "content": "1: Input: Tasks", + "type": "text" + }, + { + "bbox": [ + 181, + 110, + 201, + 122 + ], + "score": 0.91, + "content": "\\{ \\mathcal { T } _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 109, + 263, + 123 + ], + "score": 1.0, + "content": ", offline buffers", + "type": "text" + }, + { + "bbox": [ + 264, + 110, + 286, + 122 + ], + "score": 0.87, + "content": "\\{ D _ { i } \\}", + "type": "inline_equation" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 120, + 307, + 135 + ], + "spans": [ + { + "bbox": [ + 114, + 120, + 264, + 135 + ], + "score": 1.0, + "content": "2: Hyperparameters: learning rates", + "type": "text" + }, + { + "bbox": [ + 265, + 123, + 276, + 132 + ], + "score": 0.46, + "content": "\\alpha _ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 120, + 280, + 135 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 281, + 124, + 292, + 132 + ], + "score": 0.46, + "content": "\\alpha _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 120, + 296, + 135 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 296, + 123, + 307, + 132 + ], + "score": 0.48, + "content": "\\eta _ { 1 }", + "type": "inline_equation" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 126, + 132, + 283, + 144 + ], + "spans": [ + { + "bbox": [ + 126, + 134, + 136, + 144 + ], + "score": 0.81, + "content": "\\eta _ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 132, + 213, + 144 + ], + "score": 1.0, + "content": ", training iterations", + "type": "text" + }, + { + "bbox": [ + 213, + 135, + 221, + 142 + ], + "score": 0.7, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 132, + 274, + 144 + ], + "score": 1.0, + "content": ", temperature", + "type": "text" + }, + { + "bbox": [ + 275, + 133, + 283, + 142 + ], + "score": 0.76, + "content": "T", + "type": "inline_equation" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 143, + 294, + 155 + ], + "spans": [ + { + "bbox": [ + 114, + 144, + 123, + 153 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 124, + 143, + 276, + 155 + ], + "score": 1.0, + "content": "Randomly initialize meta-parameters", + "type": "text" + }, + { + "bbox": [ + 276, + 143, + 294, + 155 + ], + "score": 0.28, + "content": "\\theta , \\phi", + "type": "inline_equation" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 114, + 154, + 186, + 167 + ], + "spans": [ + { + "bbox": [ + 114, + 155, + 123, + 164 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 124, + 154, + 140, + 167 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 141, + 156, + 148, + 164 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 154, + 186, + 167 + ], + "score": 1.0, + "content": "steps do", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 164, + 225, + 177 + ], + "spans": [ + { + "bbox": [ + 113, + 165, + 124, + 176 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 135, + 164, + 169, + 177 + ], + "score": 1.0, + "content": "for task", + "type": "text" + }, + { + "bbox": [ + 169, + 165, + 210, + 177 + ], + "score": 0.91, + "content": "\\mathcal { T } _ { i } \\in \\{ \\mathcal { T } _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 164, + 225, + 177 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 175, + 300, + 189 + ], + "spans": [ + { + "bbox": [ + 113, + 176, + 124, + 187 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 145, + 175, + 243, + 189 + ], + "score": 1.0, + "content": "Sample disjoint batches", + "type": "text" + }, + { + "bbox": [ + 243, + 176, + 300, + 188 + ], + "score": 0.8, + "content": "D _ { i } ^ { \\mathrm { t r } } , D _ { i } ^ { \\mathrm { t s } } \\sim D _ { i }", + "type": "inline_equation" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 113, + 186, + 272, + 236 + ], + "spans": [ + { + "bbox": [ + 113, + 186, + 124, + 199 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 136, + 186, + 272, + 236 + ], + "score": 0.28, + "content": "\\begin{array}{c} \\begin{array} { r l } & { \\quad \\phi _ { i } ^ { \\prime } \\xleftarrow { * } \\phi - \\check { \\eta } _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\theta _ { i } ^ { \\prime } \\xleftarrow \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\phi \\xleftarrow \\phi - \\eta _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] } \\\\ & { \\quad \\theta \\xleftarrow \\theta - \\alpha _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\theta } \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , \\right.} \\end{array} \\end{array}", + "type": "inline_equation", + "image_path": "c67c4bfd334ee63e2b48a0738be462d554a1aa1a7db1e5e04feb3265bbc0132a.jpg" + } + ], + "index": 18, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 198, + 124, + 209 + ], + "spans": [ + { + "bbox": [ + 112, + 198, + 124, + 209 + ], + "score": 1.0, + "content": "8:", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 112, + 209, + 124, + 220 + ], + "spans": [ + { + "bbox": [ + 112, + 209, + 124, + 220 + ], + "score": 1.0, + "content": "9:", + "type": "text" + } + ], + "index": 15, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 222, + 124, + 232 + ], + "spans": [ + { + "bbox": [ + 109, + 222, + 124, + 232 + ], + "score": 1.0, + "content": "10:", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + } + ], + "index": 7, + "bbox_fs": [ + 109, + 109, + 307, + 236 + ] + }, + { + "type": "list", + "bbox": [ + 318, + 109, + 496, + 212 + ], + "lines": [ + { + "bbox": [ + 319, + 108, + 496, + 123 + ], + "spans": [ + { + "bbox": [ + 319, + 108, + 403, + 123 + ], + "score": 1.0, + "content": "1: Input: Test task", + "type": "text" + }, + { + "bbox": [ + 403, + 110, + 414, + 122 + ], + "score": 0.87, + "content": "\\tau _ { j }", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 108, + 496, + 123 + ], + "score": 1.0, + "content": ", offline experience", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + }, + { + "bbox": [ + 332, + 120, + 496, + 133 + ], + "spans": [ + { + "bbox": [ + 332, + 121, + 342, + 131 + ], + "score": 0.74, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 120, + 396, + 133 + ], + "score": 1.0, + "content": ", meta-policy", + "type": "text" + }, + { + "bbox": [ + 396, + 123, + 407, + 132 + ], + "score": 0.84, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 120, + 496, + 133 + ], + "score": 1.0, + "content": ", meta-value function", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 332, + 132, + 344, + 144 + ], + "spans": [ + { + "bbox": [ + 332, + 132, + 344, + 144 + ], + "score": 0.75, + "content": "V _ { \\phi }", + "type": "inline_equation" + } + ], + "index": 12, + "is_list_end_line": true + }, + { + "bbox": [ + 320, + 141, + 498, + 156 + ], + "spans": [ + { + "bbox": [ + 320, + 141, + 471, + 156 + ], + "score": 1.0, + "content": "2: Hyperparameters: learning rates", + "type": "text" + }, + { + "bbox": [ + 471, + 145, + 493, + 154 + ], + "score": 0.87, + "content": "\\alpha _ { 1 } , \\eta", + "type": "inline_equation" + }, + { + "bbox": [ + 493, + 141, + 498, + 156 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 331, + 154, + 485, + 165 + ], + "spans": [ + { + "bbox": [ + 331, + 154, + 415, + 165 + ], + "score": 1.0, + "content": "adaptation iterations", + "type": "text" + }, + { + "bbox": [ + 415, + 156, + 423, + 164 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 154, + 476, + 165 + ], + "score": 1.0, + "content": ", temperature", + "type": "text" + }, + { + "bbox": [ + 477, + 154, + 485, + 163 + ], + "score": 0.8, + "content": "T", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 320, + 163, + 442, + 177 + ], + "spans": [ + { + "bbox": [ + 320, + 163, + 369, + 177 + ], + "score": 1.0, + "content": "3: Initialize", + "type": "text" + }, + { + "bbox": [ + 370, + 164, + 401, + 176 + ], + "score": 0.87, + "content": "\\theta _ { 0 } \\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 163, + 404, + 177 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 404, + 165, + 437, + 176 + ], + "score": 0.88, + "content": "\\phi _ { 0 } \\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 163, + 442, + 177 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 318, + 174, + 392, + 188 + ], + "spans": [ + { + "bbox": [ + 318, + 174, + 346, + 188 + ], + "score": 1.0, + "content": "4: for", + "type": "text" + }, + { + "bbox": [ + 347, + 177, + 354, + 185 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 174, + 392, + 188 + ], + "score": 1.0, + "content": "steps do", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 317, + 185, + 490, + 211 + ], + "spans": [ + { + "bbox": [ + 317, + 185, + 340, + 199 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 317, + 196, + 340, + 211 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 340, + 186, + 490, + 211 + ], + "score": 0.4, + "content": "\\begin{array} { r l } & { \\phi _ { t + 1 } \\dot { } \\phi _ { t } - \\eta _ { 1 } \\nabla _ { \\phi _ { t } } \\mathcal { L } _ { V } ( \\phi _ { t } , D ) } \\\\ & { \\theta _ { t + 1 } \\theta _ { t } - \\alpha _ { 1 } \\nabla _ { \\theta _ { t } } \\mathcal { L } _ { \\pi } ( \\theta _ { t } , \\phi _ { t + 1 } , D ) } \\end{array}", + "type": "inline_equation", + "image_path": "1cfb705fb3ff673a84b4b534343881faa1899ab9482c29b1569e61fcfa1e17c7.jpg" + } + ], + "index": 20, + "is_list_start_line": true + } + ], + "index": 13.5, + "bbox_fs": [ + 317, + 108, + 498, + 211 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 244, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "spans": [ + { + "bbox": [ + 106, + 245, + 505, + 256 + ], + "score": 1.0, + "content": "In addition to satisfying the demands of the offline setting, an ideal method for offline meta-RL should", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 505, + 268 + ], + "score": 1.0, + "content": "not be limited to the distribution of tasks observed at training time. This is especially important in the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 506, + 279 + ], + "score": 1.0, + "content": "offline meta-RL setting, in which the sampling of the training data is out of the control of the agent.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 290 + ], + "score": 1.0, + "content": "In other words, it is critical that an offline meta-RL algorithm be consistent, in the sense that given", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 289, + 505, + 301 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 505, + 301 + ], + "score": 1.0, + "content": "enough, sufficiently diverse adaptation data at meta-test time, the algorithm can find a good solution", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 299, + 304, + 312 + ], + "spans": [ + { + "bbox": [ + 105, + 299, + 304, + 312 + ], + "score": 1.0, + "content": "to that task, regardless of the meta-training tasks.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 245, + 506, + 312 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 505, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 330 + ], + "score": 1.0, + "content": "To address the numerous challenges posed by offline meta-RL, we propose meta actor-critic with", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 328, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 505, + 340 + ], + "score": 1.0, + "content": "advantage weighting (MACAW). MACAW is an offline meta-RL algorithm that learns initializations", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 339, + 505, + 351 + ], + "spans": [ + { + "bbox": [ + 106, + 339, + 114, + 350 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 339, + 133, + 351 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 133, + 339, + 140, + 348 + ], + "score": 0.77, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 339, + 225, + 351 + ], + "score": 1.0, + "content": "for a value function", + "type": "text" + }, + { + "bbox": [ + 226, + 339, + 238, + 351 + ], + "score": 0.88, + "content": "V _ { \\phi }", + "type": "inline_equation" + }, + { + "bbox": [ + 238, + 339, + 285, + 351 + ], + "score": 1.0, + "content": "and policy", + "type": "text" + }, + { + "bbox": [ + 286, + 340, + 297, + 349 + ], + "score": 0.83, + "content": "\\pi _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 339, + 505, + 351 + ], + "score": 1.0, + "content": ", respectively, that can rapidly adapt to a new task", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 350, + 388, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 350, + 388, + 361 + ], + "score": 1.0, + "content": "seen at meta-test time via gradient descent. Both the value function", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 361, + 388, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 361, + 388, + 372 + ], + "score": 1.0, + "content": "and the policy objectives correspond to simple regression losses in both", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 371, + 388, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 388, + 384 + ], + "score": 1.0, + "content": "the inner and outer loop, leading to a stable and consistent inner-loop", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 383, + 388, + 394 + ], + "spans": [ + { + "bbox": [ + 106, + 383, + 388, + 394 + ], + "score": 1.0, + "content": "adaptation process and outer-loop meta-training signal. While these", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 393, + 388, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 388, + 405 + ], + "score": 1.0, + "content": "objectives build upon AWR, we show that the naive application of an", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 404, + 389, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 389, + 417 + ], + "score": 1.0, + "content": "AWR update in the inner loop leads to unsatisfactory performance,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 415, + 389, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 389, + 427 + ], + "score": 1.0, + "content": "motivating the enriched policy update that we describe in Section 4.1.", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 426, + 389, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 389, + 439 + ], + "score": 1.0, + "content": "In Sections 4.2 and 4.3, we detail the full meta-training procedure and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 437, + 389, + 449 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 389, + 449 + ], + "score": 1.0, + "content": "an important architectural component of the policy and value networks.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 315, + 505, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 351, + 388, + 449 + ], + "lines": [], + "index": 34, + "bbox_fs": [ + 105, + 350, + 389, + 449 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 455, + 285, + 466 + ], + "lines": [ + { + "bbox": [ + 106, + 455, + 286, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 286, + 468 + ], + "score": 1.0, + "content": "4.1 INNER-LOOP MACAW PROCEDURE", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 473, + 388, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 472, + 388, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 472, + 388, + 486 + ], + "score": 1.0, + "content": "The adaptation process for MACAW consists of a value function update", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 483, + 389, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 389, + 496 + ], + "score": 1.0, + "content": "followed by a policy update and can be found in lines 6-8 in Algo-", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 495, + 388, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 388, + 507 + ], + "score": 1.0, + "content": "rithm 1. Optimization-based meta-learning methods typically rely on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 505, + 389, + 518 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 389, + 518 + ], + "score": 1.0, + "content": "truncated optimization for the adaptation process (Finn et al., 2017a),", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 516, + 390, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 390, + 529 + ], + "score": 1.0, + "content": "to satisfy both computational and memory constraints (Wu et al., 2018;", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 528, + 389, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 389, + 540 + ], + "score": 1.0, + "content": "Rajeswaran et al., 2019), and MACAW also uses a truncated optimiza-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 538, + 389, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 389, + 552 + ], + "score": 1.0, + "content": "tion. However, value-based algorithms that use bootstrapping, such as", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 550, + 390, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 390, + 563 + ], + "score": 1.0, + "content": "Q-learning, can require many iterations for values to propagate. There-", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 560, + 389, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 389, + 574 + ], + "score": 1.0, + "content": "fore, we use a bootstrap-free update for the value function that simply", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 572, + 341, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 341, + 584 + ], + "score": 1.0, + "content": "performs supervised regression onto Monte-Carlo returns.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 472, + 390, + 584 + ] + }, + { + "type": "image", + "bbox": [ + 398, + 362, + 503, + 501 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 398, + 362, + 503, + 501 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 398, + 362, + 503, + 501 + ], + "spans": [ + { + "bbox": [ + 398, + 362, + 503, + 501 + ], + "score": 0.958, + "type": "image", + "image_path": "c95b5d2cfb234d39803bd3d8890f803420ea4b928748173a00e2021c8d765a20.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 398, + 362, + 503, + 501 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 395, + 507, + 505, + 588 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 394, + 506, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 394, + 506, + 506, + 520 + ], + "score": 1.0, + "content": "Figure 2: MACAW policy ar-", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 395, + 518, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 395, + 518, + 505, + 529 + ], + "score": 1.0, + "content": "chitecture. Solid lines show", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 395, + 528, + 504, + 538 + ], + "spans": [ + { + "bbox": [ + 395, + 528, + 504, + 538 + ], + "score": 1.0, + "content": "the forward pass; dashed lines", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 396, + 538, + 505, + 549 + ], + "spans": [ + { + "bbox": [ + 396, + 538, + 505, + 549 + ], + "score": 1.0, + "content": "show gradient flow during the", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 395, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 395, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "backward pass during adapta-", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 395, + 558, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 395, + 558, + 505, + 569 + ], + "score": 1.0, + "content": "tion only; the advantage head", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 394, + 566, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 394, + 566, + 505, + 580 + ], + "score": 1.0, + "content": "is not used in the outer loop", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 394, + 578, + 450, + 590 + ], + "spans": [ + { + "bbox": [ + 394, + 578, + 450, + 590 + ], + "score": 1.0, + "content": "policy update.", + "type": "text" + } + ], + "index": 60 + } + ], + "index": 55.5 + } + ], + "index": 47.75 + }, + { + "type": "text", + "bbox": [ + 108, + 588, + 470, + 611 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 388, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 225, + 601 + ], + "score": 1.0, + "content": "Given a batch of training data", + "type": "text" + }, + { + "bbox": [ + 226, + 589, + 240, + 601 + ], + "score": 0.9, + "content": "D _ { i } ^ { \\mathrm { t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 588, + 293, + 601 + ], + "score": 1.0, + "content": "collected for", + "type": "text" + }, + { + "bbox": [ + 293, + 589, + 303, + 600 + ], + "score": 0.86, + "content": "\\mathcal { T } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 588, + 388, + 601 + ], + "score": 1.0, + "content": ", MACAW adapts the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 599, + 469, + 612 + ], + "spans": [ + { + "bbox": [ + 106, + 599, + 469, + 612 + ], + "score": 1.0, + "content": "value function by taking one or a few gradient steps on the following supervised objective:", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 55.0, + "bbox_fs": [ + 106, + 588, + 469, + 612 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 118, + 617, + 480, + 632 + ], + "lines": [ + { + "bbox": [ + 118, + 617, + 480, + 632 + ], + "spans": [ + { + "bbox": [ + 118, + 617, + 480, + 632 + ], + "score": 0.89, + "content": "\\phi _ { i } ^ { \\prime } \\xleftarrow { } \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { I } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { V } ( \\phi , D ) \\triangleq \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim D } \\left[ ( V _ { \\phi } ( \\mathbf { s } ) - \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) ) ^ { 2 } \\right]", + "type": "interline_equation", + "image_path": "71c2b98665f5aca83629e19448eea1c57475acd4c704bce35bbf5fe32b38476c.jpg" + } + ] + } + ], + "index": 61, + "virtual_lines": [ + { + "bbox": [ + 118, + 617, + 480, + 632 + ], + "spans": [], + "index": 61 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 638, + 482, + 650 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 482, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 150, + 651 + ], + "score": 1.0, + "content": "and where", + "type": "text" + }, + { + "bbox": [ + 150, + 638, + 189, + 650 + ], + "score": 0.93, + "content": "\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 637, + 469, + 651 + ], + "score": 1.0, + "content": "is the Monte Carlo return from the state s taking action a observed in", + "type": "text" + }, + { + "bbox": [ + 469, + 639, + 478, + 648 + ], + "score": 0.83, + "content": "D", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 637, + 482, + 651 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 62 + } + ], + "index": 62, + "bbox_fs": [ + 106, + 637, + 482, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 654, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 506, + 668 + ], + "score": 1.0, + "content": "After adapting the value function, we proceed to updating the policy. The AWR algorithm updates", + "type": "text" + } + ], + "index": 63 + }, + { + "bbox": [ + 104, + 665, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 104, + 665, + 506, + 680 + ], + "score": 1.0, + "content": "its policy by performing supervised regression onto actions weighted by the estimated advantage,", + "type": "text" + } + ], + "index": 64 + }, + { + "bbox": [ + 104, + 676, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 342, + 691 + ], + "score": 1.0, + "content": "where the advantage is given by the return minus the value:", + "type": "text" + }, + { + "bbox": [ + 343, + 677, + 420, + 691 + ], + "score": 0.89, + "content": "\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 676, + 506, + 691 + ], + "score": 1.0, + "content": ". While it is tempting", + "type": "text" + } + ], + "index": 65 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "to use this same update rule here, we observe that this update does not provide the meta-learner with", + "type": "text" + } + ], + "index": 66 + }, + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "sufficient expressive power to be a universal update procedure for the policy, using universality in", + "type": "text" + } + ], + "index": 67 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "the sense used by Finn and Levine (2018). For MAML-based methods to approximate any learning", + "type": "text" + } + ], + "index": 68 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "procedure, the inner gradient must not discard information needed to infer the task (Finn and Levine,", + "type": "text" + } + ], + "index": 69 + } + ], + "index": 66, + "bbox_fs": [ + 104, + 654, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "2018). The gradient of the AWR objective does not contain full information of both the regression", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "weight and the regression target. That is, one cannot recover both the advantage weight and the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "action from the gradient. We formalize this problem in Theorem 1 in Appendix A. To address this", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "issue and make our meta-learner sufficiently expressive, the MACAW policy update performs both", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 507, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 507, + 139 + ], + "score": 1.0, + "content": "advantage-weighted regression onto actions as well as an additional regression onto action advantages.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "This enriched policy update is only used during adaptation, and the predicted advantage is used", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "only to enrich the inner loop policy update during meta-training; during meta-test, this predicted", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 504, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 504, + 171 + ], + "score": 1.0, + "content": "advantage is discarded. We prove the universality of the enriched policy update in Theorem 2 in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Appendix A. We observe empirically the practical impact of the universality property with an ablation", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 241, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 241, + 194 + ], + "score": 1.0, + "content": "study presented in Figure 4 (left).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 198, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "To make predictions for both the AWR loss and advantage regression, our policy architecture has", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 398, + 222 + ], + "score": 1.0, + "content": "two output heads corresponding to the predicted action given the state,", + "type": "text" + }, + { + "bbox": [ + 398, + 209, + 428, + 221 + ], + "score": 0.92, + "content": "\\pi _ { \\boldsymbol { \\theta } } ( \\cdot | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 209, + 506, + 222 + ], + "score": 1.0, + "content": ", and the predicted", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 266, + 233 + ], + "score": 1.0, + "content": "advantage given both state and action", + "type": "text" + }, + { + "bbox": [ + 267, + 220, + 302, + 232 + ], + "score": 0.93, + "content": "A _ { \\boldsymbol { \\theta } } ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 219, + 505, + 233 + ], + "score": 1.0, + "content": ". This architecture is shown in Figure 2. Policy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 254, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 254, + 243 + ], + "score": 1.0, + "content": "adaptation then proceeds as follows:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 247, + 447, + 262 + ], + "lines": [ + { + "bbox": [ + 163, + 247, + 447, + 262 + ], + "spans": [ + { + "bbox": [ + 163, + 247, + 447, + 262 + ], + "score": 0.89, + "content": "\\theta _ { i } ^ { \\prime } \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { \\pi } = \\mathcal { L } ^ { \\mathrm { A W R } } + \\lambda \\mathcal { L } ^ { \\mathrm { A D V } } .", + "type": "interline_equation", + "image_path": "d9d487366e662c8e06e4457d1f4b9fe558f98893aa4c7345a14372da3092f5c9.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 163, + 247, + 447, + 262 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "In our policy update, we show only one gradient step for conciseness of notation, but it can be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "easily extended to multiple gradient steps. The AWR loss is given in Equation 1, and the advantage", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 289, + 217, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 217, + 302 + ], + "score": 1.0, + "content": "regression loss is given by:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 305, + 431, + 329 + ], + "lines": [ + { + "bbox": [ + 179, + 305, + 431, + 329 + ], + "spans": [ + { + "bbox": [ + 179, + 305, + 431, + 329 + ], + "score": 0.92, + "content": "\\mathcal { L } ^ { \\mathrm { A D V } } ( \\theta , \\phi _ { i } ^ { \\prime } , D ) \\triangleq \\underset { \\mathbf { s } , \\mathbf { a } \\sim D } { \\triangleq } \\left[ ( \\hat { A } ( \\mathbf { s } , \\mathbf { a } ) - \\left( \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) ) ^ { 2 } \\right]", + "type": "interline_equation", + "image_path": "482c32cc8bdb7fded9de4e44d5af8554c499b2eb61904ea2c0eddbcdae4b2e82.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 179, + 305, + 431, + 329 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 104, + 339, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 104, + 339, + 169, + 356 + ], + "score": 1.0, + "content": "Adapting with", + "type": "text" + }, + { + "bbox": [ + 169, + 342, + 183, + 353 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 339, + 234, + 356 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 234, + 341, + 258, + 352 + ], + "score": 0.9, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 339, + 506, + 356 + ], + "score": 1.0, + "content": "addresses the expressiveness problems noted earlier. This", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "score": 1.0, + "content": "adaptation process is done both in the inner loop of meta-training and during meta-test time, as", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "score": 1.0, + "content": "outlined in Algorithm 2. MACAW is consistent at meta-test time because it executes a well-defined", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "RL fine-tuning subroutine based on AWR during adaptation. Next, we describe the meta-training", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 385, + 507, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 385, + 276, + 399 + ], + "score": 1.0, + "content": "procedure for learning the meta-parameters", + "type": "text" + }, + { + "bbox": [ + 276, + 386, + 282, + 395 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 385, + 299, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 299, + 386, + 307, + 397 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 385, + 507, + 399 + ], + "score": 1.0, + "content": ", the initializations of the policy and value function,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 397, + 159, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 159, + 410 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5 + }, + { + "type": "title", + "bbox": [ + 108, + 414, + 288, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 290, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 290, + 426 + ], + "score": 1.0, + "content": "4.2 OUTER-LOOP MACAW PROCEDURE", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "To enable rapid adaptation at meta-test time, we meta-train a set of initial parameters for both the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 439, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 104, + 439, + 325, + 457 + ], + "score": 1.0, + "content": "value function and policy to optimize the AWR losses", + "type": "text" + }, + { + "bbox": [ + 326, + 443, + 340, + 454 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 439, + 359, + 457 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 359, + 442, + 383, + 453 + ], + "score": 0.9, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 439, + 506, + 457 + ], + "score": 1.0, + "content": ", respectively, after adaptation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 322, + 467 + ], + "score": 1.0, + "content": "(L9-10 in Algorithm 1). We sample a batch of data", + "type": "text" + }, + { + "bbox": [ + 322, + 454, + 336, + 466 + ], + "score": 0.9, + "content": "D _ { i } ^ { \\mathrm { t s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "for the outer loop update that is disjoint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 465, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 204, + 477 + ], + "score": 1.0, + "content": "from the adaptation data", + "type": "text" + }, + { + "bbox": [ + 205, + 465, + 219, + 477 + ], + "score": 0.89, + "content": "D _ { i } ^ { \\mathrm { t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 465, + 506, + 477 + ], + "score": 1.0, + "content": "in order to promote few-shot generalization rather than memorization of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "the adaptation data. The meta-learning procedure for the value function follows MAML, using the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 245, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 245, + 500 + ], + "score": 1.0, + "content": "supervised Monte Carlo objective:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5 + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 502, + 451, + 523 + ], + "lines": [ + { + "bbox": [ + 159, + 502, + 451, + 523 + ], + "spans": [ + { + "bbox": [ + 159, + 502, + 451, + 523 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ~ = ~ \\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t } } ) , D _ { i } ^ { \\mathrm { t s } } ) \\right] .", + "type": "interline_equation", + "image_path": "d3c75cc1761547c05843a33b40dbb952e169b26940e285137c20ee3794127e87.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 159, + 502, + 451, + 523 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 504, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 134, + 540 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 528, + 149, + 538 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "is defined in Equation 2. This objective optimizes for a set of initial value function", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 538, + 466, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 466, + 550 + ], + "score": 1.0, + "content": "parameters such that one or a few inner gradient steps lead to an accurate value estimator.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 568 + ], + "score": 1.0, + "content": "Unlike the inner loop, we optimize the initial policy parameters in the outer loop with a standard", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "advantage-weighted regression objective, since expressiveness concerns only pertain to the inner", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "loop where only a small number of gradient steps are taken. Hence, the meta-objective for our initial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 588, + 236, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 236, + 601 + ], + "score": 1.0, + "content": "policy parameters is as follows:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5 + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 604, + 478, + 623 + ], + "lines": [ + { + "bbox": [ + 133, + 604, + 478, + 623 + ], + "spans": [ + { + "bbox": [ + 133, + 604, + 478, + 623 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] \\ = \\ \\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ,", + "type": "interline_equation", + "image_path": "3eba80e6c83b1c69edaf1bc7ec67da8916a647856ac653345a0b250271b77a8c.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 133, + 604, + 478, + 623 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 629, + 506, + 653 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 132, + 643 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 630, + 146, + 641 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 627, + 259, + 643 + ], + "score": 1.0, + "content": "is defined in Equation 3 and", + "type": "text" + }, + { + "bbox": [ + 259, + 629, + 284, + 640 + ], + "score": 0.9, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 627, + 506, + 643 + ], + "score": 1.0, + "content": "is defined in Equation 1. Note we use the adapted value", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 641, + 494, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 494, + 654 + ], + "score": 1.0, + "content": "function for policy adaptation. The complete MACAW algorithm is summarized in Algorithm 1.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 107, + 658, + 243, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 244, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 244, + 671 + ], + "score": 1.0, + "content": "4.3 MACAW ARCHITECTURE", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "MACAW’s enriched policy update (Equation 3) is motivated by the desire to make inner loop policy", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "updates more expressive. In addition to augmenting the objective, we can also take an architectural", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "approach to increasing gradient expressiveness. Recall that for an MLP, a single step of gradient", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "descent can only make a rank-1 update to each weight matrix. Finn and Levine (2018) show that", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "this implies that MLPs must be impractically deep for MAML to be able to produce any learning", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "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" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 193 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "2018). The gradient of the AWR objective does not contain full information of both the regression", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "weight and the regression target. That is, one cannot recover both the advantage weight and the", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 505, + 117 + ], + "score": 1.0, + "content": "action from the gradient. We formalize this problem in Theorem 1 in Appendix A. To address this", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "issue and make our meta-learner sufficiently expressive, the MACAW policy update performs both", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 507, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 507, + 139 + ], + "score": 1.0, + "content": "advantage-weighted regression onto actions as well as an additional regression onto action advantages.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "This enriched policy update is only used during adaptation, and the predicted advantage is used", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 161 + ], + "score": 1.0, + "content": "only to enrich the inner loop policy update during meta-training; during meta-test, this predicted", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 504, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 504, + 171 + ], + "score": 1.0, + "content": "advantage is discarded. We prove the universality of the enriched policy update in Theorem 2 in", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 505, + 183 + ], + "score": 1.0, + "content": "Appendix A. We observe empirically the practical impact of the universality property with an ablation", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 181, + 241, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 241, + 194 + ], + "score": 1.0, + "content": "study presented in Figure 4 (left).", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 82, + 507, + 194 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 198, + 505, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 505, + 210 + ], + "score": 1.0, + "content": "To make predictions for both the AWR loss and advantage regression, our policy architecture has", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 398, + 222 + ], + "score": 1.0, + "content": "two output heads corresponding to the predicted action given the state,", + "type": "text" + }, + { + "bbox": [ + 398, + 209, + 428, + 221 + ], + "score": 0.92, + "content": "\\pi _ { \\boldsymbol { \\theta } } ( \\cdot | \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 209, + 506, + 222 + ], + "score": 1.0, + "content": ", and the predicted", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 219, + 505, + 233 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 266, + 233 + ], + "score": 1.0, + "content": "advantage given both state and action", + "type": "text" + }, + { + "bbox": [ + 267, + 220, + 302, + 232 + ], + "score": 0.93, + "content": "A _ { \\boldsymbol { \\theta } } ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 219, + 505, + 233 + ], + "score": 1.0, + "content": ". This architecture is shown in Figure 2. Policy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 231, + 254, + 243 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 254, + 243 + ], + "score": 1.0, + "content": "adaptation then proceeds as follows:", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 197, + 506, + 243 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 163, + 247, + 447, + 262 + ], + "lines": [ + { + "bbox": [ + 163, + 247, + 447, + 262 + ], + "spans": [ + { + "bbox": [ + 163, + 247, + 447, + 262 + ], + "score": 0.89, + "content": "\\theta _ { i } ^ { \\prime } \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { \\pi } = \\mathcal { L } ^ { \\mathrm { A W R } } + \\lambda \\mathcal { L } ^ { \\mathrm { A D V } } .", + "type": "interline_equation", + "image_path": "d9d487366e662c8e06e4457d1f4b9fe558f98893aa4c7345a14372da3092f5c9.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 163, + 247, + 447, + 262 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 267, + 505, + 300 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 280 + ], + "score": 1.0, + "content": "In our policy update, we show only one gradient step for conciseness of notation, but it can be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 505, + 291 + ], + "score": 1.0, + "content": "easily extended to multiple gradient steps. The AWR loss is given in Equation 1, and the advantage", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 289, + 217, + 302 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 217, + 302 + ], + "score": 1.0, + "content": "regression loss is given by:", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 266, + 505, + 302 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 179, + 305, + 431, + 329 + ], + "lines": [ + { + "bbox": [ + 179, + 305, + 431, + 329 + ], + "spans": [ + { + "bbox": [ + 179, + 305, + 431, + 329 + ], + "score": 0.92, + "content": "\\mathcal { L } ^ { \\mathrm { A D V } } ( \\theta , \\phi _ { i } ^ { \\prime } , D ) \\triangleq \\underset { \\mathbf { s } , \\mathbf { a } \\sim D } { \\triangleq } \\left[ ( \\hat { A } ( \\mathbf { s } , \\mathbf { a } ) - \\left( \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) ) ^ { 2 } \\right]", + "type": "interline_equation", + "image_path": "482c32cc8bdb7fded9de4e44d5af8554c499b2eb61904ea2c0eddbcdae4b2e82.jpg" + } + ] + } + ], + "index": 18, + "virtual_lines": [ + { + "bbox": [ + 179, + 305, + 431, + 329 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 340, + 505, + 408 + ], + "lines": [ + { + "bbox": [ + 104, + 339, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 104, + 339, + 169, + 356 + ], + "score": 1.0, + "content": "Adapting with", + "type": "text" + }, + { + "bbox": [ + 169, + 342, + 183, + 353 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 339, + 234, + 356 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 234, + 341, + 258, + 352 + ], + "score": 0.9, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 339, + 506, + 356 + ], + "score": 1.0, + "content": "addresses the expressiveness problems noted earlier. This", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "score": 1.0, + "content": "adaptation process is done both in the inner loop of meta-training and during meta-test time, as", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "score": 1.0, + "content": "outlined in Algorithm 2. MACAW is consistent at meta-test time because it executes a well-defined", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "RL fine-tuning subroutine based on AWR during adaptation. Next, we describe the meta-training", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 385, + 507, + 399 + ], + "spans": [ + { + "bbox": [ + 104, + 385, + 276, + 399 + ], + "score": 1.0, + "content": "procedure for learning the meta-parameters", + "type": "text" + }, + { + "bbox": [ + 276, + 386, + 282, + 395 + ], + "score": 0.81, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 283, + 385, + 299, + 399 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 299, + 386, + 307, + 397 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 385, + 507, + 399 + ], + "score": 1.0, + "content": ", the initializations of the policy and value function,", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 397, + 159, + 410 + ], + "spans": [ + { + "bbox": [ + 105, + 397, + 159, + 410 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 339, + 507, + 410 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 414, + 288, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 413, + 290, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 290, + 426 + ], + "score": 1.0, + "content": "4.2 OUTER-LOOP MACAW PROCEDURE", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 432, + 505, + 498 + ], + "lines": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 505, + 444 + ], + "score": 1.0, + "content": "To enable rapid adaptation at meta-test time, we meta-train a set of initial parameters for both the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 439, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 104, + 439, + 325, + 457 + ], + "score": 1.0, + "content": "value function and policy to optimize the AWR losses", + "type": "text" + }, + { + "bbox": [ + 326, + 443, + 340, + 454 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 439, + 359, + 457 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 359, + 442, + 383, + 453 + ], + "score": 0.9, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 439, + 506, + 457 + ], + "score": 1.0, + "content": ", respectively, after adaptation", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 454, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 454, + 322, + 467 + ], + "score": 1.0, + "content": "(L9-10 in Algorithm 1). We sample a batch of data", + "type": "text" + }, + { + "bbox": [ + 322, + 454, + 336, + 466 + ], + "score": 0.9, + "content": "D _ { i } ^ { \\mathrm { t s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 337, + 454, + 506, + 467 + ], + "score": 1.0, + "content": "for the outer loop update that is disjoint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 465, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 204, + 477 + ], + "score": 1.0, + "content": "from the adaptation data", + "type": "text" + }, + { + "bbox": [ + 205, + 465, + 219, + 477 + ], + "score": 0.89, + "content": "D _ { i } ^ { \\mathrm { t r } }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 465, + 506, + 477 + ], + "score": 1.0, + "content": "in order to promote few-shot generalization rather than memorization of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 506, + 489 + ], + "score": 1.0, + "content": "the adaptation data. The meta-learning procedure for the value function follows MAML, using the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 487, + 245, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 245, + 500 + ], + "score": 1.0, + "content": "supervised Monte Carlo objective:", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28.5, + "bbox_fs": [ + 104, + 432, + 506, + 500 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 159, + 502, + 451, + 523 + ], + "lines": [ + { + "bbox": [ + 159, + 502, + 451, + 523 + ], + "spans": [ + { + "bbox": [ + 159, + 502, + 451, + 523 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ~ = ~ \\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t } } ) , D _ { i } ^ { \\mathrm { t s } } ) \\right] .", + "type": "interline_equation", + "image_path": "d3c75cc1761547c05843a33b40dbb952e169b26940e285137c20ee3794127e87.jpg" + } + ] + } + ], + "index": 32, + "virtual_lines": [ + { + "bbox": [ + 159, + 502, + 451, + 523 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 527, + 504, + 550 + ], + "lines": [ + { + "bbox": [ + 106, + 527, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 527, + 134, + 540 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 528, + 149, + 538 + ], + "score": 0.9, + "content": "{ \\mathcal { L } } _ { V }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 527, + 505, + 540 + ], + "score": 1.0, + "content": "is defined in Equation 2. This objective optimizes for a set of initial value function", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 538, + 466, + 550 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 466, + 550 + ], + "score": 1.0, + "content": "parameters such that one or a few inner gradient steps lead to an accurate value estimator.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 527, + 505, + 550 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 555, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 105, + 554, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 506, + 568 + ], + "score": 1.0, + "content": "Unlike the inner loop, we optimize the initial policy parameters in the outer loop with a standard", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "advantage-weighted regression objective, since expressiveness concerns only pertain to the inner", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 506, + 590 + ], + "score": 1.0, + "content": "loop where only a small number of gradient steps are taken. Hence, the meta-objective for our initial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 588, + 236, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 236, + 601 + ], + "score": 1.0, + "content": "policy parameters is as follows:", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 554, + 506, + 601 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 133, + 604, + 478, + 623 + ], + "lines": [ + { + "bbox": [ + 133, + 604, + 478, + 623 + ], + "spans": [ + { + "bbox": [ + 133, + 604, + 478, + 623 + ], + "score": 0.92, + "content": "\\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] \\ = \\ \\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ,", + "type": "interline_equation", + "image_path": "3eba80e6c83b1c69edaf1bc7ec67da8916a647856ac653345a0b250271b77a8c.jpg" + } + ] + } + ], + "index": 39, + "virtual_lines": [ + { + "bbox": [ + 133, + 604, + 478, + 623 + ], + "spans": [], + "index": 39 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 629, + 506, + 653 + ], + "lines": [ + { + "bbox": [ + 105, + 627, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 132, + 643 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 630, + 146, + 641 + ], + "score": 0.89, + "content": "{ \\mathcal { L } } _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 627, + 259, + 643 + ], + "score": 1.0, + "content": "is defined in Equation 3 and", + "type": "text" + }, + { + "bbox": [ + 259, + 629, + 284, + 640 + ], + "score": 0.9, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 627, + 506, + 643 + ], + "score": 1.0, + "content": "is defined in Equation 1. Note we use the adapted value", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 641, + 494, + 654 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 494, + 654 + ], + "score": 1.0, + "content": "function for policy adaptation. The complete MACAW algorithm is summarized in Algorithm 1.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 627, + 506, + 654 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 658, + 243, + 670 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 244, + 671 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 244, + 671 + ], + "score": 1.0, + "content": "4.3 MACAW ARCHITECTURE", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 505, + 689 + ], + "score": 1.0, + "content": "MACAW’s enriched policy update (Equation 3) is motivated by the desire to make inner loop policy", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "updates more expressive. In addition to augmenting the objective, we can also take an architectural", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "approach to increasing gradient expressiveness. Recall that for an MLP, a single step of gradient", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "descent can only make a rank-1 update to each weight matrix. Finn and Levine (2018) show that", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "this implies that MLPs must be impractically deep for MAML to be able to produce any learning", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "score": 1.0, + "content": "procedure. However, we can shortcut this rank-1 limitation with a relatively simple change to the", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "layers of an MLP, which we call a weight transform layer. This layer maps a latent code into", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "the weight matrix and bias, which are then used to compute the layer’s output just as in a typical", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "fully-connected layer. This ‘layer-wise linear hypernetwork’ (Ha et al., 2016) doesn’t change the", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 380, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 395 + ], + "score": 1.0, + "content": "class of functions computable by the layer on its input, but it increases the expressivity of MAML’s", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "gradient. Because we update the latent code by gradient descent (which is mapped back into a new", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "weight matrix and bias in the forward pass) we can, in theory, acquire weight matrix updates of", + "type": "text", + "cross_page": true + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 413, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 426 + ], + "score": 1.0, + "content": "rank up to the dimensionality of the latent code. We use this strategy for all of the weights in both", + "type": "text", + "cross_page": true + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "the value function network and the policy network. This architecture is similar to latent embedding", + "type": "text", + "cross_page": true + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "optimization (LEO) (Rusu et al., 2019), but the choice of using simple linear mapping functions", + "type": "text", + "cross_page": true + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "score": 1.0, + "content": "allows us to apply weight transform layers to the entire network while still providing more expressive", + "type": "text", + "cross_page": true + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "gradients. For a more detailed explanation of this strategy, see Appendix B. Our experiments find", + "type": "text", + "cross_page": true + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 468, + 367, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 367, + 481 + ], + "score": 1.0, + "content": "that this layer significantly improves learning speed and stability.", + "type": "text", + "cross_page": true + } + ], + "index": 20 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 677, + 505, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 112, + 79, + 496, + 268 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 79, + 496, + 268 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 79, + 496, + 268 + ], + "spans": [ + { + "bbox": [ + 112, + 79, + 496, + 268 + ], + "score": 0.976, + "type": "image", + "image_path": "c2d3c77930d93ed2e281d85fd95e50e89fbb79687248630c2ac7e9cc8fc3189a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 79, + 496, + 142.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 142.0, + 496, + 205.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 205.0, + 496, + 268.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 274, + 506, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "Figure 3: Comparing MACAW with (i) an offline variant of PEARL (Rakelly et al., 2019), a state-of-the-art", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 326, + 296 + ], + "score": 1.0, + "content": "off-policy meta-RL method, (ii) an offline multi-task training", + "type": "text" + }, + { + "bbox": [ + 327, + 285, + 335, + 293 + ], + "score": 0.72, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "fine tuning method based on AWR (Peng et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 294, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 506, + 305 + ], + "score": 1.0, + "content": "2019), and (iii) a meta-behavior cloning baseline. Shaded regions show one standard error of the mean reward of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "score": 1.0, + "content": "four seeds. MACAW is the only algorithm to consistently outperform the imitation learning baseline, and also", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 313, + 431, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 431, + 326 + ], + "score": 1.0, + "content": "learns with the fewest number of training steps in every environment (note the log x axis).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 505, + 479 + ], + "lines": [ + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 506, + 349 + ], + "score": 1.0, + "content": "procedure. However, we can shortcut this rank-1 limitation with a relatively simple change to the", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 348, + 505, + 360 + ], + "score": 1.0, + "content": "layers of an MLP, which we call a weight transform layer. This layer maps a latent code into", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "the weight matrix and bias, which are then used to compute the layer’s output just as in a typical", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 370, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 106, + 370, + 505, + 383 + ], + "score": 1.0, + "content": "fully-connected layer. This ‘layer-wise linear hypernetwork’ (Ha et al., 2016) doesn’t change the", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 380, + 506, + 395 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 506, + 395 + ], + "score": 1.0, + "content": "class of functions computable by the layer on its input, but it increases the expressivity of MAML’s", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 505, + 405 + ], + "score": 1.0, + "content": "gradient. Because we update the latent code by gradient descent (which is mapped back into a new", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 106, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "weight matrix and bias in the forward pass) we can, in theory, acquire weight matrix updates of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 413, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 505, + 426 + ], + "score": 1.0, + "content": "rank up to the dimensionality of the latent code. We use this strategy for all of the weights in both", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 438 + ], + "score": 1.0, + "content": "the value function network and the policy network. This architecture is similar to latent embedding", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "optimization (LEO) (Rusu et al., 2019), but the choice of using simple linear mapping functions", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 460 + ], + "score": 1.0, + "content": "allows us to apply weight transform layers to the entire network while still providing more expressive", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "spans": [ + { + "bbox": [ + 106, + 457, + 506, + 471 + ], + "score": 1.0, + "content": "gradients. For a more detailed explanation of this strategy, see Appendix B. Our experiments find", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 468, + 367, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 367, + 481 + ], + "score": 1.0, + "content": "that this layer significantly improves learning speed and stability.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 108, + 493, + 200, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 201, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 201, + 507 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "The primary goal of our empirical evaluations is to test whether we can acquire priors from offline", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "multi-task data that facilitate rapid transfer to new tasks. Our evaluation compares MACAW with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "three sensible approaches to this problem: a meta-imitation learning, multi-task offline RL with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "fine-tuning, and an offline variant of the state-of-the-art off-policy meta-RL method, PEARL (Rakelly", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "et al., 2019). Further, we analyze a) the importance of MACAW’s enriched policy update (Equation 3)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "in various data quality regimes; b) the effect of the proposed weight transformation; and c) how", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "each method’s performance is affected when the sampling of the task space during training is very", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "sparse. The first two settings highlight the differences between MACAW and the naïve combination", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "of MAML and AWR; the third setting represents a realistic setting where fewer tasks are available", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "during meta-training. See Appendix C for additional experiments a) ablating the weight transform", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "layer b) investigating the performance of MACAW and PEARL when online fine-tuning is available", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 639, + 235, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 235, + 650 + ], + "score": 1.0, + "content": "and c) a richer task distribution.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "For our experiments, we construct offline variants of the widely-used simulated continuous control", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "benchmark problems introduced by Finn et al. (2017a); Rothfuss et al. (2018), including the half-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "cheetah with varying directions and varying velocities, the walker with varying physical parameters,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "and the ant with varying directions. If not noted otherwise, the offline data for each experiment is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "generated from the replay buffer of a RL agent trained from scratch. This reflects a practical scenario", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "where an agent has previously learned a set of tasks via RL, stored its experiences, and now would", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 470, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 470, + 733 + ], + "score": 1.0, + "content": "like to quickly learn a related task. Data collection information is available in Appendix D.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 39 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 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": "image", + "bbox": [ + 112, + 79, + 496, + 268 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 112, + 79, + 496, + 268 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 112, + 79, + 496, + 268 + ], + "spans": [ + { + "bbox": [ + 112, + 79, + 496, + 268 + ], + "score": 0.976, + "type": "image", + "image_path": "c2d3c77930d93ed2e281d85fd95e50e89fbb79687248630c2ac7e9cc8fc3189a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 112, + 79, + 496, + 142.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 112, + 142.0, + 496, + 205.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 112, + 205.0, + 496, + 268.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 274, + 506, + 324 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "Figure 3: Comparing MACAW with (i) an offline variant of PEARL (Rakelly et al., 2019), a state-of-the-art", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 326, + 296 + ], + "score": 1.0, + "content": "off-policy meta-RL method, (ii) an offline multi-task training", + "type": "text" + }, + { + "bbox": [ + 327, + 285, + 335, + 293 + ], + "score": 0.72, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "fine tuning method based on AWR (Peng et al.,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 294, + 506, + 305 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 506, + 305 + ], + "score": 1.0, + "content": "2019), and (iii) a meta-behavior cloning baseline. Shaded regions show one standard error of the mean reward of", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 506, + 315 + ], + "score": 1.0, + "content": "four seeds. MACAW is the only algorithm to consistently outperform the imitation learning baseline, and also", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 313, + 431, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 313, + 431, + 326 + ], + "score": 1.0, + "content": "learns with the fewest number of training steps in every environment (note the log x axis).", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 505, + 479 + ], + "lines": [], + "index": 14, + "bbox_fs": [ + 105, + 337, + 506, + 481 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 493, + 200, + 505 + ], + "lines": [ + { + "bbox": [ + 105, + 492, + 201, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 201, + 507 + ], + "score": 1.0, + "content": "5 EXPERIMENTS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 649 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 530 + ], + "score": 1.0, + "content": "The primary goal of our empirical evaluations is to test whether we can acquire priors from offline", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "multi-task data that facilitate rapid transfer to new tasks. Our evaluation compares MACAW with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "three sensible approaches to this problem: a meta-imitation learning, multi-task offline RL with", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "fine-tuning, and an offline variant of the state-of-the-art off-policy meta-RL method, PEARL (Rakelly", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "et al., 2019). Further, we analyze a) the importance of MACAW’s enriched policy update (Equation 3)", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "in various data quality regimes; b) the effect of the proposed weight transformation; and c) how", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 597 + ], + "score": 1.0, + "content": "each method’s performance is affected when the sampling of the task space during training is very", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "sparse. The first two settings highlight the differences between MACAW and the naïve combination", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "of MAML and AWR; the third setting represents a realistic setting where fewer tasks are available", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 505, + 628 + ], + "score": 1.0, + "content": "during meta-training. See Appendix C for additional experiments a) ablating the weight transform", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "layer b) investigating the performance of MACAW and PEARL when online fine-tuning is available", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 639, + 235, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 235, + 650 + ], + "score": 1.0, + "content": "and c) a richer task distribution.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 518, + 506, + 650 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 655, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "For our experiments, we construct offline variants of the widely-used simulated continuous control", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 506, + 678 + ], + "score": 1.0, + "content": "benchmark problems introduced by Finn et al. (2017a); Rothfuss et al. (2018), including the half-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "cheetah with varying directions and varying velocities, the walker with varying physical parameters,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "and the ant with varying directions. If not noted otherwise, the offline data for each experiment is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "generated from the replay buffer of a RL agent trained from scratch. This reflects a practical scenario", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 106, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "where an agent has previously learned a set of tasks via RL, stored its experiences, and now would", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 721, + 470, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 470, + 733 + ], + "score": 1.0, + "content": "like to quickly learn a related task. Data collection information is available in Appendix D.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 655, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 241, + 90, + 366, + 163 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 246, + 82, + 362, + 89 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 245, + 81, + 363, + 91 + ], + "spans": [ + { + "bbox": [ + 245, + 81, + 363, + 91 + ], + "score": 0.976, + "content": "Ablating MACAW's Weight Transform", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "image_body", + "bbox": [ + 241, + 90, + 366, + 163 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 241, + 90, + 366, + 163 + ], + "spans": [ + { + "bbox": [ + 241, + 90, + 366, + 163 + ], + "score": 0.766, + "type": "image", + "image_path": "622a648f60aef4640a9d619d79c6449b1fd72ba2fd307d65f26c9b17a2c7267d.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 90, + 366, + 126.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 241, + 126.5, + 366, + 163.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "image", + "bbox": [ + 370, + 90, + 483, + 163 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 374, + 82, + 501, + 89 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 372, + 80, + 501, + 91 + ], + "spans": [ + { + "bbox": [ + 372, + 80, + 501, + 91 + ], + "score": 0.989, + "content": "Test Performance with Sparse Task Sampling", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "image_body", + "bbox": [ + 370, + 90, + 483, + 163 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 370, + 90, + 483, + 163 + ], + "spans": [ + { + "bbox": [ + 370, + 90, + 483, + 163 + ], + "score": 0.792, + "type": "image", + "image_path": "0b2b8be14162f085ffb0cbb13f145ee11743a80135a9332f52d12997878a0b6b.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 370, + 90, + 483, + 126.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 370, + 126.5, + 483, + 163.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.25 + }, + { + "type": "image", + "bbox": [ + 108, + 88, + 232, + 163 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 116, + 82, + 237, + 88 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 81, + 238, + 90 + ], + "spans": [ + { + "bbox": [ + 116, + 81, + 238, + 90 + ], + "score": 0.986, + "content": "Ablating MACAW's Enriched Policy Update", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image_body", + "bbox": [ + 108, + 88, + 232, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 88, + 232, + 163 + ], + "spans": [ + { + "bbox": [ + 108, + 88, + 232, + 163 + ], + "score": 0.886, + "type": "image", + "image_path": "bb285f5837b705f9346b158e8b16fc2f1922ca5701f04b800fdca3994e6aa06b.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 88, + 232, + 125.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 125.5, + 232, + 163.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 167, + 505, + 288 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "Figure 4: Left: Ablating MACAW’s enriched policy update when varying the quality of the inner loop", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "adaptation data. Solid lines correspond to MACAW, dashed lines correspond to MACAW without the auxiliary", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 229, + 200 + ], + "score": 1.0, + "content": "policy loss (equivalently, MAML", + "type": "text" + }, + { + "bbox": [ + 229, + 189, + 235, + 196 + ], + "score": 0.58, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "AWR with weight transforms). Both perform similarly with good quality", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "adaptation data (orange), but the policy adaptation step without the auxiliary loss begins to fail as adaptation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 208, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 219 + ], + "score": 1.0, + "content": "data is increasingly sub-optimal (blue and red). Bad, medium, and good data correspond to the first, middle, and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "last 500 trajectories from the lifetime replay buffer of the behavior policy for each task; see Appendix D for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 227, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 506, + 239 + ], + "score": 1.0, + "content": "learning curves of the individual offline policies. Center: Ablating MACAW’s weight transform layer in the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "same experimental setting as the cheetah-velocity experiment in Figure 3. Without the additional expressiveness,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "score": 1.0, + "content": "learning is much slower and less stable. Right: Train task sparsity split performance of MACAW, Offline", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 257, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 182, + 269 + ], + "score": 1.0, + "content": "PEARL, and Offline", + "type": "text" + }, + { + "bbox": [ + 182, + 258, + 202, + 267 + ], + "score": 0.31, + "content": "\\mathbf { M T + }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 257, + 506, + 269 + ], + "score": 1.0, + "content": "fine tune. Each curve corresponds to the performance of a method as the number of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "tasks available for training is varied. MACAW shows the most consistent performance when different numbers", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 277, + 410, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 410, + 290 + ], + "score": 1.0, + "content": "of tasks are used, performing well even when only three tasks are used for training.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "Can we learn to adapt to new tasks quickly from purely offline data? Our first evaluation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "compares three approaches to the offline meta-RL problem setting, testing their ability to leverage the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "offline task datasets in order to quickly adapt to a new task. Specifically, we compare MACAW with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 329, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 104, + 329, + 506, + 344 + ], + "score": 1.0, + "content": "i) offline PEARL (Rakelly et al., 2019), ii) multi-task AWR (Peng et al., 2019), which uses 20 steps", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 429, + 354 + ], + "score": 1.0, + "content": "of Adam (Kingma and Ba, 2015) to adapt to a new task at meta-test time (Offline", + "type": "text" + }, + { + "bbox": [ + 429, + 342, + 464, + 352 + ], + "score": 0.76, + "content": "\\mathrm { M T + F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 341, + 506, + 354 + ], + "score": 1.0, + "content": ") and iii) a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "score": 1.0, + "content": "meta-behavior cloning baseline. We choose PEARL and AWR because they achieve state-of-the-art", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "performance in off-policy meta-RL and offline RL, respectively, and are readily adaptable to the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "offline meta-RL problem. As in Rakelly et al. (2019), for each experiment, we sample a finite set of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "training tasks and held out test tasks upfront and keep these fixed throughout training. Figure 3 shows", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "the results. We find that MACAW is the only algorithm to consistently outperform the meta-behavior", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 245, + 420 + ], + "score": 1.0, + "content": "cloning baseline. Multi-task AWR", + "type": "text" + }, + { + "bbox": [ + 245, + 408, + 254, + 417 + ], + "score": 0.64, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "fine-tuning makes meaningful progress on the simpler cheetah", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "problems, but it is unable to adapt well on the more challenging walker and ant problems. Offline", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "PEARL shows initial progress on cheetah-velocity and walker-params, but struggles to make steady", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "progress on any of the problems. We attribute PEARL’s failure to Q-function extrapolation error, a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 450, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 465 + ], + "score": 1.0, + "content": "problem known to affect many off-policy RL algorithms (Fujimoto et al., 2019), as well as generally", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "unstable offline bootstrapping. MACAW’s and AWR’s value function is bootstrap-free and their", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "policy updates maximize a weighted maximum likelihood objective during training, which biases the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "policy toward safer actions (Peng et al., 2019), implicitly avoiding problems caused by extrapolation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "error. In contrast to Offline PEARL and multi-task AWR, MACAW trains efficiently and relatively", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "stably on all problems, providing an effective approach to learning representations from multi-task", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 516, + 400, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 400, + 529 + ], + "score": 1.0, + "content": "offline data that can be effectively adapted to new tasks at meta-test time.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 338, + 547 + ], + "score": 1.0, + "content": "How does MACAW’s performance differ from MAML", + "type": "text" + }, + { + "bbox": [ + 338, + 536, + 345, + 544 + ], + "score": 0.47, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 533, + 505, + 547 + ], + "score": 1.0, + "content": "AWR? MACAW has two key features", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 545, + 507, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 229, + 558 + ], + "score": 1.0, + "content": "distinguishing it from MAML", + "type": "text" + }, + { + "bbox": [ + 229, + 547, + 236, + 555 + ], + "score": 0.51, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 545, + 507, + 558 + ], + "score": 1.0, + "content": "AWR: the enriched policy loss and weight transform layers. Here,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "we use the Cheetah-Velocity setting to test the effects of both of these changes. We first ablate the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "enriched policy loss used in MACAW’s inner loop update. This experiment compares MACAW and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 138, + 591 + ], + "score": 1.0, + "content": "MAML", + "type": "text" + }, + { + "bbox": [ + 138, + 580, + 146, + 588 + ], + "score": 0.45, + "content": "+ .", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 578, + 167, + 591 + ], + "score": 1.0, + "content": "AWR", + "type": "text" + }, + { + "bbox": [ + 167, + 580, + 173, + 588 + ], + "score": 0.42, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "weight transform layers, which optimize Equation 3 and Equation 1 in the policy", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 589, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 506, + 602 + ], + "score": 1.0, + "content": "inner-loop, respectively. To identify when policy update expressiveness is most crucial, we repeat", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "this ablation study three times, meta-training and meta-testing with various qualities of inner-loop", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 475, + 623 + ], + "score": 1.0, + "content": "data, using good outer loop data for all experiments. Figure 4 (left) shows the results. MAML", + "type": "text" + }, + { + "bbox": [ + 475, + 613, + 482, + 621 + ], + "score": 0.39, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "AWR", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "performs well when the offline adaptation data comes from a near-optimal policy, which is essentially", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 104, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "a one-shot imitation setting (orange); however, when the offline adaptation data comes from a policy", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 104, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 643, + 356, + 657 + ], + "score": 1.0, + "content": "pre-convergence, the difference between MACAW and MAML", + "type": "text" + }, + { + "bbox": [ + 356, + 645, + 362, + 653 + ], + "score": 0.45, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "AWR becomes significant (blue and", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "red). This result supports the intuition that policy update expressiveness is of greater importance", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "when the adaptation data is more random, because in this case the adaptation data includes a weaker", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "signal from which to infer the task (e.g. the task cannot be inferred by simply looking at the states", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "visited). Because an agent is unable to collect further experience from the environment during offline", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "adaptation, it is effectively at the mercy of the quality of the behavior policy that produced the", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "data. An important property of a meta-RL algorithm is thus its robustness to sub-optimal behavior", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 720, + 505, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 735 + ], + "score": 1.0, + "content": "policies, a property that MACAW exhibits. Next, we ablate the weight transform layers, comparing", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 50.5 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 241, + 90, + 366, + 163 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 246, + 82, + 362, + 89 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 245, + 81, + 363, + 91 + ], + "spans": [ + { + "bbox": [ + 245, + 81, + 363, + 91 + ], + "score": 0.976, + "content": "Ablating MACAW's Weight Transform", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "image_body", + "bbox": [ + 241, + 90, + 366, + 163 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 241, + 90, + 366, + 163 + ], + "spans": [ + { + "bbox": [ + 241, + 90, + 366, + 163 + ], + "score": 0.766, + "type": "image", + "image_path": "622a648f60aef4640a9d619d79c6449b1fd72ba2fd307d65f26c9b17a2c7267d.jpg" + } + ] + } + ], + "index": 5.5, + "virtual_lines": [ + { + "bbox": [ + 241, + 90, + 366, + 126.5 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 241, + 126.5, + 366, + 163.0 + ], + "spans": [], + "index": 7 + } + ] + } + ], + "index": 3.25 + }, + { + "type": "image", + "bbox": [ + 370, + 90, + 483, + 163 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 374, + 82, + 501, + 89 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 372, + 80, + 501, + 91 + ], + "spans": [ + { + "bbox": [ + 372, + 80, + 501, + 91 + ], + "score": 0.989, + "content": "Test Performance with Sparse Task Sampling", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "image_body", + "bbox": [ + 370, + 90, + 483, + 163 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 370, + 90, + 483, + 163 + ], + "spans": [ + { + "bbox": [ + 370, + 90, + 483, + 163 + ], + "score": 0.792, + "type": "image", + "image_path": "0b2b8be14162f085ffb0cbb13f145ee11743a80135a9332f52d12997878a0b6b.jpg" + } + ] + } + ], + "index": 6.5, + "virtual_lines": [ + { + "bbox": [ + 370, + 90, + 483, + 126.5 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 370, + 126.5, + 483, + 163.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.25 + }, + { + "type": "image", + "bbox": [ + 108, + 88, + 232, + 163 + ], + "blocks": [ + { + "type": "image_caption", + "bbox": [ + 116, + 82, + 237, + 88 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 81, + 238, + 90 + ], + "spans": [ + { + "bbox": [ + 116, + 81, + 238, + 90 + ], + "score": 0.986, + "content": "Ablating MACAW's Enriched Policy Update", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "image_body", + "bbox": [ + 108, + 88, + 232, + 163 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 88, + 232, + 163 + ], + "spans": [ + { + "bbox": [ + 108, + 88, + 232, + 163 + ], + "score": 0.886, + "type": "image", + "image_path": "bb285f5837b705f9346b158e8b16fc2f1922ca5701f04b800fdca3994e6aa06b.jpg" + } + ] + } + ], + "index": 4.5, + "virtual_lines": [ + { + "bbox": [ + 108, + 88, + 232, + 125.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 125.5, + 232, + 163.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 167, + 505, + 288 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 167, + 505, + 180 + ], + "score": 1.0, + "content": "Figure 4: Left: Ablating MACAW’s enriched policy update when varying the quality of the inner loop", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 189 + ], + "score": 1.0, + "content": "adaptation data. Solid lines correspond to MACAW, dashed lines correspond to MACAW without the auxiliary", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 187, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 229, + 200 + ], + "score": 1.0, + "content": "policy loss (equivalently, MAML", + "type": "text" + }, + { + "bbox": [ + 229, + 189, + 235, + 196 + ], + "score": 0.58, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 187, + 505, + 200 + ], + "score": 1.0, + "content": "AWR with weight transforms). Both perform similarly with good quality", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "adaptation data (orange), but the policy adaptation step without the auxiliary loss begins to fail as adaptation", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 208, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 505, + 219 + ], + "score": 1.0, + "content": "data is increasingly sub-optimal (blue and red). Bad, medium, and good data correspond to the first, middle, and", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 506, + 230 + ], + "score": 1.0, + "content": "last 500 trajectories from the lifetime replay buffer of the behavior policy for each task; see Appendix D for", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 227, + 506, + 239 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 506, + 239 + ], + "score": 1.0, + "content": "learning curves of the individual offline policies. Center: Ablating MACAW’s weight transform layer in the", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 237, + 506, + 250 + ], + "score": 1.0, + "content": "same experimental setting as the cheetah-velocity experiment in Figure 3. Without the additional expressiveness,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 259 + ], + "score": 1.0, + "content": "learning is much slower and less stable. Right: Train task sparsity split performance of MACAW, Offline", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 257, + 506, + 269 + ], + "spans": [ + { + "bbox": [ + 105, + 257, + 182, + 269 + ], + "score": 1.0, + "content": "PEARL, and Offline", + "type": "text" + }, + { + "bbox": [ + 182, + 258, + 202, + 267 + ], + "score": 0.31, + "content": "\\mathbf { M T + }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 257, + 506, + 269 + ], + "score": 1.0, + "content": "fine tune. Each curve corresponds to the performance of a method as the number of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 279 + ], + "score": 1.0, + "content": "tasks available for training is varied. MACAW shows the most consistent performance when different numbers", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 277, + 410, + 290 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 410, + 290 + ], + "score": 1.0, + "content": "of tasks are used, performing well even when only three tasks are used for training.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 14.5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 298, + 505, + 528 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 506, + 309 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 506, + 309 + ], + "score": 1.0, + "content": "Can we learn to adapt to new tasks quickly from purely offline data? Our first evaluation", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 505, + 321 + ], + "score": 1.0, + "content": "compares three approaches to the offline meta-RL problem setting, testing their ability to leverage the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 319, + 505, + 332 + ], + "score": 1.0, + "content": "offline task datasets in order to quickly adapt to a new task. Specifically, we compare MACAW with", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 329, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 104, + 329, + 506, + 344 + ], + "score": 1.0, + "content": "i) offline PEARL (Rakelly et al., 2019), ii) multi-task AWR (Peng et al., 2019), which uses 20 steps", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 341, + 506, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 341, + 429, + 354 + ], + "score": 1.0, + "content": "of Adam (Kingma and Ba, 2015) to adapt to a new task at meta-test time (Offline", + "type": "text" + }, + { + "bbox": [ + 429, + 342, + 464, + 352 + ], + "score": 0.76, + "content": "\\mathrm { M T + F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 341, + 506, + 354 + ], + "score": 1.0, + "content": ") and iii) a", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 364 + ], + "score": 1.0, + "content": "meta-behavior cloning baseline. We choose PEARL and AWR because they achieve state-of-the-art", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "performance in off-policy meta-RL and offline RL, respectively, and are readily adaptable to the", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 374, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 374, + 506, + 387 + ], + "score": 1.0, + "content": "offline meta-RL problem. As in Rakelly et al. (2019), for each experiment, we sample a finite set of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 398 + ], + "score": 1.0, + "content": "training tasks and held out test tasks upfront and keep these fixed throughout training. Figure 3 shows", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 506, + 409 + ], + "score": 1.0, + "content": "the results. We find that MACAW is the only algorithm to consistently outperform the meta-behavior", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 245, + 420 + ], + "score": 1.0, + "content": "cloning baseline. Multi-task AWR", + "type": "text" + }, + { + "bbox": [ + 245, + 408, + 254, + 417 + ], + "score": 0.64, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "fine-tuning makes meaningful progress on the simpler cheetah", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 431 + ], + "score": 1.0, + "content": "problems, but it is unable to adapt well on the more challenging walker and ant problems. Offline", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "PEARL shows initial progress on cheetah-velocity and walker-params, but struggles to make steady", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "progress on any of the problems. We attribute PEARL’s failure to Q-function extrapolation error, a", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 450, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 465 + ], + "score": 1.0, + "content": "problem known to affect many off-policy RL algorithms (Fujimoto et al., 2019), as well as generally", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "unstable offline bootstrapping. MACAW’s and AWR’s value function is bootstrap-free and their", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "policy updates maximize a weighted maximum likelihood objective during training, which biases the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 505, + 497 + ], + "score": 1.0, + "content": "policy toward safer actions (Peng et al., 2019), implicitly avoiding problems caused by extrapolation", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 494, + 505, + 507 + ], + "score": 1.0, + "content": "error. In contrast to Offline PEARL and multi-task AWR, MACAW trains efficiently and relatively", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "stably on all problems, providing an effective approach to learning representations from multi-task", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 516, + 400, + 529 + ], + "spans": [ + { + "bbox": [ + 106, + 516, + 400, + 529 + ], + "score": 1.0, + "content": "offline data that can be effectively adapted to new tasks at meta-test time.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 297, + 506, + 529 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 533, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 338, + 547 + ], + "score": 1.0, + "content": "How does MACAW’s performance differ from MAML", + "type": "text" + }, + { + "bbox": [ + 338, + 536, + 345, + 544 + ], + "score": 0.47, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 345, + 533, + 505, + 547 + ], + "score": 1.0, + "content": "AWR? MACAW has two key features", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 545, + 507, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 229, + 558 + ], + "score": 1.0, + "content": "distinguishing it from MAML", + "type": "text" + }, + { + "bbox": [ + 229, + 547, + 236, + 555 + ], + "score": 0.51, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 545, + 507, + 558 + ], + "score": 1.0, + "content": "AWR: the enriched policy loss and weight transform layers. Here,", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 104, + 556, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 104, + 556, + 506, + 569 + ], + "score": 1.0, + "content": "we use the Cheetah-Velocity setting to test the effects of both of these changes. We first ablate the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "enriched policy loss used in MACAW’s inner loop update. This experiment compares MACAW and", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 578, + 505, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 138, + 591 + ], + "score": 1.0, + "content": "MAML", + "type": "text" + }, + { + "bbox": [ + 138, + 580, + 146, + 588 + ], + "score": 0.45, + "content": "+ .", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 578, + 167, + 591 + ], + "score": 1.0, + "content": "AWR", + "type": "text" + }, + { + "bbox": [ + 167, + 580, + 173, + 588 + ], + "score": 0.42, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 578, + 505, + 591 + ], + "score": 1.0, + "content": "weight transform layers, which optimize Equation 3 and Equation 1 in the policy", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 589, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 506, + 602 + ], + "score": 1.0, + "content": "inner-loop, respectively. To identify when policy update expressiveness is most crucial, we repeat", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 600, + 505, + 613 + ], + "score": 1.0, + "content": "this ablation study three times, meta-training and meta-testing with various qualities of inner-loop", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 475, + 623 + ], + "score": 1.0, + "content": "data, using good outer loop data for all experiments. Figure 4 (left) shows the results. MAML", + "type": "text" + }, + { + "bbox": [ + 475, + 613, + 482, + 621 + ], + "score": 0.39, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "AWR", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 506, + 635 + ], + "score": 1.0, + "content": "performs well when the offline adaptation data comes from a near-optimal policy, which is essentially", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 104, + 632, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 506, + 647 + ], + "score": 1.0, + "content": "a one-shot imitation setting (orange); however, when the offline adaptation data comes from a policy", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 104, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 104, + 643, + 356, + 657 + ], + "score": 1.0, + "content": "pre-convergence, the difference between MACAW and MAML", + "type": "text" + }, + { + "bbox": [ + 356, + 645, + 362, + 653 + ], + "score": 0.45, + "content": "+", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "AWR becomes significant (blue and", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "red). This result supports the intuition that policy update expressiveness is of greater importance", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "when the adaptation data is more random, because in this case the adaptation data includes a weaker", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "signal from which to infer the task (e.g. the task cannot be inferred by simply looking at the states", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 701 + ], + "score": 1.0, + "content": "visited). Because an agent is unable to collect further experience from the environment during offline", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "adaptation, it is effectively at the mercy of the quality of the behavior policy that produced the", + "type": "text" + } + ], + "index": 57 + }, + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 708, + 506, + 723 + ], + "score": 1.0, + "content": "data. An important property of a meta-RL algorithm is thus its robustness to sub-optimal behavior", + "type": "text" + } + ], + "index": 58 + }, + { + "bbox": [ + 105, + 720, + 505, + 735 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 735 + ], + "score": 1.0, + "content": "policies, a property that MACAW exhibits. Next, we ablate the weight transform layers, comparing", + "type": "text" + } + ], + "index": 59 + } + ], + "index": 50.5, + "bbox_fs": [ + 104, + 533, + 507, + 735 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 138, + 96 + ], + "score": 1.0, + "content": "MAML", + "type": "text" + }, + { + "bbox": [ + 139, + 84, + 145, + 92 + ], + "score": 0.47, + "content": "+ .", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 81, + 167, + 96 + ], + "score": 1.0, + "content": "AWR", + "type": "text" + }, + { + "bbox": [ + 167, + 84, + 173, + 92 + ], + "score": 0.29, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "enriched policy update with MACAW. Figure 4 (center) suggests that the weight", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "transform layers significantly improve both learning speed and stability. The No WT-Equal Width", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "variant removes the weight transform from each fully-connected layer, replacing it with a regular", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "fully-connected layer of equal width in the forward pass. The No WT-Equal Params variant replaces", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "each of MACAW’s weight transform layers with a regular fully-connected layer of greater width, to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "keep the total number of learnable parameters in the network roughly constant. In either case, we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "find that MACAW provides a significant improvement in learning speed, as well as stability when", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "compared to the Equal Width variant. Figure 5 in the appendix shows that this result is consistent", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 176, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 176, + 183 + ], + "score": 1.0, + "content": "across problems.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 184, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 197 + ], + "score": 1.0, + "content": "How do algorithms perform with varying numbers of meta-training tasks? Generally, we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "prefer an offline meta-RL algorithm that can generalize to new tasks when presented with only a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 310, + 219 + ], + "score": 1.0, + "content": "small number of meta-training tasks sampled from", + "type": "text" + }, + { + "bbox": [ + 311, + 207, + 332, + 218 + ], + "score": 0.91, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 206, + 506, + 219 + ], + "score": 1.0, + "content": ". In this section, we conduct an experiment", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 216, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 216, + 506, + 231 + ], + "score": 1.0, + "content": "to evaluate the extent to which various algorithms rely on dense sampling of the space of tasks during", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 227, + 507, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 507, + 242 + ], + "score": 1.0, + "content": "training in order to generalize well. We compare the test performance of MACAW, offline PEARL,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 222, + 252 + ], + "score": 1.0, + "content": "and offline multi-task AWR", + "type": "text" + }, + { + "bbox": [ + 223, + 240, + 231, + 250 + ], + "score": 0.7, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "fine-tuning as we hold out an increasingly large percentage of the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "Cheetah-Velocity task space. The results are presented in Figure 4 (right). Surprisingly, Offline", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "PEARL completely fails to learn both when training tasks are plentiful and when they are scarce, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "learns relatively effectively in the middle regime (5-20 tasks). In our experiments, we often observe", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 282, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 297 + ], + "score": 1.0, + "content": "instability in Offline PEARL’s task inference and value function networks when training on too many", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "offline tasks. On the other hand, with too few tasks, the task inference network simply learns a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "degenerate solution, providing no useful information for the value functions or policy to identify the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 225, + 329 + ], + "score": 1.0, + "content": "task. The multi-task learning", + "type": "text" + }, + { + "bbox": [ + 225, + 317, + 234, + 326 + ], + "score": 0.8, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "fine-tuning baseline exhibits a steadier degradation in performance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "as training tasks are removed, likely owing to its bootstrap-free learning procedure. Similarly to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "Offline PEARL, it is not able to learn a useful prior for fine-tuning when only presented with 3 tasks", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "for training. However, MACAW finds a solution of reasonable quality for any sampling of the task", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "space, even for very dense or very sparse samplings of the training tasks. In practice, this property", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "is desirable, because it allows the same algorithm to scale to very large offline datasets while still", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "producing useful adaptation behaviors for small datasets. Ultimately, MACAW effectively exploits", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "the available data when meta-training tasks are plentiful and shows by far the greatest robustness when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "score": 1.0, + "content": "tasks are scarce, which we attribute to its SGD-based adaptation procedure during both meta-training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 414, + 177, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 177, + 428 + ], + "score": 1.0, + "content": "and meta-testing.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 108, + 433, + 211, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 213, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 213, + 447 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "score": 1.0, + "content": "Meta-learning algorithms enable efficient learning of new tasks by learning elements of the learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "process itself (Schmidhuber, 1987; Bengio et al., 1992; Thrun and Pratt, 1998; Finn, 2018). We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "specifically consider the problem of meta-reinforcement learning. Prior methods for meta-RL", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 485, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 496 + ], + "score": 1.0, + "content": "can generally be categorized into two groups. Contextual meta-RL methods condition a neural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 496, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 507 + ], + "score": 1.0, + "content": "network on experience using a recurrent network (Wang et al., 2016; Duan et al., 2016; Fakoor et al.,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "2020), a recursive network (Mishra et al., 2017), or a stochastic inference network (Rakelly et al.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "2019; Zintgraf et al., 2020; Humplik et al., 2019; Sæmundsson et al., 2018). Optimization-based", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 529, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 540 + ], + "score": 1.0, + "content": "meta-RL methods embed an optimization procedure such as gradient descent into the meta-level", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "optimization (Finn et al., 2017a; Nagabandi et al., 2019; Rothfuss et al., 2018; Zintgraf et al., 2019;", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Gupta et al., 2018; Mendonca et al., 2019; Yang et al., 2019), potentially using a learned loss", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "function (Houthooft et al., 2018; Bechtle et al., 2019; Kirsch et al., 2020b;a). In prior works, the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "former class of approaches tend to reach higher asymptotic performance, while the latter class is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "typically more robust to out-of-distribution tasks, since the meta-test procedure corresponds to a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "score": 1.0, + "content": "well-formed optimization. Concurrent work by Dorfman and Tamar (2020) investigates the offline", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "meta-RL setting, directly applying an existing meta-RL algorithm, VariBAD (Zintgraf et al., 2020),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "score": 1.0, + "content": "to the offline setting. The proposed method further assumes knowledge of the reward function for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "score": 1.0, + "content": "each task to relabel rewards and share data across tasks with shared dynamics. MACAW does not", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "rely on this knowledge nor the assumption that some tasks share dynamics, but this technique could", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 649, + 385, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 385, + 660 + ], + "score": 1.0, + "content": "be readily combined with MACAW when these assumptions do hold.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Unlike these prior works, we aim to develop an optimization-based meta-RL algorithm that can both", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "learn from entirely offline data and produces a monotonic learning procedure. Only a handful of", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "previous model-free meta-RL methods leverage off-policy data at all (Rakelly et al., 2019; Mendonca", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "et al., 2019), and none have considered the fully offline setting. Guided meta-policy search (Mendonca", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "et al., 2019) is optimization-based, but is not applicable to the batch setting as it partially relies on", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "score": 1.0, + "content": "policy gradients. This only leaves PEARL (Rakelly et al., 2019) and its relatives (Fakoor et al., 2020),", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 53.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 138, + 96 + ], + "score": 1.0, + "content": "MAML", + "type": "text" + }, + { + "bbox": [ + 139, + 84, + 145, + 92 + ], + "score": 0.47, + "content": "+ .", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 81, + 167, + 96 + ], + "score": 1.0, + "content": "AWR", + "type": "text" + }, + { + "bbox": [ + 167, + 84, + 173, + 92 + ], + "score": 0.29, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "enriched policy update with MACAW. Figure 4 (center) suggests that the weight", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "transform layers significantly improve both learning speed and stability. The No WT-Equal Width", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "variant removes the weight transform from each fully-connected layer, replacing it with a regular", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "fully-connected layer of equal width in the forward pass. The No WT-Equal Params variant replaces", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "each of MACAW’s weight transform layers with a regular fully-connected layer of greater width, to", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 505, + 150 + ], + "score": 1.0, + "content": "keep the total number of learnable parameters in the network roughly constant. In either case, we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 162 + ], + "score": 1.0, + "content": "find that MACAW provides a significant improvement in learning speed, as well as stability when", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 506, + 172 + ], + "score": 1.0, + "content": "compared to the Equal Width variant. Figure 5 in the appendix shows that this result is consistent", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 171, + 176, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 176, + 183 + ], + "score": 1.0, + "content": "across problems.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 81, + 506, + 183 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 184, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 197 + ], + "score": 1.0, + "content": "How do algorithms perform with varying numbers of meta-training tasks? Generally, we", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "prefer an offline meta-RL algorithm that can generalize to new tasks when presented with only a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 310, + 219 + ], + "score": 1.0, + "content": "small number of meta-training tasks sampled from", + "type": "text" + }, + { + "bbox": [ + 311, + 207, + 332, + 218 + ], + "score": 0.91, + "content": "p ( \\mathcal { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 333, + 206, + 506, + 219 + ], + "score": 1.0, + "content": ". In this section, we conduct an experiment", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 216, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 104, + 216, + 506, + 231 + ], + "score": 1.0, + "content": "to evaluate the extent to which various algorithms rely on dense sampling of the space of tasks during", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 227, + 507, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 507, + 242 + ], + "score": 1.0, + "content": "training in order to generalize well. We compare the test performance of MACAW, offline PEARL,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 240, + 505, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 240, + 222, + 252 + ], + "score": 1.0, + "content": "and offline multi-task AWR", + "type": "text" + }, + { + "bbox": [ + 223, + 240, + 231, + 250 + ], + "score": 0.7, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 232, + 240, + 505, + 252 + ], + "score": 1.0, + "content": "fine-tuning as we hold out an increasingly large percentage of the", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "spans": [ + { + "bbox": [ + 106, + 250, + 505, + 263 + ], + "score": 1.0, + "content": "Cheetah-Velocity task space. The results are presented in Figure 4 (right). Surprisingly, Offline", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 260, + 506, + 274 + ], + "score": 1.0, + "content": "PEARL completely fails to learn both when training tasks are plentiful and when they are scarce, but", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "learns relatively effectively in the middle regime (5-20 tasks). In our experiments, we often observe", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 282, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 297 + ], + "score": 1.0, + "content": "instability in Offline PEARL’s task inference and value function networks when training on too many", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 294, + 506, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 506, + 307 + ], + "score": 1.0, + "content": "offline tasks. On the other hand, with too few tasks, the task inference network simply learns a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 106, + 305, + 505, + 318 + ], + "score": 1.0, + "content": "degenerate solution, providing no useful information for the value functions or policy to identify the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 105, + 316, + 225, + 329 + ], + "score": 1.0, + "content": "task. The multi-task learning", + "type": "text" + }, + { + "bbox": [ + 225, + 317, + 234, + 326 + ], + "score": 0.8, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 234, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "fine-tuning baseline exhibits a steadier degradation in performance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 327, + 505, + 340 + ], + "score": 1.0, + "content": "as training tasks are removed, likely owing to its bootstrap-free learning procedure. Similarly to", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 350 + ], + "score": 1.0, + "content": "Offline PEARL, it is not able to learn a useful prior for fine-tuning when only presented with 3 tasks", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 506, + 362 + ], + "score": 1.0, + "content": "for training. However, MACAW finds a solution of reasonable quality for any sampling of the task", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 373 + ], + "score": 1.0, + "content": "space, even for very dense or very sparse samplings of the training tasks. In practice, this property", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 505, + 384 + ], + "score": 1.0, + "content": "is desirable, because it allows the same algorithm to scale to very large offline datasets while still", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "producing useful adaptation behaviors for small datasets. Ultimately, MACAW effectively exploits", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 505, + 406 + ], + "score": 1.0, + "content": "the available data when meta-training tasks are plentiful and shows by far the greatest robustness when", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 506, + 417 + ], + "score": 1.0, + "content": "tasks are scarce, which we attribute to its SGD-based adaptation procedure during both meta-training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 414, + 177, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 177, + 428 + ], + "score": 1.0, + "content": "and meta-testing.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 184, + 507, + 428 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 433, + 211, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 432, + 213, + 447 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 213, + 447 + ], + "score": 1.0, + "content": "6 RELATED WORK", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 451, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 465 + ], + "score": 1.0, + "content": "Meta-learning algorithms enable efficient learning of new tasks by learning elements of the learning", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "process itself (Schmidhuber, 1987; Bengio et al., 1992; Thrun and Pratt, 1998; Finn, 2018). We", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "specifically consider the problem of meta-reinforcement learning. Prior methods for meta-RL", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 485, + 506, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 506, + 496 + ], + "score": 1.0, + "content": "can generally be categorized into two groups. Contextual meta-RL methods condition a neural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 496, + 506, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 506, + 507 + ], + "score": 1.0, + "content": "network on experience using a recurrent network (Wang et al., 2016; Duan et al., 2016; Fakoor et al.,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 506, + 519 + ], + "score": 1.0, + "content": "2020), a recursive network (Mishra et al., 2017), or a stochastic inference network (Rakelly et al.,", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 106, + 517, + 506, + 530 + ], + "score": 1.0, + "content": "2019; Zintgraf et al., 2020; Humplik et al., 2019; Sæmundsson et al., 2018). Optimization-based", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 529, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 506, + 540 + ], + "score": 1.0, + "content": "meta-RL methods embed an optimization procedure such as gradient descent into the meta-level", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "optimization (Finn et al., 2017a; Nagabandi et al., 2019; Rothfuss et al., 2018; Zintgraf et al., 2019;", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 506, + 563 + ], + "score": 1.0, + "content": "Gupta et al., 2018; Mendonca et al., 2019; Yang et al., 2019), potentially using a learned loss", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 574 + ], + "score": 1.0, + "content": "function (Houthooft et al., 2018; Bechtle et al., 2019; Kirsch et al., 2020b;a). In prior works, the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 505, + 585 + ], + "score": 1.0, + "content": "former class of approaches tend to reach higher asymptotic performance, while the latter class is", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "typically more robust to out-of-distribution tasks, since the meta-test procedure corresponds to a", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 594, + 506, + 608 + ], + "score": 1.0, + "content": "well-formed optimization. Concurrent work by Dorfman and Tamar (2020) investigates the offline", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 506, + 618 + ], + "score": 1.0, + "content": "meta-RL setting, directly applying an existing meta-RL algorithm, VariBAD (Zintgraf et al., 2020),", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 506, + 628 + ], + "score": 1.0, + "content": "to the offline setting. The proposed method further assumes knowledge of the reward function for", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 106, + 627, + 506, + 639 + ], + "score": 1.0, + "content": "each task to relabel rewards and share data across tasks with shared dynamics. MACAW does not", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 650 + ], + "score": 1.0, + "content": "rely on this knowledge nor the assumption that some tasks share dynamics, but this technique could", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 649, + 385, + 660 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 385, + 660 + ], + "score": 1.0, + "content": "be readily combined with MACAW when these assumptions do hold.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 450, + 506, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 505, + 678 + ], + "score": 1.0, + "content": "Unlike these prior works, we aim to develop an optimization-based meta-RL algorithm that can both", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "learn from entirely offline data and produces a monotonic learning procedure. Only a handful of", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "spans": [ + { + "bbox": [ + 104, + 687, + 506, + 701 + ], + "score": 1.0, + "content": "previous model-free meta-RL methods leverage off-policy data at all (Rakelly et al., 2019; Mendonca", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "et al., 2019), and none have considered the fully offline setting. Guided meta-policy search (Mendonca", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "et al., 2019) is optimization-based, but is not applicable to the batch setting as it partially relies on", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 732 + ], + "score": 1.0, + "content": "policy gradients. This only leaves PEARL (Rakelly et al., 2019) and its relatives (Fakoor et al., 2020),", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 506, + 95 + ], + "score": 1.0, + "content": "which correspond to a contextual meta-learning approach that is sensitive to the meta-training task", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "distribution without fine-tuning (Fakoor et al., 2020) at test time. We also compare to PEARL, and", + "type": "text", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "find that, as expected, it performs worse than in the off-policy setting, since the fully offline setting is", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 434, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 434, + 127 + ], + "score": 1.0, + "content": "substantially more challenging than the off-policy setting that it was designed for.", + "type": "text", + "cross_page": true + } + ], + "index": 3 + } + ], + "index": 53.5, + "bbox_fs": [ + 104, + 665, + 506, + 732 + ] + } + ] + }, + { + "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": "which correspond to a contextual meta-learning approach that is sensitive to the meta-training task", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 505, + 105 + ], + "score": 1.0, + "content": "distribution without fine-tuning (Fakoor et al., 2020) at test time. We also compare to PEARL, and", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 506, + 118 + ], + "score": 1.0, + "content": "find that, as expected, it performs worse than in the off-policy setting, since the fully offline setting is", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 116, + 434, + 127 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 434, + 127 + ], + "score": 1.0, + "content": "substantially more challenging than the off-policy setting that it was designed for.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "The proposed algorithm builds on the idea of batch off-policy or offline reinforcement learning (Fuji-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "moto et al., 2019; Kumar et al., 2019b; Wu et al., 2019; Levine et al., 2020; Agarwal et al., 2020),", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "extending the problem setting to the meta-learning setting. There are a number of recent works", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "that have demonstrated successful results with offline reinforcement learning and deep neural net-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "works (Fujimoto et al., 2019; Jaques et al., 2019; Kumar et al., 2019a; Wu et al., 2019; Peng et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "2019; Agarwal et al., 2020). We specifically choose to build upon the advantage-weighted regression", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "(AWR) algorithm (Peng et al., 2019). We find that AWR performs well without requiring dynamic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "score": 1.0, + "content": "programming, instead using Monte Carlo estimation to infer the value function. This property is ap-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "pealing, as it is difficult to combine truncated optimization-based meta-learners such as MAML (Finn", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "et al., 2017a) with TD learning, which requires a larger number of gradient steps to effectively", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 172, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 172, + 255 + ], + "score": 1.0, + "content": "back-up values.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 108, + 261, + 195, + 274 + ], + "lines": [ + { + "bbox": [ + 104, + 259, + 198, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 259, + 198, + 277 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 292 + ], + "score": 1.0, + "content": "In this work, we formulated the problem of offline meta-reinforcement learning and presented", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "MACAW, a practical algorithm that achieves good performance on various continuous control tasks", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "compared with other state-of-the-art meta-RL algorithms. We motivated the design of MACAW by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "the desire to build an offline meta-RL algorithm that is both sample-efficient (using value-based RL", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "subroutines) and consistent (running a full-fledged RL algorithm at test time). We hope that this work", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "serves as the basis for future research in offline meta-RL, enabling more sample-efficient learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "score": 1.0, + "content": "algorithms to make better use of purely observational data from previous tasks and adapt to new tasks", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 357, + 164, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 164, + 371 + ], + "score": 1.0, + "content": "more quickly.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "We consider fully offline meta-training and meta-testing with and without online fine-tuning, showing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "that MACAW is effective both when collecting online data is totally infeasible as well as when", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 397, + 504, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 504, + 408 + ], + "score": 1.0, + "content": "some online data collection is possible at meta-test time. However, an interesting direction for future", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "score": 1.0, + "content": "work is to consider how we might enable online adaptation from purely offline meta-training while", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 417, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 506, + 433 + ], + "score": 1.0, + "content": "preserving the consistency property of MACAW. This would require an offline strategy for learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 430, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 442 + ], + "score": 1.0, + "content": "to explore, a problem that has largely been considered in on-policy settings in the past (Gupta et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 440, + 473, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 473, + 453 + ], + "score": 1.0, + "content": "2018; Zintgraf et al., 2020) but also recently in offline settings (Dorfman and Tamar, 2020).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 506, + 127 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 132, + 505, + 253 + ], + "lines": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 132, + 506, + 145 + ], + "score": 1.0, + "content": "The proposed algorithm builds on the idea of batch off-policy or offline reinforcement learning (Fuji-", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 143, + 506, + 156 + ], + "score": 1.0, + "content": "moto et al., 2019; Kumar et al., 2019b; Wu et al., 2019; Levine et al., 2020; Agarwal et al., 2020),", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "extending the problem setting to the meta-learning setting. There are a number of recent works", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 106, + 165, + 506, + 178 + ], + "score": 1.0, + "content": "that have demonstrated successful results with offline reinforcement learning and deep neural net-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 506, + 189 + ], + "score": 1.0, + "content": "works (Fujimoto et al., 2019; Jaques et al., 2019; Kumar et al., 2019a; Wu et al., 2019; Peng et al.,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 505, + 200 + ], + "score": 1.0, + "content": "2019; Agarwal et al., 2020). We specifically choose to build upon the advantage-weighted regression", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 505, + 210 + ], + "score": 1.0, + "content": "(AWR) algorithm (Peng et al., 2019). We find that AWR performs well without requiring dynamic", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "spans": [ + { + "bbox": [ + 104, + 208, + 507, + 223 + ], + "score": 1.0, + "content": "programming, instead using Monte Carlo estimation to infer the value function. This property is ap-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 220, + 506, + 232 + ], + "score": 1.0, + "content": "pealing, as it is difficult to combine truncated optimization-based meta-learners such as MAML (Finn", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 104, + 230, + 506, + 244 + ], + "spans": [ + { + "bbox": [ + 104, + 230, + 506, + 244 + ], + "score": 1.0, + "content": "et al., 2017a) with TD learning, which requires a larger number of gradient steps to effectively", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 241, + 172, + 255 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 172, + 255 + ], + "score": 1.0, + "content": "back-up values.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 9, + "bbox_fs": [ + 104, + 132, + 507, + 255 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 261, + 195, + 274 + ], + "lines": [ + { + "bbox": [ + 104, + 259, + 198, + 277 + ], + "spans": [ + { + "bbox": [ + 104, + 259, + 198, + 277 + ], + "score": 1.0, + "content": "7 CONCLUSION", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 505, + 369 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 292 + ], + "score": 1.0, + "content": "In this work, we formulated the problem of offline meta-reinforcement learning and presented", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "MACAW, a practical algorithm that achieves good performance on various continuous control tasks", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 506, + 316 + ], + "score": 1.0, + "content": "compared with other state-of-the-art meta-RL algorithms. We motivated the design of MACAW by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "the desire to build an offline meta-RL algorithm that is both sample-efficient (using value-based RL", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 337 + ], + "score": 1.0, + "content": "subroutines) and consistent (running a full-fledged RL algorithm at test time). We hope that this work", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 349 + ], + "score": 1.0, + "content": "serves as the basis for future research in offline meta-RL, enabling more sample-efficient learning", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 346, + 506, + 360 + ], + "score": 1.0, + "content": "algorithms to make better use of purely observational data from previous tasks and adapt to new tasks", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 357, + 164, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 164, + 371 + ], + "score": 1.0, + "content": "more quickly.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 281, + 506, + 371 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 374, + 505, + 452 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 388 + ], + "score": 1.0, + "content": "We consider fully offline meta-training and meta-testing with and without online fine-tuning, showing", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "that MACAW is effective both when collecting online data is totally infeasible as well as when", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 397, + 504, + 408 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 504, + 408 + ], + "score": 1.0, + "content": "some online data collection is possible at meta-test time. However, an interesting direction for future", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 504, + 420 + ], + "score": 1.0, + "content": "work is to consider how we might enable online adaptation from purely offline meta-training while", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 417, + 506, + 433 + ], + "spans": [ + { + "bbox": [ + 104, + 417, + 506, + 433 + ], + "score": 1.0, + "content": "preserving the consistency property of MACAW. This would require an offline strategy for learning", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 430, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 442 + ], + "score": 1.0, + "content": "to explore, a problem that has largely been considered in on-policy settings in the past (Gupta et al.,", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 440, + 473, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 473, + 453 + ], + "score": 1.0, + "content": "2018; Zintgraf et al., 2020) but also recently in offline settings (Dorfman and Tamar, 2020).", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 373, + 506, + 453 + ] + } + ] + }, + { + "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": [ + 107, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 444, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 444, + 124 + ], + "score": 1.0, + "content": "reinforcement learning. In International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 107, + 129, + 506, + 162 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "score": 1.0, + "content": "Sarah Bechtle, Artem Molchanov, Yevgen Chebotar, Edward Grefenstette, Ludovic Righetti, Gaurav", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 116, + 140, + 506, + 153 + ], + "score": 1.0, + "content": "Sukhatme, and Franziska Meier. Meta-learning via learned loss. arXiv preprint arXiv:1906.05374,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 150, + 143, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 150, + 143, + 164 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "Samy Bengio, Yoshua Bengio, Jocelyn Cloutier, and Jan Gecsei. On the optimization of a synaptic", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 181, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 116, + 181, + 506, + 193 + ], + "score": 1.0, + "content": "learning rule. In Preprints Conf. Optimality in Artificial and Biological Neural Networks, volume 2.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 192, + 204, + 204 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 204, + 204 + ], + "score": 1.0, + "content": "Univ. of Texas, 1992.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 109, + 209, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "Tristan Deleu, Tobias Würfl, Mandana Samiei, Joseph Paul Cohen, and Yoshua Bengio. Torchmeta: A", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 221, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 116, + 221, + 507, + 234 + ], + "score": 1.0, + "content": "Meta-Learning library for PyTorch, 2019. URL https://arxiv.org/abs/1909.06576.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 232, + 352, + 245 + ], + "spans": [ + { + "bbox": [ + 116, + 232, + 352, + 245 + ], + "score": 1.0, + "content": "Available at: https://github.com/tristandeleu/pytorch-meta.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 263 + ], + "score": 1.0, + "content": "Ron Dorfman and Aviv Tamar. Offline meta reinforcement learning. arXiv preprint arXiv:2008.02598,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 261, + 142, + 274 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 142, + 274 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 107, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 107, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "Yan Duan, John Schulman, Xi Chen, Peter L Bartlett, Ilya Sutskever, and Pieter Abbeel. Rl2: Fast", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "reinforcement learning via slow reinforcement learning. arXiv preprint arXiv:1611.02779, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "text", + "bbox": [ + 105, + 309, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "Rasool Fakoor, Pratik Chaudhari, Stefano Soatto, and Alexander J. Smola. Meta-q-learning. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 365, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 365, + 333 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "text", + "bbox": [ + 108, + 338, + 504, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "Chelsea Finn and Sergey Levine. Meta-learning and universality: Deep representations and gra-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "dient descent can approximate any learning algorithm. International Conference on Learning", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 361, + 223, + 373 + ], + "spans": [ + { + "bbox": [ + 115, + 361, + 223, + 373 + ], + "score": 1.0, + "content": "Representations, 10 2018.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 390, + 415, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 390, + 415, + 403 + ], + "score": 1.0, + "content": "deep networks. In International Conference on Machine Learning, 2017a.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 108, + 408, + 506, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Chelsea Finn, Tianhe Yu, Tianhao Zhang, Pieter Abbeel, and Sergey Levine. One-shot visual imitation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 116, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "learning via meta-learning. CoRL, abs/1709.04905, 2017b. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 431, + 181, + 442 + ], + "spans": [ + { + "bbox": [ + 116, + 431, + 181, + 442 + ], + "score": 1.0, + "content": "1709.04905.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 480, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 481, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 481, + 462 + ], + "score": 1.0, + "content": "Chelsea B Finn. Learning to Learn with Gradients. University of California, Berkeley, 2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 105, + 466, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "score": 1.0, + "content": "Scott Fujimoto, Herke Hoof, and David Meger. Addressing function approximation error in actor-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 478, + 484, + 491 + ], + "spans": [ + { + "bbox": [ + 115, + 478, + 484, + 491 + ], + "score": 1.0, + "content": "critic methods. In International Conference on Machine Learning, pages 1582–1591, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 116, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov, editors, Proceedings of the 36th", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 506, + 533 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "Research, pages 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 541, + 415, + 554 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 415, + 554 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v97/fujimoto19a.html.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 108, + 559, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 507, + 572 + ], + "score": 1.0, + "content": "Abhishek Gupta, Russell Mendonca, YuXuan Liu, Pieter Abbeel, and Sergey Levine. Meta-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 116, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "reinforcement learning of structured exploration strategies. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 581, + 299, + 594 + ], + "spans": [ + { + "bbox": [ + 115, + 581, + 299, + 594 + ], + "score": 1.0, + "content": "Processing Systems, pages 5302–5311, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 362, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 363, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 363, + 613 + ], + "score": 1.0, + "content": "David Ha, Andrew Dai, and Quoc V. Le. Hypernetworks, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 617, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maxi-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "mum entropy deep reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 639, + 142, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 142, + 651 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "Rein Houthooft, Yuhua Chen, Phillip Isola, Bradly Stadie, Filip Wolski, OpenAI Jonathan Ho, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "score": 1.0, + "content": "Pieter Abbeel. Evolved policy gradients. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 681, + 217, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 217, + 691 + ], + "score": 1.0, + "content": "pages 5400–5409, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Jan Humplik, Alexandre Galashov, Leonard Hasenclever, Pedro A Ortega, Yee Whye Teh, and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "Nicolas Heess. Meta reinforcement learning as task inference. arXiv preprint arXiv:1905.06424,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "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": [ + 107, + 100, + 504, + 123 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 505, + 113 + ], + "score": 1.0, + "content": "Rishabh Agarwal, Dale Schuurmans, and Mohammad Norouzi. An optimistic perspective on offline", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 110, + 444, + 124 + ], + "spans": [ + { + "bbox": [ + 115, + 110, + 444, + 124 + ], + "score": 1.0, + "content": "reinforcement learning. In International Conference on Machine Learning, 2020.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 99, + 505, + 124 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 129, + 506, + 162 + ], + "lines": [ + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "spans": [ + { + "bbox": [ + 105, + 128, + 506, + 142 + ], + "score": 1.0, + "content": "Sarah Bechtle, Artem Molchanov, Yevgen Chebotar, Edward Grefenstette, Ludovic Righetti, Gaurav", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 140, + 506, + 153 + ], + "spans": [ + { + "bbox": [ + 116, + 140, + 506, + 153 + ], + "score": 1.0, + "content": "Sukhatme, and Franziska Meier. Meta-learning via learned loss. arXiv preprint arXiv:1906.05374,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 150, + 143, + 164 + ], + "spans": [ + { + "bbox": [ + 115, + 150, + 143, + 164 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 128, + 506, + 164 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 169, + 505, + 203 + ], + "lines": [ + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 169, + 505, + 183 + ], + "score": 1.0, + "content": "Samy Bengio, Yoshua Bengio, Jocelyn Cloutier, and Jan Gecsei. On the optimization of a synaptic", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 181, + 506, + 193 + ], + "spans": [ + { + "bbox": [ + 116, + 181, + 506, + 193 + ], + "score": 1.0, + "content": "learning rule. In Preprints Conf. Optimality in Artificial and Biological Neural Networks, volume 2.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 192, + 204, + 204 + ], + "spans": [ + { + "bbox": [ + 116, + 192, + 204, + 204 + ], + "score": 1.0, + "content": "Univ. of Texas, 1992.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 106, + 169, + 506, + 204 + ] + }, + { + "type": "text", + "bbox": [ + 109, + 209, + 505, + 244 + ], + "lines": [ + { + "bbox": [ + 106, + 209, + 505, + 223 + ], + "spans": [ + { + "bbox": [ + 106, + 209, + 505, + 223 + ], + "score": 1.0, + "content": "Tristan Deleu, Tobias Würfl, Mandana Samiei, Joseph Paul Cohen, and Yoshua Bengio. Torchmeta: A", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 116, + 221, + 507, + 234 + ], + "spans": [ + { + "bbox": [ + 116, + 221, + 507, + 234 + ], + "score": 1.0, + "content": "Meta-Learning library for PyTorch, 2019. URL https://arxiv.org/abs/1909.06576.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 232, + 352, + 245 + ], + "spans": [ + { + "bbox": [ + 116, + 232, + 352, + 245 + ], + "score": 1.0, + "content": "Available at: https://github.com/tristandeleu/pytorch-meta.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 209, + 507, + 245 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 250, + 505, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 249, + 506, + 263 + ], + "spans": [ + { + "bbox": [ + 105, + 249, + 506, + 263 + ], + "score": 1.0, + "content": "Ron Dorfman and Aviv Tamar. Offline meta reinforcement learning. arXiv preprint arXiv:2008.02598,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 261, + 142, + 274 + ], + "spans": [ + { + "bbox": [ + 115, + 261, + 142, + 274 + ], + "score": 1.0, + "content": "2020.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 249, + 506, + 274 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 279, + 504, + 303 + ], + "lines": [ + { + "bbox": [ + 107, + 280, + 506, + 293 + ], + "spans": [ + { + "bbox": [ + 107, + 280, + 506, + 293 + ], + "score": 1.0, + "content": "Yan Duan, John Schulman, Xi Chen, Peter L Bartlett, Ilya Sutskever, and Pieter Abbeel. Rl2: Fast", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 291, + 505, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 291, + 505, + 303 + ], + "score": 1.0, + "content": "reinforcement learning via slow reinforcement learning. arXiv preprint arXiv:1611.02779, 2016.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 107, + 280, + 506, + 303 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 309, + 504, + 333 + ], + "lines": [ + { + "bbox": [ + 106, + 308, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 106, + 308, + 505, + 322 + ], + "score": 1.0, + "content": "Rasool Fakoor, Pratik Chaudhari, Stefano Soatto, and Alexander J. Smola. Meta-q-learning. In", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 320, + 365, + 333 + ], + "spans": [ + { + "bbox": [ + 115, + 320, + 365, + 333 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 106, + 308, + 505, + 333 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 338, + 504, + 372 + ], + "lines": [ + { + "bbox": [ + 106, + 338, + 506, + 352 + ], + "spans": [ + { + "bbox": [ + 106, + 338, + 506, + 352 + ], + "score": 1.0, + "content": "Chelsea Finn and Sergey Levine. Meta-learning and universality: Deep representations and gra-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "dient descent can approximate any learning algorithm. International Conference on Learning", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 361, + 223, + 373 + ], + "spans": [ + { + "bbox": [ + 115, + 361, + 223, + 373 + ], + "score": 1.0, + "content": "Representations, 10 2018.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 338, + 506, + 373 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 378, + 504, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "spans": [ + { + "bbox": [ + 106, + 379, + 505, + 392 + ], + "score": 1.0, + "content": "Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adaptation of", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 390, + 415, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 390, + 415, + 403 + ], + "score": 1.0, + "content": "deep networks. In International Conference on Machine Learning, 2017a.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 379, + 505, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 408, + 506, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 421 + ], + "score": 1.0, + "content": "Chelsea Finn, Tianhe Yu, Tianhao Zhang, Pieter Abbeel, and Sergey Levine. One-shot visual imitation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 419, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 116, + 419, + 505, + 431 + ], + "score": 1.0, + "content": "learning via meta-learning. CoRL, abs/1709.04905, 2017b. URL http://arxiv.org/abs/", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 431, + 181, + 442 + ], + "spans": [ + { + "bbox": [ + 116, + 431, + 181, + 442 + ], + "score": 1.0, + "content": "1709.04905.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 408, + 505, + 442 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 480, + 461 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 481, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 481, + 462 + ], + "score": 1.0, + "content": "Chelsea B Finn. Learning to Learn with Gradients. University of California, Berkeley, 2018.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 447, + 481, + 462 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 466, + 505, + 491 + ], + "lines": [ + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 506, + 480 + ], + "score": 1.0, + "content": "Scott Fujimoto, Herke Hoof, and David Meger. Addressing function approximation error in actor-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 115, + 478, + 484, + 491 + ], + "spans": [ + { + "bbox": [ + 115, + 478, + 484, + 491 + ], + "score": 1.0, + "content": "critic methods. In International Conference on Machine Learning, pages 1582–1591, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 466, + 506, + 491 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 496, + 505, + 553 + ], + "lines": [ + { + "bbox": [ + 106, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "Scott Fujimoto, David Meger, and Doina Precup. Off-policy deep reinforcement learning without", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 507, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 116, + 507, + 505, + 520 + ], + "score": 1.0, + "content": "exploration. In Kamalika Chaudhuri and Ruslan Salakhutdinov, editors, Proceedings of the 36th", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 516, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 115, + 516, + 506, + 533 + ], + "score": 1.0, + "content": "International Conference on Machine Learning, volume 97 of Proceedings of Machine Learning", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 529, + 506, + 541 + ], + "spans": [ + { + "bbox": [ + 115, + 529, + 506, + 541 + ], + "score": 1.0, + "content": "Research, pages 2052–2062, Long Beach, California, USA, 09–15 Jun 2019. PMLR. URL", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 541, + 415, + 554 + ], + "spans": [ + { + "bbox": [ + 115, + 541, + 415, + 554 + ], + "score": 1.0, + "content": "http://proceedings.mlr.press/v97/fujimoto19a.html.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 496, + 506, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 559, + 505, + 593 + ], + "lines": [ + { + "bbox": [ + 105, + 558, + 507, + 572 + ], + "spans": [ + { + "bbox": [ + 105, + 558, + 507, + 572 + ], + "score": 1.0, + "content": "Abhishek Gupta, Russell Mendonca, YuXuan Liu, Pieter Abbeel, and Sergey Levine. Meta-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 570, + 505, + 582 + ], + "spans": [ + { + "bbox": [ + 116, + 570, + 505, + 582 + ], + "score": 1.0, + "content": "reinforcement learning of structured exploration strategies. In Advances in Neural Information", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 581, + 299, + 594 + ], + "spans": [ + { + "bbox": [ + 115, + 581, + 299, + 594 + ], + "score": 1.0, + "content": "Processing Systems, pages 5302–5311, 2018.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 558, + 507, + 594 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 362, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 363, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 363, + 613 + ], + "score": 1.0, + "content": "David Ha, Andrew Dai, and Quoc V. Le. Hypernetworks, 2016.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 598, + 363, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 617, + 505, + 651 + ], + "lines": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 506, + 630 + ], + "score": 1.0, + "content": "Tuomas Haarnoja, Aurick Zhou, Pieter Abbeel, and Sergey Levine. Soft actor-critic: Off-policy maxi-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 629, + 506, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 629, + 506, + 641 + ], + "score": 1.0, + "content": "mum entropy deep reinforcement learning with a stochastic actor. arXiv preprint arXiv:1801.01290,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 639, + 142, + 651 + ], + "spans": [ + { + "bbox": [ + 115, + 639, + 142, + 651 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 618, + 506, + 651 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 657, + 505, + 691 + ], + "lines": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "spans": [ + { + "bbox": [ + 105, + 657, + 506, + 671 + ], + "score": 1.0, + "content": "Rein Houthooft, Yuhua Chen, Phillip Isola, Bradly Stadie, Filip Wolski, OpenAI Jonathan Ho, and", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "spans": [ + { + "bbox": [ + 115, + 668, + 507, + 683 + ], + "score": 1.0, + "content": "Pieter Abbeel. Evolved policy gradients. In Advances in Neural Information Processing Systems,", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 681, + 217, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 681, + 217, + 691 + ], + "score": 1.0, + "content": "pages 5400–5409, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 657, + 507, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 699, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "Jan Humplik, Alexandre Galashov, Leonard Hasenclever, Pedro A Ortega, Yee Whye Teh, and", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 507, + 722 + ], + "score": 1.0, + "content": "Nicolas Heess. Meta reinforcement learning as task inference. arXiv preprint arXiv:1905.06424,", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 142, + 732 + ], + "score": 1.0, + "content": "2019.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45, + "bbox_fs": [ + 106, + 699, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 431, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 431, + 117 + ], + "score": 1.0, + "content": "implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 506, + 168 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "score": 1.0, + "content": "Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Yoshua", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "score": 1.0, + "content": "Bengio and Yann LeCun, editors, 3rd International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 506, + 159 + ], + "score": 1.0, + "content": "ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 157, + 301, + 169 + ], + "spans": [ + { + "bbox": [ + 116, + 157, + 301, + 169 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1412.6980.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 506, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Louis Kirsch, Sjoerd van Steenkiste, and Juergen Schmidhuber. Improving generalization in meta", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 507, + 200 + ], + "score": 1.0, + "content": "reinforcement learning using learned objectives. In International Conference on Learning Repre-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 198, + 471, + 210 + ], + "spans": [ + { + "bbox": [ + 116, + 198, + 400, + 210 + ], + "score": 1.0, + "content": "sentations, 2020a. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 401, + 199, + 407, + 208 + ], + "score": 0.31, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 198, + 471, + 210 + ], + "score": 1.0, + "content": "S1evHerYPr.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "score": 1.0, + "content": "Louis Kirsch, Sjoerd van Steenkiste, and Jurgen Schmidhuber. Improving generalization in meta-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 228, + 368, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 228, + 368, + 240 + ], + "score": 1.0, + "content": "reinforcement learning using learned objectives. ICLR, 2020b.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 262 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "q-learning via bootstrapping error reduction. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 270, + 267, + 282 + ], + "spans": [ + { + "bbox": [ + 116, + 270, + 267, + 282 + ], + "score": 1.0, + "content": "Systems, pages 11761–11771, 2019a.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 303 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 300, + 508, + 312 + ], + "spans": [ + { + "bbox": [ + 116, + 300, + 508, + 312 + ], + "score": 1.0, + "content": "via bootstrapping error reduction. NeurIPS, 2019b. URL http://arxiv.org/abs/1906.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 311, + 152, + 322 + ], + "spans": [ + { + "bbox": [ + 116, + 311, + 152, + 322 + ], + "score": 1.0, + "content": "00949.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 330, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 343 + ], + "score": 1.0, + "content": "B. M. Lake, R. Salakhutdinov, and J. B. Tenenbaum. Human-level concept learning through proba-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 341, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 116, + 341, + 507, + 353 + ], + "score": 1.0, + "content": "bilistic program induction. Science, 350(6266):1332–1338, December 2015. doi: 10.1126/science.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 352, + 417, + 364 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 417, + 364 + ], + "score": 1.0, + "content": "aab3050. URL https://doi.org/10.1126/science.aab3050.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 105, + 370, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 382, + 455, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 455, + 394 + ], + "score": 1.0, + "content": "review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 504, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 504, + 414 + ], + "score": 1.0, + "content": "Russell Mendonca, Abhishek Gupta, Rosen Kralev, Pieter Abbeel, Sergey Levine, and Chelsea", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 411, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 505, + 426 + ], + "score": 1.0, + "content": "Finn. Guided meta-policy search. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 423, + 192, + 435 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 192, + 435 + ], + "score": 1.0, + "content": "9653–9664, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 105, + 442, + 503, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Nikhil Mishra, Mostafa Rohaninejad, Xi Chen, and Pieter Abbeel. Meta-learning with temporal", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 454, + 277, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 454, + 277, + 465 + ], + "score": 1.0, + "content": "convolutions. arXiv:1707.03141, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "Anusha Nagabandi, Ignasi Clavera, Simin Liu, Ronald S Fearing, Pieter Abbeel, Sergey Levine, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 116, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Chelsea Finn. Learning to adapt in dynamic, real-world environments through meta-reinforcement", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 495, + 434, + 509 + ], + "spans": [ + { + "bbox": [ + 116, + 495, + 434, + 509 + ], + "score": 1.0, + "content": "learning. International Conference on Learning Representations (ICLR), 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 528 + ], + "score": 1.0, + "content": "Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 525, + 261, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 261, + 537 + ], + "score": 1.0, + "content": "learning with offline datasets, 2020.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 504, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 558 + ], + "score": 1.0, + "content": "Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression:", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 555, + 362, + 568 + ], + "spans": [ + { + "bbox": [ + 116, + 555, + 362, + 568 + ], + "score": 1.0, + "content": "Simple and scalable off-policy reinforcement learning, 2019.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 506, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for op-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 116, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "erational space control. In Proceedings of the 24th International Conference on Machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "score": 1.0, + "content": "Learning, ICML ’07, page 745–750, New York, NY, USA, 2007. Association for Comput-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 606, + 508, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 508, + 622 + ], + "score": 1.0, + "content": "ing Machinery. ISBN 9781595937933. doi: 10.1145/1273496.1273590. URL https:", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 619, + 318, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 619, + 318, + 631 + ], + "score": 1.0, + "content": "//doi.org/10.1145/1273496.1273590.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 105, + 637, + 504, + 661 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with implicit", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 649, + 473, + 662 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 473, + 662 + ], + "score": 1.0, + "content": "gradients. In Advances in Neural Information Processing Systems, pages 113–124, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "score": 1.0, + "content": "Kate Rakelly, Aurick Zhou, Deirdre Quillen, Chelsea Finn, and Sergey Levine. Efficient off-policy", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "score": 1.0, + "content": "meta-reinforcement learning via probabilistic context variables. In International Conference on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 690, + 220, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 220, + 703 + ], + "score": 1.0, + "content": "Machine Learning, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Jonas Rothfuss, Dennis Lee, Ignasi Clavera, Tamim Asfour, and Pieter Abbeel. Promp: Proximal", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 360, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 360, + 732 + ], + "score": 1.0, + "content": "meta-policy search. arXiv preprint arXiv:1810.06784, 2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 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": "text", + "bbox": [ + 108, + 82, + 503, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Natasha Jaques, Asma Ghandeharioun, Judy Hanwen Shen, Craig Ferguson, Agata Lapedriza, Noah", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 94, + 505, + 106 + ], + "score": 1.0, + "content": "Jones, Shixiang Gu, and Rosalind Picard. Way off-policy batch deep reinforcement learning of", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 104, + 431, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 104, + 431, + 117 + ], + "score": 1.0, + "content": "implicit human preferences in dialog. arXiv preprint arXiv:1907.00456, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 123, + 506, + 168 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 136 + ], + "score": 1.0, + "content": "Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Yoshua", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "spans": [ + { + "bbox": [ + 115, + 134, + 506, + 147 + ], + "score": 1.0, + "content": "Bengio and Yann LeCun, editors, 3rd International Conference on Learning Representations,", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 146, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 146, + 506, + 159 + ], + "score": 1.0, + "content": "ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 157, + 301, + 169 + ], + "spans": [ + { + "bbox": [ + 116, + 157, + 301, + 169 + ], + "score": 1.0, + "content": "http://arxiv.org/abs/1412.6980.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 124, + 506, + 169 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 506, + 210 + ], + "lines": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 190 + ], + "score": 1.0, + "content": "Louis Kirsch, Sjoerd van Steenkiste, and Juergen Schmidhuber. Improving generalization in meta", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 187, + 507, + 200 + ], + "spans": [ + { + "bbox": [ + 116, + 187, + 507, + 200 + ], + "score": 1.0, + "content": "reinforcement learning using learned objectives. In International Conference on Learning Repre-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 198, + 471, + 210 + ], + "spans": [ + { + "bbox": [ + 116, + 198, + 400, + 210 + ], + "score": 1.0, + "content": "sentations, 2020a. URL https://openreview.net/forum?id", + "type": "text" + }, + { + "bbox": [ + 401, + 199, + 407, + 208 + ], + "score": 0.31, + "content": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 198, + 471, + 210 + ], + "score": 1.0, + "content": "S1evHerYPr.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 175, + 507, + 210 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 217, + 504, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 231 + ], + "score": 1.0, + "content": "Louis Kirsch, Sjoerd van Steenkiste, and Jurgen Schmidhuber. Improving generalization in meta-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 228, + 368, + 240 + ], + "spans": [ + { + "bbox": [ + 115, + 228, + 368, + 240 + ], + "score": 1.0, + "content": "reinforcement learning using learned objectives. ICLR, 2020b.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 215, + 506, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 246, + 505, + 281 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 262 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, Matthew Soh, George Tucker, and Sergey Levine. Stabilizing off-policy", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 258, + 505, + 272 + ], + "spans": [ + { + "bbox": [ + 115, + 258, + 505, + 272 + ], + "score": 1.0, + "content": "q-learning via bootstrapping error reduction. In Advances in Neural Information Processing", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 270, + 267, + 282 + ], + "spans": [ + { + "bbox": [ + 116, + 270, + 267, + 282 + ], + "score": 1.0, + "content": "Systems, pages 11761–11771, 2019a.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 245, + 505, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 288, + 505, + 322 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 506, + 303 + ], + "score": 1.0, + "content": "Aviral Kumar, Justin Fu, George Tucker, and Sergey Levine. Stabilizing off-policy q-learning", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 300, + 508, + 312 + ], + "spans": [ + { + "bbox": [ + 116, + 300, + 508, + 312 + ], + "score": 1.0, + "content": "via bootstrapping error reduction. NeurIPS, 2019b. URL http://arxiv.org/abs/1906.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 311, + 152, + 322 + ], + "spans": [ + { + "bbox": [ + 116, + 311, + 152, + 322 + ], + "score": 1.0, + "content": "00949.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 286, + 508, + 322 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 330, + 505, + 364 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 506, + 343 + ], + "score": 1.0, + "content": "B. M. Lake, R. Salakhutdinov, and J. B. Tenenbaum. Human-level concept learning through proba-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 341, + 507, + 353 + ], + "spans": [ + { + "bbox": [ + 116, + 341, + 507, + 353 + ], + "score": 1.0, + "content": "bilistic program induction. Science, 350(6266):1332–1338, December 2015. doi: 10.1126/science.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 352, + 417, + 364 + ], + "spans": [ + { + "bbox": [ + 116, + 352, + 417, + 364 + ], + "score": 1.0, + "content": "aab3050. URL https://doi.org/10.1126/science.aab3050.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 329, + 507, + 364 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 370, + 505, + 394 + ], + "lines": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 106, + 371, + 506, + 384 + ], + "score": 1.0, + "content": "Sergey Levine, Aviral Kumar, George Tucker, and Justin Fu. Offline reinforcement learning: Tutorial,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 382, + 455, + 394 + ], + "spans": [ + { + "bbox": [ + 115, + 382, + 455, + 394 + ], + "score": 1.0, + "content": "review, and perspectives on open problems. arXiv preprint arXiv:2005.01643, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 371, + 506, + 394 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 401, + 505, + 435 + ], + "lines": [ + { + "bbox": [ + 106, + 400, + 504, + 414 + ], + "spans": [ + { + "bbox": [ + 106, + 400, + 504, + 414 + ], + "score": 1.0, + "content": "Russell Mendonca, Abhishek Gupta, Rosen Kralev, Pieter Abbeel, Sergey Levine, and Chelsea", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 411, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 115, + 411, + 505, + 426 + ], + "score": 1.0, + "content": "Finn. Guided meta-policy search. In Advances in Neural Information Processing Systems, pages", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 423, + 192, + 435 + ], + "spans": [ + { + "bbox": [ + 116, + 423, + 192, + 435 + ], + "score": 1.0, + "content": "9653–9664, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24, + "bbox_fs": [ + 106, + 400, + 505, + 435 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 442, + 503, + 465 + ], + "lines": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 505, + 456 + ], + "score": 1.0, + "content": "Nikhil Mishra, Mostafa Rohaninejad, Xi Chen, and Pieter Abbeel. Meta-learning with temporal", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 116, + 454, + 277, + 465 + ], + "spans": [ + { + "bbox": [ + 116, + 454, + 277, + 465 + ], + "score": 1.0, + "content": "convolutions. arXiv:1707.03141, 2017.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 106, + 443, + 505, + 465 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 472, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 472, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 472, + 506, + 486 + ], + "score": 1.0, + "content": "Anusha Nagabandi, Ignasi Clavera, Simin Liu, Ronald S Fearing, Pieter Abbeel, Sergey Levine, and", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 484, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 116, + 484, + 505, + 496 + ], + "score": 1.0, + "content": "Chelsea Finn. Learning to adapt in dynamic, real-world environments through meta-reinforcement", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 116, + 495, + 434, + 509 + ], + "spans": [ + { + "bbox": [ + 116, + 495, + 434, + 509 + ], + "score": 1.0, + "content": "learning. International Conference on Learning Representations (ICLR), 2019.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 472, + 506, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 514, + 504, + 537 + ], + "lines": [ + { + "bbox": [ + 105, + 513, + 505, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 513, + 505, + 528 + ], + "score": 1.0, + "content": "Ashvin Nair, Murtaza Dalal, Abhishek Gupta, and Sergey Levine. Accelerating online reinforcement", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 525, + 261, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 525, + 261, + 537 + ], + "score": 1.0, + "content": "learning with offline datasets, 2020.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 513, + 505, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 544, + 504, + 567 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 506, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 558 + ], + "score": 1.0, + "content": "Xue Bin Peng, Aviral Kumar, Grace Zhang, and Sergey Levine. Advantage-weighted regression:", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 555, + 362, + 568 + ], + "spans": [ + { + "bbox": [ + 116, + 555, + 362, + 568 + ], + "score": 1.0, + "content": "Simple and scalable off-policy reinforcement learning, 2019.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 542, + 506, + 568 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 574, + 506, + 630 + ], + "lines": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 506, + 588 + ], + "score": 1.0, + "content": "Jan Peters and Stefan Schaal. Reinforcement learning by reward-weighted regression for op-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 116, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "erational space control. In Proceedings of the 24th International Conference on Machine", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "spans": [ + { + "bbox": [ + 115, + 596, + 507, + 610 + ], + "score": 1.0, + "content": "Learning, ICML ’07, page 745–750, New York, NY, USA, 2007. Association for Comput-", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 606, + 508, + 622 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 508, + 622 + ], + "score": 1.0, + "content": "ing Machinery. ISBN 9781595937933. doi: 10.1145/1273496.1273590. URL https:", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 116, + 619, + 318, + 631 + ], + "spans": [ + { + "bbox": [ + 116, + 619, + 318, + 631 + ], + "score": 1.0, + "content": "//doi.org/10.1145/1273496.1273590.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 573, + 508, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 637, + 504, + 661 + ], + "lines": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "Aravind Rajeswaran, Chelsea Finn, Sham M Kakade, and Sergey Levine. Meta-learning with implicit", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 649, + 473, + 662 + ], + "spans": [ + { + "bbox": [ + 115, + 649, + 473, + 662 + ], + "score": 1.0, + "content": "gradients. In Advances in Neural Information Processing Systems, pages 113–124, 2019.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40.5, + "bbox_fs": [ + 106, + 637, + 505, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 668, + 504, + 702 + ], + "lines": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 505, + 682 + ], + "score": 1.0, + "content": "Kate Rakelly, Aurick Zhou, Deirdre Quillen, Chelsea Finn, and Sergey Levine. Efficient off-policy", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 116, + 680, + 505, + 692 + ], + "score": 1.0, + "content": "meta-reinforcement learning via probabilistic context variables. In International Conference on", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 690, + 220, + 703 + ], + "spans": [ + { + "bbox": [ + 115, + 690, + 220, + 703 + ], + "score": 1.0, + "content": "Machine Learning, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 43, + "bbox_fs": [ + 105, + 667, + 505, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Jonas Rothfuss, Dennis Lee, Ignasi Clavera, Tamim Asfour, and Pieter Abbeel. Promp: Proximal", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 115, + 721, + 360, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 360, + 732 + ], + "score": 1.0, + "content": "meta-policy search. arXiv preprint arXiv:1810.06784, 2018.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 45.5, + "bbox_fs": [ + 106, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 506, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 507, + 95 + ], + "score": 1.0, + "content": "Andrei A. Rusu, Dushyant Rao, Jakub Sygnowski, Oriol Vinyals, Razvan Pascanu, Simon Osindero,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "and Raia Hadsell. Meta-learning with latent embedding optimization. In International Confer-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "ence on Learning Representations, 2019. URL https://openreview.net/forum?id=", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 116, + 181, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 116, + 181, + 127 + ], + "score": 1.0, + "content": "BJgklhAcK7.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 105, + 133, + 504, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 149 + ], + "score": 1.0, + "content": "Steindór Sæmundsson, Katja Hofmann, and Marc Peter Deisenroth. Meta reinforcement learning", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 438, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 438, + 157 + ], + "score": 1.0, + "content": "with latent variable gaussian processes. arXiv preprint arXiv:1803.07551, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. Evolutionary principles in self-referential learning. On learning how to learn:", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 492, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 492, + 187 + ], + "score": 1.0, + "content": "The meta-meta-... hook.) Diploma thesis, Institut f. Informatik, Tech. Univ. Munich, 1:2, 1987.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 216 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 507, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 507, + 208 + ], + "score": 1.0, + "content": "Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 205, + 231, + 217 + ], + "spans": [ + { + "bbox": [ + 115, + 205, + 231, + 217 + ], + "score": 1.0, + "content": "pages 3–17. Springer, 1998.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 506, + 280 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 238 + ], + "score": 1.0, + "content": "Oriol Vinyals, Charles Blundell, Timothy Lillicrap, koray kavukcuoglu, and Daan Wierstra. Matching", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 115, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "networks for one shot learning. In D. Lee, M. Sugiyama, U. Luxburg, I. Guyon, and R. Garnett,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 246, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 116, + 246, + 506, + 258 + ], + "score": 1.0, + "content": "editors, Advances in Neural Information Processing Systems, volume 29, pages 3630–3638. Cur-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 256, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 256, + 506, + 270 + ], + "score": 1.0, + "content": "ran Associates, Inc., 2016. URL https://proceedings.neurips.cc/paper/2016/", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 267, + 403, + 280 + ], + "spans": [ + { + "bbox": [ + 116, + 267, + 403, + 280 + ], + "score": 1.0, + "content": "file/90e1357833654983612fb05e3ec9148c-Paper.pdf.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 320 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 507, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 507, + 300 + ], + "score": 1.0, + "content": "Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 298, + 504, + 309 + ], + "spans": [ + { + "bbox": [ + 117, + 298, + 504, + 309 + ], + "score": 1.0, + "content": "Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 309, + 254, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 254, + 320 + ], + "score": 1.0, + "content": "preprint arXiv:1611.05763, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 504, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 342 + ], + "score": 1.0, + "content": "Yifan Wu, George Tucker, and Ofir Nachum. Behavior regularized offline reinforcement learning.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 338, + 279, + 351 + ], + "spans": [ + { + "bbox": [ + 116, + 338, + 279, + 351 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1911.11361, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 107, + 358, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 107, + 358, + 505, + 369 + ], + "score": 1.0, + "content": "Yuhuai Wu, Mengye Ren, Renjie Liao, and Roger Grosse. Understanding short-horizon bias in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 369, + 399, + 380 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 399, + 380 + ], + "score": 1.0, + "content": "stochastic meta-optimization. arXiv preprint arXiv:1803.02021, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 107, + 388, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 107, + 388, + 506, + 399 + ], + "score": 1.0, + "content": "Yuxiang Yang, Ken Caluwaerts, Atil Iscen, Jie Tan, and Chelsea Finn. Norml: No-reward meta", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 398, + 507, + 410 + ], + "spans": [ + { + "bbox": [ + 115, + 398, + 507, + 410 + ], + "score": 1.0, + "content": "learning. In Proceedings of the 18th International Conference on Autonomous Agents and MultiA-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "gent Systems, pages 323–331. International Foundation for Autonomous Agents and Multiagent", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 420, + 180, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 180, + 433 + ], + "score": 1.0, + "content": "Systems, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 504, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 453 + ], + "score": 1.0, + "content": "Tianhe Yu, Deirdre Quillen, Zhanpeng He, Ryan Julian, Karol Hausman, Chelsea Finn, and Sergey", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 449, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 115, + 449, + 506, + 463 + ], + "score": 1.0, + "content": "Levine. Meta-world: A benchmark and evaluation for multi-task and meta reinforcement learning.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 461, + 281, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 281, + 473 + ], + "score": 1.0, + "content": "In Conference on Robot Learning, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 504, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Luisa Zintgraf, Kyriacos Shiarlis, Maximilian Igl, Sebastian Schulze, Yarin Gal, Katja Hofmann, and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 117, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "Shimon Whiteson. Varibad: A very good method for bayes-adaptive deep rl via meta-learning. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 502, + 364, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 502, + 364, + 514 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Luisa M Zintgraf, Kyriacos Shiarlis, Vitaly Kurin, Katja Hofmann, and Shimon Whiteson. Fast", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 532, + 498, + 545 + ], + "spans": [ + { + "bbox": [ + 116, + 532, + 498, + 545 + ], + "score": 1.0, + "content": "context adaptation via meta-learning. In International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 506, + 126 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 507, + 95 + ], + "score": 1.0, + "content": "Andrei A. Rusu, Dushyant Rao, Jakub Sygnowski, Oriol Vinyals, Razvan Pascanu, Simon Osindero,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 94, + 506, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 94, + 506, + 106 + ], + "score": 1.0, + "content": "and Raia Hadsell. Meta-learning with latent embedding optimization. In International Confer-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 114, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "ence on Learning Representations, 2019. URL https://openreview.net/forum?id=", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 116, + 181, + 127 + ], + "spans": [ + { + "bbox": [ + 115, + 116, + 181, + 127 + ], + "score": 1.0, + "content": "BJgklhAcK7.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 507, + 127 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 133, + 504, + 157 + ], + "lines": [ + { + "bbox": [ + 105, + 133, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 133, + 505, + 149 + ], + "score": 1.0, + "content": "Steindór Sæmundsson, Katja Hofmann, and Marc Peter Deisenroth. Meta reinforcement learning", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 145, + 438, + 157 + ], + "spans": [ + { + "bbox": [ + 115, + 145, + 438, + 157 + ], + "score": 1.0, + "content": "with latent variable gaussian processes. arXiv preprint arXiv:1803.07551, 2018.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 133, + 505, + 157 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 163, + 503, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 505, + 177 + ], + "score": 1.0, + "content": "Jurgen Schmidhuber. Evolutionary principles in self-referential learning. On learning how to learn:", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 115, + 174, + 492, + 187 + ], + "spans": [ + { + "bbox": [ + 115, + 174, + 492, + 187 + ], + "score": 1.0, + "content": "The meta-meta-... hook.) Diploma thesis, Institut f. Informatik, Tech. Univ. Munich, 1:2, 1987.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 163, + 505, + 187 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 194, + 505, + 216 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 507, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 507, + 208 + ], + "score": 1.0, + "content": "Sebastian Thrun and Lorien Pratt. Learning to learn: Introduction and overview. In Learning to learn,", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 115, + 205, + 231, + 217 + ], + "spans": [ + { + "bbox": [ + 115, + 205, + 231, + 217 + ], + "score": 1.0, + "content": "pages 3–17. Springer, 1998.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 192, + 507, + 217 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 223, + 506, + 280 + ], + "lines": [ + { + "bbox": [ + 105, + 222, + 505, + 238 + ], + "spans": [ + { + "bbox": [ + 105, + 222, + 505, + 238 + ], + "score": 1.0, + "content": "Oriol Vinyals, Charles Blundell, Timothy Lillicrap, koray kavukcuoglu, and Daan Wierstra. Matching", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 234, + 506, + 248 + ], + "spans": [ + { + "bbox": [ + 115, + 234, + 506, + 248 + ], + "score": 1.0, + "content": "networks for one shot learning. In D. Lee, M. Sugiyama, U. Luxburg, I. Guyon, and R. Garnett,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 246, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 116, + 246, + 506, + 258 + ], + "score": 1.0, + "content": "editors, Advances in Neural Information Processing Systems, volume 29, pages 3630–3638. Cur-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 256, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 115, + 256, + 506, + 270 + ], + "score": 1.0, + "content": "ran Associates, Inc., 2016. URL https://proceedings.neurips.cc/paper/2016/", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 267, + 403, + 280 + ], + "spans": [ + { + "bbox": [ + 116, + 267, + 403, + 280 + ], + "score": 1.0, + "content": "file/90e1357833654983612fb05e3ec9148c-Paper.pdf.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 222, + 506, + 280 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 286, + 505, + 320 + ], + "lines": [ + { + "bbox": [ + 105, + 286, + 507, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 507, + 300 + ], + "score": 1.0, + "content": "Jane X Wang, Zeb Kurth-Nelson, Dhruva Tirumala, Hubert Soyer, Joel Z Leibo, Remi Munos,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 117, + 298, + 504, + 309 + ], + "spans": [ + { + "bbox": [ + 117, + 298, + 504, + 309 + ], + "score": 1.0, + "content": "Charles Blundell, Dharshan Kumaran, and Matt Botvinick. Learning to reinforcement learn. arXiv", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 309, + 254, + 320 + ], + "spans": [ + { + "bbox": [ + 115, + 309, + 254, + 320 + ], + "score": 1.0, + "content": "preprint arXiv:1611.05763, 2016.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 286, + 507, + 320 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 327, + 504, + 350 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 342 + ], + "score": 1.0, + "content": "Yifan Wu, George Tucker, and Ofir Nachum. Behavior regularized offline reinforcement learning.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 116, + 338, + 279, + 351 + ], + "spans": [ + { + "bbox": [ + 116, + 338, + 279, + 351 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1911.11361, 2019.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18.5, + "bbox_fs": [ + 105, + 325, + 506, + 351 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 357, + 505, + 380 + ], + "lines": [ + { + "bbox": [ + 107, + 358, + 505, + 369 + ], + "spans": [ + { + "bbox": [ + 107, + 358, + 505, + 369 + ], + "score": 1.0, + "content": "Yuhuai Wu, Mengye Ren, Renjie Liao, and Roger Grosse. Understanding short-horizon bias in", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 115, + 369, + 399, + 380 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 399, + 380 + ], + "score": 1.0, + "content": "stochastic meta-optimization. arXiv preprint arXiv:1803.02021, 2018.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 107, + 358, + 505, + 380 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 387, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 107, + 388, + 506, + 399 + ], + "spans": [ + { + "bbox": [ + 107, + 388, + 506, + 399 + ], + "score": 1.0, + "content": "Yuxiang Yang, Ken Caluwaerts, Atil Iscen, Jie Tan, and Chelsea Finn. Norml: No-reward meta", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 398, + 507, + 410 + ], + "spans": [ + { + "bbox": [ + 115, + 398, + 507, + 410 + ], + "score": 1.0, + "content": "learning. In Proceedings of the 18th International Conference on Autonomous Agents and MultiA-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 115, + 410, + 506, + 422 + ], + "score": 1.0, + "content": "gent Systems, pages 323–331. International Foundation for Autonomous Agents and Multiagent", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 420, + 180, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 180, + 433 + ], + "score": 1.0, + "content": "Systems, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 23.5, + "bbox_fs": [ + 107, + 388, + 507, + 433 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 439, + 504, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 506, + 453 + ], + "score": 1.0, + "content": "Tianhe Yu, Deirdre Quillen, Zhanpeng He, Ryan Julian, Karol Hausman, Chelsea Finn, and Sergey", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 449, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 115, + 449, + 506, + 463 + ], + "score": 1.0, + "content": "Levine. Meta-world: A benchmark and evaluation for multi-task and meta reinforcement learning.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 461, + 281, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 281, + 473 + ], + "score": 1.0, + "content": "In Conference on Robot Learning, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 105, + 437, + 506, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 504, + 514 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 493 + ], + "score": 1.0, + "content": "Luisa Zintgraf, Kyriacos Shiarlis, Maximilian Igl, Sebastian Schulze, Yarin Gal, Katja Hofmann, and", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 117, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "Shimon Whiteson. Varibad: A very good method for bayes-adaptive deep rl via meta-learning. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 116, + 502, + 364, + 514 + ], + "spans": [ + { + "bbox": [ + 116, + 502, + 364, + 514 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2020.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 479, + 506, + 514 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 520, + 504, + 544 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Luisa M Zintgraf, Kyriacos Shiarlis, Vitaly Kurin, Katja Hofmann, and Shimon Whiteson. Fast", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 532, + 498, + 545 + ], + "spans": [ + { + "bbox": [ + 116, + 532, + 498, + 545 + ], + "score": 1.0, + "content": "context adaptation via meta-learning. In International Conference on Machine Learning, 2019.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 520, + 505, + 545 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 167, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 170, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 170, + 97 + ], + "score": 1.0, + "content": "Appendix", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 101, + 432, + 114 + ], + "lines": [ + { + "bbox": [ + 106, + 101, + 434, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 434, + 115 + ], + "score": 1.0, + "content": "A MACAW AUXILIARY LOSS AND UPDATE EXPRESSIVENESS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 241 + ], + "lines": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "score": 1.0, + "content": "Finn and Levine (2018) lay out conditions under which the MAML update procedure is universal, in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 130, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 294, + 144 + ], + "score": 1.0, + "content": "the sense that it can approximate any function", + "type": "text" + }, + { + "bbox": [ + 294, + 131, + 340, + 143 + ], + "score": 0.93, + "content": "f ( \\mathbf { x } , \\mathbf { y } , \\mathbf { x } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 130, + 506, + 144 + ], + "score": 1.0, + "content": "arbitrarily well (given enough capacity),", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 132, + 155 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 144, + 140, + 152 + ], + "score": 0.34, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 141, + 377, + 155 + ], + "score": 1.0, + "content": "and y are the support set inputs and labels, respectively, and", + "type": "text" + }, + { + "bbox": [ + 377, + 142, + 389, + 152 + ], + "score": 0.87, + "content": "\\mathbf { x } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "is the test input. Universality", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 153, + 506, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 166 + ], + "score": 1.0, + "content": "in this sense is an attractive property because it implies that the update is expressive enough to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "score": 1.0, + "content": "approximate any update procedure; a method that does not possess the universality property might", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "be limited in its asymptotic post-adaptation performance because it cannot express (or closely", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "approximate) the true optimal update procedure. In order for the MAML update procedure to be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "universal, several requirements of the network architecture, hyperparameters, and loss function must", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "be satisfied. Most of these are not method-specific in that they stipulate minimum network depth,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 231 + ], + "score": 1.0, + "content": "activation functions, and non-zero learning rate for any neural network. However, the condition placed", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 230, + 497, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 497, + 241 + ], + "score": 1.0, + "content": "on the loss function require more careful treatment. The requirement is described in Definition 1.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 104, + 243, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Definition 1. A loss function is ‘universal’ if the gradient of the loss with respect to the prediction(s)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 363, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 363, + 267 + ], + "score": 1.0, + "content": "is an invertible function of the label(s) used to compute the loss.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "We note that Definition 1 is a necessary but not sufficient condition for an update procedure to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "universal (see other conditions above and Finn and Levine (2018)). For the AWR loss function", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "(copied below from Equation 1 with minor changes), the labels are the ground truth action a and the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 307, + 284, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 209, + 321 + ], + "score": 1.0, + "content": "corresponding advantage", + "type": "text" + }, + { + "bbox": [ + 209, + 307, + 279, + 320 + ], + "score": 0.92, + "content": "\\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 307, + 284, + 321 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5 + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 322, + 436, + 350 + ], + "lines": [ + { + "bbox": [ + 173, + 322, + 436, + 350 + ], + "spans": [ + { + "bbox": [ + 173, + 322, + 436, + 350 + ], + "score": 0.92, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta , \\phi _ { i } ^ { \\prime } ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) \\right)", + "type": "interline_equation", + "image_path": "b9f96e0e46c5a961764182af63d8b231fbe5c8955b2c36cd857e6a4651cf77ab.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 173, + 322, + 436, + 331.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 173, + 331.3333333333333, + 436, + 340.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 173, + 340.66666666666663, + 436, + 349.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 351, + 504, + 374 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "For simplicity and without loss of generality (see Finn and Levine (2018), Sections 4 & 5), we will", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 362, + 413, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 413, + 375 + ], + "score": 1.0, + "content": "consider the loss for only a single sample, rather than averaged over a batch.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 378, + 505, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "In the remainder of this section, we first state in Theorem 1 that the standard AWR policy loss", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "function does not satisfy the condition for universality described in Definition 1. The proof is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "by a simple counterexample. Next, we state in Theorem 2 that the MACAW auxiliary loss does", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "satisfy the universality condition, enabling a universal update procedure given the other generic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "universality conditions are satisfied (note that the MACAW value function loss satisfies the condition", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 434, + 387, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 387, + 446 + ], + "score": 1.0, + "content": "in Definition 1 because it uses L2 regression Finn and Levine (2018)).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 108, + 450, + 422, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 423, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 423, + 464 + ], + "score": 1.0, + "content": "A.1 NON-UNIVERSALITY OF STANDARD AWR POLICY LOSS FUNCTION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "Intuitively, the AWR gradient does not satisfy the invertibility condition because it does not distinguish", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "between a small error in the predicted action that has a large corresponding advantage weight and a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 489, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 504 + ], + "score": 1.0, + "content": "large error in the predicted action (in the same direction) that has a small corresponding advantage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 501, + 337, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 337, + 513 + ], + "score": 1.0, + "content": "weight. The following theorem formalizes this statement.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 443, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 446, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 252, + 529 + ], + "score": 1.0, + "content": "Theorem 1. The AWR loss function", + "type": "text" + }, + { + "bbox": [ + 252, + 514, + 275, + 525 + ], + "score": 0.89, + "content": "\\mathcal { L } ^ { A W R }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 511, + 446, + 529 + ], + "score": 1.0, + "content": "is not universal according to Definition 1.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 104, + 532, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 440, + 548 + ], + "score": 1.0, + "content": "The proof is by counterexample; we will show that there exist different sets of labels", + "type": "text" + }, + { + "bbox": [ + 440, + 534, + 504, + 547 + ], + "score": 0.91, + "content": "\\{ \\mathbf { a } _ { 1 } , A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 124, + 559 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 545, + 188, + 558 + ], + "score": 0.93, + "content": "\\{ \\mathbf { a } _ { 2 } , A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 543, + 505, + 559 + ], + "score": 1.0, + "content": "that produce the same gradient for some output of the model. First, rewriting", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 557, + 335, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 173, + 570 + ], + "score": 1.0, + "content": "Equation 7 with", + "type": "text" + }, + { + "bbox": [ + 173, + 557, + 295, + 570 + ], + "score": 0.91, + "content": "A ( \\mathbf { s } , \\mathbf { a } ) = \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 557, + 335, + 570 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 572, + 401, + 600 + ], + "lines": [ + { + "bbox": [ + 210, + 572, + 401, + 600 + ], + "spans": [ + { + "bbox": [ + 210, + 572, + 401, + 600 + ], + "score": 0.93, + "content": "{ \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right)", + "type": "interline_equation", + "image_path": "3813254089b2ff7fb4eb079eaad12e525c4a78894cefb5281bd6dc2aeca61998.jpg" + } + ] + } + ], + "index": 39.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 572, + 401, + 586.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 210, + 586.0, + 401, + 600.0 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 608, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 430, + 622 + ], + "score": 1.0, + "content": "Because our policy is parameterized as a Gaussian with fixed diagonal covariance", + "type": "text" + }, + { + "bbox": [ + 431, + 608, + 448, + 619 + ], + "score": 0.88, + "content": "\\sigma ^ { 2 } I", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 607, + 505, + 622 + ], + "score": 1.0, + "content": ", we can again", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 620, + 183, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 183, + 632 + ], + "score": 1.0, + "content": "rewrite this loss as", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 631, + 440, + 665 + ], + "lines": [ + { + "bbox": [ + 170, + 631, + 440, + 665 + ], + "spans": [ + { + "bbox": [ + 170, + 631, + 440, + 665 + ], + "score": 0.94, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { | | \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } | | ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right)", + "type": "interline_equation", + "image_path": "762165c3d80a603c30b2bad1d41cc2c1103cc34f6033644937a792e93a0af58f.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 170, + 631, + 440, + 642.3333333333334 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 170, + 642.3333333333334, + 440, + 653.6666666666667 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 170, + 653.6666666666667, + 440, + 665.0000000000001 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 672, + 506, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 133, + 685 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 673, + 145, + 685 + ], + "score": 0.89, + "content": "\\hat { \\mathbf { a } } _ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 673, + 360, + 685 + ], + "score": 1.0, + "content": "is the mean of the Gaussian output by the policy and", + "type": "text" + }, + { + "bbox": [ + 361, + 673, + 409, + 685 + ], + "score": 0.91, + "content": "k = \\dim ( \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 673, + 505, + 685 + ], + "score": 1.0, + "content": ". For the purpose of the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 683, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 354, + 696 + ], + "score": 1.0, + "content": "simplicity of the counterexample, we assume the policy output", + "type": "text" + }, + { + "bbox": [ + 354, + 685, + 366, + 696 + ], + "score": 0.89, + "content": "\\hat { \\mathbf { a } } _ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 683, + 506, + 696 + ], + "score": 1.0, + "content": "is 0. The gradient of this loss with", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 695, + 227, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 227, + 707 + ], + "score": 1.0, + "content": "respect to the policy output is", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47 + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 708, + 397, + 736 + ], + "lines": [ + { + "bbox": [ + 214, + 708, + 397, + 736 + ], + "spans": [ + { + "bbox": [ + 214, + 708, + 397, + 736 + ], + "score": 0.94, + "content": "\\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } { \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { 0 } ) = - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\mathbf { a }", + "type": "interline_equation", + "image_path": "3387741da6bbc1cb9c69d6a74e61a55225935aa84703de9e84adf8cde155a925.jpg" + } + ] + } + ], + "index": 49.5, + "virtual_lines": [ + { + "bbox": [ + 214, + 708, + 397, + 722.0 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 214, + 722.0, + 397, + 736.0 + ], + "spans": [], + "index": 50 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "13", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 79, + 167, + 95 + ], + "lines": [ + { + "bbox": [ + 104, + 78, + 170, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 78, + 170, + 97 + ], + "score": 1.0, + "content": "Appendix", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "title", + "bbox": [ + 108, + 101, + 432, + 114 + ], + "lines": [ + { + "bbox": [ + 106, + 101, + 434, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 101, + 434, + 115 + ], + "score": 1.0, + "content": "A MACAW AUXILIARY LOSS AND UPDATE EXPRESSIVENESS", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 119, + 505, + 241 + ], + "lines": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "spans": [ + { + "bbox": [ + 106, + 120, + 505, + 132 + ], + "score": 1.0, + "content": "Finn and Levine (2018) lay out conditions under which the MAML update procedure is universal, in", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 130, + 506, + 144 + ], + "spans": [ + { + "bbox": [ + 105, + 130, + 294, + 144 + ], + "score": 1.0, + "content": "the sense that it can approximate any function", + "type": "text" + }, + { + "bbox": [ + 294, + 131, + 340, + 143 + ], + "score": 0.93, + "content": "f ( \\mathbf { x } , \\mathbf { y } , \\mathbf { x } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 130, + 506, + 144 + ], + "score": 1.0, + "content": "arbitrarily well (given enough capacity),", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 141, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 105, + 141, + 132, + 155 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 132, + 144, + 140, + 152 + ], + "score": 0.34, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 141, + 377, + 155 + ], + "score": 1.0, + "content": "and y are the support set inputs and labels, respectively, and", + "type": "text" + }, + { + "bbox": [ + 377, + 142, + 389, + 152 + ], + "score": 0.87, + "content": "\\mathbf { x } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 389, + 141, + 506, + 155 + ], + "score": 1.0, + "content": "is the test input. Universality", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 153, + 506, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 506, + 166 + ], + "score": 1.0, + "content": "in this sense is an attractive property because it implies that the update is expressive enough to", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "spans": [ + { + "bbox": [ + 105, + 163, + 506, + 177 + ], + "score": 1.0, + "content": "approximate any update procedure; a method that does not possess the universality property might", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 189 + ], + "score": 1.0, + "content": "be limited in its asymptotic post-adaptation performance because it cannot express (or closely", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "spans": [ + { + "bbox": [ + 105, + 186, + 506, + 199 + ], + "score": 1.0, + "content": "approximate) the true optimal update procedure. In order for the MAML update procedure to be", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 197, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 197, + 506, + 210 + ], + "score": 1.0, + "content": "universal, several requirements of the network architecture, hyperparameters, and loss function must", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 506, + 221 + ], + "score": 1.0, + "content": "be satisfied. Most of these are not method-specific in that they stipulate minimum network depth,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 219, + 506, + 231 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 506, + 231 + ], + "score": 1.0, + "content": "activation functions, and non-zero learning rate for any neural network. However, the condition placed", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 230, + 497, + 241 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 497, + 241 + ], + "score": 1.0, + "content": "on the loss function require more careful treatment. The requirement is described in Definition 1.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 120, + 506, + 241 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 243, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 241, + 506, + 257 + ], + "score": 1.0, + "content": "Definition 1. A loss function is ‘universal’ if the gradient of the loss with respect to the prediction(s)", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 254, + 363, + 267 + ], + "spans": [ + { + "bbox": [ + 105, + 254, + 363, + 267 + ], + "score": 1.0, + "content": "is an invertible function of the label(s) used to compute the loss.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 241, + 506, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 273, + 505, + 319 + ], + "lines": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "We note that Definition 1 is a necessary but not sufficient condition for an update procedure to be", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 505, + 297 + ], + "score": 1.0, + "content": "universal (see other conditions above and Finn and Levine (2018)). For the AWR loss function", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 296, + 505, + 309 + ], + "score": 1.0, + "content": "(copied below from Equation 1 with minor changes), the labels are the ground truth action a and the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 307, + 284, + 321 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 209, + 321 + ], + "score": 1.0, + "content": "corresponding advantage", + "type": "text" + }, + { + "bbox": [ + 209, + 307, + 279, + 320 + ], + "score": 0.92, + "content": "\\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 307, + 284, + 321 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16.5, + "bbox_fs": [ + 105, + 273, + 505, + 321 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 173, + 322, + 436, + 350 + ], + "lines": [ + { + "bbox": [ + 173, + 322, + 436, + 350 + ], + "spans": [ + { + "bbox": [ + 173, + 322, + 436, + 350 + ], + "score": 0.92, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta , \\phi _ { i } ^ { \\prime } ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) \\right)", + "type": "interline_equation", + "image_path": "b9f96e0e46c5a961764182af63d8b231fbe5c8955b2c36cd857e6a4651cf77ab.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 173, + 322, + 436, + 331.3333333333333 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 173, + 331.3333333333333, + 436, + 340.66666666666663 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 173, + 340.66666666666663, + 436, + 349.99999999999994 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 351, + 504, + 374 + ], + "lines": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "spans": [ + { + "bbox": [ + 106, + 351, + 505, + 363 + ], + "score": 1.0, + "content": "For simplicity and without loss of generality (see Finn and Levine (2018), Sections 4 & 5), we will", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 362, + 413, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 413, + 375 + ], + "score": 1.0, + "content": "consider the loss for only a single sample, rather than averaged over a batch.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 106, + 351, + 505, + 375 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 378, + 505, + 446 + ], + "lines": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 505, + 391 + ], + "score": 1.0, + "content": "In the remainder of this section, we first state in Theorem 1 that the standard AWR policy loss", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "function does not satisfy the condition for universality described in Definition 1. The proof is", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "spans": [ + { + "bbox": [ + 105, + 401, + 505, + 414 + ], + "score": 1.0, + "content": "by a simple counterexample. Next, we state in Theorem 2 that the MACAW auxiliary loss does", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "spans": [ + { + "bbox": [ + 105, + 411, + 505, + 425 + ], + "score": 1.0, + "content": "satisfy the universality condition, enabling a universal update procedure given the other generic", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "spans": [ + { + "bbox": [ + 106, + 423, + 505, + 434 + ], + "score": 1.0, + "content": "universality conditions are satisfied (note that the MACAW value function loss satisfies the condition", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 434, + 387, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 387, + 446 + ], + "score": 1.0, + "content": "in Definition 1 because it uses L2 regression Finn and Levine (2018)).", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 378, + 506, + 446 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 450, + 422, + 462 + ], + "lines": [ + { + "bbox": [ + 106, + 450, + 423, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 450, + 423, + 464 + ], + "score": 1.0, + "content": "A.1 NON-UNIVERSALITY OF STANDARD AWR POLICY LOSS FUNCTION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 468, + 505, + 513 + ], + "lines": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 106, + 468, + 505, + 480 + ], + "score": 1.0, + "content": "Intuitively, the AWR gradient does not satisfy the invertibility condition because it does not distinguish", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "between a small error in the predicted action that has a large corresponding advantage weight and a", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 489, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 505, + 504 + ], + "score": 1.0, + "content": "large error in the predicted action (in the same direction) that has a small corresponding advantage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 501, + 337, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 337, + 513 + ], + "score": 1.0, + "content": "weight. The following theorem formalizes this statement.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 468, + 505, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 514, + 443, + 526 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 446, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 252, + 529 + ], + "score": 1.0, + "content": "Theorem 1. The AWR loss function", + "type": "text" + }, + { + "bbox": [ + 252, + 514, + 275, + 525 + ], + "score": 0.89, + "content": "\\mathcal { L } ^ { A W R }", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 511, + 446, + 529 + ], + "score": 1.0, + "content": "is not universal according to Definition 1.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 511, + 446, + 529 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 534, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 104, + 532, + 504, + 548 + ], + "spans": [ + { + "bbox": [ + 104, + 532, + 440, + 548 + ], + "score": 1.0, + "content": "The proof is by counterexample; we will show that there exist different sets of labels", + "type": "text" + }, + { + "bbox": [ + 440, + 534, + 504, + 547 + ], + "score": 0.91, + "content": "\\{ \\mathbf { a } _ { 1 } , A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 124, + 559 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 124, + 545, + 188, + 558 + ], + "score": 0.93, + "content": "\\{ \\mathbf { a } _ { 2 } , A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 543, + 505, + 559 + ], + "score": 1.0, + "content": "that produce the same gradient for some output of the model. First, rewriting", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 557, + 335, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 173, + 570 + ], + "score": 1.0, + "content": "Equation 7 with", + "type": "text" + }, + { + "bbox": [ + 173, + 557, + 295, + 570 + ], + "score": 0.91, + "content": "A ( \\mathbf { s } , \\mathbf { a } ) = \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 557, + 335, + 570 + ], + "score": 1.0, + "content": ", we have", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 532, + 505, + 570 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 210, + 572, + 401, + 600 + ], + "lines": [ + { + "bbox": [ + 210, + 572, + 401, + 600 + ], + "spans": [ + { + "bbox": [ + 210, + 572, + 401, + 600 + ], + "score": 0.93, + "content": "{ \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right)", + "type": "interline_equation", + "image_path": "3813254089b2ff7fb4eb079eaad12e525c4a78894cefb5281bd6dc2aeca61998.jpg" + } + ] + } + ], + "index": 39.5, + "virtual_lines": [ + { + "bbox": [ + 210, + 572, + 401, + 586.0 + ], + "spans": [], + "index": 39 + }, + { + "bbox": [ + 210, + 586.0, + 401, + 600.0 + ], + "spans": [], + "index": 40 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 608, + 504, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 607, + 505, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 430, + 622 + ], + "score": 1.0, + "content": "Because our policy is parameterized as a Gaussian with fixed diagonal covariance", + "type": "text" + }, + { + "bbox": [ + 431, + 608, + 448, + 619 + ], + "score": 0.88, + "content": "\\sigma ^ { 2 } I", + "type": "inline_equation" + }, + { + "bbox": [ + 448, + 607, + 505, + 622 + ], + "score": 1.0, + "content": ", we can again", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 620, + 183, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 620, + 183, + 632 + ], + "score": 1.0, + "content": "rewrite this loss as", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 105, + 607, + 505, + 632 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 170, + 631, + 440, + 665 + ], + "lines": [ + { + "bbox": [ + 170, + 631, + 440, + 665 + ], + "spans": [ + { + "bbox": [ + 170, + 631, + 440, + 665 + ], + "score": 0.94, + "content": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { | | \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } | | ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right)", + "type": "interline_equation", + "image_path": "762165c3d80a603c30b2bad1d41cc2c1103cc34f6033644937a792e93a0af58f.jpg" + } + ] + } + ], + "index": 44, + "virtual_lines": [ + { + "bbox": [ + 170, + 631, + 440, + 642.3333333333334 + ], + "spans": [], + "index": 43 + }, + { + "bbox": [ + 170, + 642.3333333333334, + 440, + 653.6666666666667 + ], + "spans": [], + "index": 44 + }, + { + "bbox": [ + 170, + 653.6666666666667, + 440, + 665.0000000000001 + ], + "spans": [], + "index": 45 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 672, + 506, + 706 + ], + "lines": [ + { + "bbox": [ + 106, + 673, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 106, + 673, + 133, + 685 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 673, + 145, + 685 + ], + "score": 0.89, + "content": "\\hat { \\mathbf { a } } _ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 146, + 673, + 360, + 685 + ], + "score": 1.0, + "content": "is the mean of the Gaussian output by the policy and", + "type": "text" + }, + { + "bbox": [ + 361, + 673, + 409, + 685 + ], + "score": 0.91, + "content": "k = \\dim ( \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 410, + 673, + 505, + 685 + ], + "score": 1.0, + "content": ". For the purpose of the", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 683, + 506, + 696 + ], + "spans": [ + { + "bbox": [ + 105, + 683, + 354, + 696 + ], + "score": 1.0, + "content": "simplicity of the counterexample, we assume the policy output", + "type": "text" + }, + { + "bbox": [ + 354, + 685, + 366, + 696 + ], + "score": 0.89, + "content": "\\hat { \\mathbf { a } } _ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 366, + 683, + 506, + 696 + ], + "score": 1.0, + "content": "is 0. The gradient of this loss with", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 695, + 227, + 707 + ], + "spans": [ + { + "bbox": [ + 105, + 695, + 227, + 707 + ], + "score": 1.0, + "content": "respect to the policy output is", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 673, + 506, + 707 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 214, + 708, + 397, + 736 + ], + "lines": [ + { + "bbox": [ + 214, + 708, + 397, + 736 + ], + "spans": [ + { + "bbox": [ + 214, + 708, + 397, + 736 + ], + "score": 0.94, + "content": "\\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } { \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { 0 } ) = - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\mathbf { a }", + "type": "interline_equation", + "image_path": "3387741da6bbc1cb9c69d6a74e61a55225935aa84703de9e84adf8cde155a925.jpg" + } + ] + } + ], + "index": 49.5, + "virtual_lines": [ + { + "bbox": [ + 214, + 708, + 397, + 722.0 + ], + "spans": [], + "index": 49 + }, + { + "bbox": [ + 214, + 722.0, + 397, + 736.0 + ], + "spans": [], + "index": 50 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "To demonstrate that the gradient operator applied to this loss function is not invertible, we pick two", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 386, + 106 + ], + "score": 1.0, + "content": "distinct label values and show that they give the same gradient. We pick", + "type": "text" + }, + { + "bbox": [ + 387, + 93, + 449, + 105 + ], + "score": 0.88, + "content": "\\mathbf { a } _ { 1 } = [ 1 , . . . , 1 ] ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 92, + 453, + 106 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 453, + 93, + 505, + 105 + ], + "score": 0.84, + "content": "A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) =", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 115, + 114 + ], + "score": 0.77, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 103, + 134, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 134, + 104, + 214, + 116 + ], + "score": 0.88, + "content": "\\mathbf { a } _ { 2 } = [ 0 . 1 , . . . , 0 . 1 ] ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 103, + 219, + 118 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 219, + 104, + 312, + 116 + ], + "score": 0.88, + "content": "A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 2 } ) \\stackrel { - } { = } \\log ( 1 0 ) T", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 103, + 506, + 118 + ], + "score": 1.0, + "content": ". Inserting these values into Equation A.1, this", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 103, + 111, + 507, + 130 + ], + "spans": [ + { + "bbox": [ + 103, + 111, + 172, + 130 + ], + "score": 1.0, + "content": "gives gradients", + "type": "text" + }, + { + "bbox": [ + 173, + 116, + 252, + 128 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g _ { 1 } ~ = ~ \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 111, + 273, + 130 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 114, + 474, + 128 + ], + "score": 0.9, + "content": "\\begin{array} { r } { g _ { 2 } ^ { \\sim } = \\frac { - 1 0 e } { \\sigma ^ { 2 } } [ 0 . 1 , . . . , 0 . 1 ] ^ { T } = \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } = g _ { 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 111, + 507, + 130 + ], + "score": 1.0, + "content": ". Thus", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "the gradient of the standard AWR loss does not possess sufficient information to recover the labels", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "uniquely and using this loss for policy adaptation does not produce a universal policy update procedure.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 425, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 425, + 162 + ], + "score": 1.0, + "content": "Next, we show how the auxiliary loss used in MACAW alleviates this problem.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 442, + 178 + ], + "lines": [ + { + "bbox": [ + 106, + 166, + 444, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 444, + 179 + ], + "score": 1.0, + "content": "A.2 UNIVERSALITY OF THE MACAW POLICY ADAPTATION LOSS FUNCTION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 196 + ], + "score": 1.0, + "content": "In this section, we show that by adding an additional term to the AWR loss function, we acquire a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "loss that satisfies the condition stated in Definition 1, which we state in Theorem 2. Intuitively, the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 504, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 504, + 218 + ], + "score": 1.0, + "content": "additional loss term allows the gradient to distinguish between the cases that were problematic for the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 215, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 505, + 232 + ], + "score": 1.0, + "content": "AWR loss (large action error and small advantage weight vs small action error and large advantage", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 227, + 142, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 142, + 242 + ], + "score": 1.0, + "content": "weight).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 105, + 243, + 461, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 462, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 294, + 257 + ], + "score": 1.0, + "content": "Theorem 2. The MACAW policy loss function", + "type": "text" + }, + { + "bbox": [ + 294, + 244, + 307, + 254 + ], + "score": 0.88, + "content": "{ \\mathcal { L } } _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 242, + 462, + 257 + ], + "score": 1.0, + "content": "is universal according to Definition 1.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 105, + 263, + 503, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "The MACAW policy adaptation loss (given in Equation 3) is the sum of the AWR loss and an auxiliary", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 385, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 385, + 287 + ], + "score": 1.0, + "content": "advantage regression loss (the following is adapted from Equation 8):", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5 + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 291, + 480, + 325 + ], + "lines": [ + { + "bbox": [ + 130, + 291, + 480, + 325 + ], + "spans": [ + { + "bbox": [ + 130, + 291, + 480, + 325 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { \\| \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) + \\lambda ( A ( \\mathbf { s } , \\mathbf { a } ) - \\hat { A } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "82d97852046e8ee39e7a36b0b858d89189f857d819c2421b116e8bb7df61a229.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 130, + 291, + 480, + 302.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 130, + 302.3333333333333, + 480, + 313.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 130, + 313.66666666666663, + 480, + 324.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 133, + 346 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 331, + 142, + 342 + ], + "score": 0.87, + "content": "\\hat { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 330, + 428, + 346 + ], + "score": 1.0, + "content": "is the predicted advantage output from the policy advantage head and", + "type": "text" + }, + { + "bbox": [ + 429, + 333, + 436, + 342 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 330, + 506, + 346 + ], + "score": 1.0, + "content": "is the advantage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 343, + 473, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 454, + 357 + ], + "score": 1.0, + "content": "regression coefficient. The gradient of this loss with respect to the predicted advantage", + "type": "text" + }, + { + "bbox": [ + 454, + 343, + 463, + 354 + ], + "score": 0.87, + "content": "\\hat { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 344, + 473, + 357 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 361, + 402, + 378 + ], + "lines": [ + { + "bbox": [ + 208, + 361, + 402, + 378 + ], + "spans": [ + { + "bbox": [ + 208, + 361, + 402, + 378 + ], + "score": 0.92, + "content": "g _ { \\mathrm { A D V } } = \\nabla _ { \\hat { A } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = 2 \\lambda ( \\hat { A } - A ( \\mathbf { s } , \\mathbf { a } ) )", + "type": "interline_equation", + "image_path": "c9bcda1a22cf74697efffb10741c6da0801de0f2e59f079092a9e8814884d39e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 208, + 361, + 402, + 378 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 382, + 300, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 301, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 277, + 396 + ], + "score": 1.0, + "content": "and the gradient of the loss with respect to", + "type": "text" + }, + { + "bbox": [ + 278, + 383, + 290, + 395 + ], + "score": 0.9, + "content": "\\hat { \\mathbf { a } } _ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 380, + 301, + 396 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 399, + 429, + 427 + ], + "lines": [ + { + "bbox": [ + 182, + 399, + 429, + 427 + ], + "spans": [ + { + "bbox": [ + 182, + 399, + 429, + 427 + ], + "score": 0.93, + "content": "\\mathbf { g } _ { \\mathrm { A W R } } = \\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\frac { 1 } { \\sigma ^ { 2 } } \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) ( \\hat { \\mathbf { a } } _ { \\mu } - \\mathbf { a } )", + "type": "interline_equation", + "image_path": "7e298b76488092a1ed3d76c2f087f2e2acfda43a630409710794656fed4ca4bd.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 182, + 399, + 429, + 427 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 243, + 459 + ], + "score": 1.0, + "content": "We write the combined gradient as", + "type": "text" + }, + { + "bbox": [ + 243, + 438, + 296, + 465 + ], + "score": 0.93, + "content": "\\mathbf { g } = \\left[ \\mathbf { \\mathcal { G } } _ { \\mathrm { A W R } } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 442, + 505, + 460 + ], + "score": 1.0, + "content": ". In order to provide a universal update procedure, we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 384, + 476 + ], + "score": 1.0, + "content": "must be able to recover both the action label a and the advantage label", + "type": "text" + }, + { + "bbox": [ + 384, + 464, + 415, + 475 + ], + "score": 0.92, + "content": "A ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "from g. First, because", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 472, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 128, + 486 + ], + "score": 0.53, + "content": "g _ { \\mathrm { A D V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 472, + 236, + 489 + ], + "score": 1.0, + "content": "is an invertible function of", + "type": "text" + }, + { + "bbox": [ + 236, + 474, + 266, + 486 + ], + "score": 0.93, + "content": "A ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 472, + 506, + 489 + ], + "score": 1.0, + "content": ", we can directly extract the advantage label by re-arranging", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 155, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 155, + 497 + ], + "score": 1.0, + "content": "Equation 9:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 494, + 355, + 522 + ], + "lines": [ + { + "bbox": [ + 256, + 494, + 355, + 522 + ], + "spans": [ + { + "bbox": [ + 256, + 494, + 355, + 522 + ], + "score": 0.94, + "content": "A ( \\mathbf { s } , \\mathbf { a } ) = \\frac { g _ { \\mathrm { A D V } } - 2 \\lambda \\hat { A } } { - 2 \\lambda }", + "type": "interline_equation", + "image_path": "3be5edae99478d010d89ad50a1bff1f96236a901e862969b54940557989d6f0f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 256, + 494, + 355, + 522 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 538 + ], + "score": 1.0, + "content": "Similarly, gAWR is an invertible function of a, so we can then extract the action label by re-arranging", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 534, + 161, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 161, + 547 + ], + "score": 1.0, + "content": "Equation 10:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 551, + 375, + 594 + ], + "lines": [ + { + "bbox": [ + 235, + 551, + 375, + 594 + ], + "spans": [ + { + "bbox": [ + 235, + 551, + 375, + 594 + ], + "score": 0.95, + "content": "\\mathbf { a } = { \\frac { \\mathbf { g } _ { \\mathrm { A W R } } - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\hat { \\mathbf { a } } _ { \\mu } } { - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) } }", + "type": "interline_equation", + "image_path": "a3544562adfe6e374bd255a6dc1870deb30f888dc81cfe3f15218ce3bcbdd5e6.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 551, + 375, + 572.5 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 235, + 572.5, + 375, + 594.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 209, + 617 + ], + "score": 1.0, + "content": "Because we can compute", + "type": "text" + }, + { + "bbox": [ + 209, + 605, + 240, + 617 + ], + "score": 0.93, + "content": "A ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 604, + 263, + 617 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 263, + 606, + 284, + 616 + ], + "score": 0.87, + "content": "g _ { \\mathrm { A D V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 604, + 506, + 617 + ], + "score": 1.0, + "content": ", there are no unknowns in the RHS of Equation 11 and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 211, + 628 + ], + "score": 1.0, + "content": "we can compute a (here,", + "type": "text" + }, + { + "bbox": [ + 212, + 617, + 231, + 627 + ], + "score": 0.5, + "content": "\\sigma , \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 616, + 253, + 628 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 253, + 617, + 262, + 626 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "are known constants); it is thus the additional information", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 157, + 639 + ], + "score": 1.0, + "content": "provided by", + "type": "text" + }, + { + "bbox": [ + 157, + 628, + 178, + 639 + ], + "score": 0.85, + "content": "g _ { \\mathrm { A D V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "that resolves the ambiguity that is problematic for the standard AWR policy loss", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "gradient. We have now shown that both the action label and advantage label used in the MACAW", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "policy adaptation loss are recoverable from its gradient, implying that the update procedure is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 660, + 475, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 475, + 672 + ], + "score": 1.0, + "content": "universal under the conditions given by Finn and Levine (2018), which concludes the proof.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5 + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 284, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 285, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 285, + 694 + ], + "score": 1.0, + "content": "B WEIGHT TRANSFORM LAYERS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Here, we describe in detail the ‘weight transformation’ layer that augments the expressiveness of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "the MAML update in MACAW. First, we start with the observation in past work (Finn et al., 2017b)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "that adding a ‘bias transformation’ to each layer improves the expressiveness of the MAML update.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 160 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "To demonstrate that the gradient operator applied to this loss function is not invertible, we pick two", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 386, + 106 + ], + "score": 1.0, + "content": "distinct label values and show that they give the same gradient. We pick", + "type": "text" + }, + { + "bbox": [ + 387, + 93, + 449, + 105 + ], + "score": 0.88, + "content": "\\mathbf { a } _ { 1 } = [ 1 , . . . , 1 ] ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 92, + 453, + 106 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 453, + 93, + 505, + 105 + ], + "score": 0.84, + "content": "A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) =", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 103, + 506, + 118 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 115, + 114 + ], + "score": 0.77, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 115, + 103, + 134, + 118 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 134, + 104, + 214, + 116 + ], + "score": 0.88, + "content": "\\mathbf { a } _ { 2 } = [ 0 . 1 , . . . , 0 . 1 ] ^ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 215, + 103, + 219, + 118 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 219, + 104, + 312, + 116 + ], + "score": 0.88, + "content": "A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 2 } ) \\stackrel { - } { = } \\log ( 1 0 ) T", + "type": "inline_equation" + }, + { + "bbox": [ + 312, + 103, + 506, + 118 + ], + "score": 1.0, + "content": ". Inserting these values into Equation A.1, this", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 103, + 111, + 507, + 130 + ], + "spans": [ + { + "bbox": [ + 103, + 111, + 172, + 130 + ], + "score": 1.0, + "content": "gives gradients", + "type": "text" + }, + { + "bbox": [ + 173, + 116, + 252, + 128 + ], + "score": 0.92, + "content": "\\begin{array} { r } { g _ { 1 } ~ = ~ \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 253, + 111, + 273, + 130 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 273, + 114, + 474, + 128 + ], + "score": 0.9, + "content": "\\begin{array} { r } { g _ { 2 } ^ { \\sim } = \\frac { - 1 0 e } { \\sigma ^ { 2 } } [ 0 . 1 , . . . , 0 . 1 ] ^ { T } = \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } = g _ { 1 } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 111, + 507, + 130 + ], + "score": 1.0, + "content": ". Thus", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 140 + ], + "score": 1.0, + "content": "the gradient of the standard AWR loss does not possess sufficient information to recover the labels", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 106, + 137, + 506, + 150 + ], + "score": 1.0, + "content": "uniquely and using this loss for policy adaptation does not produce a universal policy update procedure.", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 425, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 425, + 162 + ], + "score": 1.0, + "content": "Next, we show how the auxiliary loss used in MACAW alleviates this problem.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3, + "bbox_fs": [ + 103, + 82, + 507, + 162 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 165, + 442, + 178 + ], + "lines": [ + { + "bbox": [ + 106, + 166, + 444, + 179 + ], + "spans": [ + { + "bbox": [ + 106, + 166, + 444, + 179 + ], + "score": 1.0, + "content": "A.2 UNIVERSALITY OF THE MACAW POLICY ADAPTATION LOSS FUNCTION", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 183, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 106, + 184, + 505, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 184, + 505, + 196 + ], + "score": 1.0, + "content": "In this section, we show that by adding an additional term to the AWR loss function, we acquire a", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 106, + 195, + 505, + 208 + ], + "score": 1.0, + "content": "loss that satisfies the condition stated in Definition 1, which we state in Theorem 2. Intuitively, the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 205, + 504, + 218 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 504, + 218 + ], + "score": 1.0, + "content": "additional loss term allows the gradient to distinguish between the cases that were problematic for the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 215, + 505, + 232 + ], + "spans": [ + { + "bbox": [ + 104, + 215, + 505, + 232 + ], + "score": 1.0, + "content": "AWR loss (large action error and small advantage weight vs small action error and large advantage", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 227, + 142, + 242 + ], + "spans": [ + { + "bbox": [ + 105, + 227, + 142, + 242 + ], + "score": 1.0, + "content": "weight).", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 10, + "bbox_fs": [ + 104, + 184, + 505, + 242 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 243, + 461, + 255 + ], + "lines": [ + { + "bbox": [ + 105, + 242, + 462, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 242, + 294, + 257 + ], + "score": 1.0, + "content": "Theorem 2. The MACAW policy loss function", + "type": "text" + }, + { + "bbox": [ + 294, + 244, + 307, + 254 + ], + "score": 0.88, + "content": "{ \\mathcal { L } } _ { \\pi }", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 242, + 462, + 257 + ], + "score": 1.0, + "content": "is universal according to Definition 1.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13, + "bbox_fs": [ + 105, + 242, + 462, + 257 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 263, + 503, + 286 + ], + "lines": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 505, + 277 + ], + "score": 1.0, + "content": "The MACAW policy adaptation loss (given in Equation 3) is the sum of the AWR loss and an auxiliary", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 275, + 385, + 287 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 385, + 287 + ], + "score": 1.0, + "content": "advantage regression loss (the following is adapted from Equation 8):", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 14.5, + "bbox_fs": [ + 105, + 263, + 505, + 287 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 130, + 291, + 480, + 325 + ], + "lines": [ + { + "bbox": [ + 130, + 291, + 480, + 325 + ], + "spans": [ + { + "bbox": [ + 130, + 291, + 480, + 325 + ], + "score": 0.94, + "content": "\\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { \\| \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) + \\lambda ( A ( \\mathbf { s } , \\mathbf { a } ) - \\hat { A } ) ^ { 2 }", + "type": "interline_equation", + "image_path": "82d97852046e8ee39e7a36b0b858d89189f857d819c2421b116e8bb7df61a229.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 130, + 291, + 480, + 302.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 130, + 302.3333333333333, + 480, + 313.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 130, + 313.66666666666663, + 480, + 324.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 332, + 504, + 356 + ], + "lines": [ + { + "bbox": [ + 105, + 330, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 133, + 346 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 331, + 142, + 342 + ], + "score": 0.87, + "content": "\\hat { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 143, + 330, + 428, + 346 + ], + "score": 1.0, + "content": "is the predicted advantage output from the policy advantage head and", + "type": "text" + }, + { + "bbox": [ + 429, + 333, + 436, + 342 + ], + "score": 0.83, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 436, + 330, + 506, + 346 + ], + "score": 1.0, + "content": "is the advantage", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 343, + 473, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 454, + 357 + ], + "score": 1.0, + "content": "regression coefficient. The gradient of this loss with respect to the predicted advantage", + "type": "text" + }, + { + "bbox": [ + 454, + 343, + 463, + 354 + ], + "score": 0.87, + "content": "\\hat { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 344, + 473, + 357 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 330, + 506, + 357 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 208, + 361, + 402, + 378 + ], + "lines": [ + { + "bbox": [ + 208, + 361, + 402, + 378 + ], + "spans": [ + { + "bbox": [ + 208, + 361, + 402, + 378 + ], + "score": 0.92, + "content": "g _ { \\mathrm { A D V } } = \\nabla _ { \\hat { A } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = 2 \\lambda ( \\hat { A } - A ( \\mathbf { s } , \\mathbf { a } ) )", + "type": "interline_equation", + "image_path": "c9bcda1a22cf74697efffb10741c6da0801de0f2e59f079092a9e8814884d39e.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 208, + 361, + 402, + 378 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 382, + 300, + 394 + ], + "lines": [ + { + "bbox": [ + 105, + 380, + 301, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 277, + 396 + ], + "score": 1.0, + "content": "and the gradient of the loss with respect to", + "type": "text" + }, + { + "bbox": [ + 278, + 383, + 290, + 395 + ], + "score": 0.9, + "content": "\\hat { \\mathbf { a } } _ { \\mu }", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 380, + 301, + 396 + ], + "score": 1.0, + "content": "is", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 380, + 301, + 396 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 182, + 399, + 429, + 427 + ], + "lines": [ + { + "bbox": [ + 182, + 399, + 429, + 427 + ], + "spans": [ + { + "bbox": [ + 182, + 399, + 429, + 427 + ], + "score": 0.93, + "content": "\\mathbf { g } _ { \\mathrm { A W R } } = \\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\frac { 1 } { \\sigma ^ { 2 } } \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) ( \\hat { \\mathbf { a } } _ { \\mu } - \\mathbf { a } )", + "type": "interline_equation", + "image_path": "7e298b76488092a1ed3d76c2f087f2e2acfda43a630409710794656fed4ca4bd.jpg" + } + ] + } + ], + "index": 23, + "virtual_lines": [ + { + "bbox": [ + 182, + 399, + 429, + 427 + ], + "spans": [], + "index": 23 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 438, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 438, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 243, + 459 + ], + "score": 1.0, + "content": "We write the combined gradient as", + "type": "text" + }, + { + "bbox": [ + 243, + 438, + 296, + 465 + ], + "score": 0.93, + "content": "\\mathbf { g } = \\left[ \\mathbf { \\mathcal { G } } _ { \\mathrm { A W R } } \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 442, + 505, + 460 + ], + "score": 1.0, + "content": ". In order to provide a universal update procedure, we", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 463, + 505, + 476 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 384, + 476 + ], + "score": 1.0, + "content": "must be able to recover both the action label a and the advantage label", + "type": "text" + }, + { + "bbox": [ + 384, + 464, + 415, + 475 + ], + "score": 0.92, + "content": "A ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 415, + 463, + 505, + 476 + ], + "score": 1.0, + "content": "from g. First, because", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 472, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 476, + 128, + 486 + ], + "score": 0.53, + "content": "g _ { \\mathrm { A D V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 128, + 472, + 236, + 489 + ], + "score": 1.0, + "content": "is an invertible function of", + "type": "text" + }, + { + "bbox": [ + 236, + 474, + 266, + 486 + ], + "score": 0.93, + "content": "A ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 267, + 472, + 506, + 489 + ], + "score": 1.0, + "content": ", we can directly extract the advantage label by re-arranging", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 484, + 155, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 155, + 497 + ], + "score": 1.0, + "content": "Equation 9:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 438, + 506, + 497 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 256, + 494, + 355, + 522 + ], + "lines": [ + { + "bbox": [ + 256, + 494, + 355, + 522 + ], + "spans": [ + { + "bbox": [ + 256, + 494, + 355, + 522 + ], + "score": 0.94, + "content": "A ( \\mathbf { s } , \\mathbf { a } ) = \\frac { g _ { \\mathrm { A D V } } - 2 \\lambda \\hat { A } } { - 2 \\lambda }", + "type": "interline_equation", + "image_path": "3be5edae99478d010d89ad50a1bff1f96236a901e862969b54940557989d6f0f.jpg" + } + ] + } + ], + "index": 28, + "virtual_lines": [ + { + "bbox": [ + 256, + 494, + 355, + 522 + ], + "spans": [], + "index": 28 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 524, + 504, + 546 + ], + "lines": [ + { + "bbox": [ + 105, + 521, + 506, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 538 + ], + "score": 1.0, + "content": "Similarly, gAWR is an invertible function of a, so we can then extract the action label by re-arranging", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 534, + 161, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 161, + 547 + ], + "score": 1.0, + "content": "Equation 10:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 521, + 506, + 547 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 235, + 551, + 375, + 594 + ], + "lines": [ + { + "bbox": [ + 235, + 551, + 375, + 594 + ], + "spans": [ + { + "bbox": [ + 235, + 551, + 375, + 594 + ], + "score": 0.95, + "content": "\\mathbf { a } = { \\frac { \\mathbf { g } _ { \\mathrm { A W R } } - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\hat { \\mathbf { a } } _ { \\mu } } { - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) } }", + "type": "interline_equation", + "image_path": "a3544562adfe6e374bd255a6dc1870deb30f888dc81cfe3f15218ce3bcbdd5e6.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 235, + 551, + 375, + 572.5 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 235, + 572.5, + 375, + 594.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 604, + 505, + 672 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 209, + 617 + ], + "score": 1.0, + "content": "Because we can compute", + "type": "text" + }, + { + "bbox": [ + 209, + 605, + 240, + 617 + ], + "score": 0.93, + "content": "A ( \\mathbf { s } , \\mathbf { a } )", + "type": "inline_equation" + }, + { + "bbox": [ + 240, + 604, + 263, + 617 + ], + "score": 1.0, + "content": "from", + "type": "text" + }, + { + "bbox": [ + 263, + 606, + 284, + 616 + ], + "score": 0.87, + "content": "g _ { \\mathrm { A D V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 284, + 604, + 506, + 617 + ], + "score": 1.0, + "content": ", there are no unknowns in the RHS of Equation 11 and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 616, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 211, + 628 + ], + "score": 1.0, + "content": "we can compute a (here,", + "type": "text" + }, + { + "bbox": [ + 212, + 617, + 231, + 627 + ], + "score": 0.5, + "content": "\\sigma , \\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 616, + 253, + 628 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 253, + 617, + 262, + 626 + ], + "score": 0.82, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 262, + 616, + 506, + 628 + ], + "score": 1.0, + "content": "are known constants); it is thus the additional information", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 626, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 157, + 639 + ], + "score": 1.0, + "content": "provided by", + "type": "text" + }, + { + "bbox": [ + 157, + 628, + 178, + 639 + ], + "score": 0.85, + "content": "g _ { \\mathrm { A D V } }", + "type": "inline_equation" + }, + { + "bbox": [ + 179, + 626, + 506, + 639 + ], + "score": 1.0, + "content": "that resolves the ambiguity that is problematic for the standard AWR policy loss", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 637, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 104, + 637, + 505, + 650 + ], + "score": 1.0, + "content": "gradient. We have now shown that both the action label and advantage label used in the MACAW", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "policy adaptation loss are recoverable from its gradient, implying that the update procedure is", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 660, + 475, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 475, + 672 + ], + "score": 1.0, + "content": "universal under the conditions given by Finn and Levine (2018), which concludes the proof.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35.5, + "bbox_fs": [ + 104, + 604, + 506, + 672 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 284, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 285, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 285, + 694 + ], + "score": 1.0, + "content": "B WEIGHT TRANSFORM LAYERS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 697, + 506, + 712 + ], + "score": 1.0, + "content": "Here, we describe in detail the ‘weight transformation’ layer that augments the expressiveness of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "the MAML update in MACAW. First, we start with the observation in past work (Finn et al., 2017b)", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 734 + ], + "score": 1.0, + "content": "that adding a ‘bias transformation’ to each layer improves the expressiveness of the MAML update.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 697, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "To understand the bias transform, we compare with a typical fully-connected layer, which has the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 161, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 161, + 107 + ], + "score": 1.0, + "content": "forward pass", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 120, + 342, + 135 + ], + "lines": [ + { + "bbox": [ + 268, + 120, + 342, + 135 + ], + "spans": [ + { + "bbox": [ + 268, + 120, + 342, + 135 + ], + "score": 0.89, + "content": "\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + \\mathbf { b } \\right)", + "type": "interline_equation", + "image_path": "570459d6f21bb99d0b0ab1aff7734187d08b534a960865c4fae0ef93e7358f36.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 268, + 120, + 342, + 135 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 143, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 132, + 156 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 145, + 140, + 153 + ], + "score": 0.55, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 143, + 276, + 156 + ], + "score": 1.0, + "content": "is the previous layer’s activations,", + "type": "text" + }, + { + "bbox": [ + 277, + 144, + 285, + 153 + ], + "score": 0.68, + "content": "\\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 143, + 357, + 156 + ], + "score": 1.0, + "content": "is the bias vector,", + "type": "text" + }, + { + "bbox": [ + 357, + 144, + 369, + 154 + ], + "score": 0.8, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 143, + 470, + 156 + ], + "score": 1.0, + "content": "is the weight matrix, and", + "type": "text" + }, + { + "bbox": [ + 470, + 145, + 478, + 155 + ], + "score": 0.58, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "is this", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 154, + 389, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 389, + 167 + ], + "score": 1.0, + "content": "layer’s activations. For a bias transformation layer, the forward pass is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 180, + 349, + 196 + ], + "lines": [ + { + "bbox": [ + 261, + 180, + 349, + 196 + ], + "spans": [ + { + "bbox": [ + 261, + 180, + 349, + 196 + ], + "score": 0.9, + "content": "\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + W ^ { b } \\mathbf { z } \\right)", + "type": "interline_equation", + "image_path": "5a72b45db102ca613fa04cb2d67797f366ca2b0a7146233b78e365875a92a01f.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 261, + 180, + 349, + 196 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 132, + 213 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 202, + 140, + 210 + ], + "score": 0.53, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 198, + 157, + 213 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 158, + 199, + 173, + 210 + ], + "score": 0.9, + "content": "W ^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 198, + 505, + 213 + ], + "score": 1.0, + "content": "are learnable parameters of the bias transformation. During adaptation, either only", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 209, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 148, + 224 + ], + "score": 1.0, + "content": "the vector", + "type": "text" + }, + { + "bbox": [ + 149, + 213, + 155, + 221 + ], + "score": 0.64, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 209, + 229, + 224 + ], + "score": 1.0, + "content": "or both the vector", + "type": "text" + }, + { + "bbox": [ + 229, + 213, + 236, + 221 + ], + "score": 0.63, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 209, + 315, + 224 + ], + "score": 1.0, + "content": "and the bias matrix", + "type": "text" + }, + { + "bbox": [ + 315, + 210, + 331, + 221 + ], + "score": 0.9, + "content": "W ^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 209, + 429, + 224 + ], + "score": 1.0, + "content": "are adapted. The vector", + "type": "text" + }, + { + "bbox": [ + 429, + 210, + 451, + 221 + ], + "score": 0.91, + "content": "\\mathbf { \\bar { \\boldsymbol { W } } } ^ { b } \\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 209, + 506, + 224 + ], + "score": 1.0, + "content": "has the same", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "dimensionality as the bias in the previous equation. This formulation does not increase the expressive", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 232, + 506, + 246 + ], + "score": 1.0, + "content": "power of the forward pass of the layer, but it does allow for a more expressive update of the ‘bias", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 242, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 137, + 257 + ], + "score": 1.0, + "content": "vector’", + "type": "text" + }, + { + "bbox": [ + 137, + 243, + 158, + 254 + ], + "score": 0.9, + "content": "W ^ { b } \\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 242, + 218, + 257 + ], + "score": 1.0, + "content": "(in the case of", + "type": "text" + }, + { + "bbox": [ + 219, + 244, + 286, + 255 + ], + "score": 0.92, + "content": "\\dim ( \\mathbf { z } ) = \\dim ( \\mathbf { b } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 242, + 304, + 257 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 304, + 243, + 339, + 254 + ], + "score": 0.92, + "content": "W ^ { b } = I", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 242, + 506, + 257 + ], + "score": 1.0, + "content": ", we recover the standard fully-connected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 254, + 136, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 136, + 268 + ], + "score": 1.0, + "content": "layer).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 418 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "score": 1.0, + "content": "For a weight transformation layer (used in MACAW), we extend the idea of computing the bias from a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "latent vector to the weight matrix itself. We now present the forward pass for a weight transformation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 174, + 307 + ], + "score": 1.0, + "content": "layer layer with", + "type": "text" + }, + { + "bbox": [ + 174, + 294, + 181, + 304 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 294, + 223, + 307 + ], + "score": 1.0, + "content": "input and", + "type": "text" + }, + { + "bbox": [ + 224, + 294, + 230, + 304 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 294, + 398, + 307 + ], + "score": 1.0, + "content": "output dimensions and latent dimension", + "type": "text" + }, + { + "bbox": [ + 398, + 296, + 404, + 304 + ], + "score": 0.55, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 294, + 486, + 307 + ], + "score": 1.0, + "content": ". First, we compute", + "type": "text" + }, + { + "bbox": [ + 487, + 295, + 505, + 304 + ], + "score": 0.83, + "content": "w =", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 304, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 131, + 317 + ], + "score": 0.87, + "content": "W ^ { \\mathrm { w t } } \\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 304, + 162, + 320 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 163, + 304, + 236, + 317 + ], + "score": 0.92, + "content": "W ^ { \\mathrm { w t } } \\in \\mathbf { \\mathbb { R } } ^ { ( d ^ { 2 } + d ) \\times c }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 304, + 277, + 320 + ], + "score": 1.0, + "content": ". The first", + "type": "text" + }, + { + "bbox": [ + 278, + 306, + 289, + 317 + ], + "score": 0.86, + "content": "d ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 304, + 352, + 320 + ], + "score": 1.0, + "content": "components of", + "type": "text" + }, + { + "bbox": [ + 353, + 308, + 362, + 317 + ], + "score": 0.76, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 304, + 449, + 320 + ], + "score": 1.0, + "content": "are reshaped into the", + "type": "text" + }, + { + "bbox": [ + 450, + 307, + 474, + 317 + ], + "score": 0.92, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 304, + 506, + 320 + ], + "score": 1.0, + "content": "weight", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 181, + 330 + ], + "score": 1.0, + "content": "matrix of the layer", + "type": "text" + }, + { + "bbox": [ + 182, + 318, + 198, + 328 + ], + "score": 0.87, + "content": "W ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 318, + 249, + 330 + ], + "score": 1.0, + "content": ", and the last", + "type": "text" + }, + { + "bbox": [ + 249, + 318, + 256, + 327 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 318, + 411, + 330 + ], + "score": 1.0, + "content": "components are used as the bias vector", + "type": "text" + }, + { + "bbox": [ + 411, + 318, + 421, + 328 + ], + "score": 0.83, + "content": "b ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 318, + 506, + 330 + ], + "score": 1.0, + "content": ". The forward pass is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 470, + 341 + ], + "score": 1.0, + "content": "then the same as a regular fully-connected layer, but using the computed matrix and bias", + "type": "text" + }, + { + "bbox": [ + 470, + 329, + 486, + 339 + ], + "score": 0.87, + "content": "W ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 338, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 117, + 350 + ], + "score": 0.85, + "content": "b ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 338, + 318, + 353 + ], + "score": 1.0, + "content": "instead of a fixed matrix and bias vector; that is", + "type": "text" + }, + { + "bbox": [ + 318, + 339, + 399, + 351 + ], + "score": 0.92, + "content": "y = \\bar { \\sigma } ( W ^ { * } \\mathbf { x } + \\mathbf { \\bar { b } } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 338, + 506, + 353 + ], + "score": 1.0, + "content": ". During adaptation, both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 174, + 363 + ], + "score": 1.0, + "content": "the latent vector", + "type": "text" + }, + { + "bbox": [ + 174, + 352, + 181, + 360 + ], + "score": 0.6, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 349, + 285, + 363 + ], + "score": 1.0, + "content": "and the transform matrix", + "type": "text" + }, + { + "bbox": [ + 285, + 351, + 305, + 361 + ], + "score": 0.85, + "content": "W ^ { \\mathrm { w t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 349, + 449, + 363 + ], + "score": 1.0, + "content": "are adapted. We note that adapting", + "type": "text" + }, + { + "bbox": [ + 449, + 352, + 456, + 361 + ], + "score": 0.52, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "enables the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 361, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 325, + 377 + ], + "score": 1.0, + "content": "post-adaptation weight matrix used in the forward pass,", + "type": "text" + }, + { + "bbox": [ + 325, + 361, + 344, + 374 + ], + "score": 0.89, + "content": "W ^ { * ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 362, + 506, + 377 + ], + "score": 1.0, + "content": ", to differ from the pre-adaptation weight", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 134, + 387 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 135, + 374, + 151, + 384 + ], + "score": 0.86, + "content": "W ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 374, + 319, + 387 + ], + "score": 1.0, + "content": "by a matrix of rank up to the dimension of", + "type": "text" + }, + { + "bbox": [ + 319, + 376, + 325, + 384 + ], + "score": 0.63, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 374, + 505, + 387 + ], + "score": 1.0, + "content": ", whereas gradient descent with normal layers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "makes rank-1 updates to weight matrices. We hypothesize it is this added expressivity that makes the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "weight transform layer effective. A comparison of MACAW with and without weight transformation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 407, + 291, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 291, + 419 + ], + "score": 1.0, + "content": "layers can be found in Figures 4-center and 6.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18 + }, + { + "type": "title", + "bbox": [ + 108, + 427, + 361, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 362, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 362, + 442 + ], + "score": 1.0, + "content": "C ADDITIONAL EXPERIMENTS AND ABLATIONS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 306, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 307, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 307, + 461 + ], + "score": 1.0, + "content": "C.1 WEIGHT TRANSFORM ABLATION STUDY", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 505, + 478 + ], + "score": 1.0, + "content": "In addition to the results shown in Figure 4 (center), we include an ablation of the weight transform", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "score": 1.0, + "content": "here for all tasks. Figure 5 shows these results. We find that across environments, the weight transform", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "plays a significant role in increasing training speed, stability, and even final performance. On the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "relatively simple cheetah direction benchmark, it does not affect the quality of the final meta-trained", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "agent, but it does improve the speed and stability of training. On the other three (more difficult) tasks,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "we see a much more noticeable affect in terms of both training stability as well as final performance.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 108, + 538, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Additionally, we investigate the effect of the weight transform in a few-shot image classification", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "setting. We use the 20-way 1-shot Omniglot digit classification setup (Lake et al., 2015), specifically", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "the train/val split used by (Vinyals et al., 2016) as implemented by Deleu et al. (2019). We compare", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 571, + 284, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 284, + 583 + ], + "score": 1.0, + "content": "three MLP models, all with 4 hidden layers:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 129, + 591, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 130, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 130, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "1. An MLP with weight transform layers of 128 hidden units and a latent layer dimension of", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 603, + 376, + 616 + ], + "spans": [ + { + "bbox": [ + 141, + 603, + 376, + 616 + ], + "score": 1.0, + "content": "32 (4,866,048 parameters; Weight Transform in Figure 6).", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 128, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 128, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "2. An MLP without weight transform layers, with 128 hidden units (152,596 parameters;", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 141, + 629, + 277, + 642 + ], + "spans": [ + { + "bbox": [ + 141, + 629, + 277, + 642 + ], + "score": 1.0, + "content": "No WT-Equal Width in Figure 6)", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 128, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 128, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "3. An MLP without weight transform layers, with 1150 hidden units (4,896,720 parameters;", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 141, + 655, + 281, + 669 + ], + "spans": [ + { + "bbox": [ + 141, + 655, + 281, + 669 + ], + "score": 1.0, + "content": "No WT-Equal Params in Figure 6)", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 39.5 + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "We find that the model with weight transform layers shows the best combination of fast convergence", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "and good asymptotic performance compared with baselines with regular fully-connected layers. No", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "WT-Equal Width has the same number of hidden units as the weight transform model (128), which", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "means the model has fewer parameters in total (because the weight transform layers include a larger", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "weight matrix). The No WT-Equal Params baseline uses wider hidden layers to equalize the number", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 45 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 26, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 95 + ], + "score": 1.0, + "content": "To understand the bias transform, we compare with a typical fully-connected layer, which has the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 161, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 161, + 107 + ], + "score": 1.0, + "content": "forward pass", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 81, + 505, + 107 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 268, + 120, + 342, + 135 + ], + "lines": [ + { + "bbox": [ + 268, + 120, + 342, + 135 + ], + "spans": [ + { + "bbox": [ + 268, + 120, + 342, + 135 + ], + "score": 0.89, + "content": "\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + \\mathbf { b } \\right)", + "type": "interline_equation", + "image_path": "570459d6f21bb99d0b0ab1aff7734187d08b534a960865c4fae0ef93e7358f36.jpg" + } + ] + } + ], + "index": 2, + "virtual_lines": [ + { + "bbox": [ + 268, + 120, + 342, + 135 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "text", + "bbox": [ + 105, + 143, + 505, + 166 + ], + "lines": [ + { + "bbox": [ + 106, + 143, + 505, + 156 + ], + "spans": [ + { + "bbox": [ + 106, + 143, + 132, + 156 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 145, + 140, + 153 + ], + "score": 0.55, + "content": "\\mathbf { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 141, + 143, + 276, + 156 + ], + "score": 1.0, + "content": "is the previous layer’s activations,", + "type": "text" + }, + { + "bbox": [ + 277, + 144, + 285, + 153 + ], + "score": 0.68, + "content": "\\mathbf { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 143, + 357, + 156 + ], + "score": 1.0, + "content": "is the bias vector,", + "type": "text" + }, + { + "bbox": [ + 357, + 144, + 369, + 154 + ], + "score": 0.8, + "content": "W", + "type": "inline_equation" + }, + { + "bbox": [ + 369, + 143, + 470, + 156 + ], + "score": 1.0, + "content": "is the weight matrix, and", + "type": "text" + }, + { + "bbox": [ + 470, + 145, + 478, + 155 + ], + "score": 0.58, + "content": "\\mathbf { y }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 143, + 505, + 156 + ], + "score": 1.0, + "content": "is this", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 154, + 389, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 389, + 167 + ], + "score": 1.0, + "content": "layer’s activations. For a bias transformation layer, the forward pass is", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 143, + 505, + 167 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 261, + 180, + 349, + 196 + ], + "lines": [ + { + "bbox": [ + 261, + 180, + 349, + 196 + ], + "spans": [ + { + "bbox": [ + 261, + 180, + 349, + 196 + ], + "score": 0.9, + "content": "\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + W ^ { b } \\mathbf { z } \\right)", + "type": "interline_equation", + "image_path": "5a72b45db102ca613fa04cb2d67797f366ca2b0a7146233b78e365875a92a01f.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 261, + 180, + 349, + 196 + ], + "spans": [], + "index": 5 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 199, + 505, + 266 + ], + "lines": [ + { + "bbox": [ + 105, + 198, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 105, + 198, + 132, + 213 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 202, + 140, + 210 + ], + "score": 0.53, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 198, + 157, + 213 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 158, + 199, + 173, + 210 + ], + "score": 0.9, + "content": "W ^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 198, + 505, + 213 + ], + "score": 1.0, + "content": "are learnable parameters of the bias transformation. During adaptation, either only", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 209, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 148, + 224 + ], + "score": 1.0, + "content": "the vector", + "type": "text" + }, + { + "bbox": [ + 149, + 213, + 155, + 221 + ], + "score": 0.64, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 155, + 209, + 229, + 224 + ], + "score": 1.0, + "content": "or both the vector", + "type": "text" + }, + { + "bbox": [ + 229, + 213, + 236, + 221 + ], + "score": 0.63, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 209, + 315, + 224 + ], + "score": 1.0, + "content": "and the bias matrix", + "type": "text" + }, + { + "bbox": [ + 315, + 210, + 331, + 221 + ], + "score": 0.9, + "content": "W ^ { b }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 209, + 429, + 224 + ], + "score": 1.0, + "content": "are adapted. The vector", + "type": "text" + }, + { + "bbox": [ + 429, + 210, + 451, + 221 + ], + "score": 0.91, + "content": "\\mathbf { \\bar { \\boldsymbol { W } } } ^ { b } \\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 209, + 506, + 224 + ], + "score": 1.0, + "content": "has the same", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 222, + 505, + 234 + ], + "score": 1.0, + "content": "dimensionality as the bias in the previous equation. This formulation does not increase the expressive", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 232, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 104, + 232, + 506, + 246 + ], + "score": 1.0, + "content": "power of the forward pass of the layer, but it does allow for a more expressive update of the ‘bias", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 242, + 506, + 257 + ], + "spans": [ + { + "bbox": [ + 104, + 242, + 137, + 257 + ], + "score": 1.0, + "content": "vector’", + "type": "text" + }, + { + "bbox": [ + 137, + 243, + 158, + 254 + ], + "score": 0.9, + "content": "W ^ { b } \\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 242, + 218, + 257 + ], + "score": 1.0, + "content": "(in the case of", + "type": "text" + }, + { + "bbox": [ + 219, + 244, + 286, + 255 + ], + "score": 0.92, + "content": "\\dim ( \\mathbf { z } ) = \\dim ( \\mathbf { b } )", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 242, + 304, + 257 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 304, + 243, + 339, + 254 + ], + "score": 0.92, + "content": "W ^ { b } = I", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 242, + 506, + 257 + ], + "score": 1.0, + "content": ", we recover the standard fully-connected", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 254, + 136, + 268 + ], + "spans": [ + { + "bbox": [ + 104, + 254, + 136, + 268 + ], + "score": 1.0, + "content": "layer).", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 198, + 506, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 418 + ], + "lines": [ + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 284 + ], + "score": 1.0, + "content": "For a weight transformation layer (used in MACAW), we extend the idea of computing the bias from a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "latent vector to the weight matrix itself. We now present the forward pass for a weight transformation", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 174, + 307 + ], + "score": 1.0, + "content": "layer layer with", + "type": "text" + }, + { + "bbox": [ + 174, + 294, + 181, + 304 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 294, + 223, + 307 + ], + "score": 1.0, + "content": "input and", + "type": "text" + }, + { + "bbox": [ + 224, + 294, + 230, + 304 + ], + "score": 0.8, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 231, + 294, + 398, + 307 + ], + "score": 1.0, + "content": "output dimensions and latent dimension", + "type": "text" + }, + { + "bbox": [ + 398, + 296, + 404, + 304 + ], + "score": 0.55, + "content": "c", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 294, + 486, + 307 + ], + "score": 1.0, + "content": ". First, we compute", + "type": "text" + }, + { + "bbox": [ + 487, + 295, + 505, + 304 + ], + "score": 0.83, + "content": "w =", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 304, + 506, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 306, + 131, + 317 + ], + "score": 0.87, + "content": "W ^ { \\mathrm { w t } } \\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 132, + 304, + 162, + 320 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 163, + 304, + 236, + 317 + ], + "score": 0.92, + "content": "W ^ { \\mathrm { w t } } \\in \\mathbf { \\mathbb { R } } ^ { ( d ^ { 2 } + d ) \\times c }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 304, + 277, + 320 + ], + "score": 1.0, + "content": ". The first", + "type": "text" + }, + { + "bbox": [ + 278, + 306, + 289, + 317 + ], + "score": 0.86, + "content": "d ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 304, + 352, + 320 + ], + "score": 1.0, + "content": "components of", + "type": "text" + }, + { + "bbox": [ + 353, + 308, + 362, + 317 + ], + "score": 0.76, + "content": "w", + "type": "inline_equation" + }, + { + "bbox": [ + 362, + 304, + 449, + 320 + ], + "score": 1.0, + "content": "are reshaped into the", + "type": "text" + }, + { + "bbox": [ + 450, + 307, + 474, + 317 + ], + "score": 0.92, + "content": "d \\times d", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 304, + 506, + 320 + ], + "score": 1.0, + "content": "weight", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 318, + 506, + 330 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 181, + 330 + ], + "score": 1.0, + "content": "matrix of the layer", + "type": "text" + }, + { + "bbox": [ + 182, + 318, + 198, + 328 + ], + "score": 0.87, + "content": "W ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 318, + 249, + 330 + ], + "score": 1.0, + "content": ", and the last", + "type": "text" + }, + { + "bbox": [ + 249, + 318, + 256, + 327 + ], + "score": 0.79, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 256, + 318, + 411, + 330 + ], + "score": 1.0, + "content": "components are used as the bias vector", + "type": "text" + }, + { + "bbox": [ + 411, + 318, + 421, + 328 + ], + "score": 0.83, + "content": "b ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 318, + 506, + 330 + ], + "score": 1.0, + "content": ". The forward pass is", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 328, + 506, + 341 + ], + "spans": [ + { + "bbox": [ + 105, + 328, + 470, + 341 + ], + "score": 1.0, + "content": "then the same as a regular fully-connected layer, but using the computed matrix and bias", + "type": "text" + }, + { + "bbox": [ + 470, + 329, + 486, + 339 + ], + "score": 0.87, + "content": "W ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 328, + 506, + 341 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 338, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 340, + 117, + 350 + ], + "score": 0.85, + "content": "b ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 338, + 318, + 353 + ], + "score": 1.0, + "content": "instead of a fixed matrix and bias vector; that is", + "type": "text" + }, + { + "bbox": [ + 318, + 339, + 399, + 351 + ], + "score": 0.92, + "content": "y = \\bar { \\sigma } ( W ^ { * } \\mathbf { x } + \\mathbf { \\bar { b } } ^ { * } )", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 338, + 506, + 353 + ], + "score": 1.0, + "content": ". During adaptation, both", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 349, + 506, + 363 + ], + "spans": [ + { + "bbox": [ + 105, + 349, + 174, + 363 + ], + "score": 1.0, + "content": "the latent vector", + "type": "text" + }, + { + "bbox": [ + 174, + 352, + 181, + 360 + ], + "score": 0.6, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 349, + 285, + 363 + ], + "score": 1.0, + "content": "and the transform matrix", + "type": "text" + }, + { + "bbox": [ + 285, + 351, + 305, + 361 + ], + "score": 0.85, + "content": "W ^ { \\mathrm { w t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 305, + 349, + 449, + 363 + ], + "score": 1.0, + "content": "are adapted. We note that adapting", + "type": "text" + }, + { + "bbox": [ + 449, + 352, + 456, + 361 + ], + "score": 0.52, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 349, + 506, + 363 + ], + "score": 1.0, + "content": "enables the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 361, + 506, + 377 + ], + "spans": [ + { + "bbox": [ + 104, + 362, + 325, + 377 + ], + "score": 1.0, + "content": "post-adaptation weight matrix used in the forward pass,", + "type": "text" + }, + { + "bbox": [ + 325, + 361, + 344, + 374 + ], + "score": 0.89, + "content": "W ^ { * ^ { \\prime } }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 362, + 506, + 377 + ], + "score": 1.0, + "content": ", to differ from the pre-adaptation weight", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 134, + 387 + ], + "score": 1.0, + "content": "matrix", + "type": "text" + }, + { + "bbox": [ + 135, + 374, + 151, + 384 + ], + "score": 0.86, + "content": "W ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 151, + 374, + 319, + 387 + ], + "score": 1.0, + "content": "by a matrix of rank up to the dimension of", + "type": "text" + }, + { + "bbox": [ + 319, + 376, + 325, + 384 + ], + "score": 0.63, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 326, + 374, + 505, + 387 + ], + "score": 1.0, + "content": ", whereas gradient descent with normal layers", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "makes rank-1 updates to weight matrices. We hypothesize it is this added expressivity that makes the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 397, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 409 + ], + "score": 1.0, + "content": "weight transform layer effective. A comparison of MACAW with and without weight transformation", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 407, + 291, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 291, + 419 + ], + "score": 1.0, + "content": "layers can be found in Figures 4-center and 6.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 18, + "bbox_fs": [ + 104, + 272, + 506, + 419 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 427, + 361, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 426, + 362, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 426, + 362, + 442 + ], + "score": 1.0, + "content": "C ADDITIONAL EXPERIMENTS AND ABLATIONS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 306, + 459 + ], + "lines": [ + { + "bbox": [ + 106, + 448, + 307, + 461 + ], + "spans": [ + { + "bbox": [ + 106, + 448, + 307, + 461 + ], + "score": 1.0, + "content": "C.1 WEIGHT TRANSFORM ABLATION STUDY", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 466, + 505, + 533 + ], + "lines": [ + { + "bbox": [ + 106, + 467, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 467, + 505, + 478 + ], + "score": 1.0, + "content": "In addition to the results shown in Figure 4 (center), we include an ablation of the weight transform", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 505, + 489 + ], + "score": 1.0, + "content": "here for all tasks. Figure 5 shows these results. We find that across environments, the weight transform", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 501 + ], + "score": 1.0, + "content": "plays a significant role in increasing training speed, stability, and even final performance. On the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 511 + ], + "score": 1.0, + "content": "relatively simple cheetah direction benchmark, it does not affect the quality of the final meta-trained", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "agent, but it does improve the speed and stability of training. On the other three (more difficult) tasks,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 506, + 534 + ], + "score": 1.0, + "content": "we see a much more noticeable affect in terms of both training stability as well as final performance.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 467, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 538, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 505, + 551 + ], + "score": 1.0, + "content": "Additionally, we investigate the effect of the weight transform in a few-shot image classification", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 505, + 562 + ], + "score": 1.0, + "content": "setting. We use the 20-way 1-shot Omniglot digit classification setup (Lake et al., 2015), specifically", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 505, + 573 + ], + "score": 1.0, + "content": "the train/val split used by (Vinyals et al., 2016) as implemented by Deleu et al. (2019). We compare", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 571, + 284, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 284, + 583 + ], + "score": 1.0, + "content": "three MLP models, all with 4 hidden layers:", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 537, + 505, + 583 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 591, + 505, + 668 + ], + "lines": [ + { + "bbox": [ + 130, + 592, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 130, + 592, + 505, + 605 + ], + "score": 1.0, + "content": "1. An MLP with weight transform layers of 128 hidden units and a latent layer dimension of", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 603, + 376, + 616 + ], + "spans": [ + { + "bbox": [ + 141, + 603, + 376, + 616 + ], + "score": 1.0, + "content": "32 (4,866,048 parameters; Weight Transform in Figure 6).", + "type": "text" + } + ], + "index": 38, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 618, + 506, + 631 + ], + "spans": [ + { + "bbox": [ + 128, + 618, + 506, + 631 + ], + "score": 1.0, + "content": "2. An MLP without weight transform layers, with 128 hidden units (152,596 parameters;", + "type": "text" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 629, + 277, + 642 + ], + "spans": [ + { + "bbox": [ + 141, + 629, + 277, + 642 + ], + "score": 1.0, + "content": "No WT-Equal Width in Figure 6)", + "type": "text" + } + ], + "index": 40, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 128, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "3. An MLP without weight transform layers, with 1150 hidden units (4,896,720 parameters;", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 655, + 281, + 669 + ], + "spans": [ + { + "bbox": [ + 141, + 655, + 281, + 669 + ], + "score": 1.0, + "content": "No WT-Equal Params in Figure 6)", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + } + ], + "index": 39.5, + "bbox_fs": [ + 128, + 592, + 506, + 669 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 677, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "We find that the model with weight transform layers shows the best combination of fast convergence", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "and good asymptotic performance compared with baselines with regular fully-connected layers. No", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 711 + ], + "score": 1.0, + "content": "WT-Equal Width has the same number of hidden units as the weight transform model (128), which", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "means the model has fewer parameters in total (because the weight transform layers include a larger", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "weight matrix). The No WT-Equal Params baseline uses wider hidden layers to equalize the number", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "score": 1.0, + "content": "of parameters in the entire model with the Weight Transform model. Somewhat surprisingly, the", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 336, + 480, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 480, + 349 + ], + "score": 1.0, + "content": "smaller baseline model (Equal Width) outperforms the larger baseline model (Equal Params).", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 45, + "bbox_fs": [ + 105, + 676, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 141, + 83, + 471, + 242 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 83, + 471, + 242 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 83, + 471, + 242 + ], + "spans": [ + { + "bbox": [ + 141, + 83, + 471, + 242 + ], + "score": 0.965, + "type": "image", + "image_path": "cedc853cfcacf9d7c0bdcc3294feab865d89f98d34b1c4415f03ae668dbfc96f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 141, + 83, + 471, + 136.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 141, + 136.0, + 471, + 189.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 141, + 189.0, + 471, + 242.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 258, + 506, + 303 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 258, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 506, + 270 + ], + "score": 1.0, + "content": "Figure 5: Ablating the weight transformation in MACAW on the MuJoCo benchmark environments.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "All networks have the same number of hidden units. Although MACAW is able to learn with regular", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "fully-connected layers, the weight transformation significantly improves performance on all tasks", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 292, + 264, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 264, + 303 + ], + "score": 1.0, + "content": "that require adaptation to unseen tasks.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 504, + 348 + ], + "lines": [ + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 324, + 506, + 339 + ], + "score": 1.0, + "content": "of parameters in the entire model with the Weight Transform model. Somewhat surprisingly, the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 336, + 480, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 480, + 349 + ], + "score": 1.0, + "content": "smaller baseline model (Equal Width) outperforms the larger baseline model (Equal Params).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 386 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "When using MAML-style meta-learners, it is important to consider that adding parameters to the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "score": 1.0, + "content": "model affects the expressiveness of both the forward computation of the model and the updates", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 376, + 353, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 353, + 388 + ], + "score": 1.0, + "content": "computable with a finite number of steps of gradient descent.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 297, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 297, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 297, + 405 + ], + "score": 1.0, + "content": "Generally, increasing the number of parameters", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 403, + 297, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 297, + 416 + ], + "score": 1.0, + "content": "in the model should improve the model’s ability", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 414, + 298, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 298, + 426 + ], + "score": 1.0, + "content": "to fit the training set (because the inner loop of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 425, + 297, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 297, + 437 + ], + "score": 1.0, + "content": "MAML is more expressive), which we observe", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 435, + 298, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 298, + 448 + ], + "score": 1.0, + "content": "here. Increasing the expressiveness of the in-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 447, + 298, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 298, + 460 + ], + "score": 1.0, + "content": "ner loop of MAML can also speed convergence,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 458, + 298, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 298, + 470 + ], + "score": 1.0, + "content": "which we also observe in Figure 6. However,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 469, + 298, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 298, + 481 + ], + "score": 1.0, + "content": "by simply adding neurons to a typical MLP, the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 481, + 298, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 298, + 492 + ], + "score": 1.0, + "content": "post-adaptation model tends to overfit the train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 492, + 297, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 297, + 502 + ], + "score": 1.0, + "content": "ing set more, as we see in Figure 6. On the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 297, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 297, + 514 + ], + "score": 1.0, + "content": "other hand, adding parameters through weight", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 513, + 297, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 297, + 525 + ], + "score": 1.0, + "content": "transformation layers increases expressiveness", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 523, + 297, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 297, + 536 + ], + "score": 1.0, + "content": "of the adaptation step by enabling weight", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 535, + 297, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 297, + 547 + ], + "score": 1.0, + "content": "updates with rank greater than 1 without", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 546, + 297, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 297, + 557 + ], + "score": 1.0, + "content": "changing the expressiveness of the forward", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 557, + 220, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 220, + 568 + ], + "score": 1.0, + "content": "computation of the model.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 19.5 + }, + { + "type": "image", + "bbox": [ + 306, + 395, + 502, + 523 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 306, + 395, + 502, + 523 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 306, + 395, + 502, + 523 + ], + "spans": [ + { + "bbox": [ + 306, + 395, + 502, + 523 + ], + "score": 0.966, + "type": "image", + "image_path": "bd1149db91abb6b55b7be7dced214bd043f024408c107192614d31e935ae5407.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 306, + 395, + 502, + 407.8 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 306, + 407.8, + 502, + 420.6 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 306, + 420.6, + 502, + 433.40000000000003 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 306, + 433.40000000000003, + 502, + 446.20000000000005 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 306, + 446.20000000000005, + 502, + 459.00000000000006 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 306, + 459.00000000000006, + 502, + 471.80000000000007 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 306, + 471.80000000000007, + 502, + 484.6000000000001 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 306, + 484.6000000000001, + 502, + 497.4000000000001 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 306, + 497.4000000000001, + 502, + 510.2000000000001 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 306, + 510.2000000000001, + 502, + 523.0000000000001 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 533, + 505, + 567 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 304, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "Figure 6: Faster convergence provided by the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 304, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 304, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "weight transform layer (orange) on Omniglot 20-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 303, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 303, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "way 1-shot image classification (Lake et al., 2015).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "index": 35.75 + }, + { + "type": "title", + "bbox": [ + 106, + 575, + 264, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 250, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 250, + 588 + ], + "score": 1.0, + "content": "C.2 ONLINE FINE-TUNING FOR", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 586, + 265, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 265, + 598 + ], + "score": 1.0, + "content": "OUT-OF-DISTRIBUTION TEST TASKS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "In some cases, it may be necessary or desirable to perform online fine-tuning after the initial offline", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "score": 1.0, + "content": "adaptation step. This is the fully offline meta-RL problem with online fine-tuning described in Section", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "3, where an algorithm is given a small amount of initial adaptation data from the test task, just as in", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "score": 1.0, + "content": "the fully offline setting, and then is able to interact with the environment to collect additional training", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "data and perform on-policy updates. This ability to continually improve with additional training after", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 659, + 507, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 507, + 673 + ], + "score": 1.0, + "content": "the initial offline adaptation step is what makes a consistent meta-reinforcement learner advantageous.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "This hybrid setting (offline training with additional online fine-tuning) is known to be extremely", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "challenging in traditional reinforcement learning. These difficulties are clearly documented by recent", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "work (Nair et al., 2020). In short, this setting is challenging in traditional RL because while offline", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "pre-training might produce a policy that performs well, online fine-tuning often leads to a significant", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "drop in initial performance, which can take a very long time to recover from (see Nair et al. (2020)).", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 51 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 141, + 83, + 471, + 242 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 83, + 471, + 242 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 83, + 471, + 242 + ], + "spans": [ + { + "bbox": [ + 141, + 83, + 471, + 242 + ], + "score": 0.965, + "type": "image", + "image_path": "cedc853cfcacf9d7c0bdcc3294feab865d89f98d34b1c4415f03ae668dbfc96f.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 141, + 83, + 471, + 136.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 141, + 136.0, + 471, + 189.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 141, + 189.0, + 471, + 242.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 258, + 506, + 303 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 258, + 506, + 270 + ], + "spans": [ + { + "bbox": [ + 106, + 258, + 506, + 270 + ], + "score": 1.0, + "content": "Figure 5: Ablating the weight transformation in MACAW on the MuJoCo benchmark environments.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "All networks have the same number of hidden units. Although MACAW is able to learn with regular", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 105, + 280, + 505, + 293 + ], + "score": 1.0, + "content": "fully-connected layers, the weight transformation significantly improves performance on all tasks", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 292, + 264, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 264, + 303 + ], + "score": 1.0, + "content": "that require adaptation to unseen tasks.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + } + ], + "index": 2.75 + }, + { + "type": "text", + "bbox": [ + 107, + 325, + 504, + 348 + ], + "lines": [], + "index": 7.5, + "bbox_fs": [ + 105, + 324, + 506, + 349 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 505, + 386 + ], + "lines": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "spans": [ + { + "bbox": [ + 106, + 353, + 505, + 365 + ], + "score": 1.0, + "content": "When using MAML-style meta-learners, it is important to consider that adding parameters to the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 365, + 505, + 376 + ], + "score": 1.0, + "content": "model affects the expressiveness of both the forward computation of the model and the updates", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 376, + 353, + 388 + ], + "spans": [ + { + "bbox": [ + 106, + 376, + 353, + 388 + ], + "score": 1.0, + "content": "computable with a finite number of steps of gradient descent.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 353, + 505, + 388 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 297, + 568 + ], + "lines": [ + { + "bbox": [ + 106, + 392, + 297, + 405 + ], + "spans": [ + { + "bbox": [ + 106, + 392, + 297, + 405 + ], + "score": 1.0, + "content": "Generally, increasing the number of parameters", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 403, + 297, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 297, + 416 + ], + "score": 1.0, + "content": "in the model should improve the model’s ability", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 414, + 298, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 414, + 298, + 426 + ], + "score": 1.0, + "content": "to fit the training set (because the inner loop of", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 425, + 297, + 437 + ], + "spans": [ + { + "bbox": [ + 106, + 425, + 297, + 437 + ], + "score": 1.0, + "content": "MAML is more expressive), which we observe", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 435, + 298, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 298, + 448 + ], + "score": 1.0, + "content": "here. Increasing the expressiveness of the in-", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 447, + 298, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 298, + 460 + ], + "score": 1.0, + "content": "ner loop of MAML can also speed convergence,", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 458, + 298, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 458, + 298, + 470 + ], + "score": 1.0, + "content": "which we also observe in Figure 6. However,", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 469, + 298, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 298, + 481 + ], + "score": 1.0, + "content": "by simply adding neurons to a typical MLP, the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 481, + 298, + 492 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 298, + 492 + ], + "score": 1.0, + "content": "post-adaptation model tends to overfit the train-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 492, + 297, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 297, + 502 + ], + "score": 1.0, + "content": "ing set more, as we see in Figure 6. On the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 501, + 297, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 297, + 514 + ], + "score": 1.0, + "content": "other hand, adding parameters through weight", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 513, + 297, + 525 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 297, + 525 + ], + "score": 1.0, + "content": "transformation layers increases expressiveness", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 523, + 297, + 536 + ], + "spans": [ + { + "bbox": [ + 106, + 523, + 297, + 536 + ], + "score": 1.0, + "content": "of the adaptation step by enabling weight", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 535, + 297, + 547 + ], + "spans": [ + { + "bbox": [ + 105, + 535, + 297, + 547 + ], + "score": 1.0, + "content": "updates with rank greater than 1 without", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 546, + 297, + 557 + ], + "spans": [ + { + "bbox": [ + 106, + 546, + 297, + 557 + ], + "score": 1.0, + "content": "changing the expressiveness of the forward", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 557, + 220, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 557, + 220, + 568 + ], + "score": 1.0, + "content": "computation of the model.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 392, + 298, + 568 + ] + }, + { + "type": "image", + "bbox": [ + 306, + 395, + 502, + 523 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 306, + 395, + 502, + 523 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 306, + 395, + 502, + 523 + ], + "spans": [ + { + "bbox": [ + 306, + 395, + 502, + 523 + ], + "score": 0.966, + "type": "image", + "image_path": "bd1149db91abb6b55b7be7dced214bd043f024408c107192614d31e935ae5407.jpg" + } + ] + } + ], + "index": 32.5, + "virtual_lines": [ + { + "bbox": [ + 306, + 395, + 502, + 407.8 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 306, + 407.8, + 502, + 420.6 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 306, + 420.6, + 502, + 433.40000000000003 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 306, + 433.40000000000003, + 502, + 446.20000000000005 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 306, + 446.20000000000005, + 502, + 459.00000000000006 + ], + "spans": [], + "index": 32 + }, + { + "bbox": [ + 306, + 459.00000000000006, + 502, + 471.80000000000007 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 306, + 471.80000000000007, + 502, + 484.6000000000001 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 306, + 484.6000000000001, + 502, + 497.4000000000001 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 306, + 497.4000000000001, + 502, + 510.2000000000001 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 306, + 510.2000000000001, + 502, + 523.0000000000001 + ], + "spans": [], + "index": 37 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 304, + 533, + 505, + 567 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 304, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 304, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "Figure 6: Faster convergence provided by the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 304, + 544, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 304, + 544, + 505, + 556 + ], + "score": 1.0, + "content": "weight transform layer (orange) on Omniglot 20-", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 303, + 555, + 505, + 567 + ], + "spans": [ + { + "bbox": [ + 303, + 555, + 505, + 567 + ], + "score": 1.0, + "content": "way 1-shot image classification (Lake et al., 2015).", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "index": 35.75 + }, + { + "type": "title", + "bbox": [ + 106, + 575, + 264, + 597 + ], + "lines": [ + { + "bbox": [ + 105, + 574, + 250, + 588 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 250, + 588 + ], + "score": 1.0, + "content": "C.2 ONLINE FINE-TUNING FOR", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 586, + 265, + 598 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 265, + 598 + ], + "score": 1.0, + "content": "OUT-OF-DISTRIBUTION TEST TASKS", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 106, + 605, + 505, + 671 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 617 + ], + "score": 1.0, + "content": "In some cases, it may be necessary or desirable to perform online fine-tuning after the initial offline", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "spans": [ + { + "bbox": [ + 106, + 616, + 504, + 627 + ], + "score": 1.0, + "content": "adaptation step. This is the fully offline meta-RL problem with online fine-tuning described in Section", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 505, + 639 + ], + "score": 1.0, + "content": "3, where an algorithm is given a small amount of initial adaptation data from the test task, just as in", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "score": 1.0, + "content": "the fully offline setting, and then is able to interact with the environment to collect additional training", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 506, + 661 + ], + "score": 1.0, + "content": "data and perform on-policy updates. This ability to continually improve with additional training after", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 659, + 507, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 507, + 673 + ], + "score": 1.0, + "content": "the initial offline adaptation step is what makes a consistent meta-reinforcement learner advantageous.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 45.5, + "bbox_fs": [ + 105, + 604, + 507, + 673 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "This hybrid setting (offline training with additional online fine-tuning) is known to be extremely", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "challenging in traditional reinforcement learning. These difficulties are clearly documented by recent", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "work (Nair et al., 2020). In short, this setting is challenging in traditional RL because while offline", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "pre-training might produce a policy that performs well, online fine-tuning often leads to a significant", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "drop in initial performance, which can take a very long time to recover from (see Nair et al. (2020)).", + "type": "text" + } + ], + "index": 53 + } + ], + "index": 51, + "bbox_fs": [ + 105, + 676, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 147, + 81, + 464, + 144 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 147, + 81, + 464, + 144 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 81, + 464, + 144 + ], + "spans": [ + { + "bbox": [ + 147, + 81, + 464, + 144 + ], + "score": 0.974, + "html": "
Additional Env. StepsOffline PEARL+FTMACAW
RewardImprovementRewardImprovement
0-553.4 (21.2)-323.1 (42.9)
20k-565.0 (4.7)-11.5 (3.5)-279.1 (16.8)44.0 (14.5)
200k-533.6 (19.8)19.8 (3.7)-272.0 (15.2)51.1 (12.7)
", + "type": "table", + "image_path": "d9bc753cc8cc5d60e547b31c73d1c4d8b2ae0f138dc0ddd9ea045ed160b56787.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 81, + 464, + 102.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 102.0, + 464, + 123.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 123.0, + 464, + 144.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 468, + 164 + ], + "score": 1.0, + "content": "Table 1: Absolute reward as well as improvement (in terms of reward) of Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 468, + 152, + 487, + 162 + ], + "score": 0.49, + "content": "+ \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 215, + 175 + ], + "score": 1.0, + "content": "MACAW after 0, 20k, and", + "type": "text" + }, + { + "bbox": [ + 215, + 163, + 237, + 173 + ], + "score": 0.64, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "additional environment steps are gathered and used for online fine", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 173, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 186 + ], + "score": 1.0, + "content": "tuning. Standard errors of the mean over the 13 test tasks are reported in parentheses. Averages are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 185, + 504, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 504, + 196 + ], + "score": 1.0, + "content": "taken over 10 rollouts of each policy. We find that MACAW achieves both better out-of-distribution", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "performance before online training as well as faster improvement during online fine-tuning. Note", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 185, + 219 + ], + "score": 1.0, + "content": "that Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 186, + 207, + 204, + 217 + ], + "score": 0.44, + "content": "+ \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 205, + 487, + 219 + ], + "score": 1.0, + "content": "experiences an initial drop in average performance on the test task after", + "type": "text" + }, + { + "bbox": [ + 488, + 207, + 505, + 217 + ], + "score": 0.45, + "content": "2 0 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 218, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 230 + ], + "score": 1.0, + "content": "steps, compared with the performance of the policy conditioned only on the initial batch of offline", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 228, + 455, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 455, + 240 + ], + "score": 1.0, + "content": "data. A similar effect has been reported in recent work in offline RL (Nair et al., 2020).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 261, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "score": 1.0, + "content": "In many cases, online fine-tuning can take a very long time to recover the performance of the offline-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "only policy, if it does so at all. In offline meta-RL, we have a similar challenge; an offline meta-RL", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "algorithm must not only meta-train for good performance on a single batch of offline test data, but it", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "score": 1.0, + "content": "must also learn a set of parameters that enables fine-tuning to make productive updates to its policy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 318 + ], + "score": 1.0, + "content": "and/or value function without completely destroying the meta-learned knowledge about the task", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 315, + 158, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 158, + 328 + ], + "score": 1.0, + "content": "distribution.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 104, + 331, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 505, + 347 + ], + "score": 1.0, + "content": "In this section, we use a hybrid setting as described above to evaluate not only MACAW’s consistency", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 504, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 504, + 357 + ], + "score": 1.0, + "content": "(its ability to continue to improve after an initial offline adaptation step), but its ability to continue", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 367 + ], + "score": 1.0, + "content": "to improve even when the test task distribution differs from the train distribution. Because", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 365, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 379 + ], + "score": 1.0, + "content": "significant distribution shift means that some train tasks are irrelevant, or even detrimental to test", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "score": 1.0, + "content": "performance, this setting is very difficult. In order to make a meaningful comparison, we compare", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 208, + 401 + ], + "score": 1.0, + "content": "with an \"Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 208, + 389, + 217, + 398 + ], + "score": 0.7, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 387, + 335, + 401 + ], + "score": 1.0, + "content": "fine-tuning\" (Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 335, + 388, + 354, + 398 + ], + "score": 0.28, + "content": "{ \\bf \\Phi } + \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 387, + 505, + 401 + ], + "score": 1.0, + "content": ") algorithm, which is also technically", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "consistent (because it essentially performs the SAC algorithm on the test task after the initial task", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "inference step). However, we hypothesize that MACAW will have an advantage over this Offline", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 138, + 433 + ], + "score": 1.0, + "content": "PEARL", + "type": "text" + }, + { + "bbox": [ + 139, + 421, + 158, + 432 + ], + "score": 0.32, + "content": "+ \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "algorithm because while both algorithms are consistent, MACAW explicitly trains for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 432, + 475, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 475, + 445 + ], + "score": 1.0, + "content": "good fine-tunability with gradient descent, unlike task inference-based meta-RL algorithms.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 462 + ], + "score": 1.0, + "content": "The training procedure for Offline PEARL+FT is the same at the regular Offline PEARL training", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 507, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 507, + 472 + ], + "score": 1.0, + "content": "procedure. However, at test time, after receiving an initial small batch of offline data for task inference,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "score": 1.0, + "content": "we alternative between performing rollouts of the task-conditioned policy to collect additional data", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "from the test task and perform gradient descent on the PEARL policy and value function objectives", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 493, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 505 + ], + "score": 1.0, + "content": "with this off-policy data. Similarly, for MACAW test time involves first using the small batch of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "offline test task data to take an initial gradient step on the value and policy loss functions (Eqns 2", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "and 3), then alternating between rolling out the adapted policy and taking more steps of gradient", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 525, + 235, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 235, + 537 + ], + "score": 1.0, + "content": "descent on the MACAW losses.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "The specific experimental setup is as follows. We partition the individual tasks in the Cheetah-Vel", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 565 + ], + "score": 1.0, + "content": "problem such that training tasks correspond to target velocities in the range [0,2] and test tasks", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "correspond to target velocities in the range [2,3]. After meta-training, for each test task, we provide", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 574, + 507, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 507, + 589 + ], + "score": 1.0, + "content": "the algorithm with a small batch of offline data for adaptation just as in the fully offline setting.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 370, + 598 + ], + "score": 1.0, + "content": "However, we allow the algorithm to then collect and train on up to", + "type": "text" + }, + { + "bbox": [ + 371, + 586, + 392, + 597 + ], + "score": 0.4, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "additional interactions from", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "the environment. Both algorithms alternate between sampling a single trajectory (200 environment", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 608, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 622 + ], + "score": 1.0, + "content": "interactions) and performing 100 steps of gradient descent on the aggregate buffer of data for the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "test task, which contains both the initial offline batch of data as well as all online data collected so", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 352, + 641 + ], + "score": 1.0, + "content": "far. We evaluate both algorithms on their performance after", + "type": "text" + }, + { + "bbox": [ + 353, + 630, + 370, + 641 + ], + "score": 0.39, + "content": "2 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 631, + 388, + 641 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 388, + 630, + 411, + 640 + ], + "score": 0.31, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 631, + 505, + 641 + ], + "score": 1.0, + "content": "additional interactions", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "with the environment. The results of this experiment are reported in Table 1. We observe that", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 653, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 663 + ], + "score": 1.0, + "content": "MACAW achieves both higher absolute reward on the OOD test tasks as well as faster relative", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 663, + 497, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 497, + 675 + ], + "score": 1.0, + "content": "improvement over the offline-only adapted policy compared to the Offline PEARL+FT baseline.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 108, + 681, + 277, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 280, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 280, + 694 + ], + "score": 1.0, + "content": "C.3 METAWORLD ML45 BENCHMARK", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "As an additional experiment, we test the training and generalization capabilities of MACAW on", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "a much broader distribution of tasks, and where test tasks differ significantly from training tasks", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "(e.g. picking up an object as opposed to opening a window or hammering a nail). Recently,", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 107, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 147, + 81, + 464, + 144 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 147, + 81, + 464, + 144 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 81, + 464, + 144 + ], + "spans": [ + { + "bbox": [ + 147, + 81, + 464, + 144 + ], + "score": 0.974, + "html": "
Additional Env. StepsOffline PEARL+FTMACAW
RewardImprovementRewardImprovement
0-553.4 (21.2)-323.1 (42.9)
20k-565.0 (4.7)-11.5 (3.5)-279.1 (16.8)44.0 (14.5)
200k-533.6 (19.8)19.8 (3.7)-272.0 (15.2)51.1 (12.7)
", + "type": "table", + "image_path": "d9bc753cc8cc5d60e547b31c73d1c4d8b2ae0f138dc0ddd9ea045ed160b56787.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 147, + 81, + 464, + 102.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 147, + 102.0, + 464, + 123.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 147, + 123.0, + 464, + 144.0 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 505, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 152, + 505, + 164 + ], + "spans": [ + { + "bbox": [ + 105, + 152, + 468, + 164 + ], + "score": 1.0, + "content": "Table 1: Absolute reward as well as improvement (in terms of reward) of Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 468, + 152, + 487, + 162 + ], + "score": 0.49, + "content": "+ \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 152, + 505, + 164 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 162, + 505, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 162, + 215, + 175 + ], + "score": 1.0, + "content": "MACAW after 0, 20k, and", + "type": "text" + }, + { + "bbox": [ + 215, + 163, + 237, + 173 + ], + "score": 0.64, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 162, + 505, + 175 + ], + "score": 1.0, + "content": "additional environment steps are gathered and used for online fine", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 173, + 505, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 505, + 186 + ], + "score": 1.0, + "content": "tuning. Standard errors of the mean over the 13 test tasks are reported in parentheses. Averages are", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 185, + 504, + 196 + ], + "spans": [ + { + "bbox": [ + 106, + 185, + 504, + 196 + ], + "score": 1.0, + "content": "taken over 10 rollouts of each policy. We find that MACAW achieves both better out-of-distribution", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 195, + 506, + 208 + ], + "score": 1.0, + "content": "performance before online training as well as faster improvement during online fine-tuning. Note", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 205, + 505, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 205, + 185, + 219 + ], + "score": 1.0, + "content": "that Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 186, + 207, + 204, + 217 + ], + "score": 0.44, + "content": "+ \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 205, + 487, + 219 + ], + "score": 1.0, + "content": "experiences an initial drop in average performance on the test task after", + "type": "text" + }, + { + "bbox": [ + 488, + 207, + 505, + 217 + ], + "score": 0.45, + "content": "2 0 \\mathrm { k }", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 218, + 506, + 230 + ], + "spans": [ + { + "bbox": [ + 105, + 218, + 506, + 230 + ], + "score": 1.0, + "content": "steps, compared with the performance of the policy conditioned only on the initial batch of offline", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 228, + 455, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 455, + 240 + ], + "score": 1.0, + "content": "data. A similar effect has been reported in recent work in offline RL (Nair et al., 2020).", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 152, + 506, + 240 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 261, + 505, + 327 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 506, + 274 + ], + "score": 1.0, + "content": "In many cases, online fine-tuning can take a very long time to recover the performance of the offline-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 106, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "only policy, if it does so at all. In offline meta-RL, we have a similar challenge; an offline meta-RL", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "algorithm must not only meta-train for good performance on a single batch of offline test data, but it", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 105, + 293, + 505, + 307 + ], + "score": 1.0, + "content": "must also learn a set of parameters that enables fine-tuning to make productive updates to its policy", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 304, + 506, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 506, + 318 + ], + "score": 1.0, + "content": "and/or value function without completely destroying the meta-learned knowledge about the task", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 315, + 158, + 328 + ], + "spans": [ + { + "bbox": [ + 106, + 315, + 158, + 328 + ], + "score": 1.0, + "content": "distribution.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 261, + 506, + 328 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 333, + 505, + 443 + ], + "lines": [ + { + "bbox": [ + 104, + 331, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 104, + 331, + 505, + 347 + ], + "score": 1.0, + "content": "In this section, we use a hybrid setting as described above to evaluate not only MACAW’s consistency", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 344, + 504, + 357 + ], + "spans": [ + { + "bbox": [ + 105, + 344, + 504, + 357 + ], + "score": 1.0, + "content": "(its ability to continue to improve after an initial offline adaptation step), but its ability to continue", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 355, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 355, + 506, + 367 + ], + "score": 1.0, + "content": "to improve even when the test task distribution differs from the train distribution. Because", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 365, + 506, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 365, + 506, + 379 + ], + "score": 1.0, + "content": "significant distribution shift means that some train tasks are irrelevant, or even detrimental to test", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 506, + 390 + ], + "score": 1.0, + "content": "performance, this setting is very difficult. In order to make a meaningful comparison, we compare", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 387, + 505, + 401 + ], + "spans": [ + { + "bbox": [ + 105, + 387, + 208, + 401 + ], + "score": 1.0, + "content": "with an \"Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 208, + 389, + 217, + 398 + ], + "score": 0.7, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 387, + 335, + 401 + ], + "score": 1.0, + "content": "fine-tuning\" (Offline PEARL", + "type": "text" + }, + { + "bbox": [ + 335, + 388, + 354, + 398 + ], + "score": 0.28, + "content": "{ \\bf \\Phi } + \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 387, + 505, + 401 + ], + "score": 1.0, + "content": ") algorithm, which is also technically", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "consistent (because it essentially performs the SAC algorithm on the test task after the initial task", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "spans": [ + { + "bbox": [ + 105, + 410, + 505, + 422 + ], + "score": 1.0, + "content": "inference step). However, we hypothesize that MACAW will have an advantage over this Offline", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 421, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 106, + 421, + 138, + 433 + ], + "score": 1.0, + "content": "PEARL", + "type": "text" + }, + { + "bbox": [ + 139, + 421, + 158, + 432 + ], + "score": 0.32, + "content": "+ \\mathrm { F T }", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 421, + 505, + 433 + ], + "score": 1.0, + "content": "algorithm because while both algorithms are consistent, MACAW explicitly trains for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 432, + 475, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 432, + 475, + 445 + ], + "score": 1.0, + "content": "good fine-tunability with gradient descent, unlike task inference-based meta-RL algorithms.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 21.5, + "bbox_fs": [ + 104, + 331, + 506, + 445 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 448, + 505, + 536 + ], + "lines": [ + { + "bbox": [ + 105, + 447, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 505, + 462 + ], + "score": 1.0, + "content": "The training procedure for Offline PEARL+FT is the same at the regular Offline PEARL training", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 460, + 507, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 460, + 507, + 472 + ], + "score": 1.0, + "content": "procedure. However, at test time, after receiving an initial small batch of offline data for task inference,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 471, + 505, + 482 + ], + "score": 1.0, + "content": "we alternative between performing rollouts of the task-conditioned policy to collect additional data", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 493 + ], + "score": 1.0, + "content": "from the test task and perform gradient descent on the PEARL policy and value function objectives", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 493, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 506, + 505 + ], + "score": 1.0, + "content": "with this off-policy data. Similarly, for MACAW test time involves first using the small batch of", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "offline test task data to take an initial gradient step on the value and policy loss functions (Eqns 2", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "spans": [ + { + "bbox": [ + 105, + 514, + 506, + 528 + ], + "score": 1.0, + "content": "and 3), then alternating between rolling out the adapted policy and taking more steps of gradient", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 525, + 235, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 525, + 235, + 537 + ], + "score": 1.0, + "content": "descent on the MACAW losses.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 447, + 507, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 505, + 674 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "The specific experimental setup is as follows. We partition the individual tasks in the Cheetah-Vel", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 554, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 565 + ], + "score": 1.0, + "content": "problem such that training tasks correspond to target velocities in the range [0,2] and test tasks", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "correspond to target velocities in the range [2,3]. After meta-training, for each test task, we provide", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 574, + 507, + 589 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 507, + 589 + ], + "score": 1.0, + "content": "the algorithm with a small batch of offline data for adaptation just as in the fully offline setting.", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 370, + 598 + ], + "score": 1.0, + "content": "However, we allow the algorithm to then collect and train on up to", + "type": "text" + }, + { + "bbox": [ + 371, + 586, + 392, + 597 + ], + "score": 0.4, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "additional interactions from", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 506, + 610 + ], + "score": 1.0, + "content": "the environment. Both algorithms alternate between sampling a single trajectory (200 environment", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 608, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 608, + 506, + 622 + ], + "score": 1.0, + "content": "interactions) and performing 100 steps of gradient descent on the aggregate buffer of data for the", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 505, + 631 + ], + "score": 1.0, + "content": "test task, which contains both the initial offline batch of data as well as all online data collected so", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 630, + 505, + 641 + ], + "spans": [ + { + "bbox": [ + 106, + 631, + 352, + 641 + ], + "score": 1.0, + "content": "far. We evaluate both algorithms on their performance after", + "type": "text" + }, + { + "bbox": [ + 353, + 630, + 370, + 641 + ], + "score": 0.39, + "content": "2 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 370, + 631, + 388, + 641 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 388, + 630, + 411, + 640 + ], + "score": 0.31, + "content": "2 0 0 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 631, + 505, + 641 + ], + "score": 1.0, + "content": "additional interactions", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 505, + 653 + ], + "score": 1.0, + "content": "with the environment. The results of this experiment are reported in Table 1. We observe that", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 653, + 505, + 663 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 663 + ], + "score": 1.0, + "content": "MACAW achieves both higher absolute reward on the OOD test tasks as well as faster relative", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 663, + 497, + 675 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 497, + 675 + ], + "score": 1.0, + "content": "improvement over the offline-only adapted policy compared to the Offline PEARL+FT baseline.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 542, + 507, + 675 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 681, + 277, + 692 + ], + "lines": [ + { + "bbox": [ + 106, + 680, + 280, + 694 + ], + "spans": [ + { + "bbox": [ + 106, + 680, + 280, + 694 + ], + "score": 1.0, + "content": "C.3 METAWORLD ML45 BENCHMARK", + "type": "text" + } + ], + "index": 47 + } + ], + "index": 47 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "As an additional experiment, we test the training and generalization capabilities of MACAW on", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 104, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "a much broader distribution of tasks, and where test tasks differ significantly from training tasks", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 734 + ], + "score": 1.0, + "content": "(e.g. picking up an object as opposed to opening a window or hammering a nail). Recently,", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 49, + "bbox_fs": [ + 104, + 698, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 214, + 84, + 397, + 204 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 214, + 84, + 397, + 204 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 214, + 84, + 397, + 204 + ], + "spans": [ + { + "bbox": [ + 214, + 84, + 397, + 204 + ], + "score": 0.969, + "type": "image", + "image_path": "9197515ff40248fcc48afe703179c7e00b59ad9d2ce4621a34699a9a92cb1b05.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 214, + 84, + 397, + 97.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 214, + 97.33333333333333, + 397, + 110.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 214, + 110.66666666666666, + 397, + 123.99999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 214, + 123.99999999999999, + 397, + 137.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 214, + 137.33333333333331, + 397, + 150.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 214, + 150.66666666666666, + 397, + 164.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 214, + 164.0, + 397, + 177.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 214, + 177.33333333333334, + 397, + 190.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 214, + 190.66666666666669, + 397, + 204.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 505, + 248 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 320, + 229 + ], + "score": 1.0, + "content": "Figure 7: Average success rates of MACAW, PEARL, and", + "type": "text" + }, + { + "bbox": [ + 320, + 218, + 343, + 227 + ], + "score": 0.47, + "content": "\\mathrm { M T } +", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "fine-tuning (with 20 fine-tuning steps) on the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "5 test tasks the Meta-World ML45 suite of continuous control tasks. Dashed line shows final PEARL average", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 241, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 170, + 250 + ], + "score": 1.0, + "content": "success rate after", + "type": "text" + }, + { + "bbox": [ + 171, + 238, + 187, + 248 + ], + "score": 0.53, + "content": "1 0 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 236, + 241, + 250 + ], + "score": 1.0, + "content": "training steps.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "Yu et al. (2019) proposed the Meta-World (Yu et al., 2019) suite of continuous control benchmark", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "environments as a more realistic distribution of tasks for multi-task and meta-learning algorithms. This", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "benchmark includes 45 meta-training tasks and 5 meta-testing tasks. The results of this experiment", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 303, + 221, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 221, + 313 + ], + "score": 1.0, + "content": "are summarized in Figure 7.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "We find that all methods are able to make meaningful progress on the test tasks, with gradient-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 221, + 343 + ], + "score": 1.0, + "content": "methods (MACAW and MT", + "type": "text" + }, + { + "bbox": [ + 221, + 331, + 230, + 340 + ], + "score": 0.62, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "fine tune) learning much more quickly than PEARL. MACAW does", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "score": 1.0, + "content": "achieve a quite high level of performance quite early on in training; however, it begins to overfit with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "score": 1.0, + "content": "further training. In the regime where periodic online evaluations are available for the purpose of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "early stopping, we could avoid this issue, in which case MACAW would slightly underperform the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "multi-task learning baseline. A possible reason for some inconsistency between the performance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 384, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 398 + ], + "score": 1.0, + "content": "of each algorithm on Meta-World and the results reported in Figure 3 is the difficult scaling of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "rewards in the current version of the Meta-World benchmark. Rewards can vary by 5 orders of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "magnitude, from negative values to values on the order of 100,000. This has been documented to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "adversely impact training performance even in single-task RL and increase hyperparameter sensitivity", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "(see https://github.com/rlworkgroup/metaworld/issues/226). Because of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 440, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 451 + ], + "score": 1.0, + "content": "problems stemming from the current reward functions in Meta-World, the maintainers of the bench-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "mark are updating them for the next version of the benchmark, which has not been released as of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 461, + 175, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 175, + 473 + ], + "score": 1.0, + "content": "November 2020.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 107, + 481, + 379, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 380, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 380, + 496 + ], + "score": 1.0, + "content": "D EXPERIMENTAL SET-UP AND DATA COLLECTION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 109, + 502, + 284, + 513 + ], + "lines": [ + { + "bbox": [ + 107, + 502, + 285, + 515 + ], + "spans": [ + { + "bbox": [ + 107, + 502, + 285, + 515 + ], + "score": 1.0, + "content": "D.1 OVERVIEW OF PROBLEM SETTINGS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 240, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 240, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 240, + 532 + ], + "score": 1.0, + "content": "The problems of interest include:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 129, + 541, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 130, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 130, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "1. Half-Cheetah Direction Train a simple cheetah to run in one of two direction: forward and", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 141, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 141, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "backward. Thus, there are no held-out test tasks for this problem, making it more ‘proof of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 564, + 247, + 574 + ], + "spans": [ + { + "bbox": [ + 141, + 564, + 247, + 574 + ], + "score": 1.0, + "content": "concept’ than benchmark.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 130, + 575, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 130, + 575, + 506, + 591 + ], + "score": 1.0, + "content": "2. Half-Cheetah Velocity Train a cheetah to run at a desired velocity, which fully parameter-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 141, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 141, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "izes each task. For our main experiment, values of the task parameters are sampled from", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 141, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "a uniform interval of 40 velocities in the range [0, 3]. A subset of 5 target velocities is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 141, + 611, + 381, + 623 + ], + "spans": [ + { + "bbox": [ + 141, + 611, + 381, + 623 + ], + "score": 1.0, + "content": "sampled randomly for evaluation. For ablation experiments", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 128, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 128, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "3. Ant-2D Direction Train a simulated ant with 8 articulated joints to run in a random 2D", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 141, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 141, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "direction. For our experiments, we sample 50 random directions uniformly, holding out 5", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 142, + 646, + 188, + 660 + ], + "spans": [ + { + "bbox": [ + 142, + 646, + 188, + 660 + ], + "score": 1.0, + "content": "for testing.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 130, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 130, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "4. Walker-2D Params Train a simulated agent to move forward, where different tasks corre-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 141, + 673, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 141, + 673, + 506, + 686 + ], + "score": 1.0, + "content": "spond to different randomized dynamics parameters rather than reward functions. For our", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 140, + 683, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 140, + 683, + 505, + 698 + ], + "score": 1.0, + "content": "experiments, we sample 50 random sets of dynamics parameters, holding out 5 for testing.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 130, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 130, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "5. Meta-World ML45 Train a simulated Sawyer robot to complete 45 different robotics ma-", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 142, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 142, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "nipulation tasks (for training). 5 additional tasks are included for testing, making 50 tasks in", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 141, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "total. Tasks include opening a window, hammering a nail, pulling a lever, picking & placing", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 40.5 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 306, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 13, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 214, + 84, + 397, + 204 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 214, + 84, + 397, + 204 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 214, + 84, + 397, + 204 + ], + "spans": [ + { + "bbox": [ + 214, + 84, + 397, + 204 + ], + "score": 0.969, + "type": "image", + "image_path": "9197515ff40248fcc48afe703179c7e00b59ad9d2ce4621a34699a9a92cb1b05.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 214, + 84, + 397, + 97.33333333333333 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 214, + 97.33333333333333, + 397, + 110.66666666666666 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 214, + 110.66666666666666, + 397, + 123.99999999999999 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 214, + 123.99999999999999, + 397, + 137.33333333333331 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 214, + 137.33333333333331, + 397, + 150.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 214, + 150.66666666666666, + 397, + 164.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 214, + 164.0, + 397, + 177.33333333333334 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 214, + 177.33333333333334, + 397, + 190.66666666666669 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 214, + 190.66666666666669, + 397, + 204.00000000000003 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 217, + 505, + 248 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 217, + 505, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 217, + 320, + 229 + ], + "score": 1.0, + "content": "Figure 7: Average success rates of MACAW, PEARL, and", + "type": "text" + }, + { + "bbox": [ + 320, + 218, + 343, + 227 + ], + "score": 0.47, + "content": "\\mathrm { M T } +", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 217, + 505, + 229 + ], + "score": 1.0, + "content": "fine-tuning (with 20 fine-tuning steps) on the", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 104, + 226, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 104, + 226, + 506, + 240 + ], + "score": 1.0, + "content": "5 test tasks the Meta-World ML45 suite of continuous control tasks. Dashed line shows final PEARL average", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 241, + 250 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 170, + 250 + ], + "score": 1.0, + "content": "success rate after", + "type": "text" + }, + { + "bbox": [ + 171, + 238, + 187, + 248 + ], + "score": 0.53, + "content": "1 0 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 188, + 236, + 241, + 250 + ], + "score": 1.0, + "content": "training steps.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + } + ], + "index": 7.0 + }, + { + "type": "text", + "bbox": [ + 107, + 269, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "spans": [ + { + "bbox": [ + 106, + 269, + 505, + 281 + ], + "score": 1.0, + "content": "Yu et al. (2019) proposed the Meta-World (Yu et al., 2019) suite of continuous control benchmark", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "environments as a more realistic distribution of tasks for multi-task and meta-learning algorithms. This", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 290, + 506, + 304 + ], + "score": 1.0, + "content": "benchmark includes 45 meta-training tasks and 5 meta-testing tasks. The results of this experiment", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 303, + 221, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 221, + 313 + ], + "score": 1.0, + "content": "are summarized in Figure 7.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 269, + 506, + 313 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 319, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "spans": [ + { + "bbox": [ + 105, + 318, + 505, + 331 + ], + "score": 1.0, + "content": "We find that all methods are able to make meaningful progress on the test tasks, with gradient-based", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 330, + 506, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 330, + 221, + 343 + ], + "score": 1.0, + "content": "methods (MACAW and MT", + "type": "text" + }, + { + "bbox": [ + 221, + 331, + 230, + 340 + ], + "score": 0.62, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 330, + 506, + 343 + ], + "score": 1.0, + "content": "fine tune) learning much more quickly than PEARL. MACAW does", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 354 + ], + "score": 1.0, + "content": "achieve a quite high level of performance quite early on in training; however, it begins to overfit with", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 365 + ], + "score": 1.0, + "content": "further training. In the regime where periodic online evaluations are available for the purpose of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 105, + 363, + 505, + 375 + ], + "score": 1.0, + "content": "early stopping, we could avoid this issue, in which case MACAW would slightly underperform the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 505, + 387 + ], + "score": 1.0, + "content": "multi-task learning baseline. A possible reason for some inconsistency between the performance", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 384, + 506, + 398 + ], + "spans": [ + { + "bbox": [ + 105, + 384, + 506, + 398 + ], + "score": 1.0, + "content": "of each algorithm on Meta-World and the results reported in Figure 3 is the difficult scaling of the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 506, + 408 + ], + "score": 1.0, + "content": "rewards in the current version of the Meta-World benchmark. Rewards can vary by 5 orders of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "magnitude, from negative values to values on the order of 100,000. This has been documented to", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "adversely impact training performance even in single-task RL and increase hyperparameter sensitivity", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 441 + ], + "score": 1.0, + "content": "(see https://github.com/rlworkgroup/metaworld/issues/226). Because of the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 440, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 451 + ], + "score": 1.0, + "content": "problems stemming from the current reward functions in Meta-World, the maintainers of the bench-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 463 + ], + "score": 1.0, + "content": "mark are updating them for the next version of the benchmark, which has not been released as of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 461, + 175, + 473 + ], + "spans": [ + { + "bbox": [ + 106, + 461, + 175, + 473 + ], + "score": 1.0, + "content": "November 2020.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 318, + 506, + 473 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 481, + 379, + 494 + ], + "lines": [ + { + "bbox": [ + 105, + 479, + 380, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 380, + 496 + ], + "score": 1.0, + "content": "D EXPERIMENTAL SET-UP AND DATA COLLECTION", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 109, + 502, + 284, + 513 + ], + "lines": [ + { + "bbox": [ + 107, + 502, + 285, + 515 + ], + "spans": [ + { + "bbox": [ + 107, + 502, + 285, + 515 + ], + "score": 1.0, + "content": "D.1 OVERVIEW OF PROBLEM SETTINGS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31, + "bbox_fs": [ + 107, + 502, + 285, + 515 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 240, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 519, + 240, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 240, + 532 + ], + "score": 1.0, + "content": "The problems of interest include:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32, + "bbox_fs": [ + 106, + 519, + 240, + 532 + ] + }, + { + "type": "list", + "bbox": [ + 129, + 541, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 130, + 541, + 506, + 553 + ], + "spans": [ + { + "bbox": [ + 130, + 541, + 506, + 553 + ], + "score": 1.0, + "content": "1. Half-Cheetah Direction Train a simple cheetah to run in one of two direction: forward and", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 552, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 141, + 552, + 506, + 564 + ], + "score": 1.0, + "content": "backward. Thus, there are no held-out test tasks for this problem, making it more ‘proof of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 141, + 564, + 247, + 574 + ], + "spans": [ + { + "bbox": [ + 141, + 564, + 247, + 574 + ], + "score": 1.0, + "content": "concept’ than benchmark.", + "type": "text" + } + ], + "index": 35, + "is_list_end_line": true + }, + { + "bbox": [ + 130, + 575, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 130, + 575, + 506, + 591 + ], + "score": 1.0, + "content": "2. Half-Cheetah Velocity Train a cheetah to run at a desired velocity, which fully parameter-", + "type": "text" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 588, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 141, + 588, + 505, + 601 + ], + "score": 1.0, + "content": "izes each task. For our main experiment, values of the task parameters are sampled from", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 141, + 599, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 141, + 599, + 506, + 613 + ], + "score": 1.0, + "content": "a uniform interval of 40 velocities in the range [0, 3]. A subset of 5 target velocities is", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 141, + 611, + 381, + 623 + ], + "spans": [ + { + "bbox": [ + 141, + 611, + 381, + 623 + ], + "score": 1.0, + "content": "sampled randomly for evaluation. For ablation experiments", + "type": "text" + } + ], + "index": 39, + "is_list_end_line": true + }, + { + "bbox": [ + 128, + 624, + 505, + 637 + ], + "spans": [ + { + "bbox": [ + 128, + 624, + 505, + 637 + ], + "score": 1.0, + "content": "3. Ant-2D Direction Train a simulated ant with 8 articulated joints to run in a random 2D", + "type": "text" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 636, + 505, + 649 + ], + "spans": [ + { + "bbox": [ + 141, + 636, + 505, + 649 + ], + "score": 1.0, + "content": "direction. For our experiments, we sample 50 random directions uniformly, holding out 5", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 142, + 646, + 188, + 660 + ], + "spans": [ + { + "bbox": [ + 142, + 646, + 188, + 660 + ], + "score": 1.0, + "content": "for testing.", + "type": "text" + } + ], + "index": 42, + "is_list_end_line": true + }, + { + "bbox": [ + 130, + 662, + 506, + 674 + ], + "spans": [ + { + "bbox": [ + 130, + 662, + 506, + 674 + ], + "score": 1.0, + "content": "4. Walker-2D Params Train a simulated agent to move forward, where different tasks corre-", + "type": "text" + } + ], + "index": 43, + "is_list_start_line": true + }, + { + "bbox": [ + 141, + 673, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 141, + 673, + 506, + 686 + ], + "score": 1.0, + "content": "spond to different randomized dynamics parameters rather than reward functions. For our", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 140, + 683, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 140, + 683, + 505, + 698 + ], + "score": 1.0, + "content": "experiments, we sample 50 random sets of dynamics parameters, holding out 5 for testing.", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 130, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 130, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "5. Meta-World ML45 Train a simulated Sawyer robot to complete 45 different robotics ma-", + "type": "text" + } + ], + "index": 46, + "is_list_start_line": true + }, + { + "bbox": [ + 142, + 710, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 142, + 710, + 505, + 721 + ], + "score": 1.0, + "content": "nipulation tasks (for training). 5 additional tasks are included for testing, making 50 tasks in", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 141, + 721, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 141, + 721, + 505, + 734 + ], + "score": 1.0, + "content": "total. Tasks include opening a window, hammering a nail, pulling a lever, picking & placing", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 40.5, + "bbox_fs": [ + 128, + 541, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 142, + 80, + 466, + 258 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 142, + 80, + 466, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 80, + 466, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 80, + 466, + 258 + ], + "score": 0.981, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Meta batch size4-1016
Batch size2561
Embedding batch size100-256750
KL penalty0.1
Hidden layers31
Neurons per hidden layer300512
Latent space size58
Policy learning rate3e-41
Value function learning rate3e-4
Context embedding learning rate3e-4
Q-Function learning rate3e-4
Reward scale5.0
RecurrentFalse
", + "type": "table", + "image_path": "1e0c2f9ed73377d9d126a04e8bca056e00a29ea02fe23af7a15310fd6adfa3e3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 142, + 80, + 466, + 139.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 142, + 139.33333333333334, + 466, + 198.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 142, + 198.66666666666669, + 466, + 258.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 271, + 504, + 305 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "Table 2: Hyperparameters used for the PEARL experiments. For the MuJoCo tasks, we generally", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "used the same parameters as reported in (Rakelly et al., 2019), with some minor modifications. The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 294, + 445, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 445, + 306 + ], + "score": 1.0, + "content": "different parameters used for the MetaWorld ML45 environment are reported above.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 142, + 313, + 504, + 357 + ], + "lines": [ + { + "bbox": [ + 141, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "an object. See Yu et al. (2019) for more information. Our experiments use a continuous space", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "randomization for each task setup, unlike the experiments in (Yu et al., 2019), which sample", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "from a fixed number of task states. This creates a much more challenging environment, as", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 347, + 294, + 357 + ], + "spans": [ + { + "bbox": [ + 142, + 347, + 294, + 357 + ], + "score": 1.0, + "content": "seen in the success rate curves above.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 504, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "For the first 4 MuJoCo domains, each trajectory is 200 time steps (as in Rakelly et al. (2019)); for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 377, + 304, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 304, + 392 + ], + "score": 1.0, + "content": "Meta-World, trajectories are 150 time steps long.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "title", + "bbox": [ + 107, + 396, + 216, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 395, + 218, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 218, + 409 + ], + "score": 1.0, + "content": "D.2 DATA COLLECTION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "We adapt each task to the offline setting by restricting the data sampling procedure to sample data", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "score": 1.0, + "content": "only from a fixed offline buffer of data. For each task, we train a separate policy from scratch, using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "Soft Actor-Critic (Haarnoja et al., 2018) for all tasks except Cheetah-Velocity, for which we use", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "TD3 (Fujimoto et al., 2018) as it proved more stable across the various Cheetah-Velocity tasks. We", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 459, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 470 + ], + "score": 1.0, + "content": "save complete replay buffers from the entire lifetime of training for each task, which includes 5M", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "steps for Meta-World, 2.5M steps for Cheetah-Velocity, 2.5M steps for Cheetah-Dir, 2M steps for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 481, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 505, + 492 + ], + "score": 1.0, + "content": "Ant-Direction, and 1M steps for Walker-Params. We use these buffers of trajectories, one per task for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "each problem, to sample data in both the inner and outer loop of the algorithm during training. See", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 502, + 460, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 460, + 514 + ], + "score": 1.0, + "content": "Figures 8 and 9 for the learning curves of the offline policies for each train and test task.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 520, + 244, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 244, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 244, + 532 + ], + "score": 1.0, + "content": "D.3 ABLATION EXPERIMENTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 552 + ], + "score": 1.0, + "content": "For the data quality experiment, we compare the post-adaptation performance when MACAW is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "trained with 3 different sampling regimes for the Cheetah-Vel problem setting. Bad, medium, and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "good data quality mean that adaptation data (during both training and evaluation) is drawn from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 571, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 584 + ], + "score": 1.0, + "content": "first, middle, and last 500 trajectories from the offline replay buffers. For the task quantity experiment,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "we order the tasks by the target velocity in ascending order, giving equally spaced tasks with target", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 593, + 504, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 147, + 608 + ], + "score": 1.0, + "content": "velocities", + "type": "text" + }, + { + "bbox": [ + 147, + 594, + 194, + 605 + ], + "score": 0.89, + "content": "g _ { 0 } = 0 . 0 7 5", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 593, + 198, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 198, + 594, + 297, + 605 + ], + "score": 0.75, + "content": "g _ { 2 } = 0 . 1 5 , . . . , g _ { 3 9 } = 3 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 593, + 446, + 608 + ], + "score": 1.0, + "content": ". For the 20 task experiment, we use", + "type": "text" + }, + { + "bbox": [ + 446, + 595, + 456, + 605 + ], + "score": 0.85, + "content": "g _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 593, + 498, + 608 + ], + "score": 1.0, + "content": "with even", + "type": "text" + }, + { + "bbox": [ + 499, + 594, + 504, + 603 + ], + "score": 0.63, + "content": "i", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 189, + 618 + ], + "score": 1.0, + "content": "for training and odd", + "type": "text" + }, + { + "bbox": [ + 189, + 606, + 194, + 614 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "for testing. For the 10 task experiment, we move every other train task to the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 180, + 628 + ], + "score": 1.0, + "content": "test set (e.g. tasks", + "type": "text" + }, + { + "bbox": [ + 180, + 615, + 243, + 627 + ], + "score": 0.86, + "content": "i = 2 , 6 , 1 0 , . . . )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ". For the 5 task experiment, we move every other remaining train", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 625, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 224, + 640 + ], + "score": 1.0, + "content": "task to the test set (e.g. tasks", + "type": "text" + }, + { + "bbox": [ + 224, + 626, + 291, + 637 + ], + "score": 0.82, + "content": "i = 4 , 1 2 , 2 0 , . . . )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 625, + 506, + 640 + ], + "score": 1.0, + "content": ", and for the 3 task experiment, we again move every", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "score": 1.0, + "content": "other task to the test set, so that the train set only contains tasks 0, 16, and 32. Task selection was", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "performed this way to ensure that even in sparse task environments, the train tasks provide coverage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 659, + 210, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 210, + 672 + ], + "score": 1.0, + "content": "of most of the task space.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28.5 + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 401, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 402, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 402, + 693 + ], + "score": 1.0, + "content": "E IMPLEMENTATION DETAILS AND HYPERPARAMETERS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Peng et al. (2019) note several strategies used to increase the stability of their advantage-weighted", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "regression implementation. We normalize the advantage logits in the policy update step to have zero", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "mean and unit standard deviation, as in Peng et al. (2019). Advantage weight logits are also clipped", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 142, + 80, + 466, + 258 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 142, + 80, + 466, + 258 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 142, + 80, + 466, + 258 + ], + "spans": [ + { + "bbox": [ + 142, + 80, + 466, + 258 + ], + "score": 0.981, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Meta batch size4-1016
Batch size2561
Embedding batch size100-256750
KL penalty0.1
Hidden layers31
Neurons per hidden layer300512
Latent space size58
Policy learning rate3e-41
Value function learning rate3e-4
Context embedding learning rate3e-4
Q-Function learning rate3e-4
Reward scale5.0
RecurrentFalse
", + "type": "table", + "image_path": "1e0c2f9ed73377d9d126a04e8bca056e00a29ea02fe23af7a15310fd6adfa3e3.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 142, + 80, + 466, + 139.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 142, + 139.33333333333334, + 466, + 198.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 142, + 198.66666666666669, + 466, + 258.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 271, + 504, + 305 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "Table 2: Hyperparameters used for the PEARL experiments. For the MuJoCo tasks, we generally", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 282, + 505, + 295 + ], + "score": 1.0, + "content": "used the same parameters as reported in (Rakelly et al., 2019), with some minor modifications. The", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 294, + 445, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 445, + 306 + ], + "score": 1.0, + "content": "different parameters used for the MetaWorld ML45 environment are reported above.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 142, + 313, + 504, + 357 + ], + "lines": [ + { + "bbox": [ + 141, + 312, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 141, + 312, + 505, + 326 + ], + "score": 1.0, + "content": "an object. See Yu et al. (2019) for more information. Our experiments use a continuous space", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 324, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 505, + 336 + ], + "score": 1.0, + "content": "randomization for each task setup, unlike the experiments in (Yu et al., 2019), which sample", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 334, + 505, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 334, + 505, + 347 + ], + "score": 1.0, + "content": "from a fixed number of task states. This creates a much more challenging environment, as", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 142, + 347, + 294, + 357 + ], + "spans": [ + { + "bbox": [ + 142, + 347, + 294, + 357 + ], + "score": 1.0, + "content": "seen in the success rate curves above.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 141, + 312, + 505, + 357 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 367, + 504, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "spans": [ + { + "bbox": [ + 105, + 366, + 505, + 379 + ], + "score": 1.0, + "content": "For the first 4 MuJoCo domains, each trajectory is 200 time steps (as in Rakelly et al. (2019)); for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 377, + 304, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 377, + 304, + 392 + ], + "score": 1.0, + "content": "Meta-World, trajectories are 150 time steps long.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 366, + 505, + 392 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 396, + 216, + 407 + ], + "lines": [ + { + "bbox": [ + 106, + 395, + 218, + 409 + ], + "spans": [ + { + "bbox": [ + 106, + 395, + 218, + 409 + ], + "score": 1.0, + "content": "D.2 DATA COLLECTION", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 414, + 505, + 514 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 505, + 426 + ], + "score": 1.0, + "content": "We adapt each task to the offline setting by restricting the data sampling procedure to sample data", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 439 + ], + "score": 1.0, + "content": "only from a fixed offline buffer of data. For each task, we train a separate policy from scratch, using", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "Soft Actor-Critic (Haarnoja et al., 2018) for all tasks except Cheetah-Velocity, for which we use", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "spans": [ + { + "bbox": [ + 106, + 447, + 505, + 459 + ], + "score": 1.0, + "content": "TD3 (Fujimoto et al., 2018) as it proved more stable across the various Cheetah-Velocity tasks. We", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 459, + 505, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 470 + ], + "score": 1.0, + "content": "save complete replay buffers from the entire lifetime of training for each task, which includes 5M", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "steps for Meta-World, 2.5M steps for Cheetah-Velocity, 2.5M steps for Cheetah-Dir, 2M steps for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 481, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 481, + 505, + 492 + ], + "score": 1.0, + "content": "Ant-Direction, and 1M steps for Walker-Params. We use these buffers of trajectories, one per task for", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "spans": [ + { + "bbox": [ + 106, + 492, + 505, + 503 + ], + "score": 1.0, + "content": "each problem, to sample data in both the inner and outer loop of the algorithm during training. See", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 502, + 460, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 502, + 460, + 514 + ], + "score": 1.0, + "content": "Figures 8 and 9 for the learning curves of the offline policies for each train and test task.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 415, + 506, + 514 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 520, + 244, + 531 + ], + "lines": [ + { + "bbox": [ + 106, + 520, + 244, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 244, + 532 + ], + "score": 1.0, + "content": "D.3 ABLATION EXPERIMENTS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 539, + 505, + 670 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 506, + 552 + ], + "score": 1.0, + "content": "For the data quality experiment, we compare the post-adaptation performance when MACAW is", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 562 + ], + "score": 1.0, + "content": "trained with 3 different sampling regimes for the Cheetah-Vel problem setting. Bad, medium, and", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 505, + 573 + ], + "score": 1.0, + "content": "good data quality mean that adaptation data (during both training and evaluation) is drawn from the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 571, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 506, + 584 + ], + "score": 1.0, + "content": "first, middle, and last 500 trajectories from the offline replay buffers. For the task quantity experiment,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 506, + 596 + ], + "score": 1.0, + "content": "we order the tasks by the target velocity in ascending order, giving equally spaced tasks with target", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 593, + 504, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 147, + 608 + ], + "score": 1.0, + "content": "velocities", + "type": "text" + }, + { + "bbox": [ + 147, + 594, + 194, + 605 + ], + "score": 0.89, + "content": "g _ { 0 } = 0 . 0 7 5", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 593, + 198, + 608 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 198, + 594, + 297, + 605 + ], + "score": 0.75, + "content": "g _ { 2 } = 0 . 1 5 , . . . , g _ { 3 9 } = 3 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 593, + 446, + 608 + ], + "score": 1.0, + "content": ". For the 20 task experiment, we use", + "type": "text" + }, + { + "bbox": [ + 446, + 595, + 456, + 605 + ], + "score": 0.85, + "content": "g _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 593, + 498, + 608 + ], + "score": 1.0, + "content": "with even", + "type": "text" + }, + { + "bbox": [ + 499, + 594, + 504, + 603 + ], + "score": 0.63, + "content": "i", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 189, + 618 + ], + "score": 1.0, + "content": "for training and odd", + "type": "text" + }, + { + "bbox": [ + 189, + 606, + 194, + 614 + ], + "score": 0.73, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "for testing. For the 10 task experiment, we move every other train task to the", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 615, + 505, + 628 + ], + "spans": [ + { + "bbox": [ + 106, + 615, + 180, + 628 + ], + "score": 1.0, + "content": "test set (e.g. tasks", + "type": "text" + }, + { + "bbox": [ + 180, + 615, + 243, + 627 + ], + "score": 0.86, + "content": "i = 2 , 6 , 1 0 , . . . )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 615, + 505, + 628 + ], + "score": 1.0, + "content": ". For the 5 task experiment, we move every other remaining train", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 625, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 625, + 224, + 640 + ], + "score": 1.0, + "content": "task to the test set (e.g. tasks", + "type": "text" + }, + { + "bbox": [ + 224, + 626, + 291, + 637 + ], + "score": 0.82, + "content": "i = 4 , 1 2 , 2 0 , . . . )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 625, + 506, + 640 + ], + "score": 1.0, + "content": ", and for the 3 task experiment, we again move every", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "spans": [ + { + "bbox": [ + 106, + 637, + 506, + 649 + ], + "score": 1.0, + "content": "other task to the test set, so that the train set only contains tasks 0, 16, and 32. Task selection was", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "performed this way to ensure that even in sparse task environments, the train tasks provide coverage", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 659, + 210, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 210, + 672 + ], + "score": 1.0, + "content": "of most of the task space.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 537, + 506, + 672 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 401, + 692 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 402, + 693 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 402, + 693 + ], + "score": 1.0, + "content": "E IMPLEMENTATION DETAILS AND HYPERPARAMETERS", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "Peng et al. (2019) note several strategies used to increase the stability of their advantage-weighted", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "regression implementation. We normalize the advantage logits in the policy update step to have zero", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "mean and unit standard deviation, as in Peng et al. (2019). Advantage weight logits are also clipped", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 698, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 111, + 500, + 643 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 111, + 500, + 643 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 111, + 500, + 643 + ], + "spans": [ + { + "bbox": [ + 109, + 111, + 500, + 643 + ], + "score": 0.453, + "type": "image", + "image_path": "f56b11358e36417a1ca4bfb309af242dbc448cfd4b43fad3c69a87df2aa73a04.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 111, + 500, + 288.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 288.33333333333337, + 500, + 465.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 465.66666666666674, + 500, + 643.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 653, + 506, + 687 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "Figure 8: Learning curves for offline policies for the 4 different MuJoCo environments used in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "experimental evaluations. Each curve corresponds to a policy trained on a unique task. Various levels", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 675, + 363, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 363, + 687 + ], + "score": 1.0, + "content": "of smoothing are applied for the purpose of easier visualization.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 111, + 500, + 643 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 111, + 500, + 643 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 111, + 500, + 643 + ], + "spans": [ + { + "bbox": [ + 109, + 111, + 500, + 643 + ], + "score": 0.453, + "type": "image", + "image_path": "f56b11358e36417a1ca4bfb309af242dbc448cfd4b43fad3c69a87df2aa73a04.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 111, + 500, + 288.33333333333337 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 288.33333333333337, + 500, + 465.66666666666674 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 465.66666666666674, + 500, + 643.0000000000001 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 653, + 506, + 687 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "spans": [ + { + "bbox": [ + 106, + 653, + 505, + 665 + ], + "score": 1.0, + "content": "Figure 8: Learning curves for offline policies for the 4 different MuJoCo environments used in the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 506, + 676 + ], + "score": 1.0, + "content": "experimental evaluations. Each curve corresponds to a policy trained on a unique task. Various levels", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 675, + 363, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 675, + 363, + 687 + ], + "score": 1.0, + "content": "of smoothing are applied for the purpose of easier visualization.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 122, + 499, + 376 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 122, + 499, + 376 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 122, + 499, + 376 + ], + "spans": [ + { + "bbox": [ + 109, + 122, + 499, + 376 + ], + "score": 0.975, + "type": "image", + "image_path": "2d6d567b921998eec2d15a9ea27caf595a591019afdd8e598bf1a85c9a4e9d84.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 122, + 499, + 206.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 206.66666666666669, + 499, + 291.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 291.33333333333337, + 499, + 376.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 389, + 505, + 423 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "Figure 9: Learning curves and success rates for all tasks in the MetaWorld 45 benchmark. Each curve", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 400, + 504, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 504, + 412 + ], + "score": 1.0, + "content": "corresponds to a policy trained on a unique task. Various levels of smoothing are applied for the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 412, + 187, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 187, + 424 + ], + "score": 1.0, + "content": "purpose of plotting.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 145, + 509, + 462, + 653 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 509, + 462, + 653 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 509, + 462, + 653 + ], + "spans": [ + { + "bbox": [ + 145, + 509, + 462, + 653 + ], + "score": 0.979, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Value learning rate1e-4*1e-6
Policy learning rate1e-41
Value fine-tuning learning rate1e-41e-6
Policy fine-tuning learning rate1e-31
Train outer loop batch size256
Fine-tuning batch size2561
Number of hidden layers31
Neurons per hidden layer100300
Task batch size51
Max advantage clip20
", + "type": "table", + "image_path": "f3429d9660c7a2bc1784a990dcc44ad184d3429d8feb79bb0d06b975badddb36.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 145, + 509, + 462, + 557.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 145, + 557.0, + 462, + 605.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 605.0, + 462, + 653.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 104, + 667, + 505, + 690 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 343, + 680 + ], + "score": 1.0, + "content": "Table 3: Hyperparameters used for the multi-task learning", + "type": "text" + }, + { + "bbox": [ + 343, + 668, + 352, + 677 + ], + "score": 0.78, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "fine tuning baseline. *For the Walker", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 677, + 341, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 341, + 691 + ], + "score": 1.0, + "content": "environment, the value learning rate was 1e-5 for stability.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 8.25 + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 122, + 499, + 376 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 122, + 499, + 376 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 122, + 499, + 376 + ], + "spans": [ + { + "bbox": [ + 109, + 122, + 499, + 376 + ], + "score": 0.975, + "type": "image", + "image_path": "2d6d567b921998eec2d15a9ea27caf595a591019afdd8e598bf1a85c9a4e9d84.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 122, + 499, + 206.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 206.66666666666669, + 499, + 291.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 291.33333333333337, + 499, + 376.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 389, + 505, + 423 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 105, + 388, + 505, + 402 + ], + "score": 1.0, + "content": "Figure 9: Learning curves and success rates for all tasks in the MetaWorld 45 benchmark. Each curve", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 400, + 504, + 412 + ], + "spans": [ + { + "bbox": [ + 105, + 400, + 504, + 412 + ], + "score": 1.0, + "content": "corresponds to a policy trained on a unique task. Various levels of smoothing are applied for the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 412, + 187, + 424 + ], + "spans": [ + { + "bbox": [ + 105, + 412, + 187, + 424 + ], + "score": 1.0, + "content": "purpose of plotting.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 145, + 509, + 462, + 653 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 145, + 509, + 462, + 653 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 145, + 509, + 462, + 653 + ], + "spans": [ + { + "bbox": [ + 145, + 509, + 462, + 653 + ], + "score": 0.979, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Value learning rate1e-4*1e-6
Policy learning rate1e-41
Value fine-tuning learning rate1e-41e-6
Policy fine-tuning learning rate1e-31
Train outer loop batch size256
Fine-tuning batch size2561
Number of hidden layers31
Neurons per hidden layer100300
Task batch size51
Max advantage clip20
", + "type": "table", + "image_path": "f3429d9660c7a2bc1784a990dcc44ad184d3429d8feb79bb0d06b975badddb36.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 145, + 509, + 462, + 557.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 145, + 557.0, + 462, + 605.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 145, + 605.0, + 462, + 653.0 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 104, + 667, + 505, + 690 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 667, + 506, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 667, + 343, + 680 + ], + "score": 1.0, + "content": "Table 3: Hyperparameters used for the multi-task learning", + "type": "text" + }, + { + "bbox": [ + 343, + 668, + 352, + 677 + ], + "score": 0.78, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 667, + 506, + 680 + ], + "score": 1.0, + "content": "fine tuning baseline. *For the Walker", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 677, + 341, + 691 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 341, + 691 + ], + "score": 1.0, + "content": "environment, the value learning rate was 1e-5 for stability.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + } + ], + "index": 8.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 126, + 80, + 483, + 280 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 80, + 483, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 80, + 483, + 280 + ], + "spans": [ + { + "bbox": [ + 126, + 80, + 483, + 280 + ], + "score": 0.983, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Auxiliary advantage loss coefficient1e-21e-3
Outer value learning rate1e-51e-6
Outer policy learning rate1e-4
Inner policy learning rate1e-3 (learned)1e-2 (learned)
Inner value learning rate1e-3 (learned)1e-4 (learned)
Train outer loop batch size2561
Train adaptation batch size256256
Eval adaptation batch size2561
Number of adaptation steps11
Learning rate for learnable learning rate1e-31
Number of hidden layers31
Neurons per hidden layer100300
Task batch size510
Max advantage clip201
AWR policy temperature11
", + "type": "table", + "image_path": "1f94b5dd5972c647e5422db803d11afd0bc476699574bbfce6729afd919cb900.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 80, + 483, + 146.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 146.66666666666669, + 483, + 213.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 213.33333333333337, + 483, + 280.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "Table 4: Hyperparameters used for MACAW. The Standard Configuration is used for all experiments", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "and all environments except for Meta-World (due to the extreme difference in magnitude of rewards in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 262, + 328 + ], + "score": 1.0, + "content": "Meta-World, which has typical rewards", + "type": "text" + }, + { + "bbox": [ + 262, + 316, + 306, + 326 + ], + "score": 0.58, + "content": "1 0 0 { - } 1 0 0 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "larger than in the other tasks). For the Meta-World", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 326, + 443, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 443, + 339 + ], + "score": 1.0, + "content": "configuration, only parameters that differ from the standard configuration are listed.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "to avoid exploding gradients and numerical overflow. To train the value function, we use simple least", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 331, + 369 + ], + "score": 1.0, + "content": "squares regression onto Monte Carlo returns, rather than", + "type": "text" + }, + { + "bbox": [ + 331, + 357, + 358, + 368 + ], + "score": 0.61, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 356, + 506, + 369 + ], + "score": 1.0, + "content": ". Finally, our policy is parameterized", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 368, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 380 + ], + "score": 1.0, + "content": "by a single Gaussian with fixed variance of 0.04; our policy network thus predicts only the mean of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 378, + 210, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 210, + 390 + ], + "score": 1.0, + "content": "the Gaussian distribution.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "In addition to using weight transformation layers instead of regular fully-connected layers, we also", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "learn learning rates for each layer of our network by gradient descent. To speed up training, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 416, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 431 + ], + "score": 1.0, + "content": "compute our loss using a ‘task minibatch’ of 5 tasks at each step of optimization, rather than using", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "all of the training tasks. Finally, specific to the RL setting, we sample experiences in contiguous", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "chunks from the replay buffers during train-time adaptation and uniformly (non-contiguously) from", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "the replay buffers for outer-loop updates and test-time adaptation. For outer loop updates, we sample", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 461, + 321, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 321, + 474 + ], + "score": 1.0, + "content": "data selectively towards the end of the replay buffers.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14 + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 219, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 221, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 221, + 491 + ], + "score": 1.0, + "content": "E.1 HYPERPARAMETERS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 497, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 507, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 507, + 509 + ], + "score": 1.0, + "content": "Tables 2, 3, and 4 describe the hyperparameters used for each algorithm in our empirical evaluations.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 507, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 507, + 521 + ], + "score": 1.0, + "content": "We performed some manual tuning of hyperparameters for all algorithms, but found that the per-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 520, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 531 + ], + "score": 1.0, + "content": "formance was not significantly affected for environments other than Meta-World, likely due to the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 530, + 351, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 351, + 542 + ], + "score": 1.0, + "content": "difficult reward scaling in the current release of Meta-World.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5 + } + ], + "page_idx": 21, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "22", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 307, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 308, + 38 + ], + "score": 1.0, + "content": "Under review as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 126, + 80, + 483, + 280 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 80, + 483, + 280 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 126, + 80, + 483, + 280 + ], + "spans": [ + { + "bbox": [ + 126, + 80, + 483, + 280 + ], + "score": 0.983, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Auxiliary advantage loss coefficient1e-21e-3
Outer value learning rate1e-51e-6
Outer policy learning rate1e-4
Inner policy learning rate1e-3 (learned)1e-2 (learned)
Inner value learning rate1e-3 (learned)1e-4 (learned)
Train outer loop batch size2561
Train adaptation batch size256256
Eval adaptation batch size2561
Number of adaptation steps11
Learning rate for learnable learning rate1e-31
Number of hidden layers31
Neurons per hidden layer100300
Task batch size510
Max advantage clip201
AWR policy temperature11
", + "type": "table", + "image_path": "1f94b5dd5972c647e5422db803d11afd0bc476699574bbfce6729afd919cb900.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 126, + 80, + 483, + 146.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 126, + 146.66666666666669, + 483, + 213.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 126, + 213.33333333333337, + 483, + 280.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 293, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 306 + ], + "score": 1.0, + "content": "Table 4: Hyperparameters used for MACAW. The Standard Configuration is used for all experiments", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 105, + 304, + 505, + 317 + ], + "score": 1.0, + "content": "and all environments except for Meta-World (due to the extreme difference in magnitude of rewards in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 315, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 262, + 328 + ], + "score": 1.0, + "content": "Meta-World, which has typical rewards", + "type": "text" + }, + { + "bbox": [ + 262, + 316, + 306, + 326 + ], + "score": 0.58, + "content": "1 0 0 { - } 1 0 0 0 \\mathrm { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 315, + 505, + 328 + ], + "score": 1.0, + "content": "larger than in the other tasks). For the Meta-World", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 326, + 443, + 339 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 443, + 339 + ], + "score": 1.0, + "content": "configuration, only parameters that differ from the standard configuration are listed.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 294, + 505, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 345, + 505, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 506, + 358 + ], + "score": 1.0, + "content": "to avoid exploding gradients and numerical overflow. To train the value function, we use simple least", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 331, + 369 + ], + "score": 1.0, + "content": "squares regression onto Monte Carlo returns, rather than", + "type": "text" + }, + { + "bbox": [ + 331, + 357, + 358, + 368 + ], + "score": 0.61, + "content": "\\mathrm { T D } ( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 356, + 506, + 369 + ], + "score": 1.0, + "content": ". Finally, our policy is parameterized", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 368, + 506, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 506, + 380 + ], + "score": 1.0, + "content": "by a single Gaussian with fixed variance of 0.04; our policy network thus predicts only the mean of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 378, + 210, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 210, + 390 + ], + "score": 1.0, + "content": "the Gaussian distribution.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 345, + 506, + 390 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 395, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "spans": [ + { + "bbox": [ + 105, + 395, + 505, + 408 + ], + "score": 1.0, + "content": "In addition to using weight transformation layers instead of regular fully-connected layers, we also", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 505, + 419 + ], + "score": 1.0, + "content": "learn learning rates for each layer of our network by gradient descent. To speed up training, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 416, + 505, + 431 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 505, + 431 + ], + "score": 1.0, + "content": "compute our loss using a ‘task minibatch’ of 5 tasks at each step of optimization, rather than using", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 105, + 428, + 505, + 441 + ], + "score": 1.0, + "content": "all of the training tasks. Finally, specific to the RL setting, we sample experiences in contiguous", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 438, + 505, + 452 + ], + "score": 1.0, + "content": "chunks from the replay buffers during train-time adaptation and uniformly (non-contiguously) from", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "the replay buffers for outer-loop updates and test-time adaptation. For outer loop updates, we sample", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 461, + 321, + 474 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 321, + 474 + ], + "score": 1.0, + "content": "data selectively towards the end of the replay buffers.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 395, + 505, + 474 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 479, + 219, + 491 + ], + "lines": [ + { + "bbox": [ + 106, + 479, + 221, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 479, + 221, + 491 + ], + "score": 1.0, + "content": "E.1 HYPERPARAMETERS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 497, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 507, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 507, + 509 + ], + "score": 1.0, + "content": "Tables 2, 3, and 4 describe the hyperparameters used for each algorithm in our empirical evaluations.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 507, + 507, + 521 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 507, + 521 + ], + "score": 1.0, + "content": "We performed some manual tuning of hyperparameters for all algorithms, but found that the per-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 520, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 520, + 505, + 531 + ], + "score": 1.0, + "content": "formance was not significantly affected for environments other than Meta-World, likely due to the", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 530, + 351, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 351, + 542 + ], + "score": 1.0, + "content": "difficult reward scaling in the current release of Meta-World.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 496, + 507, + 542 + ] + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/S5S3eTEmouw/S5S3eTEmouw_model.json b/parse/train/S5S3eTEmouw/S5S3eTEmouw_model.json new file mode 100644 index 0000000000000000000000000000000000000000..ec28abe36a70730ef1fcc8903f40af3f8d25e197 --- /dev/null +++ b/parse/train/S5S3eTEmouw/S5S3eTEmouw_model.json @@ -0,0 +1,31806 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1225, + 1404, + 1225, + 1404, + 1621, + 298, + 1621 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 398, + 580, + 1303, + 580, + 1303, + 1133, + 398, + 1133 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1637, + 1404, + 1637, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 0, + "poly": [ + 300, + 219, + 1400, + 219, + 1400, + 324, + 300, + 324 + ], + "score": 0.962 + }, + { + "category_id": 1, + "poly": [ + 313, + 377, + 680, + 377, + 680, + 438, + 313, + 438 + ], + "score": 0.935 + }, + { + "category_id": 0, + "poly": [ + 302, + 1174, + 573, + 1174, + 573, + 1208, + 302, + 1208 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.88 + }, + { + "category_id": 0, + "poly": [ + 773, + 519, + 927, + 519, + 927, + 553, + 773, + 553 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 856, + 2089, + 856, + 2112, + 841, + 2112 + ], + "score": 0.727 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 216.0, + 1405.0, + 216.0, + 1405.0, + 273.0, + 295.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 275.0, + 821.0, + 275.0, + 821.0, + 328.0, + 294.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1170.0, + 579.0, + 1170.0, + 579.0, + 1216.0, + 294.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 518.0, + 932.0, + 518.0, + 932.0, + 556.0, + 770.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, + 1225.0, + 1404.0, + 1225.0, + 1404.0, + 1262.0, + 294.0, + 1262.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1254.0, + 1405.0, + 1254.0, + 1405.0, + 1293.0, + 293.0, + 1293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1285.0, + 1404.0, + 1285.0, + 1404.0, + 1322.0, + 295.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1318.0, + 1402.0, + 1318.0, + 1402.0, + 1351.0, + 296.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1347.0, + 1406.0, + 1347.0, + 1406.0, + 1387.0, + 291.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1375.0, + 1405.0, + 1375.0, + 1405.0, + 1414.0, + 293.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1402.0, + 1406.0, + 1402.0, + 1406.0, + 1449.0, + 292.0, + 1449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1435.0, + 1406.0, + 1435.0, + 1406.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1404.0, + 1468.0, + 1404.0, + 1504.0, + 294.0, + 1504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1537.0, + 292.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1566.0, + 294.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1556.0, + 1406.0, + 1556.0, + 1406.0, + 1600.0, + 292.0, + 1600.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 1278.0, + 1591.0, + 1278.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 583.0, + 1307.0, + 583.0, + 1307.0, + 619.0, + 395.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 613.0, + 1306.0, + 613.0, + 1306.0, + 652.0, + 393.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 642.0, + 1307.0, + 642.0, + 1307.0, + 681.0, + 392.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 676.0, + 1306.0, + 676.0, + 1306.0, + 709.0, + 395.0, + 709.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 706.0, + 1308.0, + 706.0, + 1308.0, + 739.0, + 395.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 736.0, + 1306.0, + 736.0, + 1306.0, + 770.0, + 394.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 765.0, + 1306.0, + 765.0, + 1306.0, + 801.0, + 394.0, + 801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 797.0, + 1305.0, + 797.0, + 1305.0, + 831.0, + 395.0, + 831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 829.0, + 1305.0, + 829.0, + 1305.0, + 862.0, + 395.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 859.0, + 1305.0, + 859.0, + 1305.0, + 892.0, + 395.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 888.0, + 1306.0, + 888.0, + 1306.0, + 921.0, + 395.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 920.0, + 1305.0, + 920.0, + 1305.0, + 951.0, + 393.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 948.0, + 1305.0, + 948.0, + 1305.0, + 983.0, + 393.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 979.0, + 1304.0, + 979.0, + 1304.0, + 1014.0, + 393.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1011.0, + 1304.0, + 1011.0, + 1304.0, + 1044.0, + 395.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1040.0, + 1307.0, + 1040.0, + 1307.0, + 1077.0, + 395.0, + 1077.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1068.0, + 1304.0, + 1068.0, + 1304.0, + 1107.0, + 393.0, + 1107.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1101.0, + 1307.0, + 1101.0, + 1307.0, + 1135.0, + 395.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1639.0, + 1404.0, + 1639.0, + 1404.0, + 1671.0, + 296.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 1404.0, + 1669.0, + 1404.0, + 1705.0, + 294.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1698.0, + 1405.0, + 1698.0, + 1405.0, + 1733.0, + 293.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 1405.0, + 1728.0, + 1405.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1406.0, + 1759.0, + 1406.0, + 1795.0, + 293.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1825.0, + 294.0, + 1825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1820.0, + 1406.0, + 1820.0, + 1406.0, + 1858.0, + 292.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1847.0, + 1410.0, + 1847.0, + 1410.0, + 1890.0, + 292.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1918.0, + 294.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1912.0, + 1407.0, + 1912.0, + 1407.0, + 1945.0, + 293.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1407.0, + 1970.0, + 1407.0, + 2009.0, + 292.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1051.0, + 2001.0, + 1051.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 377.0, + 560.0, + 377.0, + 560.0, + 410.0, + 315.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 407.0, + 682.0, + 407.0, + 682.0, + 440.0, + 311.0, + 440.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 229, + 1405, + 229, + 1405, + 659, + 298, + 659 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1398, + 1405, + 1398, + 1405, + 1766, + 297, + 1766 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 992, + 1405, + 992, + 1405, + 1389, + 298, + 1389 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 672, + 1404, + 672, + 1404, + 918, + 298, + 918 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1776, + 1403, + 1776, + 1403, + 1869, + 298, + 1869 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 298, + 1967, + 1402, + 1967, + 1402, + 2036, + 298, + 2036 + ], + "score": 0.947 + }, + { + "category_id": 8, + "poly": [ + 424, + 1881, + 1271, + 1881, + 1271, + 1956, + 424, + 1956 + ], + "score": 0.945 + }, + { + "category_id": 0, + "poly": [ + 300, + 940, + 578, + 940, + 578, + 974, + 300, + 974 + ], + "score": 0.892 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1904, + 1399, + 1904, + 1399, + 1933, + 1366, + 1933 + ], + "score": 0.863 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.835 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.729 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.169 + }, + { + "category_id": 14, + "poly": [ + 426, + 1880, + 1269, + 1880, + 1269, + 1957, + 426, + 1957 + ], + "score": 0.94, + "latex": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\vartheta , \\varphi , B ) = \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim B } \\left[ - \\log \\pi _ { \\vartheta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } ) \\right) \\right) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 1081, + 1145, + 1204, + 1145, + 1204, + 1178, + 1081, + 1178 + ], + "score": 0.93, + "latex": "\\mathcal { T } _ { i } \\sim p ( \\mathcal { T } )" + }, + { + "category_id": 13, + "poly": [ + 376, + 1967, + 615, + 1967, + 615, + 2005, + 376, + 2005 + ], + "score": 0.93, + "latex": "B = \\{ \\mathbf { s } _ { j } , \\mathbf { a } _ { j } , \\mathbf { s } _ { j } ^ { \\prime } , r _ { j } \\}" + }, + { + "category_id": 13, + "poly": [ + 1208, + 1267, + 1334, + 1267, + 1334, + 1301, + 1208, + 1301 + ], + "score": 0.92, + "latex": "\\mathcal { T } ^ { \\prime } \\sim p ( \\mathcal { T } )" + }, + { + "category_id": 13, + "poly": [ + 725, + 1115, + 878, + 1115, + 878, + 1150, + 725, + 1150 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { \\mathcal { R } = \\sum _ { t } \\gamma ^ { t } r _ { t } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 298, + 1175, + 509, + 1175, + 509, + 1209, + 298, + 1209 + ], + "score": 0.92, + "latex": "\\mathcal { T } _ { i } = ( \\mathcal { S } , \\bar { \\mathcal { A } } , p _ { i } , r _ { i } )" + }, + { + "category_id": 13, + "poly": [ + 962, + 1115, + 1070, + 1115, + 1070, + 1148, + 962, + 1148 + ], + "score": 0.92, + "latex": "\\gamma \\in [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 926, + 1552, + 1167, + 1552, + 1167, + 1586, + 926, + 1586 + ], + "score": 0.92, + "latex": "\\theta ^ { \\prime } = \\theta - \\alpha \\nabla _ { \\theta } \\mathcal { L } _ { T } ( \\theta )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1643, + 539, + 1643, + 539, + 1679, + 298, + 1679 + ], + "score": 0.92, + "latex": "\\theta \\doteq \\theta - \\beta \\nabla _ { \\theta } \\mathcal { L } _ { T } ^ { \\prime } ( \\bar { \\theta } ^ { \\prime } )" + }, + { + "category_id": 13, + "poly": [ + 1005, + 1237, + 1065, + 1237, + 1065, + 1270, + 1005, + 1270 + ], + "score": 0.92, + "latex": "p ( \\mathcal T )" + }, + { + "category_id": 13, + "poly": [ + 533, + 2004, + 639, + 2004, + 639, + 2036, + 533, + 2036 + ], + "score": 0.91, + "latex": "\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } )" + }, + { + "category_id": 13, + "poly": [ + 733, + 1024, + 865, + 1024, + 865, + 1055, + 733, + 1055 + ], + "score": 0.91, + "latex": "( \\boldsymbol { S } , \\boldsymbol { A } , \\boldsymbol { T } , \\boldsymbol { r } )" + }, + { + "category_id": 13, + "poly": [ + 593, + 1085, + 814, + 1085, + 814, + 1117, + 593, + 1117 + ], + "score": 0.9, + "latex": "r _ { t } = r ( s _ { t } , a _ { t } , s _ { t + 1 } )" + }, + { + "category_id": 13, + "poly": [ + 623, + 1643, + 665, + 1643, + 665, + 1678, + 623, + 1678 + ], + "score": 0.89, + "latex": "\\mathcal { L } _ { \\mathcal { T } } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 605, + 1676, + 645, + 1676, + 645, + 1706, + 605, + 1706 + ], + "score": 0.88, + "latex": "\\mathcal { L } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 815, + 1298, + 847, + 1298, + 847, + 1326, + 815, + 1326 + ], + "score": 0.87, + "latex": "\\mathcal { T } ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 640, + 1055, + 911, + 1055, + 911, + 1086, + 640, + 1086 + ], + "score": 0.85, + "latex": "T : \\mathcal { S } \\times \\mathcal { A } \\times \\mathcal { S } [ 0 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 703, + 1675, + 724, + 1675, + 724, + 1705, + 703, + 1705 + ], + "score": 0.85, + "latex": "\\beta" + }, + { + "category_id": 13, + "poly": [ + 605, + 1554, + 623, + 1554, + 623, + 1580, + 605, + 1580 + ], + "score": 0.82, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 893, + 1583, + 918, + 1583, + 918, + 1611, + 893, + 1611 + ], + "score": 0.82, + "latex": "\\theta ^ { \\prime }" + }, + { + "category_id": 13, + "poly": [ + 731, + 1553, + 757, + 1553, + 757, + 1581, + 731, + 1581 + ], + "score": 0.8, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 489, + 1584, + 515, + 1584, + 515, + 1611, + 489, + 1611 + ], + "score": 0.8, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1163, + 1025, + 1186, + 1025, + 1186, + 1052, + 1163, + 1052 + ], + "score": 0.79, + "latex": "s" + }, + { + "category_id": 13, + "poly": [ + 1257, + 1554, + 1280, + 1554, + 1280, + 1580, + 1257, + 1580 + ], + "score": 0.78, + "latex": "\\mathcal { L }" + }, + { + "category_id": 13, + "poly": [ + 421, + 1523, + 439, + 1523, + 439, + 1549, + 421, + 1549 + ], + "score": 0.78, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 950, + 1645, + 975, + 1645, + 975, + 1672, + 950, + 1672 + ], + "score": 0.78, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 565, + 1587, + 587, + 1587, + 587, + 1610, + 565, + 1610 + ], + "score": 0.77, + "latex": "\\alpha" + }, + { + "category_id": 13, + "poly": [ + 1017, + 1493, + 1035, + 1493, + 1035, + 1519, + 1017, + 1519 + ], + "score": 0.77, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1372, + 1025, + 1397, + 1025, + 1397, + 1051, + 1372, + 1051 + ], + "score": 0.77, + "latex": "\\mathcal { A }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1060, + 1187, + 1060, + 1187, + 1081, + 1171, + 1081 + ], + "score": 0.67, + "latex": "r" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1705, + 1070, + 1705, + 1070, + 1734, + 1000, + 1734 + ], + "score": 0.43, + "latex": "2 0 1 7 \\mathrm { a }" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 935.0, + 583.0, + 935.0, + 583.0, + 981.0, + 292.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 230.0, + 1407.0, + 230.0, + 1407.0, + 266.0, + 295.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 1410.0, + 257.0, + 1410.0, + 299.0, + 292.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 287.0, + 1409.0, + 287.0, + 1409.0, + 329.0, + 292.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 319.0, + 1408.0, + 319.0, + 1408.0, + 356.0, + 293.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 352.0, + 1407.0, + 352.0, + 1407.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 383.0, + 1405.0, + 383.0, + 1405.0, + 419.0, + 295.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 412.0, + 1406.0, + 412.0, + 1406.0, + 449.0, + 291.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 444.0, + 1405.0, + 444.0, + 1405.0, + 480.0, + 292.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 471.0, + 1406.0, + 471.0, + 1406.0, + 513.0, + 292.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 505.0, + 1407.0, + 505.0, + 1407.0, + 541.0, + 296.0, + 541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 531.0, + 1409.0, + 531.0, + 1409.0, + 573.0, + 292.0, + 573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 565.0, + 1406.0, + 565.0, + 1406.0, + 599.0, + 293.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 596.0, + 1407.0, + 596.0, + 1407.0, + 631.0, + 293.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 627.0, + 1097.0, + 627.0, + 1097.0, + 659.0, + 296.0, + 659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 1406.0, + 1398.0, + 1406.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1431.0, + 1405.0, + 1431.0, + 1405.0, + 1465.0, + 294.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1461.0, + 1407.0, + 1461.0, + 1407.0, + 1495.0, + 295.0, + 1495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1492.0, + 1016.0, + 1492.0, + 1016.0, + 1526.0, + 296.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1036.0, + 1492.0, + 1406.0, + 1492.0, + 1406.0, + 1526.0, + 1036.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1520.0, + 420.0, + 1520.0, + 420.0, + 1559.0, + 292.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1520.0, + 1406.0, + 1520.0, + 1406.0, + 1559.0, + 440.0, + 1559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1552.0, + 604.0, + 1552.0, + 604.0, + 1589.0, + 294.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 624.0, + 1552.0, + 730.0, + 1552.0, + 730.0, + 1589.0, + 624.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 1552.0, + 925.0, + 1552.0, + 925.0, + 1589.0, + 758.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 1552.0, + 1256.0, + 1552.0, + 1256.0, + 1589.0, + 1168.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 1552.0, + 1406.0, + 1552.0, + 1406.0, + 1589.0, + 1281.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1583.0, + 488.0, + 1583.0, + 488.0, + 1617.0, + 295.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1583.0, + 564.0, + 1583.0, + 564.0, + 1617.0, + 516.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 588.0, + 1583.0, + 892.0, + 1583.0, + 892.0, + 1617.0, + 588.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1583.0, + 1405.0, + 1583.0, + 1405.0, + 1617.0, + 919.0, + 1617.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1611.0, + 1407.0, + 1611.0, + 1407.0, + 1650.0, + 291.0, + 1650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1640.0, + 297.0, + 1640.0, + 297.0, + 1681.0, + 291.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 540.0, + 1640.0, + 622.0, + 1640.0, + 622.0, + 1681.0, + 540.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 1640.0, + 949.0, + 1640.0, + 949.0, + 1681.0, + 666.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 976.0, + 1640.0, + 1408.0, + 1640.0, + 1408.0, + 1681.0, + 976.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1672.0, + 604.0, + 1672.0, + 604.0, + 1710.0, + 294.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 646.0, + 1672.0, + 702.0, + 1672.0, + 702.0, + 1710.0, + 646.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 725.0, + 1672.0, + 1406.0, + 1672.0, + 1406.0, + 1710.0, + 725.0, + 1710.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1704.0, + 999.0, + 1704.0, + 999.0, + 1739.0, + 292.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1704.0, + 1406.0, + 1704.0, + 1406.0, + 1739.0, + 1071.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1736.0, + 1333.0, + 1736.0, + 1333.0, + 1770.0, + 295.0, + 1770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 992.0, + 1405.0, + 992.0, + 1405.0, + 1029.0, + 293.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1022.0, + 732.0, + 1022.0, + 732.0, + 1058.0, + 295.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 1022.0, + 1162.0, + 1022.0, + 1162.0, + 1058.0, + 866.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1187.0, + 1022.0, + 1371.0, + 1022.0, + 1371.0, + 1058.0, + 1187.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1022.0, + 1407.0, + 1022.0, + 1407.0, + 1058.0, + 1398.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1049.0, + 639.0, + 1049.0, + 639.0, + 1092.0, + 291.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1049.0, + 1170.0, + 1049.0, + 1170.0, + 1092.0, + 912.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1049.0, + 1410.0, + 1049.0, + 1410.0, + 1092.0, + 1188.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1084.0, + 592.0, + 1084.0, + 592.0, + 1121.0, + 295.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1084.0, + 1406.0, + 1084.0, + 1406.0, + 1121.0, + 815.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1113.0, + 724.0, + 1113.0, + 724.0, + 1153.0, + 293.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 1113.0, + 961.0, + 1113.0, + 961.0, + 1153.0, + 879.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1113.0, + 1407.0, + 1113.0, + 1407.0, + 1153.0, + 1071.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1143.0, + 1080.0, + 1143.0, + 1080.0, + 1183.0, + 293.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1205.0, + 1143.0, + 1407.0, + 1143.0, + 1407.0, + 1183.0, + 1205.0, + 1183.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1171.0, + 297.0, + 1171.0, + 297.0, + 1215.0, + 293.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 1171.0, + 1407.0, + 1171.0, + 1407.0, + 1215.0, + 510.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1203.0, + 1407.0, + 1203.0, + 1407.0, + 1245.0, + 291.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1238.0, + 1004.0, + 1238.0, + 1004.0, + 1271.0, + 293.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1238.0, + 1405.0, + 1238.0, + 1405.0, + 1271.0, + 1066.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1267.0, + 1207.0, + 1267.0, + 1207.0, + 1303.0, + 295.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1267.0, + 1406.0, + 1267.0, + 1406.0, + 1303.0, + 1335.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1297.0, + 814.0, + 1297.0, + 814.0, + 1333.0, + 293.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1297.0, + 1405.0, + 1297.0, + 1405.0, + 1333.0, + 848.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1326.0, + 1406.0, + 1326.0, + 1406.0, + 1364.0, + 292.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1356.0, + 816.0, + 1356.0, + 816.0, + 1395.0, + 293.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 674.0, + 1404.0, + 674.0, + 1404.0, + 707.0, + 296.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 705.0, + 1404.0, + 705.0, + 1404.0, + 739.0, + 293.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 735.0, + 1405.0, + 735.0, + 1405.0, + 769.0, + 294.0, + 769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 765.0, + 1404.0, + 765.0, + 1404.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 796.0, + 1405.0, + 796.0, + 1405.0, + 830.0, + 294.0, + 830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 823.0, + 1405.0, + 823.0, + 1405.0, + 864.0, + 292.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 857.0, + 1404.0, + 857.0, + 1404.0, + 891.0, + 294.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 888.0, + 895.0, + 888.0, + 895.0, + 920.0, + 293.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1773.0, + 1404.0, + 1773.0, + 1404.0, + 1813.0, + 293.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1804.0, + 1404.0, + 1804.0, + 1404.0, + 1842.0, + 292.0, + 1842.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1839.0, + 606.0, + 1839.0, + 606.0, + 1874.0, + 296.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1962.0, + 375.0, + 1962.0, + 375.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 616.0, + 1962.0, + 1407.0, + 1962.0, + 1407.0, + 2008.0, + 616.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1999.0, + 532.0, + 1999.0, + 532.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1999.0, + 1404.0, + 1999.0, + 1404.0, + 2040.0, + 640.0, + 2040.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1262, + 1404, + 1262, + 1404, + 1751, + 297, + 1751 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 940, + 1405, + 940, + 1405, + 1246, + 297, + 1246 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 669, + 1406, + 669, + 1406, + 854, + 298, + 854 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1766, + 1403, + 1766, + 1403, + 1950, + 298, + 1950 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 307, + 220, + 1404, + 220, + 1404, + 468, + 307, + 468 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 297, + 483, + 1405, + 483, + 1405, + 651, + 297, + 651 + ], + "score": 0.965 + }, + { + "category_id": 0, + "poly": [ + 299, + 881, + 845, + 881, + 845, + 918, + 299, + 918 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.616 + }, + { + "category_id": 0, + "poly": [ + 297, + 1978, + 1264, + 1978, + 1264, + 2014, + 297, + 2014 + ], + "score": 0.372 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2111, + 841, + 2111 + ], + "score": 0.362 + }, + { + "category_id": 13, + "poly": [ + 1108, + 1033, + 1401, + 1033, + 1401, + 1070, + 1108, + 1070 + ], + "score": 0.93, + "latex": "B _ { i } = \\{ s _ { i , j } , a _ { i , j } , s _ { i , j } ^ { \\prime } , r _ { i , j } \\}" + }, + { + "category_id": 13, + "poly": [ + 673, + 700, + 880, + 700, + 880, + 734, + 673, + 734 + ], + "score": 0.92, + "latex": "\\mathcal { R } _ { B } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\varphi } ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 1261, + 972, + 1321, + 972, + 1321, + 1006, + 1261, + 1006 + ], + "score": 0.92, + "latex": "p ( \\mathcal { T } )" + }, + { + "category_id": 13, + "poly": [ + 358, + 1415, + 418, + 1415, + 418, + 1448, + 358, + 1448 + ], + "score": 0.91, + "latex": "p ( \\mathcal T )" + }, + { + "category_id": 13, + "poly": [ + 384, + 1537, + 437, + 1537, + 437, + 1567, + 384, + 1567 + ], + "score": 0.91, + "latex": "B _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 325, + 670, + 394, + 670, + 394, + 704, + 325, + 704 + ], + "score": 0.9, + "latex": "V _ { \\varphi } ( \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 453, + 1446, + 505, + 1446, + 505, + 1476, + 453, + 1476 + ], + "score": 0.9, + "latex": "B _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 1256, + 1385, + 1303, + 1385, + 1303, + 1415, + 1256, + 1415 + ], + "score": 0.9, + "latex": "\\mathcal { T } _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 1276, + 671, + 1354, + 671, + 1354, + 700, + 1276, + 700 + ], + "score": 0.9, + "latex": "T > 0" + }, + { + "category_id": 13, + "poly": [ + 1349, + 1477, + 1402, + 1477, + 1402, + 1507, + 1349, + 1507 + ], + "score": 0.89, + "latex": "B _ { \\mathrm { t e s t } }" + }, + { + "category_id": 13, + "poly": [ + 937, + 1477, + 969, + 1477, + 969, + 1507, + 937, + 1507 + ], + "score": 0.89, + "latex": "B _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1332, + 789, + 1398, + 789, + 1398, + 820, + 1332, + 820 + ], + "score": 0.89, + "latex": "\\mathcal { L } ^ { \\mathrm { A W R } }" + }, + { + "category_id": 13, + "poly": [ + 516, + 1065, + 550, + 1065, + 550, + 1094, + 516, + 1094 + ], + "score": 0.88, + "latex": "B _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1537, + 330, + 1537, + 330, + 1567, + 298, + 1567 + ], + "score": 0.87, + "latex": "B _ { i }" + }, + { + "category_id": 13, + "poly": [ + 867, + 973, + 895, + 973, + 895, + 1003, + 867, + 1003 + ], + "score": 0.86, + "latex": "\\mathcal { T } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 360, + 1034, + 388, + 1034, + 388, + 1064, + 360, + 1064 + ], + "score": 0.86, + "latex": "\\mathcal { T } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 399, + 1098, + 428, + 1098, + 428, + 1126, + 399, + 1126 + ], + "score": 0.85, + "latex": "\\mu _ { i }" + }, + { + "category_id": 13, + "poly": [ + 944, + 568, + 970, + 568, + 970, + 594, + 944, + 594 + ], + "score": 0.85, + "latex": "\\mathcal { T } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 808, + 1129, + 838, + 1129, + 838, + 1157, + 808, + 1157 + ], + "score": 0.85, + "latex": "\\mu _ { i }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1098, + 326, + 1098, + 326, + 1126, + 298, + 1126 + ], + "score": 0.83, + "latex": "\\mu _ { i }" + }, + { + "category_id": 13, + "poly": [ + 1109, + 793, + 1130, + 793, + 1130, + 819, + 1109, + 819 + ], + "score": 0.82, + "latex": "\\vartheta" + }, + { + "category_id": 13, + "poly": [ + 1084, + 767, + 1107, + 767, + 1107, + 793, + 1084, + 793 + ], + "score": 0.82, + "latex": "\\varphi" + }, + { + "category_id": 13, + "poly": [ + 1215, + 1417, + 1242, + 1417, + 1242, + 1443, + 1215, + 1443 + ], + "score": 0.75, + "latex": "D" + }, + { + "category_id": 15, + "poly": [ + 426.0, + 226.0, + 758.0, + 226.0, + 758.0, + 265.0, + 426.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 224.0, + 1306.0, + 224.0, + 1306.0, + 267.0, + 1019.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 275.0, + 544.0, + 275.0, + 544.0, + 315.0, + 373.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 629.0, + 275.0, + 789.0, + 275.0, + 789.0, + 315.0, + 629.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 939.0, + 275.0, + 1109.0, + 275.0, + 1109.0, + 315.0, + 939.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 275.0, + 1356.0, + 275.0, + 1356.0, + 315.0, + 1198.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 304.0, + 783.0, + 304.0, + 783.0, + 327.0, + 635.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 652.0, + 320.0, + 764.0, + 320.0, + 764.0, + 343.0, + 652.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 322.0, + 952.0, + 322.0, + 952.0, + 352.0, + 918.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 346.0, + 514.0, + 346.0, + 514.0, + 369.0, + 434.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 371.0, + 571.0, + 371.0, + 571.0, + 384.0, + 550.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 346.0, + 772.0, + 346.0, + 772.0, + 373.0, + 690.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 352.0, + 913.0, + 352.0, + 913.0, + 380.0, + 889.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 357.0, + 976.0, + 357.0, + 976.0, + 385.0, + 953.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 351.0, + 1083.0, + 351.0, + 1083.0, + 379.0, + 1000.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1105.0, + 362.0, + 1145.0, + 362.0, + 1145.0, + 383.0, + 1105.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 374.0, + 1233.0, + 374.0, + 1233.0, + 397.0, + 1213.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 354.0, + 1351.0, + 354.0, + 1351.0, + 377.0, + 1269.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1358.0, + 359.0, + 1399.0, + 359.0, + 1399.0, + 385.0, + 1358.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 343.0, + 398.0, + 392.0, + 398.0, + 392.0, + 429.0, + 343.0, + 429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 449.0, + 401.0, + 505.0, + 401.0, + 505.0, + 421.0, + 449.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 399.0, + 677.0, + 399.0, + 677.0, + 428.0, + 630.0, + 428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 400.0, + 764.0, + 400.0, + 764.0, + 424.0, + 706.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 388.0, + 925.0, + 388.0, + 925.0, + 418.0, + 894.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1175.0, + 398.0, + 1271.0, + 398.0, + 1271.0, + 423.0, + 1175.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 418.0, + 389.0, + 418.0, + 389.0, + 450.0, + 331.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 421.0, + 711.0, + 421.0, + 711.0, + 452.0, + 594.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 417.0, + 992.0, + 417.0, + 992.0, + 448.0, + 877.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 417.0, + 1268.0, + 417.0, + 1268.0, + 445.0, + 1178.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 443.0, + 420.0, + 443.0, + 420.0, + 470.0, + 301.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 440.0, + 984.0, + 440.0, + 984.0, + 471.0, + 885.0, + 471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 795.0, + 368.0, + 830.0, + 368.0, + 830.0, + 386.0, + 795.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.75, + 398.0, + 972.75, + 398.0, + 972.75, + 419.5, + 948.75, + 419.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 482.0, + 1407.0, + 482.0, + 1407.0, + 516.0, + 295.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 507.0, + 1406.0, + 507.0, + 1406.0, + 546.0, + 292.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 537.0, + 1406.0, + 537.0, + 1406.0, + 572.0, + 292.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 566.0, + 943.0, + 566.0, + 943.0, + 597.0, + 295.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 566.0, + 1405.0, + 566.0, + 1405.0, + 597.0, + 971.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 595.0, + 1406.0, + 595.0, + 1406.0, + 624.0, + 295.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 624.0, + 1247.0, + 624.0, + 1247.0, + 652.0, + 294.0, + 652.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 879.0, + 849.0, + 879.0, + 849.0, + 923.0, + 292.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1976.0, + 1270.0, + 1976.0, + 1270.0, + 2017.0, + 293.0, + 2017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1262.0, + 1402.0, + 1262.0, + 1402.0, + 1297.0, + 295.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1294.0, + 1405.0, + 1294.0, + 1405.0, + 1329.0, + 294.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1322.0, + 1405.0, + 1322.0, + 1405.0, + 1359.0, + 292.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1353.0, + 1405.0, + 1353.0, + 1405.0, + 1390.0, + 294.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1381.0, + 1255.0, + 1381.0, + 1255.0, + 1422.0, + 292.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 1381.0, + 1406.0, + 1381.0, + 1406.0, + 1422.0, + 1304.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 357.0, + 1414.0, + 357.0, + 1453.0, + 294.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1414.0, + 1214.0, + 1414.0, + 1214.0, + 1453.0, + 419.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1414.0, + 1406.0, + 1414.0, + 1406.0, + 1453.0, + 1243.0, + 1453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1444.0, + 452.0, + 1444.0, + 452.0, + 1483.0, + 291.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 506.0, + 1444.0, + 1405.0, + 1444.0, + 1405.0, + 1483.0, + 506.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1471.0, + 936.0, + 1471.0, + 936.0, + 1516.0, + 291.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1471.0, + 1348.0, + 1471.0, + 1348.0, + 1516.0, + 970.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1471.0, + 1406.0, + 1471.0, + 1406.0, + 1516.0, + 1403.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1508.0, + 1405.0, + 1508.0, + 1405.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1533.0, + 297.0, + 1533.0, + 297.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1533.0, + 383.0, + 1533.0, + 383.0, + 1573.0, + 331.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 438.0, + 1533.0, + 1405.0, + 1533.0, + 1405.0, + 1573.0, + 438.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1404.0, + 1568.0, + 1404.0, + 1602.0, + 294.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1597.0, + 1406.0, + 1597.0, + 1406.0, + 1632.0, + 295.0, + 1632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1629.0, + 1405.0, + 1629.0, + 1405.0, + 1664.0, + 295.0, + 1664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1657.0, + 1407.0, + 1657.0, + 1407.0, + 1695.0, + 294.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1691.0, + 1402.0, + 1691.0, + 1402.0, + 1725.0, + 295.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1718.0, + 918.0, + 1718.0, + 918.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 941.0, + 1405.0, + 941.0, + 1405.0, + 976.0, + 295.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 974.0, + 866.0, + 974.0, + 866.0, + 1005.0, + 296.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 974.0, + 1260.0, + 974.0, + 1260.0, + 1005.0, + 896.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1322.0, + 974.0, + 1403.0, + 974.0, + 1403.0, + 1005.0, + 1322.0, + 1005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 998.0, + 1405.0, + 998.0, + 1405.0, + 1041.0, + 294.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1026.0, + 359.0, + 1026.0, + 359.0, + 1075.0, + 291.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 1026.0, + 1107.0, + 1026.0, + 1107.0, + 1075.0, + 389.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1026.0, + 1406.0, + 1026.0, + 1406.0, + 1075.0, + 1402.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1061.0, + 515.0, + 1061.0, + 515.0, + 1099.0, + 294.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1061.0, + 1405.0, + 1061.0, + 1405.0, + 1099.0, + 551.0, + 1099.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1096.0, + 297.0, + 1096.0, + 297.0, + 1130.0, + 294.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1096.0, + 398.0, + 1096.0, + 398.0, + 1130.0, + 327.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 1096.0, + 1405.0, + 1096.0, + 1405.0, + 1130.0, + 429.0, + 1130.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1122.0, + 807.0, + 1122.0, + 807.0, + 1160.0, + 294.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 1122.0, + 1406.0, + 1122.0, + 1406.0, + 1160.0, + 839.0, + 1160.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1156.0, + 1407.0, + 1156.0, + 1407.0, + 1188.0, + 295.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1186.0, + 1405.0, + 1186.0, + 1405.0, + 1221.0, + 295.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1216.0, + 670.0, + 1216.0, + 670.0, + 1248.0, + 296.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 669.0, + 324.0, + 669.0, + 324.0, + 705.0, + 291.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 669.0, + 1275.0, + 669.0, + 1275.0, + 705.0, + 395.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 669.0, + 1408.0, + 669.0, + 1408.0, + 705.0, + 1355.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 700.0, + 672.0, + 700.0, + 672.0, + 735.0, + 292.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 881.0, + 700.0, + 1409.0, + 700.0, + 1409.0, + 735.0, + 881.0, + 735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 730.0, + 1406.0, + 730.0, + 1406.0, + 765.0, + 295.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 761.0, + 1083.0, + 761.0, + 1083.0, + 797.0, + 295.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 761.0, + 1406.0, + 761.0, + 1406.0, + 797.0, + 1108.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 786.0, + 1108.0, + 786.0, + 1108.0, + 829.0, + 288.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1131.0, + 786.0, + 1331.0, + 786.0, + 1331.0, + 829.0, + 1131.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1399.0, + 786.0, + 1410.0, + 786.0, + 1410.0, + 829.0, + 1399.0, + 829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 820.0, + 1218.0, + 820.0, + 1218.0, + 858.0, + 293.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1765.0, + 1405.0, + 1765.0, + 1405.0, + 1801.0, + 294.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1795.0, + 1408.0, + 1795.0, + 1408.0, + 1833.0, + 292.0, + 1833.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1825.0, + 1408.0, + 1825.0, + 1408.0, + 1863.0, + 293.0, + 1863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1857.0, + 1405.0, + 1857.0, + 1405.0, + 1892.0, + 293.0, + 1892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1886.0, + 1407.0, + 1886.0, + 1407.0, + 1924.0, + 292.0, + 1924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1918.0, + 773.0, + 1918.0, + 773.0, + 1953.0, + 294.0, + 1953.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1314, + 1080, + 1314, + 1080, + 1621, + 297, + 1621 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 975, + 1080, + 975, + 1080, + 1248, + 297, + 1248 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 1819, + 1405, + 1819, + 1405, + 2035, + 296, + 2035 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 680, + 1405, + 680, + 1405, + 866, + 297, + 866 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 880, + 1404, + 880, + 1404, + 973, + 297, + 973 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 1099, + 1411, + 1404, + 1411, + 1404, + 1635, + 1099, + 1635 + ], + "score": 0.959 + }, + { + "category_id": 3, + "poly": [ + 1107, + 1006, + 1398, + 1006, + 1398, + 1394, + 1107, + 1394 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 313, + 305, + 858, + 305, + 858, + 659, + 313, + 659 + ], + "score": 0.924 + }, + { + "category_id": 0, + "poly": [ + 301, + 1265, + 793, + 1265, + 793, + 1296, + 301, + 1296 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 295, + 1773, + 1340, + 1773, + 1340, + 1806, + 295, + 1806 + ], + "score": 0.906 + }, + { + "category_id": 1, + "poly": [ + 886, + 304, + 1378, + 304, + 1378, + 590, + 886, + 590 + ], + "score": 0.9 + }, + { + "category_id": 8, + "poly": [ + 315, + 1715, + 1332, + 1715, + 1332, + 1759, + 315, + 1759 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1721, + 1400, + 1721, + 1400, + 1751, + 1366, + 1751 + ], + "score": 0.844 + }, + { + "category_id": 0, + "poly": [ + 879, + 262, + 1291, + 262, + 1291, + 296, + 879, + 296 + ], + "score": 0.795 + }, + { + "category_id": 0, + "poly": [ + 306, + 262, + 731, + 262, + 731, + 295, + 306, + 295 + ], + "score": 0.78 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 301, + 1636, + 1306, + 1636, + 1306, + 1699, + 301, + 1699 + ], + "score": 0.614 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.113 + }, + { + "category_id": 13, + "poly": [ + 419, + 1773, + 527, + 1773, + 527, + 1807, + 419, + 1807 + ], + "score": 0.93, + "latex": "\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } )" + }, + { + "category_id": 13, + "poly": [ + 505, + 307, + 559, + 307, + 559, + 341, + 505, + 341 + ], + "score": 0.91, + "latex": "\\{ \\mathcal { T } _ { i } \\}" + }, + { + "category_id": 13, + "poly": [ + 472, + 459, + 585, + 459, + 585, + 493, + 472, + 493 + ], + "score": 0.91, + "latex": "\\mathcal { T } _ { i } \\in \\{ \\mathcal { T } _ { i } \\}" + }, + { + "category_id": 13, + "poly": [ + 628, + 1637, + 668, + 1637, + 668, + 1670, + 628, + 1670 + ], + "score": 0.9, + "latex": "D _ { i } ^ { \\mathrm { t r } }" + }, + { + "category_id": 13, + "poly": [ + 953, + 1881, + 1168, + 1881, + 1168, + 1920, + 953, + 1920 + ], + "score": 0.89, + "latex": "\\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )" + }, + { + "category_id": 14, + "poly": [ + 329, + 1714, + 1336, + 1714, + 1336, + 1757, + 329, + 1757 + ], + "score": 0.89, + "latex": "\\phi _ { i } ^ { \\prime } \\xleftarrow { } \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { I } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { V } ( \\phi , D ) \\triangleq \\mathbb { E } _ { \\mathbf { s } , \\mathbf { a } \\sim D } \\left[ ( V _ { \\phi } ( \\mathbf { s } ) - \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) ) ^ { 2 } \\right]" + }, + { + "category_id": 13, + "poly": [ + 628, + 943, + 662, + 943, + 662, + 975, + 628, + 975 + ], + "score": 0.88, + "latex": "V _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1124, + 459, + 1216, + 459, + 1216, + 490, + 1124, + 490 + ], + "score": 0.88, + "latex": "\\phi _ { 0 } \\phi" + }, + { + "category_id": 13, + "poly": [ + 734, + 307, + 796, + 307, + 796, + 341, + 734, + 341 + ], + "score": 0.87, + "latex": "\\{ D _ { i } \\}" + }, + { + "category_id": 13, + "poly": [ + 1122, + 307, + 1152, + 307, + 1152, + 339, + 1122, + 339 + ], + "score": 0.87, + "latex": "\\tau _ { j }" + }, + { + "category_id": 13, + "poly": [ + 1028, + 458, + 1114, + 458, + 1114, + 489, + 1028, + 489 + ], + "score": 0.87, + "latex": "\\theta _ { 0 } \\theta" + }, + { + "category_id": 13, + "poly": [ + 1310, + 405, + 1370, + 405, + 1370, + 429, + 1310, + 429 + ], + "score": 0.87, + "latex": "\\alpha _ { 1 } , \\eta" + }, + { + "category_id": 13, + "poly": [ + 815, + 1637, + 842, + 1637, + 842, + 1667, + 815, + 1667 + ], + "score": 0.86, + "latex": "\\mathcal { T } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 297, + 943, + 318, + 943, + 318, + 974, + 297, + 974 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1102, + 343, + 1133, + 343, + 1133, + 367, + 1102, + 367 + ], + "score": 0.84, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 795, + 947, + 826, + 947, + 826, + 972, + 795, + 972 + ], + "score": 0.83, + "latex": "\\pi _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1305, + 1775, + 1330, + 1775, + 1330, + 1801, + 1305, + 1801 + ], + "score": 0.83, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 350, + 374, + 380, + 374, + 380, + 401, + 350, + 401 + ], + "score": 0.81, + "latex": "\\eta _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 1325, + 430, + 1349, + 430, + 1349, + 455, + 1325, + 455 + ], + "score": 0.8, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 677, + 489, + 836, + 489, + 836, + 524, + 677, + 524 + ], + "score": 0.8, + "latex": "D _ { i } ^ { \\mathrm { t r } } , D _ { i } ^ { \\mathrm { t s } } \\sim D _ { i }" + }, + { + "category_id": 13, + "poly": [ + 372, + 943, + 389, + 943, + 389, + 969, + 372, + 969 + ], + "score": 0.77, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 764, + 370, + 788, + 370, + 788, + 396, + 764, + 396 + ], + "score": 0.76, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 923, + 367, + 957, + 367, + 957, + 401, + 923, + 401 + ], + "score": 0.75, + "latex": "V _ { \\phi }" + }, + { + "category_id": 13, + "poly": [ + 1155, + 434, + 1175, + 434, + 1175, + 456, + 1155, + 456 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 923, + 338, + 950, + 338, + 950, + 365, + 923, + 365 + ], + "score": 0.74, + "latex": "D" + }, + { + "category_id": 13, + "poly": [ + 407, + 521, + 720, + 521, + 720, + 552, + 407, + 552 + ], + "score": 0.72, + "latex": "\\phi _ { i } ^ { \\prime } \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t } } )" + }, + { + "category_id": 13, + "poly": [ + 594, + 375, + 614, + 375, + 614, + 396, + 594, + 396 + ], + "score": 0.7, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 401, + 553, + 747, + 553, + 747, + 582, + 401, + 582 + ], + "score": 0.69, + "latex": "\\theta _ { i } ^ { \\prime } \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } )" + }, + { + "category_id": 13, + "poly": [ + 392, + 434, + 413, + 434, + 413, + 458, + 392, + 458 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 964, + 493, + 985, + 493, + 985, + 516, + 964, + 516 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 377, + 584, + 758, + 584, + 758, + 615, + 377, + 615 + ], + "score": 0.63, + "latex": "\\begin{array} { r l } { \\phi \\phi - \\eta _ { 2 } \\sum _ { i } [ \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 796, + 400, + 817, + 400, + 817, + 431, + 796, + 431 + ], + "score": 0.61, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 947, + 517, + 1310, + 517, + 1310, + 551, + 947, + 551 + ], + "score": 0.56, + "latex": "\\phi _ { t + 1 } \\stackrel { . } { } \\phi _ { t } - \\eta _ { 1 } \\nabla _ { \\phi _ { t } } \\mathcal { L } _ { V } ( \\phi _ { t } , D )" + }, + { + "category_id": 13, + "poly": [ + 376, + 614, + 819, + 614, + 819, + 653, + 376, + 653 + ], + "score": 0.52, + "latex": "\\begin{array} { r l } { \\small } & { { } \\theta \\theta - \\alpha _ { 2 } \\sum _ { i } [ \\nabla _ { \\theta } \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) ] } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 824, + 344, + 853, + 344, + 853, + 369, + 824, + 369 + ], + "score": 0.48, + "latex": "\\eta _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 781, + 345, + 813, + 345, + 813, + 368, + 781, + 368 + ], + "score": 0.46, + "latex": "\\alpha _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 737, + 344, + 769, + 344, + 769, + 368, + 737, + 368 + ], + "score": 0.46, + "latex": "\\alpha _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 768, + 400, + 785, + 400, + 785, + 426, + 768, + 426 + ], + "score": 0.44, + "latex": "\\theta" + }, + { + "category_id": 14, + "poly": [ + 947, + 517, + 1362, + 517, + 1362, + 587, + 947, + 587 + ], + "score": 0.4, + "latex": "\\begin{array} { r l } & { \\phi _ { t + 1 } \\dot { } \\phi _ { t } - \\eta _ { 1 } \\nabla _ { \\phi _ { t } } \\mathcal { L } _ { V } ( \\phi _ { t } , D ) } \\\\ & { \\theta _ { t + 1 } \\theta _ { t } - \\alpha _ { 1 } \\nabla _ { \\theta _ { t } } \\mathcal { L } _ { \\pi } ( \\theta _ { t } , \\phi _ { t + 1 } , D ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 950, + 551, + 1361, + 551, + 1361, + 584, + 950, + 584 + ], + "score": 0.4, + "latex": "\\theta _ { t + 1 } \\theta _ { t } - \\alpha _ { 1 } \\nabla _ { \\theta _ { t } } \\mathcal { L } _ { \\pi } ( \\theta _ { t } , \\phi _ { t + 1 } , D )" + }, + { + "category_id": 14, + "poly": [ + 379, + 518, + 756, + 518, + 756, + 657, + 379, + 657 + ], + "score": 0.28, + "latex": "\\begin{array}{c} \\begin{array} { r l } & { \\quad \\phi _ { i } ^ { \\prime } \\xleftarrow { * } \\phi - \\check { \\eta } _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\theta _ { i } ^ { \\prime } \\xleftarrow \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) } \\\\ & { \\quad \\phi \\xleftarrow \\phi - \\eta _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] } \\\\ & { \\quad \\theta \\xleftarrow \\theta - \\alpha _ { 2 } \\sum _ { i } \\left[ \\nabla _ { \\theta } \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , \\right.} \\end{array} \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 769, + 398, + 818, + 398, + 818, + 431, + 769, + 431 + ], + "score": 0.28, + "latex": "\\theta , \\phi" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1407.0, + 1407.0, + 1407.0, + 1407.0, + 1446.0, + 1097.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1440.0, + 1404.0, + 1440.0, + 1404.0, + 1470.0, + 1099.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1468.0, + 1402.0, + 1468.0, + 1402.0, + 1497.0, + 1099.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1100.0, + 1497.0, + 1403.0, + 1497.0, + 1403.0, + 1525.0, + 1100.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1522.0, + 1407.0, + 1522.0, + 1407.0, + 1556.0, + 1098.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1099.0, + 1550.0, + 1405.0, + 1550.0, + 1405.0, + 1582.0, + 1099.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 1574.0, + 1405.0, + 1574.0, + 1405.0, + 1612.0, + 1096.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 1606.0, + 1250.0, + 1606.0, + 1250.0, + 1641.0, + 1097.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1298.0, + 1039.0, + 1352.0, + 1039.0, + 1352.0, + 1112.0, + 1298.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1052.0, + 1178.0, + 1052.0, + 1178.0, + 1063.0, + 1164.0, + 1063.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1177.0, + 1052.0, + 1198.0, + 1052.0, + 1198.0, + 1092.0, + 1177.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.0, + 1087.0, + 1245.0, + 1087.0, + 1245.0, + 1141.0, + 1116.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 1089.0, + 1384.0, + 1089.0, + 1384.0, + 1147.0, + 1266.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 1130.0, + 1203.0, + 1130.0, + 1203.0, + 1172.0, + 1153.0, + 1172.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1308.0, + 1138.0, + 1325.0, + 1138.0, + 1325.0, + 1156.0, + 1308.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1165.0, + 1170.0, + 1199.0, + 1170.0, + 1199.0, + 1191.0, + 1165.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1312.0, + 1168.0, + 1345.0, + 1168.0, + 1345.0, + 1191.0, + 1312.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1192.0, + 1215.0, + 1192.0, + 1215.0, + 1223.0, + 1143.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1191.0, + 1381.0, + 1191.0, + 1381.0, + 1227.0, + 1267.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 1212.0, + 1213.0, + 1212.0, + 1213.0, + 1247.0, + 1147.0, + 1247.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1294.0, + 1216.0, + 1354.0, + 1216.0, + 1354.0, + 1245.0, + 1294.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 1252.0, + 1233.0, + 1252.0, + 1233.0, + 1269.0, + 1195.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1261.0, + 1250.0, + 1323.0, + 1250.0, + 1323.0, + 1277.0, + 1261.0, + 1277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1283.0, + 1288.0, + 1283.0, + 1288.0, + 1326.0, + 1217.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1310.0, + 1388.0, + 1310.0, + 1388.0, + 1350.0, + 1356.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1243.0, + 1336.0, + 1260.0, + 1336.0, + 1260.0, + 1355.0, + 1243.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 1366.0, + 1340.0, + 1366.0, + 1340.0, + 1397.0, + 1310.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1368.0, + 1264.0, + 1368.0, + 1264.0, + 1396.0, + 1238.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1001.5, + 1236.0, + 1001.5, + 1236.0, + 1050.0, + 1121.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.25, + 1001.5, + 1377.25, + 1001.5, + 1377.25, + 1050.5, + 1269.25, + 1050.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1144.0, + 1346.0, + 1144.0, + 1346.0, + 1161.5, + 1317.0, + 1161.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 797.0, + 1264.0, + 797.0, + 1300.0, + 295.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 255.0, + 1293.0, + 255.0, + 1293.0, + 303.0, + 872.0, + 303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 257.0, + 735.0, + 257.0, + 735.0, + 302.0, + 300.0, + 302.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": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1313.0, + 1080.0, + 1313.0, + 1080.0, + 1351.0, + 294.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1082.0, + 1344.0, + 1082.0, + 1380.0, + 294.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 1080.0, + 1375.0, + 1080.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1405.0, + 1083.0, + 1405.0, + 1083.0, + 1441.0, + 294.0, + 1441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1436.0, + 1084.0, + 1436.0, + 1084.0, + 1472.0, + 293.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1467.0, + 1083.0, + 1467.0, + 1083.0, + 1502.0, + 292.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1496.0, + 1081.0, + 1496.0, + 1081.0, + 1534.0, + 292.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 1085.0, + 1528.0, + 1085.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1556.0, + 1081.0, + 1556.0, + 1081.0, + 1596.0, + 292.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 949.0, + 1590.0, + 949.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 974.0, + 1079.0, + 974.0, + 1079.0, + 1004.0, + 294.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1004.0, + 1080.0, + 1004.0, + 1080.0, + 1035.0, + 294.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1032.0, + 1080.0, + 1032.0, + 1080.0, + 1068.0, + 293.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1064.0, + 1080.0, + 1064.0, + 1080.0, + 1097.0, + 295.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1094.0, + 1080.0, + 1094.0, + 1080.0, + 1127.0, + 295.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1123.0, + 1083.0, + 1123.0, + 1083.0, + 1159.0, + 294.0, + 1159.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1155.0, + 1083.0, + 1155.0, + 1083.0, + 1188.0, + 294.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1184.0, + 1082.0, + 1184.0, + 1082.0, + 1220.0, + 294.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1216.0, + 1083.0, + 1216.0, + 1083.0, + 1249.0, + 295.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1817.0, + 1406.0, + 1817.0, + 1406.0, + 1858.0, + 293.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1848.0, + 1408.0, + 1848.0, + 1408.0, + 1889.0, + 291.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1878.0, + 952.0, + 1878.0, + 952.0, + 1920.0, + 291.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1169.0, + 1878.0, + 1406.0, + 1878.0, + 1406.0, + 1920.0, + 1169.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1405.0, + 1912.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, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1969.0, + 1406.0, + 1969.0, + 1406.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 1410.0, + 2001.0, + 1410.0, + 2039.0, + 293.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 681.0, + 1403.0, + 681.0, + 1403.0, + 713.0, + 295.0, + 713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 710.0, + 1403.0, + 710.0, + 1403.0, + 745.0, + 294.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 740.0, + 1408.0, + 740.0, + 1408.0, + 777.0, + 294.0, + 777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 772.0, + 1403.0, + 772.0, + 1403.0, + 806.0, + 294.0, + 806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 805.0, + 1403.0, + 805.0, + 1403.0, + 837.0, + 296.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 833.0, + 845.0, + 833.0, + 845.0, + 868.0, + 294.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 877.0, + 1405.0, + 877.0, + 1405.0, + 917.0, + 292.0, + 917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 912.0, + 1404.0, + 912.0, + 1404.0, + 945.0, + 294.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 942.0, + 371.0, + 942.0, + 371.0, + 976.0, + 319.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 942.0, + 627.0, + 942.0, + 627.0, + 976.0, + 390.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 663.0, + 942.0, + 794.0, + 942.0, + 794.0, + 976.0, + 663.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 942.0, + 1405.0, + 942.0, + 1405.0, + 976.0, + 827.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 303.0, + 504.0, + 303.0, + 504.0, + 343.0, + 315.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 560.0, + 303.0, + 733.0, + 303.0, + 733.0, + 343.0, + 560.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 303.0, + 800.0, + 303.0, + 800.0, + 343.0, + 797.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 334.0, + 736.0, + 334.0, + 736.0, + 377.0, + 318.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 770.0, + 334.0, + 780.0, + 334.0, + 780.0, + 377.0, + 770.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 814.0, + 334.0, + 823.0, + 334.0, + 823.0, + 377.0, + 814.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 334.0, + 865.0, + 334.0, + 865.0, + 377.0, + 854.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 369.0, + 593.0, + 369.0, + 593.0, + 402.0, + 381.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 369.0, + 763.0, + 369.0, + 763.0, + 402.0, + 615.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 789.0, + 369.0, + 793.0, + 369.0, + 793.0, + 402.0, + 789.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 402.0, + 344.0, + 402.0, + 344.0, + 427.0, + 318.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 398.0, + 767.0, + 398.0, + 767.0, + 433.0, + 347.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 432.0, + 344.0, + 432.0, + 344.0, + 458.0, + 317.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 347.0, + 428.0, + 391.0, + 428.0, + 391.0, + 464.0, + 347.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 428.0, + 517.0, + 428.0, + 517.0, + 464.0, + 414.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 461.0, + 345.0, + 461.0, + 345.0, + 490.0, + 315.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 458.0, + 471.0, + 458.0, + 471.0, + 493.0, + 375.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 458.0, + 626.0, + 458.0, + 626.0, + 493.0, + 586.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 491.0, + 345.0, + 491.0, + 345.0, + 522.0, + 315.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 487.0, + 676.0, + 487.0, + 676.0, + 526.0, + 403.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 519.0, + 347.0, + 519.0, + 347.0, + 554.0, + 314.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 550.0, + 347.0, + 550.0, + 347.0, + 583.0, + 313.0, + 583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 583.0, + 346.0, + 583.0, + 346.0, + 613.0, + 313.0, + 613.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 372.0, + 577.0, + 376.0, + 577.0, + 376.0, + 619.0, + 372.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 617.0, + 346.0, + 617.0, + 346.0, + 647.0, + 305.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 607.0, + 375.0, + 607.0, + 375.0, + 656.0, + 371.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1770.0, + 418.0, + 1770.0, + 418.0, + 1809.0, + 295.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1770.0, + 1304.0, + 1770.0, + 1304.0, + 1809.0, + 528.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1770.0, + 1340.0, + 1770.0, + 1340.0, + 1809.0, + 1331.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 301.0, + 1121.0, + 301.0, + 1121.0, + 342.0, + 888.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1153.0, + 301.0, + 1380.0, + 301.0, + 1380.0, + 342.0, + 1153.0, + 342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 334.0, + 1101.0, + 334.0, + 1101.0, + 371.0, + 951.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 334.0, + 1378.0, + 334.0, + 1378.0, + 371.0, + 1134.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 365.0, + 922.0, + 365.0, + 922.0, + 406.0, + 918.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 365.0, + 963.0, + 365.0, + 963.0, + 406.0, + 958.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 394.0, + 1309.0, + 394.0, + 1309.0, + 436.0, + 889.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1371.0, + 394.0, + 1384.0, + 394.0, + 1384.0, + 436.0, + 1371.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 428.0, + 1154.0, + 428.0, + 1154.0, + 459.0, + 921.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 428.0, + 1324.0, + 428.0, + 1324.0, + 459.0, + 1176.0, + 459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 889.0, + 455.0, + 1027.0, + 455.0, + 1027.0, + 493.0, + 889.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 455.0, + 1123.0, + 455.0, + 1123.0, + 493.0, + 1115.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 455.0, + 1228.0, + 455.0, + 1228.0, + 493.0, + 1217.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 485.0, + 963.0, + 485.0, + 963.0, + 524.0, + 885.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 485.0, + 1089.0, + 485.0, + 1089.0, + 524.0, + 986.0, + 524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 515.0, + 946.0, + 515.0, + 946.0, + 554.0, + 882.0, + 554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 545.0, + 946.0, + 545.0, + 946.0, + 587.0, + 882.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1636.0, + 627.0, + 1636.0, + 627.0, + 1671.0, + 297.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 1636.0, + 814.0, + 1636.0, + 814.0, + 1671.0, + 669.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1636.0, + 1079.0, + 1636.0, + 1079.0, + 1671.0, + 843.0, + 1671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1666.0, + 1304.0, + 1666.0, + 1304.0, + 1702.0, + 297.0, + 1702.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 228, + 1405, + 228, + 1405, + 538, + 297, + 538 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 1200, + 1405, + 1200, + 1405, + 1385, + 296, + 1385 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 946, + 1405, + 946, + 1405, + 1134, + 297, + 1134 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1879, + 1403, + 1879, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1542, + 1405, + 1542, + 1405, + 1666, + 297, + 1666 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 296, + 550, + 1404, + 550, + 1404, + 674, + 296, + 674 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 742, + 1405, + 742, + 1405, + 835, + 298, + 835 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1748, + 1407, + 1748, + 1407, + 1815, + 299, + 1815 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 295, + 1465, + 1402, + 1465, + 1402, + 1529, + 295, + 1529 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 499, + 849, + 1197, + 849, + 1197, + 913, + 499, + 913 + ], + "score": 0.95 + }, + { + "category_id": 8, + "poly": [ + 447, + 1396, + 1250, + 1396, + 1250, + 1450, + 447, + 1450 + ], + "score": 0.935 + }, + { + "category_id": 8, + "poly": [ + 455, + 689, + 1240, + 689, + 1240, + 730, + 455, + 730 + ], + "score": 0.934 + }, + { + "category_id": 8, + "poly": [ + 369, + 1679, + 1328, + 1679, + 1328, + 1731, + 369, + 1731 + ], + "score": 0.931 + }, + { + "category_id": 0, + "poly": [ + 299, + 1830, + 676, + 1830, + 676, + 1863, + 299, + 1863 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 301, + 1150, + 802, + 1150, + 802, + 1182, + 301, + 1182 + ], + "score": 0.915 + }, + { + "category_id": 9, + "poly": [ + 1366, + 864, + 1400, + 864, + 1400, + 893, + 1366, + 893 + ], + "score": 0.879 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1403, + 1400, + 1403, + 1400, + 1433, + 1366, + 1433 + ], + "score": 0.874 + }, + { + "category_id": 9, + "poly": [ + 1366, + 695, + 1400, + 695, + 1400, + 725, + 1366, + 725 + ], + "score": 0.87 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1688, + 1400, + 1688, + 1400, + 1718, + 1366, + 1718 + ], + "score": 0.861 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.734 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 854, + 75, + 854, + 104, + 299, + 104 + ], + "score": 0.573 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.501 + }, + { + "category_id": 13, + "poly": [ + 742, + 613, + 839, + 613, + 839, + 646, + 742, + 646 + ], + "score": 0.93, + "latex": "A _ { \\boldsymbol { \\theta } } ( \\mathbf { s } , \\mathbf { a } )" + }, + { + "category_id": 14, + "poly": [ + 498, + 848, + 1198, + 848, + 1198, + 914, + 498, + 914 + ], + "score": 0.92, + "latex": "\\mathcal { L } ^ { \\mathrm { A D V } } ( \\theta , \\phi _ { i } ^ { \\prime } , D ) \\triangleq \\underset { \\mathbf { s } , \\mathbf { a } \\sim D } { \\triangleq } \\left[ ( \\hat { A } ( \\mathbf { s } , \\mathbf { a } ) - \\left( \\mathcal { R } _ { D } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) ) ^ { 2 } \\right]" + }, + { + "category_id": 14, + "poly": [ + 444, + 1395, + 1253, + 1395, + 1253, + 1454, + 444, + 1454 + ], + "score": 0.92, + "latex": "\\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ~ = ~ \\operatorname* { m i n } _ { \\phi } \\mathbb { E } _ { T _ { i } } \\left[ \\mathcal { L } _ { V } ( \\phi - \\eta _ { 1 } \\nabla _ { \\phi } \\mathcal { L } _ { V } ( \\phi , D _ { i } ^ { \\mathrm { t } } ) , D _ { i } ^ { \\mathrm { t s } } ) \\right] ." + }, + { + "category_id": 14, + "poly": [ + 370, + 1679, + 1329, + 1679, + 1329, + 1733, + 370, + 1733 + ], + "score": 0.92, + "latex": "\\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta _ { i } ^ { \\prime } , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] \\ = \\ \\operatorname* { m i n } _ { \\theta } \\mathbb { E } _ { \\mathcal { T } _ { i } } \\left[ \\mathcal { L } ^ { \\mathrm { A W R } } ( \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t s } } ) \\right] ," + }, + { + "category_id": 13, + "poly": [ + 1108, + 583, + 1189, + 583, + 1189, + 616, + 1108, + 616 + ], + "score": 0.92, + "latex": "\\pi _ { \\boldsymbol { \\theta } } ( \\cdot | \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 722, + 1748, + 789, + 1748, + 789, + 1780, + 722, + 1780 + ], + "score": 0.9, + "latex": "\\mathcal { L } ^ { \\mathrm { A W R } }" + }, + { + "category_id": 13, + "poly": [ + 651, + 948, + 718, + 948, + 718, + 979, + 651, + 979 + ], + "score": 0.9, + "latex": "\\mathcal { L } ^ { \\mathrm { A W R } }" + }, + { + "category_id": 13, + "poly": [ + 896, + 1263, + 936, + 1263, + 936, + 1296, + 896, + 1296 + ], + "score": 0.9, + "latex": "D _ { i } ^ { \\mathrm { t s } }" + }, + { + "category_id": 13, + "poly": [ + 375, + 1467, + 416, + 1467, + 416, + 1497, + 375, + 1497 + ], + "score": 0.9, + "latex": "{ \\mathcal { L } } _ { V }" + }, + { + "category_id": 13, + "poly": [ + 999, + 1230, + 1065, + 1230, + 1065, + 1260, + 999, + 1260 + ], + "score": 0.9, + "latex": "\\mathcal { L } ^ { \\mathrm { A W R } }" + }, + { + "category_id": 13, + "poly": [ + 570, + 1293, + 610, + 1293, + 610, + 1326, + 570, + 1326 + ], + "score": 0.89, + "latex": "D _ { i } ^ { \\mathrm { t r } }" + }, + { + "category_id": 13, + "poly": [ + 472, + 952, + 509, + 952, + 509, + 981, + 472, + 981 + ], + "score": 0.89, + "latex": "{ \\mathcal { L } } _ { \\pi }" + }, + { + "category_id": 14, + "poly": [ + 455, + 688, + 1244, + 688, + 1244, + 730, + 455, + 730 + ], + "score": 0.89, + "latex": "\\theta _ { i } ^ { \\prime } \\theta - \\alpha _ { 1 } \\nabla _ { \\theta } \\mathcal { L } _ { \\pi } ( \\theta , \\phi _ { i } ^ { \\prime } , D _ { i } ^ { \\mathrm { t r } } ) , \\qquad \\mathrm { w h e r e } \\qquad \\mathcal { L } _ { \\pi } = \\mathcal { L } ^ { \\mathrm { A W R } } + \\lambda \\mathcal { L } ^ { \\mathrm { A D V } } ." + }, + { + "category_id": 13, + "poly": [ + 906, + 1232, + 947, + 1232, + 947, + 1262, + 906, + 1262 + ], + "score": 0.89, + "latex": "{ \\mathcal { L } } _ { V }" + }, + { + "category_id": 13, + "poly": [ + 369, + 1752, + 406, + 1752, + 406, + 1782, + 369, + 1782 + ], + "score": 0.89, + "latex": "{ \\mathcal { L } } _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 833, + 1073, + 853, + 1073, + 853, + 1103, + 833, + 1103 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 769, + 1073, + 786, + 1073, + 786, + 1099, + 769, + 1099 + ], + "score": 0.81, + "latex": "\\theta" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1831.0, + 678.0, + 1831.0, + 678.0, + 1864.0, + 296.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1149.0, + 806.0, + 1149.0, + 806.0, + 1186.0, + 294.0, + 1186.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, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 296.0, + 294.0, + 296.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": [ + 294.0, + 321.0, + 1405.0, + 321.0, + 1405.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 351.0, + 1410.0, + 351.0, + 1410.0, + 388.0, + 294.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 380.0, + 1407.0, + 380.0, + 1407.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 1407.0, + 412.0, + 1407.0, + 448.0, + 294.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 444.0, + 1402.0, + 444.0, + 1402.0, + 477.0, + 296.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 474.0, + 1405.0, + 474.0, + 1405.0, + 510.0, + 295.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 503.0, + 672.0, + 503.0, + 672.0, + 539.0, + 295.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1202.0, + 1403.0, + 1202.0, + 1403.0, + 1234.0, + 295.0, + 1234.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1221.0, + 905.0, + 1221.0, + 905.0, + 1271.0, + 289.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 1221.0, + 998.0, + 1221.0, + 998.0, + 1271.0, + 948.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1221.0, + 1408.0, + 1221.0, + 1408.0, + 1271.0, + 1066.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1262.0, + 895.0, + 1262.0, + 895.0, + 1298.0, + 294.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 937.0, + 1262.0, + 1407.0, + 1262.0, + 1407.0, + 1298.0, + 937.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1294.0, + 569.0, + 1294.0, + 569.0, + 1326.0, + 295.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1294.0, + 1406.0, + 1294.0, + 1406.0, + 1326.0, + 611.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1323.0, + 1406.0, + 1323.0, + 1406.0, + 1359.0, + 294.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1354.0, + 683.0, + 1354.0, + 683.0, + 1389.0, + 294.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 942.0, + 471.0, + 942.0, + 471.0, + 989.0, + 291.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 942.0, + 650.0, + 942.0, + 650.0, + 989.0, + 510.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 942.0, + 1407.0, + 942.0, + 1407.0, + 989.0, + 719.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1406.0, + 980.0, + 1406.0, + 1017.0, + 294.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1012.0, + 1405.0, + 1012.0, + 1405.0, + 1044.0, + 296.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1037.0, + 1405.0, + 1037.0, + 1405.0, + 1080.0, + 294.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1070.0, + 768.0, + 1070.0, + 768.0, + 1109.0, + 291.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 787.0, + 1070.0, + 832.0, + 1070.0, + 832.0, + 1109.0, + 787.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1070.0, + 1410.0, + 1070.0, + 1410.0, + 1109.0, + 854.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1103.0, + 442.0, + 1103.0, + 442.0, + 1140.0, + 294.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1882.0, + 1404.0, + 1882.0, + 1404.0, + 1916.0, + 296.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1948.0, + 296.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1973.0, + 1404.0, + 1973.0, + 1404.0, + 2006.0, + 296.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2000.0, + 1404.0, + 2000.0, + 1404.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1541.0, + 1406.0, + 1541.0, + 1406.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1576.0, + 1406.0, + 1576.0, + 1406.0, + 1609.0, + 296.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1604.0, + 1406.0, + 1604.0, + 1406.0, + 1640.0, + 294.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1636.0, + 656.0, + 1636.0, + 656.0, + 1672.0, + 295.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 548.0, + 1405.0, + 548.0, + 1405.0, + 586.0, + 293.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 582.0, + 1107.0, + 582.0, + 1107.0, + 618.0, + 294.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 582.0, + 1406.0, + 582.0, + 1406.0, + 618.0, + 1190.0, + 618.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 611.0, + 741.0, + 611.0, + 741.0, + 648.0, + 293.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 611.0, + 1405.0, + 611.0, + 1405.0, + 648.0, + 840.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 706.0, + 644.0, + 706.0, + 676.0, + 294.0, + 676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 740.0, + 1405.0, + 740.0, + 1405.0, + 778.0, + 295.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 772.0, + 1405.0, + 772.0, + 1405.0, + 810.0, + 292.0, + 810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 805.0, + 603.0, + 805.0, + 603.0, + 840.0, + 296.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1744.0, + 368.0, + 1744.0, + 368.0, + 1788.0, + 293.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1744.0, + 721.0, + 1744.0, + 721.0, + 1788.0, + 407.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 790.0, + 1744.0, + 1408.0, + 1744.0, + 1408.0, + 1788.0, + 790.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1782.0, + 1374.0, + 1782.0, + 1374.0, + 1818.0, + 296.0, + 1818.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1464.0, + 374.0, + 1464.0, + 374.0, + 1500.0, + 295.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1464.0, + 1403.0, + 1464.0, + 1403.0, + 1500.0, + 417.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1497.0, + 1295.0, + 1497.0, + 1295.0, + 1530.0, + 293.0, + 1530.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1438, + 1404, + 1438, + 1404, + 1803, + 298, + 1803 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 937, + 1405, + 937, + 1405, + 1333, + 298, + 1333 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1820, + 1404, + 1820, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 313, + 221, + 1379, + 221, + 1379, + 747, + 313, + 747 + ], + "score": 0.976 + }, + { + "category_id": 4, + "poly": [ + 296, + 762, + 1406, + 762, + 1406, + 902, + 296, + 902 + ], + "score": 0.968 + }, + { + "category_id": 0, + "poly": [ + 300, + 1370, + 557, + 1370, + 557, + 1405, + 300, + 1405 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 300, + 77, + 852, + 77, + 852, + 103, + 300, + 103 + ], + "score": 0.871 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.775 + }, + { + "category_id": 13, + "poly": [ + 909, + 794, + 931, + 794, + 931, + 816, + 909, + 816 + ], + "score": 0.72, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 510.0, + 225.0, + 681.0, + 225.0, + 681.0, + 254.0, + 510.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1058.0, + 225.0, + 1214.0, + 225.0, + 1214.0, + 254.0, + 1058.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 247.0, + 914.0, + 247.0, + 914.0, + 272.0, + 862.0, + 272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 269.0, + 370.0, + 269.0, + 370.0, + 294.0, + 331.0, + 294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 285.0, + 913.0, + 285.0, + 913.0, + 310.0, + 863.0, + 310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 305.0, + 371.0, + 305.0, + 371.0, + 327.0, + 332.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 315.0, + 340.0, + 315.0, + 340.0, + 384.0, + 316.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 316.0, + 868.0, + 316.0, + 868.0, + 383.0, + 844.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 325.0, + 912.0, + 325.0, + 912.0, + 347.0, + 869.0, + 347.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 340.0, + 370.0, + 340.0, + 370.0, + 362.0, + 332.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 361.0, + 913.0, + 361.0, + 913.0, + 385.0, + 863.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 373.0, + 371.0, + 373.0, + 371.0, + 398.0, + 331.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 352.0, + 409.0, + 370.0, + 409.0, + 370.0, + 430.0, + 352.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 400.0, + 913.0, + 400.0, + 913.0, + 424.0, + 863.0, + 424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 389.0, + 1361.0, + 389.0, + 1361.0, + 420.0, + 1318.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 440.0, + 397.0, + 440.0, + 397.0, + 467.0, + 357.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 503.0, + 441.0, + 543.0, + 441.0, + 543.0, + 465.0, + 503.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 441.0, + 690.0, + 441.0, + 690.0, + 465.0, + 650.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 800.0, + 440.0, + 839.0, + 440.0, + 839.0, + 467.0, + 800.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 440.0, + 937.0, + 440.0, + 937.0, + 467.0, + 898.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1044.0, + 441.0, + 1084.0, + 441.0, + 1084.0, + 465.0, + 1044.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 439.0, + 1232.0, + 439.0, + 1232.0, + 467.0, + 1193.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1342.0, + 440.0, + 1379.0, + 440.0, + 1379.0, + 467.0, + 1342.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 459.0, + 653.0, + 459.0, + 653.0, + 487.0, + 537.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 459.0, + 1196.0, + 459.0, + 1196.0, + 487.0, + 1078.0, + 487.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 489.0, + 666.0, + 489.0, + 666.0, + 518.0, + 524.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 490.0, + 1201.0, + 490.0, + 1201.0, + 517.0, + 1072.0, + 517.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 513.0, + 371.0, + 513.0, + 371.0, + 539.0, + 331.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 559.0, + 371.0, + 559.0, + 371.0, + 584.0, + 331.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 874.0, + 560.0, + 913.0, + 560.0, + 913.0, + 582.0, + 874.0, + 582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 567.0, + 1026.0, + 567.0, + 1026.0, + 588.0, + 960.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 579.0, + 340.0, + 579.0, + 340.0, + 648.0, + 316.0, + 648.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 580.0, + 869.0, + 580.0, + 869.0, + 647.0, + 845.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 588.0, + 1077.0, + 588.0, + 1077.0, + 611.0, + 960.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 601.0, + 371.0, + 601.0, + 371.0, + 627.0, + 331.0, + 627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 618.0, + 912.0, + 618.0, + 912.0, + 636.0, + 896.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 609.0, + 1072.0, + 609.0, + 1072.0, + 632.0, + 960.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 629.0, + 1033.0, + 629.0, + 1033.0, + 654.0, + 959.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 645.0, + 371.0, + 645.0, + 371.0, + 671.0, + 331.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 863.0, + 670.0, + 913.0, + 670.0, + 913.0, + 694.0, + 863.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 353.0, + 692.0, + 372.0, + 692.0, + 372.0, + 711.0, + 353.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 694.0, + 377.0, + 694.0, + 377.0, + 705.0, + 367.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 704.0, + 395.0, + 704.0, + 395.0, + 731.0, + 357.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 704.0, + 542.0, + 704.0, + 542.0, + 731.0, + 505.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 704.0, + 840.0, + 704.0, + 840.0, + 731.0, + 801.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 704.0, + 937.0, + 704.0, + 937.0, + 731.0, + 898.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1046.0, + 704.0, + 1084.0, + 704.0, + 1084.0, + 731.0, + 1046.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 704.0, + 1232.0, + 704.0, + 1232.0, + 731.0, + 1195.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 704.0, + 1380.0, + 704.0, + 1380.0, + 731.0, + 1343.0, + 731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 537.0, + 723.0, + 653.0, + 723.0, + 653.0, + 751.0, + 537.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1078.0, + 723.0, + 1195.0, + 723.0, + 1195.0, + 751.0, + 1078.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 468.0, + 580.5, + 493.0, + 580.5, + 493.0, + 590.5, + 468.0, + 590.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 703.0, + 693.0, + 703.0, + 693.0, + 730.0, + 650.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 761.0, + 1407.0, + 761.0, + 1407.0, + 796.0, + 294.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 787.0, + 908.0, + 787.0, + 908.0, + 823.0, + 293.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 787.0, + 1408.0, + 787.0, + 1408.0, + 823.0, + 932.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 817.0, + 1406.0, + 817.0, + 1406.0, + 848.0, + 295.0, + 848.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 843.0, + 1406.0, + 843.0, + 1406.0, + 877.0, + 294.0, + 877.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 872.0, + 1198.0, + 872.0, + 1198.0, + 906.0, + 294.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1367.0, + 561.0, + 1367.0, + 561.0, + 1411.0, + 292.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 70.0, + 857.0, + 70.0, + 857.0, + 109.0, + 295.0, + 109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2118.0, + 840.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1439.0, + 1404.0, + 1439.0, + 1404.0, + 1473.0, + 294.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1469.0, + 1404.0, + 1469.0, + 1404.0, + 1503.0, + 294.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1404.0, + 1499.0, + 1404.0, + 1533.0, + 294.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1530.0, + 1405.0, + 1530.0, + 1405.0, + 1564.0, + 294.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1595.0, + 294.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1591.0, + 1405.0, + 1591.0, + 1405.0, + 1625.0, + 293.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 1405.0, + 1618.0, + 1405.0, + 1659.0, + 292.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1687.0, + 292.0, + 1687.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, + 1404.0, + 1713.0, + 1404.0, + 1746.0, + 294.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1743.0, + 1405.0, + 1743.0, + 1405.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1775.0, + 654.0, + 1775.0, + 654.0, + 1806.0, + 296.0, + 1806.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 937.0, + 1406.0, + 937.0, + 1406.0, + 972.0, + 293.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 968.0, + 1403.0, + 968.0, + 1403.0, + 1001.0, + 296.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 998.0, + 1403.0, + 998.0, + 1403.0, + 1033.0, + 295.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1028.0, + 1405.0, + 1028.0, + 1405.0, + 1064.0, + 295.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1057.0, + 1406.0, + 1057.0, + 1406.0, + 1098.0, + 293.0, + 1098.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1089.0, + 1403.0, + 1089.0, + 1403.0, + 1125.0, + 295.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1118.0, + 1405.0, + 1118.0, + 1405.0, + 1154.0, + 295.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1149.0, + 1405.0, + 1149.0, + 1405.0, + 1184.0, + 292.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1178.0, + 1405.0, + 1178.0, + 1405.0, + 1218.0, + 292.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1209.0, + 1406.0, + 1209.0, + 1406.0, + 1249.0, + 292.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1240.0, + 1405.0, + 1240.0, + 1405.0, + 1278.0, + 293.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1271.0, + 1407.0, + 1271.0, + 1407.0, + 1311.0, + 295.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1302.0, + 1022.0, + 1302.0, + 1022.0, + 1338.0, + 295.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1820.0, + 1405.0, + 1820.0, + 1405.0, + 1855.0, + 294.0, + 1855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1851.0, + 1408.0, + 1851.0, + 1408.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1408.0, + 1880.0, + 1408.0, + 1917.0, + 293.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1975.0, + 1405.0, + 1975.0, + 1405.0, + 2005.0, + 296.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 1308.0, + 2003.0, + 1308.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1485, + 1404, + 1485, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 828, + 1405, + 828, + 1405, + 1468, + 297, + 1468 + ], + "score": 0.983 + }, + { + "category_id": 4, + "poly": [ + 297, + 466, + 1405, + 466, + 1405, + 800, + 297, + 800 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 301, + 246, + 645, + 246, + 645, + 454, + 301, + 454 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.871 + }, + { + "category_id": 3, + "poly": [ + 1030, + 251, + 1344, + 251, + 1344, + 453, + 1030, + 453 + ], + "score": 0.792 + }, + { + "category_id": 4, + "poly": [ + 685, + 228, + 1007, + 228, + 1007, + 249, + 685, + 249 + ], + "score": 0.773 + }, + { + "category_id": 3, + "poly": [ + 670, + 252, + 1019, + 252, + 1019, + 455, + 670, + 455 + ], + "score": 0.766 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 857, + 2088, + 857, + 2111, + 841, + 2111 + ], + "score": 0.748 + }, + { + "category_id": 4, + "poly": [ + 1039, + 229, + 1392, + 229, + 1392, + 248, + 1039, + 248 + ], + "score": 0.732 + }, + { + "category_id": 4, + "poly": [ + 324, + 228, + 660, + 228, + 660, + 246, + 324, + 246 + ], + "score": 0.613 + }, + { + "category_id": 13, + "poly": [ + 1194, + 950, + 1289, + 950, + 1289, + 979, + 1194, + 979 + ], + "score": 0.76, + "latex": "\\mathrm { M T + F T }" + }, + { + "category_id": 13, + "poly": [ + 683, + 1135, + 707, + 1135, + 707, + 1160, + 683, + 1160 + ], + "score": 0.64, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 638, + 526, + 655, + 526, + 655, + 547, + 638, + 547 + ], + "score": 0.58, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 638, + 1520, + 657, + 1520, + 657, + 1542, + 638, + 1542 + ], + "score": 0.51, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 941, + 1491, + 959, + 1491, + 959, + 1512, + 941, + 1512 + ], + "score": 0.47, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 990, + 1794, + 1007, + 1794, + 1007, + 1816, + 990, + 1816 + ], + "score": 0.45, + "latex": "+" + }, + { + "category_id": 13, + "poly": [ + 386, + 1612, + 406, + 1612, + 406, + 1634, + 386, + 1634 + ], + "score": 0.45, + "latex": "+ ." + }, + { + "category_id": 13, + "poly": [ + 465, + 1612, + 483, + 1612, + 483, + 1634, + 465, + 1634 + ], + "score": 0.42, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 1321, + 1703, + 1340, + 1703, + 1340, + 1725, + 1321, + 1725 + ], + "score": 0.39, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 508, + 717, + 563, + 717, + 563, + 743, + 508, + 743 + ], + "score": 0.31, + "latex": "\\mathbf { M T + }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 464.0, + 1405.0, + 464.0, + 1405.0, + 501.0, + 294.0, + 501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 492.0, + 1403.0, + 492.0, + 1403.0, + 527.0, + 294.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 521.0, + 637.0, + 521.0, + 637.0, + 558.0, + 292.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 521.0, + 1405.0, + 521.0, + 1405.0, + 558.0, + 656.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 549.0, + 1406.0, + 549.0, + 1406.0, + 584.0, + 294.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 579.0, + 1405.0, + 579.0, + 1405.0, + 610.0, + 295.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 605.0, + 1407.0, + 605.0, + 1407.0, + 639.0, + 294.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 633.0, + 1406.0, + 633.0, + 1406.0, + 664.0, + 295.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 660.0, + 1408.0, + 660.0, + 1408.0, + 695.0, + 294.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 721.0, + 295.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 714.0, + 507.0, + 714.0, + 507.0, + 749.0, + 294.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 714.0, + 1406.0, + 714.0, + 1406.0, + 749.0, + 564.0, + 749.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 744.0, + 1405.0, + 744.0, + 1405.0, + 775.0, + 295.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 770.0, + 1139.0, + 770.0, + 1139.0, + 807.0, + 292.0, + 807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 253.0, + 363.0, + 253.0, + 363.0, + 277.0, + 323.0, + 277.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 289.0, + 362.0, + 289.0, + 362.0, + 312.0, + 315.0, + 312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 282.0, + 507.0, + 282.0, + 507.0, + 306.0, + 425.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 286.0, + 600.0, + 286.0, + 600.0, + 296.0, + 569.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 307.0, + 322.0, + 307.0, + 322.0, + 366.0, + 300.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 325.0, + 363.0, + 325.0, + 363.0, + 348.0, + 322.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 339.0, + 383.0, + 339.0, + 383.0, + 350.0, + 376.0, + 350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 361.0, + 363.0, + 361.0, + 363.0, + 384.0, + 315.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 356.0, + 459.0, + 356.0, + 459.0, + 382.0, + 400.0, + 382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 460.0, + 345.0, + 622.0, + 345.0, + 622.0, + 387.0, + 460.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 385.0, + 492.0, + 385.0, + 492.0, + 401.0, + 440.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 383.0, + 636.0, + 383.0, + 636.0, + 402.0, + 551.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 395.0, + 364.0, + 395.0, + 364.0, + 421.0, + 313.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 399.0, + 517.0, + 399.0, + 517.0, + 418.0, + 440.0, + 418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 397.0, + 615.0, + 397.0, + 615.0, + 421.0, + 551.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 420.0, + 379.0, + 420.0, + 379.0, + 438.0, + 362.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 418.0, + 445.0, + 418.0, + 445.0, + 440.0, + 417.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 476.0, + 418.0, + 512.0, + 418.0, + 512.0, + 440.0, + 476.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 536.0, + 418.0, + 573.0, + 418.0, + 573.0, + 440.0, + 536.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 597.0, + 418.0, + 634.0, + 418.0, + 634.0, + 440.0, + 597.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 433.0, + 585.0, + 433.0, + 585.0, + 457.0, + 400.0, + 457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 363.5, + 407.0, + 363.5, + 407.0, + 384.5, + 367.0, + 384.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 251.0, + 1164.0, + 251.0, + 1164.0, + 269.0, + 1118.0, + 269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 265.0, + 1052.0, + 265.0, + 1052.0, + 403.0, + 1027.0, + 403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 265.0, + 1181.0, + 265.0, + 1181.0, + 285.0, + 1118.0, + 285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1055.0, + 288.0, + 1089.0, + 288.0, + 1089.0, + 307.0, + 1055.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 280.0, + 1179.0, + 280.0, + 1179.0, + 300.0, + 1117.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 338.0, + 1088.0, + 338.0, + 1088.0, + 356.0, + 1056.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 383.0, + 1090.0, + 383.0, + 1090.0, + 407.0, + 1056.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 396.0, + 1334.0, + 396.0, + 1334.0, + 408.0, + 1326.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 417.0, + 1111.0, + 417.0, + 1111.0, + 438.0, + 1086.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 415.0, + 1171.0, + 415.0, + 1171.0, + 438.0, + 1143.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 417.0, + 1228.0, + 417.0, + 1228.0, + 437.0, + 1202.0, + 437.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1265.0, + 417.0, + 1281.0, + 417.0, + 1281.0, + 436.0, + 1265.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1323.0, + 415.0, + 1338.0, + 415.0, + 1338.0, + 436.0, + 1323.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1129.0, + 433.0, + 1300.0, + 433.0, + 1300.0, + 453.0, + 1129.0, + 453.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 226.0, + 1009.0, + 226.0, + 1009.0, + 253.0, + 683.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 261.0, + 732.0, + 261.0, + 732.0, + 287.0, + 692.0, + 287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 687.0, + 297.0, + 730.0, + 297.0, + 730.0, + 319.0, + 687.0, + 319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 306.0, + 692.0, + 306.0, + 692.0, + 371.0, + 669.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 692.0, + 329.0, + 731.0, + 329.0, + 731.0, + 354.0, + 692.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 362.0, + 732.0, + 362.0, + 732.0, + 387.0, + 686.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 365.0, + 940.0, + 365.0, + 940.0, + 383.0, + 890.0, + 383.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 379.0, + 1005.0, + 379.0, + 1005.0, + 402.0, + 887.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 397.0, + 730.0, + 397.0, + 730.0, + 419.0, + 686.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 397.0, + 1014.0, + 397.0, + 1014.0, + 417.0, + 887.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 421.0, + 748.0, + 421.0, + 748.0, + 440.0, + 732.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 420.0, + 801.0, + 420.0, + 801.0, + 441.0, + 776.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 818.0, + 421.0, + 854.0, + 421.0, + 854.0, + 440.0, + 818.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 867.0, + 418.0, + 903.0, + 418.0, + 903.0, + 441.0, + 867.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 418.0, + 953.0, + 418.0, + 953.0, + 442.0, + 914.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 419.0, + 999.0, + 419.0, + 999.0, + 441.0, + 962.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 435.0, + 966.0, + 435.0, + 966.0, + 458.0, + 779.0, + 458.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": [ + 1035.0, + 224.0, + 1394.0, + 224.0, + 1394.0, + 254.0, + 1035.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 227.0, + 663.0, + 227.0, + 663.0, + 250.0, + 323.0, + 250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1483.0, + 940.0, + 1483.0, + 940.0, + 1520.0, + 294.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 960.0, + 1483.0, + 1405.0, + 1483.0, + 1405.0, + 1520.0, + 960.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 637.0, + 1514.0, + 637.0, + 1552.0, + 294.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1514.0, + 1409.0, + 1514.0, + 1409.0, + 1552.0, + 658.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1545.0, + 1407.0, + 1545.0, + 1407.0, + 1582.0, + 291.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1576.0, + 1406.0, + 1576.0, + 1406.0, + 1611.0, + 295.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1608.0, + 385.0, + 1608.0, + 385.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 407.0, + 1608.0, + 464.0, + 1608.0, + 464.0, + 1643.0, + 407.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1643.0, + 484.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1638.0, + 1406.0, + 1638.0, + 1406.0, + 1674.0, + 295.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1669.0, + 1405.0, + 1669.0, + 1405.0, + 1704.0, + 295.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 1320.0, + 1698.0, + 1320.0, + 1732.0, + 294.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1732.0, + 1341.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1764.0, + 294.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1756.0, + 1406.0, + 1756.0, + 1406.0, + 1798.0, + 290.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1788.0, + 989.0, + 1788.0, + 989.0, + 1826.0, + 291.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1008.0, + 1788.0, + 1407.0, + 1788.0, + 1407.0, + 1826.0, + 1008.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1886.0, + 292.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1917.0, + 295.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1948.0, + 292.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1978.0, + 295.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1969.0, + 1407.0, + 1969.0, + 1407.0, + 2010.0, + 292.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2042.0, + 292.0, + 2042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 827.0, + 1406.0, + 827.0, + 1406.0, + 861.0, + 295.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 858.0, + 1405.0, + 858.0, + 1405.0, + 892.0, + 292.0, + 892.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": [ + 291.0, + 914.0, + 1406.0, + 914.0, + 1406.0, + 957.0, + 291.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 949.0, + 1193.0, + 949.0, + 1193.0, + 985.0, + 294.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 949.0, + 1407.0, + 949.0, + 1407.0, + 985.0, + 1290.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 981.0, + 1405.0, + 981.0, + 1405.0, + 1013.0, + 295.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1009.0, + 1405.0, + 1009.0, + 1405.0, + 1045.0, + 294.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1040.0, + 1406.0, + 1040.0, + 1406.0, + 1076.0, + 295.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1073.0, + 1405.0, + 1073.0, + 1405.0, + 1106.0, + 296.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1099.0, + 1406.0, + 1099.0, + 1406.0, + 1138.0, + 294.0, + 1138.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1131.0, + 682.0, + 1131.0, + 682.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 708.0, + 1131.0, + 1405.0, + 1131.0, + 1405.0, + 1167.0, + 708.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1198.0, + 295.0, + 1198.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1193.0, + 1403.0, + 1193.0, + 1403.0, + 1229.0, + 295.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1221.0, + 1408.0, + 1221.0, + 1408.0, + 1261.0, + 292.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1252.0, + 1406.0, + 1252.0, + 1406.0, + 1292.0, + 294.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1320.0, + 294.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1315.0, + 1405.0, + 1315.0, + 1405.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1381.0, + 295.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1373.0, + 1405.0, + 1373.0, + 1405.0, + 1411.0, + 294.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1404.0, + 1407.0, + 1404.0, + 1407.0, + 1443.0, + 292.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1436.0, + 1113.0, + 1436.0, + 1113.0, + 1472.0, + 295.0, + 1472.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1254, + 1405, + 1254, + 1405, + 1834, + 298, + 1834 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 512, + 1405, + 512, + 1405, + 1185, + 298, + 1185 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1851, + 1403, + 1851, + 1403, + 2034, + 298, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 506, + 298, + 506 + ], + "score": 0.968 + }, + { + "category_id": 0, + "poly": [ + 300, + 1204, + 588, + 1204, + 588, + 1240, + 300, + 1240 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 13, + "poly": [ + 864, + 575, + 924, + 575, + 924, + 608, + 864, + 608 + ], + "score": 0.91, + "latex": "p ( \\mathcal { T } )" + }, + { + "category_id": 13, + "poly": [ + 626, + 883, + 650, + 883, + 650, + 908, + 626, + 908 + ], + "score": 0.8, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 620, + 669, + 644, + 669, + 644, + 695, + 620, + 695 + ], + "score": 0.7, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 387, + 235, + 405, + 235, + 405, + 257, + 387, + 257 + ], + "score": 0.47, + "latex": "+ ." + }, + { + "category_id": 13, + "poly": [ + 465, + 235, + 483, + 235, + 483, + 257, + 465, + 257 + ], + "score": 0.29, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1201.0, + 593.0, + 1201.0, + 593.0, + 1244.0, + 293.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1250.0, + 1405.0, + 1250.0, + 1405.0, + 1294.0, + 292.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1285.0, + 1406.0, + 1285.0, + 1406.0, + 1321.0, + 292.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1315.0, + 1408.0, + 1315.0, + 1408.0, + 1351.0, + 292.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1349.0, + 1406.0, + 1349.0, + 1406.0, + 1380.0, + 293.0, + 1380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1378.0, + 1407.0, + 1378.0, + 1407.0, + 1411.0, + 292.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1405.0, + 1408.0, + 1405.0, + 1408.0, + 1443.0, + 293.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1438.0, + 1406.0, + 1438.0, + 1406.0, + 1473.0, + 295.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1470.0, + 1406.0, + 1470.0, + 1406.0, + 1502.0, + 295.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1498.0, + 1407.0, + 1498.0, + 1407.0, + 1535.0, + 293.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1530.0, + 1406.0, + 1530.0, + 1406.0, + 1565.0, + 295.0, + 1565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1560.0, + 1405.0, + 1560.0, + 1405.0, + 1595.0, + 295.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1590.0, + 1405.0, + 1590.0, + 1405.0, + 1625.0, + 295.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1619.0, + 1408.0, + 1619.0, + 1408.0, + 1656.0, + 292.0, + 1656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1650.0, + 1407.0, + 1650.0, + 1407.0, + 1689.0, + 293.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1682.0, + 1407.0, + 1682.0, + 1407.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1714.0, + 1406.0, + 1714.0, + 1406.0, + 1745.0, + 296.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1744.0, + 1406.0, + 1744.0, + 1406.0, + 1775.0, + 296.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1775.0, + 1403.0, + 1775.0, + 1403.0, + 1807.0, + 295.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1070.0, + 1803.0, + 1070.0, + 1836.0, + 293.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 513.0, + 1405.0, + 513.0, + 1405.0, + 548.0, + 295.0, + 548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 545.0, + 1405.0, + 545.0, + 1405.0, + 580.0, + 295.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 573.0, + 863.0, + 573.0, + 863.0, + 610.0, + 293.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 573.0, + 1406.0, + 573.0, + 1406.0, + 610.0, + 925.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 602.0, + 1407.0, + 602.0, + 1407.0, + 644.0, + 291.0, + 644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 631.0, + 1409.0, + 631.0, + 1409.0, + 673.0, + 292.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 667.0, + 619.0, + 667.0, + 619.0, + 702.0, + 295.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 645.0, + 667.0, + 1405.0, + 667.0, + 1405.0, + 702.0, + 645.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 696.0, + 1405.0, + 696.0, + 1405.0, + 732.0, + 295.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 724.0, + 1406.0, + 724.0, + 1406.0, + 762.0, + 292.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 756.0, + 1406.0, + 756.0, + 1406.0, + 793.0, + 293.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 785.0, + 1405.0, + 785.0, + 1405.0, + 826.0, + 293.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 817.0, + 1407.0, + 817.0, + 1407.0, + 855.0, + 293.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 848.0, + 1405.0, + 848.0, + 1405.0, + 884.0, + 295.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 878.0, + 625.0, + 878.0, + 625.0, + 916.0, + 293.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 651.0, + 878.0, + 1406.0, + 878.0, + 1406.0, + 916.0, + 651.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 910.0, + 1405.0, + 910.0, + 1405.0, + 945.0, + 293.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 937.0, + 1405.0, + 937.0, + 1405.0, + 974.0, + 293.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 971.0, + 1407.0, + 971.0, + 1407.0, + 1006.0, + 295.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": [ + 292.0, + 1029.0, + 1405.0, + 1029.0, + 1405.0, + 1067.0, + 292.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1061.0, + 1405.0, + 1061.0, + 1405.0, + 1095.0, + 293.0, + 1095.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1405.0, + 1090.0, + 1405.0, + 1128.0, + 293.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1119.0, + 1406.0, + 1119.0, + 1406.0, + 1161.0, + 293.0, + 1161.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1151.0, + 493.0, + 1151.0, + 493.0, + 1191.0, + 295.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1884.0, + 296.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1881.0, + 1407.0, + 1881.0, + 1407.0, + 1915.0, + 293.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1948.0, + 291.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1943.0, + 1407.0, + 1943.0, + 1407.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2007.0, + 293.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 1408.0, + 2002.0, + 1408.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 227.0, + 386.0, + 227.0, + 386.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 227.0, + 464.0, + 227.0, + 464.0, + 267.0, + 406.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 227.0, + 1405.0, + 227.0, + 1405.0, + 267.0, + 484.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 263.0, + 1404.0, + 263.0, + 1404.0, + 296.0, + 296.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 290.0, + 1407.0, + 290.0, + 1407.0, + 328.0, + 292.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 320.0, + 1405.0, + 320.0, + 1405.0, + 357.0, + 293.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 388.0, + 292.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 382.0, + 1405.0, + 382.0, + 1405.0, + 419.0, + 294.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 411.0, + 1405.0, + 411.0, + 1405.0, + 450.0, + 293.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 442.0, + 1407.0, + 442.0, + 1407.0, + 480.0, + 292.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 476.0, + 489.0, + 476.0, + 489.0, + 510.0, + 296.0, + 510.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 367, + 1405, + 367, + 1405, + 704, + 298, + 704 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 780, + 1404, + 780, + 1404, + 1026, + 298, + 1026 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1041, + 1404, + 1041, + 1404, + 1257, + 298, + 1257 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 230, + 1403, + 230, + 1403, + 353, + 299, + 353 + ], + "score": 0.975 + }, + { + "category_id": 0, + "poly": [ + 300, + 727, + 544, + 727, + 544, + 762, + 300, + 762 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2110, + 840, + 2110 + ], + "score": 0.777 + }, + { + "category_id": 15, + "poly": [ + 291.0, + 721.0, + 550.0, + 721.0, + 550.0, + 772.0, + 291.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2087.0, + 861.0, + 2087.0, + 861.0, + 2117.0, + 840.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 367.0, + 1407.0, + 367.0, + 1407.0, + 404.0, + 293.0, + 404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 399.0, + 1407.0, + 399.0, + 1407.0, + 434.0, + 293.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 430.0, + 1406.0, + 430.0, + 1406.0, + 465.0, + 295.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 461.0, + 1408.0, + 461.0, + 1408.0, + 496.0, + 295.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 490.0, + 1407.0, + 490.0, + 1407.0, + 526.0, + 293.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 519.0, + 1405.0, + 519.0, + 1405.0, + 558.0, + 292.0, + 558.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 552.0, + 1405.0, + 552.0, + 1405.0, + 586.0, + 295.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 580.0, + 1411.0, + 580.0, + 1411.0, + 622.0, + 291.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 612.0, + 1406.0, + 612.0, + 1406.0, + 647.0, + 292.0, + 647.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 640.0, + 1406.0, + 640.0, + 1406.0, + 680.0, + 291.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 672.0, + 478.0, + 672.0, + 478.0, + 711.0, + 294.0, + 711.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 783.0, + 1404.0, + 783.0, + 1404.0, + 813.0, + 296.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 810.0, + 1404.0, + 810.0, + 1404.0, + 844.0, + 294.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 841.0, + 1406.0, + 841.0, + 1406.0, + 879.0, + 292.0, + 879.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 873.0, + 1405.0, + 873.0, + 1405.0, + 907.0, + 294.0, + 907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 904.0, + 1406.0, + 904.0, + 1406.0, + 938.0, + 294.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 972.0, + 292.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 963.0, + 1406.0, + 963.0, + 1406.0, + 1000.0, + 294.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 994.0, + 458.0, + 994.0, + 458.0, + 1033.0, + 293.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1037.0, + 1404.0, + 1037.0, + 1404.0, + 1079.0, + 293.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1070.0, + 1405.0, + 1070.0, + 1405.0, + 1106.0, + 293.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1105.0, + 1402.0, + 1105.0, + 1402.0, + 1135.0, + 296.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1133.0, + 1402.0, + 1133.0, + 1402.0, + 1168.0, + 294.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1160.0, + 1406.0, + 1160.0, + 1406.0, + 1203.0, + 291.0, + 1203.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1195.0, + 1408.0, + 1195.0, + 1408.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 1315.0, + 1224.0, + 1315.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 230.0, + 1408.0, + 230.0, + 1408.0, + 266.0, + 294.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 293.0, + 294.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 289.0, + 1407.0, + 289.0, + 1407.0, + 328.0, + 293.0, + 328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 323.0, + 1206.0, + 323.0, + 1206.0, + 355.0, + 295.0, + 355.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 303, + 583, + 1405, + 583, + 1405, + 679, + 303, + 679 + ], + "score": 0.917 + }, + { + "category_id": 1, + "poly": [ + 298, + 1942, + 1405, + 1942, + 1405, + 2033, + 298, + 2033 + ], + "score": 0.913 + }, + { + "category_id": 1, + "poly": [ + 299, + 1716, + 1405, + 1716, + 1405, + 1810, + 299, + 1810 + ], + "score": 0.912 + }, + { + "category_id": 1, + "poly": [ + 299, + 1827, + 1405, + 1827, + 1405, + 1922, + 299, + 1922 + ], + "score": 0.905 + }, + { + "category_id": 1, + "poly": [ + 297, + 471, + 1405, + 471, + 1405, + 565, + 297, + 565 + ], + "score": 0.895 + }, + { + "category_id": 1, + "poly": [ + 301, + 941, + 1401, + 941, + 1401, + 1035, + 301, + 1035 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 293, + 695, + 1404, + 695, + 1404, + 761, + 293, + 761 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 298, + 777, + 1402, + 777, + 1402, + 843, + 298, + 843 + ], + "score": 0.888 + }, + { + "category_id": 1, + "poly": [ + 295, + 1052, + 1402, + 1052, + 1402, + 1119, + 295, + 1119 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 301, + 1134, + 1407, + 1134, + 1407, + 1228, + 301, + 1228 + ], + "score": 0.881 + }, + { + "category_id": 1, + "poly": [ + 299, + 278, + 1401, + 278, + 1401, + 343, + 299, + 343 + ], + "score": 0.879 + }, + { + "category_id": 1, + "poly": [ + 293, + 859, + 1402, + 859, + 1402, + 925, + 293, + 925 + ], + "score": 0.876 + }, + { + "category_id": 1, + "poly": [ + 296, + 1665, + 1007, + 1665, + 1007, + 1699, + 296, + 1699 + ], + "score": 0.874 + }, + { + "category_id": 1, + "poly": [ + 298, + 1380, + 1405, + 1380, + 1405, + 1537, + 298, + 1537 + ], + "score": 0.867 + }, + { + "category_id": 1, + "poly": [ + 299, + 1245, + 1336, + 1245, + 1336, + 1282, + 299, + 1282 + ], + "score": 0.862 + }, + { + "category_id": 1, + "poly": [ + 294, + 1297, + 1404, + 1297, + 1404, + 1364, + 294, + 1364 + ], + "score": 0.844 + }, + { + "category_id": 1, + "poly": [ + 298, + 359, + 1406, + 359, + 1406, + 452, + 298, + 452 + ], + "score": 0.834 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.824 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 489, + 227, + 489, + 262, + 300, + 262 + ], + "score": 0.8 + }, + { + "category_id": 1, + "poly": [ + 300, + 1553, + 1405, + 1553, + 1405, + 1648, + 300, + 1648 + ], + "score": 0.705 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.642 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.25 + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.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": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 582.0, + 1405.0, + 582.0, + 1405.0, + 620.0, + 297.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 616.0, + 1410.0, + 616.0, + 1410.0, + 651.0, + 323.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 647.0, + 979.0, + 647.0, + 979.0, + 681.0, + 323.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1971.0, + 1410.0, + 1971.0, + 1410.0, + 2008.0, + 320.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2001.0, + 396.0, + 2001.0, + 396.0, + 2034.0, + 321.0, + 2034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1717.0, + 1407.0, + 1717.0, + 1407.0, + 1751.0, + 295.0, + 1751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1748.0, + 1407.0, + 1748.0, + 1407.0, + 1782.0, + 321.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1776.0, + 396.0, + 1776.0, + 396.0, + 1810.0, + 321.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1827.0, + 1406.0, + 1827.0, + 1406.0, + 1865.0, + 294.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1857.0, + 1410.0, + 1857.0, + 1410.0, + 1898.0, + 321.0, + 1898.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1892.0, + 604.0, + 1892.0, + 604.0, + 1922.0, + 322.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 471.0, + 1405.0, + 471.0, + 1405.0, + 510.0, + 295.0, + 510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 503.0, + 1408.0, + 503.0, + 1408.0, + 537.0, + 323.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 534.0, + 569.0, + 534.0, + 569.0, + 568.0, + 324.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 939.0, + 1406.0, + 939.0, + 1406.0, + 980.0, + 295.0, + 980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 971.0, + 1406.0, + 971.0, + 1406.0, + 1011.0, + 321.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1004.0, + 620.0, + 1004.0, + 620.0, + 1038.0, + 322.0, + 1038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 693.0, + 1407.0, + 693.0, + 1407.0, + 732.0, + 293.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 725.0, + 396.0, + 725.0, + 396.0, + 762.0, + 320.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 778.0, + 1406.0, + 778.0, + 1406.0, + 814.0, + 298.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 809.0, + 1404.0, + 809.0, + 1404.0, + 844.0, + 322.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1053.0, + 1405.0, + 1053.0, + 1405.0, + 1089.0, + 297.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1084.0, + 1155.0, + 1084.0, + 1155.0, + 1121.0, + 323.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1136.0, + 1404.0, + 1136.0, + 1404.0, + 1170.0, + 297.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1165.0, + 1403.0, + 1165.0, + 1403.0, + 1199.0, + 323.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1198.0, + 505.0, + 1198.0, + 505.0, + 1230.0, + 323.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 277.0, + 1403.0, + 277.0, + 1403.0, + 314.0, + 294.0, + 314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 308.0, + 1234.0, + 308.0, + 1234.0, + 345.0, + 320.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 857.0, + 1404.0, + 857.0, + 1404.0, + 897.0, + 295.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 891.0, + 1014.0, + 891.0, + 1014.0, + 926.0, + 321.0, + 926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 1009.0, + 1662.0, + 1009.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1378.0, + 1405.0, + 1378.0, + 1405.0, + 1417.0, + 295.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1410.0, + 1405.0, + 1410.0, + 1405.0, + 1446.0, + 323.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1436.0, + 1406.0, + 1436.0, + 1406.0, + 1481.0, + 320.0, + 1481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1472.0, + 1406.0, + 1472.0, + 1406.0, + 1505.0, + 321.0, + 1505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1503.0, + 1153.0, + 1503.0, + 1153.0, + 1540.0, + 322.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1244.0, + 1337.0, + 1244.0, + 1337.0, + 1286.0, + 293.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1297.0, + 1407.0, + 1297.0, + 1407.0, + 1336.0, + 294.0, + 1336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1329.0, + 1346.0, + 1329.0, + 1346.0, + 1364.0, + 322.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 357.0, + 1406.0, + 357.0, + 1406.0, + 397.0, + 293.0, + 397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 390.0, + 1407.0, + 390.0, + 1407.0, + 425.0, + 324.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 417.0, + 398.0, + 417.0, + 398.0, + 458.0, + 320.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1551.0, + 1409.0, + 1551.0, + 1409.0, + 1591.0, + 294.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1585.0, + 1404.0, + 1585.0, + 1404.0, + 1619.0, + 323.0, + 1619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1614.0, + 831.0, + 1614.0, + 831.0, + 1652.0, + 322.0, + 1652.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.864 + }, + { + "category_id": 1, + "poly": [ + 294, + 1229, + 1399, + 1229, + 1399, + 1294, + 294, + 1294 + ], + "score": 0.836 + }, + { + "category_id": 1, + "poly": [ + 299, + 917, + 1403, + 917, + 1403, + 1012, + 299, + 1012 + ], + "score": 0.822 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.82 + }, + { + "category_id": 1, + "poly": [ + 296, + 802, + 1405, + 802, + 1405, + 895, + 296, + 895 + ], + "score": 0.797 + }, + { + "category_id": 1, + "poly": [ + 296, + 1512, + 1401, + 1512, + 1401, + 1577, + 296, + 1577 + ], + "score": 0.787 + }, + { + "category_id": 1, + "poly": [ + 296, + 1597, + 1406, + 1597, + 1406, + 1752, + 296, + 1752 + ], + "score": 0.787 + }, + { + "category_id": 1, + "poly": [ + 297, + 1428, + 1400, + 1428, + 1400, + 1492, + 297, + 1492 + ], + "score": 0.777 + }, + { + "category_id": 1, + "poly": [ + 297, + 1313, + 1405, + 1313, + 1405, + 1409, + 297, + 1409 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 293, + 1030, + 1405, + 1030, + 1405, + 1096, + 293, + 1096 + ], + "score": 0.771 + }, + { + "category_id": 1, + "poly": [ + 297, + 1114, + 1404, + 1114, + 1404, + 1209, + 297, + 1209 + ], + "score": 0.761 + }, + { + "category_id": 1, + "poly": [ + 295, + 603, + 1402, + 603, + 1402, + 668, + 295, + 668 + ], + "score": 0.757 + }, + { + "category_id": 1, + "poly": [ + 301, + 229, + 1399, + 229, + 1399, + 324, + 301, + 324 + ], + "score": 0.712 + }, + { + "category_id": 1, + "poly": [ + 297, + 489, + 1407, + 489, + 1407, + 584, + 297, + 584 + ], + "score": 0.706 + }, + { + "category_id": 1, + "poly": [ + 298, + 344, + 1406, + 344, + 1406, + 468, + 298, + 468 + ], + "score": 0.694 + }, + { + "category_id": 1, + "poly": [ + 295, + 1971, + 1401, + 1971, + 1401, + 2034, + 295, + 2034 + ], + "score": 0.683 + }, + { + "category_id": 1, + "poly": [ + 293, + 1772, + 1402, + 1772, + 1402, + 1837, + 293, + 1837 + ], + "score": 0.676 + }, + { + "category_id": 1, + "poly": [ + 297, + 686, + 1405, + 686, + 1405, + 782, + 297, + 782 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 297, + 1856, + 1401, + 1856, + 1401, + 1951, + 297, + 1951 + ], + "score": 0.597 + }, + { + "category_id": 13, + "poly": [ + 1114, + 555, + 1132, + 555, + 1132, + 578, + 1114, + 578 + ], + "score": 0.31, + "latex": "\\underline { { \\underline { { \\mathbf { \\Pi } } } } }" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 1403.0, + 1231.0, + 1403.0, + 1267.0, + 295.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1262.0, + 770.0, + 1262.0, + 770.0, + 1292.0, + 323.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 916.0, + 1407.0, + 916.0, + 1407.0, + 954.0, + 293.0, + 954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 949.0, + 1409.0, + 949.0, + 1409.0, + 983.0, + 324.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 979.0, + 1161.0, + 979.0, + 1161.0, + 1013.0, + 324.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 797.0, + 1407.0, + 797.0, + 1407.0, + 843.0, + 293.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 834.0, + 1413.0, + 834.0, + 1413.0, + 868.0, + 323.0, + 868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 864.0, + 424.0, + 864.0, + 424.0, + 897.0, + 324.0, + 897.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1508.0, + 1406.0, + 1508.0, + 1406.0, + 1552.0, + 293.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1543.0, + 1007.0, + 1543.0, + 1007.0, + 1579.0, + 324.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1593.0, + 1408.0, + 1593.0, + 1408.0, + 1636.0, + 293.0, + 1636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1629.0, + 1404.0, + 1629.0, + 1404.0, + 1663.0, + 324.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1656.0, + 1409.0, + 1656.0, + 1409.0, + 1696.0, + 320.0, + 1696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1684.0, + 1412.0, + 1684.0, + 1412.0, + 1729.0, + 320.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1721.0, + 885.0, + 1721.0, + 885.0, + 1754.0, + 324.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1425.0, + 1405.0, + 1425.0, + 1405.0, + 1468.0, + 293.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1460.0, + 726.0, + 1460.0, + 726.0, + 1492.0, + 323.0, + 1492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1313.0, + 1406.0, + 1313.0, + 1406.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1345.0, + 1405.0, + 1345.0, + 1405.0, + 1379.0, + 324.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1376.0, + 1208.0, + 1376.0, + 1208.0, + 1414.0, + 323.0, + 1414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1031.0, + 1407.0, + 1031.0, + 1407.0, + 1067.0, + 295.0, + 1067.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1063.0, + 1266.0, + 1063.0, + 1266.0, + 1097.0, + 320.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1113.0, + 1402.0, + 1113.0, + 1402.0, + 1151.0, + 295.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1143.0, + 1404.0, + 1143.0, + 1404.0, + 1186.0, + 320.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1177.0, + 534.0, + 1177.0, + 534.0, + 1209.0, + 324.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 599.0, + 1407.0, + 599.0, + 1407.0, + 642.0, + 293.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 636.0, + 1023.0, + 636.0, + 1023.0, + 669.0, + 322.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 262.0, + 1404.0, + 262.0, + 1404.0, + 296.0, + 322.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 291.0, + 1198.0, + 291.0, + 1198.0, + 325.0, + 323.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 488.0, + 1407.0, + 488.0, + 1407.0, + 528.0, + 292.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 522.0, + 1409.0, + 522.0, + 1409.0, + 556.0, + 324.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 552.0, + 1113.0, + 552.0, + 1113.0, + 586.0, + 324.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1133.0, + 552.0, + 1310.0, + 552.0, + 1310.0, + 586.0, + 1133.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 345.0, + 1403.0, + 345.0, + 1403.0, + 378.0, + 296.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 374.0, + 1407.0, + 374.0, + 1407.0, + 410.0, + 321.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 406.0, + 1407.0, + 406.0, + 1407.0, + 442.0, + 321.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 438.0, + 837.0, + 438.0, + 837.0, + 470.0, + 324.0, + 470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 1002.0, + 2003.0, + 1002.0, + 2036.0, + 322.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1772.0, + 1405.0, + 1772.0, + 1405.0, + 1808.0, + 296.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1803.0, + 1316.0, + 1803.0, + 1316.0, + 1839.0, + 322.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 683.0, + 1405.0, + 683.0, + 1405.0, + 728.0, + 294.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 717.0, + 1405.0, + 717.0, + 1405.0, + 757.0, + 321.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 750.0, + 744.0, + 750.0, + 744.0, + 784.0, + 323.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1895.0, + 293.0, + 1895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1889.0, + 1405.0, + 1889.0, + 1405.0, + 1923.0, + 324.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1918.0, + 612.0, + 1918.0, + 612.0, + 1953.0, + 322.0, + 1953.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 298, + 1220, + 1402, + 1220, + 1402, + 1315, + 298, + 1315 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.835 + }, + { + "category_id": 1, + "poly": [ + 299, + 1333, + 1400, + 1333, + 1400, + 1428, + 299, + 1428 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 296, + 1447, + 1401, + 1447, + 1401, + 1512, + 296, + 1512 + ], + "score": 0.834 + }, + { + "category_id": 1, + "poly": [ + 297, + 539, + 1405, + 539, + 1405, + 602, + 297, + 602 + ], + "score": 0.765 + }, + { + "category_id": 1, + "poly": [ + 297, + 992, + 1403, + 992, + 1403, + 1057, + 297, + 1057 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 300, + 1075, + 1405, + 1075, + 1405, + 1200, + 300, + 1200 + ], + "score": 0.751 + }, + { + "category_id": 1, + "poly": [ + 298, + 909, + 1401, + 909, + 1401, + 974, + 298, + 974 + ], + "score": 0.719 + }, + { + "category_id": 1, + "poly": [ + 301, + 455, + 1398, + 455, + 1398, + 520, + 301, + 520 + ], + "score": 0.708 + }, + { + "category_id": 1, + "poly": [ + 299, + 228, + 1406, + 228, + 1406, + 352, + 299, + 352 + ], + "score": 0.692 + }, + { + "category_id": 1, + "poly": [ + 296, + 622, + 1407, + 622, + 1407, + 778, + 296, + 778 + ], + "score": 0.666 + }, + { + "category_id": 1, + "poly": [ + 294, + 372, + 1402, + 372, + 1402, + 437, + 294, + 437 + ], + "score": 0.664 + }, + { + "category_id": 1, + "poly": [ + 299, + 796, + 1404, + 796, + 1404, + 891, + 299, + 891 + ], + "score": 0.639 + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1216.0, + 1406.0, + 1216.0, + 1406.0, + 1259.0, + 293.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1248.0, + 1408.0, + 1248.0, + 1408.0, + 1288.0, + 320.0, + 1288.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1282.0, + 781.0, + 1282.0, + 781.0, + 1316.0, + 323.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1332.0, + 1406.0, + 1332.0, + 1406.0, + 1370.0, + 294.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1366.0, + 1404.0, + 1366.0, + 1404.0, + 1400.0, + 325.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1395.0, + 1013.0, + 1395.0, + 1013.0, + 1429.0, + 323.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1447.0, + 1405.0, + 1447.0, + 1405.0, + 1483.0, + 295.0, + 1483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1478.0, + 1384.0, + 1478.0, + 1384.0, + 1514.0, + 323.0, + 1514.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 535.0, + 1410.0, + 535.0, + 1410.0, + 578.0, + 294.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 571.0, + 642.0, + 571.0, + 642.0, + 605.0, + 320.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 995.0, + 1404.0, + 995.0, + 1404.0, + 1027.0, + 299.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1025.0, + 1110.0, + 1025.0, + 1110.0, + 1058.0, + 322.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1078.0, + 1406.0, + 1078.0, + 1406.0, + 1111.0, + 298.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1108.0, + 1409.0, + 1108.0, + 1409.0, + 1141.0, + 322.0, + 1141.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1139.0, + 1406.0, + 1139.0, + 1406.0, + 1174.0, + 320.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1167.0, + 502.0, + 1167.0, + 502.0, + 1204.0, + 322.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 904.0, + 1406.0, + 904.0, + 1406.0, + 951.0, + 294.0, + 951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 940.0, + 776.0, + 940.0, + 776.0, + 975.0, + 323.0, + 975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 455.0, + 1404.0, + 455.0, + 1404.0, + 493.0, + 293.0, + 493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 486.0, + 1367.0, + 486.0, + 1367.0, + 521.0, + 321.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1409.0, + 229.0, + 1409.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 262.0, + 1408.0, + 262.0, + 1408.0, + 295.0, + 323.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 291.0, + 1407.0, + 291.0, + 1407.0, + 326.0, + 319.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 323.0, + 504.0, + 323.0, + 504.0, + 353.0, + 322.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 617.0, + 1405.0, + 617.0, + 1405.0, + 663.0, + 294.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 651.0, + 1407.0, + 651.0, + 1407.0, + 691.0, + 320.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 685.0, + 1408.0, + 685.0, + 1408.0, + 719.0, + 324.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 712.0, + 1407.0, + 712.0, + 1407.0, + 751.0, + 320.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 744.0, + 1120.0, + 744.0, + 1120.0, + 780.0, + 323.0, + 780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 370.0, + 1405.0, + 370.0, + 1405.0, + 414.0, + 293.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 405.0, + 1219.0, + 405.0, + 1219.0, + 438.0, + 322.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 795.0, + 1409.0, + 795.0, + 1409.0, + 834.0, + 292.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 829.0, + 1401.0, + 829.0, + 1401.0, + 859.0, + 326.0, + 859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 859.0, + 706.0, + 859.0, + 706.0, + 890.0, + 320.0, + 890.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 332, + 1405, + 332, + 1405, + 671, + 297, + 671 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1052, + 1404, + 1052, + 1404, + 1239, + 298, + 1239 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1869, + 1406, + 1869, + 1406, + 1963, + 299, + 1963 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 761, + 1404, + 761, + 1404, + 888, + 297, + 888 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1301, + 1405, + 1301, + 1405, + 1425, + 298, + 1425 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 296, + 1484, + 1405, + 1484, + 1405, + 1584, + 296, + 1584 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 976, + 1400, + 976, + 1400, + 1039, + 300, + 1039 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 294, + 1691, + 1401, + 1691, + 1401, + 1754, + 294, + 1754 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 475, + 1758, + 1223, + 1758, + 1223, + 1847, + 475, + 1847 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 483, + 898, + 1213, + 898, + 1213, + 969, + 483, + 969 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 596, + 1971, + 1102, + 1971, + 1102, + 2044, + 596, + 2044 + ], + "score": 0.952 + }, + { + "category_id": 8, + "poly": [ + 584, + 1593, + 1111, + 1593, + 1111, + 1667, + 584, + 1667 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 291, + 676, + 1403, + 676, + 1403, + 739, + 291, + 739 + ], + "score": 0.929 + }, + { + "category_id": 1, + "poly": [ + 294, + 1429, + 1232, + 1429, + 1232, + 1463, + 294, + 1463 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 301, + 1252, + 1173, + 1252, + 1173, + 1285, + 301, + 1285 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 299, + 221, + 464, + 221, + 464, + 266, + 299, + 266 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 302, + 281, + 1202, + 281, + 1202, + 318, + 302, + 318 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1366, + 919, + 1400, + 919, + 1400, + 950, + 1366, + 950 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1787, + 1400, + 1787, + 1400, + 1816, + 1366, + 1816 + ], + "score": 0.877 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.874 + }, + { + "category_id": 14, + "poly": [ + 474, + 1753, + 1224, + 1753, + 1224, + 1848, + 474, + 1848 + ], + "score": 0.94, + "latex": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { | | \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } | | ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right)" + }, + { + "category_id": 14, + "poly": [ + 595, + 1968, + 1104, + 1968, + 1104, + 2045, + 595, + 2045 + ], + "score": 0.94, + "latex": "\\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } { \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\mathbf { 0 } ) = - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\mathbf { a }" + }, + { + "category_id": 13, + "poly": [ + 347, + 1516, + 523, + 1516, + 523, + 1550, + 347, + 1550 + ], + "score": 0.93, + "latex": "\\{ \\mathbf { a } _ { 2 } , A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 818, + 366, + 946, + 366, + 946, + 399, + 818, + 399 + ], + "score": 0.93, + "latex": "f ( \\mathbf { x } , \\mathbf { y } , \\mathbf { x } ^ { * } )" + }, + { + "category_id": 14, + "poly": [ + 584, + 1591, + 1115, + 1591, + 1115, + 1669, + 584, + 1669 + ], + "score": 0.93, + "latex": "{ \\mathcal { L } } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right)" + }, + { + "category_id": 13, + "poly": [ + 582, + 853, + 777, + 853, + 777, + 891, + 582, + 891 + ], + "score": 0.92, + "latex": "\\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } )" + }, + { + "category_id": 14, + "poly": [ + 483, + 897, + 1213, + 897, + 1213, + 973, + 483, + 973 + ], + "score": 0.92, + "latex": "\\mathcal { L } ^ { \\mathrm { A W R } } ( \\mathbf { s } , \\mathbf { a } , \\theta , \\phi _ { i } ^ { \\prime } ) = - \\log \\pi _ { \\theta } ( \\mathbf { a } | \\mathbf { s } ) \\exp \\left( \\frac { 1 } { T } \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right) \\right)" + }, + { + "category_id": 13, + "poly": [ + 1224, + 1484, + 1400, + 1484, + 1400, + 1520, + 1224, + 1520 + ], + "score": 0.91, + "latex": "\\{ \\mathbf { a } _ { 1 } , A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) \\}" + }, + { + "category_id": 13, + "poly": [ + 1003, + 1871, + 1138, + 1871, + 1138, + 1903, + 1003, + 1903 + ], + "score": 0.91, + "latex": "k = \\dim ( \\mathbf { a } )" + }, + { + "category_id": 13, + "poly": [ + 482, + 1548, + 821, + 1548, + 821, + 1586, + 482, + 1586 + ], + "score": 0.91, + "latex": "A ( \\mathbf { s } , \\mathbf { a } ) = \\left( \\mathcal { R } ( \\mathbf { s } , \\mathbf { a } ) - V _ { \\phi _ { i } ^ { \\prime } } ( \\mathbf { s } ) \\right)" + }, + { + "category_id": 13, + "poly": [ + 371, + 1871, + 405, + 1871, + 405, + 1904, + 371, + 1904 + ], + "score": 0.89, + "latex": "\\hat { \\mathbf { a } } _ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 986, + 1903, + 1018, + 1903, + 1018, + 1935, + 986, + 1935 + ], + "score": 0.89, + "latex": "\\hat { \\mathbf { a } } _ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 702, + 1428, + 764, + 1428, + 764, + 1459, + 702, + 1459 + ], + "score": 0.89, + "latex": "\\mathcal { L } ^ { A W R }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1691, + 1245, + 1691, + 1245, + 1721, + 1198, + 1721 + ], + "score": 0.88, + "latex": "\\sigma ^ { 2 } I" + }, + { + "category_id": 13, + "poly": [ + 1049, + 397, + 1082, + 397, + 1082, + 424, + 1049, + 424 + ], + "score": 0.87, + "latex": "\\mathbf { x } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 368, + 400, + 391, + 400, + 391, + 424, + 368, + 424 + ], + "score": 0.34, + "latex": "\\mathbf { x }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1252.0, + 1177.0, + 1252.0, + 1177.0, + 1290.0, + 296.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 217.0, + 473.0, + 217.0, + 473.0, + 270.0, + 289.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 281.0, + 1207.0, + 281.0, + 1207.0, + 322.0, + 296.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 334.0, + 1405.0, + 334.0, + 1405.0, + 369.0, + 295.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 363.0, + 817.0, + 363.0, + 817.0, + 402.0, + 294.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 947.0, + 363.0, + 1406.0, + 363.0, + 1406.0, + 402.0, + 947.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 392.0, + 367.0, + 392.0, + 367.0, + 433.0, + 292.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 392.0, + 1048.0, + 392.0, + 1048.0, + 433.0, + 392.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1083.0, + 392.0, + 1406.0, + 392.0, + 1406.0, + 433.0, + 1083.0, + 433.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 427.0, + 1406.0, + 427.0, + 1406.0, + 462.0, + 294.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 455.0, + 1407.0, + 455.0, + 1407.0, + 494.0, + 294.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 487.0, + 1406.0, + 487.0, + 1406.0, + 525.0, + 292.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 518.0, + 1406.0, + 518.0, + 1406.0, + 553.0, + 294.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 549.0, + 1407.0, + 549.0, + 1407.0, + 584.0, + 295.0, + 584.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 579.0, + 1407.0, + 579.0, + 1407.0, + 614.0, + 295.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 609.0, + 1407.0, + 609.0, + 1407.0, + 642.0, + 292.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 641.0, + 1381.0, + 641.0, + 1381.0, + 672.0, + 294.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1052.0, + 1405.0, + 1052.0, + 1405.0, + 1088.0, + 293.0, + 1088.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1083.0, + 1406.0, + 1083.0, + 1406.0, + 1120.0, + 293.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1115.0, + 1405.0, + 1115.0, + 1405.0, + 1151.0, + 294.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1144.0, + 1404.0, + 1144.0, + 1404.0, + 1181.0, + 293.0, + 1181.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1176.0, + 1404.0, + 1176.0, + 1404.0, + 1208.0, + 296.0, + 1208.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1206.0, + 1077.0, + 1206.0, + 1077.0, + 1240.0, + 293.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1870.0, + 370.0, + 1870.0, + 370.0, + 1904.0, + 296.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 1870.0, + 1002.0, + 1870.0, + 1002.0, + 1904.0, + 406.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1870.0, + 1403.0, + 1870.0, + 1403.0, + 1904.0, + 1139.0, + 1904.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1899.0, + 985.0, + 1899.0, + 985.0, + 1935.0, + 293.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1019.0, + 1899.0, + 1406.0, + 1899.0, + 1406.0, + 1935.0, + 1019.0, + 1935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1933.0, + 631.0, + 1933.0, + 631.0, + 1966.0, + 294.0, + 1966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 761.0, + 1404.0, + 761.0, + 1404.0, + 796.0, + 294.0, + 796.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 793.0, + 1405.0, + 793.0, + 1405.0, + 826.0, + 295.0, + 826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 823.0, + 1405.0, + 823.0, + 1405.0, + 860.0, + 294.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 854.0, + 581.0, + 854.0, + 581.0, + 892.0, + 295.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 854.0, + 790.0, + 854.0, + 790.0, + 892.0, + 778.0, + 892.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1302.0, + 1403.0, + 1302.0, + 1403.0, + 1335.0, + 296.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1334.0, + 1405.0, + 1334.0, + 1405.0, + 1367.0, + 295.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1361.0, + 1405.0, + 1361.0, + 1405.0, + 1400.0, + 292.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1393.0, + 937.0, + 1393.0, + 937.0, + 1427.0, + 293.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1479.0, + 1223.0, + 1479.0, + 1223.0, + 1524.0, + 291.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1479.0, + 1405.0, + 1479.0, + 1405.0, + 1524.0, + 1401.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1511.0, + 346.0, + 1511.0, + 346.0, + 1555.0, + 294.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 1511.0, + 1405.0, + 1511.0, + 1405.0, + 1555.0, + 524.0, + 1555.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1548.0, + 481.0, + 1548.0, + 481.0, + 1586.0, + 295.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 1548.0, + 932.0, + 1548.0, + 932.0, + 1586.0, + 822.0, + 1586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 976.0, + 1404.0, + 976.0, + 1404.0, + 1011.0, + 296.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1006.0, + 1149.0, + 1006.0, + 1149.0, + 1042.0, + 295.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 1197.0, + 1687.0, + 1197.0, + 1729.0, + 293.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 1687.0, + 1404.0, + 1687.0, + 1404.0, + 1729.0, + 1246.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1724.0, + 509.0, + 1724.0, + 509.0, + 1756.0, + 294.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 672.0, + 1406.0, + 672.0, + 1406.0, + 715.0, + 293.0, + 715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 708.0, + 1011.0, + 708.0, + 1011.0, + 742.0, + 293.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1422.0, + 701.0, + 1422.0, + 701.0, + 1471.0, + 292.0, + 1471.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 1422.0, + 1239.0, + 1422.0, + 1239.0, + 1471.0, + 765.0, + 1471.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1680, + 1404, + 1680, + 1404, + 1867, + 297, + 1867 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1405, + 228, + 1405, + 445, + 297, + 445 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 510, + 1404, + 510, + 1404, + 667, + 298, + 667 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1217, + 1405, + 1217, + 1405, + 1379, + 297, + 1379 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 300, + 1941, + 1405, + 1941, + 1405, + 2035, + 300, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 8, + "poly": [ + 656, + 1534, + 1040, + 1534, + 1040, + 1651, + 656, + 1651 + ], + "score": 0.962 + }, + { + "category_id": 8, + "poly": [ + 716, + 1381, + 984, + 1381, + 984, + 1449, + 716, + 1449 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 293, + 732, + 1399, + 732, + 1399, + 797, + 293, + 797 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 504, + 1113, + 1194, + 1113, + 1194, + 1188, + 504, + 1188 + ], + "score": 0.953 + }, + { + "category_id": 8, + "poly": [ + 359, + 812, + 1335, + 812, + 1335, + 903, + 359, + 903 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 298, + 923, + 1402, + 923, + 1402, + 991, + 298, + 991 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 297, + 1456, + 1401, + 1456, + 1401, + 1518, + 297, + 1518 + ], + "score": 0.944 + }, + { + "category_id": 8, + "poly": [ + 578, + 1007, + 1120, + 1007, + 1120, + 1050, + 578, + 1050 + ], + "score": 0.922 + }, + { + "category_id": 0, + "poly": [ + 300, + 1887, + 790, + 1887, + 790, + 1924, + 300, + 1924 + ], + "score": 0.921 + }, + { + "category_id": 1, + "poly": [ + 292, + 675, + 1283, + 675, + 1283, + 710, + 292, + 710 + ], + "score": 0.918 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1576, + 1400, + 1576, + 1400, + 1607, + 1352, + 1607 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 105, + 298, + 105 + ], + "score": 0.899 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1133, + 1400, + 1133, + 1400, + 1165, + 1351, + 1165 + ], + "score": 0.891 + }, + { + "category_id": 1, + "poly": [ + 296, + 1062, + 834, + 1062, + 834, + 1096, + 296, + 1096 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 301, + 461, + 1230, + 461, + 1230, + 495, + 301, + 495 + ], + "score": 0.888 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1015, + 1400, + 1015, + 1400, + 1044, + 1365, + 1044 + ], + "score": 0.886 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.861 + }, + { + "category_id": 14, + "poly": [ + 655, + 1532, + 1043, + 1532, + 1043, + 1650, + 655, + 1650 + ], + "score": 0.95, + "latex": "\\mathbf { a } = { \\frac { \\mathbf { g } _ { \\mathrm { A W R } } - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) \\hat { \\mathbf { a } } _ { \\mu } } { - { \\frac { 1 } { \\sigma ^ { 2 } } } \\exp \\left( { \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } } \\right) } }" + }, + { + "category_id": 14, + "poly": [ + 713, + 1374, + 988, + 1374, + 988, + 1452, + 713, + 1452 + ], + "score": 0.94, + "latex": "A ( \\mathbf { s } , \\mathbf { a } ) = \\frac { g _ { \\mathrm { A D V } } - 2 \\lambda \\hat { A } } { - 2 \\lambda }" + }, + { + "category_id": 14, + "poly": [ + 363, + 810, + 1335, + 810, + 1335, + 904, + 363, + 904 + ], + "score": 0.94, + "latex": "\\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\left( \\log \\frac { 1 } { ( 2 \\pi \\sigma ^ { 2 } ) ^ { \\frac { k } { 2 } } } + \\frac { \\| \\mathbf { a } - \\hat { \\mathbf { a } } _ { \\mu } \\| ^ { 2 } } { 2 \\sigma ^ { 2 } } \\right) \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) + \\lambda ( A ( \\mathbf { s } , \\mathbf { a } ) - \\hat { A } ) ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 658, + 1319, + 741, + 1319, + 741, + 1352, + 658, + 1352 + ], + "score": 0.93, + "latex": "A ( \\mathbf { s } , \\mathbf { a } )" + }, + { + "category_id": 13, + "poly": [ + 582, + 1682, + 667, + 1682, + 667, + 1714, + 582, + 1714 + ], + "score": 0.93, + "latex": "A ( \\mathbf { s } , \\mathbf { a } )" + }, + { + "category_id": 13, + "poly": [ + 676, + 1218, + 824, + 1218, + 824, + 1292, + 676, + 1292 + ], + "score": 0.93, + "latex": "\\mathbf { g } = \\left[ \\mathbf { \\mathcal { G } } _ { \\mathrm { A W R } } \\right]" + }, + { + "category_id": 14, + "poly": [ + 506, + 1110, + 1192, + 1110, + 1192, + 1188, + 506, + 1188 + ], + "score": 0.93, + "latex": "\\mathbf { g } _ { \\mathrm { A W R } } = \\nabla _ { \\hat { \\mathbf { a } } _ { \\mu } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = \\frac { 1 } { \\sigma ^ { 2 } } \\exp \\left( \\frac { A ( \\mathbf { s } , \\mathbf { a } ) } { T } \\right) ( \\hat { \\mathbf { a } } _ { \\mu } - \\mathbf { a } )" + }, + { + "category_id": 13, + "poly": [ + 1068, + 1289, + 1153, + 1289, + 1153, + 1322, + 1068, + 1322 + ], + "score": 0.92, + "latex": "A ( \\mathbf { s } , \\mathbf { a } )" + }, + { + "category_id": 13, + "poly": [ + 481, + 323, + 702, + 323, + 702, + 358, + 481, + 358 + ], + "score": 0.92, + "latex": "\\begin{array} { r } { g _ { 1 } ~ = ~ \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 580, + 1005, + 1119, + 1005, + 1119, + 1050, + 580, + 1050 + ], + "score": 0.92, + "latex": "g _ { \\mathrm { A D V } } = \\nabla _ { \\hat { A } } \\mathcal { L } _ { \\pi } ( \\mathbf { s } , \\mathbf { a } , \\hat { \\mathbf { a } } _ { \\mu } , \\hat { A } ) = 2 \\lambda ( \\hat { A } - A ( \\mathbf { s } , \\mathbf { a } ) )" + }, + { + "category_id": 13, + "poly": [ + 773, + 1064, + 806, + 1064, + 806, + 1098, + 773, + 1098 + ], + "score": 0.9, + "latex": "\\hat { \\mathbf { a } } _ { \\mu }" + }, + { + "category_id": 13, + "poly": [ + 761, + 319, + 1317, + 319, + 1317, + 358, + 761, + 358 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { g _ { 2 } ^ { \\sim } = \\frac { - 1 0 e } { \\sigma ^ { 2 } } [ 0 . 1 , . . . , 0 . 1 ] ^ { T } = \\frac { - e } { \\sigma ^ { 2 } } [ 1 , . . . , 1 ] ^ { T } = g _ { 1 } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1075, + 259, + 1248, + 259, + 1248, + 294, + 1075, + 294 + ], + "score": 0.88, + "latex": "\\mathbf { a } _ { 1 } = [ 1 , . . . , 1 ] ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 374, + 291, + 597, + 291, + 597, + 324, + 374, + 324 + ], + "score": 0.88, + "latex": "\\mathbf { a } _ { 2 } = [ 0 . 1 , . . . , 0 . 1 ] ^ { T }" + }, + { + "category_id": 13, + "poly": [ + 610, + 291, + 868, + 291, + 868, + 323, + 610, + 323 + ], + "score": 0.88, + "latex": "A _ { 2 } ( \\mathbf { s } , \\mathbf { a } _ { 2 } ) \\stackrel { - } { = } \\log ( 1 0 ) T" + }, + { + "category_id": 13, + "poly": [ + 818, + 678, + 854, + 678, + 854, + 707, + 818, + 707 + ], + "score": 0.88, + "latex": "{ \\mathcal { L } } _ { \\pi }" + }, + { + "category_id": 13, + "poly": [ + 373, + 920, + 397, + 920, + 397, + 952, + 373, + 952 + ], + "score": 0.87, + "latex": "\\hat { A }" + }, + { + "category_id": 13, + "poly": [ + 1263, + 955, + 1287, + 955, + 1287, + 986, + 1263, + 986 + ], + "score": 0.87, + "latex": "\\hat { A }" + }, + { + "category_id": 13, + "poly": [ + 732, + 1685, + 790, + 1685, + 790, + 1713, + 732, + 1713 + ], + "score": 0.87, + "latex": "g _ { \\mathrm { A D V } }" + }, + { + "category_id": 13, + "poly": [ + 438, + 1746, + 497, + 1746, + 497, + 1775, + 438, + 1775 + ], + "score": 0.85, + "latex": "g _ { \\mathrm { A D V } }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 261, + 1405, + 261, + 1405, + 294, + 1261, + 294 + ], + "score": 0.84, + "latex": "A _ { 1 } ( \\mathbf { s } , \\mathbf { a } _ { 1 } ) =" + }, + { + "category_id": 13, + "poly": [ + 1192, + 926, + 1212, + 926, + 1212, + 952, + 1192, + 952 + ], + "score": 0.83, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 704, + 1714, + 728, + 1714, + 728, + 1740, + 704, + 1740 + ], + "score": 0.82, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 297, + 293, + 321, + 293, + 321, + 319, + 297, + 319 + ], + "score": 0.77, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 297, + 1323, + 356, + 1323, + 356, + 1351, + 297, + 1351 + ], + "score": 0.53, + "latex": "g _ { \\mathrm { A D V } }" + }, + { + "category_id": 13, + "poly": [ + 589, + 1715, + 642, + 1715, + 642, + 1742, + 589, + 1742 + ], + "score": 0.5, + "latex": "\\sigma , \\lambda" + }, + { + "category_id": 13, + "poly": [ + 622, + 1715, + 642, + 1715, + 642, + 1740, + 622, + 1740 + ], + "score": 0.37, + "latex": "\\lambda" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1885.0, + 794.0, + 1885.0, + 794.0, + 1928.0, + 292.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 462.0, + 1234.0, + 462.0, + 1234.0, + 498.0, + 295.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 869.0, + 2084.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1680.0, + 581.0, + 1680.0, + 581.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 668.0, + 1680.0, + 731.0, + 1680.0, + 731.0, + 1716.0, + 668.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 1680.0, + 1406.0, + 1680.0, + 1406.0, + 1716.0, + 791.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1712.0, + 588.0, + 1712.0, + 588.0, + 1747.0, + 292.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 643.0, + 1712.0, + 703.0, + 1712.0, + 703.0, + 1747.0, + 643.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 729.0, + 1712.0, + 1406.0, + 1712.0, + 1406.0, + 1747.0, + 729.0, + 1747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1741.0, + 437.0, + 1741.0, + 437.0, + 1777.0, + 292.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 1741.0, + 1406.0, + 1741.0, + 1406.0, + 1777.0, + 498.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1771.0, + 1405.0, + 1771.0, + 1405.0, + 1808.0, + 291.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1803.0, + 1406.0, + 1803.0, + 1406.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1834.0, + 1321.0, + 1834.0, + 1321.0, + 1868.0, + 294.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 258.0, + 1074.0, + 258.0, + 1074.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 258.0, + 1260.0, + 258.0, + 1260.0, + 297.0, + 1249.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 287.0, + 296.0, + 287.0, + 296.0, + 329.0, + 291.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 287.0, + 373.0, + 287.0, + 373.0, + 329.0, + 322.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 287.0, + 609.0, + 287.0, + 609.0, + 329.0, + 598.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 287.0, + 1407.0, + 287.0, + 1407.0, + 329.0, + 869.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 309.0, + 480.0, + 309.0, + 480.0, + 362.0, + 287.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 309.0, + 760.0, + 309.0, + 760.0, + 362.0, + 703.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 309.0, + 1411.0, + 309.0, + 1411.0, + 362.0, + 1318.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 350.0, + 1406.0, + 350.0, + 1406.0, + 389.0, + 294.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 382.0, + 1408.0, + 382.0, + 1408.0, + 417.0, + 295.0, + 417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 412.0, + 1181.0, + 412.0, + 1181.0, + 450.0, + 294.0, + 450.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 339.0, + 882.0, + 339.0, + 882.0, + 358.0, + 852.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 512.0, + 1405.0, + 512.0, + 1405.0, + 546.0, + 296.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 542.0, + 1404.0, + 542.0, + 1404.0, + 578.0, + 295.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 572.0, + 1402.0, + 572.0, + 1402.0, + 606.0, + 294.0, + 606.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 598.0, + 1405.0, + 598.0, + 1405.0, + 645.0, + 291.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 633.0, + 395.0, + 633.0, + 395.0, + 673.0, + 292.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1231.0, + 675.0, + 1231.0, + 675.0, + 1276.0, + 295.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1280.0, + 825.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1287.0, + 1067.0, + 1287.0, + 1067.0, + 1323.0, + 294.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.0, + 1287.0, + 1403.0, + 1287.0, + 1403.0, + 1323.0, + 1154.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1313.0, + 296.0, + 1313.0, + 296.0, + 1359.0, + 291.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1313.0, + 657.0, + 1313.0, + 657.0, + 1359.0, + 357.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 742.0, + 1313.0, + 1406.0, + 1313.0, + 1406.0, + 1359.0, + 742.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1347.0, + 433.0, + 1347.0, + 433.0, + 1381.0, + 293.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1938.0, + 1407.0, + 1938.0, + 1407.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1409.0, + 2000.0, + 1409.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 732.0, + 1403.0, + 732.0, + 1403.0, + 770.0, + 293.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 765.0, + 1072.0, + 765.0, + 1072.0, + 799.0, + 293.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 919.0, + 372.0, + 919.0, + 372.0, + 962.0, + 293.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 919.0, + 1191.0, + 919.0, + 1191.0, + 962.0, + 398.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1213.0, + 919.0, + 1406.0, + 919.0, + 1406.0, + 962.0, + 1213.0, + 962.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 1262.0, + 956.0, + 1262.0, + 994.0, + 294.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 956.0, + 1316.0, + 956.0, + 1316.0, + 994.0, + 1288.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1448.0, + 1407.0, + 1448.0, + 1407.0, + 1497.0, + 292.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1484.0, + 448.0, + 1484.0, + 448.0, + 1521.0, + 293.0, + 1521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 674.0, + 817.0, + 674.0, + 817.0, + 714.0, + 294.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 674.0, + 1285.0, + 674.0, + 1285.0, + 714.0, + 855.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1057.0, + 772.0, + 1057.0, + 772.0, + 1102.0, + 294.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 807.0, + 1057.0, + 838.0, + 1057.0, + 838.0, + 1102.0, + 807.0, + 1102.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 756, + 1405, + 756, + 1405, + 1162, + 297, + 1162 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 555, + 1404, + 555, + 1404, + 741, + 297, + 741 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 1296, + 1405, + 1296, + 1405, + 1481, + 297, + 1481 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 298, + 1881, + 1403, + 1881, + 1403, + 2035, + 298, + 2035 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 300, + 1495, + 1405, + 1495, + 1405, + 1620, + 300, + 1620 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 292, + 398, + 1403, + 398, + 1403, + 462, + 292, + 462 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 295, + 228, + 1403, + 228, + 1403, + 294, + 295, + 294 + ], + "score": 0.945 + }, + { + "category_id": 1, + "poly": [ + 361, + 1644, + 1405, + 1644, + 1405, + 1856, + 361, + 1856 + ], + "score": 0.94 + }, + { + "category_id": 8, + "poly": [ + 727, + 503, + 970, + 503, + 970, + 544, + 727, + 544 + ], + "score": 0.937 + }, + { + "category_id": 8, + "poly": [ + 747, + 337, + 950, + 337, + 950, + 374, + 747, + 374 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 300, + 1187, + 1003, + 1187, + 1003, + 1222, + 300, + 1222 + ], + "score": 0.914 + }, + { + "category_id": 0, + "poly": [ + 302, + 1245, + 850, + 1245, + 850, + 1277, + 302, + 1277 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 297, + 74, + 854, + 74, + 854, + 105, + 297, + 105 + ], + "score": 0.703 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 854, + 74, + 854, + 105, + 298, + 105 + ], + "score": 0.249 + }, + { + "category_id": 13, + "poly": [ + 1250, + 853, + 1317, + 853, + 1317, + 882, + 1250, + 882 + ], + "score": 0.92, + "latex": "d \\times d" + }, + { + "category_id": 13, + "poly": [ + 453, + 847, + 658, + 847, + 658, + 881, + 453, + 881 + ], + "score": 0.92, + "latex": "W ^ { \\mathrm { w t } } \\in \\mathbf { \\mathbb { R } } ^ { ( d ^ { 2 } + d ) \\times c }" + }, + { + "category_id": 13, + "poly": [ + 609, + 679, + 795, + 679, + 795, + 710, + 609, + 710 + ], + "score": 0.92, + "latex": "\\dim ( \\mathbf { z } ) = \\dim ( \\mathbf { b } )" + }, + { + "category_id": 13, + "poly": [ + 847, + 677, + 942, + 677, + 942, + 707, + 847, + 707 + ], + "score": 0.92, + "latex": "W ^ { b } = I" + }, + { + "category_id": 13, + "poly": [ + 886, + 944, + 1109, + 944, + 1109, + 977, + 886, + 977 + ], + "score": 0.92, + "latex": "y = \\bar { \\sigma } ( W ^ { * } \\mathbf { x } + \\mathbf { \\bar { b } } ^ { * } )" + }, + { + "category_id": 13, + "poly": [ + 1194, + 586, + 1253, + 586, + 1253, + 616, + 1194, + 616 + ], + "score": 0.91, + "latex": "\\mathbf { \\bar { \\boldsymbol { W } } } ^ { b } \\mathbf { z }" + }, + { + "category_id": 14, + "poly": [ + 726, + 502, + 971, + 502, + 971, + 546, + 726, + 546 + ], + "score": 0.9, + "latex": "\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + W ^ { b } \\mathbf { z } \\right)" + }, + { + "category_id": 13, + "poly": [ + 439, + 554, + 483, + 554, + 483, + 585, + 439, + 585 + ], + "score": 0.9, + "latex": "W ^ { b }" + }, + { + "category_id": 13, + "poly": [ + 877, + 585, + 921, + 585, + 921, + 615, + 877, + 615 + ], + "score": 0.9, + "latex": "W ^ { b }" + }, + { + "category_id": 13, + "poly": [ + 382, + 677, + 441, + 677, + 441, + 707, + 382, + 707 + ], + "score": 0.9, + "latex": "W ^ { b } \\mathbf { z }" + }, + { + "category_id": 14, + "poly": [ + 747, + 336, + 951, + 336, + 951, + 375, + 747, + 375 + ], + "score": 0.89, + "latex": "\\mathbf { y } = \\sigma \\left( W \\mathbf { x } + \\mathbf { b } \\right)" + }, + { + "category_id": 13, + "poly": [ + 904, + 1005, + 956, + 1005, + 956, + 1039, + 904, + 1039 + ], + "score": 0.89, + "latex": "W ^ { * ^ { \\prime } }" + }, + { + "category_id": 13, + "poly": [ + 1307, + 915, + 1352, + 915, + 1352, + 943, + 1307, + 943 + ], + "score": 0.87, + "latex": "W ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 506, + 885, + 551, + 885, + 551, + 913, + 506, + 913 + ], + "score": 0.87, + "latex": "W ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 297, + 852, + 366, + 852, + 366, + 883, + 297, + 883 + ], + "score": 0.87, + "latex": "W ^ { \\mathrm { w t } } \\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 773, + 851, + 803, + 851, + 803, + 881, + 773, + 881 + ], + "score": 0.86, + "latex": "d ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 375, + 1041, + 420, + 1041, + 420, + 1069, + 375, + 1069 + ], + "score": 0.86, + "latex": "W ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 297, + 945, + 325, + 945, + 325, + 973, + 297, + 973 + ], + "score": 0.85, + "latex": "b ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 794, + 975, + 848, + 975, + 848, + 1003, + 794, + 1003 + ], + "score": 0.85, + "latex": "W ^ { \\mathrm { w t } }" + }, + { + "category_id": 13, + "poly": [ + 1353, + 821, + 1405, + 821, + 1405, + 847, + 1353, + 847 + ], + "score": 0.83, + "latex": "w =" + }, + { + "category_id": 13, + "poly": [ + 1144, + 885, + 1171, + 885, + 1171, + 912, + 1144, + 912 + ], + "score": 0.83, + "latex": "b ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 623, + 819, + 641, + 819, + 641, + 845, + 623, + 845 + ], + "score": 0.8, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 993, + 401, + 1026, + 401, + 1026, + 428, + 993, + 428 + ], + "score": 0.8, + "latex": "W" + }, + { + "category_id": 13, + "poly": [ + 485, + 819, + 503, + 819, + 503, + 845, + 485, + 845 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 693, + 885, + 712, + 885, + 712, + 911, + 693, + 911 + ], + "score": 0.79, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 981, + 858, + 1006, + 858, + 1006, + 881, + 981, + 881 + ], + "score": 0.76, + "latex": "w" + }, + { + "category_id": 13, + "poly": [ + 770, + 401, + 792, + 401, + 792, + 427, + 770, + 427 + ], + "score": 0.68, + "latex": "\\mathbf { b }" + }, + { + "category_id": 13, + "poly": [ + 414, + 594, + 432, + 594, + 432, + 615, + 414, + 615 + ], + "score": 0.64, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 638, + 594, + 656, + 594, + 656, + 615, + 638, + 615 + ], + "score": 0.63, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 888, + 1046, + 905, + 1046, + 905, + 1068, + 888, + 1068 + ], + "score": 0.63, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 485, + 980, + 504, + 980, + 504, + 1002, + 485, + 1002 + ], + "score": 0.6, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 1308, + 405, + 1329, + 405, + 1329, + 432, + 1308, + 432 + ], + "score": 0.58, + "latex": "\\mathbf { y }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 824, + 1123, + 824, + 1123, + 845, + 1108, + 845 + ], + "score": 0.55, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 370, + 405, + 391, + 405, + 391, + 427, + 370, + 427 + ], + "score": 0.55, + "latex": "\\mathbf { x }" + }, + { + "category_id": 13, + "poly": [ + 370, + 562, + 389, + 562, + 389, + 584, + 370, + 584 + ], + "score": 0.53, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 1249, + 980, + 1269, + 980, + 1269, + 1003, + 1249, + 1003 + ], + "score": 0.52, + "latex": "\\mathbf { z }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1184.0, + 1007.0, + 1184.0, + 1007.0, + 1228.0, + 294.0, + 1228.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1245.0, + 855.0, + 1245.0, + 855.0, + 1281.0, + 296.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 856.0, + 72.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 757.0, + 1407.0, + 757.0, + 1407.0, + 791.0, + 295.0, + 791.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 785.0, + 1405.0, + 785.0, + 1405.0, + 822.0, + 292.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 817.0, + 484.0, + 817.0, + 484.0, + 853.0, + 294.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 817.0, + 622.0, + 817.0, + 622.0, + 853.0, + 504.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 642.0, + 817.0, + 1107.0, + 817.0, + 1107.0, + 853.0, + 642.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 817.0, + 1352.0, + 817.0, + 1352.0, + 853.0, + 1124.0, + 853.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 845.0, + 296.0, + 845.0, + 296.0, + 891.0, + 292.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 845.0, + 452.0, + 845.0, + 452.0, + 891.0, + 367.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 845.0, + 772.0, + 845.0, + 772.0, + 891.0, + 659.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 804.0, + 845.0, + 980.0, + 845.0, + 980.0, + 891.0, + 804.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1007.0, + 845.0, + 1249.0, + 845.0, + 1249.0, + 891.0, + 1007.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1318.0, + 845.0, + 1408.0, + 845.0, + 1408.0, + 891.0, + 1318.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 884.0, + 505.0, + 884.0, + 505.0, + 918.0, + 294.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 884.0, + 692.0, + 884.0, + 692.0, + 918.0, + 552.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 713.0, + 884.0, + 1143.0, + 884.0, + 1143.0, + 918.0, + 713.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 884.0, + 1406.0, + 884.0, + 1406.0, + 918.0, + 1172.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 913.0, + 1306.0, + 913.0, + 1306.0, + 949.0, + 292.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 913.0, + 1407.0, + 913.0, + 1407.0, + 949.0, + 1353.0, + 949.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 941.0, + 296.0, + 941.0, + 296.0, + 981.0, + 292.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 941.0, + 885.0, + 941.0, + 885.0, + 981.0, + 326.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 941.0, + 1407.0, + 941.0, + 1407.0, + 981.0, + 1110.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 971.0, + 484.0, + 971.0, + 484.0, + 1010.0, + 292.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 505.0, + 971.0, + 793.0, + 971.0, + 793.0, + 1010.0, + 505.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 971.0, + 1248.0, + 971.0, + 1248.0, + 1010.0, + 849.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 971.0, + 1406.0, + 971.0, + 1406.0, + 1010.0, + 1270.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1006.0, + 903.0, + 1006.0, + 903.0, + 1048.0, + 291.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 1006.0, + 1407.0, + 1006.0, + 1407.0, + 1048.0, + 957.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1039.0, + 374.0, + 1039.0, + 374.0, + 1076.0, + 292.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 421.0, + 1039.0, + 887.0, + 1039.0, + 887.0, + 1076.0, + 421.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 906.0, + 1039.0, + 1405.0, + 1039.0, + 1405.0, + 1076.0, + 906.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1070.0, + 1403.0, + 1070.0, + 1403.0, + 1104.0, + 294.0, + 1104.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1103.0, + 1405.0, + 1103.0, + 1405.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1132.0, + 809.0, + 1132.0, + 809.0, + 1166.0, + 295.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 552.0, + 369.0, + 552.0, + 369.0, + 592.0, + 294.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 552.0, + 438.0, + 552.0, + 438.0, + 592.0, + 390.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 484.0, + 552.0, + 1404.0, + 552.0, + 1404.0, + 592.0, + 484.0, + 592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 583.0, + 413.0, + 583.0, + 413.0, + 624.0, + 292.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 433.0, + 583.0, + 637.0, + 583.0, + 637.0, + 624.0, + 433.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 657.0, + 583.0, + 876.0, + 583.0, + 876.0, + 624.0, + 657.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 583.0, + 1193.0, + 583.0, + 1193.0, + 624.0, + 922.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 583.0, + 1407.0, + 583.0, + 1407.0, + 624.0, + 1254.0, + 624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 619.0, + 1404.0, + 619.0, + 1404.0, + 651.0, + 296.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 647.0, + 1406.0, + 647.0, + 1406.0, + 684.0, + 291.0, + 684.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 674.0, + 381.0, + 674.0, + 381.0, + 714.0, + 291.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 674.0, + 608.0, + 674.0, + 608.0, + 714.0, + 442.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 674.0, + 846.0, + 674.0, + 846.0, + 714.0, + 796.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 674.0, + 1407.0, + 674.0, + 1407.0, + 714.0, + 943.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 708.0, + 379.0, + 708.0, + 379.0, + 746.0, + 291.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1298.0, + 1403.0, + 1298.0, + 1403.0, + 1330.0, + 296.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1329.0, + 1403.0, + 1329.0, + 1403.0, + 1361.0, + 295.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1357.0, + 1406.0, + 1357.0, + 1406.0, + 1394.0, + 292.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1390.0, + 1403.0, + 1390.0, + 1403.0, + 1422.0, + 295.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1419.0, + 1408.0, + 1419.0, + 1408.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1448.0, + 1408.0, + 1448.0, + 1408.0, + 1485.0, + 292.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1405.0, + 1971.0, + 1405.0, + 2010.0, + 293.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2002.0, + 1407.0, + 2002.0, + 1407.0, + 2039.0, + 296.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1494.0, + 1405.0, + 1494.0, + 1405.0, + 1532.0, + 293.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1526.0, + 1405.0, + 1526.0, + 1405.0, + 1562.0, + 294.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1557.0, + 1405.0, + 1557.0, + 1405.0, + 1594.0, + 294.0, + 1594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1587.0, + 791.0, + 1587.0, + 791.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 398.0, + 369.0, + 398.0, + 369.0, + 434.0, + 295.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 398.0, + 769.0, + 398.0, + 769.0, + 434.0, + 392.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 793.0, + 398.0, + 992.0, + 398.0, + 992.0, + 434.0, + 793.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 398.0, + 1307.0, + 398.0, + 1307.0, + 434.0, + 1027.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 398.0, + 1404.0, + 398.0, + 1404.0, + 434.0, + 1330.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 429.0, + 1083.0, + 429.0, + 1083.0, + 465.0, + 295.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 1405.0, + 225.0, + 1405.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 257.0, + 449.0, + 257.0, + 449.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1646.0, + 1405.0, + 1646.0, + 1405.0, + 1681.0, + 362.0, + 1681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1676.0, + 1047.0, + 1676.0, + 1047.0, + 1712.0, + 393.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1717.0, + 1406.0, + 1717.0, + 1406.0, + 1755.0, + 358.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1749.0, + 772.0, + 1749.0, + 772.0, + 1785.0, + 392.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 357.0, + 1791.0, + 1407.0, + 1791.0, + 1407.0, + 1829.0, + 357.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1822.0, + 783.0, + 1822.0, + 783.0, + 1859.0, + 393.0, + 1859.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1091, + 826, + 1091, + 826, + 1579, + 298, + 1579 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 1681, + 1404, + 1681, + 1404, + 1866, + 297, + 1866 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1404, + 1880, + 1404, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 982, + 1405, + 982, + 1405, + 1074, + 298, + 1074 + ], + "score": 0.972 + }, + { + "category_id": 3, + "poly": [ + 851, + 1099, + 1397, + 1099, + 1397, + 1455, + 851, + 1455 + ], + "score": 0.966 + }, + { + "category_id": 3, + "poly": [ + 392, + 232, + 1311, + 232, + 1311, + 673, + 392, + 673 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 718, + 1406, + 718, + 1406, + 842, + 296, + 842 + ], + "score": 0.964 + }, + { + "category_id": 4, + "poly": [ + 845, + 1483, + 1405, + 1483, + 1405, + 1576, + 845, + 1576 + ], + "score": 0.961 + }, + { + "category_id": 1, + "poly": [ + 298, + 904, + 1402, + 904, + 1402, + 967, + 298, + 967 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 297, + 1599, + 735, + 1599, + 735, + 1660, + 297, + 1660 + ], + "score": 0.931 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.855 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 853, + 76, + 853, + 104, + 299, + 104 + ], + "score": 0.831 + }, + { + "category_id": 15, + "poly": [ + 932.0, + 1099.0, + 1320.0, + 1099.0, + 1320.0, + 1127.0, + 932.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1131.0, + 920.0, + 1131.0, + 920.0, + 1165.0, + 873.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1183.0, + 921.0, + 1183.0, + 921.0, + 1217.0, + 873.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 1206.0, + 1374.0, + 1206.0, + 1374.0, + 1216.0, + 1349.0, + 1216.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 849.0, + 1217.0, + 885.0, + 1217.0, + 885.0, + 1327.0, + 849.0, + 1327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1234.0, + 920.0, + 1234.0, + 920.0, + 1268.0, + 873.0, + 1268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1237.0, + 986.0, + 1237.0, + 986.0, + 1246.0, + 979.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1329.0, + 1242.0, + 1386.0, + 1242.0, + 1386.0, + 1271.0, + 1329.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1253.0, + 1322.0, + 1253.0, + 1322.0, + 1263.0, + 1288.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1325.0, + 1268.0, + 1370.0, + 1268.0, + 1370.0, + 1298.0, + 1325.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1286.0, + 920.0, + 1286.0, + 920.0, + 1320.0, + 872.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1314.0, + 1360.0, + 1314.0, + 1360.0, + 1342.0, + 1194.0, + 1342.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1337.0, + 921.0, + 1337.0, + 921.0, + 1372.0, + 873.0, + 1372.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1193.0, + 1340.0, + 1387.0, + 1340.0, + 1387.0, + 1369.0, + 1193.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1384.0, + 942.0, + 1384.0, + 942.0, + 1393.0, + 934.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1194.0, + 1366.0, + 1371.0, + 1366.0, + 1371.0, + 1392.0, + 1194.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 928.0, + 1405.0, + 947.0, + 1405.0, + 947.0, + 1428.0, + 928.0, + 1428.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1014.0, + 1401.0, + 1053.0, + 1401.0, + 1053.0, + 1432.0, + 1014.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1112.0, + 1400.0, + 1152.0, + 1400.0, + 1152.0, + 1432.0, + 1112.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1206.0, + 1401.0, + 1246.0, + 1401.0, + 1246.0, + 1430.0, + 1206.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1306.0, + 1400.0, + 1344.0, + 1400.0, + 1344.0, + 1431.0, + 1306.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1011.0, + 1426.0, + 1301.0, + 1426.0, + 1301.0, + 1457.0, + 1011.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 228.0, + 1039.0, + 228.0, + 1039.0, + 255.0, + 659.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 570.0, + 256.0, + 719.0, + 256.0, + 719.0, + 283.0, + 570.0, + 283.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1038.0, + 254.0, + 1174.0, + 254.0, + 1174.0, + 284.0, + 1038.0, + 284.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 406.0, + 271.0, + 449.0, + 271.0, + 449.0, + 292.0, + 406.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 559.0, + 294.0, + 584.0, + 294.0, + 584.0, + 309.0, + 559.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 282.0, + 913.0, + 282.0, + 913.0, + 306.0, + 875.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 300.0, + 449.0, + 300.0, + 449.0, + 324.0, + 413.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 310.0, + 912.0, + 310.0, + 912.0, + 336.0, + 870.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 318.0, + 965.0, + 318.0, + 965.0, + 330.0, + 951.0, + 330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 328.0, + 412.0, + 328.0, + 412.0, + 385.0, + 391.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 331.0, + 449.0, + 331.0, + 449.0, + 353.0, + 413.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 332.0, + 515.0, + 332.0, + 515.0, + 346.0, + 500.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 327.0, + 873.0, + 327.0, + 873.0, + 385.0, + 852.0, + 385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 348.0, + 496.0, + 348.0, + 496.0, + 365.0, + 478.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 871.0, + 344.0, + 912.0, + 344.0, + 912.0, + 366.0, + 871.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 361.0, + 449.0, + 361.0, + 449.0, + 384.0, + 413.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 391.0, + 449.0, + 391.0, + 449.0, + 414.0, + 413.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 381.0, + 835.0, + 381.0, + 835.0, + 421.0, + 711.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 866.0, + 373.0, + 913.0, + 373.0, + 913.0, + 427.0, + 866.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 427.0, + 474.0, + 427.0, + 474.0, + 445.0, + 457.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 495.0, + 424.0, + 525.0, + 424.0, + 525.0, + 448.0, + 495.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 539.0, + 424.0, + 755.0, + 424.0, + 755.0, + 447.0, + 539.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 758.0, + 424.0, + 842.0, + 424.0, + 842.0, + 448.0, + 758.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 427.0, + 936.0, + 427.0, + 936.0, + 446.0, + 918.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 425.0, + 986.0, + 425.0, + 986.0, + 448.0, + 957.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 426.0, + 1032.0, + 426.0, + 1032.0, + 446.0, + 1004.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 423.0, + 1304.0, + 423.0, + 1304.0, + 449.0, + 1045.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 442.0, + 736.0, + 442.0, + 736.0, + 462.0, + 554.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1015.0, + 442.0, + 1196.0, + 442.0, + 1196.0, + 462.0, + 1015.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 464.0, + 706.0, + 464.0, + 706.0, + 490.0, + 584.0, + 490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 464.0, + 1162.0, + 464.0, + 1162.0, + 491.0, + 1050.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 485.0, + 451.0, + 485.0, + 451.0, + 507.0, + 413.0, + 507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 876.0, + 489.0, + 912.0, + 489.0, + 912.0, + 512.0, + 876.0, + 512.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 495.0, + 1054.0, + 495.0, + 1054.0, + 505.0, + 1032.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 398.0, + 518.0, + 450.0, + 518.0, + 450.0, + 593.0, + 398.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 540.0, + 551.0, + 540.0, + 551.0, + 559.0, + 524.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 532.0, + 567.0, + 532.0, + 567.0, + 537.0, + 562.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 609.0, + 533.0, + 628.0, + 533.0, + 628.0, + 549.0, + 609.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 537.0, + 664.0, + 537.0, + 664.0, + 550.0, + 650.0, + 550.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 669.0, + 547.0, + 704.0, + 547.0, + 704.0, + 570.0, + 669.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 744.0, + 503.0, + 821.0, + 503.0, + 821.0, + 532.0, + 744.0, + 532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 534.0, + 912.0, + 534.0, + 912.0, + 593.0, + 861.0, + 593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 546.0, + 1149.0, + 546.0, + 1149.0, + 563.0, + 1098.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 552.0, + 1168.0, + 552.0, + 1168.0, + 560.0, + 1155.0, + 560.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 648.0, + 570.0, + 660.0, + 570.0, + 660.0, + 578.0, + 648.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 586.0, + 449.0, + 586.0, + 449.0, + 608.0, + 414.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 618.0, + 450.0, + 618.0, + 450.0, + 642.0, + 413.0, + 642.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 614.0, + 474.0, + 614.0, + 474.0, + 632.0, + 461.0, + 632.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 605.0, + 913.0, + 605.0, + 913.0, + 631.0, + 875.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 634.0, + 474.0, + 634.0, + 474.0, + 653.0, + 457.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 632.0, + 524.0, + 632.0, + 524.0, + 656.0, + 494.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 634.0, + 569.0, + 634.0, + 569.0, + 654.0, + 542.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 585.0, + 634.0, + 613.0, + 634.0, + 613.0, + 654.0, + 585.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 628.0, + 632.0, + 754.0, + 632.0, + 754.0, + 655.0, + 628.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 755.0, + 634.0, + 841.0, + 634.0, + 841.0, + 655.0, + 755.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 918.0, + 635.0, + 935.0, + 635.0, + 935.0, + 653.0, + 918.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 634.0, + 985.0, + 634.0, + 985.0, + 655.0, + 959.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 634.0, + 1032.0, + 634.0, + 1032.0, + 654.0, + 1003.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 632.0, + 1304.0, + 632.0, + 1304.0, + 655.0, + 1049.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 647.0, + 736.0, + 647.0, + 736.0, + 671.0, + 552.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 650.0, + 1198.0, + 650.0, + 1198.0, + 670.0, + 1016.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1116.25, + 316.5, + 1287.25, + 316.5, + 1287.25, + 353.5, + 1116.25, + 353.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 303.0, + 562.0, + 303.0, + 562.0, + 327.0, + 513.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 325.0, + 1115.0, + 325.0, + 1115.0, + 347.5, + 1062.0, + 347.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.75, + 549.5, + 640.75, + 549.5, + 640.75, + 580.5, + 604.75, + 580.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 547.0, + 794.0, + 547.0, + 794.0, + 578.5, + 709.0, + 578.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.75, + 557.5, + 1075.75, + 557.5, + 1075.75, + 568.5, + 1053.75, + 568.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 719.0, + 1408.0, + 719.0, + 1408.0, + 752.0, + 295.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 1404.0, + 748.0, + 1404.0, + 781.0, + 294.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 780.0, + 1404.0, + 780.0, + 1404.0, + 816.0, + 294.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 812.0, + 734.0, + 812.0, + 734.0, + 844.0, + 295.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 845.0, + 1481.0, + 1404.0, + 1481.0, + 1404.0, + 1516.0, + 845.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1513.0, + 1405.0, + 1513.0, + 1405.0, + 1546.0, + 846.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 844.0, + 1544.0, + 1404.0, + 1544.0, + 1404.0, + 1576.0, + 844.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1595.0, + 697.0, + 1595.0, + 697.0, + 1634.0, + 294.0, + 1634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1628.0, + 737.0, + 1628.0, + 737.0, + 1663.0, + 296.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1090.0, + 826.0, + 1090.0, + 826.0, + 1125.0, + 297.0, + 1125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1120.0, + 827.0, + 1120.0, + 827.0, + 1156.0, + 294.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1151.0, + 828.0, + 1151.0, + 828.0, + 1186.0, + 295.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1181.0, + 826.0, + 1181.0, + 826.0, + 1215.0, + 295.0, + 1215.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1211.0, + 829.0, + 1211.0, + 829.0, + 1245.0, + 294.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1242.0, + 829.0, + 1242.0, + 829.0, + 1278.0, + 294.0, + 1278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1273.0, + 829.0, + 1273.0, + 829.0, + 1307.0, + 294.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1303.0, + 828.0, + 1303.0, + 828.0, + 1338.0, + 294.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 829.0, + 1337.0, + 829.0, + 1367.0, + 294.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1367.0, + 827.0, + 1367.0, + 827.0, + 1397.0, + 294.0, + 1397.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1393.0, + 827.0, + 1393.0, + 827.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1426.0, + 827.0, + 1426.0, + 827.0, + 1460.0, + 295.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1455.0, + 825.0, + 1455.0, + 825.0, + 1490.0, + 295.0, + 1490.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1487.0, + 827.0, + 1487.0, + 827.0, + 1520.0, + 294.0, + 1520.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1518.0, + 826.0, + 1518.0, + 826.0, + 1549.0, + 295.0, + 1549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1549.0, + 613.0, + 1549.0, + 613.0, + 1579.0, + 295.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1679.0, + 1405.0, + 1679.0, + 1405.0, + 1716.0, + 294.0, + 1716.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1712.0, + 1402.0, + 1712.0, + 1402.0, + 1744.0, + 296.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1405.0, + 1742.0, + 1405.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1768.0, + 1408.0, + 1768.0, + 1408.0, + 1812.0, + 292.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1801.0, + 1406.0, + 1801.0, + 1406.0, + 1838.0, + 294.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1833.0, + 1409.0, + 1833.0, + 1409.0, + 1870.0, + 294.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1403.0, + 1880.0, + 1403.0, + 1916.0, + 294.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1945.0, + 295.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1405.0, + 1941.0, + 1405.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2001.0, + 1406.0, + 2001.0, + 1406.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 982.0, + 1403.0, + 982.0, + 1403.0, + 1016.0, + 296.0, + 1016.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1014.0, + 1403.0, + 1014.0, + 1403.0, + 1047.0, + 295.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1045.0, + 981.0, + 1045.0, + 981.0, + 1078.0, + 296.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 902.0, + 1406.0, + 902.0, + 1406.0, + 943.0, + 293.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 934.0, + 1335.0, + 934.0, + 1335.0, + 971.0, + 293.0, + 971.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1507, + 1404, + 1507, + 1404, + 1873, + 298, + 1873 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 925, + 1404, + 925, + 1404, + 1231, + 298, + 1231 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1246, + 1404, + 1246, + 1404, + 1491, + 298, + 1491 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 299, + 726, + 1404, + 726, + 1404, + 910, + 299, + 910 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 409, + 225, + 1289, + 225, + 1289, + 400, + 409, + 400 + ], + "score": 0.974, + "html": "
Additional Env. StepsOffline PEARL+FTMACAW
RewardImprovementRewardImprovement
0-553.4 (21.2)-323.1 (42.9)
20k-565.0 (4.7)-11.5 (3.5)-279.1 (16.8)44.0 (14.5)
200k-533.6 (19.8)19.8 (3.7)-272.0 (15.2)51.1 (12.7)
" + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1403, + 1942, + 1403, + 2034, + 300, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 2, + "poly": [ + 297, + 75, + 854, + 75, + 854, + 105, + 297, + 105 + ], + "score": 0.918 + }, + { + "category_id": 0, + "poly": [ + 302, + 1892, + 772, + 1892, + 772, + 1923, + 302, + 1923 + ], + "score": 0.892 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 1, + "poly": [ + 296, + 421, + 1405, + 421, + 1405, + 667, + 296, + 667 + ], + "score": 0.812 + }, + { + "category_id": 13, + "poly": [ + 579, + 1081, + 603, + 1081, + 603, + 1107, + 579, + 1107 + ], + "score": 0.7, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 599, + 454, + 660, + 454, + 660, + 483, + 599, + 483 + ], + "score": 0.64, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 1301, + 424, + 1353, + 424, + 1353, + 451, + 1301, + 451 + ], + "score": 0.49, + "latex": "+ \\mathrm { F T }" + }, + { + "category_id": 13, + "poly": [ + 1356, + 575, + 1403, + 575, + 1403, + 604, + 1356, + 604 + ], + "score": 0.45, + "latex": "2 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 517, + 575, + 568, + 575, + 568, + 604, + 517, + 604 + ], + "score": 0.44, + "latex": "+ \\mathrm { F T }" + }, + { + "category_id": 13, + "poly": [ + 1031, + 1630, + 1091, + 1630, + 1091, + 1659, + 1031, + 1659 + ], + "score": 0.4, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 981, + 1752, + 1029, + 1752, + 1029, + 1781, + 981, + 1781 + ], + "score": 0.39, + "latex": "2 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 387, + 1171, + 439, + 1171, + 439, + 1200, + 387, + 1200 + ], + "score": 0.32, + "latex": "+ \\mathrm { F T }" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1752, + 1142, + 1752, + 1142, + 1780, + 1080, + 1780 + ], + "score": 0.31, + "latex": "2 0 0 \\mathrm { k }" + }, + { + "category_id": 13, + "poly": [ + 932, + 1080, + 985, + 1080, + 985, + 1108, + 932, + 1108 + ], + "score": 0.28, + "latex": "{ \\bf \\Phi } + \\mathrm { F T }" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 298.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1889.0, + 779.0, + 1889.0, + 779.0, + 1928.0, + 296.0, + 1928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1507.0, + 1405.0, + 1507.0, + 1405.0, + 1541.0, + 293.0, + 1541.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1540.0, + 1405.0, + 1540.0, + 1405.0, + 1571.0, + 293.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1569.0, + 1406.0, + 1569.0, + 1406.0, + 1603.0, + 292.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1595.0, + 1409.0, + 1595.0, + 1409.0, + 1638.0, + 292.0, + 1638.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1629.0, + 1030.0, + 1629.0, + 1030.0, + 1663.0, + 294.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1092.0, + 1629.0, + 1405.0, + 1629.0, + 1405.0, + 1663.0, + 1092.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1660.0, + 1406.0, + 1660.0, + 1406.0, + 1695.0, + 293.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1690.0, + 1406.0, + 1690.0, + 1406.0, + 1728.0, + 293.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1720.0, + 1405.0, + 1720.0, + 1405.0, + 1754.0, + 294.0, + 1754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1753.0, + 980.0, + 1753.0, + 980.0, + 1783.0, + 296.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1030.0, + 1753.0, + 1079.0, + 1753.0, + 1079.0, + 1783.0, + 1030.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 1753.0, + 1405.0, + 1753.0, + 1405.0, + 1783.0, + 1143.0, + 1783.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1782.0, + 1405.0, + 1782.0, + 1405.0, + 1816.0, + 294.0, + 1816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1814.0, + 1404.0, + 1814.0, + 1404.0, + 1844.0, + 296.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1844.0, + 1381.0, + 1844.0, + 1381.0, + 1876.0, + 293.0, + 1876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 922.0, + 1405.0, + 922.0, + 1405.0, + 965.0, + 291.0, + 965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 956.0, + 1402.0, + 956.0, + 1402.0, + 992.0, + 294.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 987.0, + 1406.0, + 987.0, + 1406.0, + 1022.0, + 293.0, + 1022.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1016.0, + 1407.0, + 1016.0, + 1407.0, + 1054.0, + 292.0, + 1054.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1049.0, + 1406.0, + 1049.0, + 1406.0, + 1084.0, + 294.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1077.0, + 578.0, + 1077.0, + 578.0, + 1114.0, + 293.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1077.0, + 931.0, + 1077.0, + 931.0, + 1114.0, + 604.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 986.0, + 1077.0, + 1405.0, + 1077.0, + 1405.0, + 1114.0, + 986.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1108.0, + 1406.0, + 1108.0, + 1406.0, + 1143.0, + 293.0, + 1143.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1139.0, + 1405.0, + 1139.0, + 1405.0, + 1174.0, + 294.0, + 1174.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1172.0, + 386.0, + 1172.0, + 386.0, + 1204.0, + 296.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 440.0, + 1172.0, + 1405.0, + 1172.0, + 1405.0, + 1204.0, + 440.0, + 1204.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1200.0, + 1322.0, + 1200.0, + 1322.0, + 1237.0, + 292.0, + 1237.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1285.0, + 292.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1279.0, + 1409.0, + 1279.0, + 1409.0, + 1312.0, + 293.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1311.0, + 1405.0, + 1311.0, + 1405.0, + 1341.0, + 296.0, + 1341.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1341.0, + 1404.0, + 1341.0, + 1404.0, + 1371.0, + 296.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1370.0, + 1406.0, + 1370.0, + 1406.0, + 1403.0, + 294.0, + 1403.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 1408.0, + 1398.0, + 1408.0, + 1436.0, + 294.0, + 1436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1428.0, + 1408.0, + 1428.0, + 1408.0, + 1469.0, + 292.0, + 1469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1459.0, + 654.0, + 1459.0, + 654.0, + 1493.0, + 295.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 727.0, + 1408.0, + 727.0, + 1408.0, + 762.0, + 294.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 757.0, + 1406.0, + 757.0, + 1406.0, + 793.0, + 295.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 788.0, + 1408.0, + 788.0, + 1408.0, + 823.0, + 295.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 815.0, + 1404.0, + 815.0, + 1404.0, + 855.0, + 293.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 847.0, + 1406.0, + 847.0, + 1406.0, + 884.0, + 293.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 877.0, + 439.0, + 877.0, + 439.0, + 913.0, + 295.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1404.0, + 1941.0, + 1404.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2007.0, + 291.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1408.0, + 2002.0, + 1408.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 423.0, + 1300.0, + 423.0, + 1300.0, + 456.0, + 294.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 423.0, + 1405.0, + 423.0, + 1405.0, + 456.0, + 1354.0, + 456.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 451.0, + 598.0, + 451.0, + 598.0, + 488.0, + 293.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 661.0, + 451.0, + 1405.0, + 451.0, + 1405.0, + 488.0, + 661.0, + 488.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 483.0, + 1405.0, + 483.0, + 1405.0, + 519.0, + 294.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 516.0, + 1402.0, + 516.0, + 1402.0, + 546.0, + 296.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 544.0, + 1406.0, + 544.0, + 1406.0, + 580.0, + 293.0, + 580.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 572.0, + 516.0, + 572.0, + 516.0, + 610.0, + 293.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 572.0, + 1355.0, + 572.0, + 1355.0, + 610.0, + 569.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 572.0, + 1407.0, + 572.0, + 1407.0, + 610.0, + 1404.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 606.0, + 1406.0, + 606.0, + 1406.0, + 639.0, + 293.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 635.0, + 1265.0, + 635.0, + 1265.0, + 669.0, + 295.0, + 669.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 888, + 1404, + 888, + 1404, + 1314, + 298, + 1314 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 299, + 748, + 1403, + 748, + 1403, + 871, + 299, + 871 + ], + "score": 0.97 + }, + { + "category_id": 3, + "poly": [ + 595, + 235, + 1103, + 235, + 1103, + 567, + 595, + 567 + ], + "score": 0.969 + }, + { + "category_id": 4, + "poly": [ + 297, + 604, + 1403, + 604, + 1403, + 691, + 297, + 691 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1445, + 667, + 1445, + 667, + 1476, + 299, + 1476 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 298, + 1337, + 1053, + 1337, + 1053, + 1373, + 298, + 1373 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.844 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.842 + }, + { + "category_id": 1, + "poly": [ + 361, + 1504, + 1406, + 1504, + 1406, + 2034, + 361, + 2034 + ], + "score": 0.814 + }, + { + "category_id": 1, + "poly": [ + 305, + 1395, + 789, + 1395, + 789, + 1427, + 305, + 1427 + ], + "score": 0.539 + }, + { + "category_id": 0, + "poly": [ + 305, + 1395, + 789, + 1395, + 789, + 1427, + 305, + 1427 + ], + "score": 0.387 + }, + { + "category_id": 13, + "poly": [ + 616, + 921, + 639, + 921, + 639, + 946, + 616, + 946 + ], + "score": 0.62, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 475, + 662, + 522, + 662, + 522, + 689, + 475, + 689 + ], + "score": 0.53, + "latex": "1 0 \\mathrm { m }" + }, + { + "category_id": 13, + "poly": [ + 932, + 609, + 953, + 609, + 953, + 631, + 932, + 631 + ], + "score": 0.48, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 890, + 606, + 953, + 606, + 953, + 632, + 890, + 632 + ], + "score": 0.47, + "latex": "\\mathrm { M T } +" + }, + { + "category_id": 15, + "poly": [ + 745.0, + 236.0, + 997.0, + 236.0, + 997.0, + 260.0, + 745.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 257.0, + 647.0, + 257.0, + 647.0, + 282.0, + 613.0, + 282.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 294.0, + 622.0, + 294.0, + 622.0, + 495.0, + 593.0, + 495.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 297.0, + 646.0, + 297.0, + 646.0, + 322.0, + 612.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 337.0, + 644.0, + 337.0, + 644.0, + 361.0, + 614.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 377.0, + 645.0, + 377.0, + 645.0, + 399.0, + 614.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 418.0, + 645.0, + 418.0, + 645.0, + 441.0, + 615.0, + 441.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 457.0, + 644.0, + 457.0, + 644.0, + 480.0, + 614.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 685.0, + 462.0, + 738.0, + 462.0, + 738.0, + 484.0, + 685.0, + 484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 479.0, + 794.0, + 479.0, + 794.0, + 503.0, + 684.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 497.0, + 648.0, + 497.0, + 648.0, + 519.0, + 615.0, + 519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 683.0, + 498.0, + 746.0, + 498.0, + 746.0, + 521.0, + 683.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 662.0, + 524.0, + 702.0, + 524.0, + 702.0, + 549.0, + 662.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 858.0, + 524.0, + 898.0, + 524.0, + 898.0, + 549.0, + 858.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 523.0, + 1095.0, + 523.0, + 1095.0, + 549.0, + 1059.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 816.0, + 543.0, + 925.0, + 543.0, + 925.0, + 570.0, + 816.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 603.0, + 889.0, + 603.0, + 889.0, + 637.0, + 294.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 954.0, + 603.0, + 1405.0, + 603.0, + 1405.0, + 637.0, + 954.0, + 637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 629.0, + 1407.0, + 629.0, + 1407.0, + 669.0, + 291.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 658.0, + 474.0, + 658.0, + 474.0, + 696.0, + 292.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 658.0, + 672.0, + 658.0, + 672.0, + 696.0, + 523.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1333.0, + 1058.0, + 1333.0, + 1058.0, + 1378.0, + 293.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1395.0, + 793.0, + 1395.0, + 793.0, + 1431.0, + 299.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 885.0, + 1405.0, + 885.0, + 1405.0, + 921.0, + 293.0, + 921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 918.0, + 615.0, + 918.0, + 615.0, + 953.0, + 294.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 918.0, + 1406.0, + 918.0, + 1406.0, + 953.0, + 640.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 947.0, + 1404.0, + 947.0, + 1404.0, + 985.0, + 293.0, + 985.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 980.0, + 1406.0, + 980.0, + 1406.0, + 1015.0, + 294.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1010.0, + 1405.0, + 1010.0, + 1405.0, + 1044.0, + 293.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1038.0, + 1405.0, + 1038.0, + 1405.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1068.0, + 1406.0, + 1068.0, + 1406.0, + 1106.0, + 293.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1100.0, + 1406.0, + 1100.0, + 1406.0, + 1135.0, + 293.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1133.0, + 1405.0, + 1133.0, + 1405.0, + 1164.0, + 293.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1197.0, + 294.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1192.0, + 1406.0, + 1192.0, + 1406.0, + 1226.0, + 293.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1224.0, + 1407.0, + 1224.0, + 1407.0, + 1255.0, + 293.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1253.0, + 1407.0, + 1253.0, + 1407.0, + 1287.0, + 293.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1283.0, + 488.0, + 1283.0, + 488.0, + 1315.0, + 296.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 749.0, + 1405.0, + 749.0, + 1405.0, + 782.0, + 295.0, + 782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 780.0, + 1405.0, + 780.0, + 1405.0, + 813.0, + 295.0, + 813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 808.0, + 1407.0, + 808.0, + 1407.0, + 846.0, + 293.0, + 846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 842.0, + 616.0, + 842.0, + 616.0, + 872.0, + 294.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1444.0, + 669.0, + 1444.0, + 669.0, + 1480.0, + 296.0, + 1480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1503.0, + 1406.0, + 1503.0, + 1406.0, + 1538.0, + 362.0, + 1538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1534.0, + 1406.0, + 1534.0, + 1406.0, + 1568.0, + 394.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1567.0, + 688.0, + 1567.0, + 688.0, + 1595.0, + 394.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1599.0, + 1408.0, + 1599.0, + 1408.0, + 1644.0, + 363.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1635.0, + 1404.0, + 1635.0, + 1404.0, + 1672.0, + 393.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1666.0, + 1406.0, + 1666.0, + 1406.0, + 1704.0, + 392.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1698.0, + 1060.0, + 1698.0, + 1060.0, + 1732.0, + 394.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 1736.0, + 1404.0, + 1736.0, + 1404.0, + 1771.0, + 358.0, + 1771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1769.0, + 1404.0, + 1769.0, + 1404.0, + 1803.0, + 394.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1797.0, + 523.0, + 1797.0, + 523.0, + 1835.0, + 395.0, + 1835.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1839.0, + 1407.0, + 1839.0, + 1407.0, + 1874.0, + 362.0, + 1874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1870.0, + 1406.0, + 1870.0, + 1406.0, + 1907.0, + 392.0, + 1907.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 1898.0, + 1405.0, + 1898.0, + 1405.0, + 1941.0, + 391.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 362.0, + 1942.0, + 1407.0, + 1942.0, + 1407.0, + 1977.0, + 362.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2005.0, + 397.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 2003.0, + 1404.0, + 2003.0, + 1404.0, + 2040.0, + 393.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1395.0, + 793.0, + 1395.0, + 793.0, + 1431.0, + 299.0, + 1431.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1498, + 1405, + 1498, + 1405, + 1863, + 298, + 1863 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1151, + 1404, + 1151, + 1404, + 1428, + 298, + 1428 + ], + "score": 0.984 + }, + { + "category_id": 5, + "poly": [ + 396, + 223, + 1295, + 223, + 1295, + 717, + 396, + 717 + ], + "score": 0.981, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Meta batch size4-1016
Batch size2561
Embedding batch size100-256750
KL penalty0.1
Hidden layers31
Neurons per hidden layer300512
Latent space size58
Policy learning rate3e-41
Value function learning rate3e-4
Context embedding learning rate3e-4
Q-Function learning rate3e-4
Reward scale5.0
RecurrentFalse
" + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1402, + 1942, + 1402, + 2034, + 300, + 2034 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 395, + 870, + 1401, + 870, + 1401, + 993, + 395, + 993 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1020, + 1400, + 1020, + 1400, + 1083, + 299, + 1083 + ], + "score": 0.951 + }, + { + "category_id": 0, + "poly": [ + 300, + 1887, + 1115, + 1887, + 1115, + 1923, + 300, + 1923 + ], + "score": 0.928 + }, + { + "category_id": 0, + "poly": [ + 299, + 1101, + 602, + 1101, + 602, + 1132, + 299, + 1132 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.883 + }, + { + "category_id": 0, + "poly": [ + 301, + 1446, + 678, + 1446, + 678, + 1477, + 301, + 1477 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 6, + "poly": [ + 299, + 755, + 1400, + 755, + 1400, + 849, + 299, + 849 + ], + "score": 0.619 + }, + { + "category_id": 1, + "poly": [ + 299, + 755, + 1400, + 755, + 1400, + 849, + 299, + 849 + ], + "score": 0.31 + }, + { + "category_id": 13, + "poly": [ + 411, + 1650, + 541, + 1650, + 541, + 1682, + 411, + 1682 + ], + "score": 0.89, + "latex": "g _ { 0 } = 0 . 0 7 5" + }, + { + "category_id": 13, + "poly": [ + 502, + 1711, + 675, + 1711, + 675, + 1742, + 502, + 1742 + ], + "score": 0.86, + "latex": "i = 2 , 6 , 1 0 , . . . )" + }, + { + "category_id": 13, + "poly": [ + 1241, + 1654, + 1267, + 1654, + 1267, + 1682, + 1241, + 1682 + ], + "score": 0.85, + "latex": "g _ { i }" + }, + { + "category_id": 13, + "poly": [ + 624, + 1741, + 811, + 1741, + 811, + 1772, + 624, + 1772 + ], + "score": 0.82, + "latex": "i = 4 , 1 2 , 2 0 , . . . )" + }, + { + "category_id": 13, + "poly": [ + 552, + 1650, + 827, + 1650, + 827, + 1682, + 552, + 1682 + ], + "score": 0.75, + "latex": "g _ { 2 } = 0 . 1 5 , . . . , g _ { 3 9 } = 3 . 0" + }, + { + "category_id": 13, + "poly": [ + 526, + 1684, + 540, + 1684, + 540, + 1708, + 526, + 1708 + ], + "score": 0.73, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1387, + 1651, + 1401, + 1651, + 1401, + 1677, + 1387, + 1677 + ], + "score": 0.63, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 552, + 1650, + 667, + 1650, + 667, + 1681, + 552, + 1681 + ], + "score": 0.41, + "latex": "g _ { 2 } = 0 . 1 5" + }, + { + "category_id": 13, + "poly": [ + 715, + 1650, + 827, + 1650, + 827, + 1681, + 715, + 1681 + ], + "score": 0.28, + "latex": "g _ { 3 9 } = 3 . 0" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1886.0, + 1119.0, + 1886.0, + 1119.0, + 1926.0, + 293.0, + 1926.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1098.0, + 606.0, + 1098.0, + 606.0, + 1137.0, + 295.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1446.0, + 679.0, + 1446.0, + 679.0, + 1479.0, + 297.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 792.0, + 293.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 1404.0, + 786.0, + 1404.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 818.0, + 1237.0, + 818.0, + 1237.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1494.0, + 1406.0, + 1494.0, + 1406.0, + 1534.0, + 292.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1528.0, + 1405.0, + 1528.0, + 1405.0, + 1562.0, + 295.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1559.0, + 1403.0, + 1559.0, + 1403.0, + 1593.0, + 295.0, + 1593.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1587.0, + 1407.0, + 1587.0, + 1407.0, + 1624.0, + 293.0, + 1624.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1618.0, + 1406.0, + 1618.0, + 1406.0, + 1658.0, + 292.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1648.0, + 410.0, + 1648.0, + 410.0, + 1689.0, + 292.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1648.0, + 551.0, + 1648.0, + 551.0, + 1689.0, + 542.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1648.0, + 1240.0, + 1648.0, + 1240.0, + 1689.0, + 828.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1268.0, + 1648.0, + 1386.0, + 1648.0, + 1386.0, + 1689.0, + 1268.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1648.0, + 1407.0, + 1648.0, + 1407.0, + 1689.0, + 1402.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1678.0, + 525.0, + 1678.0, + 525.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1678.0, + 1405.0, + 1678.0, + 1405.0, + 1717.0, + 541.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1711.0, + 501.0, + 1711.0, + 501.0, + 1745.0, + 295.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 676.0, + 1711.0, + 1403.0, + 1711.0, + 1403.0, + 1745.0, + 676.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1737.0, + 623.0, + 1737.0, + 623.0, + 1779.0, + 292.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 1737.0, + 1406.0, + 1737.0, + 1406.0, + 1779.0, + 812.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1770.0, + 1406.0, + 1770.0, + 1406.0, + 1805.0, + 295.0, + 1805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1800.0, + 1405.0, + 1800.0, + 1405.0, + 1839.0, + 292.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1831.0, + 585.0, + 1831.0, + 585.0, + 1868.0, + 293.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1153.0, + 1405.0, + 1153.0, + 1405.0, + 1186.0, + 297.0, + 1186.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1179.0, + 1405.0, + 1179.0, + 1405.0, + 1220.0, + 293.0, + 1220.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1211.0, + 1406.0, + 1211.0, + 1406.0, + 1249.0, + 293.0, + 1249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1244.0, + 1405.0, + 1244.0, + 1405.0, + 1276.0, + 296.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1275.0, + 1405.0, + 1275.0, + 1405.0, + 1308.0, + 294.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1305.0, + 1405.0, + 1305.0, + 1405.0, + 1338.0, + 296.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1337.0, + 1405.0, + 1337.0, + 1405.0, + 1369.0, + 296.0, + 1369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1367.0, + 1404.0, + 1367.0, + 1404.0, + 1399.0, + 296.0, + 1399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1397.0, + 1278.0, + 1397.0, + 1278.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1941.0, + 1406.0, + 1941.0, + 1406.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1972.0, + 1407.0, + 1972.0, + 1407.0, + 2008.0, + 293.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2004.0, + 1403.0, + 2004.0, + 1403.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 869.0, + 1405.0, + 869.0, + 1405.0, + 906.0, + 393.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 902.0, + 1404.0, + 902.0, + 1404.0, + 935.0, + 393.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 930.0, + 1404.0, + 930.0, + 1404.0, + 966.0, + 393.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 965.0, + 817.0, + 965.0, + 817.0, + 994.0, + 396.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1017.0, + 1405.0, + 1017.0, + 1405.0, + 1055.0, + 294.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1048.0, + 846.0, + 1048.0, + 846.0, + 1089.0, + 294.0, + 1089.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 792.0, + 293.0, + 792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 786.0, + 1404.0, + 786.0, + 1404.0, + 820.0, + 294.0, + 820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 818.0, + 1237.0, + 818.0, + 1237.0, + 852.0, + 295.0, + 852.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 4, + "poly": [ + 296, + 1814, + 1406, + 1814, + 1406, + 1909, + 296, + 1909 + ], + "score": 0.955 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.857 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.647 + }, + { + "category_id": 3, + "poly": [ + 305, + 310, + 1389, + 310, + 1389, + 1788, + 305, + 1788 + ], + "score": 0.453 + }, + { + "category_id": 2, + "poly": [ + 298, + 76, + 854, + 76, + 854, + 104, + 298, + 104 + ], + "score": 0.264 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1815.0, + 1404.0, + 1815.0, + 1404.0, + 1849.0, + 295.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1844.0, + 1406.0, + 1844.0, + 1406.0, + 1880.0, + 293.0, + 1880.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1877.0, + 1010.0, + 1877.0, + 1010.0, + 1911.0, + 295.0, + 1911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 2083.0, + 871.0, + 2083.0, + 871.0, + 2123.0, + 829.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 712.0, + 352.0, + 1040.0, + 352.0, + 1040.0, + 378.0, + 712.0, + 378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 603.0, + 370.0, + 652.0, + 370.0, + 652.0, + 398.0, + 603.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 605.0, + 415.0, + 652.0, + 415.0, + 652.0, + 438.0, + 605.0, + 438.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 456.0, + 650.0, + 456.0, + 650.0, + 480.0, + 612.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 457.0, + 613.0, + 457.0, + 613.0, + 579.0, + 586.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 497.0, + 650.0, + 497.0, + 650.0, + 521.0, + 613.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 539.0, + 652.0, + 539.0, + 652.0, + 564.0, + 613.0, + 564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 613.0, + 582.0, + 652.0, + 582.0, + 652.0, + 605.0, + 613.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 625.0, + 652.0, + 625.0, + 652.0, + 646.0, + 630.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 654.0, + 686.0, + 654.0, + 686.0, + 679.0, + 650.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 733.0, + 654.0, + 770.0, + 654.0, + 770.0, + 679.0, + 733.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 654.0, + 854.0, + 654.0, + 854.0, + 679.0, + 817.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 901.0, + 654.0, + 934.0, + 654.0, + 934.0, + 678.0, + 901.0, + 678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 654.0, + 1020.0, + 654.0, + 1020.0, + 679.0, + 983.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 654.0, + 1103.0, + 654.0, + 1103.0, + 679.0, + 1067.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 791.0, + 669.0, + 961.0, + 669.0, + 961.0, + 696.0, + 791.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 712.0, + 810.0, + 712.0, + 810.0, + 738.0, + 381.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 714.0, + 1370.0, + 714.0, + 1370.0, + 740.0, + 946.0, + 740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 737.0, + 374.0, + 737.0, + 374.0, + 756.0, + 354.0, + 756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 913.0, + 733.0, + 934.0, + 733.0, + 934.0, + 755.0, + 913.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1025.0, + 751.0, + 1071.0, + 751.0, + 1071.0, + 768.0, + 1025.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 776.0, + 373.0, + 776.0, + 373.0, + 799.0, + 326.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 776.0, + 494.0, + 776.0, + 494.0, + 789.0, + 472.0, + 789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 774.0, + 702.0, + 774.0, + 702.0, + 786.0, + 682.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 788.0, + 936.0, + 788.0, + 936.0, + 816.0, + 886.0, + 816.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 816.0, + 374.0, + 816.0, + 374.0, + 941.0, + 306.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 816.0, + 934.0, + 816.0, + 934.0, + 941.0, + 862.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 901.0, + 373.0, + 901.0, + 373.0, + 924.0, + 332.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 904.0, + 934.0, + 904.0, + 934.0, + 927.0, + 891.0, + 927.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 941.0, + 376.0, + 941.0, + 376.0, + 968.0, + 326.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 960.0, + 938.0, + 960.0, + 938.0, + 988.0, + 886.0, + 988.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 983.0, + 373.0, + 983.0, + 373.0, + 1006.0, + 327.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 371.0, + 1014.0, + 411.0, + 1014.0, + 411.0, + 1044.0, + 371.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 1016.0, + 490.0, + 1016.0, + 490.0, + 1042.0, + 455.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 1016.0, + 575.0, + 1016.0, + 575.0, + 1041.0, + 538.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1016.0, + 657.0, + 1016.0, + 657.0, + 1041.0, + 618.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 1014.0, + 741.0, + 1014.0, + 741.0, + 1044.0, + 701.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1016.0, + 822.0, + 1016.0, + 822.0, + 1042.0, + 786.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 933.0, + 1016.0, + 968.0, + 1016.0, + 968.0, + 1042.0, + 933.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1013.0, + 1014.0, + 1054.0, + 1014.0, + 1054.0, + 1044.0, + 1013.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1016.0, + 1135.0, + 1016.0, + 1135.0, + 1041.0, + 1098.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1016.0, + 1217.0, + 1016.0, + 1217.0, + 1041.0, + 1182.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 1014.0, + 1303.0, + 1014.0, + 1303.0, + 1044.0, + 1262.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1014.0, + 1385.0, + 1014.0, + 1385.0, + 1044.0, + 1345.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1027.0, + 684.0, + 1027.0, + 684.0, + 1062.0, + 509.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1069.0, + 1027.0, + 1246.0, + 1027.0, + 1246.0, + 1062.0, + 1069.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 396.0, + 1075.0, + 795.0, + 1075.0, + 795.0, + 1102.0, + 396.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1075.0, + 1348.0, + 1075.0, + 1348.0, + 1102.0, + 955.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1103.0, + 373.0, + 1103.0, + 373.0, + 1131.0, + 322.0, + 1131.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1126.0, + 923.0, + 1126.0, + 923.0, + 1151.0, + 884.0, + 1151.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1149.0, + 373.0, + 1149.0, + 373.0, + 1304.0, + 304.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 1205.0, + 798.0, + 1205.0, + 798.0, + 1217.0, + 776.0, + 1217.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 848.0, + 1158.0, + 944.0, + 1158.0, + 944.0, + 1323.0, + 848.0, + 1323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1130.0, + 1141.0, + 1183.0, + 1141.0, + 1183.0, + 1169.0, + 1130.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1245.0, + 371.0, + 1245.0, + 371.0, + 1269.0, + 332.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1268.0, + 1106.0, + 1268.0, + 1106.0, + 1281.0, + 1084.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1292.0, + 371.0, + 1292.0, + 371.0, + 1317.0, + 332.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 882.0, + 1284.0, + 924.0, + 1284.0, + 924.0, + 1314.0, + 882.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.0, + 1294.0, + 1007.0, + 1294.0, + 1007.0, + 1312.0, + 983.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1342.0, + 371.0, + 1342.0, + 371.0, + 1363.0, + 351.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1343.0, + 923.0, + 1343.0, + 923.0, + 1363.0, + 903.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1379.0, + 411.0, + 1379.0, + 411.0, + 1402.0, + 368.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 1379.0, + 465.0, + 1379.0, + 465.0, + 1402.0, + 418.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 469.0, + 1379.0, + 514.0, + 1379.0, + 514.0, + 1402.0, + 469.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1379.0, + 569.0, + 1379.0, + 569.0, + 1402.0, + 516.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 573.0, + 1379.0, + 618.0, + 1379.0, + 618.0, + 1402.0, + 573.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 623.0, + 1379.0, + 670.0, + 1379.0, + 670.0, + 1402.0, + 623.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 679.0, + 1379.0, + 723.0, + 1379.0, + 723.0, + 1402.0, + 679.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 728.0, + 1378.0, + 776.0, + 1378.0, + 776.0, + 1406.0, + 728.0, + 1406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1379.0, + 825.0, + 1379.0, + 825.0, + 1402.0, + 778.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 919.0, + 1379.0, + 963.0, + 1379.0, + 963.0, + 1402.0, + 919.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1379.0, + 1015.0, + 1379.0, + 1015.0, + 1402.0, + 970.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1024.0, + 1379.0, + 1067.0, + 1379.0, + 1067.0, + 1402.0, + 1024.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1379.0, + 1175.0, + 1379.0, + 1175.0, + 1402.0, + 1074.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1379.0, + 1227.0, + 1379.0, + 1227.0, + 1402.0, + 1178.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1237.0, + 1379.0, + 1281.0, + 1379.0, + 1281.0, + 1402.0, + 1237.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1288.0, + 1379.0, + 1385.0, + 1379.0, + 1385.0, + 1402.0, + 1288.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 509.0, + 1393.0, + 679.0, + 1393.0, + 679.0, + 1419.0, + 509.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1394.0, + 1237.0, + 1394.0, + 1237.0, + 1420.0, + 1067.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 364.0, + 1439.0, + 810.0, + 1439.0, + 810.0, + 1465.0, + 364.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1439.0, + 1370.0, + 1439.0, + 1370.0, + 1465.0, + 929.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1453.0, + 923.0, + 1453.0, + 923.0, + 1478.0, + 884.0, + 1478.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 1478.0, + 753.0, + 1478.0, + 753.0, + 1496.0, + 714.0, + 1496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1476.0, + 1175.0, + 1476.0, + 1175.0, + 1493.0, + 1146.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1496.0, + 363.0, + 1496.0, + 363.0, + 1519.0, + 322.0, + 1519.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1491.0, + 923.0, + 1491.0, + 923.0, + 1516.0, + 884.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 846.0, + 1528.0, + 935.0, + 1528.0, + 935.0, + 1683.0, + 846.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1529.0, + 923.0, + 1529.0, + 923.0, + 1552.0, + 884.0, + 1552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1542.0, + 334.0, + 1542.0, + 334.0, + 1666.0, + 306.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1550.0, + 363.0, + 1550.0, + 363.0, + 1575.0, + 324.0, + 1575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1567.0, + 921.0, + 1567.0, + 921.0, + 1591.0, + 884.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1603.0, + 363.0, + 1603.0, + 363.0, + 1633.0, + 322.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1605.0, + 921.0, + 1605.0, + 921.0, + 1629.0, + 884.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1642.0, + 514.0, + 1642.0, + 514.0, + 1654.0, + 501.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 1631.0, + 985.0, + 1631.0, + 985.0, + 1708.0, + 951.0, + 1708.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1660.0, + 361.0, + 1660.0, + 361.0, + 1685.0, + 324.0, + 1685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 884.0, + 1680.0, + 923.0, + 1680.0, + 923.0, + 1705.0, + 884.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 341.0, + 1720.0, + 363.0, + 1720.0, + 363.0, + 1739.0, + 341.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 903.0, + 1721.0, + 923.0, + 1721.0, + 923.0, + 1741.0, + 903.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 1741.0, + 396.0, + 1741.0, + 396.0, + 1766.0, + 363.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 445.0, + 1741.0, + 480.0, + 1741.0, + 480.0, + 1766.0, + 445.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 1741.0, + 563.0, + 1741.0, + 563.0, + 1764.0, + 527.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 612.0, + 1741.0, + 647.0, + 1741.0, + 647.0, + 1764.0, + 612.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 694.0, + 1741.0, + 729.0, + 1741.0, + 729.0, + 1766.0, + 694.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1741.0, + 813.0, + 1741.0, + 813.0, + 1766.0, + 778.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 921.0, + 1741.0, + 958.0, + 1741.0, + 958.0, + 1766.0, + 921.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1741.0, + 1040.0, + 1741.0, + 1040.0, + 1766.0, + 1005.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1741.0, + 1125.0, + 1741.0, + 1125.0, + 1766.0, + 1089.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1173.0, + 1741.0, + 1210.0, + 1741.0, + 1210.0, + 1764.0, + 1173.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1257.0, + 1741.0, + 1294.0, + 1741.0, + 1294.0, + 1766.0, + 1257.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1341.0, + 1741.0, + 1377.0, + 1741.0, + 1377.0, + 1766.0, + 1341.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 501.0, + 1756.0, + 670.0, + 1756.0, + 670.0, + 1782.0, + 501.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1064.0, + 1756.0, + 1234.0, + 1756.0, + 1234.0, + 1782.0, + 1064.0, + 1782.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 400.5, + 1095.0, + 400.5, + 1095.0, + 431.5, + 855.0, + 431.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 441.5, + 860.0, + 441.5, + 860.0, + 463.0, + 785.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 711.0, + 492.5, + 770.0, + 492.5, + 770.0, + 530.5, + 711.0, + 530.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 653.0, + 532.0, + 750.0, + 532.0, + 750.0, + 566.5, + 653.0, + 566.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1154.25, + 754.5, + 1204.25, + 754.5, + 1204.25, + 772.5, + 1154.25, + 772.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 592.0, + 771.0, + 624.0, + 771.0, + 624.0, + 789.5, + 592.0, + 789.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 858.5, + 371.0, + 858.5, + 371.0, + 881.5, + 331.0, + 881.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.25, + 845.5, + 1062.25, + 845.5, + 1062.25, + 856.5, + 1037.25, + 856.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1160.25, + 1109.0, + 1375.25, + 1109.0, + 1375.25, + 1151.5, + 1160.25, + 1151.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 983.25, + 1193.5, + 1160.25, + 1193.5, + 1160.25, + 1229.5, + 983.25, + 1229.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1251.0, + 1241.0, + 1361.0, + 1241.0, + 1361.0, + 1274.0, + 1251.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.0, + 1257.5, + 1203.0, + 1257.5, + 1203.0, + 1276.0, + 1155.0, + 1276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1278.5, + 1242.0, + 1278.5, + 1242.0, + 1298.5, + 1219.0, + 1298.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 404, + 1414, + 1286, + 1414, + 1286, + 1816, + 404, + 1816 + ], + "score": 0.979, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Value learning rate1e-4*1e-6
Policy learning rate1e-41
Value fine-tuning learning rate1e-41e-6
Policy fine-tuning learning rate1e-31
Train outer loop batch size256
Fine-tuning batch size2561
Number of hidden layers31
Neurons per hidden layer100300
Task batch size51
Max advantage clip20
" + }, + { + "category_id": 3, + "poly": [ + 305, + 341, + 1387, + 341, + 1387, + 1047, + 305, + 1047 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 298, + 1081, + 1404, + 1081, + 1404, + 1177, + 298, + 1177 + ], + "score": 0.956 + }, + { + "category_id": 2, + "poly": [ + 298, + 75, + 854, + 75, + 854, + 104, + 298, + 104 + ], + "score": 0.839 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.775 + }, + { + "category_id": 6, + "poly": [ + 290, + 1854, + 1404, + 1854, + 1404, + 1918, + 290, + 1918 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 290, + 1854, + 1404, + 1854, + 1404, + 1918, + 290, + 1918 + ], + "score": 0.15 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 852, + 76, + 852, + 104, + 299, + 104 + ], + "score": 0.14 + }, + { + "category_id": 13, + "poly": [ + 955, + 1858, + 979, + 1858, + 979, + 1883, + 955, + 1883 + ], + "score": 0.78, + "latex": "^ +" + }, + { + "category_id": 15, + "poly": [ + 402.0, + 340.0, + 805.0, + 340.0, + 805.0, + 370.0, + 402.0, + 370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 967.0, + 344.0, + 1361.0, + 344.0, + 1361.0, + 368.0, + 967.0, + 368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 358.0, + 946.0, + 358.0, + 946.0, + 379.0, + 885.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 372.0, + 386.0, + 372.0, + 386.0, + 393.0, + 325.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 885.0, + 409.0, + 947.0, + 409.0, + 947.0, + 435.0, + 885.0, + 435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 423.0, + 386.0, + 423.0, + 386.0, + 445.0, + 326.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 448.0, + 386.0, + 448.0, + 386.0, + 569.0, + 308.0, + 569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 448.0, + 946.0, + 448.0, + 946.0, + 568.0, + 868.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 525.0, + 386.0, + 525.0, + 386.0, + 547.0, + 326.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 887.0, + 519.0, + 946.0, + 519.0, + 946.0, + 540.0, + 887.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 334.0, + 576.0, + 386.0, + 576.0, + 386.0, + 597.0, + 334.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 573.0, + 946.0, + 573.0, + 946.0, + 595.0, + 894.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1262.0, + 620.0, + 1282.0, + 620.0, + 1282.0, + 635.0, + 1262.0, + 635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 630.0, + 386.0, + 630.0, + 386.0, + 646.0, + 370.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 629.0, + 946.0, + 629.0, + 946.0, + 646.0, + 930.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 650.0, + 411.0, + 650.0, + 411.0, + 668.0, + 397.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 652.0, + 489.0, + 652.0, + 489.0, + 664.0, + 479.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 649.0, + 573.0, + 649.0, + 573.0, + 666.0, + 558.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 647.0, + 653.0, + 647.0, + 653.0, + 666.0, + 638.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 650.0, + 731.0, + 650.0, + 731.0, + 666.0, + 718.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 649.0, + 813.0, + 649.0, + 813.0, + 668.0, + 798.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 647.0, + 974.0, + 647.0, + 974.0, + 669.0, + 956.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 650.0, + 1052.0, + 650.0, + 1052.0, + 666.0, + 1037.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1117.0, + 647.0, + 1135.0, + 647.0, + 1135.0, + 669.0, + 1117.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1198.0, + 649.0, + 1214.0, + 649.0, + 1214.0, + 666.0, + 1198.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1278.0, + 650.0, + 1293.0, + 650.0, + 1293.0, + 666.0, + 1278.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1359.0, + 649.0, + 1373.0, + 649.0, + 1373.0, + 668.0, + 1359.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 523.0, + 663.0, + 686.0, + 663.0, + 686.0, + 686.0, + 523.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1081.0, + 659.0, + 1248.0, + 659.0, + 1248.0, + 689.0, + 1081.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 358.0, + 703.0, + 808.0, + 703.0, + 808.0, + 732.0, + 358.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 704.0, + 1352.0, + 704.0, + 1352.0, + 732.0, + 910.0, + 732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 729.0, + 356.0, + 729.0, + 356.0, + 753.0, + 322.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 727.0, + 903.0, + 727.0, + 903.0, + 751.0, + 869.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 781.0, + 357.0, + 781.0, + 357.0, + 805.0, + 324.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 780.0, + 903.0, + 780.0, + 903.0, + 804.0, + 869.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 776.0, + 1027.0, + 776.0, + 1027.0, + 788.0, + 1005.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 819.0, + 358.0, + 819.0, + 358.0, + 923.0, + 308.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 819.0, + 903.0, + 819.0, + 903.0, + 923.0, + 852.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 882.0, + 358.0, + 882.0, + 358.0, + 909.0, + 323.0, + 909.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 868.0, + 878.0, + 903.0, + 878.0, + 903.0, + 908.0, + 868.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 936.0, + 357.0, + 936.0, + 357.0, + 960.0, + 324.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 936.0, + 903.0, + 936.0, + 903.0, + 960.0, + 869.0, + 960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 989.0, + 357.0, + 989.0, + 357.0, + 1011.0, + 324.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 989.0, + 903.0, + 989.0, + 903.0, + 1011.0, + 869.0, + 1011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 1011.0, + 383.0, + 1011.0, + 383.0, + 1029.0, + 368.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 454.0, + 1014.0, + 464.0, + 1014.0, + 464.0, + 1026.0, + 454.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 534.0, + 1010.0, + 549.0, + 1010.0, + 549.0, + 1029.0, + 534.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 619.0, + 1010.0, + 634.0, + 1010.0, + 634.0, + 1029.0, + 619.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 702.0, + 1011.0, + 717.0, + 1011.0, + 717.0, + 1029.0, + 702.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 786.0, + 1011.0, + 800.0, + 1011.0, + 800.0, + 1029.0, + 786.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 912.0, + 1011.0, + 927.0, + 1011.0, + 927.0, + 1029.0, + 912.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1000.0, + 1014.0, + 1010.0, + 1014.0, + 1010.0, + 1028.0, + 1000.0, + 1028.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1082.0, + 1011.0, + 1097.0, + 1011.0, + 1097.0, + 1029.0, + 1082.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1166.0, + 1010.0, + 1181.0, + 1010.0, + 1181.0, + 1029.0, + 1166.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1250.0, + 1013.0, + 1266.0, + 1013.0, + 1266.0, + 1029.0, + 1250.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 1011.0, + 1348.0, + 1011.0, + 1348.0, + 1029.0, + 1335.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1024.0, + 666.0, + 1024.0, + 666.0, + 1048.0, + 502.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 1023.0, + 1212.0, + 1023.0, + 1212.0, + 1047.0, + 1048.0, + 1047.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1080.0, + 1405.0, + 1080.0, + 1405.0, + 1118.0, + 294.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1113.0, + 1402.0, + 1113.0, + 1402.0, + 1147.0, + 294.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1145.0, + 522.0, + 1145.0, + 522.0, + 1180.0, + 294.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 72.0, + 857.0, + 72.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 954.0, + 1853.0, + 954.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1853.0, + 1406.0, + 1853.0, + 1406.0, + 1889.0, + 980.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 949.0, + 1882.0, + 949.0, + 1921.0, + 293.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1853.0, + 954.0, + 1853.0, + 954.0, + 1889.0, + 294.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1853.0, + 1406.0, + 1853.0, + 1406.0, + 1889.0, + 980.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 949.0, + 1882.0, + 949.0, + 1921.0, + 293.0, + 1921.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 351, + 224, + 1342, + 224, + 1342, + 778, + 351, + 778 + ], + "score": 0.983, + "html": "
ParameterStandard ConfigurationMeta-World
OptimizerAdam
Auxiliary advantage loss coefficient1e-21e-3
Outer value learning rate1e-51e-6
Outer policy learning rate1e-4
Inner policy learning rate1e-3 (learned)1e-2 (learned)
Inner value learning rate1e-3 (learned)1e-4 (learned)
Train outer loop batch size2561
Train adaptation batch size256256
Eval adaptation batch size2561
Number of adaptation steps11
Learning rate for learnable learning rate1e-31
Number of hidden layers31
Neurons per hidden layer100300
Task batch size510
Max advantage clip201
AWR policy temperature11
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1098, + 1404, + 1098, + 1404, + 1315, + 297, + 1315 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1381, + 1405, + 1381, + 1405, + 1505, + 298, + 1505 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 960, + 1404, + 960, + 1404, + 1083, + 298, + 1083 + ], + "score": 0.974 + }, + { + "category_id": 0, + "poly": [ + 299, + 1332, + 611, + 1332, + 611, + 1364, + 299, + 1364 + ], + "score": 0.89 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 865, + 2088, + 865, + 2113, + 835, + 2113 + ], + "score": 0.847 + }, + { + "category_id": 1, + "poly": [ + 297, + 816, + 1405, + 816, + 1405, + 940, + 297, + 940 + ], + "score": 0.738 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 852, + 76, + 852, + 104, + 300, + 104 + ], + "score": 0.689 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 854, + 76, + 854, + 104, + 299, + 104 + ], + "score": 0.285 + }, + { + "category_id": 6, + "poly": [ + 297, + 816, + 1405, + 816, + 1405, + 940, + 297, + 940 + ], + "score": 0.183 + }, + { + "category_id": 13, + "poly": [ + 922, + 992, + 996, + 992, + 996, + 1023, + 922, + 1023 + ], + "score": 0.61, + "latex": "\\mathrm { T D } ( \\lambda )" + }, + { + "category_id": 13, + "poly": [ + 730, + 878, + 851, + 878, + 851, + 907, + 730, + 907 + ], + "score": 0.58, + "latex": "1 0 0 { - } 1 0 0 0 \\mathrm { x }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1333.0, + 614.0, + 1333.0, + 614.0, + 1364.0, + 296.0, + 1364.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 856.0, + 73.0, + 856.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 73.0, + 857.0, + 73.0, + 857.0, + 108.0, + 297.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 817.0, + 1403.0, + 817.0, + 1403.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 881.0, + 294.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 877.0, + 729.0, + 877.0, + 729.0, + 913.0, + 294.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 877.0, + 1405.0, + 877.0, + 1405.0, + 913.0, + 852.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 908.0, + 1231.0, + 908.0, + 1231.0, + 943.0, + 292.0, + 943.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1098.0, + 1405.0, + 1098.0, + 1405.0, + 1135.0, + 294.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1131.0, + 1405.0, + 1131.0, + 1405.0, + 1166.0, + 295.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1157.0, + 1405.0, + 1157.0, + 1405.0, + 1199.0, + 292.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1226.0, + 294.0, + 1226.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1219.0, + 1404.0, + 1219.0, + 1404.0, + 1256.0, + 294.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1250.0, + 1404.0, + 1250.0, + 1404.0, + 1287.0, + 294.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1281.0, + 893.0, + 1281.0, + 893.0, + 1317.0, + 294.0, + 1317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1379.0, + 1410.0, + 1379.0, + 1410.0, + 1416.0, + 292.0, + 1416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1410.0, + 1410.0, + 1410.0, + 1410.0, + 1448.0, + 293.0, + 1448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1445.0, + 1403.0, + 1445.0, + 1403.0, + 1475.0, + 296.0, + 1475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1473.0, + 976.0, + 1473.0, + 976.0, + 1506.0, + 294.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 960.0, + 1406.0, + 960.0, + 1406.0, + 996.0, + 293.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 991.0, + 921.0, + 991.0, + 921.0, + 1026.0, + 292.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 997.0, + 991.0, + 1406.0, + 991.0, + 1406.0, + 1026.0, + 997.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1024.0, + 1406.0, + 1024.0, + 1406.0, + 1056.0, + 296.0, + 1056.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1052.0, + 586.0, + 1052.0, + 586.0, + 1084.0, + 295.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 817.0, + 1403.0, + 817.0, + 1403.0, + 850.0, + 294.0, + 850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 847.0, + 1405.0, + 847.0, + 1405.0, + 881.0, + 294.0, + 881.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 877.0, + 729.0, + 877.0, + 729.0, + 913.0, + 294.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 852.0, + 877.0, + 1405.0, + 877.0, + 1405.0, + 913.0, + 852.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 908.0, + 1231.0, + 908.0, + 1231.0, + 943.0, + 292.0, + 943.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 21, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/Skl4mRNYDr/Skl4mRNYDr.md b/parse/train/Skl4mRNYDr/Skl4mRNYDr.md new file mode 100644 index 0000000000000000000000000000000000000000..4303c3436ad794b09563a581b8a308e6fbd7dfbf --- /dev/null +++ b/parse/train/Skl4mRNYDr/Skl4mRNYDr.md @@ -0,0 +1,449 @@ +# DEEP IMITATIVE MODELS FOR FLEXIBLE INFERENCE, PLANNING, AND CONTROL + +Nicholas Rhinehart UC Berkeley nrhinehart@berkeley.edu + +Rowan McAllister UC Berkeley rmcallister@berkeley.edu + +Sergey Levine +UC Berkeley +svlevine@berkeley.edu + +# ABSTRACT + +Imitation Learning $\left( \operatorname { I L } \right)$ is an appealing approach to learn desirable autonomous behavior. However, directing IL to achieve arbitrary goals is difficult. In contrast, planning-based algorithms use dynamics models and reward functions to achieve goals. Yet, reward functions that evoke desirable behavior are often difficult to specify. In this paper, we propose “Imitative Models” to combine the benefits of $\mathrm { I L }$ and goal-directed planning. Imitative Models are probabilistic predictive models of desirable behavior able to plan interpretable expert-like trajectories to achieve specified goals. We derive families of flexible goal objectives, including constrained goal regions, unconstrained goal sets, and energy-based goals. We show that our method can use these objectives to successfully direct behavior. Our method substantially outperforms six IL approaches and a planning-based approach in a dynamic simulated autonomous driving task, and is efficiently learned from expert demonstrations without online data collection. We also show our approach is robust to poorly specified goals, such as goals on the wrong side of the road. + +# 1 INTRODUCTION + +Imitation learning (IL) is a framework for learning a model to mimic behavior. At test-time, the model pursues its best-guess of desirable behavior. By letting the model choose its own behavior, we cannot direct it to achieve different goals. While work has augmented IL with goal conditioning (Dosovitskiy & Koltun, 2016; Codevilla et al., 2018), it requires goals to be specified during training, explicit goal labels, and are simple (e.g., turning). In contrast, we seek flexibility to achieve general goals for which we have no demonstrations. + +In contrast to IL, planning-based algorithms like model-based reinforcement learning (MBRL) methods do not require expert demonstrations. MBRL can adapt to new tasks specified through reward functions (Kuvayev & Sutton, 1996; Deisenroth & Rasmussen, 2011). The “model” is a dynamics model, used to plan under the user-supplied reward function. Planning enables these approaches to perform new tasks at test-time. The key drawback is that these models learn dynamics of possible behavior rather than dynamics of desirable behavior. This means that the responsibility of evoking desirable behavior is entirely deferred to engineering the input reward function. Designing reward functions that cause MBRL to evoke complex, desirable behavior is difficult when the space of possible undesirable behaviors is large. In order to succeed, the rewards cannot lead the model astray towards observations significantly different than those with which the model was trained. + +Our goal is to devise an algorithm that combines the advantages of MBRL and IL by offering MBRL’s flexibility to achieve new tasks at test-time and IL’s potential to learn desirable behavior entirely from offline data. To accomplish this, we first train a model to forecast expert trajectories with a density function, which can score trajectories and plans by how likely they are to come from the expert. A probabilistic model is necessary because expert behavior is stochastic: e.g. at an intersection, the expert could choose to turn left or right. Next, we derive a principled probabilistic inference objective to create plans that incorporate both (1) the model and (2) arbitrary new tasks. Finally, we derive families of tasks that we can provide to the inference framework. Our method can accomplish new tasks specified as complex goals without having seen an expert complete these tasks before. + +![](images/bf69f40603bad34ad920a937a823802c36761e74323933467cc0c50446e6d9b5.jpg) +Figure 1: Our method: deep imitative models. Top Center. We use demonstrations to learn a probability density function $q$ of future behavior and deploy it to accomplish various tasks. Left: A region in the ground plane is input to a planning procedure that reasons about how the expert would achieve that task. It coarsely specifies a destination, and guides the vehicle to turn left. Right: Goal positions and potholes yield a plan that avoids potholes and achieves one of the goals on the right. + +We investigate properties of our method on a dynamic simulated autonomous driving task (see Fig. 1). Videos are available at https://sites.google.com/view/imitative-models. Our contributions are as follows: + +1. Interpretable expert-like plans with minimal reward engineering. Our method outputs multistep expert-like plans, offering superior interpretability to one-step imitation learning models. In contrast to MBRL, our method generates expert-like behaviors with minimal reward engineering. +2. Flexibility to new tasks: In contrast to IL, our method flexibly incorporates and achieves goals not seen during training, and performs complex tasks that were never demonstrated, such as navigating to goal regions and avoiding test-time only potholes, as depicted in Fig. 1. +3. Robustness to goal specification noise: We show that our method is robust to noise in the goal specification. In our application, we show that our agent can receive goals on the wrong side of the road, yet still navigate towards them while staying on the correct side of the road. +4. State-of-the-art CARLA performance: Our method substantially outperforms MBRL, a custom IL method, and all five prior CARLA IL methods known to us. It learned near-perfect driving through dynamic and static CARLA environments from expert observations alone. + +# 2 DEEP IMITATIVE MODELS + +We begin by formalizing assumptions and notation. We model continuous-state, discrete-time, Partially-Observed Markov Decision Processes (POMDPs). For brevity, we call the components of state of which we have direct observations the agent’s “state”, although we explicitly assume these states do not represent the full Markovian world state. Our agent’s state at time $t$ is $\bar { \bf s } _ { t } \in \mathbb { R } ^ { D }$ ; $t = 0$ refers to the current time step, and $\phi$ is all of the agent’s observations. Variables are bolded. Random variables are capitalized. Absent subscripts denote all future time steps, e.g. $\mathbf { S } \doteq \mathbf { S } _ { 1 : T } \in \mathbb { R } ^ { T \times D }$ . We denote a probability density function of a random variable $\mathbf { S }$ as $p ( \mathbf { S } )$ , and its value as $p ( \mathbf { s } ) \doteq p ( \mathbf { S } = \mathbf { s } )$ . + +To learn agent dynamics that are possible and preferred, we construct a model of expert behavior. We fit an “Imitative Model” $\begin{array} { r } { q ( \mathbf { S } _ { 1 : T } | \phi ) = \prod _ { t = 1 } ^ { T } q ( \mathbf { S } _ { t } | \mathbf { S } _ { 1 : t - 1 } , \phi ) } \end{array}$ to a dataset of expert trajectories $\mathcal { D } = \{ ( s ^ { i } , \phi ^ { i } ) \} _ { i = 1 } ^ { N }$ drawn from a (unknown) distribution of expert behavior $s ^ { i } \sim p ( \mathbf { S } | \phi ^ { i } )$ . By training $q ( \mathbf { S } | \phi )$ to forecast expert trajectories with high likelihood, we model the scene-conditioned expert dynamics, which can score trajectories by how likely they are to come from the expert. + +# 2.1 IMITATIVE PLANNING TO GOALS + +After training, $q ( \mathbf { S } | \phi )$ can generate trajectories that resemble those that the expert might generate – e.g. trajectories that navigate roads with expert-like maneuvers. However, these maneuvers will not have a specific goal. Beyond generating human-like behaviors, we wish to direct our agent to goals and have the agent automatically reason about the necessary mid-level details. We define general tasks by a set of goal variables $\mathcal { G }$ . The probability of a plan s conditioned on the goal $\mathcal { G }$ is modelled by a posterior $p ( \mathbf { s } | \mathcal { G } , \phi )$ . This posterior is implemented with $q ( \mathbf { s } | \boldsymbol { \phi } )$ as a learned imitation prior and $p ( \mathcal { G } | \mathbf { s } , \phi )$ as a test-time goal likelihood. We give examples of $p ( { \mathcal { G } } | \mathbf { s } , \phi )$ after deriving a maximum a posteriori inference procedure to generate expert-like plans that achieve abstract goals: + +$$ +\begin{array} { r l } { \mathbf { s } ^ { * } \ \stackrel { } { = } \ \underset { \mathbf { s } } { \arg \operatorname* { m a x } } \ \log p ( \mathbf { s } | \mathcal { G } , \boldsymbol { \phi } ) \ = \ \underset { \mathbf { s } } { \arg \operatorname* { m a x } } \ \log q ( \mathbf { s } | \boldsymbol { \phi } ) + \log p ( \mathcal { G } | \mathbf { s } , \boldsymbol { \phi } ) - \log p ( \mathcal { G } | \boldsymbol { \phi } ) } & { } \\ { \ \quad \quad \quad \quad \quad \quad \quad \quad \quad \quad \quad = \ \underset { \mathbf { s } } { \arg \operatorname* { m a x } } \ \log \underset { \underset { \mathrm { i m i t a t i o n ~ p r i o r } } { \underbrace { q ( \mathbf { s } | \boldsymbol { \phi } ) } } } { \underbrace { q ( \mathbf { s } | \boldsymbol { \phi } ) } } + \log \underset { \mathrm { g o a l l i k e l i h o o d } } { \underbrace { p ( \mathcal { G } | \mathbf { s } , \boldsymbol { \phi } ) } } . } \end{array} +$$ + +We perform gradient-based optimization of Eq. 1, and defer this discussion to Appendix A. Next, we discuss several goal likelihoods, which direct the planning in different ways. They communicate goals they desire the agent to achieve, but not how to achieve them. The planning procedure determines how to achieve them by producing paths similar to those an expert would have taken to reach the given goal. In contrast to black-box one-step IL that predicts controls, our method produces interpretable multi-step plans accompanied by two scores. One estimates the plan’s “expertness”, the second estimates its probability to achieve the goal. Their sum communicates the plan’s overall quality. + +Our approach can also be viewed as a learning-based method to integrate mid-level and high-level controllers together, where demonstrations from both are available at train-time, only the highlevel controller is available at test-time, and the high-level controller can vary. The high-level controller’s action specifies a subgoal for the mid-level controller. A density model of future trajectories of an expert mid-level controller is learned at train-time, and is amenable to different types of direction as specified by the high-level controller. In this sense, the model is an “apprentice”, having learned to imitate mid-level behaviors. In our application, the high-level controller is composed of an $A ^ { * }$ path-planning algorithm and one of a library of components that forms goal likelihoods from the waypoints produced by $A ^ { * }$ . Connecting this to related approaches, learning the midlevel controller (Imitative Model) resembles offline IL, whereas inference with an Imitative Model resembles trajectory optimization in MBRL, given goals provided by the high-level controller. + +# 2.2 CONSTRUCTING GOAL LIKELIHOODS + +Constraint-based planning to goal sets (hyperparameter-free): Consider the setting where we have access to a set of desired final states, one of which the agent should achieve. We can model this by applying a Dirac-delta distribution on the final state, to ensure it lands in a goal set $\mathbb { G } \subset \mathbb { R } ^ { D }$ : + +$$ +p ( \mathcal { G } | \mathbf { s } , \phi ) \delta _ { \mathbf { s } _ { T } } ( \mathbb { G } ) , \quad \delta _ { \mathbf { s } _ { T } } ( \mathbb { G } ) = 1 \mathrm { i f ~ } \mathbf { s } _ { T } \in \mathbb { G } , \quad \delta _ { \mathbf { s } _ { T } } ( \mathbb { G } ) = 0 \mathrm { i f ~ } \mathbf { s } _ { T } \ncong \mathbb { G } . +$$ + +$\delta _ { \mathbf { s } _ { T } } ( \mathbb { G } )$ ’s partial support of $\mathbf { s } _ { T } \in \mathbb { G } \subset \mathbb { R } ^ { D }$ constrains ${ \bf s } _ { T }$ and introduces no hyperparameters into $p ( \mathcal { G } | \mathbf { s } , \phi )$ . For each choice of $\mathbb { G }$ , we have a different way to provide high-level task information to the agent. The simplest choice for $\mathbb { G }$ is a finite set of points: a (A) Final-State Indicator likelihood. We applied (A) to a sequence of waypoints received from a standard $\mathbf { A } ^ { * }$ planner (provided by the CARLA simulator), and outperformed all prior dynamic-world CARLA methods known to us. We can also consider providing an infinite number of points. Providing a set of line-segments as $\mathbb { G }$ yields a (B) Line-Segment Final-State Indicator likelihood, which encourages the final state to land along one of the segments. Finally, consider a (C) Region Final-State Indicator likelihood in which $\mathbb { G }$ is a polygon (see Figs. 1 and 4). Solving Eq. 1 with (C) amounts to planning the most expert-like trajectory that ends inside a goal region. Appendix B provides derivations, implementation details, and additional visualizations. We found these methods to work well when $\mathbb { G }$ contains “expert-like” final position(s), as the prior strongly penalizes plans ending in non-expert-like positions. + +Unconstrained planning to goal sets (hyperparameter-based): Instead of constraining that the final state of the trajectory reach a goal, we can use a goal likelihood with full support $( \mathbf { s } _ { T } \in \mathbb { R } ^ { D } )$ , centered at a desired final state. This lets the goal likelihood encourage goals, rather than dictate them. If there is a single desired goal $\langle \mathbf { G } = \{ \mathbf { g } _ { T } \}$ ), the $\mathbf { \eta } ^ { ( \mathbf { D } ) }$ Gaussian Final-State likelihood $p ( { \mathcal { G } } | \mathbf { s } , \phi ) \gets$ $\mathcal { N } ( \mathbf { g } _ { T } ; \mathbf { s } _ { T } , \epsilon I )$ treats ${ \bf g } _ { T }$ as a noisy observation of a final future state, and encourages the plan to arrive at a final state. We can also plan to $K$ successive states $\mathcal { G } = ( \mathbf { g } _ { T - K + 1 } , \dots , \mathbf { g } _ { T } )$ with a $\mathbf { ( E ) }$ Gaussian State Sequence: $\begin{array} { r } { p ( \mathcal { G } | \mathbf { s } , \acute { \phi } ) \prod _ { k = T - K + 1 } ^ { T } \mathcal { N } ( \mathbf { g } _ { k } ; \mathbf { s } _ { k } , \epsilon I ) } \end{array}$ if a program wishes to specify a desired end velocity or acceleration when reaching the final state ${ \bf g } _ { T }$ (Fig. 2). Alternatively, a planner may propose a set of states with the intention that the agent should reach any one of them. This is possible by using a $\mathbf { \Pi } ^ { ( \mathbf { F } ) }$ Gaussian Final-State Mixture: $\begin{array} { r } { p ( \mathcal { G } | \mathbf { s } , \boldsymbol { \phi } ) \gets \frac { 1 } { K } \sum _ { k = 1 } ^ { K } \mathcal { N } ( \mathbf { g } _ { T } ^ { k } ; \mathbf { s } _ { T } , \boldsymbol { \epsilon } I ) } \end{array}$ and is useful if some of those final states are not reachable with an expert-like plan. Unlike A–C, D–F introduce a hyperparameter $\cdot \epsilon ^ { * }$ . However, they are useful when no states in $\mathbb { G }$ correspond to observed expert behavior, as they allow the imitation prior to be robust to poorly specified goals. + +Costed planning: Our model has the additional flexibility to accept arbitrary user-specified costs $c$ at test-time. For example, we may have updated knowledge of new hazards at test-time, such as a given map of potholes or a predicted cost map. Cost-based knowledge $c ( \mathbf { s } _ { i } | \phi )$ can be incorporated as an (G) Energy-based likelihood: $\begin{array} { r } { p ( \mathcal { G } | \mathbf { s } , \boldsymbol { \phi } ) \overset { } { \propto } \prod _ { t = 1 } ^ { T } e ^ { - c ( \mathbf { s } _ { t } | \boldsymbol { \phi } ) } } \end{array}$ (Todorov, 2007; Levine, 2018). This can be combined with other goal-seeking objectives by simply multiplying the likelihoods together. Examples of combining G (energy-based) with F (Gaussian mixture) were shown in Fig. 1 and are shown in Fig. 3. Next, we describe instantiating $q ( \mathbf { S } | \phi )$ in CARLA (Dosovitskiy et al., 2017). + +Designing general goal likelihoods can be considered a form of reward engineering if there are no restrictions on the goal likelihoods. This connection is best seen in (G), which has an explicit cost term. One reason why it is easier to design goal likelihoods than to design reward functions is that the task of evoking most aspects of goal-driven behavior is already learned by the prior $q ( \mathbf { s } | \boldsymbol { \phi } )$ , which models desirable behavior. This is in contrast to model-free RL, which entirely relies on the reward design to evoke goal-driven behavior, and in contrast to model-based RL, which heavily relies on the reward design to evoke goal-driven behavior, as its dynamics model learns what is possible, rather than what is desirable. Additionally, it is easy to design goal likelihoods when goals provide a significant amount of information that obviates the need to do any manual tuning. The main assumption is that one of the goals in the goal set is reachable within the model’s time-horizon. + +![](images/4615e57662296686c7ab9b9ee0503fbe3ccb28b5dc38253123f746e3fa2d5bed.jpg) +Figure 2: Imitative planning with the Gaussian State Sequence enables finegrained control of the plans. + +![](images/ed1a6dfab38dd5fb50623c62291f64dbfaa63101e7cb10746575f7eca777e22d.jpg) +Figure 3: Costs can be assigned to “potholes” only seen at test-time. The planner prefers routes avoiding potholes. + +![](images/2d9fd574887390907a8ef9e0db2cca4da1bd779e49a15a1648cc1976be125788.jpg) +Figure 4: Goal regions can be coarsely specified to give directions. + +# 2.3 APPLYING DEEP IMITATIVE MODELS TO AUTONOMOUS DRIVING + +In our autonomous driving application, we model the agent’s state at time $t$ as $\mathbf { s } _ { t } \in \mathbb { R } ^ { D }$ with $D = 2$ ; $\mathbf { s } _ { t }$ represents our agent’s location on the ground plane. The agent has access to environment perception $\phi { \bf \bar { \omega } } \{ { \bf s } _ { - \tau : 0 } , \chi , { \bf \bar { \omega } } \}$ , where $\tau$ is the number of past positions we condition on, $x$ is a high-dimensional observation of the scene, and $\boldsymbol { \lambda }$ is a low-dimensional traffic light signal. $x$ could represent either LIDAR or camera images (or both), and is the agent’s observation of the world. In our setting, we featurize LIDAR to $\chi = \mathrm { \mathbb { R } ^ { 2 0 0 \times 2 0 0 \times 2 } }$ , with $\chi _ { i j }$ representing a 2-bin histogram of points above and at ground level in a $0 . 5 \mathrm { m } ^ { 2 }$ cell at position $( i , j )$ . CARLA provides ground-truth ${ \bf s } _ { - \tau : 0 }$ and $\boldsymbol { \lambda }$ . Their availability is a realistic input assumption in perception-based autonomous driving pipelines. + +Model requirements: A deep imitative model forecasts future expert behavior. It must be able to compute $\bar { q ( \mathbf { s } | \boldsymbol { \phi } ) } \forall \mathbf { s } \in \mathbb { R } ^ { T \times D }$ . The ability to compute $\nabla _ { \mathbf { s } } q ( \mathbf { s } | \phi )$ enables gradient-based optimization for planning. Rudenko et al. (2019) provide a recent survey on forecasting agent behavior. As many forecasting methods cannot compute trajectory probabilities, we must be judicious in choosing $q ( \mathbf { S } | \phi )$ . A model that can compute probabilities R2P2 (Rhinehart et al., 2018), a generative autoregressive flow (Rezende & Mohamed, 2015; Oord et al., 2017). We extend R2P2 to instantiate the deep imitative model $q ( \mathbf { S } | \phi )$ . R2P2 was previously used to forecast vehicle trajectories: it was not demonstrated or developed to plan or execute controls. Although we used R2P2, other future-trajectory density estimation techniques could be used – designing ${ \dot { \mathbf { \zeta } } } _ { q } ( \mathbf { s } | \phi )$ is not the primary focus of this work. In R2P2, $q _ { \theta } ( \mathbf { S } | \phi )$ is induced by an invertible, differentiable function: $\mathbf { S } = f _ { \theta } ( \mathbf { Z } ; \phi ) : \mathbb { R } ^ { T \times 2 } \mapsto \mathbb { R } ^ { T \times 2 }$ ; $f _ { \theta }$ warps a latent sample from a base distribution $\mathbf { Z } \sim q _ { 0 } = \mathcal { N } ( 0 , I )$ to S. $\theta$ is trained to maximize $q _ { \theta } ( \mathbf { S } | \phi )$ of expert trajectories. $f _ { \theta }$ is defined for $1 . . T$ as follows: + +![](images/c23878e57a42f82d9c10542daaeed971816ea15b60f9f4fb3b4cb25feb8b7355.jpg) +Figure 5: Illustration of our method applied to autonomous driving. Our method trains an imitative model from a dataset of expert examples. After training, the model is repurposed as an imitative planner. At test-time, a route planner provides waypoints to the imitative planner, which computes expert-like paths to each goal. The best plan is chosen according to the planning objective and provided to a low-level PID-controller in order to produce steering and throttle actions. This procedure is also described with pseudocode in Appendix A. + +$$ +\mathbf { S } _ { t } = f _ { t } ( \mathbf { Z } _ { 1 : t } ) = \mu _ { \theta } ( \mathbf { S } _ { 1 : t - 1 } , \phi ) + \sigma _ { \theta } ( \mathbf { S } _ { 1 : t - 1 } , \phi ) \mathbf { Z } _ { t } , +$$ + +where µ $\begin{array} { r } { \phantom { \frac { 1 } { \theta } } \theta ( \mathbf { S } _ { 1 : t - 1 } , \phi ) = \mathbf { S } _ { t - 1 } + ( \mathbf { S } _ { t - 1 } - \mathbf { S } _ { t - 2 } ) \phantom { \frac { 1 } { \theta } } + m _ { \theta } ( \mathbf { S } _ { 1 : t - 1 } , \phi ) = 2 \mathbf { S } _ { t - 1 } - \mathbf { S } _ { t - 2 } + m _ { \theta } ( \mathbf { S } _ { 1 : t - 1 } , \phi ) , } \end{array}$ encodes a constant-velocity inductive bias. The $m _ { \theta } \in \mathbb { R } ^ { 2 }$ and $\sigma _ { \theta } \in \mathbb { R } ^ { 2 \times 2 }$ are computed by expressive neural networks. The resulting trajectory distribution is complex and multimodal (Appendix C.1 depicts samples). Because traffic light state was not included in the $\phi$ of R2P2’s “RNN” model, it could not react to traffic lights. We created a new model that includes $\boldsymbol { \lambda }$ . It fixed cases where $q ( \mathbf { S } | \phi )$ exhibited no forward-moving preference when the agent was already stopped, and improved $q ( \mathbf { S } | \phi )$ ’s stopping preference at red lights. We used $T = 4 0$ trajectories at $1 0 \mathrm { H z }$ (4 seconds), and $\tau = 3$ . Fig. 12 in Appendix C depicts the architecture of $\mu _ { \theta }$ and $\sigma _ { \theta }$ . + +# 2.4 IMITATIVE DRIVING + +We now instantiate a complete autonomous driving framework based on imitative models to study in our experiments, seen in Fig. 5. We use three layers of spatial abstraction to plan to a faraway destination, common to autonomous vehicle setups: coarse route planning over a road map, path planning within the observable space, and feedback control to follow the planned path (Paden et al., 2016; Schwarting et al., 2018). For instance, a route planner based on a conventional GPS-based navigation system might output waypoints roughly in the lanes of the desired direction of travel, but not accounting for environmental factors such as the positions of other vehicles. This roughly communicates possibilities of where the vehicle could go, but not when or how it could get to them, or any environmental factors like other vehicles. A goal likelihood from Sec. 2.2 is formed from the route and passed to the planner, which generates a state-space plan according to the optimization in Eq. 1. The resulting plan is fed to a simple PID controller on steering, throttle, and braking. Pseudocode of the driving and inference algorithms are given in Algs 1 and 2. The PID algorithm is given in Appendix A. + +# 3 RELATED WORK + +A body of previous work has explored offline IL (Behavior Cloning – BC) in the CARLA simulator (Li et al., 2018; Liang et al., 2018; Sauer et al., 2018; Codevilla et al., 2018; 2019). These BC approaches condition on goals drawn from a small discrete set of directives. Despite BC’s theoretical drift shortcomings (Ross et al., 2011), these methods still perform empirically well. These approaches and ours share the same high-level routing algorithm: an $A ^ { * }$ planner on route nodes that generates waypoints. In contrast to our approach, these approaches use the waypoints in a Waypoint Classifier, which reasons about the map and the geometry of the route to classify the waypoints into one of several directives: {Turn left, Turn right, Follow Lane, Go Straight}. One of the original motivations for + +Algorithm 1 IMITATIVEDRIVING(ROUTEPLAN, IMITATIVEPLAN, PIDCONTROLLER, $q _ { \theta } , f , p , H )$ + +1: $\phi \mathrm { E N V I R O N M E N T } ( \emptyset )$ {Initialize the robot} +2: while not at destination do +3: $\mathcal { G } \gets \mathsf { R o u r r E P L A N } ( \phi )$ {Generate goals from a route} +4: $\mathbf { s } _ { 1 : T } ^ { \mathcal { G } } \gets \mathrm { I M I T A T I V E P L A N } ( q _ { \theta } , f , p , \mathcal { G } , \phi )$ {Plan path} +5: for $h = 0$ to $H$ do +6: u ← PIDCONTROLLER $( \phi , \mathbf { s } _ { 1 : T } ^ { \mathcal { G } } , h , H )$ +7: $\phi \gets \mathrm { E N V I R O N M E N T } ( u )$ {Execute control} +8: end for +9: end while + +# Algorithm 2 IMITATIVEPLAN(qθ, f, p, G, φ) + +1: Initialize ${ \mathbf z } _ { 1 : T } \sim q _ { 0 }$ +2: while not converged do +3: $\mathbf { z } _ { 1 : T } \gets \mathbf { z } _ { 1 : T } + \mathbf { \bar { V } } _ { \mathbf { z } _ { 1 : T } } \left[ \log q ( f ( \mathbf { z } _ { 1 : T } ) | \phi ) + \log p ( \mathcal { G } | f ( \mathbf { z } _ { 1 : T } ) , \phi ) \right]$ {Gradient ascent on Eq. 1} +4: end while +5: return ${ \bf s } _ { 1 : T } = f ( { \bf z } _ { 1 : T } )$ + +these type of controls was to enable a human to direct the robot (Codevilla et al., 2018). However, in scenarios where there is no human in the loop (i.e. autonomous driving), we advocate for approaches to make use of the detailed spatial information inherent in these waypoints. Our approach and several others we designed make use of this spatial information. One of these is CIL-States (CILS): whereas the approach in Codevilla et al. (2018) uses images to directly generate controls, CILS uses identical inputs and PID controllers as our method. With respect to prior conditional IL methods, our main approach has more flexibility to handle more complex directives post-training, the ability to learn without goal labels, and the ability to generate interpretable planned and unplanned trajectories. These contrasting capabilities are illustrated in Table 1. + +Our approach is also related to MBRL. MBRL can also plan with a predictive model, but its model only represents possible dynamics. The task of evoking expert-like behavior is offloaded to the reward function, which can be difficult and time-consuming to craft properly. We know of no MBRL approach previously applied to CARLA, so we devised one for comparison. This MBRL approach also uses identical inputs to our method, instead to plan a reachability tree (LaValle, 2006) over an dynamic obstacle-based reward function. See Appendix D for further details of the MBRL and CILS methods, which we emphasize use the same inputs as our method. + +Several prior works (Tamar et al., 2016; Amos et al., 2018; Srinivas et al., 2018) used imitation learning to train policies that contain planning-like modules as part of the model architecture. While our work also combines planning and imitation learning, ours captures a distribution over possible trajectories, and then plan trajectories at test-time that accomplish a variety of given goals with high probability under this distribution. Our approach is suited to offline-learning settings where interactively collecting data is costly (time-consuming or dangerous). However, there exists online IL approaches that seek to be safe (Menda et al., 2017; Sun et al., 2018; Zhang & Cho, 2017). + +# 4 EXPERIMENTS + +We evaluate our method using the CARLA driving simulator (Dosovitskiy et al., 2017). We seek to answer four primary questions: (1) Can we generate interpretable, expert-like plans with offline learning and minimal reward engineering? Neither IL nor MBRL can do so. It is straightforward to interpret the trajectories by visualizing them on the ground plane; we thus seek to validate whether these plans are expert-like by equating expert-like behavior with high performance on the CARLA benchmark. (2) Can we achieve state-of-the-art CARLA performance using resources commonly available in real autonomous vehicle settings? There are several differences between the approaches, as discussed in Sec 3 and shown in Tables 1 and 2. Our approach uses the CARLA toolkit’s resources that are commonly available in real autonomous vehicle settings: waypoint-based routes (all prior approaches use these), LIDAR and traffic-light observations (both are CARLAprovided, but only the approaches we implemented use it). Furthermore, the two additional methods of comparison we implemented (CILS and MBRL) use the exact same inputs as our algorithm. These reasons justify an overall performance comparison to answer (2): whether we can achieve state-of-the-art performance using commonly available resources. We advocate that other approaches also make use of such resources. (3) How flexible is our approach to new tasks? We investigate (3) by applying each of the goal likelihoods we derived and observing the resulting performance. (4) How robust is our approach to error in the provided goals? We do so by injecting two different types of error into the waypoints and observing the resulting performance. + +Table 1: Desirable attributes of each approach. A green check denotes that a method has a desirable attribute, whereas a red cross denotes the opposite. A “†” indicates an approach we implemented. + +
ApproachFlexible to New GoalsTrains without goal labelsOutputs PlansTrains OflineHas Expert P.D.F.
CIRL*(Liang et al., 2018)XXXXX
CAL* (Sauer et al.,2018)xxxxxν
MT*(Li et al.,2018)
CIL*(Codevilla et al., 2018)xxx
CILRS*(Codevilla et al.,2019)X
CILStxxxx//xxxxx/X
MBRL†XX
Imitative Models (Ours)t
Table 2: Algorithmic components of each approach. A “t” i indicates an approach we implemented.
ApproachControl Algorithm← Learning Algorithm←Goal-Generation Algorithm ←Routing AlgorithmHigh-Dim. Obs.
CIRL*(Liang et al.,2018)Waypoint ClassifierA*Waypointer
PolicyBehavior Cloning+RL Affordance LearningWaypoint ClassifierA*WaypointerImage Image
CAL*(Sauer et al.,2018) MT*(Li et al., 2018)PID PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CIL*(Codevilla et al., 2018)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILRS*(Codevilla et al., 2019)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILStPIDTrajectory RegressorWaypoint ClassifierA*Waypointer(LIDAR,入)
MBRL†Reachability TreeState RegressorWaypoint SelectorA*Waypointer(LIDAR,λ)
Imitative Models (Ours)†Imitative Plan+PIDTraj. Density Est.Goal LikelihoodsA*Waypointer(LIDAR,λ)
+ +We begin by training $q ( \mathbf { S } | \phi )$ on a dataset of 25 hours of driving we collected in Town01, detailed in Appendix C.2. Following existing protocol, each test episode begins with the vehicle starting in one of a finite set of starting positions provided by the CARLA simulator in Town01 or Town02 maps in one of two settings: static-world (no other vehicles) or dynamic-world (with other vehicles). We ran the same benchmark 3 times across different random seeds to quantify means and their standard errors. We construct the goal set $\mathbb { G }$ for the Final-State Indicator (A) directly from the route output by CARLA’s waypointer. B’s line segments are formed by connecting the waypoints to form a piecewise linear set of segments. C’s regions are created a polygonal goal region around the segments of (B). Each represents an increasing level of coarseness of direction. Coarser directions are easier to specify when there is ambiguity in positions (both the position of the vehicle and the position of the goals). Further details are discussed in Appendix B.3. Visualizations of (C) are shown in Figures 6 and 7. Visualizations of (A) and (B) are shown in Figures 8 and 9. We use three metrics: (a) success rate in driving to the destination without any collisions (which all prior work reports); (b) red-light violations; and (c) proportion of time spent driving in the wrong lane and off road. With the exception of metric (a), lower numbers are better. + +Results: Towards questions (1) and (3) (expert-like plans and flexibility), we apply our approach with a variety of goal likelihoods to the CARLA simulator. Towards question (2), we compare our methods against CILS, MBRL, and prior work. These results are shown in Table 3. The metrics for the methods we did not implement are from the aggregation reported in Codevilla et al. (2019). We observe our method to outperform all other approaches in all settings: static world, dynamic world, training conditions, and test conditions. We observe the Goal Indicator methods are able to perform well, despite having no hyperparameters to tune. We found that we could further improve our approach’s performance if we use the light state to define different goal sets, which defines a “smart” waypointer. The settings where we use this are suffixed with “S.” in the Tables. We observed the planner prefers closer goals when obstructed, when the vehicle was already stopped, and when a red light was detected; we observed the planner prefers farther goals when unobstructed and when green lights or no lights were observed. Examples of these and other interesting behaviors are best seen in the videos on the website (https://sites.google.com/view/imitative-models). These behaviors follow from the method leveraging $q ( \mathbf { S } | \phi )$ ’s internalization of aspects of expert behavior in order to reproduce them in new situations. Altogether, these results provide affirmative answers to questions (1) and (2). Towards question (3), these results show that our approach is flexible to different directions defined by these goal likelihoods. + +Table 3: We evaluate different autonomous driving methods on CARLA’s Dynamic Navigation task. A “†” indicates methods we have implemented (each observes the same waypoints and LIDAR as input). A “∗” indicates results reported in Codevilla et al. (2019). A “–” indicates an unreported statistic. A “‡” indicates an optimistic estimate in transferring a result from the static setting to the dynamic setting. “S.” denotes a “smart” waypointer reactive to light state, detailed in Appendix B.2. Results accompanied by standard errors are computed with $N = 3$ trials across environment seeds. + +
Dynamic Nav. MethodTownO1 (training conditions)Town02 (test conditions)
Success↑Ran Red Light↓Wrong lane↓Off road↓Success↑Ran Red Light↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)82%41%
CAL*(Sauer et al.,2018)83%64%
MT* (Li et al., 2018)81%53%
CIL*(Codevilla et al., 2018)83%83%38%82%t
CILRS*(Codevilla et al., 2019)92%27%66%64%
CILS,Waypoint Input†17%0.0%0.20%12.1%36%0.0%1.11%11.70%
MBRL,Waypoint Input64%72%11.1%2.96%48%54%20.6%13.3 %
Ourmethod,RegionFinal-St.IndicatorS.t96%±1.90.89%±0.40.05%±0.010.11%±0.0188%±3.32.60%±0.040.49%±0.322.60%±1.1
Ourmethod,RegionFinal-St.Inictor93%±2.218%±0.50.023%±0.0020.195%±0.00481%±2.254.7%±1.50.12%±0.011.32%±0.69
Ourmethod,LineegmentFinal-St.Indicatort91%±1.132%±1.30.055%±0.0020.013%±0.00188%±3.335.2%±2.40.52%±0.030.18%±0.02
Ourmethod,Final-StateIndicatort92%26%0.05%0.012%84%35%0.13%0.38%
Ourmethod,Gussianinal-t.92% 100%6.3% 1.7%0.04%0.005%100%12%0.11%0.04%
Our method, Gaussian Final-St.Mix.S.t0.03%0.005%92%0.0%0.05%0.15%
Town01 (training conditions)Town02 (test conditions)
Static Nav. MethodSuccess↑Ran RedLight↓Wrong lane↓Off road↓Success↑Ran RedLight↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)93%68%
CAL*(Sauer et al.,2018)92%68%
MT*(Li et al.,2018)81%78%
CIL*(Codevilla et al., 2018)86%83%44%82%
CILRS*(Codevilla et al., 2019)95%27%90%64%
CILS,Waypoint Inputt28%0.0%0.38%10.23%36%0.0%1.69%16.82%
MBRL,Waypoint Input†96%78%14.3%1.94%96%73%19.6 %0.75%
Ourmethod,Final-StateIndicatort100%48%0.05%0.002%100%52%0.10%0.13%
Our method,GaussianFinal-St. Mixturet96%0.83%0.01%0.08%96%0.0%0.03%0.14%
Ourmethod,GaussianFinal-St.ix..t96%0.0%0.04%0.07%92%0.0%0.18%0.27%
+ +![](images/d0e5003b39ffd8af354765f4a41ccb338bb60327e0b2d15098d188b19a79d9a0.jpg) +Figure 6: Planning with the Region Final State Indicator yields plans that end inside the region. The orange polygon indicates the region. The red circles indicate the chosen plan. + +![](images/58f2baf54f05b70cebe1496658bda359bdc94de6ab7f7752eca9ec9d49fdd210.jpg) +Figure 7: Even with a wider goal region than Fig. 6, the vehicle remains in its lane. Despite their coarseness, these wide goal regions still provide useful guidance to the vehicle. + +# 4.1 ROBUSTNESS TO ERRORS IN GOAL-SPECIFICATION + +Towards questions (3) (flexibility) and (4) (noise-robustness), we analyze the performance of our method when the path planner is heavily degraded, to understand its stability and reliability. We use the Gaussian Final-State Mixture goal likelihood. + +Navigating with high-variance waypoints. As a test of our model’s capability to stay in the distribution of demonstrated behavior, we designed a “decoy waypoints” experiment, in which half of the waypoints are highly perturbed versions of the other half, serving as distractions for our Gaussian Final-State Mixture imitative planner. We observed surprising robustness to decoy waypoints. Examples of this robustness are shown in Fig. 10. In Table 4, we report the success rate and the mean number of planning rounds for failed episodes in the $^ { 6 6 } \%$ distractors” row. These numbers indicate our method can execute dozens of planning rounds without decoy waypoints causing a catastrophic failure, and often it can execute the hundreds necessary to achieve the goal. See Appendix E for details. + +Navigating with waypoints on the wrong side of the road. We also designed an experiment to test our method under systemic bias in the route planner. Our method is provided waypoints on the wrong side of the road (in CARLA, the left side), and tasked with following the directions of these waypoints while staying on the correct side of the road (the right side). In order for the value of $q ( \mathbf { s } | \boldsymbol { \phi } )$ to outweigh the influence of these waypoints, we increased the $\epsilon$ hyperparameter. We found our method to still be very effective at navigating, and report results in Table 4. We also investigated providing very coarse 8-meter wide regions to the Region Final-State likelihood; these always include space in the wrong lane and off-road (Fig. 7 in Appendix ?? provides visualization). Nonetheless, on Town01 Dynamic, this approach still achieved an overall success rate of $4 8 \%$ . Taken together towards question (4), our results indicate that our method is fairly robust to errors in goal-specification. + +![](images/2138ef8e7bb5566ff77af505c28955e60ae36f8ca04afd3d1bd0a9e1d1ecdeb3.jpg) +Figure 8: Planning with the Final State Indicator yields plans that end at one of the provided locations. Orange diamonds indicate the locations in the goal set. Red circles indicate the chosen plan. + +![](images/08f73d8ccefdf0796b7bf2e02b790e11057096defc95284b7ae07db44e75c5b3.jpg) +Figure 9: Planning with the Line Segment Final State Indicator yields plans that end along a segment. Orange diamonds indicate line segment endpoints. Red circles indicate the chosen plan. + +![](images/0d3a5bf828280148d3ce24b021aad8cb207c1501042928f484322246c7ba2609.jpg) +Figure 10: Tolerating bad goals. The planner prefers goals in the distribution of expert behavior (on the road at a reasonable distance). Left: Planning with $^ 1 / 2$ decoy goals. Right: Planning with all goals on the wrong side of the road. +Figure 11: Testtime plans steering around potholes. + +# 4.2 PRODUCING UNOBSERVED BEHAVIORS TO AVOID NOVEL OBSTACLES + +Table 4: Robustness to waypoint noise and test-time pothole adaptation. Our method is robust to waypoints on the wrong side of the road and fairly robust to decoy waypoints. Our method is flexible enough to safely produce behavior not demonstrated (pothole avoidance) by incorporating a test-time cost. Ten episodes are collected in each Town. + +
Town01 (training conditions)Town02 (test conditions)
WaypointerExtra CostSuccessWrong lanePotholes hitSuccessWrong lanePotholes hit
Noiseless waypointer100%0.00%177/230100%0.41%82/154
Waypoints wrong lane100%0.34%170%3.16%
1/2 waypoints distracting70%150%1
Noiseless waypointerPothole90%1.53%10/23070%1.53%35/154
+ +To further investigate our model’s flexibility to test-time objectives (question 3), we designed a pothole avoidance experiment. We simulated potholes in the environment by randomly inserting them in the cost map near waypoints. We ran our method with a test-time-only cost map of the simulated potholes by combining goal likelihoods (F) and (G), and compared to our method that did not incorporate the cost map (using (F) only, and thus had no incentive to avoid potholes). We recorded the number of collisions with potholes. In Table 4, our method with cost incorporated avoided most potholes while avoiding collisions with the environment. To do so, it drove closer to the centerline, and occasionally entered the opposite lane. Our model internalized obstacle avoidance by staying on the road and demonstrated its flexibility to obstacles not observed during training. Fig. 11 shows an example of this behavior. See Appendix F for details of the pothole generation. + +# 5 DISCUSSION + +We proposed “Imitative Models” to combine the benefits of IL and MBRL. Imitative Models are probabilistic predictive models able to plan interpretable expert-like trajectories to achieve new goals. Inference with an Imitative Model resembles trajectory optimization in MBRL, enabling it to both incorporate new goals and plan to them at test-time, which IL cannot. Learning an Imitative Model resembles offline IL, enabling it to circumvent the difficult reward-engineering and costly online data collection necessities of MBRL. We derived families of flexible goal objectives and showed our model can successfully incorporate them without additional training. Our method substantially outperformed six IL approaches and an MBRL approach in a dynamic simulated autonomous driving task. We showed our approach is robust to poorly specified goals, such as goals on the wrong side of the road. We believe our method is broadly applicable in settings where expert demonstrations are available, flexibility to new situations is demanded, and safety is paramount. Future work could investigate methods to handle both observation noise and out-of-distribution observations to enhance the applicability to robust real systems — we expand on this issue in Appendix E. Finally, to facilitate more general planning, future work could extend our approach to explicitly reason about all agents in the environment in order to inform a closed-loop plan for the controlled agent. + +# ACKNOWLEDGEMENTS + +This research was supported by ONR N000141712623, DARPA Assured Autonomy, ARL DCIST CRA W911NF-17-2-0181, Google, NVIDIA, and Amazon. + +# REFERENCES + +Brandon Amos, Ivan Dario Jimenez Rodriguez, Jacob Sacks, Byron Boots, and Zico Kolter. Differentiable MPC for end-to-end planning and control. In Neural Information Processing Systems (NeurIPS), 2018. + +Felipe Codevilla, Matthias Miiller, Antonio López, Vladlen Koltun, and Alexey Dosovitskiy. Endto-end driving via conditional imitation learning. In International Conference on Robotics and Automation (ICRA), pp. 1–9. IEEE, 2018. + +Felipe Codevilla, Eder Santana, Antonio M López, and Adrien Gaidon. Exploring the limitations of behavior cloning for autonomous driving. arXiv preprint arXiv:1904.08980, 2019. + +Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to policy search. In International Conference on Machine Learning (ICML), pp. 465–472, 2011. + +Alexey Dosovitskiy and Vladlen Koltun. Learning to act by predicting the future. arXiv preprint arXiv:1611.01779, 2016. + +Alexey Dosovitskiy, German Ros, Felipe Codevilla, Antonio Lopez, and Vladlen Koltun. CARLA: An open urban driving simulator. In Conference on Robot Learning (CoRL), pp. 1–16, 2017. + +Leonid Kuvayev and Richard S. Sutton. Model-based reinforcement learning with an approximate, learned model. In Yale Workshop on Adaptive and Learning Systems, pp. 101–105, 1996. + +Balaji Lakshminarayanan, Alexander Pritzel, and Charles Blundell. Simple and scalable predictive uncertainty estimation using deep ensembles. In Neural Information Processing Systems (NeurIPS), pp. 6402–6413, 2017. + +Steven M LaValle. Planning algorithms. Cambridge University Press, 2006. + +Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review. arXiv preprint arXiv:1805.00909, 2018. + +Zhihao Li, Toshiyuki Motoyoshi, Kazuma Sasaki, Tetsuya Ogata, and Shigeki Sugano. Rethinking self-driving: Multi-task knowledge for better generalization and accident explanation ability. arXiv preprint arXiv:1809.11100, 2018. + +Xiaodan Liang, Tairui Wang, Luona Yang, and Eric Xing. CIRL: Controllable imitative reinforcement learning for vision-based self-driving. arXiv preprint arXiv:1807.03776, 2018. + +Kunal Menda, Katherine Driggs-Campbell, and Mykel J Kochenderfer. DropoutDAgger: A Bayesian approach to safe imitation learning. arXiv preprint arXiv:1709.06166, 2017. + +Aaron van den Oord, Yazhe Li, Igor Babuschkin, Karen Simonyan, Oriol Vinyals, Koray Kavukcuoglu, George van den Driessche, Edward Lockhart, Luis C Cobo, Florian Stimberg, et al. Parallel WaveNet: Fast high-fidelity speech synthesis. arXiv preprint arXiv:1711.10433, 2017. + +Brian Paden, Michal Cáp, Sze Zheng Yong, Dmitry Yershov, and Emilio Frazzoli. A survey of ˇ motion planning and control techniques for self-driving urban vehicles. Transactions on Intelligent Vehicles, 1(1):33–55, 2016. + +Danilo Rezende and Shakir Mohamed. Variational inference with normalizing flows. In International Conference on Machine Learning (ICML), pp. 1530–1538, 2015. + +Nicholas Rhinehart, Kris M. Kitani, and Paul Vernaza. R2P2: A reparameterized pushforward policy for diverse, precise generative path forecasting. In European Conference on Computer Vision (ECCV), September 2018. + +Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured prediction to no-regret online learning. In Artificial Intelligence and Statistics (AISTATS), pp. 627–635, 2011. + +Andrey Rudenko, Luigi Palmieri, Michael Herman, Kris M Kitani, Dariu M Gavrila, and Kai O Arras. Human motion trajectory prediction: A survey. arXiv preprint arXiv:1905.06113, 2019. + +Axel Sauer, Nikolay Savinov, and Andreas Geiger. Conditional affordance learning for driving in urban environments. arXiv preprint arXiv:1806.06498, 2018. + +Wilko Schwarting, Javier Alonso-Mora, and Daniela Rus. Planning and decision-making for autonomous vehicles. Annual Review of Control, Robotics, and Autonomous Systems, 1:187–210, 2018. + +Aravind Srinivas, Allan Jabri, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Universal planning networks: Learning generalizable representations for visuomotor control. In International Conference on Machine Learning (ICML), pp. 4739–4748, 2018. + +Liting Sun, Cheng Peng, Wei Zhan, and Masayoshi Tomizuka. A fast integrated planning and control framework for autonomous driving via imitation learning. In Dynamic Systems and Control Conference. American Society of Mechanical Engineers, 2018. + +Aviv Tamar, Yi Wu, Garrett Thomas, Sergey Levine, and Pieter Abbeel. Value iteration networks. In Neural Information Processing Systems (NeurIPS), pp. 2154–2162, 2016. + +Emanuel Todorov. Linearly-solvable Markov decision problems. In Neural Information Processing Systems (NeurIPS), pp. 1369–1376, 2007. + +Jiakai Zhang and Kyunghyun Cho. Query-efficient imitation learning for end-to-end simulated driving. In Association for the Advancement of Artificial Intelligence (AAAI), pp. 2891–2897, 2017. + +# A ALGORITHMS + +In Algorithm 1, we provided pseudocode for receding-horizon control via our imitative model. In Algorithm 2 we provided pesudocode that describes how we plan in the latent space of the trajectory. In Algorithm 3, we detail the speed-based throttle and position-based steering PID controllers. + +$$ +\mathbf { A l g o r i t h m 3 } \quad \mathbf { P I D C O N T R O L L E R } ( \phi = \left\{ \mathbf { s } _ { 0 } , \mathbf { s } _ { - 1 } , \ldots \right\} , \mathbf { s } _ { 1 : T } ^ { \mathcal { G } } , h , H ; K _ { p } ^ { \dot { s } } , K _ { p } ^ { \alpha } ) +$$ + +1: $i T - H + h$ {Compute the index of the target position} +2: s˙process-speed $ ( \mathbf { s } _ { 0 , x } - \mathbf { s } _ { - 1 , x } )$ {Compute the current forward speed from the observations} +3: $s _ { \mathrm { s e t p o i n t - p o s i t i o n } } \mathbf { s } _ { i , x } ^ { \mathcal { G } }$ {Retrieve the target position $\mathbf { X }$ -coordinate from the plan} +4: $\dot { s } _ { \mathrm { s e t p o i n t - s p e e d } } s _ { \mathrm { s e t p o i n t - p o s i t i o n } } \Big / i$ {Compute the forward target speed} +5: $e _ { \dot { s } } \gets \dot { s } _ { \mathrm { s e t p o i n t - s p e e d } } - \dot { s } _ { \mathrm { p r o c e } }$ ss-speed {Compute the forward speed error} 6: $u _ { \dot { s } } \gets K _ { p } ^ { \dot { s } } e _ { \dot { s } }$ {Compute the accelerator control with a nonzero proportional term} 7: throttle $\iff \mathbb { 1 } ( e > 0 ) \cdot u + \mathbb { 1 } ( e \leq 0 ) \cdot 0$ {Use the control as throttle if the speed error is positive} +8: brake $ \mathbb { 1 } ( e > 0 ) \cdot 0 + \mathbb { 1 } ( e \leq 0 ) \cdot u$ {Use the control as brake if the speed error is negative} +9: 10: 11: $\boldsymbol { \iota } _ { \mathrm { p r o c e s s } } \gets \arctan ( \mathbf { s } _ { 0 , y } - \mathbf { s } _ { - 1 , y } , \mathbf { s } _ { 0 , x } - \mathbf { s } _ { - 1 , x } )$ {Compute current heading}{Compute target forward heading}g error} $\alpha _ { \mathrm { s e t p o i n t } } \arctan ( \mathbf { s } _ { i , y } ^ { \mathcal { G } } - \mathbf { s } _ { 0 , y } , | \mathbf { s } _ { i , x } ^ { \mathcal { G } } - \mathbf { s } _ { 0 , x } | ) _ { . }$ $e _ { \alpha } \gets \alpha _ { \mathrm { s e t p o i n t } } - \alpha _ { \mathrm { p r o c } }$ +12: steering $\ L _ { \ S } K _ { p } ^ { \alpha } e _ { \alpha }$ {Compute the steering with a nonzero proportional term} +13: $u \gets$ [throttle, steering, brake] +14: return $u$ + +# A.1 LATENT PLAN OPTIMIZATION + +Since $\mathbf { s } _ { 1 : T } = f ( \mathbf { z } _ { 1 : T } )$ in our implementation, and $f$ is differentiable, we can perform gradient descent of the same objective in terms of $\mathbf { z } _ { 1 : T }$ , as shown in Algorithm 2.Since $q$ is trained with $\mathbf { z } _ { 1 : T } \sim \mathcal { N } ( 0 , I )$ , the latent space is likelier to be better numerically conditioned than the space of $\mathbf { s } _ { 1 : T }$ , although we did not compare the two approaches formally. We implemented the following optimizations to improve this procedure’s output and practical run time. 1) We started with $N = 1 2 0$ different $\mathbf { z }$ initializations, optimized them in batch, and returned the highest-scoring value across the entire optimization. 2) We observed the resulting planning procedure to usually converge quickly, so instead of specifying a convergence threshold, we simply ran the optimization for a small number of steps, $M = 1 0$ , and found that we obtained good performance. Better performance could be obtained by performing a larger number of steps. + +# B GOAL DETAILS + +# B.1 OPTIMIZING GOAL LIKELIHOODS WITH SET CONSTRAINTS + +We now derive an approach to optimize our main objective with set constraints. Although we could apply a constrained optimizer, we find that we are able to exploit properties of the model and constraints to derive differentiable objectives that enable approximate optimization of the corresponding closed-form optimization problems. These enable us to use the same straightforward gradient-descent-based optimization approach described in Algorithm 2. + +Shorthand notation: In this section we omit dependencies on $\phi$ for brevity, and use short hand $\mu _ { t } \doteq \mu _ { \theta } \bigl ( \mathbf { s } _ { 1 : t - 1 } \bigr )$ and $\Sigma _ { t } \doteq \Sigma _ { \theta } \bigl ( \mathbf { s } _ { 1 : t - 1 } \bigr )$ . For example, $q ( \mathbf { s } _ { t } | \mathbf { s } _ { 1 : t - 1 } ) = \mathcal { N } \left( \mathbf { s } _ { t } ; \mu _ { t } , \Sigma _ { t } \right)$ . + +Let us begin by defining a useful delta function: + +$$ +\delta _ { \mathbf { s } _ { T } } ( \mathbb { G } ) \doteq { \left\{ \begin{array} { l l } { 1 } & { { \mathrm { i f ~ } } \mathbf { s } _ { T } \in \mathbb { G } } \\ { 0 } & { { \mathrm { i f ~ } } \mathbf { s } _ { T } \notin \mathbb { G } , } \end{array} \right. } +$$ + +which serves as our goal likelihood when using goal with set constraints: $p ( \mathcal { G } | \mathbf { s } _ { 1 : T } ) \gets \delta _ { S _ { T } } ( \mathbb { G } )$ . We now derive the corresponding maximum a posteriori optimization problem: + +$$ +\begin{array} { r l } { \mathbf { f } _ { \perp \perp } } & { = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \{ ( \mathbf { J } _ { \perp \perp } \cdot \boldsymbol { F } _ { \perp } ) \cdot \boldsymbol { F } _ { \perp \perp } ^ { \perp } \} } \\ & { = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \lambda _ { \mathrm { R } } \{ [ \mathbf { S } _ { \parallel } \cdot \mathbf { u } _ { \mathrm { L } } \cdot \boldsymbol { F } _ { \perp } ] \cdot \boldsymbol { F } _ { \perp } ^ { \perp } \} } \\ & { = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \lambda _ { \mathrm { R } } \{ [ \mathbf { J } _ { \perp \perp } \cdot \boldsymbol { F } _ { \perp } ] \cdot \boldsymbol { F } _ { \perp } ^ { \perp } \} } \\ & { = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \lambda _ { \mathrm { R } } \{ [ \mathbf { J } _ { \perp \perp } \cdot \boldsymbol { F } _ { \perp } ] \cdot \boldsymbol { F } _ { \perp } ^ { \perp } \} } \\ & { = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \lambda _ { \mathrm { R } } \exp \lambda _ { \mathrm { R } } \exp \lambda _ { \mathrm { R } } \exp \lambda _ { \mathrm { R } } } \\ & { = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \lambda _ { \mathrm { R } } \{ [ \mathbf { J } _ { \perp \perp } \cdot \boldsymbol { F } _ { \perp } ] \cdot \frac { \boldsymbol { F } _ { \perp } \lambda _ { \mathrm { R } } ^ { \perp } } { \lambda _ { \mathrm { R } } ^ { \perp } \sin { \mathrm { R } } } } \\ & { = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \lambda _ { \mathrm { R } } \{ \mathbf { J } _ { \perp \perp } \cdot \boldsymbol { F } _ { \perp } \} } \\ & = \frac { \lambda _ { \mathrm { R } } \tau } { \lambda _ { \mathrm { R } } \tau } \exp \lambda _ { \mathrm { R } } \{ \mathbf { J } _ { \perp } \cdot \mathbf { J } _ { \perp } \end{array} +$$ + +By exploiting the fact that $q ( \mathbf { s } _ { T } | \mathbf { s } _ { 1 : T - 1 } ) = \mathcal { N } \left( \mathbf { s } _ { T } ; \mu _ { T } , \Sigma _ { T } \right)$ , we can derive closed-form solutions for + +$$ +\mathbf { s } _ { T } ^ { * } \ = \ \underset { \mathbf { s } _ { T } \in \mathbb { G } } { \arg \operatorname* { m a x } } \ \mathcal { N } \left( \mathbf { s } _ { T } ; \mu _ { T } , \Sigma _ { T } \right) +$$ + +when $\mathbb { G }$ has special structure, which enables us to apply gradient descent to solve this constrainedoptimization problem (examples below). With a closed form solution to equation 6, we can easily compute equation 5 using unconstrained-optimization as follows: + +$$ +\begin{array} { r l } & { { \bf s } _ { 1 : T } ^ { * } = \underset { { \bf s } _ { 1 : T - 1 } \in \mathbb { R } ^ { 2 ( T - 1 ) } { \bf s } _ { T } \in \mathbb { G } _ { \mathrm { i n e - s e g m a x } } } { \arg \operatorname* { m a x } } q ( { \bf s } _ { T } | { \bf s } _ { 1 : T - 1 } ) \prod _ { t = 1 } ^ { T - 1 } q ( { \bf s } _ { t } | { \bf s } _ { 1 : t - 1 } ) } \\ & { { \bf s } _ { 1 : T - 1 } ^ { * } = \underset { { \bf s } _ { 1 : T - 1 } \in \mathbb { R } ^ { 2 ( T - 1 ) } } { \arg \operatorname* { m a x } } q ( { \bf s } _ { T } ^ { * } | { \bf s } _ { 1 : t - 1 } ) \prod _ { t = 1 } ^ { T - 1 } q ( { \bf s } _ { t } | { \bf s } _ { 1 : t - 1 } ) . } \end{array} +$$ + +Note that equation 8 only helps solve equation 5 if equation 6 has a closed-form solution. We detail example of goal-sets with such closed-form solutions in the following subsections. + +# B.1.1 POINT GOAL-SET + +The solution to equation 6 in the case of a single desired goal $g \in \mathbb { R } ^ { D }$ is simply: + +$$ +\begin{array} { r l } { \mathbb { G } _ { \mathrm { p o i n t } } ~ \doteq ~ \{ \mathbf { g } _ { T } \} , } & { } \\ { \mathbf { s } _ { T , \mathrm { p o i n t } } ^ { * } ~ \doteq ~ \mathrm { a r g } \operatorname* { m a x } \mathcal { N } \left( \mathbf { s } _ { T } ; \mu _ { T } , \boldsymbol { \Sigma } _ { T } \right) } & { } \\ & { ~ \mathbf { s } _ { T } \in \mathbb { G } _ { \mathrm { p o i n t } } } \\ { ~ } & { = ~ \mathbf { g } _ { T } . } \end{array} +$$ + +More generally, multiple point goals help define optional end points for planning: where the agent only need reach one valid end point (see Fig. 8 for examples), formulated as: + +$$ +\begin{array} { r c l } { \displaystyle \mathbb { G } _ { \mathrm { p o i n t s } } } & { \doteq } & { \displaystyle \{ \mathbf { g } _ { T } ^ { k } \} _ { k = 1 } ^ { K } , } \\ { \displaystyle \mathbf { s } _ { T , \mathrm { p o i n t s } } ^ { * } } & { \stackrel { \cdot } { = } } & { \arg \operatorname* { m a x } _ { T } \mathcal { N } \left( \mathbf { g } _ { T } ^ { k } ; \boldsymbol { \mu } _ { T } , \boldsymbol { \Sigma } _ { T } \right) . } \end{array} +$$ + +# B.1.2 LINE-SEGMENT GOAL-SET + +We can form a goal-set as a finite-length line segment, connecting point $\mathbf { a } \in \mathbb { R } ^ { D }$ to point $\mathbf { b } \in \mathbb { R } ^ { D }$ : + +$$ +\begin{array} { r l } { g _ { \mathrm { l i n e } } ( u ) } & { \doteq \mathbf { a } + u \cdot ( \mathbf { b } - \mathbf { a } ) , ~ u \in \mathbb { R } , } \\ { \mathbb { G } _ { \mathrm { l i n e - s e g m e n t } } ^ { \mathbf { a } \to \mathbf { b } } } & { \doteq \{ g _ { \mathrm { l i n e } } ( u ) : u \in [ 0 , 1 ] \} . } \end{array} +$$ + +The solution to equation 6 in the case of line-segment goals is: + +$$ +\begin{array} { r l } & { \mathbf { s } _ { T , \mathrm { l i n e - s e g m e n t } } ^ { * } \ \doteq \ \underset { \mathbf { s } _ { T } \in \mathbb { G } _ { \mathrm { l i n e - s e m e n t } } ^ { \mathrm { a v } } } { \arg \operatorname* { m a x } } \ N \left( \mathbf { s } _ { T } ; \mu _ { T } , \Sigma _ { T } \right) } \\ & { \quad \quad \quad \quad \quad \quad \quad = \ \mathbf { a } + \operatorname* { m i n } \left( 1 , \ \operatorname* { m a x } \left( 0 , \ \frac { ( \mathbf { b } - \mathbf { a } ) ^ { \top } \Sigma _ { T } ^ { - 1 } ( \mu _ { T } - \mathbf { a } ) } { ( \mathbf { b } - \mathbf { a } ) ^ { \top } \Sigma _ { T } ^ { - 1 } ( \mathbf { b } - \mathbf { a } ) } \right) \right) \cdot ( \mathbf { b } - \mathbf { a } ) . } \end{array} +$$ + +# Proof: + +To solve equation 15 is to find which point along the line $g _ { \mathrm { l i n e } } ( u )$ maximizes $\mathcal { N } ( \cdot ; \mu _ { T } , \Sigma _ { T } )$ subject to the constraint $0 \leq u \leq 1$ : + +$$ +\begin{array} { r l } & { u ^ { * } \ \doteq \ \underset { u \in [ 0 , 1 ] } { \arg \operatorname* { m a x } } \ \mathcal { N } \left( g _ { \mathrm { l i n e } } ( u ) ; \boldsymbol { \mu } _ { T } , \Sigma _ { T } \right) ) } \\ & { \quad = \ \underset { u \in [ 0 , 1 ] } { \arg \operatorname* { m i n } } \ \underbrace { \left( g _ { \mathrm { l i n e } } ( u ) - \boldsymbol { \mu } _ { T } \right) ^ { \top } \Sigma _ { T } ^ { - 1 } ( g _ { \mathrm { l i n e } } ( u ) - \boldsymbol { \mu } _ { T } ) } _ { \mathcal { L } _ { u } ( u ) } . } \end{array} +$$ + +Since $\mathcal { L } _ { u }$ is convex, the optimal value $u ^ { * }$ is value closest to the unconstrained arg max of $\mathcal { L } _ { u } ( u )$ , subject to $0 \leq u \leq 1$ : + +$$ +\begin{array} { r l } & { u _ { \mathbb { R } } ^ { * } \doteq \underset { u \in \mathbb { R } } { \arg \operatorname* { m a x } } \mathcal { L } _ { u } ( u ) , } \\ & { u ^ { * } = \underset { u \in [ 0 , 1 ] } { \arg \operatorname* { m i n } } \mathcal { L } _ { u } ( u ) } \\ & { \quad = \underset { \quad \operatorname* { m i n } \big ( 1 , \ : \operatorname* { m a x } \big ( 0 , \ : u _ { \mathbb { R } } ^ { * } \big ) \big ) . } { \operatorname* { m i n } } } \end{array} +$$ + +We now solve for $u _ { \mathbb { R } } ^ { * }$ + +$$ +\begin{array} { r l } & { u _ { \mathbb { R } } ^ { * } = u : 0 = \frac { \mathrm { d } \mathcal { L } ( u ) } { \mathrm { d } u } = \frac { \mathrm { d } \left( \left( g _ { \mathrm { l i n e } } ( u ) - \mu _ { T } \right) ^ { \top } \Sigma _ { T } ^ { - 1 } \left( g _ { \mathrm { l i n e } } ( u ) - \mu _ { T } \right) \right) } { \mathrm { d } u } } \\ & { \phantom { \quad \quad \quad } = 2 \cdot \frac { \mathrm { d } \left( g _ { \mathrm { l i n e } } ( u ) - \mu _ { T } \right) ^ { \top } } { \mathrm { d } u } \Sigma _ { T } ^ { - 1 } ( g _ { \mathrm { l i n e } } ( u ) - \mu _ { T } ) } \\ & { \phantom { \quad \quad \quad \quad } = 2 \cdot \frac { \mathrm { d } \left( \mathbf { a } + u \cdot \left( \mathbf { b } - \mathbf { a } \right) - \mu _ { T } \right) ^ { \top } } { \mathrm { d } u } \Sigma _ { T } ^ { - 1 } ( \mathbf { a } + u \cdot ( \mathbf { b } - \mathbf { a } ) - \mu _ { T } ) } \\ & { \phantom { \quad \quad \quad \quad } = 2 \cdot ( \mathbf { b } - \mathbf { a } ) ^ { \top } \Sigma _ { T } ^ { - 1 } \left( \mathbf { a } + u \cdot ( \mathbf { b } - \mathbf { a } ) - \mu _ { T } \right) , } \\ & { \quad \quad \quad u _ { \mathbb { R } } ^ { * } = \frac { \left( \mathbf { b } - \mathbf { a } \right) ^ { \top } \Sigma _ { T } ^ { - 1 } \left( \mu _ { T } - \mathbf { a } \right) } { \left( \mathbf { b } - \mathbf { a } \right) ^ { \top } \Sigma _ { T } ^ { - 1 } \left( \mathbf { b } - \mathbf { a } \right) } , } \end{array} +$$ + +which gives us: + +$$ +\begin{array} { r l } & { \mathbf { s } _ { T , \mathrm { l i n e - s e g m e n t } } ^ { * } \ = \ g _ { \mathrm { l i n e } } ( u ^ { * } ) } \\ & { \ = \ \mathbf { a } + u ^ { * } \cdot ( \mathbf { b } - \mathbf { a } ) } \\ & { \ = \ \mathbf { a } + \operatorname* { m i n } \big ( 1 , \ \operatorname* { m a x } \big ( 0 , \ u _ { \mathtt { R } } ^ { * } \big ) \big ) \cdot ( \mathbf { b } - \mathbf { a } ) } \\ & { \ = \ \mathbf { a } + \operatorname* { m i n } \bigg ( 1 , \ \operatorname* { m a x } \bigg ( 0 , \ \frac { \big ( \mathbf { b } - \mathbf { a } \big ) ^ { \top } \Sigma _ { T } ^ { - 1 } ( \mu _ { T } - \mathbf { a } ) } { \big ( \mathbf { b } - \mathbf { a } \big ) ^ { \top } \Sigma _ { T } ^ { - 1 } ( \mathbf { b } - \mathbf { a } ) } \bigg ) \bigg ) \cdot ( \mathbf { b } - \mathbf { a } ) . } \end{array} +$$ + +# B.1.3 MULTIPLE-LINE-SEGMENT GOAL-SET: + +More generally, we can combine multiple line-segments to form piecewise linear “paths” we wish y defining a path that con select the optimal segment $\left( \mathbf { p } _ { 0 } , \mathbf { p } _ { 1 } , . . . , \mathbf { p } _ { N } \right)$ , we can e segment aluate ’s sol $\mathcal { L } _ { u } ^ { i }$ forn to chto +$\mathbb { G } _ { \mathsf { l i n e - s e o m e n t } } ^ { \mathbf { p } _ { i } \to \mathbf { p } _ { i + 1 } }$ $i ^ { * } = \arg \operatorname* { m a x } _ { i } \mathcal { L } _ { u } ^ { i }$ $i ^ { * }$ $u ^ { * }$ $s _ { T } ^ { * }$ + +# B.1.4 POLYGON GOAL-SET + +Instead of a route or path, a user (or program) may wish to provide a general region the agent should go to, and state within that region being equally valid. Polygon regions (including both boundary and interior) offer closed form solution to equation 6 and are simple to specify. A polygon can be specified by an ordered sequence of vertices $( { \bf p } _ { 0 } , { \bf p } _ { 1 } , . . . , { \bf p } _ { N } ) \in \bar { \mathbb { R } } ^ { N \times 2 }$ . Edges are then defined as the sequence of line-segments between successive vertices (and a final edge between first and last vertex): $\big ( \big ( \mathbf { p } _ { 0 } , \mathbf { p } _ { 1 } \big ) , . . . , \big ( \mathbf { p } _ { N - 1 } , \mathbf { p } _ { N } \big ) , \big ( \mathbf { p } _ { N } , \mathbf { p } _ { 0 } \big ) \big )$ . Examples shown in Fig. 6 and 7. + +Solving equation 6 with a polygon has two cases: depending whether $\mu _ { T }$ is inside the polygon, or outside. If $\mu _ { T }$ lies inside the polygon, then the optimal value for $\mathbf { s } _ { T } ^ { * }$ that maximizes $\mathcal { N } ( \mathbf { s } _ { T } ^ { * } ; \mu _ { T } , \boldsymbol { \Sigma _ { T } } )$ is simply $\mu _ { T }$ : the mode of the Gaussian distribution. Otherwise, if $\mu _ { T }$ lies outside the polygon, then the optimal value $\mathbf { s } _ { T } ^ { \ast }$ will lie on one of the polygon’s edges, solved using B.1.3. + +# B.2 WAYPOINTER DETAILS + +The waypointer uses the CARLA planner’s provided route to generate waypoints. In the constrainedbased planning goal likelihoods, we use this route to generate waypoints without interpolating between them. In the relaxed goal likelihoods, we interpolate this route to every 2 meters, and use the first 20 waypoints. As mentioned in the main text, one variant of our approach uses a “smart” waypointer. This waypointer simply removes nearby waypoints closer than 5 meters from the vehicle when a green light is observed in the measurements provided by CARLA, to encourage the agent to move forward, and removes far waypoints beyond 5 meters from the vehicle when a red light is observed in the measurements provided by CARLA. Note that the performance differences between our method without the smart waypointer and our method with the smart waypointer are small: the only signal in the metrics is that the smart waypointer improves the vehicle’s ability to stop for red lights, however, it is quite adept at doing so without the smart waypointer. + +# B.3 CONSTRUCTING GOAL SETS + +Given the in-lane waypoints generated by CARLA’s route planner, we use these to create Point goal sets, Line-Segment goal sets, and Polygon Goal-Sets, which respectively correspond to the (A) Final-State Indicator, (B) Line-Segment Final-State Indicator, and (C) Final-State Region Indicator described in Section 2.2. For (A), we simply feed the waypoints directly into the Final-State Indicator, which results in a constrained optimization to ensure that the vehicle’s current position in the goal set, in order to allo $S _ { T } \in \mathbb { G } \overset { \cdot } { = } \{ g _ { T } ^ { k } \} _ { k = 1 } ^ { K }$ . We also includeddient-descent based optimization is then formed from combining Eq. 8 with Eq. 12. The gradient to the nearest goal of the final state of the partially-optimized plan encourage the optimization to move the plan closer to that goal. We used $K = 1 0$ . We applied the same procedure to generate the goal set for the (B) Line Segment indicator, as the waypoints returned by the planner are ordered. Finally, for the (C) Final-State Region Indicator (polygon), we used the ordered waypoints as the “skeleton” of a polygon that surrounds. It was created by adding a two vertices for each point $\mathbf { v } _ { t }$ in the skeleton at a distance 1 meter from $\mathbf { v } _ { t }$ perpendicular to the segment connecting the surrounding points $\left( \mathbf { v } _ { t - 1 } , \mathbf { v } _ { t + 1 } \right)$ . This resulted in a goal set $\mathbb { G } _ { \mathrm { p o l y g o n } } \supset \mathbb { G } _ { \mathrm { l i n e - s e g m e n t } } .$ , as it surrounds the line segments. The (F) Gaussian Final-State Mixture goal set was constructed in the same way as (A), and also used when the pothole costs were added. + +For the methods we implemented, the task is to drive the furthest road location from the vehicle’s initial position. Note that this protocol more difficult than the one used in prior work Codevilla et al. (2018); Liang et al. (2018); Sauer et al. (2018); Li et al. (2018); Codevilla et al. (2019), which has no distance guarantees between start positions and goals, and often results in shorter paths. + +# C ARCHITECTURE AND TRAINING DETAILS + +The architecture of $q ( \mathbf { S } | \phi )$ is shown in Table 5. + +# C.1 PRIOR VISUALIZATION AND STATISTICS + +We show examples of the priors multimodality in Fig. 13 + +![](images/165cba554b1e126586e7d95b1c3a2ea09d4d92b423f23288cb25513c6941cb37.jpg) +Figure 12: Architecture of $m _ { \theta }$ and $\sigma _ { \theta }$ , which parameterize $q _ { \theta } ( \mathbf { S } | \phi = \{ \chi , \mathbf { s } _ { - \tau : 0 } , \lambda \} )$ . Inputs: LIDAR $\chi$ , past-states ${ \bf s } _ { - \tau : 0 }$ , light-state $\lambda$ , and latent noise $\mathbf { Z } _ { 1 : T }$ . Output: trajectory $\mathbf { S } _ { 1 : T }$ . Details in Appendix C. + +Table 5: Detailed Architecture that implements $\mathbf { s } _ { 1 : T } = f ( \mathbf { z } _ { 1 : T } , \phi )$ . Typically, $T = 4 0$ , $D = 2 , H =$ $W = 2 0 0$ . + +
ComponentInput [dimensionality]Layer or OperationOutput [dimensionality]Details
Static featurizationofcontext:={x,s:A}.
MapFeatx[H,W,2]2D Convolution1x[H,W,32]3 ×3 stride 1,ReLu
MapFeat1-1x[H,W,32]2D Convolutionx[H,W,32]3 × 3 stride 1,ReLu,i∈[2,...,8]
MapFeat8x[H,W,32]2D Convolutionr[H,W,8]3 × 3 stride 1,ReLu
PastRNNS-T:0[T+1,D]RNN[32]GRU across time dimension
Dynamic generation via loop:fort∈{0,...,T-1}.
MapFeats[D]Interpolatet=F(st)[8]Differentiable interpolation
JointFeatt,S0,²n,s0²n田a入pt [D+50+32+1]Concatenate ()
FutureRNNpt[D+50+32+1]RNNpt[50]GRU
FutureMLP1pt[50]Affine (FC)2pt[200]Tanh activation
FutureMLP2pt[200]Affine (FC)mt [D],εt [D,D]Identity activation
MatrixExp[D,D]Tt[D,D]Differentiable Matrix Exponential Rhinehart et al. (2018)
VerletStepSt,St-1,mt,Ot,Zt2st-St-1+mt+OtZtSt+1[D]
+ +# C.1.1 STATISTICS OF PRIOR AND GOAL LIKELIHOODS + +Following are the values of the planning criterion on $N \approx 8 \cdot 1 0 ^ { 3 }$ rounds from applying the “Gaussian Final-State Mixture” to Town01 Dynamic. Mean of log $q ( \mathbf { s } ^ { * } | \boldsymbol { \phi } ) \approx 1 0 4$ . Mean of $\bar { \log { p ( \mathcal { G } | \mathbf { s } ^ { * } , \boldsymbol { \phi } ) } } = - 4$ . This illustrates that while the prior’s value mostly dominates the values of the final plans, the Gaussian Final-State Goal Mixture likelihood has a moderate amount of influence on the value of the final plan. + +# C.2 DATASET + +Before training $q ( \mathbf { S } | \phi )$ , we ran CARLA’s expert in the dynamic world setting of Town01 to collect a dataset of examples. We have prepared the dataset of collected data for public release upon publication. We ran the autopilot in Town01 for over 900 episodes of 100 seconds each in the presence of 100 other vehicles, and recorded the trajectory of every vehicle and the autopilot’s LIDAR observation. We randomized episodes to either train, validation, or test sets. We created sets of 60,701 train, 7586 validation, and 7567 test scenes, each with 2 seconds of past and 4 seconds of future position information at $1 0 \mathrm { H z }$ . The dataset also includes 100 episodes obtained by following the same procedure in Town02. + +# D BASELINE DETAILS + +# D.1 CONDITIONAL IMITATION LEARNING OF STATES (CILS): + +We designed a conditional imitation learning baseline that predicts the setpoint for the PID-controller. Each receives the same scene observations (LIDAR) and is trained with the same set of trajectories as our main method. It uses nearly the same architecture as that of the original CIL, except it outputs setpoints instead of controls, and also observes the traffic light information. We found it very effective for stable control on straightaways. When the model encounters corners, however, prediction is more difficult, as in order to successfully avoid the curbs, the model must implicitly plan a safe path. We found that using the traffic light information allowed it to stop more frequently. + +![](images/106d03c1b2c5f19e0b13f53be203f8bf17bd27eb4f8541bef1d198d912953f5c.jpg) +Figure 13: Left: Samples from the prior, $q ( \mathbf { S } | \phi )$ , go left or right. Right: Samples go forward or right. + +# D.2 MODEL-BASED REINFORCEMENT LEARNING: + +Static-world To compare against a purely model-based reinforcement learning algorithm, we propose a model-based reinforcement learning baseline. This baseline first learns a forwards dynamics model $\mathbf { s } _ { t + 1 } = f ( \mathbf { s } _ { t - 3 : t } , \mathbf { a } _ { t } )$ given observed expert data $\cdot { a } _ { t }$ are recorded vehicle actions). We use an MLP with two hidden layers, each 100 units. Note that our forwards dynamics model does not imitate the expert preferred actions, but only models what is physically possible. Together with the same LIDAR map $x$ our method uses to locate obstacles, this baseline uses its dynamics model to plan a reachability tree LaValle (2006) through the free-for the lowest-cost path that ends ncost of a position is determined by $\begin{array} { r } { C ( \mathbf { s } _ { 1 : T } ; \mathbf { g } _ { T } ) = | | \mathbf { s } _ { T } - \mathbf { g } _ { T } | | _ { 2 } + \sum _ { t = 1 } ^ { T } c ( \mathbf { s } _ { t } ) } \end{array}$ $c ( \mathbf { s } _ { t } ) = 1 . 5 \mathbb { 1 } ( \mathbf { s } _ { t } < 1 $ $+ 0 . 7 5 \mathbb { 1 } ( 1 < =$ $\mathbf { s } _ { t } < 2$ meters from any obstacle) $+ \ddot { \mathbf { s } _ { t } }$ . + +We plan forwards over 20 time steps using a breadth-first search over CARLA steering angle $\{ - 0 . 3 , - 0 . 1 , 0 . , 0 . 1 , 0 . 3 \}$ , noting valid steering angles are normalized to $[ - 1 , 1 ]$ , with constant throttle at 0.5, noting the valid throttle range is [0, 1]. Our search expands each state node by the available actions and retains the 50 closest nodes to the waypoint. The planned trajectory efficiently reaches the waypoint, and can successfully plan around perceived obstacles to avoid getting stuck. To convert the LIDAR images into obstacle maps, we expanded all obstacles by the approximate radius of the car, 1.5 meters. + +Dynamic-world We use the same setup as the Static-MBRL method, except we add a discrete temporal dimension to the search space (one $\mathbb { R } ^ { 2 }$ spatial dimension per T time steps into the future). All static obstacles remain static, however all LIDAR points that were known to collide with a vehicle are now removed: and replaced at every time step using a constant velocity model of that vehicle. We found that the main failure mode was due to both to inaccuracy in constant velocity prediction as well as the model’s inability to perceive lanes in the LIDAR. The vehicle would sometimes wander into the opposing traffic’s lane, having failed to anticipate an oncoming vehicle blocking its path. + +# E ROBUSTNESS + +# E.1 DECOY WAYPOINTS EXPERIMENTS + +In the decoy waypoints experiment, the perturbation distribution is $\mathcal { N } ( 0 , \sigma = 8 m )$ : each waypoint is perturbed with a standard deviation of 8 meters. One failure mode of this approach is when decoy waypoints lie on a valid off-route path at intersections, which temporarily confuses the planner about the best route. Additional visualizations are shown in Fig. 14. + +![](images/d8b13395204615bce46b5db80e8e75041fa8fdfb55f5d3cb5b16d5a4c9f0ca9e.jpg) +Figure 14: Tolerating bad waypoints. The planner prefers waypoints in the distribution of expert behavior (on the road at a reasonable distance). Columns 1,2: Planning with $^ 1 / 2$ decoy waypoints. Columns 3,4: Planning with all waypoints on the wrong side of the road. + +# E.2 PLAN RELIABILITY ESTIMATION + +Besides using our model to make a best-effort attempt to reach a user-specified goal, the fact that our model produces explicit likelihoods can also be leveraged to test the reliability of a plan by evaluating whether reaching particular waypoints will result in human-like behavior or not. This capability can be quite important for real-world safety-critical applications, such as autonomous driving, and can be used to build a degree of fault tolerance into the system. We designed a classification experiment to evaluate how well our model can recognize safe and unsafe plans. We planned our model to known good waypoints (where the expert actually went) and known bad waypoints (off-road) on 1650 held-out test scenes. We used the planning criterion to classify these as good and bad plans and found that we can detect these bad plans with $9 \bar { 7 } . 5 \%$ recall and $9 0 . { \dot { 2 } } \%$ precision. This result indicates imitative models could be effective in estimating the reliability of plans. + +We determined a threshold on the planning criterion by single-goal planning to the expert’s final location on offline validation data and setting it to the criterion’s mean minus one stddev. Although a more intelligent calibration could be performed by analyzing the information retrieval statistics on the offline validation, we found this simple calibration to yield reasonably good performance. We used 1650 test scenes to perform classification of plans to three different types of waypoints 1) where the expert actually arrived at time $T$ $8 9 . 4 \%$ reliable), 2) waypoints $2 0 \mathrm { m }$ ahead along the waypointer-provided route, which are often near where the expert arrives $7 3 . 8 \%$ reliable) 3) the same waypoints from 2), shifted $2 . 5 \mathrm { m }$ off of the road $( 2 . 5 \%$ reliable). This shows that our learned model exhibits a strong preference for valid waypoints. Therefore, a waypointer that provides expert waypoints via 1) half of the time, and slightly out-of-distribution waypoints via 3) in the other half, an “unreliable” plan classifier achieves $9 \hat { 7 } . 5 \hat { \% }$ recall and $9 0 . 2 \%$ precision. + +# E.3 OUT-OF-DISTRIBUTION ROBUSTNESS + +The existence of both (1) observation noise and (2) uncertain/out-of-distribution observations is an important practical issue for autonomous vehicles. Although our current method only conditions on our current observation, several extensions could help mitigate the negative effects of both (1) and (2). For (1), a Bayesian filtering formulation is arguably most ideal, to better estimate (and track) the location of static and dynamic obstacles under noise. However, such high-dimensional filtering are often intractable, and might necessitate approximate Bayesian deep learning techniques, RNNs, or frame stacking, to benefit from multiple observations. Addressing (2) would ideally be done by placing a prior over our neural network weights, to derive some measure of confidence in our density estimation of how expert each plan is, such that unfamiliar scenes generate large uncertainty on our density estimate that we could detect, and react cautiously (pessimistically) to. One way to address the situation if the distributions are very different is to adopt an ensembling approach Lakshminarayanan et al. (2017) in order for the method to determine when the inputs are out of distribution — the ensemble will usually have higher variance (i.e. disagree) when each element of the ensemble is provided with an out-of-distribution input. For instance, this variance could be used as a penalization in the planning criterion. + +# E.4 TRAFFIC-LIGHT NOISE + +As discussed, our model assumes access to the traffic-light state provided by the simulator, which we call $\lambda$ . However, access to this state would be noisy in practice, because it relies on a sensor-based (usually image-based) detection and classification module. + +We performed an experiment to assess robustness to noise in $\lambda$ : we simulated noise in $\lambda$ by “flipping" the light state with $20 \%$ probability, corresponding to a light state detector that has $80 \%$ accuracy on average. “Flipping" means that if the light is green, then changingλ to indicate red, and if the light is red, then changing $\lambda$ to indicate green. We performed this following the experimental method of “Region Final-St. Indicator S.” in dynamic Town02, and ran it with three separate seeds. The means and their standard errors are reported in Table 6. The conclusion we draw is that the approach can still achieve success most of the time, although it tends to violate red-lights more often. Qualitatively, we observed the resulting behavior near intersections to sometimes be “jerky”, with the model alternating between stopping and non-stopping plans. We hypothesize that the model itself could be made more robust if the noise in $\lambda$ was also present in the training data. + +Table 6: We evaluate the effect of noise in the traffic-light state $( \lambda )$ on CARLA’s Dynamic Navigation task. Noise in the light state predictably degrades overall and red-light performance, but not to the point of preventing the method from operating at all. + +
Town02 Dynamic Navigation MethodSuccessRan Red LightWrong laneOff road
Region Final-St. Indicator S. (original)88%±3.32.57%±0.040.49%±0.322.6%±1.06
Region Final-St. Indicator S. (noisy λ)76%±5.034.8%± 2.40.15%±0.041.79% ±0.34
+ +# F POTHOLE EXPERIMENT DETAILS + +We simulated potholes in the environment by randomly inserting them in the cost map near each waypoint $i$ with offsets distributed $\mathcal { N } _ { i } ( \mu { = } [ - 1 5 \mathrm { m } , 0 \mathrm { m } ]$ , $\Sigma = \mathrm { d i a g } ( [ 1 , 0 . 0 1 ] ) )$ , (i.e. mean-centered on the right side of the lane $1 5 \mathrm { m }$ before each waypoint). We inserted pixels of root cost $- 1 e 3$ in the cost map at a single sample of each ${ \mathcal { N } } _ { i }$ , binary-dilated the cost map by $^ 1 / 3$ of the lane-width (spreading the cost to neighboring pixels), and then blurred the cost map by convolving with a normalized truncated Gaussian filter of $\sigma = 1$ and truncation width 1. + +# G BASELINE VISUALIZATIONS + +See Fig. 15 for a visualization of our baseline methods. + +# H HYPERPARAMETERS + +In order to tune the $\epsilon$ hyperparameter of the unconstrained likelihoods, we undertook the following binary-search procedure. When the prior frequently overwhelmed the posterior, we set $\epsilon \gets 0 . 2 \epsilon$ , to yield tighter covariances, and thus more penalty for failing to satisfy the goals. When the posterior frequently overwhelmed the prior, we set $\epsilon 5 \epsilon$ , to yield looser covariances, and thus less penalty for failing to satisfy the goals. We executed this process three times: once for the “Gaussian Final-State Mixture” experiments (Section 4), once for the “Noise Robustness” Experiments (Section 4.1), and once for the pothole-planning experiments (Section 4.2). Note that the Constrained-Goal Likelihoods introduced no hyperparameters to tune. + +![](images/55a6407c4cd42ba8899098a9c834492b60df3c9d00acac3919a53aec20a9e353.jpg) +Figure 15: Baseline methods we compare against. The red crosses indicate the past 10 positions of the agent. Left: Imitation Learning baseline: the green cross indicates the provided goal, and the yellow plus indicates the predicted setpoint for the controller. Right: Model-based RL baseline: the green regions indicate the model’s predicted reachability, the red regions are post-processed LIDAR used to create its obstacle map. \ No newline at end of file diff --git a/parse/train/Skl4mRNYDr/Skl4mRNYDr_content_list.json b/parse/train/Skl4mRNYDr/Skl4mRNYDr_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..c50148791dfec7a1b9fc0645a127d716797cf1bb --- /dev/null +++ b/parse/train/Skl4mRNYDr/Skl4mRNYDr_content_list.json @@ -0,0 +1,2248 @@ +[ + { + "type": "text", + "text": "DEEP IMITATIVE MODELS FOR FLEXIBLE INFERENCE, PLANNING, AND CONTROL ", + "text_level": 1, + "bbox": [ + 176, + 99, + 781, + 147 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Nicholas Rhinehart UC Berkeley nrhinehart@berkeley.edu ", + "bbox": [ + 183, + 172, + 362, + 214 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Rowan McAllister UC Berkeley rmcallister@berkeley.edu ", + "bbox": [ + 401, + 172, + 589, + 214 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Sergey Levine \nUC Berkeley \nsvlevine@berkeley.edu ", + "bbox": [ + 627, + 172, + 792, + 214 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 252, + 544, + 267 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Imitation Learning $\\left( \\operatorname { I L } \\right)$ is an appealing approach to learn desirable autonomous behavior. However, directing IL to achieve arbitrary goals is difficult. In contrast, planning-based algorithms use dynamics models and reward functions to achieve goals. Yet, reward functions that evoke desirable behavior are often difficult to specify. In this paper, we propose “Imitative Models” to combine the benefits of $\\mathrm { I L }$ and goal-directed planning. Imitative Models are probabilistic predictive models of desirable behavior able to plan interpretable expert-like trajectories to achieve specified goals. We derive families of flexible goal objectives, including constrained goal regions, unconstrained goal sets, and energy-based goals. We show that our method can use these objectives to successfully direct behavior. Our method substantially outperforms six IL approaches and a planning-based approach in a dynamic simulated autonomous driving task, and is efficiently learned from expert demonstrations without online data collection. We also show our approach is robust to poorly specified goals, such as goals on the wrong side of the road. ", + "bbox": [ + 233, + 289, + 766, + 483 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 525, + 334, + 541 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Imitation learning (IL) is a framework for learning a model to mimic behavior. At test-time, the model pursues its best-guess of desirable behavior. By letting the model choose its own behavior, we cannot direct it to achieve different goals. While work has augmented IL with goal conditioning (Dosovitskiy & Koltun, 2016; Codevilla et al., 2018), it requires goals to be specified during training, explicit goal labels, and are simple (e.g., turning). In contrast, we seek flexibility to achieve general goals for which we have no demonstrations. ", + "bbox": [ + 174, + 561, + 825, + 645 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In contrast to IL, planning-based algorithms like model-based reinforcement learning (MBRL) methods do not require expert demonstrations. MBRL can adapt to new tasks specified through reward functions (Kuvayev & Sutton, 1996; Deisenroth & Rasmussen, 2011). The “model” is a dynamics model, used to plan under the user-supplied reward function. Planning enables these approaches to perform new tasks at test-time. The key drawback is that these models learn dynamics of possible behavior rather than dynamics of desirable behavior. This means that the responsibility of evoking desirable behavior is entirely deferred to engineering the input reward function. Designing reward functions that cause MBRL to evoke complex, desirable behavior is difficult when the space of possible undesirable behaviors is large. In order to succeed, the rewards cannot lead the model astray towards observations significantly different than those with which the model was trained. ", + "bbox": [ + 174, + 652, + 825, + 791 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Our goal is to devise an algorithm that combines the advantages of MBRL and IL by offering MBRL’s flexibility to achieve new tasks at test-time and IL’s potential to learn desirable behavior entirely from offline data. To accomplish this, we first train a model to forecast expert trajectories with a density function, which can score trajectories and plans by how likely they are to come from the expert. A probabilistic model is necessary because expert behavior is stochastic: e.g. at an intersection, the expert could choose to turn left or right. Next, we derive a principled probabilistic inference objective to create plans that incorporate both (1) the model and (2) arbitrary new tasks. Finally, we derive families of tasks that we can provide to the inference framework. Our method can accomplish new tasks specified as complex goals without having seen an expert complete these tasks before. ", + "bbox": [ + 174, + 797, + 825, + 924 + ], + "page_idx": 0 + }, + { + "type": "image", + "img_path": "images/bf69f40603bad34ad920a937a823802c36761e74323933467cc0c50446e6d9b5.jpg", + "image_caption": [ + "Figure 1: Our method: deep imitative models. Top Center. We use demonstrations to learn a probability density function $q$ of future behavior and deploy it to accomplish various tasks. Left: A region in the ground plane is input to a planning procedure that reasons about how the expert would achieve that task. It coarsely specifies a destination, and guides the vehicle to turn left. Right: Goal positions and potholes yield a plan that avoids potholes and achieves one of the goals on the right. " + ], + "image_footnote": [], + "bbox": [ + 187, + 101, + 815, + 334 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We investigate properties of our method on a dynamic simulated autonomous driving task (see Fig. 1). Videos are available at https://sites.google.com/view/imitative-models. Our contributions are as follows: ", + "bbox": [ + 173, + 452, + 826, + 492 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "1. Interpretable expert-like plans with minimal reward engineering. Our method outputs multistep expert-like plans, offering superior interpretability to one-step imitation learning models. In contrast to MBRL, our method generates expert-like behaviors with minimal reward engineering. \n2. Flexibility to new tasks: In contrast to IL, our method flexibly incorporates and achieves goals not seen during training, and performs complex tasks that were never demonstrated, such as navigating to goal regions and avoiding test-time only potholes, as depicted in Fig. 1. \n3. Robustness to goal specification noise: We show that our method is robust to noise in the goal specification. In our application, we show that our agent can receive goals on the wrong side of the road, yet still navigate towards them while staying on the correct side of the road. \n4. State-of-the-art CARLA performance: Our method substantially outperforms MBRL, a custom IL method, and all five prior CARLA IL methods known to us. It learned near-perfect driving through dynamic and static CARLA environments from expert observations alone. ", + "bbox": [ + 173, + 508, + 826, + 688 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 DEEP IMITATIVE MODELS ", + "text_level": 1, + "bbox": [ + 176, + 712, + 421, + 728 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We begin by formalizing assumptions and notation. We model continuous-state, discrete-time, Partially-Observed Markov Decision Processes (POMDPs). For brevity, we call the components of state of which we have direct observations the agent’s “state”, although we explicitly assume these states do not represent the full Markovian world state. Our agent’s state at time $t$ is $\\bar { \\bf s } _ { t } \\in \\mathbb { R } ^ { D }$ ; $t = 0$ refers to the current time step, and $\\phi$ is all of the agent’s observations. Variables are bolded. Random variables are capitalized. Absent subscripts denote all future time steps, e.g. $\\mathbf { S } \\doteq \\mathbf { S } _ { 1 : T } \\in \\mathbb { R } ^ { T \\times D }$ . We denote a probability density function of a random variable $\\mathbf { S }$ as $p ( \\mathbf { S } )$ , and its value as $p ( \\mathbf { s } ) \\doteq p ( \\mathbf { S } = \\mathbf { s } )$ . ", + "bbox": [ + 173, + 746, + 826, + 843 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "To learn agent dynamics that are possible and preferred, we construct a model of expert behavior. We fit an “Imitative Model” $\\begin{array} { r } { q ( \\mathbf { S } _ { 1 : T } | \\phi ) = \\prod _ { t = 1 } ^ { T } q ( \\mathbf { S } _ { t } | \\mathbf { S } _ { 1 : t - 1 } , \\phi ) } \\end{array}$ to a dataset of expert trajectories $\\mathcal { D } = \\{ ( s ^ { i } , \\phi ^ { i } ) \\} _ { i = 1 } ^ { N }$ drawn from a (unknown) distribution of expert behavior $s ^ { i } \\sim p ( \\mathbf { S } | \\phi ^ { i } )$ . By training $q ( \\mathbf { S } | \\phi )$ to forecast expert trajectories with high likelihood, we model the scene-conditioned expert dynamics, which can score trajectories by how likely they are to come from the expert. ", + "bbox": [ + 173, + 849, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 IMITATIVE PLANNING TO GOALS", + "text_level": 1, + "bbox": [ + 176, + 103, + 444, + 117 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "After training, $q ( \\mathbf { S } | \\phi )$ can generate trajectories that resemble those that the expert might generate – e.g. trajectories that navigate roads with expert-like maneuvers. However, these maneuvers will not have a specific goal. Beyond generating human-like behaviors, we wish to direct our agent to goals and have the agent automatically reason about the necessary mid-level details. We define general tasks by a set of goal variables $\\mathcal { G }$ . The probability of a plan s conditioned on the goal $\\mathcal { G }$ is modelled by a posterior $p ( \\mathbf { s } | \\mathcal { G } , \\phi )$ . This posterior is implemented with $q ( \\mathbf { s } | \\boldsymbol { \\phi } )$ as a learned imitation prior and $p ( \\mathcal { G } | \\mathbf { s } , \\phi )$ as a test-time goal likelihood. We give examples of $p ( { \\mathcal { G } } | \\mathbf { s } , \\phi )$ after deriving a maximum a posteriori inference procedure to generate expert-like plans that achieve abstract goals: ", + "bbox": [ + 173, + 128, + 826, + 241 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/b0c5d6faad506e29b1f6cc828fa5cbffc416d10408e63aa66b0ef40929e12ad2.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathbf { s } ^ { * } \\ \\stackrel { } { = } \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log p ( \\mathbf { s } | \\mathcal { G } , \\boldsymbol { \\phi } ) \\ = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log q ( \\mathbf { s } | \\boldsymbol { \\phi } ) + \\log p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) - \\log p ( \\mathcal { G } | \\boldsymbol { \\phi } ) } & { } \\\\ { \\ \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log \\underset { \\underset { \\mathrm { i m i t a t i o n ~ p r i o r } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } + \\log \\underset { \\mathrm { g o a l l i k e l i h o o d } } { \\underbrace { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) } } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 222, + 247, + 776, + 311 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We perform gradient-based optimization of Eq. 1, and defer this discussion to Appendix A. Next, we discuss several goal likelihoods, which direct the planning in different ways. They communicate goals they desire the agent to achieve, but not how to achieve them. The planning procedure determines how to achieve them by producing paths similar to those an expert would have taken to reach the given goal. In contrast to black-box one-step IL that predicts controls, our method produces interpretable multi-step plans accompanied by two scores. One estimates the plan’s “expertness”, the second estimates its probability to achieve the goal. Their sum communicates the plan’s overall quality. ", + "bbox": [ + 173, + 318, + 825, + 416 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Our approach can also be viewed as a learning-based method to integrate mid-level and high-level controllers together, where demonstrations from both are available at train-time, only the highlevel controller is available at test-time, and the high-level controller can vary. The high-level controller’s action specifies a subgoal for the mid-level controller. A density model of future trajectories of an expert mid-level controller is learned at train-time, and is amenable to different types of direction as specified by the high-level controller. In this sense, the model is an “apprentice”, having learned to imitate mid-level behaviors. In our application, the high-level controller is composed of an $A ^ { * }$ path-planning algorithm and one of a library of components that forms goal likelihoods from the waypoints produced by $A ^ { * }$ . Connecting this to related approaches, learning the midlevel controller (Imitative Model) resembles offline IL, whereas inference with an Imitative Model resembles trajectory optimization in MBRL, given goals provided by the high-level controller. ", + "bbox": [ + 173, + 421, + 826, + 575 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 CONSTRUCTING GOAL LIKELIHOODS ", + "text_level": 1, + "bbox": [ + 176, + 592, + 473, + 607 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Constraint-based planning to goal sets (hyperparameter-free): Consider the setting where we have access to a set of desired final states, one of which the agent should achieve. We can model this by applying a Dirac-delta distribution on the final state, to ensure it lands in a goal set $\\mathbb { G } \\subset \\mathbb { R } ^ { D }$ : ", + "bbox": [ + 174, + 618, + 825, + 661 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/2d8dca6305b70659505760da0152673a4803688e4eaa2e8e08df20999e8cc5ad.jpg", + "text": "$$\np ( \\mathcal { G } | \\mathbf { s } , \\phi ) \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 1 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\in \\mathbb { G } , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 0 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\ncong \\mathbb { G } .\n$$", + "text_format": "latex", + "bbox": [ + 253, + 667, + 745, + 685 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "$\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } )$ ’s partial support of $\\mathbf { s } _ { T } \\in \\mathbb { G } \\subset \\mathbb { R } ^ { D }$ constrains ${ \\bf s } _ { T }$ and introduces no hyperparameters into $p ( \\mathcal { G } | \\mathbf { s } , \\phi )$ . For each choice of $\\mathbb { G }$ , we have a different way to provide high-level task information to the agent. The simplest choice for $\\mathbb { G }$ is a finite set of points: a (A) Final-State Indicator likelihood. We applied (A) to a sequence of waypoints received from a standard $\\mathbf { A } ^ { * }$ planner (provided by the CARLA simulator), and outperformed all prior dynamic-world CARLA methods known to us. We can also consider providing an infinite number of points. Providing a set of line-segments as $\\mathbb { G }$ yields a (B) Line-Segment Final-State Indicator likelihood, which encourages the final state to land along one of the segments. Finally, consider a (C) Region Final-State Indicator likelihood in which $\\mathbb { G }$ is a polygon (see Figs. 1 and 4). Solving Eq. 1 with (C) amounts to planning the most expert-like trajectory that ends inside a goal region. Appendix B provides derivations, implementation details, and additional visualizations. We found these methods to work well when $\\mathbb { G }$ contains “expert-like” final position(s), as the prior strongly penalizes plans ending in non-expert-like positions. ", + "bbox": [ + 173, + 693, + 825, + 861 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Unconstrained planning to goal sets (hyperparameter-based): Instead of constraining that the final state of the trajectory reach a goal, we can use a goal likelihood with full support $( \\mathbf { s } _ { T } \\in \\mathbb { R } ^ { D } )$ , centered at a desired final state. This lets the goal likelihood encourage goals, rather than dictate them. If there is a single desired goal $\\langle \\mathbf { G } = \\{ \\mathbf { g } _ { T } \\}$ ), the $\\mathbf { \\eta } ^ { ( \\mathbf { D } ) }$ Gaussian Final-State likelihood $p ( { \\mathcal { G } } | \\mathbf { s } , \\phi ) \\gets$ $\\mathcal { N } ( \\mathbf { g } _ { T } ; \\mathbf { s } _ { T } , \\epsilon I )$ treats ${ \\bf g } _ { T }$ as a noisy observation of a final future state, and encourages the plan to arrive at a final state. We can also plan to $K$ successive states $\\mathcal { G } = ( \\mathbf { g } _ { T - K + 1 } , \\dots , \\mathbf { g } _ { T } )$ with a $\\mathbf { ( E ) }$ Gaussian State Sequence: $\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\acute { \\phi } ) \\prod _ { k = T - K + 1 } ^ { T } \\mathcal { N } ( \\mathbf { g } _ { k } ; \\mathbf { s } _ { k } , \\epsilon I ) } \\end{array}$ if a program wishes to specify a desired end velocity or acceleration when reaching the final state ${ \\bf g } _ { T }$ (Fig. 2). Alternatively, a planner may propose a set of states with the intention that the agent should reach any one of them. This is possible by using a $\\mathbf { \\Pi } ^ { ( \\mathbf { F } ) }$ Gaussian Final-State Mixture: $\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\gets \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathcal { N } ( \\mathbf { g } _ { T } ^ { k } ; \\mathbf { s } _ { T } , \\boldsymbol { \\epsilon } I ) } \\end{array}$ and is useful if some of those final states are not reachable with an expert-like plan. Unlike A–C, D–F introduce a hyperparameter $\\cdot \\epsilon ^ { * }$ . However, they are useful when no states in $\\mathbb { G }$ correspond to observed expert behavior, as they allow the imitation prior to be robust to poorly specified goals. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 103, + 825, + 229 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Costed planning: Our model has the additional flexibility to accept arbitrary user-specified costs $c$ at test-time. For example, we may have updated knowledge of new hazards at test-time, such as a given map of potholes or a predicted cost map. Cost-based knowledge $c ( \\mathbf { s } _ { i } | \\phi )$ can be incorporated as an (G) Energy-based likelihood: $\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\overset { } { \\propto } \\prod _ { t = 1 } ^ { T } e ^ { - c ( \\mathbf { s } _ { t } | \\boldsymbol { \\phi } ) } } \\end{array}$ (Todorov, 2007; Levine, 2018). This can be combined with other goal-seeking objectives by simply multiplying the likelihoods together. Examples of combining G (energy-based) with F (Gaussian mixture) were shown in Fig. 1 and are shown in Fig. 3. Next, we describe instantiating $q ( \\mathbf { S } | \\phi )$ in CARLA (Dosovitskiy et al., 2017). ", + "bbox": [ + 174, + 236, + 825, + 337 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Designing general goal likelihoods can be considered a form of reward engineering if there are no restrictions on the goal likelihoods. This connection is best seen in (G), which has an explicit cost term. One reason why it is easier to design goal likelihoods than to design reward functions is that the task of evoking most aspects of goal-driven behavior is already learned by the prior $q ( \\mathbf { s } | \\boldsymbol { \\phi } )$ , which models desirable behavior. This is in contrast to model-free RL, which entirely relies on the reward design to evoke goal-driven behavior, and in contrast to model-based RL, which heavily relies on the reward design to evoke goal-driven behavior, as its dynamics model learns what is possible, rather than what is desirable. Additionally, it is easy to design goal likelihoods when goals provide a significant amount of information that obviates the need to do any manual tuning. The main assumption is that one of the goals in the goal set is reachable within the model’s time-horizon. ", + "bbox": [ + 173, + 343, + 825, + 482 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/4615e57662296686c7ab9b9ee0503fbe3ccb28b5dc38253123f746e3fa2d5bed.jpg", + "image_caption": [ + "Figure 2: Imitative planning with the Gaussian State Sequence enables finegrained control of the plans. " + ], + "image_footnote": [], + "bbox": [ + 178, + 501, + 418, + 593 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/ed1a6dfab38dd5fb50623c62291f64dbfaa63101e7cb10746575f7eca777e22d.jpg", + "image_caption": [ + "Figure 3: Costs can be assigned to “potholes” only seen at test-time. The planner prefers routes avoiding potholes. " + ], + "image_footnote": [], + "bbox": [ + 437, + 501, + 681, + 593 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/2d9fd574887390907a8ef9e0db2cca4da1bd779e49a15a1648cc1976be125788.jpg", + "image_caption": [ + "Figure 4: Goal regions can be coarsely specified to give directions. " + ], + "image_footnote": [], + "bbox": [ + 699, + 497, + 823, + 593 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "2.3 APPLYING DEEP IMITATIVE MODELS TO AUTONOMOUS DRIVING ", + "text_level": 1, + "bbox": [ + 176, + 694, + 668, + 708 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "In our autonomous driving application, we model the agent’s state at time $t$ as $\\mathbf { s } _ { t } \\in \\mathbb { R } ^ { D }$ with $D = 2$ ; $\\mathbf { s } _ { t }$ represents our agent’s location on the ground plane. The agent has access to environment perception $\\phi { \\bf \\bar { \\omega } } \\{ { \\bf s } _ { - \\tau : 0 } , \\chi , { \\bf \\bar { \\omega } } \\}$ , where $\\tau$ is the number of past positions we condition on, $x$ is a high-dimensional observation of the scene, and $\\boldsymbol { \\lambda }$ is a low-dimensional traffic light signal. $x$ could represent either LIDAR or camera images (or both), and is the agent’s observation of the world. In our setting, we featurize LIDAR to $\\chi = \\mathrm { \\mathbb { R } ^ { 2 0 0 \\times 2 0 0 \\times 2 } }$ , with $\\chi _ { i j }$ representing a 2-bin histogram of points above and at ground level in a $0 . 5 \\mathrm { m } ^ { 2 }$ cell at position $( i , j )$ . CARLA provides ground-truth ${ \\bf s } _ { - \\tau : 0 }$ and $\\boldsymbol { \\lambda }$ . Their availability is a realistic input assumption in perception-based autonomous driving pipelines. ", + "bbox": [ + 173, + 719, + 825, + 833 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Model requirements: A deep imitative model forecasts future expert behavior. It must be able to compute $\\bar { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } \\forall \\mathbf { s } \\in \\mathbb { R } ^ { T \\times D }$ . The ability to compute $\\nabla _ { \\mathbf { s } } q ( \\mathbf { s } | \\phi )$ enables gradient-based optimization for planning. Rudenko et al. (2019) provide a recent survey on forecasting agent behavior. As many forecasting methods cannot compute trajectory probabilities, we must be judicious in choosing $q ( \\mathbf { S } | \\phi )$ . A model that can compute probabilities R2P2 (Rhinehart et al., 2018), a generative autoregressive flow (Rezende & Mohamed, 2015; Oord et al., 2017). We extend R2P2 to instantiate the deep imitative model $q ( \\mathbf { S } | \\phi )$ . R2P2 was previously used to forecast vehicle trajectories: it was not demonstrated or developed to plan or execute controls. Although we used R2P2, other future-trajectory density estimation techniques could be used – designing ${ \\dot { \\mathbf { \\zeta } } } _ { q } ( \\mathbf { s } | \\phi )$ is not the primary focus of this work. In R2P2, $q _ { \\theta } ( \\mathbf { S } | \\phi )$ is induced by an invertible, differentiable function: $\\mathbf { S } = f _ { \\theta } ( \\mathbf { Z } ; \\phi ) : \\mathbb { R } ^ { T \\times 2 } \\mapsto \\mathbb { R } ^ { T \\times 2 }$ ; $f _ { \\theta }$ warps a latent sample from a base distribution $\\mathbf { Z } \\sim q _ { 0 } = \\mathcal { N } ( 0 , I )$ to S. $\\theta$ is trained to maximize $q _ { \\theta } ( \\mathbf { S } | \\phi )$ of expert trajectories. $f _ { \\theta }$ is defined for $1 . . T$ as follows: ", + "bbox": [ + 173, + 840, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "image", + "img_path": "images/c23878e57a42f82d9c10542daaeed971816ea15b60f9f4fb3b4cb25feb8b7355.jpg", + "image_caption": [ + "Figure 5: Illustration of our method applied to autonomous driving. Our method trains an imitative model from a dataset of expert examples. After training, the model is repurposed as an imitative planner. At test-time, a route planner provides waypoints to the imitative planner, which computes expert-like paths to each goal. The best plan is chosen according to the planning objective and provided to a low-level PID-controller in order to produce steering and throttle actions. This procedure is also described with pseudocode in Appendix A. " + ], + "image_footnote": [], + "bbox": [ + 176, + 102, + 821, + 189 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "", + "bbox": [ + 174, + 310, + 825, + 395 + ], + "page_idx": 4 + }, + { + "type": "equation", + "img_path": "images/704636ba561de4671f77e8dfff2d80876d812b7c8f961754b285e335a6964fa6.jpg", + "text": "$$\n\\mathbf { S } _ { t } = f _ { t } ( \\mathbf { Z } _ { 1 : t } ) = \\mu _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) + \\sigma _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) \\mathbf { Z } _ { t } ,\n$$", + "text_format": "latex", + "bbox": [ + 330, + 401, + 666, + 420 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "where µ $\\begin{array} { r } { \\phantom { \\frac { 1 } { \\theta } } \\theta ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = \\mathbf { S } _ { t - 1 } + ( \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } ) \\phantom { \\frac { 1 } { \\theta } } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = 2 \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) , } \\end{array}$ encodes a constant-velocity inductive bias. The $m _ { \\theta } \\in \\mathbb { R } ^ { 2 }$ and $\\sigma _ { \\theta } \\in \\mathbb { R } ^ { 2 \\times 2 }$ are computed by expressive neural networks. The resulting trajectory distribution is complex and multimodal (Appendix C.1 depicts samples). Because traffic light state was not included in the $\\phi$ of R2P2’s “RNN” model, it could not react to traffic lights. We created a new model that includes $\\boldsymbol { \\lambda }$ . It fixed cases where $q ( \\mathbf { S } | \\phi )$ exhibited no forward-moving preference when the agent was already stopped, and improved $q ( \\mathbf { S } | \\phi )$ ’s stopping preference at red lights. We used $T = 4 0$ trajectories at $1 0 \\mathrm { H z }$ (4 seconds), and $\\tau = 3$ . Fig. 12 in Appendix C depicts the architecture of $\\mu _ { \\theta }$ and $\\sigma _ { \\theta }$ . ", + "bbox": [ + 174, + 425, + 825, + 537 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "2.4 IMITATIVE DRIVING ", + "text_level": 1, + "bbox": [ + 176, + 554, + 354, + 568 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "We now instantiate a complete autonomous driving framework based on imitative models to study in our experiments, seen in Fig. 5. We use three layers of spatial abstraction to plan to a faraway destination, common to autonomous vehicle setups: coarse route planning over a road map, path planning within the observable space, and feedback control to follow the planned path (Paden et al., 2016; Schwarting et al., 2018). For instance, a route planner based on a conventional GPS-based navigation system might output waypoints roughly in the lanes of the desired direction of travel, but not accounting for environmental factors such as the positions of other vehicles. This roughly communicates possibilities of where the vehicle could go, but not when or how it could get to them, or any environmental factors like other vehicles. A goal likelihood from Sec. 2.2 is formed from the route and passed to the planner, which generates a state-space plan according to the optimization in Eq. 1. The resulting plan is fed to a simple PID controller on steering, throttle, and braking. Pseudocode of the driving and inference algorithms are given in Algs 1 and 2. The PID algorithm is given in Appendix A. ", + "bbox": [ + 173, + 580, + 826, + 761 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3 RELATED WORK ", + "text_level": 1, + "bbox": [ + 176, + 781, + 344, + 796 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "A body of previous work has explored offline IL (Behavior Cloning – BC) in the CARLA simulator (Li et al., 2018; Liang et al., 2018; Sauer et al., 2018; Codevilla et al., 2018; 2019). These BC approaches condition on goals drawn from a small discrete set of directives. Despite BC’s theoretical drift shortcomings (Ross et al., 2011), these methods still perform empirically well. These approaches and ours share the same high-level routing algorithm: an $A ^ { * }$ planner on route nodes that generates waypoints. In contrast to our approach, these approaches use the waypoints in a Waypoint Classifier, which reasons about the map and the geometry of the route to classify the waypoints into one of several directives: {Turn left, Turn right, Follow Lane, Go Straight}. One of the original motivations for ", + "bbox": [ + 174, + 811, + 825, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Algorithm 1 IMITATIVEDRIVING(ROUTEPLAN, IMITATIVEPLAN, PIDCONTROLLER, $q _ { \\theta } , f , p , H )$ ", + "bbox": [ + 171, + 103, + 794, + 118 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1: $\\phi \\mathrm { E N V I R O N M E N T } ( \\emptyset )$ {Initialize the robot} \n2: while not at destination do \n3: $\\mathcal { G } \\gets \\mathsf { R o u r r E P L A N } ( \\phi )$ {Generate goals from a route} \n4: $\\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } \\gets \\mathrm { I M I T A T I V E P L A N } ( q _ { \\theta } , f , p , \\mathcal { G } , \\phi )$ {Plan path} \n5: for $h = 0$ to $H$ do \n6: u ← PIDCONTROLLER $( \\phi , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H )$ \n7: $\\phi \\gets \\mathrm { E N V I R O N M E N T } ( u )$ {Execute control} \n8: end for \n9: end while ", + "bbox": [ + 179, + 122, + 568, + 251 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Algorithm 2 IMITATIVEPLAN(qθ, f, p, G, φ) ", + "text_level": 1, + "bbox": [ + 176, + 271, + 477, + 286 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "1: Initialize ${ \\mathbf z } _ { 1 : T } \\sim q _ { 0 }$ \n2: while not converged do \n3: $\\mathbf { z } _ { 1 : T } \\gets \\mathbf { z } _ { 1 : T } + \\mathbf { \\bar { V } } _ { \\mathbf { z } _ { 1 : T } } \\left[ \\log q ( f ( \\mathbf { z } _ { 1 : T } ) | \\phi ) + \\log p ( \\mathcal { G } | f ( \\mathbf { z } _ { 1 : T } ) , \\phi ) \\right]$ {Gradient ascent on Eq. 1} \n4: end while \n5: return ${ \\bf s } _ { 1 : T } = f ( { \\bf z } _ { 1 : T } )$ ", + "bbox": [ + 179, + 291, + 812, + 364 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "these type of controls was to enable a human to direct the robot (Codevilla et al., 2018). However, in scenarios where there is no human in the loop (i.e. autonomous driving), we advocate for approaches to make use of the detailed spatial information inherent in these waypoints. Our approach and several others we designed make use of this spatial information. One of these is CIL-States (CILS): whereas the approach in Codevilla et al. (2018) uses images to directly generate controls, CILS uses identical inputs and PID controllers as our method. With respect to prior conditional IL methods, our main approach has more flexibility to handle more complex directives post-training, the ability to learn without goal labels, and the ability to generate interpretable planned and unplanned trajectories. These contrasting capabilities are illustrated in Table 1. ", + "bbox": [ + 173, + 393, + 825, + 520 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Our approach is also related to MBRL. MBRL can also plan with a predictive model, but its model only represents possible dynamics. The task of evoking expert-like behavior is offloaded to the reward function, which can be difficult and time-consuming to craft properly. We know of no MBRL approach previously applied to CARLA, so we devised one for comparison. This MBRL approach also uses identical inputs to our method, instead to plan a reachability tree (LaValle, 2006) over an dynamic obstacle-based reward function. See Appendix D for further details of the MBRL and CILS methods, which we emphasize use the same inputs as our method. ", + "bbox": [ + 174, + 526, + 825, + 623 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Several prior works (Tamar et al., 2016; Amos et al., 2018; Srinivas et al., 2018) used imitation learning to train policies that contain planning-like modules as part of the model architecture. While our work also combines planning and imitation learning, ours captures a distribution over possible trajectories, and then plan trajectories at test-time that accomplish a variety of given goals with high probability under this distribution. Our approach is suited to offline-learning settings where interactively collecting data is costly (time-consuming or dangerous). However, there exists online IL approaches that seek to be safe (Menda et al., 2017; Sun et al., 2018; Zhang & Cho, 2017). ", + "bbox": [ + 174, + 631, + 825, + 728 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "4 EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 752, + 326, + 767 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We evaluate our method using the CARLA driving simulator (Dosovitskiy et al., 2017). We seek to answer four primary questions: (1) Can we generate interpretable, expert-like plans with offline learning and minimal reward engineering? Neither IL nor MBRL can do so. It is straightforward to interpret the trajectories by visualizing them on the ground plane; we thus seek to validate whether these plans are expert-like by equating expert-like behavior with high performance on the CARLA benchmark. (2) Can we achieve state-of-the-art CARLA performance using resources commonly available in real autonomous vehicle settings? There are several differences between the approaches, as discussed in Sec 3 and shown in Tables 1 and 2. Our approach uses the CARLA toolkit’s resources that are commonly available in real autonomous vehicle settings: waypoint-based routes (all prior approaches use these), LIDAR and traffic-light observations (both are CARLAprovided, but only the approaches we implemented use it). Furthermore, the two additional methods of comparison we implemented (CILS and MBRL) use the exact same inputs as our algorithm. These reasons justify an overall performance comparison to answer (2): whether we can achieve state-of-the-art performance using commonly available resources. We advocate that other approaches also make use of such resources. (3) How flexible is our approach to new tasks? We investigate (3) by applying each of the goal likelihoods we derived and observing the resulting performance. (4) How robust is our approach to error in the provided goals? We do so by injecting two different types of error into the waypoints and observing the resulting performance. ", + "bbox": [ + 173, + 784, + 825, + 924 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/c101dd5446fbcbda50ac8354c8ca0d2f9d09eac335ec3db91829dce196b72d4b.jpg", + "table_caption": [ + "Table 1: Desirable attributes of each approach. A green check denotes that a method has a desirable attribute, whereas a red cross denotes the opposite. A “†” indicates an approach we implemented. " + ], + "table_footnote": [], + "table_body": "
ApproachFlexible to New GoalsTrains without goal labelsOutputs PlansTrains OflineHas Expert P.D.F.
CIRL*(Liang et al., 2018)XXXXX
CAL* (Sauer et al.,2018)xxxxxν
MT*(Li et al.,2018)
CIL*(Codevilla et al., 2018)xxx
CILRS*(Codevilla et al.,2019)X
CILStxxxx//xxxxx/X
MBRL†XX
Imitative Models (Ours)t
Table 2: Algorithmic components of each approach. A “t” i indicates an approach we implemented.
ApproachControl Algorithm← Learning Algorithm←Goal-Generation Algorithm ←Routing AlgorithmHigh-Dim. Obs.
CIRL*(Liang et al.,2018)Waypoint ClassifierA*Waypointer
PolicyBehavior Cloning+RL Affordance LearningWaypoint ClassifierA*WaypointerImage Image
CAL*(Sauer et al.,2018) MT*(Li et al., 2018)PID PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CIL*(Codevilla et al., 2018)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILRS*(Codevilla et al., 2019)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILStPIDTrajectory RegressorWaypoint ClassifierA*Waypointer(LIDAR,入)
MBRL†Reachability TreeState RegressorWaypoint SelectorA*Waypointer(LIDAR,λ)
Imitative Models (Ours)†Imitative Plan+PIDTraj. Density Est.Goal LikelihoodsA*Waypointer(LIDAR,λ)
", + "bbox": [ + 176, + 131, + 818, + 332 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 354, + 825, + 467 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We begin by training $q ( \\mathbf { S } | \\phi )$ on a dataset of 25 hours of driving we collected in Town01, detailed in Appendix C.2. Following existing protocol, each test episode begins with the vehicle starting in one of a finite set of starting positions provided by the CARLA simulator in Town01 or Town02 maps in one of two settings: static-world (no other vehicles) or dynamic-world (with other vehicles). We ran the same benchmark 3 times across different random seeds to quantify means and their standard errors. We construct the goal set $\\mathbb { G }$ for the Final-State Indicator (A) directly from the route output by CARLA’s waypointer. B’s line segments are formed by connecting the waypoints to form a piecewise linear set of segments. C’s regions are created a polygonal goal region around the segments of (B). Each represents an increasing level of coarseness of direction. Coarser directions are easier to specify when there is ambiguity in positions (both the position of the vehicle and the position of the goals). Further details are discussed in Appendix B.3. Visualizations of (C) are shown in Figures 6 and 7. Visualizations of (A) and (B) are shown in Figures 8 and 9. We use three metrics: (a) success rate in driving to the destination without any collisions (which all prior work reports); (b) red-light violations; and (c) proportion of time spent driving in the wrong lane and off road. With the exception of metric (a), lower numbers are better. ", + "bbox": [ + 174, + 473, + 825, + 680 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Results: Towards questions (1) and (3) (expert-like plans and flexibility), we apply our approach with a variety of goal likelihoods to the CARLA simulator. Towards question (2), we compare our methods against CILS, MBRL, and prior work. These results are shown in Table 3. The metrics for the methods we did not implement are from the aggregation reported in Codevilla et al. (2019). We observe our method to outperform all other approaches in all settings: static world, dynamic world, training conditions, and test conditions. We observe the Goal Indicator methods are able to perform well, despite having no hyperparameters to tune. We found that we could further improve our approach’s performance if we use the light state to define different goal sets, which defines a “smart” waypointer. The settings where we use this are suffixed with “S.” in the Tables. We observed the planner prefers closer goals when obstructed, when the vehicle was already stopped, and when a red light was detected; we observed the planner prefers farther goals when unobstructed and when green lights or no lights were observed. Examples of these and other interesting behaviors are best seen in the videos on the website (https://sites.google.com/view/imitative-models). These behaviors follow from the method leveraging $q ( \\mathbf { S } | \\phi )$ ’s internalization of aspects of expert behavior in order to reproduce them in new situations. Altogether, these results provide affirmative answers to questions (1) and (2). Towards question (3), these results show that our approach is flexible to different directions defined by these goal likelihoods. ", + "bbox": [ + 173, + 688, + 825, + 924 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/92a0eaf04eb0deca39199213c4f7b9dbf57d6286ea9c0aad0ee48d15c7e5ee1c.jpg", + "table_caption": [ + "Table 3: We evaluate different autonomous driving methods on CARLA’s Dynamic Navigation task. A “†” indicates methods we have implemented (each observes the same waypoints and LIDAR as input). A “∗” indicates results reported in Codevilla et al. (2019). A “–” indicates an unreported statistic. A “‡” indicates an optimistic estimate in transferring a result from the static setting to the dynamic setting. “S.” denotes a “smart” waypointer reactive to light state, detailed in Appendix B.2. Results accompanied by standard errors are computed with $N = 3$ trials across environment seeds. " + ], + "table_footnote": [], + "table_body": "
Dynamic Nav. MethodTownO1 (training conditions)Town02 (test conditions)
Success↑Ran Red Light↓Wrong lane↓Off road↓Success↑Ran Red Light↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)82%41%
CAL*(Sauer et al.,2018)83%64%
MT* (Li et al., 2018)81%53%
CIL*(Codevilla et al., 2018)83%83%38%82%t
CILRS*(Codevilla et al., 2019)92%27%66%64%
CILS,Waypoint Input†17%0.0%0.20%12.1%36%0.0%1.11%11.70%
MBRL,Waypoint Input64%72%11.1%2.96%48%54%20.6%13.3 %
Ourmethod,RegionFinal-St.IndicatorS.t96%±1.90.89%±0.40.05%±0.010.11%±0.0188%±3.32.60%±0.040.49%±0.322.60%±1.1
Ourmethod,RegionFinal-St.Inictor93%±2.218%±0.50.023%±0.0020.195%±0.00481%±2.254.7%±1.50.12%±0.011.32%±0.69
Ourmethod,LineegmentFinal-St.Indicatort91%±1.132%±1.30.055%±0.0020.013%±0.00188%±3.335.2%±2.40.52%±0.030.18%±0.02
Ourmethod,Final-StateIndicatort92%26%0.05%0.012%84%35%0.13%0.38%
Ourmethod,Gussianinal-t.92% 100%6.3% 1.7%0.04%0.005%100%12%0.11%0.04%
Our method, Gaussian Final-St.Mix.S.t0.03%0.005%92%0.0%0.05%0.15%
Town01 (training conditions)Town02 (test conditions)
Static Nav. MethodSuccess↑Ran RedLight↓Wrong lane↓Off road↓Success↑Ran RedLight↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)93%68%
CAL*(Sauer et al.,2018)92%68%
MT*(Li et al.,2018)81%78%
CIL*(Codevilla et al., 2018)86%83%44%82%
CILRS*(Codevilla et al., 2019)95%27%90%64%
CILS,Waypoint Inputt28%0.0%0.38%10.23%36%0.0%1.69%16.82%
MBRL,Waypoint Input†96%78%14.3%1.94%96%73%19.6 %0.75%
Ourmethod,Final-StateIndicatort100%48%0.05%0.002%100%52%0.10%0.13%
Our method,GaussianFinal-St. Mixturet96%0.83%0.01%0.08%96%0.0%0.03%0.14%
Ourmethod,GaussianFinal-St.ix..t96%0.0%0.04%0.07%92%0.0%0.18%0.27%
", + "bbox": [ + 174, + 195, + 826, + 438 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/d0e5003b39ffd8af354765f4a41ccb338bb60327e0b2d15098d188b19a79d9a0.jpg", + "image_caption": [ + "Figure 6: Planning with the Region Final State Indicator yields plans that end inside the region. The orange polygon indicates the region. The red circles indicate the chosen plan. " + ], + "image_footnote": [], + "bbox": [ + 176, + 453, + 486, + 580 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/58f2baf54f05b70cebe1496658bda359bdc94de6ab7f7752eca9ec9d49fdd210.jpg", + "image_caption": [ + "Figure 7: Even with a wider goal region than Fig. 6, the vehicle remains in its lane. Despite their coarseness, these wide goal regions still provide useful guidance to the vehicle. " + ], + "image_footnote": [], + "bbox": [ + 511, + 453, + 823, + 580 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "4.1 ROBUSTNESS TO ERRORS IN GOAL-SPECIFICATION", + "text_level": 1, + "bbox": [ + 174, + 688, + 568, + 702 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Towards questions (3) (flexibility) and (4) (noise-robustness), we analyze the performance of our method when the path planner is heavily degraded, to understand its stability and reliability. We use the Gaussian Final-State Mixture goal likelihood. ", + "bbox": [ + 176, + 714, + 825, + 756 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Navigating with high-variance waypoints. As a test of our model’s capability to stay in the distribution of demonstrated behavior, we designed a “decoy waypoints” experiment, in which half of the waypoints are highly perturbed versions of the other half, serving as distractions for our Gaussian Final-State Mixture imitative planner. We observed surprising robustness to decoy waypoints. Examples of this robustness are shown in Fig. 10. In Table 4, we report the success rate and the mean number of planning rounds for failed episodes in the $^ { 6 6 } \\%$ distractors” row. These numbers indicate our method can execute dozens of planning rounds without decoy waypoints causing a catastrophic failure, and often it can execute the hundreds necessary to achieve the goal. See Appendix E for details. ", + "bbox": [ + 174, + 763, + 825, + 888 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Navigating with waypoints on the wrong side of the road. We also designed an experiment to test our method under systemic bias in the route planner. Our method is provided waypoints on the wrong side of the road (in CARLA, the left side), and tasked with following the directions of these waypoints while staying on the correct side of the road (the right side). In order for the value of $q ( \\mathbf { s } | \\boldsymbol { \\phi } )$ to outweigh the influence of these waypoints, we increased the $\\epsilon$ hyperparameter. We found our method to still be very effective at navigating, and report results in Table 4. We also investigated providing very coarse 8-meter wide regions to the Region Final-State likelihood; these always include space in the wrong lane and off-road (Fig. 7 in Appendix ?? provides visualization). Nonetheless, on Town01 Dynamic, this approach still achieved an overall success rate of $4 8 \\%$ . Taken together towards question (4), our results indicate that our method is fairly robust to errors in goal-specification. ", + "bbox": [ + 173, + 895, + 823, + 924 + ], + "page_idx": 7 + }, + { + "type": "image", + "img_path": "images/2138ef8e7bb5566ff77af505c28955e60ae36f8ca04afd3d1bd0a9e1d1ecdeb3.jpg", + "image_caption": [ + "Figure 8: Planning with the Final State Indicator yields plans that end at one of the provided locations. Orange diamonds indicate the locations in the goal set. Red circles indicate the chosen plan. " + ], + "image_footnote": [], + "bbox": [ + 174, + 102, + 486, + 227 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/08f73d8ccefdf0796b7bf2e02b790e11057096defc95284b7ae07db44e75c5b3.jpg", + "image_caption": [ + "Figure 9: Planning with the Line Segment Final State Indicator yields plans that end along a segment. Orange diamonds indicate line segment endpoints. Red circles indicate the chosen plan. " + ], + "image_footnote": [], + "bbox": [ + 511, + 102, + 823, + 227 + ], + "page_idx": 8 + }, + { + "type": "image", + "img_path": "images/0d3a5bf828280148d3ce24b021aad8cb207c1501042928f484322246c7ba2609.jpg", + "image_caption": [ + "Figure 10: Tolerating bad goals. The planner prefers goals in the distribution of expert behavior (on the road at a reasonable distance). Left: Planning with $^ 1 / 2$ decoy goals. Right: Planning with all goals on the wrong side of the road. ", + "Figure 11: Testtime plans steering around potholes. " + ], + "image_footnote": [], + "bbox": [ + 179, + 314, + 839, + 410 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 491, + 825, + 603 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "4.2 PRODUCING UNOBSERVED BEHAVIORS TO AVOID NOVEL OBSTACLES ", + "text_level": 1, + "bbox": [ + 176, + 623, + 699, + 638 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/cb0a2b06538473a27da19eb37aba9e5524a12cf75657cf0a3f5b71617141d66e.jpg", + "table_caption": [ + "Table 4: Robustness to waypoint noise and test-time pothole adaptation. Our method is robust to waypoints on the wrong side of the road and fairly robust to decoy waypoints. Our method is flexible enough to safely produce behavior not demonstrated (pothole avoidance) by incorporating a test-time cost. Ten episodes are collected in each Town. " + ], + "table_footnote": [], + "table_body": "
Town01 (training conditions)Town02 (test conditions)
WaypointerExtra CostSuccessWrong lanePotholes hitSuccessWrong lanePotholes hit
Noiseless waypointer100%0.00%177/230100%0.41%82/154
Waypoints wrong lane100%0.34%170%3.16%
1/2 waypoints distracting70%150%1
Noiseless waypointerPothole90%1.53%10/23070%1.53%35/154
", + "bbox": [ + 240, + 726, + 758, + 792 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "To further investigate our model’s flexibility to test-time objectives (question 3), we designed a pothole avoidance experiment. We simulated potholes in the environment by randomly inserting them in the cost map near waypoints. We ran our method with a test-time-only cost map of the simulated potholes by combining goal likelihoods (F) and (G), and compared to our method that did not incorporate the cost map (using (F) only, and thus had no incentive to avoid potholes). We recorded the number of collisions with potholes. In Table 4, our method with cost incorporated avoided most potholes while avoiding collisions with the environment. To do so, it drove closer to the centerline, and occasionally entered the opposite lane. Our model internalized obstacle avoidance by staying on the road and demonstrated its flexibility to obstacles not observed during training. Fig. 11 shows an example of this behavior. See Appendix F for details of the pothole generation. ", + "bbox": [ + 173, + 811, + 825, + 924 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "5 DISCUSSION ", + "text_level": 1, + "bbox": [ + 174, + 152, + 310, + 169 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We proposed “Imitative Models” to combine the benefits of IL and MBRL. Imitative Models are probabilistic predictive models able to plan interpretable expert-like trajectories to achieve new goals. Inference with an Imitative Model resembles trajectory optimization in MBRL, enabling it to both incorporate new goals and plan to them at test-time, which IL cannot. Learning an Imitative Model resembles offline IL, enabling it to circumvent the difficult reward-engineering and costly online data collection necessities of MBRL. We derived families of flexible goal objectives and showed our model can successfully incorporate them without additional training. Our method substantially outperformed six IL approaches and an MBRL approach in a dynamic simulated autonomous driving task. We showed our approach is robust to poorly specified goals, such as goals on the wrong side of the road. We believe our method is broadly applicable in settings where expert demonstrations are available, flexibility to new situations is demanded, and safety is paramount. Future work could investigate methods to handle both observation noise and out-of-distribution observations to enhance the applicability to robust real systems — we expand on this issue in Appendix E. Finally, to facilitate more general planning, future work could extend our approach to explicitly reason about all agents in the environment in order to inform a closed-loop plan for the controlled agent. ", + "bbox": [ + 174, + 185, + 825, + 392 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "ACKNOWLEDGEMENTS ", + "text_level": 1, + "bbox": [ + 176, + 415, + 366, + 429 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "This research was supported by ONR N000141712623, DARPA Assured Autonomy, ARL DCIST CRA W911NF-17-2-0181, Google, NVIDIA, and Amazon. ", + "bbox": [ + 174, + 445, + 820, + 473 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 176, + 496, + 285, + 510 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Brandon Amos, Ivan Dario Jimenez Rodriguez, Jacob Sacks, Byron Boots, and Zico Kolter. Differentiable MPC for end-to-end planning and control. In Neural Information Processing Systems (NeurIPS), 2018. ", + "bbox": [ + 173, + 518, + 825, + 560 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Felipe Codevilla, Matthias Miiller, Antonio López, Vladlen Koltun, and Alexey Dosovitskiy. Endto-end driving via conditional imitation learning. In International Conference on Robotics and Automation (ICRA), pp. 1–9. IEEE, 2018. ", + "bbox": [ + 174, + 570, + 823, + 614 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Felipe Codevilla, Eder Santana, Antonio M López, and Adrien Gaidon. Exploring the limitations of behavior cloning for autonomous driving. arXiv preprint arXiv:1904.08980, 2019. ", + "bbox": [ + 173, + 625, + 823, + 654 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to policy search. In International Conference on Machine Learning (ICML), pp. 465–472, 2011. ", + "bbox": [ + 173, + 662, + 825, + 691 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexey Dosovitskiy and Vladlen Koltun. Learning to act by predicting the future. arXiv preprint arXiv:1611.01779, 2016. ", + "bbox": [ + 173, + 702, + 823, + 729 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Alexey Dosovitskiy, German Ros, Felipe Codevilla, Antonio Lopez, and Vladlen Koltun. CARLA: An open urban driving simulator. In Conference on Robot Learning (CoRL), pp. 1–16, 2017. ", + "bbox": [ + 171, + 739, + 825, + 770 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Leonid Kuvayev and Richard S. Sutton. Model-based reinforcement learning with an approximate, learned model. In Yale Workshop on Adaptive and Learning Systems, pp. 101–105, 1996. ", + "bbox": [ + 171, + 779, + 825, + 808 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Balaji Lakshminarayanan, Alexander Pritzel, and Charles Blundell. Simple and scalable predictive uncertainty estimation using deep ensembles. In Neural Information Processing Systems (NeurIPS), pp. 6402–6413, 2017. ", + "bbox": [ + 174, + 818, + 825, + 859 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Steven M LaValle. Planning algorithms. Cambridge University Press, 2006. ", + "bbox": [ + 173, + 869, + 676, + 886 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review. arXiv preprint arXiv:1805.00909, 2018. ", + "bbox": [ + 174, + 895, + 823, + 922 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zhihao Li, Toshiyuki Motoyoshi, Kazuma Sasaki, Tetsuya Ogata, and Shigeki Sugano. Rethinking self-driving: Multi-task knowledge for better generalization and accident explanation ability. arXiv preprint arXiv:1809.11100, 2018. ", + "bbox": [ + 176, + 103, + 823, + 146 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xiaodan Liang, Tairui Wang, Luona Yang, and Eric Xing. CIRL: Controllable imitative reinforcement learning for vision-based self-driving. arXiv preprint arXiv:1807.03776, 2018. ", + "bbox": [ + 173, + 155, + 823, + 184 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Kunal Menda, Katherine Driggs-Campbell, and Mykel J Kochenderfer. DropoutDAgger: A Bayesian approach to safe imitation learning. arXiv preprint arXiv:1709.06166, 2017. ", + "bbox": [ + 173, + 193, + 823, + 222 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aaron van den Oord, Yazhe Li, Igor Babuschkin, Karen Simonyan, Oriol Vinyals, Koray Kavukcuoglu, George van den Driessche, Edward Lockhart, Luis C Cobo, Florian Stimberg, et al. Parallel WaveNet: Fast high-fidelity speech synthesis. arXiv preprint arXiv:1711.10433, 2017. ", + "bbox": [ + 179, + 229, + 823, + 273 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Brian Paden, Michal Cáp, Sze Zheng Yong, Dmitry Yershov, and Emilio Frazzoli. A survey of ˇ motion planning and control techniques for self-driving urban vehicles. Transactions on Intelligent Vehicles, 1(1):33–55, 2016. ", + "bbox": [ + 173, + 282, + 826, + 325 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Danilo Rezende and Shakir Mohamed. Variational inference with normalizing flows. In International Conference on Machine Learning (ICML), pp. 1530–1538, 2015. ", + "bbox": [ + 174, + 335, + 823, + 364 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nicholas Rhinehart, Kris M. Kitani, and Paul Vernaza. R2P2: A reparameterized pushforward policy for diverse, precise generative path forecasting. In European Conference on Computer Vision (ECCV), September 2018. ", + "bbox": [ + 173, + 372, + 825, + 415 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured prediction to no-regret online learning. In Artificial Intelligence and Statistics (AISTATS), pp. 627–635, 2011. ", + "bbox": [ + 173, + 424, + 825, + 467 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Andrey Rudenko, Luigi Palmieri, Michael Herman, Kris M Kitani, Dariu M Gavrila, and Kai O Arras. Human motion trajectory prediction: A survey. arXiv preprint arXiv:1905.06113, 2019. ", + "bbox": [ + 173, + 476, + 825, + 506 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Axel Sauer, Nikolay Savinov, and Andreas Geiger. Conditional affordance learning for driving in urban environments. arXiv preprint arXiv:1806.06498, 2018. ", + "bbox": [ + 171, + 513, + 823, + 542 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Wilko Schwarting, Javier Alonso-Mora, and Daniela Rus. Planning and decision-making for autonomous vehicles. Annual Review of Control, Robotics, and Autonomous Systems, 1:187–210, 2018. ", + "bbox": [ + 176, + 551, + 825, + 593 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aravind Srinivas, Allan Jabri, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Universal planning networks: Learning generalizable representations for visuomotor control. In International Conference on Machine Learning (ICML), pp. 4739–4748, 2018. ", + "bbox": [ + 174, + 602, + 825, + 646 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Liting Sun, Cheng Peng, Wei Zhan, and Masayoshi Tomizuka. A fast integrated planning and control framework for autonomous driving via imitation learning. In Dynamic Systems and Control Conference. American Society of Mechanical Engineers, 2018. ", + "bbox": [ + 176, + 654, + 823, + 696 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aviv Tamar, Yi Wu, Garrett Thomas, Sergey Levine, and Pieter Abbeel. Value iteration networks. In Neural Information Processing Systems (NeurIPS), pp. 2154–2162, 2016. ", + "bbox": [ + 176, + 705, + 823, + 736 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Emanuel Todorov. Linearly-solvable Markov decision problems. In Neural Information Processing Systems (NeurIPS), pp. 1369–1376, 2007. ", + "bbox": [ + 174, + 743, + 821, + 773 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Jiakai Zhang and Kyunghyun Cho. Query-efficient imitation learning for end-to-end simulated driving. In Association for the Advancement of Artificial Intelligence (AAAI), pp. 2891–2897, 2017. ", + "bbox": [ + 174, + 781, + 826, + 824 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "A ALGORITHMS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 325, + 117 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "In Algorithm 1, we provided pseudocode for receding-horizon control via our imitative model. In Algorithm 2 we provided pesudocode that describes how we plan in the latent space of the trajectory. In Algorithm 3, we detail the speed-based throttle and position-based steering PID controllers. ", + "bbox": [ + 174, + 137, + 825, + 179 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/d6f2100ae9e21212ad285e7d1a49facac34bb119ac3adff0d5217cec7ec32cf6.jpg", + "text": "$$\n\\mathbf { A l g o r i t h m 3 } \\quad \\mathbf { P I D C O N T R O L L E R } ( \\phi = \\left\\{ \\mathbf { s } _ { 0 } , \\mathbf { s } _ { - 1 } , \\ldots \\right\\} , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H ; K _ { p } ^ { \\dot { s } } , K _ { p } ^ { \\alpha } )\n$$", + "text_format": "latex", + "bbox": [ + 171, + 200, + 668, + 220 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "1: $i T - H + h$ {Compute the index of the target position} \n2: s˙process-speed $ ( \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )$ {Compute the current forward speed from the observations} \n3: $s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\mathbf { s } _ { i , x } ^ { \\mathcal { G } }$ {Retrieve the target position $\\mathbf { X }$ -coordinate from the plan} \n4: $\\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\Big / i$ {Compute the forward target speed} \n5: $e _ { \\dot { s } } \\gets \\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } - \\dot { s } _ { \\mathrm { p r o c e } }$ ss-speed {Compute the forward speed error} 6: $u _ { \\dot { s } } \\gets K _ { p } ^ { \\dot { s } } e _ { \\dot { s } }$ {Compute the accelerator control with a nonzero proportional term} 7: throttle $\\iff \\mathbb { 1 } ( e > 0 ) \\cdot u + \\mathbb { 1 } ( e \\leq 0 ) \\cdot 0$ {Use the control as throttle if the speed error is positive} \n8: brake $ \\mathbb { 1 } ( e > 0 ) \\cdot 0 + \\mathbb { 1 } ( e \\leq 0 ) \\cdot u$ {Use the control as brake if the speed error is negative} \n9: 10: 11: $\\boldsymbol { \\iota } _ { \\mathrm { p r o c e s s } } \\gets \\arctan ( \\mathbf { s } _ { 0 , y } - \\mathbf { s } _ { - 1 , y } , \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )$ {Compute current heading}{Compute target forward heading}g error} $\\alpha _ { \\mathrm { s e t p o i n t } } \\arctan ( \\mathbf { s } _ { i , y } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , y } , | \\mathbf { s } _ { i , x } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , x } | ) _ { . }$ $e _ { \\alpha } \\gets \\alpha _ { \\mathrm { s e t p o i n t } } - \\alpha _ { \\mathrm { p r o c } }$ \n12: steering $\\ L _ { \\ S } K _ { p } ^ { \\alpha } e _ { \\alpha }$ {Compute the steering with a nonzero proportional term} \n13: $u \\gets$ [throttle, steering, brake] \n14: return $u$ ", + "bbox": [ + 179, + 224, + 821, + 434 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "A.1 LATENT PLAN OPTIMIZATION ", + "text_level": 1, + "bbox": [ + 176, + 472, + 424, + 486 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Since $\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } )$ in our implementation, and $f$ is differentiable, we can perform gradient descent of the same objective in terms of $\\mathbf { z } _ { 1 : T }$ , as shown in Algorithm 2.Since $q$ is trained with $\\mathbf { z } _ { 1 : T } \\sim \\mathcal { N } ( 0 , I )$ , the latent space is likelier to be better numerically conditioned than the space of $\\mathbf { s } _ { 1 : T }$ , although we did not compare the two approaches formally. We implemented the following optimizations to improve this procedure’s output and practical run time. 1) We started with $N = 1 2 0$ different $\\mathbf { z }$ initializations, optimized them in batch, and returned the highest-scoring value across the entire optimization. 2) We observed the resulting planning procedure to usually converge quickly, so instead of specifying a convergence threshold, we simply ran the optimization for a small number of steps, $M = 1 0$ , and found that we obtained good performance. Better performance could be obtained by performing a larger number of steps. ", + "bbox": [ + 173, + 500, + 825, + 640 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B GOAL DETAILS", + "text_level": 1, + "bbox": [ + 176, + 665, + 338, + 683 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "B.1 OPTIMIZING GOAL LIKELIHOODS WITH SET CONSTRAINTS ", + "text_level": 1, + "bbox": [ + 176, + 700, + 629, + 717 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "We now derive an approach to optimize our main objective with set constraints. Although we could apply a constrained optimizer, we find that we are able to exploit properties of the model and constraints to derive differentiable objectives that enable approximate optimization of the corresponding closed-form optimization problems. These enable us to use the same straightforward gradient-descent-based optimization approach described in Algorithm 2. ", + "bbox": [ + 174, + 729, + 825, + 800 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shorthand notation: In this section we omit dependencies on $\\phi$ for brevity, and use short hand $\\mu _ { t } \\doteq \\mu _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )$ and $\\Sigma _ { t } \\doteq \\Sigma _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )$ . For example, $q ( \\mathbf { s } _ { t } | \\mathbf { s } _ { 1 : t - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { t } ; \\mu _ { t } , \\Sigma _ { t } \\right)$ . ", + "bbox": [ + 173, + 821, + 823, + 852 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Let us begin by defining a useful delta function: ", + "bbox": [ + 173, + 857, + 486, + 872 + ], + "page_idx": 11 + }, + { + "type": "equation", + "img_path": "images/a11082ca3dca33c8a44f6f820e7dea5f3c38e21cb6c4717d8ab90aae1e7d66bc.jpg", + "text": "$$\n\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) \\doteq { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\in \\mathbb { G } } \\\\ { 0 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\notin \\mathbb { G } , } \\end{array} \\right. }\n$$", + "text_format": "latex", + "bbox": [ + 400, + 886, + 594, + 921 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "which serves as our goal likelihood when using goal with set constraints: $p ( \\mathcal { G } | \\mathbf { s } _ { 1 : T } ) \\gets \\delta _ { S _ { T } } ( \\mathbb { G } )$ . We now derive the corresponding maximum a posteriori optimization problem: ", + "bbox": [ + 171, + 102, + 823, + 132 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/493b80b970e59ee14ec8153483f7117d75abffff384a516874df423344d29019.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathbf { f } _ { \\perp \\perp } } & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\{ ( \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ) \\cdot \\boldsymbol { F } _ { \\perp \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { S } _ { \\parallel } \\cdot \\mathbf { u } _ { \\mathrm { L } } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\frac { \\boldsymbol { F } _ { \\perp } \\lambda _ { \\mathrm { R } } ^ { \\perp } } { \\lambda _ { \\mathrm { R } } ^ { \\perp } \\sin { \\mathrm { R } } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } \\} } \\\\ & = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp } \\cdot \\mathbf { J } _ { \\perp } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 281, + 143, + 727, + 431 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "By exploiting the fact that $q ( \\mathbf { s } _ { T } | \\mathbf { s } _ { 1 : T - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)$ , we can derive closed-form solutions for ", + "bbox": [ + 176, + 444, + 823, + 462 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/0215a4e4a42354cf955bbd3e2063267be767c2d1401ee09d09e219cc6222c9c5.jpg", + "text": "$$\n\\mathbf { s } _ { T } ^ { * } \\ = \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)\n$$", + "text_format": "latex", + "bbox": [ + 387, + 467, + 609, + 494 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "when $\\mathbb { G }$ has special structure, which enables us to apply gradient descent to solve this constrainedoptimization problem (examples below). With a closed form solution to equation 6, we can easily compute equation 5 using unconstrained-optimization as follows: ", + "bbox": [ + 174, + 502, + 825, + 545 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/4e6528090e8c4871dd35909ff3621a55e5aa62e1fb99b29be8f12c9b4ac99c50.jpg", + "text": "$$\n\\begin{array} { r l } & { { \\bf s } _ { 1 : T } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } { \\bf s } _ { T } \\in \\mathbb { G } _ { \\mathrm { i n e - s e g m a x } } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } | { \\bf s } _ { 1 : T - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) } \\\\ & { { \\bf s } _ { 1 : T - 1 } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } ^ { * } | { \\bf s } _ { 1 : t - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 276, + 551, + 722, + 640 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Note that equation 8 only helps solve equation 5 if equation 6 has a closed-form solution. We detail example of goal-sets with such closed-form solutions in the following subsections. ", + "bbox": [ + 174, + 674, + 825, + 704 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B.1.1 POINT GOAL-SET", + "text_level": 1, + "bbox": [ + 174, + 719, + 351, + 734 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "The solution to equation 6 in the case of a single desired goal $g \\in \\mathbb { R } ^ { D }$ is simply: ", + "bbox": [ + 174, + 743, + 699, + 760 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/55df557501a6749043e9822de5551d4d8e8641545ce67fb56d24f303bde57d8f.jpg", + "text": "$$\n\\begin{array} { r l } { \\mathbb { G } _ { \\mathrm { p o i n t } } ~ \\doteq ~ \\{ \\mathbf { g } _ { T } \\} , } & { } \\\\ { \\mathbf { s } _ { T , \\mathrm { p o i n t } } ^ { * } ~ \\doteq ~ \\mathrm { a r g } \\operatorname* { m a x } \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) } & { } \\\\ & { ~ \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { p o i n t } } } \\\\ { ~ } & { = ~ \\mathbf { g } _ { T } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 375, + 766, + 620, + 834 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "More generally, multiple point goals help define optional end points for planning: where the agent only need reach one valid end point (see Fig. 8 for examples), formulated as: ", + "bbox": [ + 169, + 839, + 823, + 868 + ], + "page_idx": 12 + }, + { + "type": "equation", + "img_path": "images/892a0d13437844aecaf4c475ffdbd98caf65deee76aea584c5f1ece8367b72df.jpg", + "text": "$$\n\\begin{array} { r c l } { \\displaystyle \\mathbb { G } _ { \\mathrm { p o i n t s } } } & { \\doteq } & { \\displaystyle \\{ \\mathbf { g } _ { T } ^ { k } \\} _ { k = 1 } ^ { K } , } \\\\ { \\displaystyle \\mathbf { s } _ { T , \\mathrm { p o i n t s } } ^ { * } } & { \\stackrel { \\cdot } { = } } & { \\arg \\operatorname* { m a x } _ { T } \\mathcal { N } \\left( \\mathbf { g } _ { T } ^ { k } ; \\boldsymbol { \\mu } _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 367, + 875, + 629, + 928 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "B.1.2 LINE-SEGMENT GOAL-SET", + "text_level": 1, + "bbox": [ + 174, + 103, + 415, + 118 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We can form a goal-set as a finite-length line segment, connecting point $\\mathbf { a } \\in \\mathbb { R } ^ { D }$ to point $\\mathbf { b } \\in \\mathbb { R } ^ { D }$ : ", + "bbox": [ + 173, + 126, + 815, + 143 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/f2a6e2dd18d7c6730ab18c595c4709a88cc510b3067ffce6a6d51727220db903.jpg", + "text": "$$\n\\begin{array} { r l } { g _ { \\mathrm { l i n e } } ( u ) } & { \\doteq \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) , ~ u \\in \\mathbb { R } , } \\\\ { \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } ^ { \\mathbf { a } \\to \\mathbf { b } } } & { \\doteq \\{ g _ { \\mathrm { l i n e } } ( u ) : u \\in [ 0 , 1 ] \\} . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 364, + 147, + 632, + 188 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "The solution to equation 6 in the case of line-segment goals is: ", + "bbox": [ + 173, + 190, + 583, + 205 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/f5b41fa9acf9f52d1b00ee6cc285c1c124ca8d61bf15a898548703bee0660bf4.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ \\doteq \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { l i n e - s e m e n t } } ^ { \\mathrm { a v } } } { \\arg \\operatorname* { m a x } } \\ N \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\mathbf { a } + \\operatorname* { m i n } \\left( 1 , \\ \\operatorname* { m a x } \\left( 0 , \\ \\frac { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\right) \\right) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 236, + 208, + 759, + 281 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Proof: ", + "text_level": 1, + "bbox": [ + 173, + 291, + 220, + 305 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "To solve equation 15 is to find which point along the line $g _ { \\mathrm { l i n e } } ( u )$ maximizes $\\mathcal { N } ( \\cdot ; \\mu _ { T } , \\Sigma _ { T } )$ subject to the constraint $0 \\leq u \\leq 1$ : ", + "bbox": [ + 174, + 313, + 823, + 342 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/e205b350c5381762b197cb36bd0db1e66f43ab03969176ed7d06899a63697396.jpg", + "text": "$$\n\\begin{array} { r l } & { u ^ { * } \\ \\doteq \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( g _ { \\mathrm { l i n e } } ( u ) ; \\boldsymbol { \\mu } _ { T } , \\Sigma _ { T } \\right) ) } \\\\ & { \\quad = \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\ \\underbrace { \\left( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } ) } _ { \\mathcal { L } _ { u } ( u ) } . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 316, + 344, + 679, + 416 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "Since $\\mathcal { L } _ { u }$ is convex, the optimal value $u ^ { * }$ is value closest to the unconstrained arg max of $\\mathcal { L } _ { u } ( u )$ , subject to $0 \\leq u \\leq 1$ : ", + "bbox": [ + 174, + 421, + 825, + 450 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/94744784fb1b140a0885bcf2c3b01b8363691b80548f064a03ad7327e7ecaaae.jpg", + "text": "$$\n\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } \\doteq \\underset { u \\in \\mathbb { R } } { \\arg \\operatorname* { m a x } } \\mathcal { L } _ { u } ( u ) , } \\\\ & { u ^ { * } = \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\mathcal { L } _ { u } ( u ) } \\\\ & { \\quad = \\underset { \\quad \\operatorname* { m i n } \\big ( 1 , \\ : \\operatorname* { m a x } \\big ( 0 , \\ : u _ { \\mathbb { R } } ^ { * } \\big ) \\big ) . } { \\operatorname* { m i n } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 395, + 453, + 602, + 531 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "We now solve for $u _ { \\mathbb { R } } ^ { * }$ ", + "bbox": [ + 173, + 534, + 316, + 549 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/383c0c8a2990a8a1fe9bc2785c13e5c499c68024863d7e4d31d60fb8f6d65484.jpg", + "text": "$$\n\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } = u : 0 = \\frac { \\mathrm { d } \\mathcal { L } ( u ) } { \\mathrm { d } u } = \\frac { \\mathrm { d } \\left( \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) \\right) } { \\mathrm { d } u } } \\\\ & { \\phantom { \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( \\mathbf { a } + u \\cdot \\left( \\mathbf { b } - \\mathbf { a } \\right) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } \\right) , } \\\\ & { \\quad \\quad \\quad u _ { \\mathbb { R } } ^ { * } = \\frac { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mu _ { T } - \\mathbf { a } \\right) } { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { b } - \\mathbf { a } \\right) } , } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 225, + 554, + 772, + 717 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "which gives us: ", + "bbox": [ + 173, + 717, + 276, + 731 + ], + "page_idx": 13 + }, + { + "type": "equation", + "img_path": "images/db6cf4792fb5adcc58aa8af0125af07ce0cae092a9dbefba72ab984801bae039.jpg", + "text": "$$\n\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ = \\ g _ { \\mathrm { l i n e } } ( u ^ { * } ) } \\\\ & { \\ = \\ \\mathbf { a } + u ^ { * } \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\big ( 1 , \\ \\operatorname* { m a x } \\big ( 0 , \\ u _ { \\mathtt { R } } ^ { * } \\big ) \\big ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\bigg ( 1 , \\ \\operatorname* { m a x } \\bigg ( 0 , \\ \\frac { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\bigg ) \\bigg ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 236, + 736, + 759, + 832 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B.1.3 MULTIPLE-LINE-SEGMENT GOAL-SET:", + "text_level": 1, + "bbox": [ + 174, + 842, + 495, + 856 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "More generally, we can combine multiple line-segments to form piecewise linear “paths” we wish y defining a path that con select the optimal segment $\\left( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } , . . . , \\mathbf { p } _ { N } \\right)$ , we can e segment aluate ’s sol $\\mathcal { L } _ { u } ^ { i }$ forn to chto \n$\\mathbb { G } _ { \\mathsf { l i n e - s e o m e n t } } ^ { \\mathbf { p } _ { i } \\to \\mathbf { p } _ { i + 1 } }$ $i ^ { * } = \\arg \\operatorname* { m a x } _ { i } \\mathcal { L } _ { u } ^ { i }$ $i ^ { * }$ $u ^ { * }$ $s _ { T } ^ { * }$ ", + "bbox": [ + 173, + 866, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "B.1.4 POLYGON GOAL-SET", + "text_level": 1, + "bbox": [ + 176, + 103, + 374, + 117 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Instead of a route or path, a user (or program) may wish to provide a general region the agent should go to, and state within that region being equally valid. Polygon regions (including both boundary and interior) offer closed form solution to equation 6 and are simple to specify. A polygon can be specified by an ordered sequence of vertices $( { \\bf p } _ { 0 } , { \\bf p } _ { 1 } , . . . , { \\bf p } _ { N } ) \\in \\bar { \\mathbb { R } } ^ { N \\times 2 }$ . Edges are then defined as the sequence of line-segments between successive vertices (and a final edge between first and last vertex): $\\big ( \\big ( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } \\big ) , . . . , \\big ( \\mathbf { p } _ { N - 1 } , \\mathbf { p } _ { N } \\big ) , \\big ( \\mathbf { p } _ { N } , \\mathbf { p } _ { 0 } \\big ) \\big )$ . Examples shown in Fig. 6 and 7. ", + "bbox": [ + 174, + 128, + 825, + 213 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Solving equation 6 with a polygon has two cases: depending whether $\\mu _ { T }$ is inside the polygon, or outside. If $\\mu _ { T }$ lies inside the polygon, then the optimal value for $\\mathbf { s } _ { T } ^ { * }$ that maximizes $\\mathcal { N } ( \\mathbf { s } _ { T } ^ { * } ; \\mu _ { T } , \\boldsymbol { \\Sigma _ { T } } )$ is simply $\\mu _ { T }$ : the mode of the Gaussian distribution. Otherwise, if $\\mu _ { T }$ lies outside the polygon, then the optimal value $\\mathbf { s } _ { T } ^ { \\ast }$ will lie on one of the polygon’s edges, solved using B.1.3. ", + "bbox": [ + 174, + 218, + 825, + 275 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.2 WAYPOINTER DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 291, + 377, + 305 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The waypointer uses the CARLA planner’s provided route to generate waypoints. In the constrainedbased planning goal likelihoods, we use this route to generate waypoints without interpolating between them. In the relaxed goal likelihoods, we interpolate this route to every 2 meters, and use the first 20 waypoints. As mentioned in the main text, one variant of our approach uses a “smart” waypointer. This waypointer simply removes nearby waypoints closer than 5 meters from the vehicle when a green light is observed in the measurements provided by CARLA, to encourage the agent to move forward, and removes far waypoints beyond 5 meters from the vehicle when a red light is observed in the measurements provided by CARLA. Note that the performance differences between our method without the smart waypointer and our method with the smart waypointer are small: the only signal in the metrics is that the smart waypointer improves the vehicle’s ability to stop for red lights, however, it is quite adept at doing so without the smart waypointer. ", + "bbox": [ + 173, + 318, + 826, + 470 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "B.3 CONSTRUCTING GOAL SETS", + "text_level": 1, + "bbox": [ + 176, + 488, + 413, + 502 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Given the in-lane waypoints generated by CARLA’s route planner, we use these to create Point goal sets, Line-Segment goal sets, and Polygon Goal-Sets, which respectively correspond to the (A) Final-State Indicator, (B) Line-Segment Final-State Indicator, and (C) Final-State Region Indicator described in Section 2.2. For (A), we simply feed the waypoints directly into the Final-State Indicator, which results in a constrained optimization to ensure that the vehicle’s current position in the goal set, in order to allo $S _ { T } \\in \\mathbb { G } \\overset { \\cdot } { = } \\{ g _ { T } ^ { k } \\} _ { k = 1 } ^ { K }$ . We also includeddient-descent based optimization is then formed from combining Eq. 8 with Eq. 12. The gradient to the nearest goal of the final state of the partially-optimized plan encourage the optimization to move the plan closer to that goal. We used $K = 1 0$ . We applied the same procedure to generate the goal set for the (B) Line Segment indicator, as the waypoints returned by the planner are ordered. Finally, for the (C) Final-State Region Indicator (polygon), we used the ordered waypoints as the “skeleton” of a polygon that surrounds. It was created by adding a two vertices for each point $\\mathbf { v } _ { t }$ in the skeleton at a distance 1 meter from $\\mathbf { v } _ { t }$ perpendicular to the segment connecting the surrounding points $\\left( \\mathbf { v } _ { t - 1 } , \\mathbf { v } _ { t + 1 } \\right)$ . This resulted in a goal set $\\mathbb { G } _ { \\mathrm { p o l y g o n } } \\supset \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } .$ , as it surrounds the line segments. The (F) Gaussian Final-State Mixture goal set was constructed in the same way as (A), and also used when the pothole costs were added. ", + "bbox": [ + 173, + 513, + 825, + 736 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For the methods we implemented, the task is to drive the furthest road location from the vehicle’s initial position. Note that this protocol more difficult than the one used in prior work Codevilla et al. (2018); Liang et al. (2018); Sauer et al. (2018); Li et al. (2018); Codevilla et al. (2019), which has no distance guarantees between start positions and goals, and often results in shorter paths. ", + "bbox": [ + 174, + 743, + 825, + 799 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C ARCHITECTURE AND TRAINING DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 819, + 553, + 835 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "The architecture of $q ( \\mathbf { S } | \\phi )$ is shown in Table 5. ", + "bbox": [ + 174, + 851, + 480, + 866 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "C.1 PRIOR VISUALIZATION AND STATISTICS ", + "text_level": 1, + "bbox": [ + 174, + 882, + 496, + 897 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "We show examples of the priors multimodality in Fig. 13 ", + "bbox": [ + 174, + 909, + 547, + 924 + ], + "page_idx": 14 + }, + { + "type": "image", + "img_path": "images/165cba554b1e126586e7d95b1c3a2ea09d4d92b423f23288cb25513c6941cb37.jpg", + "image_caption": [ + "Figure 12: Architecture of $m _ { \\theta }$ and $\\sigma _ { \\theta }$ , which parameterize $q _ { \\theta } ( \\mathbf { S } | \\phi = \\{ \\chi , \\mathbf { s } _ { - \\tau : 0 } , \\lambda \\} )$ . Inputs: LIDAR $\\chi$ , past-states ${ \\bf s } _ { - \\tau : 0 }$ , light-state $\\lambda$ , and latent noise $\\mathbf { Z } _ { 1 : T }$ . Output: trajectory $\\mathbf { S } _ { 1 : T }$ . Details in Appendix C. " + ], + "image_footnote": [], + "bbox": [ + 230, + 101, + 776, + 238 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/61f2f8a184a505731c10b6e22290c9a303397fa8f1276c154028572d29fc6e71.jpg", + "table_caption": [ + "Table 5: Detailed Architecture that implements $\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } , \\phi )$ . Typically, $T = 4 0$ , $D = 2 , H =$ $W = 2 0 0$ . " + ], + "table_footnote": [], + "table_body": "
ComponentInput [dimensionality]Layer or OperationOutput [dimensionality]Details
Static featurizationofcontext:={x,s:A}.
MapFeatx[H,W,2]2D Convolution1x[H,W,32]3 ×3 stride 1,ReLu
MapFeat1-1x[H,W,32]2D Convolutionx[H,W,32]3 × 3 stride 1,ReLu,i∈[2,...,8]
MapFeat8x[H,W,32]2D Convolutionr[H,W,8]3 × 3 stride 1,ReLu
PastRNNS-T:0[T+1,D]RNN[32]GRU across time dimension
Dynamic generation via loop:fort∈{0,...,T-1}.
MapFeats[D]Interpolatet=F(st)[8]Differentiable interpolation
JointFeatt,S0,²n,s0²n田a入pt [D+50+32+1]Concatenate ()
FutureRNNpt[D+50+32+1]RNNpt[50]GRU
FutureMLP1pt[50]Affine (FC)2pt[200]Tanh activation
FutureMLP2pt[200]Affine (FC)mt [D],εt [D,D]Identity activation
MatrixExp[D,D]Tt[D,D]Differentiable Matrix Exponential Rhinehart et al. (2018)
VerletStepSt,St-1,mt,Ot,Zt2st-St-1+mt+OtZtSt+1[D]
", + "bbox": [ + 181, + 348, + 816, + 497 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C.1.1 STATISTICS OF PRIOR AND GOAL LIKELIHOODS ", + "text_level": 1, + "bbox": [ + 174, + 526, + 563, + 540 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Following are the values of the planning criterion on $N \\approx 8 \\cdot 1 0 ^ { 3 }$ rounds from applying the “Gaussian Final-State Mixture” to Town01 Dynamic. Mean of log $q ( \\mathbf { s } ^ { * } | \\boldsymbol { \\phi } ) \\approx 1 0 4$ . Mean of $\\bar { \\log { p ( \\mathcal { G } | \\mathbf { s } ^ { * } , \\boldsymbol { \\phi } ) } } = - 4$ . This illustrates that while the prior’s value mostly dominates the values of the final plans, the Gaussian Final-State Goal Mixture likelihood has a moderate amount of influence on the value of the final plan. ", + "bbox": [ + 174, + 551, + 826, + 607 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "C.2 DATASET ", + "text_level": 1, + "bbox": [ + 174, + 628, + 281, + 643 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "Before training $q ( \\mathbf { S } | \\phi )$ , we ran CARLA’s expert in the dynamic world setting of Town01 to collect a dataset of examples. We have prepared the dataset of collected data for public release upon publication. We ran the autopilot in Town01 for over 900 episodes of 100 seconds each in the presence of 100 other vehicles, and recorded the trajectory of every vehicle and the autopilot’s LIDAR observation. We randomized episodes to either train, validation, or test sets. We created sets of 60,701 train, 7586 validation, and 7567 test scenes, each with 2 seconds of past and 4 seconds of future position information at $1 0 \\mathrm { H z }$ . The dataset also includes 100 episodes obtained by following the same procedure in Town02. ", + "bbox": [ + 174, + 656, + 825, + 767 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "D BASELINE DETAILS ", + "text_level": 1, + "bbox": [ + 174, + 791, + 372, + 808 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "D.1 CONDITIONAL IMITATION LEARNING OF STATES (CILS): ", + "text_level": 1, + "bbox": [ + 174, + 825, + 614, + 840 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "We designed a conditional imitation learning baseline that predicts the setpoint for the PID-controller. Each receives the same scene observations (LIDAR) and is trained with the same set of trajectories as our main method. It uses nearly the same architecture as that of the original CIL, except it outputs setpoints instead of controls, and also observes the traffic light information. We found it very effective for stable control on straightaways. When the model encounters corners, however, prediction is more difficult, as in order to successfully avoid the curbs, the model must implicitly plan a safe path. We found that using the traffic light information allowed it to stop more frequently. ", + "bbox": [ + 174, + 853, + 825, + 924 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/106d03c1b2c5f19e0b13f53be203f8bf17bd27eb4f8541bef1d198d912953f5c.jpg", + "image_caption": [ + "Figure 13: Left: Samples from the prior, $q ( \\mathbf { S } | \\phi )$ , go left or right. Right: Samples go forward or right. " + ], + "image_footnote": [], + "bbox": [ + 284, + 98, + 710, + 253 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 319, + 823, + 347 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "D.2 MODEL-BASED REINFORCEMENT LEARNING: ", + "text_level": 1, + "bbox": [ + 178, + 378, + 532, + 393 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Static-world To compare against a purely model-based reinforcement learning algorithm, we propose a model-based reinforcement learning baseline. This baseline first learns a forwards dynamics model $\\mathbf { s } _ { t + 1 } = f ( \\mathbf { s } _ { t - 3 : t } , \\mathbf { a } _ { t } )$ given observed expert data $\\cdot { a } _ { t }$ are recorded vehicle actions). We use an MLP with two hidden layers, each 100 units. Note that our forwards dynamics model does not imitate the expert preferred actions, but only models what is physically possible. Together with the same LIDAR map $x$ our method uses to locate obstacles, this baseline uses its dynamics model to plan a reachability tree LaValle (2006) through the free-for the lowest-cost path that ends ncost of a position is determined by $\\begin{array} { r } { C ( \\mathbf { s } _ { 1 : T } ; \\mathbf { g } _ { T } ) = | | \\mathbf { s } _ { T } - \\mathbf { g } _ { T } | | _ { 2 } + \\sum _ { t = 1 } ^ { T } c ( \\mathbf { s } _ { t } ) } \\end{array}$ $c ( \\mathbf { s } _ { t } ) = 1 . 5 \\mathbb { 1 } ( \\mathbf { s } _ { t } < 1 $ $+ 0 . 7 5 \\mathbb { 1 } ( 1 < =$ $\\mathbf { s } _ { t } < 2$ meters from any obstacle) $+ \\ddot { \\mathbf { s } _ { t } }$ . ", + "bbox": [ + 173, + 410, + 825, + 553 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We plan forwards over 20 time steps using a breadth-first search over CARLA steering angle $\\{ - 0 . 3 , - 0 . 1 , 0 . , 0 . 1 , 0 . 3 \\}$ , noting valid steering angles are normalized to $[ - 1 , 1 ]$ , with constant throttle at 0.5, noting the valid throttle range is [0, 1]. Our search expands each state node by the available actions and retains the 50 closest nodes to the waypoint. The planned trajectory efficiently reaches the waypoint, and can successfully plan around perceived obstacles to avoid getting stuck. To convert the LIDAR images into obstacle maps, we expanded all obstacles by the approximate radius of the car, 1.5 meters. ", + "bbox": [ + 174, + 559, + 825, + 656 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Dynamic-world We use the same setup as the Static-MBRL method, except we add a discrete temporal dimension to the search space (one $\\mathbb { R } ^ { 2 }$ spatial dimension per T time steps into the future). All static obstacles remain static, however all LIDAR points that were known to collide with a vehicle are now removed: and replaced at every time step using a constant velocity model of that vehicle. We found that the main failure mode was due to both to inaccuracy in constant velocity prediction as well as the model’s inability to perceive lanes in the LIDAR. The vehicle would sometimes wander into the opposing traffic’s lane, having failed to anticipate an oncoming vehicle blocking its path. ", + "bbox": [ + 174, + 662, + 825, + 761 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "E ROBUSTNESS ", + "text_level": 1, + "bbox": [ + 174, + 795, + 318, + 811 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "E.1 DECOY WAYPOINTS EXPERIMENTS ", + "text_level": 1, + "bbox": [ + 176, + 835, + 459, + 851 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In the decoy waypoints experiment, the perturbation distribution is $\\mathcal { N } ( 0 , \\sigma = 8 m )$ : each waypoint is perturbed with a standard deviation of 8 meters. One failure mode of this approach is when decoy waypoints lie on a valid off-route path at intersections, which temporarily confuses the planner about the best route. Additional visualizations are shown in Fig. 14. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 16 + }, + { + "type": "image", + "img_path": "images/d8b13395204615bce46b5db80e8e75041fa8fdfb55f5d3cb5b16d5a4c9f0ca9e.jpg", + "image_caption": [ + "Figure 14: Tolerating bad waypoints. The planner prefers waypoints in the distribution of expert behavior (on the road at a reasonable distance). Columns 1,2: Planning with $^ 1 / 2$ decoy waypoints. Columns 3,4: Planning with all waypoints on the wrong side of the road. " + ], + "image_footnote": [], + "bbox": [ + 248, + 99, + 748, + 287 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "E.2 PLAN RELIABILITY ESTIMATION ", + "text_level": 1, + "bbox": [ + 176, + 371, + 442, + 385 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "Besides using our model to make a best-effort attempt to reach a user-specified goal, the fact that our model produces explicit likelihoods can also be leveraged to test the reliability of a plan by evaluating whether reaching particular waypoints will result in human-like behavior or not. This capability can be quite important for real-world safety-critical applications, such as autonomous driving, and can be used to build a degree of fault tolerance into the system. We designed a classification experiment to evaluate how well our model can recognize safe and unsafe plans. We planned our model to known good waypoints (where the expert actually went) and known bad waypoints (off-road) on 1650 held-out test scenes. We used the planning criterion to classify these as good and bad plans and found that we can detect these bad plans with $9 \\bar { 7 } . 5 \\%$ recall and $9 0 . { \\dot { 2 } } \\%$ precision. This result indicates imitative models could be effective in estimating the reliability of plans. ", + "bbox": [ + 174, + 397, + 825, + 536 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "We determined a threshold on the planning criterion by single-goal planning to the expert’s final location on offline validation data and setting it to the criterion’s mean minus one stddev. Although a more intelligent calibration could be performed by analyzing the information retrieval statistics on the offline validation, we found this simple calibration to yield reasonably good performance. We used 1650 test scenes to perform classification of plans to three different types of waypoints 1) where the expert actually arrived at time $T$ $8 9 . 4 \\%$ reliable), 2) waypoints $2 0 \\mathrm { m }$ ahead along the waypointer-provided route, which are often near where the expert arrives $7 3 . 8 \\%$ reliable) 3) the same waypoints from 2), shifted $2 . 5 \\mathrm { m }$ off of the road $( 2 . 5 \\%$ reliable). This shows that our learned model exhibits a strong preference for valid waypoints. Therefore, a waypointer that provides expert waypoints via 1) half of the time, and slightly out-of-distribution waypoints via 3) in the other half, an “unreliable” plan classifier achieves $9 \\hat { 7 } . 5 \\hat { \\% }$ recall and $9 0 . 2 \\%$ precision. ", + "bbox": [ + 173, + 544, + 825, + 696 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "E.3 OUT-OF-DISTRIBUTION ROBUSTNESS ", + "text_level": 1, + "bbox": [ + 176, + 715, + 477, + 731 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "The existence of both (1) observation noise and (2) uncertain/out-of-distribution observations is an important practical issue for autonomous vehicles. Although our current method only conditions on our current observation, several extensions could help mitigate the negative effects of both (1) and (2). For (1), a Bayesian filtering formulation is arguably most ideal, to better estimate (and track) the location of static and dynamic obstacles under noise. However, such high-dimensional filtering are often intractable, and might necessitate approximate Bayesian deep learning techniques, RNNs, or frame stacking, to benefit from multiple observations. Addressing (2) would ideally be done by placing a prior over our neural network weights, to derive some measure of confidence in our density estimation of how expert each plan is, such that unfamiliar scenes generate large uncertainty on our density estimate that we could detect, and react cautiously (pessimistically) to. One way to address the situation if the distributions are very different is to adopt an ensembling approach Lakshminarayanan et al. (2017) in order for the method to determine when the inputs are out of distribution — the ensemble will usually have higher variance (i.e. disagree) when each element of the ensemble is provided with an out-of-distribution input. For instance, this variance could be used as a penalization in the planning criterion. ", + "bbox": [ + 173, + 743, + 825, + 924 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 103, + 823, + 132 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "E.4 TRAFFIC-LIGHT NOISE", + "text_level": 1, + "bbox": [ + 176, + 148, + 377, + 164 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "As discussed, our model assumes access to the traffic-light state provided by the simulator, which we call $\\lambda$ . However, access to this state would be noisy in practice, because it relies on a sensor-based (usually image-based) detection and classification module. ", + "bbox": [ + 174, + 175, + 825, + 217 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We performed an experiment to assess robustness to noise in $\\lambda$ : we simulated noise in $\\lambda$ by “flipping\" the light state with $20 \\%$ probability, corresponding to a light state detector that has $80 \\%$ accuracy on average. “Flipping\" means that if the light is green, then changingλ to indicate red, and if the light is red, then changing $\\lambda$ to indicate green. We performed this following the experimental method of “Region Final-St. Indicator S.” in dynamic Town02, and ran it with three separate seeds. The means and their standard errors are reported in Table 6. The conclusion we draw is that the approach can still achieve success most of the time, although it tends to violate red-lights more often. Qualitatively, we observed the resulting behavior near intersections to sometimes be “jerky”, with the model alternating between stopping and non-stopping plans. We hypothesize that the model itself could be made more robust if the noise in $\\lambda$ was also present in the training data. ", + "bbox": [ + 174, + 223, + 825, + 363 + ], + "page_idx": 18 + }, + { + "type": "table", + "img_path": "images/7669418f324dd074165ae9dac844ebb227759cbc3041c1c173d0fc037f7f26bc.jpg", + "table_caption": [ + "Table 6: We evaluate the effect of noise in the traffic-light state $( \\lambda )$ on CARLA’s Dynamic Navigation task. Noise in the light state predictably degrades overall and red-light performance, but not to the point of preventing the method from operating at all. " + ], + "table_footnote": [], + "table_body": "
Town02 Dynamic Navigation MethodSuccessRan Red LightWrong laneOff road
Region Final-St. Indicator S. (original)88%±3.32.57%±0.040.49%±0.322.6%±1.06
Region Final-St. Indicator S. (noisy λ)76%±5.034.8%± 2.40.15%±0.041.79% ±0.34
", + "bbox": [ + 176, + 430, + 821, + 483 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "F POTHOLE EXPERIMENT DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 511, + 480, + 526 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We simulated potholes in the environment by randomly inserting them in the cost map near each waypoint $i$ with offsets distributed $\\mathcal { N } _ { i } ( \\mu { = } [ - 1 5 \\mathrm { m } , 0 \\mathrm { m } ]$ , $\\Sigma = \\mathrm { d i a g } ( [ 1 , 0 . 0 1 ] ) )$ , (i.e. mean-centered on the right side of the lane $1 5 \\mathrm { m }$ before each waypoint). We inserted pixels of root cost $- 1 e 3$ in the cost map at a single sample of each ${ \\mathcal { N } } _ { i }$ , binary-dilated the cost map by $^ 1 / 3$ of the lane-width (spreading the cost to neighboring pixels), and then blurred the cost map by convolving with a normalized truncated Gaussian filter of $\\sigma = 1$ and truncation width 1. ", + "bbox": [ + 173, + 542, + 825, + 626 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "G BASELINE VISUALIZATIONS ", + "text_level": 1, + "bbox": [ + 178, + 646, + 444, + 662 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "See Fig. 15 for a visualization of our baseline methods. ", + "bbox": [ + 174, + 678, + 535, + 691 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "H HYPERPARAMETERS ", + "text_level": 1, + "bbox": [ + 176, + 712, + 380, + 729 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "In order to tune the $\\epsilon$ hyperparameter of the unconstrained likelihoods, we undertook the following binary-search procedure. When the prior frequently overwhelmed the posterior, we set $\\epsilon \\gets 0 . 2 \\epsilon$ , to yield tighter covariances, and thus more penalty for failing to satisfy the goals. When the posterior frequently overwhelmed the prior, we set $\\epsilon 5 \\epsilon$ , to yield looser covariances, and thus less penalty for failing to satisfy the goals. We executed this process three times: once for the “Gaussian Final-State Mixture” experiments (Section 4), once for the “Noise Robustness” Experiments (Section 4.1), and once for the pothole-planning experiments (Section 4.2). Note that the Constrained-Goal Likelihoods introduced no hyperparameters to tune. ", + "bbox": [ + 174, + 743, + 825, + 856 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/55a6407c4cd42ba8899098a9c834492b60df3c9d00acac3919a53aec20a9e353.jpg", + "image_caption": [ + "Figure 15: Baseline methods we compare against. The red crosses indicate the past 10 positions of the agent. Left: Imitation Learning baseline: the green cross indicates the provided goal, and the yellow plus indicates the predicted setpoint for the controller. Right: Model-based RL baseline: the green regions indicate the model’s predicted reachability, the red regions are post-processed LIDAR used to create its obstacle map. " + ], + "image_footnote": [], + "bbox": [ + 287, + 388, + 714, + 551 + ], + "page_idx": 19 + } +] \ No newline at end of file diff --git a/parse/train/Skl4mRNYDr/Skl4mRNYDr_middle.json b/parse/train/Skl4mRNYDr/Skl4mRNYDr_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..88d608f4ed3dba35ed00edfa48c3eb6d66314161 --- /dev/null +++ b/parse/train/Skl4mRNYDr/Skl4mRNYDr_middle.json @@ -0,0 +1,53308 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 478, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 334, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 334, + 98 + ], + "score": 1.0, + "content": "DEEP IMITATIVE MODELS FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 479, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 479, + 117 + ], + "score": 1.0, + "content": "FLEXIBLE INFERENCE, PLANNING, AND CONTROL", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 137, + 222, + 170 + ], + "lines": [ + { + "bbox": [ + 111, + 136, + 198, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 136, + 198, + 149 + ], + "score": 1.0, + "content": "Nicholas Rhinehart", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 147, + 167, + 160 + ], + "spans": [ + { + "bbox": [ + 112, + 147, + 167, + 160 + ], + "score": 1.0, + "content": "UC Berkeley", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 111, + 160, + 223, + 171 + ], + "spans": [ + { + "bbox": [ + 111, + 160, + 223, + 171 + ], + "score": 1.0, + "content": "nrhinehart@berkeley.edu", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 246, + 137, + 361, + 170 + ], + "lines": [ + { + "bbox": [ + 246, + 137, + 326, + 148 + ], + "spans": [ + { + "bbox": [ + 246, + 137, + 326, + 148 + ], + "score": 1.0, + "content": "Rowan McAllister", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 245, + 147, + 301, + 161 + ], + "spans": [ + { + "bbox": [ + 245, + 147, + 301, + 161 + ], + "score": 1.0, + "content": "UC Berkeley", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 245, + 160, + 361, + 171 + ], + "spans": [ + { + "bbox": [ + 245, + 160, + 361, + 171 + ], + "score": 1.0, + "content": "rmcallister@berkeley.edu", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 384, + 137, + 485, + 170 + ], + "lines": [ + { + "bbox": [ + 384, + 137, + 447, + 149 + ], + "spans": [ + { + "bbox": [ + 384, + 137, + 447, + 149 + ], + "score": 1.0, + "content": "Sergey Levine", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 383, + 147, + 439, + 161 + ], + "spans": [ + { + "bbox": [ + 383, + 147, + 439, + 161 + ], + "score": 1.0, + "content": "UC Berkeley", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 384, + 159, + 486, + 171 + ], + "spans": [ + { + "bbox": [ + 384, + 159, + 486, + 171 + ], + "score": 1.0, + "content": "svlevine@berkeley.edu", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 278, + 200, + 333, + 212 + ], + "lines": [ + { + "bbox": [ + 276, + 198, + 336, + 214 + ], + "spans": [ + { + "bbox": [ + 276, + 198, + 336, + 214 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 229, + 469, + 383 + ], + "lines": [ + { + "bbox": [ + 141, + 228, + 470, + 242 + ], + "spans": [ + { + "bbox": [ + 141, + 228, + 222, + 242 + ], + "score": 1.0, + "content": "Imitation Learning", + "type": "text" + }, + { + "bbox": [ + 223, + 230, + 239, + 240 + ], + "score": 0.36, + "content": "\\left( \\operatorname { I L } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 228, + 470, + 242 + ], + "score": 1.0, + "content": "is an appealing approach to learn desirable autonomous", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "spans": [ + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "score": 1.0, + "content": "behavior. However, directing IL to achieve arbitrary goals is difficult. In contrast,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "spans": [ + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "score": 1.0, + "content": "planning-based algorithms use dynamics models and reward functions to achieve", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 262, + 469, + 274 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 469, + 274 + ], + "score": 1.0, + "content": "goals. Yet, reward functions that evoke desirable behavior are often difficult to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 273, + 469, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 469, + 285 + ], + "score": 1.0, + "content": "specify. In this paper, we propose “Imitative Models” to combine the benefits", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 154, + 297 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 154, + 284, + 165, + 294 + ], + "score": 0.27, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 284, + 469, + 297 + ], + "score": 1.0, + "content": "and goal-directed planning. Imitative Models are probabilistic predictive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "models of desirable behavior able to plan interpretable expert-like trajectories to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 306, + 469, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 469, + 319 + ], + "score": 1.0, + "content": "achieve specified goals. We derive families of flexible goal objectives, including", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 317, + 469, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 469, + 329 + ], + "score": 1.0, + "content": "constrained goal regions, unconstrained goal sets, and energy-based goals. We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 328, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 328, + 469, + 340 + ], + "score": 1.0, + "content": "show that our method can use these objectives to successfully direct behavior. Our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "method substantially outperforms six IL approaches and a planning-based approach", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 351, + 469, + 362 + ], + "spans": [ + { + "bbox": [ + 142, + 351, + 469, + 362 + ], + "score": 1.0, + "content": "in a dynamic simulated autonomous driving task, and is efficiently learned from", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 361, + 469, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 469, + 374 + ], + "score": 1.0, + "content": "expert demonstrations without online data collection. We also show our approach", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 372, + 457, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 457, + 384 + ], + "score": 1.0, + "content": "is robust to poorly specified goals, such as goals on the wrong side of the road.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 416, + 205, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 208, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 208, + 432 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "Imitation learning (IL) is a framework for learning a model to mimic behavior. At test-time, the model", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "pursues its best-guess of desirable behavior. By letting the model choose its own behavior, we cannot", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "direct it to achieve different goals. While work has augmented IL with goal conditioning (Dosovitskiy", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "& Koltun, 2016; Codevilla et al., 2018), it requires goals to be specified during training, explicit goal", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "labels, and are simple (e.g., turning). In contrast, we seek flexibility to achieve general goals for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 501, + 246, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 246, + 512 + ], + "score": 1.0, + "content": "which we have no demonstrations.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "In contrast to IL, planning-based algorithms like model-based reinforcement learning (MBRL)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "methods do not require expert demonstrations. MBRL can adapt to new tasks specified through", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 538, + 507, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 507, + 552 + ], + "score": 1.0, + "content": "reward functions (Kuvayev & Sutton, 1996; Deisenroth & Rasmussen, 2011). The “model” is a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "dynamics model, used to plan under the user-supplied reward function. Planning enables these", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "approaches to perform new tasks at test-time. The key drawback is that these models learn dynamics", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "of possible behavior rather than dynamics of desirable behavior. This means that the responsibility of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 581, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 597 + ], + "score": 1.0, + "content": "evoking desirable behavior is entirely deferred to engineering the input reward function. Designing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "reward functions that cause MBRL to evoke complex, desirable behavior is difficult when the space", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "of possible undesirable behaviors is large. In order to succeed, the rewards cannot lead the model", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 490, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 490, + 628 + ], + "score": 1.0, + "content": "astray towards observations significantly different than those with which the model was trained.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Our goal is to devise an algorithm that combines the advantages of MBRL and IL by offering MBRL’s", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "flexibility to achieve new tasks at test-time and IL’s potential to learn desirable behavior entirely from", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "offline data. To accomplish this, we first train a model to forecast expert trajectories with a density", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "function, which can score trajectories and plans by how likely they are to come from the expert. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "probabilistic model is necessary because expert behavior is stochastic: e.g. at an intersection, the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "expert could choose to turn left or right. Next, we derive a principled probabilistic inference objective", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "to create plans that incorporate both (1) the model and (2) arbitrary new tasks. Finally, we derive", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "families of tasks that we can provide to the inference framework. Our method can accomplish new", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 473, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 473, + 733 + ], + "score": 1.0, + "content": "tasks specified as complex goals without having seen an expert complete these tasks before.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 47 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 294, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 79, + 478, + 117 + ], + "lines": [ + { + "bbox": [ + 106, + 77, + 334, + 98 + ], + "spans": [ + { + "bbox": [ + 106, + 77, + 334, + 98 + ], + "score": 1.0, + "content": "DEEP IMITATIVE MODELS FOR", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 98, + 479, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 98, + 479, + 117 + ], + "score": 1.0, + "content": "FLEXIBLE INFERENCE, PLANNING, AND CONTROL", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 137, + 222, + 170 + ], + "lines": [ + { + "bbox": [ + 111, + 136, + 198, + 149 + ], + "spans": [ + { + "bbox": [ + 111, + 136, + 198, + 149 + ], + "score": 1.0, + "content": "Nicholas Rhinehart", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 147, + 167, + 160 + ], + "spans": [ + { + "bbox": [ + 112, + 147, + 167, + 160 + ], + "score": 1.0, + "content": "UC Berkeley", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 111, + 160, + 223, + 171 + ], + "spans": [ + { + "bbox": [ + 111, + 160, + 223, + 171 + ], + "score": 1.0, + "content": "nrhinehart@berkeley.edu", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 111, + 136, + 223, + 171 + ] + }, + { + "type": "text", + "bbox": [ + 246, + 137, + 361, + 170 + ], + "lines": [ + { + "bbox": [ + 246, + 137, + 326, + 148 + ], + "spans": [ + { + "bbox": [ + 246, + 137, + 326, + 148 + ], + "score": 1.0, + "content": "Rowan McAllister", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 245, + 147, + 301, + 161 + ], + "spans": [ + { + "bbox": [ + 245, + 147, + 301, + 161 + ], + "score": 1.0, + "content": "UC Berkeley", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 245, + 160, + 361, + 171 + ], + "spans": [ + { + "bbox": [ + 245, + 160, + 361, + 171 + ], + "score": 1.0, + "content": "rmcallister@berkeley.edu", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 6, + "bbox_fs": [ + 245, + 137, + 361, + 171 + ] + }, + { + "type": "list", + "bbox": [ + 384, + 137, + 485, + 170 + ], + "lines": [ + { + "bbox": [ + 384, + 137, + 447, + 149 + ], + "spans": [ + { + "bbox": [ + 384, + 137, + 447, + 149 + ], + "score": 1.0, + "content": "Sergey Levine", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 383, + 147, + 439, + 161 + ], + "spans": [ + { + "bbox": [ + 383, + 147, + 439, + 161 + ], + "score": 1.0, + "content": "UC Berkeley", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 384, + 159, + 486, + 171 + ], + "spans": [ + { + "bbox": [ + 384, + 159, + 486, + 171 + ], + "score": 1.0, + "content": "svlevine@berkeley.edu", + "type": "text" + } + ], + "index": 10, + "is_list_start_line": true + } + ], + "index": 7, + "bbox_fs": [ + 383, + 137, + 486, + 171 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 200, + 333, + 212 + ], + "lines": [ + { + "bbox": [ + 276, + 198, + 336, + 214 + ], + "spans": [ + { + "bbox": [ + 276, + 198, + 336, + 214 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 143, + 229, + 469, + 383 + ], + "lines": [ + { + "bbox": [ + 141, + 228, + 470, + 242 + ], + "spans": [ + { + "bbox": [ + 141, + 228, + 222, + 242 + ], + "score": 1.0, + "content": "Imitation Learning", + "type": "text" + }, + { + "bbox": [ + 223, + 230, + 239, + 240 + ], + "score": 0.36, + "content": "\\left( \\operatorname { I L } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 228, + 470, + 242 + ], + "score": 1.0, + "content": "is an appealing approach to learn desirable autonomous", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "spans": [ + { + "bbox": [ + 141, + 240, + 470, + 253 + ], + "score": 1.0, + "content": "behavior. However, directing IL to achieve arbitrary goals is difficult. In contrast,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "spans": [ + { + "bbox": [ + 141, + 251, + 470, + 263 + ], + "score": 1.0, + "content": "planning-based algorithms use dynamics models and reward functions to achieve", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 262, + 469, + 274 + ], + "spans": [ + { + "bbox": [ + 141, + 262, + 469, + 274 + ], + "score": 1.0, + "content": "goals. Yet, reward functions that evoke desirable behavior are often difficult to", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 273, + 469, + 285 + ], + "spans": [ + { + "bbox": [ + 141, + 273, + 469, + 285 + ], + "score": 1.0, + "content": "specify. In this paper, we propose “Imitative Models” to combine the benefits", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 284, + 469, + 297 + ], + "spans": [ + { + "bbox": [ + 141, + 284, + 154, + 297 + ], + "score": 1.0, + "content": "of", + "type": "text" + }, + { + "bbox": [ + 154, + 284, + 165, + 294 + ], + "score": 0.27, + "content": "\\mathrm { I L }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 284, + 469, + 297 + ], + "score": 1.0, + "content": "and goal-directed planning. Imitative Models are probabilistic predictive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "spans": [ + { + "bbox": [ + 141, + 295, + 469, + 307 + ], + "score": 1.0, + "content": "models of desirable behavior able to plan interpretable expert-like trajectories to", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 306, + 469, + 319 + ], + "spans": [ + { + "bbox": [ + 141, + 306, + 469, + 319 + ], + "score": 1.0, + "content": "achieve specified goals. We derive families of flexible goal objectives, including", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 317, + 469, + 329 + ], + "spans": [ + { + "bbox": [ + 141, + 317, + 469, + 329 + ], + "score": 1.0, + "content": "constrained goal regions, unconstrained goal sets, and energy-based goals. We", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 328, + 469, + 340 + ], + "spans": [ + { + "bbox": [ + 141, + 328, + 469, + 340 + ], + "score": 1.0, + "content": "show that our method can use these objectives to successfully direct behavior. Our", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "spans": [ + { + "bbox": [ + 141, + 339, + 469, + 351 + ], + "score": 1.0, + "content": "method substantially outperforms six IL approaches and a planning-based approach", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 351, + 469, + 362 + ], + "spans": [ + { + "bbox": [ + 142, + 351, + 469, + 362 + ], + "score": 1.0, + "content": "in a dynamic simulated autonomous driving task, and is efficiently learned from", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 361, + 469, + 374 + ], + "spans": [ + { + "bbox": [ + 141, + 361, + 469, + 374 + ], + "score": 1.0, + "content": "expert demonstrations without online data collection. We also show our approach", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 372, + 457, + 384 + ], + "spans": [ + { + "bbox": [ + 141, + 372, + 457, + 384 + ], + "score": 1.0, + "content": "is robust to poorly specified goals, such as goals on the wrong side of the road.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 18.5, + "bbox_fs": [ + 141, + 228, + 470, + 384 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 416, + 205, + 429 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 208, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 208, + 432 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 445, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 446, + 505, + 457 + ], + "score": 1.0, + "content": "Imitation learning (IL) is a framework for learning a model to mimic behavior. At test-time, the model", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 506, + 469 + ], + "score": 1.0, + "content": "pursues its best-guess of desirable behavior. By letting the model choose its own behavior, we cannot", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 505, + 480 + ], + "score": 1.0, + "content": "direct it to achieve different goals. While work has augmented IL with goal conditioning (Dosovitskiy", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "& Koltun, 2016; Codevilla et al., 2018), it requires goals to be specified during training, explicit goal", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "spans": [ + { + "bbox": [ + 105, + 488, + 506, + 502 + ], + "score": 1.0, + "content": "labels, and are simple (e.g., turning). In contrast, we seek flexibility to achieve general goals for", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 501, + 246, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 501, + 246, + 512 + ], + "score": 1.0, + "content": "which we have no demonstrations.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 446, + 506, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 517, + 505, + 627 + ], + "lines": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 506, + 530 + ], + "score": 1.0, + "content": "In contrast to IL, planning-based algorithms like model-based reinforcement learning (MBRL)", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "spans": [ + { + "bbox": [ + 106, + 528, + 505, + 541 + ], + "score": 1.0, + "content": "methods do not require expert demonstrations. MBRL can adapt to new tasks specified through", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 538, + 507, + 552 + ], + "spans": [ + { + "bbox": [ + 104, + 538, + 507, + 552 + ], + "score": 1.0, + "content": "reward functions (Kuvayev & Sutton, 1996; Deisenroth & Rasmussen, 2011). The “model” is a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 505, + 563 + ], + "score": 1.0, + "content": "dynamics model, used to plan under the user-supplied reward function. Planning enables these", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 561, + 506, + 574 + ], + "score": 1.0, + "content": "approaches to perform new tasks at test-time. The key drawback is that these models learn dynamics", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 506, + 585 + ], + "score": 1.0, + "content": "of possible behavior rather than dynamics of desirable behavior. This means that the responsibility of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 581, + 506, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 581, + 506, + 597 + ], + "score": 1.0, + "content": "evoking desirable behavior is entirely deferred to engineering the input reward function. Designing", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 105, + 593, + 506, + 607 + ], + "score": 1.0, + "content": "reward functions that cause MBRL to evoke complex, desirable behavior is difficult when the space", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 106, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "of possible undesirable behaviors is large. In order to succeed, the rewards cannot lead the model", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 616, + 490, + 628 + ], + "spans": [ + { + "bbox": [ + 105, + 616, + 490, + 628 + ], + "score": 1.0, + "content": "astray towards observations significantly different than those with which the model was trained.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 516, + 507, + 628 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 632, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "Our goal is to devise an algorithm that combines the advantages of MBRL and IL by offering MBRL’s", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 505, + 656 + ], + "score": 1.0, + "content": "flexibility to achieve new tasks at test-time and IL’s potential to learn desirable behavior entirely from", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "offline data. To accomplish this, we first train a model to forecast expert trajectories with a density", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "function, which can score trajectories and plans by how likely they are to come from the expert. A", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 677, + 506, + 690 + ], + "score": 1.0, + "content": "probabilistic model is necessary because expert behavior is stochastic: e.g. at an intersection, the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 505, + 701 + ], + "score": 1.0, + "content": "expert could choose to turn left or right. Next, we derive a principled probabilistic inference objective", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "to create plans that incorporate both (1) the model and (2) arbitrary new tasks. Finally, we derive", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "families of tasks that we can provide to the inference framework. Our method can accomplish new", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 721, + 473, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 473, + 733 + ], + "score": 1.0, + "content": "tasks specified as complex goals without having seen an expert complete these tasks before.", + "type": "text" + } + ], + "index": 51 + } + ], + "index": 47, + "bbox_fs": [ + 105, + 633, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 80, + 499, + 265 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 80, + 499, + 265 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 80, + 499, + 265 + ], + "spans": [ + { + "bbox": [ + 115, + 80, + 499, + 265 + ], + "score": 0.973, + "type": "image", + "image_path": "bf69f40603bad34ad920a937a823802c36761e74323933467cc0c50446e6d9b5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 80, + 499, + 141.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 141.66666666666666, + 499, + 203.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 203.33333333333331, + 499, + 265.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 278, + 506, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 290 + ], + "score": 1.0, + "content": "Figure 1: Our method: deep imitative models. Top Center. We use demonstrations to learn a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 220, + 302 + ], + "score": 1.0, + "content": "probability density function", + "type": "text" + }, + { + "bbox": [ + 221, + 291, + 227, + 300 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "of future behavior and deploy it to accomplish various tasks. Left: A", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "region in the ground plane is input to a planning procedure that reasons about how the expert would", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "achieve that task. It coarsely specifies a destination, and guides the vehicle to turn left. Right: Goal", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 322, + 499, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 499, + 335 + ], + "score": 1.0, + "content": "positions and potholes yield a plan that avoids potholes and achieves one of the goals on the right.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 506, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "score": 1.0, + "content": "We investigate properties of our method on a dynamic simulated autonomous driving task (see Fig. 1).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "Videos are available at https://sites.google.com/view/imitative-models. Our contributions are", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 378, + 153, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 153, + 392 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 403, + 506, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "1. Interpretable expert-like plans with minimal reward engineering. Our method outputs multi-", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 118, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 118, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "step expert-like plans, offering superior interpretability to one-step imitation learning models. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 424, + 507, + 440 + ], + "spans": [ + { + "bbox": [ + 117, + 424, + 507, + 440 + ], + "score": 1.0, + "content": "contrast to MBRL, our method generates expert-like behaviors with minimal reward engineering.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "2. Flexibility to new tasks: In contrast to IL, our method flexibly incorporates and achieves goals", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 118, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 118, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "not seen during training, and performs complex tasks that were never demonstrated, such as", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 118, + 461, + 460, + 474 + ], + "spans": [ + { + "bbox": [ + 118, + 461, + 460, + 474 + ], + "score": 1.0, + "content": "navigating to goal regions and avoiding test-time only potholes, as depicted in Fig. 1.", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "3. Robustness to goal specification noise: We show that our method is robust to noise in the goal", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 118, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 118, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "specification. In our application, we show that our agent can receive goals on the wrong side of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 118, + 498, + 460, + 511 + ], + "spans": [ + { + "bbox": [ + 118, + 498, + 460, + 511 + ], + "score": 1.0, + "content": "the road, yet still navigate towards them while staying on the correct side of the road.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "4. State-of-the-art CARLA performance: Our method substantially outperforms MBRL, a custom", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 118, + 521, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 118, + 521, + 506, + 537 + ], + "score": 1.0, + "content": "IL method, and all five prior CARLA IL methods known to us. It learned near-perfect driving", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 118, + 533, + 451, + 547 + ], + "spans": [ + { + "bbox": [ + 118, + 533, + 451, + 547 + ], + "score": 1.0, + "content": "through dynamic and static CARLA environments from expert observations alone.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 108, + 564, + 258, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 260, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 260, + 578 + ], + "score": 1.0, + "content": "2 DEEP IMITATIVE MODELS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 506, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "We begin by formalizing assumptions and notation. We model continuous-state, discrete-time,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "Partially-Observed Markov Decision Processes (POMDPs). For brevity, we call the components of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 611, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 506, + 626 + ], + "score": 1.0, + "content": "state of which we have direct observations the agent’s “state”, although we explicitly assume these", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 623, + 504, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 425, + 636 + ], + "score": 1.0, + "content": "states do not represent the full Markovian world state. Our agent’s state at time", + "type": "text" + }, + { + "bbox": [ + 426, + 624, + 431, + 634 + ], + "score": 0.78, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 623, + 440, + 636 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 441, + 623, + 477, + 635 + ], + "score": 0.87, + "content": "\\bar { \\bf s } _ { t } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 623, + 480, + 636 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 480, + 623, + 504, + 634 + ], + "score": 0.86, + "content": "t = 0", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 243, + 646 + ], + "score": 1.0, + "content": "refers to the current time step, and", + "type": "text" + }, + { + "bbox": [ + 243, + 635, + 251, + 646 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 634, + 506, + 646 + ], + "score": 1.0, + "content": "is all of the agent’s observations. Variables are bolded. Random", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 645, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 645, + 407, + 658 + ], + "score": 1.0, + "content": "variables are capitalized. Absent subscripts denote all future time steps, e.g.", + "type": "text" + }, + { + "bbox": [ + 407, + 645, + 485, + 657 + ], + "score": 0.92, + "content": "\\mathbf { S } \\doteq \\mathbf { S } _ { 1 : T } \\in \\mathbb { R } ^ { T \\times D }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 645, + 507, + 658 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 333, + 669 + ], + "score": 1.0, + "content": "denote a probability density function of a random variable", + "type": "text" + }, + { + "bbox": [ + 334, + 657, + 342, + 667 + ], + "score": 0.3, + "content": "\\mathbf { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 656, + 352, + 669 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 353, + 657, + 372, + 668 + ], + "score": 0.9, + "content": "p ( \\mathbf { S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 656, + 438, + 669 + ], + "score": 1.0, + "content": ", and its value as", + "type": "text" + }, + { + "bbox": [ + 438, + 657, + 502, + 669 + ], + "score": 0.91, + "content": "p ( \\mathbf { s } ) \\doteq p ( \\mathbf { S } = \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 656, + 506, + 669 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "score": 1.0, + "content": "To learn agent dynamics that are possible and preferred, we construct a model of expert behavior.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 684, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 685, + 224, + 700 + ], + "score": 1.0, + "content": "We fit an “Imitative Model”", + "type": "text" + }, + { + "bbox": [ + 225, + 684, + 367, + 699 + ], + "score": 0.93, + "content": "\\begin{array} { r } { q ( \\mathbf { S } _ { 1 : T } | \\phi ) = \\prod _ { t = 1 } ^ { T } q ( \\mathbf { S } _ { t } | \\mathbf { S } _ { 1 : t - 1 } , \\phi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 685, + 506, + 700 + ], + "score": 1.0, + "content": "to a dataset of expert trajectories", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 696, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 182, + 711 + ], + "score": 0.92, + "content": "\\mathcal { D } = \\{ ( s ^ { i } , \\phi ^ { i } ) \\} _ { i = 1 } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 696, + 401, + 714 + ], + "score": 1.0, + "content": "drawn from a (unknown) distribution of expert behavior", + "type": "text" + }, + { + "bbox": [ + 401, + 698, + 454, + 711 + ], + "score": 0.93, + "content": "s ^ { i } \\sim p ( \\mathbf { S } | \\phi ^ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 696, + 506, + 714 + ], + "score": 1.0, + "content": ". By training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 135, + 722 + ], + "score": 0.9, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "to forecast expert trajectories with high likelihood, we model the scene-conditioned expert", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 454, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 454, + 733 + ], + "score": 1.0, + "content": "dynamics, which can score trajectories by how likely they are to come from the expert.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33 + } + ], + "page_idx": 1, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 115, + 80, + 499, + 265 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 115, + 80, + 499, + 265 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 115, + 80, + 499, + 265 + ], + "spans": [ + { + "bbox": [ + 115, + 80, + 499, + 265 + ], + "score": 0.973, + "type": "image", + "image_path": "bf69f40603bad34ad920a937a823802c36761e74323933467cc0c50446e6d9b5.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 115, + 80, + 499, + 141.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 115, + 141.66666666666666, + 499, + 203.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 115, + 203.33333333333331, + 499, + 265.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 278, + 506, + 334 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 506, + 290 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 290 + ], + "score": 1.0, + "content": "Figure 1: Our method: deep imitative models. Top Center. We use demonstrations to learn a", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 220, + 302 + ], + "score": 1.0, + "content": "probability density function", + "type": "text" + }, + { + "bbox": [ + 221, + 291, + 227, + 300 + ], + "score": 0.72, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 227, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "of future behavior and deploy it to accomplish various tasks. Left: A", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 505, + 313 + ], + "score": 1.0, + "content": "region in the ground plane is input to a planning procedure that reasons about how the expert would", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 311, + 505, + 323 + ], + "spans": [ + { + "bbox": [ + 106, + 311, + 505, + 323 + ], + "score": 1.0, + "content": "achieve that task. It coarsely specifies a destination, and guides the vehicle to turn left. Right: Goal", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 322, + 499, + 335 + ], + "spans": [ + { + "bbox": [ + 105, + 322, + 499, + 335 + ], + "score": 1.0, + "content": "positions and potholes yield a plan that avoids potholes and achieves one of the goals on the right.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + }, + { + "type": "text", + "bbox": [ + 106, + 358, + 506, + 390 + ], + "lines": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 371 + ], + "score": 1.0, + "content": "We investigate properties of our method on a dynamic simulated autonomous driving task (see Fig. 1).", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 368, + 505, + 381 + ], + "score": 1.0, + "content": "Videos are available at https://sites.google.com/view/imitative-models. Our contributions are", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 378, + 153, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 153, + 392 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 357, + 506, + 392 + ] + }, + { + "type": "list", + "bbox": [ + 106, + 403, + 506, + 545 + ], + "lines": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "spans": [ + { + "bbox": [ + 106, + 403, + 506, + 416 + ], + "score": 1.0, + "content": "1. Interpretable expert-like plans with minimal reward engineering. Our method outputs multi-", + "type": "text" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 414, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 118, + 414, + 505, + 427 + ], + "score": 1.0, + "content": "step expert-like plans, offering superior interpretability to one-step imitation learning models. In", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 117, + 424, + 507, + 440 + ], + "spans": [ + { + "bbox": [ + 117, + 424, + 507, + 440 + ], + "score": 1.0, + "content": "contrast to MBRL, our method generates expert-like behaviors with minimal reward engineering.", + "type": "text" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 452 + ], + "score": 1.0, + "content": "2. Flexibility to new tasks: In contrast to IL, our method flexibly incorporates and achieves goals", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 450, + 505, + 463 + ], + "spans": [ + { + "bbox": [ + 118, + 450, + 505, + 463 + ], + "score": 1.0, + "content": "not seen during training, and performs complex tasks that were never demonstrated, such as", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 118, + 461, + 460, + 474 + ], + "spans": [ + { + "bbox": [ + 118, + 461, + 460, + 474 + ], + "score": 1.0, + "content": "navigating to goal regions and avoiding test-time only potholes, as depicted in Fig. 1.", + "type": "text" + } + ], + "index": 16, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "score": 1.0, + "content": "3. Robustness to goal specification noise: We show that our method is robust to noise in the goal", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 487, + 506, + 499 + ], + "spans": [ + { + "bbox": [ + 118, + 487, + 506, + 499 + ], + "score": 1.0, + "content": "specification. In our application, we show that our agent can receive goals on the wrong side of", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 118, + 498, + 460, + 511 + ], + "spans": [ + { + "bbox": [ + 118, + 498, + 460, + 511 + ], + "score": 1.0, + "content": "the road, yet still navigate towards them while staying on the correct side of the road.", + "type": "text" + } + ], + "index": 19, + "is_list_end_line": true + }, + { + "bbox": [ + 104, + 511, + 505, + 524 + ], + "spans": [ + { + "bbox": [ + 104, + 511, + 505, + 524 + ], + "score": 1.0, + "content": "4. State-of-the-art CARLA performance: Our method substantially outperforms MBRL, a custom", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 118, + 521, + 506, + 537 + ], + "spans": [ + { + "bbox": [ + 118, + 521, + 506, + 537 + ], + "score": 1.0, + "content": "IL method, and all five prior CARLA IL methods known to us. It learned near-perfect driving", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 118, + 533, + 451, + 547 + ], + "spans": [ + { + "bbox": [ + 118, + 533, + 451, + 547 + ], + "score": 1.0, + "content": "through dynamic and static CARLA environments from expert observations alone.", + "type": "text" + } + ], + "index": 22, + "is_list_end_line": true + } + ], + "index": 16.5, + "bbox_fs": [ + 104, + 403, + 507, + 547 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 564, + 258, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 260, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 260, + 578 + ], + "score": 1.0, + "content": "2 DEEP IMITATIVE MODELS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 591, + 506, + 668 + ], + "lines": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 590, + 506, + 603 + ], + "score": 1.0, + "content": "We begin by formalizing assumptions and notation. We model continuous-state, discrete-time,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 506, + 614 + ], + "score": 1.0, + "content": "Partially-Observed Markov Decision Processes (POMDPs). For brevity, we call the components of", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 611, + 506, + 626 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 506, + 626 + ], + "score": 1.0, + "content": "state of which we have direct observations the agent’s “state”, although we explicitly assume these", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 623, + 504, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 425, + 636 + ], + "score": 1.0, + "content": "states do not represent the full Markovian world state. Our agent’s state at time", + "type": "text" + }, + { + "bbox": [ + 426, + 624, + 431, + 634 + ], + "score": 0.78, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 431, + 623, + 440, + 636 + ], + "score": 1.0, + "content": "is", + "type": "text" + }, + { + "bbox": [ + 441, + 623, + 477, + 635 + ], + "score": 0.87, + "content": "\\bar { \\bf s } _ { t } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 623, + 480, + 636 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 480, + 623, + 504, + 634 + ], + "score": 0.86, + "content": "t = 0", + "type": "inline_equation" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 634, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 243, + 646 + ], + "score": 1.0, + "content": "refers to the current time step, and", + "type": "text" + }, + { + "bbox": [ + 243, + 635, + 251, + 646 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 634, + 506, + 646 + ], + "score": 1.0, + "content": "is all of the agent’s observations. Variables are bolded. Random", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 104, + 645, + 507, + 658 + ], + "spans": [ + { + "bbox": [ + 104, + 645, + 407, + 658 + ], + "score": 1.0, + "content": "variables are capitalized. Absent subscripts denote all future time steps, e.g.", + "type": "text" + }, + { + "bbox": [ + 407, + 645, + 485, + 657 + ], + "score": 0.92, + "content": "\\mathbf { S } \\doteq \\mathbf { S } _ { 1 : T } \\in \\mathbb { R } ^ { T \\times D }", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 645, + 507, + 658 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 656, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 106, + 656, + 333, + 669 + ], + "score": 1.0, + "content": "denote a probability density function of a random variable", + "type": "text" + }, + { + "bbox": [ + 334, + 657, + 342, + 667 + ], + "score": 0.3, + "content": "\\mathbf { S }", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 656, + 352, + 669 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 353, + 657, + 372, + 668 + ], + "score": 0.9, + "content": "p ( \\mathbf { S } )", + "type": "inline_equation" + }, + { + "bbox": [ + 373, + 656, + 438, + 669 + ], + "score": 1.0, + "content": ", and its value as", + "type": "text" + }, + { + "bbox": [ + 438, + 657, + 502, + 669 + ], + "score": 0.91, + "content": "p ( \\mathbf { s } ) \\doteq p ( \\mathbf { S } = \\mathbf { s } )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 656, + 506, + 669 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27, + "bbox_fs": [ + 104, + 590, + 507, + 669 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 673, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "spans": [ + { + "bbox": [ + 105, + 672, + 506, + 686 + ], + "score": 1.0, + "content": "To learn agent dynamics that are possible and preferred, we construct a model of expert behavior.", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 104, + 684, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 104, + 685, + 224, + 700 + ], + "score": 1.0, + "content": "We fit an “Imitative Model”", + "type": "text" + }, + { + "bbox": [ + 225, + 684, + 367, + 699 + ], + "score": 0.93, + "content": "\\begin{array} { r } { q ( \\mathbf { S } _ { 1 : T } | \\phi ) = \\prod _ { t = 1 } ^ { T } q ( \\mathbf { S } _ { t } | \\mathbf { S } _ { 1 : t - 1 } , \\phi ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 685, + 506, + 700 + ], + "score": 1.0, + "content": "to a dataset of expert trajectories", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 696, + 506, + 714 + ], + "spans": [ + { + "bbox": [ + 106, + 697, + 182, + 711 + ], + "score": 0.92, + "content": "\\mathcal { D } = \\{ ( s ^ { i } , \\phi ^ { i } ) \\} _ { i = 1 } ^ { N }", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 696, + 401, + 714 + ], + "score": 1.0, + "content": "drawn from a (unknown) distribution of expert behavior", + "type": "text" + }, + { + "bbox": [ + 401, + 698, + 454, + 711 + ], + "score": 0.93, + "content": "s ^ { i } \\sim p ( \\mathbf { S } | \\phi ^ { i } )", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 696, + 506, + 714 + ], + "score": 1.0, + "content": ". By training", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 107, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 107, + 710, + 135, + 722 + ], + "score": 0.9, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "to forecast expert trajectories with high likelihood, we model the scene-conditioned expert", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 721, + 454, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 454, + 733 + ], + "score": 1.0, + "content": "dynamics, which can score trajectories by how likely they are to come from the expert.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33, + "bbox_fs": [ + 104, + 672, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 272, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "score": 1.0, + "content": "2.1 IMITATIVE PLANNING TO GOALS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 508, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 166, + 117 + ], + "score": 1.0, + "content": "After training,", + "type": "text" + }, + { + "bbox": [ + 166, + 103, + 195, + 115 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 101, + 508, + 117 + ], + "score": 1.0, + "content": "can generate trajectories that resemble those that the expert might generate –", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "e.g. trajectories that navigate roads with expert-like maneuvers. However, these maneuvers will not", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "have a specific goal. Beyond generating human-like behaviors, we wish to direct our agent to goals", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "and have the agent automatically reason about the necessary mid-level details. We define general", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 230, + 159 + ], + "score": 1.0, + "content": "tasks by a set of goal variables", + "type": "text" + }, + { + "bbox": [ + 230, + 147, + 238, + 158 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 147, + 447, + 159 + ], + "score": 1.0, + "content": ". The probability of a plan s conditioned on the goal", + "type": "text" + }, + { + "bbox": [ + 447, + 147, + 455, + 158 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "is modelled", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 164, + 171 + ], + "score": 1.0, + "content": "by a posterior", + "type": "text" + }, + { + "bbox": [ + 164, + 158, + 201, + 170 + ], + "score": 0.92, + "content": "p ( \\mathbf { s } | \\mathcal { G } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 158, + 348, + 171 + ], + "score": 1.0, + "content": ". This posterior is implemented with", + "type": "text" + }, + { + "bbox": [ + 349, + 158, + 375, + 169 + ], + "score": 0.93, + "content": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "as a learned imitation prior and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 145, + 181 + ], + "score": 0.92, + "content": "p ( \\mathcal { G } | \\mathbf { s } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 169, + 352, + 182 + ], + "score": 1.0, + "content": "as a test-time goal likelihood. We give examples of", + "type": "text" + }, + { + "bbox": [ + 353, + 169, + 390, + 181 + ], + "score": 0.92, + "content": "p ( { \\mathcal { G } } | \\mathbf { s } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "after deriving a maximum a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 455, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 455, + 192 + ], + "score": 1.0, + "content": "posteriori inference procedure to generate expert-like plans that achieve abstract goals:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5 + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 196, + 475, + 247 + ], + "lines": [ + { + "bbox": [ + 136, + 196, + 475, + 247 + ], + "spans": [ + { + "bbox": [ + 136, + 196, + 475, + 247 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\mathbf { s } ^ { * } \\ \\stackrel { } { = } \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log p ( \\mathbf { s } | \\mathcal { G } , \\boldsymbol { \\phi } ) \\ = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log q ( \\mathbf { s } | \\boldsymbol { \\phi } ) + \\log p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) - \\log p ( \\mathcal { G } | \\boldsymbol { \\phi } ) } & { } \\\\ { \\ \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log \\underset { \\underset { \\mathrm { i m i t a t i o n ~ p r i o r } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } + \\log \\underset { \\mathrm { g o a l l i k e l i h o o d } } { \\underbrace { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) } } . } \\end{array}", + "type": "interline_equation", + "image_path": "b0c5d6faad506e29b1f6cc828fa5cbffc416d10408e63aa66b0ef40929e12ad2.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 136, + 196, + 475, + 213.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 136, + 213.0, + 475, + 230.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 136, + 230.0, + 475, + 247.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "We perform gradient-based optimization of Eq. 1, and defer this discussion to Appendix A. Next, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "discuss several goal likelihoods, which direct the planning in different ways. They communicate goals", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 274, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 505, + 286 + ], + "score": 1.0, + "content": "they desire the agent to achieve, but not how to achieve them. The planning procedure determines how", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "to achieve them by producing paths similar to those an expert would have taken to reach the given", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "goal. In contrast to black-box one-step IL that predicts controls, our method produces interpretable", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "multi-step plans accompanied by two scores. One estimates the plan’s “expertness”, the second", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 490, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 490, + 331 + ], + "score": 1.0, + "content": "estimates its probability to achieve the goal. Their sum communicates the plan’s overall quality.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 334, + 506, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 347 + ], + "score": 1.0, + "content": "Our approach can also be viewed as a learning-based method to integrate mid-level and high-level", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "controllers together, where demonstrations from both are available at train-time, only the high-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "level controller is available at test-time, and the high-level controller can vary. The high-level", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "controller’s action specifies a subgoal for the mid-level controller. A density model of future", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "trajectories of an expert mid-level controller is learned at train-time, and is amenable to different types", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "of direction as specified by the high-level controller. In this sense, the model is an “apprentice”, having", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "learned to imitate mid-level behaviors. In our application, the high-level controller is composed", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 130, + 424 + ], + "score": 1.0, + "content": "of an", + "type": "text" + }, + { + "bbox": [ + 130, + 412, + 143, + 422 + ], + "score": 0.86, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "path-planning algorithm and one of a library of components that forms goal likelihoods", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 246, + 435 + ], + "score": 1.0, + "content": "from the waypoints produced by", + "type": "text" + }, + { + "bbox": [ + 247, + 423, + 259, + 433 + ], + "score": 0.86, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 423, + 506, + 435 + ], + "score": 1.0, + "content": ". Connecting this to related approaches, learning the mid-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 434, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 445 + ], + "score": 1.0, + "content": "level controller (Imitative Model) resembles offline IL, whereas inference with an Imitative Model", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 445, + 484, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 484, + 457 + ], + "score": 1.0, + "content": "resembles trajectory optimization in MBRL, given goals provided by the high-level controller.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24 + }, + { + "type": "title", + "bbox": [ + 108, + 469, + 290, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 291, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 291, + 482 + ], + "score": 1.0, + "content": "2.2 CONSTRUCTING GOAL LIKELIHOODS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 490, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 504 + ], + "score": 1.0, + "content": "Constraint-based planning to goal sets (hyperparameter-free): Consider the setting where we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "score": 1.0, + "content": "have access to a set of desired final states, one of which the agent should achieve. We can model this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 511, + 489, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 450, + 525 + ], + "score": 1.0, + "content": "by applying a Dirac-delta distribution on the final state, to ensure it lands in a goal set", + "type": "text" + }, + { + "bbox": [ + 450, + 512, + 484, + 523 + ], + "score": 0.91, + "content": "\\mathbb { G } \\subset \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 511, + 489, + 525 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 529, + 456, + 543 + ], + "lines": [ + { + "bbox": [ + 155, + 529, + 456, + 543 + ], + "spans": [ + { + "bbox": [ + 155, + 529, + 456, + 543 + ], + "score": 0.83, + "content": "p ( \\mathcal { G } | \\mathbf { s } , \\phi ) \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 1 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\in \\mathbb { G } , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 0 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\ncong \\mathbb { G } .", + "type": "interline_equation", + "image_path": "2d8dca6305b70659505760da0152673a4803688e4eaa2e8e08df20999e8cc5ad.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 155, + 529, + 456, + 543 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 107, + 549, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 107, + 550, + 137, + 562 + ], + "score": 0.9, + "content": "\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 549, + 221, + 564 + ], + "score": 1.0, + "content": "’s partial support of", + "type": "text" + }, + { + "bbox": [ + 222, + 549, + 280, + 561 + ], + "score": 0.93, + "content": "\\mathbf { s } _ { T } \\in \\mathbb { G } \\subset \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 549, + 325, + 564 + ], + "score": 1.0, + "content": "constrains", + "type": "text" + }, + { + "bbox": [ + 325, + 552, + 338, + 561 + ], + "score": 0.86, + "content": "{ \\bf s } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 549, + 506, + 564 + ], + "score": 1.0, + "content": "and introduces no hyperparameters into", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 107, + 562, + 144, + 573 + ], + "score": 0.9, + "content": "p ( \\mathcal { G } | \\mathbf { s } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 561, + 226, + 574 + ], + "score": 1.0, + "content": ". For each choice of", + "type": "text" + }, + { + "bbox": [ + 227, + 562, + 235, + 571 + ], + "score": 0.82, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 561, + 506, + 574 + ], + "score": 1.0, + "content": ", we have a different way to provide high-level task information to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 244, + 584 + ], + "score": 1.0, + "content": "the agent. The simplest choice for", + "type": "text" + }, + { + "bbox": [ + 244, + 573, + 253, + 582 + ], + "score": 0.85, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "is a finite set of points: a (A) Final-State Indicator likelihood.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 387, + 596 + ], + "score": 1.0, + "content": "We applied (A) to a sequence of waypoints received from a standard", + "type": "text" + }, + { + "bbox": [ + 387, + 583, + 401, + 594 + ], + "score": 0.84, + "content": "\\mathbf { A } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "planner (provided by the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "CARLA simulator), and outperformed all prior dynamic-world CARLA methods known to us. We", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 469, + 617 + ], + "score": 1.0, + "content": "can also consider providing an infinite number of points. Providing a set of line-segments as", + "type": "text" + }, + { + "bbox": [ + 469, + 605, + 478, + 615 + ], + "score": 0.79, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "yields", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "a (B) Line-Segment Final-State Indicator likelihood, which encourages the final state to land along", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 495, + 639 + ], + "score": 1.0, + "content": "one of the segments. Finally, consider a (C) Region Final-State Indicator likelihood in which", + "type": "text" + }, + { + "bbox": [ + 495, + 627, + 504, + 637 + ], + "score": 0.8, + "content": "\\mathbb { G }", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "is a polygon (see Figs. 1 and 4). Solving Eq. 1 with (C) amounts to planning the most expert-like", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "trajectory that ends inside a goal region. Appendix B provides derivations, implementation details,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 659, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 406, + 672 + ], + "score": 1.0, + "content": "and additional visualizations. We found these methods to work well when", + "type": "text" + }, + { + "bbox": [ + 406, + 660, + 415, + 670 + ], + "score": 0.8, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 659, + 507, + 672 + ], + "score": 1.0, + "content": "contains “expert-like”", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 671, + 464, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 464, + 683 + ], + "score": 1.0, + "content": "final position(s), as the prior strongly penalizes plans ending in non-expert-like positions.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Unconstrained planning to goal sets (hyperparameter-based): Instead of constraining that the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 698, + 507, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 460, + 711 + ], + "score": 1.0, + "content": "final state of the trajectory reach a goal, we can use a goal likelihood with full support", + "type": "text" + }, + { + "bbox": [ + 461, + 698, + 502, + 710 + ], + "score": 0.89, + "content": "( \\mathbf { s } _ { T } \\in \\mathbb { R } ^ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 698, + 507, + 711 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "centered at a desired final state. This lets the goal likelihood encourage goals, rather than dictate them.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 237, + 733 + ], + "score": 1.0, + "content": "If there is a single desired goal", + "type": "text" + }, + { + "bbox": [ + 237, + 721, + 279, + 732 + ], + "score": 0.9, + "content": "\\langle \\mathbf { G } = \\{ \\mathbf { g } _ { T } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 720, + 301, + 733 + ], + "score": 1.0, + "content": "), the", + "type": "text" + }, + { + "bbox": [ + 302, + 721, + 316, + 731 + ], + "score": 0.5, + "content": "\\mathbf { \\eta } ^ { ( \\mathbf { D } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 720, + 453, + 733 + ], + "score": 1.0, + "content": "Gaussian Final-State likelihood", + "type": "text" + }, + { + "bbox": [ + 453, + 720, + 505, + 732 + ], + "score": 0.92, + "content": "p ( { \\mathcal { G } } | \\mathbf { s } , \\phi ) \\gets", + "type": "inline_equation" + } + ], + "index": 50 + } + ], + "index": 48.5 + } + ], + "page_idx": 2, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "3", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 272, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 273, + 96 + ], + "score": 1.0, + "content": "2.1 IMITATIVE PLANNING TO GOALS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 102, + 506, + 191 + ], + "lines": [ + { + "bbox": [ + 105, + 101, + 508, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 101, + 166, + 117 + ], + "score": 1.0, + "content": "After training,", + "type": "text" + }, + { + "bbox": [ + 166, + 103, + 195, + 115 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 101, + 508, + 117 + ], + "score": 1.0, + "content": "can generate trajectories that resemble those that the expert might generate –", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 506, + 127 + ], + "score": 1.0, + "content": "e.g. trajectories that navigate roads with expert-like maneuvers. However, these maneuvers will not", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 138 + ], + "score": 1.0, + "content": "have a specific goal. Beyond generating human-like behaviors, we wish to direct our agent to goals", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "and have the agent automatically reason about the necessary mid-level details. We define general", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 230, + 159 + ], + "score": 1.0, + "content": "tasks by a set of goal variables", + "type": "text" + }, + { + "bbox": [ + 230, + 147, + 238, + 158 + ], + "score": 0.82, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 147, + 447, + 159 + ], + "score": 1.0, + "content": ". The probability of a plan s conditioned on the goal", + "type": "text" + }, + { + "bbox": [ + 447, + 147, + 455, + 158 + ], + "score": 0.84, + "content": "\\mathcal { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 147, + 505, + 159 + ], + "score": 1.0, + "content": "is modelled", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 164, + 171 + ], + "score": 1.0, + "content": "by a posterior", + "type": "text" + }, + { + "bbox": [ + 164, + 158, + 201, + 170 + ], + "score": 0.92, + "content": "p ( \\mathbf { s } | \\mathcal { G } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 158, + 348, + 171 + ], + "score": 1.0, + "content": ". This posterior is implemented with", + "type": "text" + }, + { + "bbox": [ + 349, + 158, + 375, + 169 + ], + "score": 0.93, + "content": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "as a learned imitation prior and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 169, + 506, + 182 + ], + "spans": [ + { + "bbox": [ + 107, + 169, + 145, + 181 + ], + "score": 0.92, + "content": "p ( \\mathcal { G } | \\mathbf { s } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 169, + 352, + 182 + ], + "score": 1.0, + "content": "as a test-time goal likelihood. We give examples of", + "type": "text" + }, + { + "bbox": [ + 353, + 169, + 390, + 181 + ], + "score": 0.92, + "content": "p ( { \\mathcal { G } } | \\mathbf { s } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 169, + 506, + 182 + ], + "score": 1.0, + "content": "after deriving a maximum a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 180, + 455, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 455, + 192 + ], + "score": 1.0, + "content": "posteriori inference procedure to generate expert-like plans that achieve abstract goals:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4.5, + "bbox_fs": [ + 105, + 101, + 508, + 192 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 136, + 196, + 475, + 247 + ], + "lines": [ + { + "bbox": [ + 136, + 196, + 475, + 247 + ], + "spans": [ + { + "bbox": [ + 136, + 196, + 475, + 247 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { \\mathbf { s } ^ { * } \\ \\stackrel { } { = } \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log p ( \\mathbf { s } | \\mathcal { G } , \\boldsymbol { \\phi } ) \\ = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log q ( \\mathbf { s } | \\boldsymbol { \\phi } ) + \\log p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) - \\log p ( \\mathcal { G } | \\boldsymbol { \\phi } ) } & { } \\\\ { \\ \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log \\underset { \\underset { \\mathrm { i m i t a t i o n ~ p r i o r } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } + \\log \\underset { \\mathrm { g o a l l i k e l i h o o d } } { \\underbrace { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) } } . } \\end{array}", + "type": "interline_equation", + "image_path": "b0c5d6faad506e29b1f6cc828fa5cbffc416d10408e63aa66b0ef40929e12ad2.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 136, + 196, + 475, + 213.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 136, + 213.0, + 475, + 230.0 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 136, + 230.0, + 475, + 247.0 + ], + "spans": [], + "index": 11 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 505, + 330 + ], + "lines": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 252, + 505, + 265 + ], + "score": 1.0, + "content": "We perform gradient-based optimization of Eq. 1, and defer this discussion to Appendix A. Next, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "spans": [ + { + "bbox": [ + 106, + 263, + 505, + 276 + ], + "score": 1.0, + "content": "discuss several goal likelihoods, which direct the planning in different ways. They communicate goals", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 274, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 106, + 274, + 505, + 286 + ], + "score": 1.0, + "content": "they desire the agent to achieve, but not how to achieve them. The planning procedure determines how", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 505, + 298 + ], + "score": 1.0, + "content": "to achieve them by producing paths similar to those an expert would have taken to reach the given", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 105, + 295, + 506, + 308 + ], + "score": 1.0, + "content": "goal. In contrast to black-box one-step IL that predicts controls, our method produces interpretable", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 106, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "multi-step plans accompanied by two scores. One estimates the plan’s “expertness”, the second", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 490, + 331 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 490, + 331 + ], + "score": 1.0, + "content": "estimates its probability to achieve the goal. Their sum communicates the plan’s overall quality.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 252, + 506, + 331 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 334, + 506, + 456 + ], + "lines": [ + { + "bbox": [ + 106, + 335, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 106, + 335, + 506, + 347 + ], + "score": 1.0, + "content": "Our approach can also be viewed as a learning-based method to integrate mid-level and high-level", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 106, + 346, + 505, + 358 + ], + "score": 1.0, + "content": "controllers together, where demonstrations from both are available at train-time, only the high-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 357, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 357, + 506, + 369 + ], + "score": 1.0, + "content": "level controller is available at test-time, and the high-level controller can vary. The high-level", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 368, + 505, + 380 + ], + "score": 1.0, + "content": "controller’s action specifies a subgoal for the mid-level controller. A density model of future", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 393 + ], + "score": 1.0, + "content": "trajectories of an expert mid-level controller is learned at train-time, and is amenable to different types", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 505, + 403 + ], + "score": 1.0, + "content": "of direction as specified by the high-level controller. In this sense, the model is an “apprentice”, having", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "learned to imitate mid-level behaviors. In our application, the high-level controller is composed", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 412, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 130, + 424 + ], + "score": 1.0, + "content": "of an", + "type": "text" + }, + { + "bbox": [ + 130, + 412, + 143, + 422 + ], + "score": 0.86, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 144, + 412, + 505, + 424 + ], + "score": 1.0, + "content": "path-planning algorithm and one of a library of components that forms goal likelihoods", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 423, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 246, + 435 + ], + "score": 1.0, + "content": "from the waypoints produced by", + "type": "text" + }, + { + "bbox": [ + 247, + 423, + 259, + 433 + ], + "score": 0.86, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 423, + 506, + 435 + ], + "score": 1.0, + "content": ". Connecting this to related approaches, learning the mid-", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 434, + 505, + 445 + ], + "spans": [ + { + "bbox": [ + 106, + 434, + 505, + 445 + ], + "score": 1.0, + "content": "level controller (Imitative Model) resembles offline IL, whereas inference with an Imitative Model", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 445, + 484, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 445, + 484, + 457 + ], + "score": 1.0, + "content": "resembles trajectory optimization in MBRL, given goals provided by the high-level controller.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24, + "bbox_fs": [ + 105, + 335, + 506, + 457 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 469, + 290, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 468, + 291, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 291, + 482 + ], + "score": 1.0, + "content": "2.2 CONSTRUCTING GOAL LIKELIHOODS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 490, + 505, + 524 + ], + "lines": [ + { + "bbox": [ + 106, + 489, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 505, + 504 + ], + "score": 1.0, + "content": "Constraint-based planning to goal sets (hyperparameter-free): Consider the setting where we", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 513 + ], + "score": 1.0, + "content": "have access to a set of desired final states, one of which the agent should achieve. We can model this", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 511, + 489, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 450, + 525 + ], + "score": 1.0, + "content": "by applying a Dirac-delta distribution on the final state, to ensure it lands in a goal set", + "type": "text" + }, + { + "bbox": [ + 450, + 512, + 484, + 523 + ], + "score": 0.91, + "content": "\\mathbb { G } \\subset \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 511, + 489, + 525 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 489, + 505, + 525 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 155, + 529, + 456, + 543 + ], + "lines": [ + { + "bbox": [ + 155, + 529, + 456, + 543 + ], + "spans": [ + { + "bbox": [ + 155, + 529, + 456, + 543 + ], + "score": 0.83, + "content": "p ( \\mathcal { G } | \\mathbf { s } , \\phi ) \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 1 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\in \\mathbb { G } , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 0 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\ncong \\mathbb { G } .", + "type": "interline_equation", + "image_path": "2d8dca6305b70659505760da0152673a4803688e4eaa2e8e08df20999e8cc5ad.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 155, + 529, + 456, + 543 + ], + "spans": [], + "index": 34 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 549, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 107, + 549, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 107, + 550, + 137, + 562 + ], + "score": 0.9, + "content": "\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 549, + 221, + 564 + ], + "score": 1.0, + "content": "’s partial support of", + "type": "text" + }, + { + "bbox": [ + 222, + 549, + 280, + 561 + ], + "score": 0.93, + "content": "\\mathbf { s } _ { T } \\in \\mathbb { G } \\subset \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 280, + 549, + 325, + 564 + ], + "score": 1.0, + "content": "constrains", + "type": "text" + }, + { + "bbox": [ + 325, + 552, + 338, + 561 + ], + "score": 0.86, + "content": "{ \\bf s } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 338, + 549, + 506, + 564 + ], + "score": 1.0, + "content": "and introduces no hyperparameters into", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 107, + 561, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 107, + 562, + 144, + 573 + ], + "score": 0.9, + "content": "p ( \\mathcal { G } | \\mathbf { s } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 561, + 226, + 574 + ], + "score": 1.0, + "content": ". For each choice of", + "type": "text" + }, + { + "bbox": [ + 227, + 562, + 235, + 571 + ], + "score": 0.82, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 561, + 506, + 574 + ], + "score": 1.0, + "content": ", we have a different way to provide high-level task information to", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 572, + 506, + 584 + ], + "spans": [ + { + "bbox": [ + 105, + 572, + 244, + 584 + ], + "score": 1.0, + "content": "the agent. The simplest choice for", + "type": "text" + }, + { + "bbox": [ + 244, + 573, + 253, + 582 + ], + "score": 0.85, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 572, + 506, + 584 + ], + "score": 1.0, + "content": "is a finite set of points: a (A) Final-State Indicator likelihood.", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 583, + 506, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 387, + 596 + ], + "score": 1.0, + "content": "We applied (A) to a sequence of waypoints received from a standard", + "type": "text" + }, + { + "bbox": [ + 387, + 583, + 401, + 594 + ], + "score": 0.84, + "content": "\\mathbf { A } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 401, + 583, + 506, + 596 + ], + "score": 1.0, + "content": "planner (provided by the", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "spans": [ + { + "bbox": [ + 106, + 594, + 506, + 606 + ], + "score": 1.0, + "content": "CARLA simulator), and outperformed all prior dynamic-world CARLA methods known to us. We", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 605, + 505, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 605, + 469, + 617 + ], + "score": 1.0, + "content": "can also consider providing an infinite number of points. Providing a set of line-segments as", + "type": "text" + }, + { + "bbox": [ + 469, + 605, + 478, + 615 + ], + "score": 0.79, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 479, + 605, + 505, + 617 + ], + "score": 1.0, + "content": "yields", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "spans": [ + { + "bbox": [ + 104, + 615, + 506, + 630 + ], + "score": 1.0, + "content": "a (B) Line-Segment Final-State Indicator likelihood, which encourages the final state to land along", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 627, + 504, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 627, + 495, + 639 + ], + "score": 1.0, + "content": "one of the segments. Finally, consider a (C) Region Final-State Indicator likelihood in which", + "type": "text" + }, + { + "bbox": [ + 495, + 627, + 504, + 637 + ], + "score": 0.8, + "content": "\\mathbb { G }", + "type": "inline_equation" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 105, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "is a polygon (see Figs. 1 and 4). Solving Eq. 1 with (C) amounts to planning the most expert-like", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 661 + ], + "score": 1.0, + "content": "trajectory that ends inside a goal region. Appendix B provides derivations, implementation details,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 659, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 659, + 406, + 672 + ], + "score": 1.0, + "content": "and additional visualizations. We found these methods to work well when", + "type": "text" + }, + { + "bbox": [ + 406, + 660, + 415, + 670 + ], + "score": 0.8, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 659, + 507, + 672 + ], + "score": 1.0, + "content": "contains “expert-like”", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 671, + 464, + 683 + ], + "spans": [ + { + "bbox": [ + 106, + 671, + 464, + 683 + ], + "score": 1.0, + "content": "final position(s), as the prior strongly penalizes plans ending in non-expert-like positions.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 40.5, + "bbox_fs": [ + 104, + 549, + 507, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Unconstrained planning to goal sets (hyperparameter-based): Instead of constraining that the", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 698, + 507, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 460, + 711 + ], + "score": 1.0, + "content": "final state of the trajectory reach a goal, we can use a goal likelihood with full support", + "type": "text" + }, + { + "bbox": [ + 461, + 698, + 502, + 710 + ], + "score": 0.89, + "content": "( \\mathbf { s } _ { T } \\in \\mathbb { R } ^ { D } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 698, + 507, + 711 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "centered at a desired final state. This lets the goal likelihood encourage goals, rather than dictate them.", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 237, + 733 + ], + "score": 1.0, + "content": "If there is a single desired goal", + "type": "text" + }, + { + "bbox": [ + 237, + 721, + 279, + 732 + ], + "score": 0.9, + "content": "\\langle \\mathbf { G } = \\{ \\mathbf { g } _ { T } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 279, + 720, + 301, + 733 + ], + "score": 1.0, + "content": "), the", + "type": "text" + }, + { + "bbox": [ + 302, + 721, + 316, + 731 + ], + "score": 0.5, + "content": "\\mathbf { \\eta } ^ { ( \\mathbf { D } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 720, + 453, + 733 + ], + "score": 1.0, + "content": "Gaussian Final-State likelihood", + "type": "text" + }, + { + "bbox": [ + 453, + 720, + 505, + 732 + ], + "score": 0.92, + "content": "p ( { \\mathcal { G } } | \\mathbf { s } , \\phi ) \\gets", + "type": "inline_equation" + } + ], + "index": 50 + }, + { + "bbox": [ + 107, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 166, + 95 + ], + "score": 0.92, + "content": "\\mathcal { N } ( \\mathbf { g } _ { T } ; \\mathbf { s } _ { T } , \\epsilon I )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 166, + 81, + 192, + 96 + ], + "score": 1.0, + "content": "treats", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 192, + 84, + 206, + 94 + ], + "score": 0.84, + "content": "{ \\bf g } _ { T }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 206, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "as a noisy observation of a final future state, and encourages the plan to", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 278, + 107 + ], + "score": 1.0, + "content": "arrive at a final state. We can also plan to", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 279, + 94, + 289, + 104 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 290, + 92, + 361, + 107 + ], + "score": 1.0, + "content": "successive states", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 361, + 94, + 460, + 106 + ], + "score": 0.9, + "content": "\\mathcal { G } = ( \\mathbf { g } _ { T - K + 1 } , \\dots , \\mathbf { g } _ { T } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 461, + 92, + 490, + 107 + ], + "score": 1.0, + "content": "with a", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 490, + 94, + 505, + 105 + ], + "score": 0.54, + "content": "\\mathbf { ( E ) }", + "type": "inline_equation", + "cross_page": true + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 102, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 218, + 120 + ], + "score": 1.0, + "content": "Gaussian State Sequence:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 218, + 104, + 378, + 118 + ], + "score": 0.91, + "content": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\acute { \\phi } ) \\prod _ { k = T - K + 1 } ^ { T } \\mathcal { N } ( \\mathbf { g } _ { k } ; \\mathbf { s } _ { k } , \\epsilon I ) } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 379, + 102, + 507, + 120 + ], + "score": 1.0, + "content": "if a program wishes to specify a", + "type": "text", + "cross_page": true + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 361, + 128 + ], + "score": 1.0, + "content": "desired end velocity or acceleration when reaching the final state", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 362, + 117, + 375, + 127 + ], + "score": 0.82, + "content": "{ \\bf g } _ { T }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 376, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "(Fig. 2). Alternatively, a planner", + "type": "text", + "cross_page": true + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "score": 1.0, + "content": "may propose a set of states with the intention that the agent should reach any one of them. This is", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 135, + 507, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 135, + 187, + 153 + ], + "score": 1.0, + "content": "possible by using a", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 188, + 137, + 201, + 148 + ], + "score": 0.36, + "content": "\\mathbf { \\Pi } ^ { ( \\mathbf { F } ) }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 201, + 135, + 336, + 153 + ], + "score": 1.0, + "content": "Gaussian Final-State Mixture:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 336, + 136, + 486, + 150 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\gets \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathcal { N } ( \\mathbf { g } _ { T } ^ { k } ; \\mathbf { s } _ { T } , \\boldsymbol { \\epsilon } I ) } \\end{array}", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 487, + 135, + 507, + 153 + ], + "score": 1.0, + "content": "and", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 160 + ], + "score": 1.0, + "content": "is useful if some of those final states are not reachable with an expert-like plan. Unlike A–C, D–F", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 219, + 171 + ], + "score": 1.0, + "content": "introduce a hyperparameter", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 220, + 160, + 228, + 169 + ], + "score": 0.38, + "content": "\\cdot \\epsilon ^ { * }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 228, + 159, + 401, + 171 + ], + "score": 1.0, + "content": ". However, they are useful when no states in", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 401, + 160, + 411, + 169 + ], + "score": 0.75, + "content": "\\mathbb { G }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 411, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "correspond to observed", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 456, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 456, + 183 + ], + "score": 1.0, + "content": "expert behavior, as they allow the imitation prior to be robust to poorly specified goals.", + "type": "text", + "cross_page": true + } + ], + "index": 8 + } + ], + "index": 48.5, + "bbox_fs": [ + 105, + 687, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 182 + ], + "lines": [ + { + "bbox": [ + 107, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 107, + 82, + 166, + 95 + ], + "score": 0.92, + "content": "\\mathcal { N } ( \\mathbf { g } _ { T } ; \\mathbf { s } _ { T } , \\epsilon I )", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 81, + 192, + 96 + ], + "score": 1.0, + "content": "treats", + "type": "text" + }, + { + "bbox": [ + 192, + 84, + 206, + 94 + ], + "score": 0.84, + "content": "{ \\bf g } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 206, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "as a noisy observation of a final future state, and encourages the plan to", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 278, + 107 + ], + "score": 1.0, + "content": "arrive at a final state. We can also plan to", + "type": "text" + }, + { + "bbox": [ + 279, + 94, + 289, + 104 + ], + "score": 0.79, + "content": "K", + "type": "inline_equation" + }, + { + "bbox": [ + 290, + 92, + 361, + 107 + ], + "score": 1.0, + "content": "successive states", + "type": "text" + }, + { + "bbox": [ + 361, + 94, + 460, + 106 + ], + "score": 0.9, + "content": "\\mathcal { G } = ( \\mathbf { g } _ { T - K + 1 } , \\dots , \\mathbf { g } _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 92, + 490, + 107 + ], + "score": 1.0, + "content": "with a", + "type": "text" + }, + { + "bbox": [ + 490, + 94, + 505, + 105 + ], + "score": 0.54, + "content": "\\mathbf { ( E ) }", + "type": "inline_equation" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 102, + 507, + 120 + ], + "spans": [ + { + "bbox": [ + 104, + 102, + 218, + 120 + ], + "score": 1.0, + "content": "Gaussian State Sequence:", + "type": "text" + }, + { + "bbox": [ + 218, + 104, + 378, + 118 + ], + "score": 0.91, + "content": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\acute { \\phi } ) \\prod _ { k = T - K + 1 } ^ { T } \\mathcal { N } ( \\mathbf { g } _ { k } ; \\mathbf { s } _ { k } , \\epsilon I ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 102, + 507, + 120 + ], + "score": 1.0, + "content": "if a program wishes to specify a", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 115, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 105, + 115, + 361, + 128 + ], + "score": 1.0, + "content": "desired end velocity or acceleration when reaching the final state", + "type": "text" + }, + { + "bbox": [ + 362, + 117, + 375, + 127 + ], + "score": 0.82, + "content": "{ \\bf g } _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 376, + 115, + 506, + 128 + ], + "score": 1.0, + "content": "(Fig. 2). Alternatively, a planner", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 506, + 138 + ], + "score": 1.0, + "content": "may propose a set of states with the intention that the agent should reach any one of them. This is", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 135, + 507, + 153 + ], + "spans": [ + { + "bbox": [ + 104, + 135, + 187, + 153 + ], + "score": 1.0, + "content": "possible by using a", + "type": "text" + }, + { + "bbox": [ + 188, + 137, + 201, + 148 + ], + "score": 0.36, + "content": "\\mathbf { \\Pi } ^ { ( \\mathbf { F } ) }", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 135, + 336, + 153 + ], + "score": 1.0, + "content": "Gaussian Final-State Mixture:", + "type": "text" + }, + { + "bbox": [ + 336, + 136, + 486, + 150 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\gets \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathcal { N } ( \\mathbf { g } _ { T } ^ { k } ; \\mathbf { s } _ { T } , \\boldsymbol { \\epsilon } I ) } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 135, + 507, + 153 + ], + "score": 1.0, + "content": "and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 148, + 506, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 506, + 160 + ], + "score": 1.0, + "content": "is useful if some of those final states are not reachable with an expert-like plan. Unlike A–C, D–F", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 159, + 505, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 219, + 171 + ], + "score": 1.0, + "content": "introduce a hyperparameter", + "type": "text" + }, + { + "bbox": [ + 220, + 160, + 228, + 169 + ], + "score": 0.38, + "content": "\\cdot \\epsilon ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 159, + 401, + 171 + ], + "score": 1.0, + "content": ". However, they are useful when no states in", + "type": "text" + }, + { + "bbox": [ + 401, + 160, + 411, + 169 + ], + "score": 0.75, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 159, + 505, + 171 + ], + "score": 1.0, + "content": "correspond to observed", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 170, + 456, + 183 + ], + "spans": [ + { + "bbox": [ + 106, + 170, + 456, + 183 + ], + "score": 1.0, + "content": "expert behavior, as they allow the imitation prior to be robust to poorly specified goals.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 498, + 200 + ], + "score": 1.0, + "content": "Costed planning: Our model has the additional flexibility to accept arbitrary user-specified costs", + "type": "text" + }, + { + "bbox": [ + 498, + 190, + 505, + 197 + ], + "score": 0.61, + "content": "c", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "at test-time. For example, we may have updated knowledge of new hazards at test-time, such as a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 383, + 222 + ], + "score": 1.0, + "content": "given map of potholes or a predicted cost map. Cost-based knowledge", + "type": "text" + }, + { + "bbox": [ + 384, + 209, + 413, + 221 + ], + "score": 0.93, + "content": "c ( \\mathbf { s } _ { i } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "can be incorporated as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 103, + 220, + 507, + 236 + ], + "spans": [ + { + "bbox": [ + 103, + 220, + 243, + 236 + ], + "score": 1.0, + "content": "an (G) Energy-based likelihood:", + "type": "text" + }, + { + "bbox": [ + 243, + 220, + 354, + 235 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\overset { } { \\propto } \\prod _ { t = 1 } ^ { T } e ^ { - c ( \\mathbf { s } _ { t } | \\boldsymbol { \\phi } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 220, + 507, + 236 + ], + "score": 1.0, + "content": "(Todorov, 2007; Levine, 2018). This", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "can be combined with other goal-seeking objectives by simply multiplying the likelihoods together.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "Examples of combining G (energy-based) with F (Gaussian mixture) were shown in Fig. 1 and are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 255, + 482, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 299, + 268 + ], + "score": 1.0, + "content": "shown in Fig. 3. Next, we describe instantiating", + "type": "text" + }, + { + "bbox": [ + 300, + 255, + 328, + 267 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 255, + 482, + 268 + ], + "score": 1.0, + "content": "in CARLA (Dosovitskiy et al., 2017).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "Designing general goal likelihoods can be considered a form of reward engineering if there are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 283, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 295 + ], + "score": 1.0, + "content": "no restrictions on the goal likelihoods. This connection is best seen in (G), which has an explicit", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "cost term. One reason why it is easier to design goal likelihoods than to design reward functions is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 475, + 319 + ], + "score": 1.0, + "content": "that the task of evoking most aspects of goal-driven behavior is already learned by the prior", + "type": "text" + }, + { + "bbox": [ + 476, + 305, + 502, + 317 + ], + "score": 0.92, + "content": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 303, + 506, + 319 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "which models desirable behavior. This is in contrast to model-free RL, which entirely relies on the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "reward design to evoke goal-driven behavior, and in contrast to model-based RL, which heavily", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "score": 1.0, + "content": "relies on the reward design to evoke goal-driven behavior, as its dynamics model learns what is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "possible, rather than what is desirable. Additionally, it is easy to design goal likelihoods when goals", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "provide a significant amount of information that obviates the need to do any manual tuning. The main", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 371, + 488, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 488, + 383 + ], + "score": 1.0, + "content": "assumption is that one of the goals in the goal set is reachable within the model’s time-horizon.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5 + }, + { + "type": "image", + "bbox": [ + 109, + 397, + 256, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 397, + 256, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 397, + 256, + 470 + ], + "spans": [ + { + "bbox": [ + 109, + 397, + 256, + 470 + ], + "score": 0.944, + "type": "image", + "image_path": "4615e57662296686c7ab9b9ee0503fbe3ccb28b5dc38253123f746e3fa2d5bed.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 109, + 397, + 256, + 433.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 109, + 433.5, + 256, + 470.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 478, + 259, + 512 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 477, + 259, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 259, + 490 + ], + "score": 1.0, + "content": "Figure 2: Imitative planning with the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 489, + 261, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 261, + 501 + ], + "score": 1.0, + "content": "Gaussian State Sequence enables fine-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 500, + 221, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 221, + 513 + ], + "score": 1.0, + "content": "grained control of the plans.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + } + ], + "index": 30.25 + }, + { + "type": "image", + "bbox": [ + 268, + 397, + 417, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 268, + 397, + 417, + 470 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 268, + 397, + 417, + 470 + ], + "spans": [ + { + "bbox": [ + 268, + 397, + 417, + 470 + ], + "score": 0.918, + "type": "image", + "image_path": "ed1a6dfab38dd5fb50623c62291f64dbfaa63101e7cb10746575f7eca777e22d.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 268, + 397, + 417, + 433.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 268, + 433.5, + 417, + 470.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 263, + 478, + 420, + 512 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 263, + 478, + 422, + 490 + ], + "spans": [ + { + "bbox": [ + 263, + 478, + 422, + 490 + ], + "score": 1.0, + "content": "Figure 3: Costs can be assigned to “pot-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 263, + 489, + 422, + 501 + ], + "spans": [ + { + "bbox": [ + 263, + 489, + 422, + 501 + ], + "score": 1.0, + "content": "holes” only seen at test-time. The plan-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 263, + 501, + 411, + 512 + ], + "spans": [ + { + "bbox": [ + 263, + 501, + 411, + 512 + ], + "score": 1.0, + "content": "ner prefers routes avoiding potholes.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "index": 32.25 + }, + { + "type": "image", + "bbox": [ + 428, + 394, + 504, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 428, + 394, + 504, + 470 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 428, + 394, + 504, + 470 + ], + "spans": [ + { + "bbox": [ + 428, + 394, + 504, + 470 + ], + "score": 0.917, + "type": "image", + "image_path": "2d9fd574887390907a8ef9e0db2cca4da1bd779e49a15a1648cc1976be125788.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 428, + 394, + 504, + 432.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 428, + 432.0, + 504, + 470.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 427, + 478, + 505, + 523 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 425, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 425, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "Figure 4: Goal", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 425, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 425, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "regions can be", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 426, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 426, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "coarsely specified", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 425, + 511, + 502, + 524 + ], + "spans": [ + { + "bbox": [ + 425, + 511, + 502, + 524 + ], + "score": 1.0, + "content": "to give directions.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 108, + 550, + 409, + 561 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 410, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 410, + 563 + ], + "score": 1.0, + "content": "2.3 APPLYING DEEP IMITATIVE MODELS TO AUTONOMOUS DRIVING", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 104, + 569, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 104, + 569, + 393, + 585 + ], + "score": 1.0, + "content": "In our autonomous driving application, we model the agent’s state at time", + "type": "text" + }, + { + "bbox": [ + 393, + 572, + 399, + 581 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 569, + 409, + 585 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 410, + 570, + 445, + 582 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { t } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 569, + 466, + 585 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 466, + 571, + 491, + 582 + ], + "score": 0.88, + "content": "D = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 569, + 494, + 585 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 494, + 572, + 504, + 582 + ], + "score": 0.81, + "content": "\\mathbf { s } _ { t }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "represents our agent’s location on the ground plane. The agent has access to environment perception", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 183, + 605 + ], + "score": 0.92, + "content": "\\phi { \\bf \\bar { \\omega } } \\{ { \\bf s } _ { - \\tau : 0 } , \\chi , { \\bf \\bar { \\omega } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 593, + 213, + 605 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 213, + 595, + 220, + 603 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 593, + 409, + 605 + ], + "score": 1.0, + "content": "is the number of past positions we condition on,", + "type": "text" + }, + { + "bbox": [ + 410, + 595, + 418, + 604 + ], + "score": 0.84, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "is a high-dimensional", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 604, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 228, + 616 + ], + "score": 1.0, + "content": "observation of the scene, and", + "type": "text" + }, + { + "bbox": [ + 228, + 605, + 236, + 614 + ], + "score": 0.74, + "content": "\\boldsymbol { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 604, + 404, + 616 + ], + "score": 1.0, + "content": "is a low-dimensional traffic light signal.", + "type": "text" + }, + { + "bbox": [ + 404, + 606, + 413, + 616 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 604, + 506, + 616 + ], + "score": 1.0, + "content": "could represent either", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "LIDAR or camera images (or both), and is the agent’s observation of the world. In our setting, we", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 622, + 507, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 622, + 187, + 640 + ], + "score": 1.0, + "content": "featurize LIDAR to", + "type": "text" + }, + { + "bbox": [ + 187, + 625, + 257, + 637 + ], + "score": 0.91, + "content": "\\chi = \\mathrm { \\mathbb { R } ^ { 2 0 0 \\times 2 0 0 \\times 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 622, + 281, + 640 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 281, + 627, + 297, + 638 + ], + "score": 0.88, + "content": "\\chi _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 622, + 507, + 640 + ], + "score": 1.0, + "content": "representing a 2-bin histogram of points above and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 186, + 651 + ], + "score": 1.0, + "content": "at ground level in a", + "type": "text" + }, + { + "bbox": [ + 186, + 637, + 213, + 649 + ], + "score": 0.85, + "content": "0 . 5 \\mathrm { m } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 637, + 275, + 651 + ], + "score": 1.0, + "content": "cell at position", + "type": "text" + }, + { + "bbox": [ + 276, + 639, + 296, + 650 + ], + "score": 0.91, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 637, + 427, + 651 + ], + "score": 1.0, + "content": ". CARLA provides ground-truth", + "type": "text" + }, + { + "bbox": [ + 427, + 639, + 451, + 649 + ], + "score": 0.88, + "content": "{ \\bf s } _ { - \\tau : 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 637, + 469, + 651 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 469, + 638, + 477, + 648 + ], + "score": 0.54, + "content": "\\boldsymbol { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 637, + 506, + 651 + ], + "score": 1.0, + "content": ". Their", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 649, + 479, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 479, + 662 + ], + "score": 1.0, + "content": "availability is a realistic input assumption in perception-based autonomous driving pipelines.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 46.5 + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "Model requirements: A deep imitative model forecasts future expert behavior. It must be able to", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 104, + 673, + 507, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 673, + 144, + 691 + ], + "score": 1.0, + "content": "compute", + "type": "text" + }, + { + "bbox": [ + 144, + 676, + 219, + 689 + ], + "score": 0.93, + "content": "\\bar { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } \\forall \\mathbf { s } \\in \\mathbb { R } ^ { T \\times D }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 673, + 317, + 691 + ], + "score": 1.0, + "content": ". The ability to compute", + "type": "text" + }, + { + "bbox": [ + 317, + 677, + 356, + 689 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { s } } q ( \\mathbf { s } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 673, + 507, + 691 + ], + "score": 1.0, + "content": "enables gradient-based optimization", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "for planning. Rudenko et al. (2019) provide a recent survey on forecasting agent behavior. As many", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 474, + 712 + ], + "score": 1.0, + "content": "forecasting methods cannot compute trajectory probabilities, we must be judicious in choosing", + "type": "text" + }, + { + "bbox": [ + 474, + 699, + 502, + 711 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 698, + 506, + 712 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "A model that can compute probabilities R2P2 (Rhinehart et al., 2018), a generative autoregressive flow", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "(Rezende & Mohamed, 2015; Oord et al., 2017). We extend R2P2 to instantiate the deep imitative", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 53.5 + } + ], + "page_idx": 3, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 182 + ], + "lines": [], + "index": 4, + "bbox_fs": [ + 104, + 81, + 507, + 183 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 187, + 505, + 267 + ], + "lines": [ + { + "bbox": [ + 106, + 186, + 505, + 200 + ], + "spans": [ + { + "bbox": [ + 106, + 186, + 498, + 200 + ], + "score": 1.0, + "content": "Costed planning: Our model has the additional flexibility to accept arbitrary user-specified costs", + "type": "text" + }, + { + "bbox": [ + 498, + 190, + 505, + 197 + ], + "score": 0.61, + "content": "c", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 198, + 506, + 210 + ], + "score": 1.0, + "content": "at test-time. For example, we may have updated knowledge of new hazards at test-time, such as a", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 209, + 506, + 222 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 383, + 222 + ], + "score": 1.0, + "content": "given map of potholes or a predicted cost map. Cost-based knowledge", + "type": "text" + }, + { + "bbox": [ + 384, + 209, + 413, + 221 + ], + "score": 0.93, + "content": "c ( \\mathbf { s } _ { i } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 209, + 506, + 222 + ], + "score": 1.0, + "content": "can be incorporated as", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 103, + 220, + 507, + 236 + ], + "spans": [ + { + "bbox": [ + 103, + 220, + 243, + 236 + ], + "score": 1.0, + "content": "an (G) Energy-based likelihood:", + "type": "text" + }, + { + "bbox": [ + 243, + 220, + 354, + 235 + ], + "score": 0.93, + "content": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\overset { } { \\propto } \\prod _ { t = 1 } ^ { T } e ^ { - c ( \\mathbf { s } _ { t } | \\boldsymbol { \\phi } ) } } \\end{array}", + "type": "inline_equation" + }, + { + "bbox": [ + 354, + 220, + 507, + 236 + ], + "score": 1.0, + "content": "(Todorov, 2007; Levine, 2018). This", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "spans": [ + { + "bbox": [ + 106, + 234, + 506, + 246 + ], + "score": 1.0, + "content": "can be combined with other goal-seeking objectives by simply multiplying the likelihoods together.", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 106, + 244, + 505, + 257 + ], + "score": 1.0, + "content": "Examples of combining G (energy-based) with F (Gaussian mixture) were shown in Fig. 1 and are", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 255, + 482, + 268 + ], + "spans": [ + { + "bbox": [ + 106, + 255, + 299, + 268 + ], + "score": 1.0, + "content": "shown in Fig. 3. Next, we describe instantiating", + "type": "text" + }, + { + "bbox": [ + 300, + 255, + 328, + 267 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 329, + 255, + 482, + 268 + ], + "score": 1.0, + "content": "in CARLA (Dosovitskiy et al., 2017).", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 103, + 186, + 507, + 268 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 272, + 505, + 382 + ], + "lines": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "spans": [ + { + "bbox": [ + 105, + 272, + 506, + 285 + ], + "score": 1.0, + "content": "Designing general goal likelihoods can be considered a form of reward engineering if there are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 283, + 506, + 295 + ], + "spans": [ + { + "bbox": [ + 105, + 283, + 506, + 295 + ], + "score": 1.0, + "content": "no restrictions on the goal likelihoods. This connection is best seen in (G), which has an explicit", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "spans": [ + { + "bbox": [ + 106, + 294, + 505, + 307 + ], + "score": 1.0, + "content": "cost term. One reason why it is easier to design goal likelihoods than to design reward functions is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 303, + 506, + 319 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 475, + 319 + ], + "score": 1.0, + "content": "that the task of evoking most aspects of goal-driven behavior is already learned by the prior", + "type": "text" + }, + { + "bbox": [ + 476, + 305, + 502, + 317 + ], + "score": 0.92, + "content": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 303, + 506, + 319 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 316, + 506, + 329 + ], + "score": 1.0, + "content": "which models desirable behavior. This is in contrast to model-free RL, which entirely relies on the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 326, + 505, + 340 + ], + "score": 1.0, + "content": "reward design to evoke goal-driven behavior, and in contrast to model-based RL, which heavily", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "spans": [ + { + "bbox": [ + 105, + 338, + 506, + 350 + ], + "score": 1.0, + "content": "relies on the reward design to evoke goal-driven behavior, as its dynamics model learns what is", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 362 + ], + "score": 1.0, + "content": "possible, rather than what is desirable. Additionally, it is easy to design goal likelihoods when goals", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "provide a significant amount of information that obviates the need to do any manual tuning. The main", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 371, + 488, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 488, + 383 + ], + "score": 1.0, + "content": "assumption is that one of the goals in the goal set is reachable within the model’s time-horizon.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 20.5, + "bbox_fs": [ + 105, + 272, + 506, + 383 + ] + }, + { + "type": "image", + "bbox": [ + 109, + 397, + 256, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 397, + 256, + 470 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 397, + 256, + 470 + ], + "spans": [ + { + "bbox": [ + 109, + 397, + 256, + 470 + ], + "score": 0.944, + "type": "image", + "image_path": "4615e57662296686c7ab9b9ee0503fbe3ccb28b5dc38253123f746e3fa2d5bed.jpg" + } + ] + } + ], + "index": 27.5, + "virtual_lines": [ + { + "bbox": [ + 109, + 397, + 256, + 433.5 + ], + "spans": [], + "index": 26 + }, + { + "bbox": [ + 109, + 433.5, + 256, + 470.0 + ], + "spans": [], + "index": 29 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 478, + 259, + 512 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 477, + 259, + 490 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 259, + 490 + ], + "score": 1.0, + "content": "Figure 2: Imitative planning with the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 489, + 261, + 501 + ], + "spans": [ + { + "bbox": [ + 106, + 489, + 261, + 501 + ], + "score": 1.0, + "content": "Gaussian State Sequence enables fine-", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 500, + 221, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 221, + 513 + ], + "score": 1.0, + "content": "grained control of the plans.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + } + ], + "index": 30.25 + }, + { + "type": "image", + "bbox": [ + 268, + 397, + 417, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 268, + 397, + 417, + 470 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 268, + 397, + 417, + 470 + ], + "spans": [ + { + "bbox": [ + 268, + 397, + 417, + 470 + ], + "score": 0.918, + "type": "image", + "image_path": "ed1a6dfab38dd5fb50623c62291f64dbfaa63101e7cb10746575f7eca777e22d.jpg" + } + ] + } + ], + "index": 28.5, + "virtual_lines": [ + { + "bbox": [ + 268, + 397, + 417, + 433.5 + ], + "spans": [], + "index": 27 + }, + { + "bbox": [ + 268, + 433.5, + 417, + 470.0 + ], + "spans": [], + "index": 30 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 263, + 478, + 420, + 512 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 263, + 478, + 422, + 490 + ], + "spans": [ + { + "bbox": [ + 263, + 478, + 422, + 490 + ], + "score": 1.0, + "content": "Figure 3: Costs can be assigned to “pot-", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 263, + 489, + 422, + 501 + ], + "spans": [ + { + "bbox": [ + 263, + 489, + 422, + 501 + ], + "score": 1.0, + "content": "holes” only seen at test-time. The plan-", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 263, + 501, + 411, + 512 + ], + "spans": [ + { + "bbox": [ + 263, + 501, + 411, + 512 + ], + "score": 1.0, + "content": "ner prefers routes avoiding potholes.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + } + ], + "index": 32.25 + }, + { + "type": "image", + "bbox": [ + 428, + 394, + 504, + 470 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 428, + 394, + 504, + 470 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 428, + 394, + 504, + 470 + ], + "spans": [ + { + "bbox": [ + 428, + 394, + 504, + 470 + ], + "score": 0.917, + "type": "image", + "image_path": "2d9fd574887390907a8ef9e0db2cca4da1bd779e49a15a1648cc1976be125788.jpg" + } + ] + } + ], + "index": 29.5, + "virtual_lines": [ + { + "bbox": [ + 428, + 394, + 504, + 432.0 + ], + "spans": [], + "index": 28 + }, + { + "bbox": [ + 428, + 432.0, + 504, + 470.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 427, + 478, + 505, + 523 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 425, + 477, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 425, + 477, + 506, + 490 + ], + "score": 1.0, + "content": "Figure 4: Goal", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 425, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 425, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "regions can be", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 426, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 426, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "coarsely specified", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 425, + 511, + 502, + 524 + ], + "spans": [ + { + "bbox": [ + 425, + 511, + 502, + 524 + ], + "score": 1.0, + "content": "to give directions.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 39.5 + } + ], + "index": 34.5 + }, + { + "type": "title", + "bbox": [ + 108, + 550, + 409, + 561 + ], + "lines": [ + { + "bbox": [ + 105, + 550, + 410, + 563 + ], + "spans": [ + { + "bbox": [ + 105, + 550, + 410, + 563 + ], + "score": 1.0, + "content": "2.3 APPLYING DEEP IMITATIVE MODELS TO AUTONOMOUS DRIVING", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 505, + 660 + ], + "lines": [ + { + "bbox": [ + 104, + 569, + 504, + 585 + ], + "spans": [ + { + "bbox": [ + 104, + 569, + 393, + 585 + ], + "score": 1.0, + "content": "In our autonomous driving application, we model the agent’s state at time", + "type": "text" + }, + { + "bbox": [ + 393, + 572, + 399, + 581 + ], + "score": 0.72, + "content": "t", + "type": "inline_equation" + }, + { + "bbox": [ + 399, + 569, + 409, + 585 + ], + "score": 1.0, + "content": "as", + "type": "text" + }, + { + "bbox": [ + 410, + 570, + 445, + 582 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { t } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 445, + 569, + 466, + 585 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 466, + 571, + 491, + 582 + ], + "score": 0.88, + "content": "D = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 491, + 569, + 494, + 585 + ], + "score": 1.0, + "content": ";", + "type": "text" + }, + { + "bbox": [ + 494, + 572, + 504, + 582 + ], + "score": 0.81, + "content": "\\mathbf { s } _ { t }", + "type": "inline_equation" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "spans": [ + { + "bbox": [ + 105, + 582, + 505, + 594 + ], + "score": 1.0, + "content": "represents our agent’s location on the ground plane. The agent has access to environment perception", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 593, + 505, + 605 + ], + "spans": [ + { + "bbox": [ + 106, + 593, + 183, + 605 + ], + "score": 0.92, + "content": "\\phi { \\bf \\bar { \\omega } } \\{ { \\bf s } _ { - \\tau : 0 } , \\chi , { \\bf \\bar { \\omega } } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 184, + 593, + 213, + 605 + ], + "score": 1.0, + "content": ", where", + "type": "text" + }, + { + "bbox": [ + 213, + 595, + 220, + 603 + ], + "score": 0.76, + "content": "\\tau", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 593, + 409, + 605 + ], + "score": 1.0, + "content": "is the number of past positions we condition on,", + "type": "text" + }, + { + "bbox": [ + 410, + 595, + 418, + 604 + ], + "score": 0.84, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 593, + 505, + 605 + ], + "score": 1.0, + "content": "is a high-dimensional", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 604, + 506, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 228, + 616 + ], + "score": 1.0, + "content": "observation of the scene, and", + "type": "text" + }, + { + "bbox": [ + 228, + 605, + 236, + 614 + ], + "score": 0.74, + "content": "\\boldsymbol { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 604, + 404, + 616 + ], + "score": 1.0, + "content": "is a low-dimensional traffic light signal.", + "type": "text" + }, + { + "bbox": [ + 404, + 606, + 413, + 616 + ], + "score": 0.79, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 604, + 506, + 616 + ], + "score": 1.0, + "content": "could represent either", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 104, + 614, + 506, + 628 + ], + "spans": [ + { + "bbox": [ + 104, + 614, + 506, + 628 + ], + "score": 1.0, + "content": "LIDAR or camera images (or both), and is the agent’s observation of the world. In our setting, we", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 104, + 622, + 507, + 640 + ], + "spans": [ + { + "bbox": [ + 104, + 622, + 187, + 640 + ], + "score": 1.0, + "content": "featurize LIDAR to", + "type": "text" + }, + { + "bbox": [ + 187, + 625, + 257, + 637 + ], + "score": 0.91, + "content": "\\chi = \\mathrm { \\mathbb { R } ^ { 2 0 0 \\times 2 0 0 \\times 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 622, + 281, + 640 + ], + "score": 1.0, + "content": ", with", + "type": "text" + }, + { + "bbox": [ + 281, + 627, + 297, + 638 + ], + "score": 0.88, + "content": "\\chi _ { i j }", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 622, + 507, + 640 + ], + "score": 1.0, + "content": "representing a 2-bin histogram of points above and", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 637, + 506, + 651 + ], + "spans": [ + { + "bbox": [ + 105, + 637, + 186, + 651 + ], + "score": 1.0, + "content": "at ground level in a", + "type": "text" + }, + { + "bbox": [ + 186, + 637, + 213, + 649 + ], + "score": 0.85, + "content": "0 . 5 \\mathrm { m } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 637, + 275, + 651 + ], + "score": 1.0, + "content": "cell at position", + "type": "text" + }, + { + "bbox": [ + 276, + 639, + 296, + 650 + ], + "score": 0.91, + "content": "( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 637, + 427, + 651 + ], + "score": 1.0, + "content": ". CARLA provides ground-truth", + "type": "text" + }, + { + "bbox": [ + 427, + 639, + 451, + 649 + ], + "score": 0.88, + "content": "{ \\bf s } _ { - \\tau : 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 637, + 469, + 651 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 469, + 638, + 477, + 648 + ], + "score": 0.54, + "content": "\\boldsymbol { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 477, + 637, + 506, + 651 + ], + "score": 1.0, + "content": ". Their", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 649, + 479, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 479, + 662 + ], + "score": 1.0, + "content": "availability is a realistic input assumption in perception-based autonomous driving pipelines.", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 46.5, + "bbox_fs": [ + 104, + 569, + 507, + 662 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 666, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "Model requirements: A deep imitative model forecasts future expert behavior. It must be able to", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 104, + 673, + 507, + 691 + ], + "spans": [ + { + "bbox": [ + 104, + 673, + 144, + 691 + ], + "score": 1.0, + "content": "compute", + "type": "text" + }, + { + "bbox": [ + 144, + 676, + 219, + 689 + ], + "score": 0.93, + "content": "\\bar { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } \\forall \\mathbf { s } \\in \\mathbb { R } ^ { T \\times D }", + "type": "inline_equation" + }, + { + "bbox": [ + 219, + 673, + 317, + 691 + ], + "score": 1.0, + "content": ". The ability to compute", + "type": "text" + }, + { + "bbox": [ + 317, + 677, + 356, + 689 + ], + "score": 0.93, + "content": "\\nabla _ { \\mathbf { s } } q ( \\mathbf { s } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 673, + 507, + 691 + ], + "score": 1.0, + "content": "enables gradient-based optimization", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "for planning. Rudenko et al. (2019) provide a recent survey on forecasting agent behavior. As many", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 474, + 712 + ], + "score": 1.0, + "content": "forecasting methods cannot compute trajectory probabilities, we must be judicious in choosing", + "type": "text" + }, + { + "bbox": [ + 474, + 699, + 502, + 711 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 503, + 698, + 506, + 712 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "A model that can compute probabilities R2P2 (Rhinehart et al., 2018), a generative autoregressive flow", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "(Rezende & Mohamed, 2015; Oord et al., 2017). We extend R2P2 to instantiate the deep imitative", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 134, + 259 + ], + "score": 1.0, + "content": "model", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 135, + 247, + 163, + 259 + ], + "score": 0.91, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 163, + 246, + 505, + 259 + ], + "score": 1.0, + "content": ". R2P2 was previously used to forecast vehicle trajectories: it was not demonstrated", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "or developed to plan or execute controls. Although we used R2P2, other future-trajectory density", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 308, + 282 + ], + "score": 1.0, + "content": "estimation techniques could be used – designing", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 308, + 269, + 335, + 281 + ], + "score": 0.94, + "content": "{ \\dot { \\mathbf { \\zeta } } } _ { q } ( \\mathbf { s } | \\phi )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 335, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "is not the primary focus of this work. In", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 278, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 278, + 134, + 294 + ], + "score": 1.0, + "content": "R2P2,", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 135, + 280, + 167, + 292 + ], + "score": 0.92, + "content": "q _ { \\theta } ( \\mathbf { S } | \\phi )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 168, + 278, + 381, + 294 + ], + "score": 1.0, + "content": "is induced by an invertible, differentiable function:", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 381, + 279, + 502, + 292 + ], + "score": 0.92, + "content": "\\mathbf { S } = f _ { \\theta } ( \\mathbf { Z } ; \\phi ) : \\mathbb { R } ^ { T \\times 2 } \\mapsto \\mathbb { R } ^ { T \\times 2 }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 502, + 278, + 507, + 294 + ], + "score": 1.0, + "content": ";", + "type": "text", + "cross_page": true + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 107, + 291, + 117, + 302 + ], + "score": 0.82, + "content": "f _ { \\theta }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 117, + 291, + 309, + 304 + ], + "score": 1.0, + "content": "warps a latent sample from a base distribution", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 309, + 291, + 379, + 303 + ], + "score": 0.93, + "content": "\\mathbf { Z } \\sim q _ { 0 } = \\mathcal { N } ( 0 , I )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 380, + 291, + 403, + 304 + ], + "score": 1.0, + "content": "to S.", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 404, + 292, + 410, + 301 + ], + "score": 0.74, + "content": "\\theta", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 411, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "is trained to maximize", + "type": "text", + "cross_page": true + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 302, + 362, + 315 + ], + "spans": [ + { + "bbox": [ + 107, + 302, + 139, + 314 + ], + "score": 0.92, + "content": "q _ { \\theta } ( \\mathbf { S } | \\phi )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 140, + 302, + 228, + 315 + ], + "score": 1.0, + "content": "of expert trajectories.", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 229, + 302, + 239, + 314 + ], + "score": 0.86, + "content": "f _ { \\theta }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 239, + 302, + 295, + 315 + ], + "score": 1.0, + "content": "is defined for", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 296, + 303, + 315, + 312 + ], + "score": 0.74, + "content": "1 . . T", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 315, + 302, + 362, + 315 + ], + "score": 1.0, + "content": "as follows:", + "type": "text", + "cross_page": true + } + ], + "index": 14 + } + ], + "index": 53.5, + "bbox_fs": [ + 104, + 665, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 81, + 503, + 150 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 503, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 503, + 150 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 503, + 150 + ], + "score": 0.96, + "type": "image", + "image_path": "c23878e57a42f82d9c10542daaeed971816ea15b60f9f4fb3b4cb25feb8b7355.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 503, + 104.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 104.0, + 503, + 127.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 127.0, + 503, + 150.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 159, + 505, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "Figure 5: Illustration of our method applied to autonomous driving. Our method trains an imitative", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "model from a dataset of expert examples. After training, the model is repurposed as an imitative", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "score": 1.0, + "content": "planner. At test-time, a route planner provides waypoints to the imitative planner, which computes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "expert-like paths to each goal. The best plan is chosen according to the planning objective and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "provided to a low-level PID-controller in order to produce steering and throttle actions. This", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 214, + 351, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 351, + 226 + ], + "score": 1.0, + "content": "procedure is also described with pseudocode in Appendix A.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 246, + 505, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 246, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 106, + 246, + 134, + 259 + ], + "score": 1.0, + "content": "model", + "type": "text" + }, + { + "bbox": [ + 135, + 247, + 163, + 259 + ], + "score": 0.91, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 163, + 246, + 505, + 259 + ], + "score": 1.0, + "content": ". R2P2 was previously used to forecast vehicle trajectories: it was not demonstrated", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 505, + 271 + ], + "score": 1.0, + "content": "or developed to plan or execute controls. Although we used R2P2, other future-trajectory density", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 269, + 505, + 282 + ], + "spans": [ + { + "bbox": [ + 105, + 269, + 308, + 282 + ], + "score": 1.0, + "content": "estimation techniques could be used – designing", + "type": "text" + }, + { + "bbox": [ + 308, + 269, + 335, + 281 + ], + "score": 0.94, + "content": "{ \\dot { \\mathbf { \\zeta } } } _ { q } ( \\mathbf { s } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 269, + 505, + 282 + ], + "score": 1.0, + "content": "is not the primary focus of this work. In", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 104, + 278, + 507, + 294 + ], + "spans": [ + { + "bbox": [ + 104, + 278, + 134, + 294 + ], + "score": 1.0, + "content": "R2P2,", + "type": "text" + }, + { + "bbox": [ + 135, + 280, + 167, + 292 + ], + "score": 0.92, + "content": "q _ { \\theta } ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 168, + 278, + 381, + 294 + ], + "score": 1.0, + "content": "is induced by an invertible, differentiable function:", + "type": "text" + }, + { + "bbox": [ + 381, + 279, + 502, + 292 + ], + "score": 0.92, + "content": "\\mathbf { S } = f _ { \\theta } ( \\mathbf { Z } ; \\phi ) : \\mathbb { R } ^ { T \\times 2 } \\mapsto \\mathbb { R } ^ { T \\times 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 278, + 507, + 294 + ], + "score": 1.0, + "content": ";", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 107, + 291, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 107, + 291, + 117, + 302 + ], + "score": 0.82, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 117, + 291, + 309, + 304 + ], + "score": 1.0, + "content": "warps a latent sample from a base distribution", + "type": "text" + }, + { + "bbox": [ + 309, + 291, + 379, + 303 + ], + "score": 0.93, + "content": "\\mathbf { Z } \\sim q _ { 0 } = \\mathcal { N } ( 0 , I )", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 291, + 403, + 304 + ], + "score": 1.0, + "content": "to S.", + "type": "text" + }, + { + "bbox": [ + 404, + 292, + 410, + 301 + ], + "score": 0.74, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 291, + 506, + 304 + ], + "score": 1.0, + "content": "is trained to maximize", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 107, + 302, + 362, + 315 + ], + "spans": [ + { + "bbox": [ + 107, + 302, + 139, + 314 + ], + "score": 0.92, + "content": "q _ { \\theta } ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 302, + 228, + 315 + ], + "score": 1.0, + "content": "of expert trajectories.", + "type": "text" + }, + { + "bbox": [ + 229, + 302, + 239, + 314 + ], + "score": 0.86, + "content": "f _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 239, + 302, + 295, + 315 + ], + "score": 1.0, + "content": "is defined for", + "type": "text" + }, + { + "bbox": [ + 296, + 303, + 315, + 312 + ], + "score": 0.74, + "content": "1 . . T", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 302, + 362, + 315 + ], + "score": 1.0, + "content": "as follows:", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 11.5 + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 318, + 408, + 333 + ], + "lines": [ + { + "bbox": [ + 202, + 318, + 408, + 333 + ], + "spans": [ + { + "bbox": [ + 202, + 318, + 408, + 333 + ], + "score": 0.79, + "content": "\\mathbf { S } _ { t } = f _ { t } ( \\mathbf { Z } _ { 1 : t } ) = \\mu _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) + \\sigma _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) \\mathbf { Z } _ { t } ,", + "type": "interline_equation", + "image_path": "704636ba561de4671f77e8dfff2d80876d812b7c8f961754b285e335a6964fa6.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 202, + 318, + 408, + 333 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 503, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 141, + 351 + ], + "score": 1.0, + "content": "where µ", + "type": "text" + }, + { + "bbox": [ + 141, + 337, + 503, + 349 + ], + "score": 0.7, + "content": "\\begin{array} { r } { \\phantom { \\frac { 1 } { \\theta } } \\theta ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = \\mathbf { S } _ { t - 1 } + ( \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } ) \\phantom { \\frac { 1 } { \\theta } } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = 2 \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) , } \\end{array}", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 345, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 293, + 362 + ], + "score": 1.0, + "content": "encodes a constant-velocity inductive bias. The", + "type": "text" + }, + { + "bbox": [ + 293, + 349, + 331, + 360 + ], + "score": 0.9, + "content": "m _ { \\theta } \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 345, + 348, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 349, + 349, + 394, + 360 + ], + "score": 0.9, + "content": "\\sigma _ { \\theta } \\in \\mathbb { R } ^ { 2 \\times 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 345, + 506, + 362 + ], + "score": 1.0, + "content": "are computed by expressive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "neural networks. The resulting trajectory distribution is complex and multimodal (Appendix C.1", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 381, + 382 + ], + "score": 1.0, + "content": "depicts samples). Because traffic light state was not included in the", + "type": "text" + }, + { + "bbox": [ + 382, + 371, + 389, + 382 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 371, + 506, + 382 + ], + "score": 1.0, + "content": "of R2P2’s “RNN” model, it", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 383, + 394 + ], + "score": 1.0, + "content": "could not react to traffic lights. We created a new model that includes", + "type": "text" + }, + { + "bbox": [ + 383, + 382, + 391, + 391 + ], + "score": 0.68, + "content": "\\boldsymbol { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 380, + 476, + 394 + ], + "score": 1.0, + "content": ". It fixed cases where", + "type": "text" + }, + { + "bbox": [ + 476, + 381, + 505, + 393 + ], + "score": 0.91, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 468, + 405 + ], + "score": 1.0, + "content": "exhibited no forward-moving preference when the agent was already stopped, and improved", + "type": "text" + }, + { + "bbox": [ + 469, + 393, + 497, + 404 + ], + "score": 0.9, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "’s", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 273, + 416 + ], + "score": 1.0, + "content": "stopping preference at red lights. We used", + "type": "text" + }, + { + "bbox": [ + 273, + 403, + 302, + 414 + ], + "score": 0.89, + "content": "T = 4 0", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 403, + 358, + 416 + ], + "score": 1.0, + "content": "trajectories at", + "type": "text" + }, + { + "bbox": [ + 359, + 403, + 382, + 414 + ], + "score": 0.76, + "content": "1 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 403, + 448, + 416 + ], + "score": 1.0, + "content": "(4 seconds), and", + "type": "text" + }, + { + "bbox": [ + 449, + 404, + 470, + 414 + ], + "score": 0.87, + "content": "\\tau = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 403, + 505, + 416 + ], + "score": 1.0, + "content": ". Fig. 12", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 414, + 318, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 273, + 427 + ], + "score": 1.0, + "content": "in Appendix C depicts the architecture of", + "type": "text" + }, + { + "bbox": [ + 273, + 416, + 285, + 426 + ], + "score": 0.86, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 414, + 303, + 427 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 303, + 416, + 314, + 425 + ], + "score": 0.86, + "content": "\\sigma _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 414, + 318, + 427 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 108, + 439, + 217, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 218, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 218, + 452 + ], + "score": 1.0, + "content": "2.4 IMITATIVE DRIVING", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 506, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "We now instantiate a complete autonomous driving framework based on imitative models to study", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "in our experiments, seen in Fig. 5. We use three layers of spatial abstraction to plan to a faraway", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "destination, common to autonomous vehicle setups: coarse route planning over a road map, path", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "planning within the observable space, and feedback control to follow the planned path (Paden et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "2016; Schwarting et al., 2018). For instance, a route planner based on a conventional GPS-based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "score": 1.0, + "content": "navigation system might output waypoints roughly in the lanes of the desired direction of travel,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "but not accounting for environmental factors such as the positions of other vehicles. This roughly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "communicates possibilities of where the vehicle could go, but not when or how it could get to them,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "or any environmental factors like other vehicles. A goal likelihood from Sec. 2.2 is formed from the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "route and passed to the planner, which generates a state-space plan according to the optimization", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "in Eq. 1. The resulting plan is fed to a simple PID controller on steering, throttle, and braking.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "Pseudocode of the driving and inference algorithms are given in Algs 1 and 2. The PID algorithm is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 591, + 195, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 195, + 604 + ], + "score": 1.0, + "content": "given in Appendix A.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 108, + 619, + 211, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 213, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 213, + 633 + ], + "score": 1.0, + "content": "3 RELATED WORK", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "A body of previous work has explored offline IL (Behavior Cloning – BC) in the CARLA simulator", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "(Li et al., 2018; Liang et al., 2018; Sauer et al., 2018; Codevilla et al., 2018; 2019). These BC", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "approaches condition on goals drawn from a small discrete set of directives. Despite BC’s theoretical", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "drift shortcomings (Ross et al., 2011), these methods still perform empirically well. These approaches", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 337, + 700 + ], + "score": 1.0, + "content": "and ours share the same high-level routing algorithm: an", + "type": "text" + }, + { + "bbox": [ + 338, + 688, + 349, + 698 + ], + "score": 0.83, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "planner on route nodes that generates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "waypoints. In contrast to our approach, these approaches use the waypoints in a Waypoint Classifier,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "which reasons about the map and the geometry of the route to classify the waypoints into one of several", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "directives: {Turn left, Turn right, Follow Lane, Go Straight}. One of the original motivations for", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42.5 + } + ], + "page_idx": 4, + "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 2020", + "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": [ + 108, + 81, + 503, + 150 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 81, + 503, + 150 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 81, + 503, + 150 + ], + "spans": [ + { + "bbox": [ + 108, + 81, + 503, + 150 + ], + "score": 0.96, + "type": "image", + "image_path": "c23878e57a42f82d9c10542daaeed971816ea15b60f9f4fb3b4cb25feb8b7355.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 81, + 503, + 104.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 104.0, + 503, + 127.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 127.0, + 503, + 150.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 159, + 505, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "spans": [ + { + "bbox": [ + 106, + 159, + 505, + 172 + ], + "score": 1.0, + "content": "Figure 5: Illustration of our method applied to autonomous driving. Our method trains an imitative", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 505, + 182 + ], + "score": 1.0, + "content": "model from a dataset of expert examples. After training, the model is repurposed as an imitative", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 182, + 505, + 193 + ], + "score": 1.0, + "content": "planner. At test-time, a route planner provides waypoints to the imitative planner, which computes", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 506, + 205 + ], + "score": 1.0, + "content": "expert-like paths to each goal. The best plan is chosen according to the planning objective and", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 506, + 216 + ], + "score": 1.0, + "content": "provided to a low-level PID-controller in order to produce steering and throttle actions. This", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 214, + 351, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 214, + 351, + 226 + ], + "score": 1.0, + "content": "procedure is also described with pseudocode in Appendix A.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5.5 + } + ], + "index": 3.25 + }, + { + "type": "text", + "bbox": [ + 107, + 246, + 505, + 313 + ], + "lines": [], + "index": 11.5, + "bbox_fs": [ + 104, + 246, + 507, + 315 + ], + "lines_deleted": true + }, + { + "type": "interline_equation", + "bbox": [ + 202, + 318, + 408, + 333 + ], + "lines": [ + { + "bbox": [ + 202, + 318, + 408, + 333 + ], + "spans": [ + { + "bbox": [ + 202, + 318, + 408, + 333 + ], + "score": 0.79, + "content": "\\mathbf { S } _ { t } = f _ { t } ( \\mathbf { Z } _ { 1 : t } ) = \\mu _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) + \\sigma _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) \\mathbf { Z } _ { t } ,", + "type": "interline_equation", + "image_path": "704636ba561de4671f77e8dfff2d80876d812b7c8f961754b285e335a6964fa6.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 202, + 318, + 408, + 333 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 337, + 505, + 426 + ], + "lines": [ + { + "bbox": [ + 105, + 336, + 503, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 141, + 351 + ], + "score": 1.0, + "content": "where µ", + "type": "text" + }, + { + "bbox": [ + 141, + 337, + 503, + 349 + ], + "score": 0.7, + "content": "\\begin{array} { r } { \\phantom { \\frac { 1 } { \\theta } } \\theta ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = \\mathbf { S } _ { t - 1 } + ( \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } ) \\phantom { \\frac { 1 } { \\theta } } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = 2 \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) , } \\end{array}", + "type": "inline_equation" + } + ], + "index": 16 + }, + { + "bbox": [ + 104, + 345, + 506, + 362 + ], + "spans": [ + { + "bbox": [ + 104, + 345, + 293, + 362 + ], + "score": 1.0, + "content": "encodes a constant-velocity inductive bias. The", + "type": "text" + }, + { + "bbox": [ + 293, + 349, + 331, + 360 + ], + "score": 0.9, + "content": "m _ { \\theta } \\in \\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 345, + 348, + 362 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 349, + 349, + 394, + 360 + ], + "score": 0.9, + "content": "\\sigma _ { \\theta } \\in \\mathbb { R } ^ { 2 \\times 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 345, + 506, + 362 + ], + "score": 1.0, + "content": "are computed by expressive", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "spans": [ + { + "bbox": [ + 106, + 360, + 505, + 372 + ], + "score": 1.0, + "content": "neural networks. The resulting trajectory distribution is complex and multimodal (Appendix C.1", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 371, + 506, + 382 + ], + "spans": [ + { + "bbox": [ + 105, + 371, + 381, + 382 + ], + "score": 1.0, + "content": "depicts samples). Because traffic light state was not included in the", + "type": "text" + }, + { + "bbox": [ + 382, + 371, + 389, + 382 + ], + "score": 0.85, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 371, + 506, + 382 + ], + "score": 1.0, + "content": "of R2P2’s “RNN” model, it", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 383, + 394 + ], + "score": 1.0, + "content": "could not react to traffic lights. We created a new model that includes", + "type": "text" + }, + { + "bbox": [ + 383, + 382, + 391, + 391 + ], + "score": 0.68, + "content": "\\boldsymbol { \\lambda }", + "type": "inline_equation" + }, + { + "bbox": [ + 392, + 380, + 476, + 394 + ], + "score": 1.0, + "content": ". It fixed cases where", + "type": "text" + }, + { + "bbox": [ + 476, + 381, + 505, + 393 + ], + "score": 0.91, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 392, + 506, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 468, + 405 + ], + "score": 1.0, + "content": "exhibited no forward-moving preference when the agent was already stopped, and improved", + "type": "text" + }, + { + "bbox": [ + 469, + 393, + 497, + 404 + ], + "score": 0.9, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 497, + 392, + 506, + 405 + ], + "score": 1.0, + "content": "’s", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 273, + 416 + ], + "score": 1.0, + "content": "stopping preference at red lights. We used", + "type": "text" + }, + { + "bbox": [ + 273, + 403, + 302, + 414 + ], + "score": 0.89, + "content": "T = 4 0", + "type": "inline_equation" + }, + { + "bbox": [ + 302, + 403, + 358, + 416 + ], + "score": 1.0, + "content": "trajectories at", + "type": "text" + }, + { + "bbox": [ + 359, + 403, + 382, + 414 + ], + "score": 0.76, + "content": "1 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 403, + 448, + 416 + ], + "score": 1.0, + "content": "(4 seconds), and", + "type": "text" + }, + { + "bbox": [ + 449, + 404, + 470, + 414 + ], + "score": 0.87, + "content": "\\tau = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 403, + 505, + 416 + ], + "score": 1.0, + "content": ". Fig. 12", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 414, + 318, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 273, + 427 + ], + "score": 1.0, + "content": "in Appendix C depicts the architecture of", + "type": "text" + }, + { + "bbox": [ + 273, + 416, + 285, + 426 + ], + "score": 0.86, + "content": "\\mu _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 285, + 414, + 303, + 427 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 303, + 416, + 314, + 425 + ], + "score": 0.86, + "content": "\\sigma _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 414, + 318, + 427 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 19.5, + "bbox_fs": [ + 104, + 336, + 506, + 427 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 439, + 217, + 450 + ], + "lines": [ + { + "bbox": [ + 106, + 439, + 218, + 452 + ], + "spans": [ + { + "bbox": [ + 106, + 439, + 218, + 452 + ], + "score": 1.0, + "content": "2.4 IMITATIVE DRIVING", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 24 + }, + { + "type": "text", + "bbox": [ + 106, + 460, + 506, + 603 + ], + "lines": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 472 + ], + "score": 1.0, + "content": "We now instantiate a complete autonomous driving framework based on imitative models to study", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 505, + 484 + ], + "score": 1.0, + "content": "in our experiments, seen in Fig. 5. We use three layers of spatial abstraction to plan to a faraway", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "spans": [ + { + "bbox": [ + 106, + 482, + 505, + 494 + ], + "score": 1.0, + "content": "destination, common to autonomous vehicle setups: coarse route planning over a road map, path", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "spans": [ + { + "bbox": [ + 105, + 492, + 506, + 505 + ], + "score": 1.0, + "content": "planning within the observable space, and feedback control to follow the planned path (Paden et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "spans": [ + { + "bbox": [ + 105, + 503, + 506, + 516 + ], + "score": 1.0, + "content": "2016; Schwarting et al., 2018). For instance, a route planner based on a conventional GPS-based", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 515, + 506, + 527 + ], + "score": 1.0, + "content": "navigation system might output waypoints roughly in the lanes of the desired direction of travel,", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 538 + ], + "score": 1.0, + "content": "but not accounting for environmental factors such as the positions of other vehicles. This roughly", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 105, + 536, + 506, + 549 + ], + "score": 1.0, + "content": "communicates possibilities of where the vehicle could go, but not when or how it could get to them,", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 547, + 506, + 560 + ], + "score": 1.0, + "content": "or any environmental factors like other vehicles. A goal likelihood from Sec. 2.2 is formed from the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 570 + ], + "score": 1.0, + "content": "route and passed to the planner, which generates a state-space plan according to the optimization", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 569, + 506, + 583 + ], + "score": 1.0, + "content": "in Eq. 1. The resulting plan is fed to a simple PID controller on steering, throttle, and braking.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 105, + 579, + 506, + 593 + ], + "score": 1.0, + "content": "Pseudocode of the driving and inference algorithms are given in Algs 1 and 2. The PID algorithm is", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 591, + 195, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 591, + 195, + 604 + ], + "score": 1.0, + "content": "given in Appendix A.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 459, + 506, + 604 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 619, + 211, + 631 + ], + "lines": [ + { + "bbox": [ + 105, + 618, + 213, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 213, + 633 + ], + "score": 1.0, + "content": "3 RELATED WORK", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 107, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 656 + ], + "score": 1.0, + "content": "A body of previous work has explored offline IL (Behavior Cloning – BC) in the CARLA simulator", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 666 + ], + "score": 1.0, + "content": "(Li et al., 2018; Liang et al., 2018; Sauer et al., 2018; Codevilla et al., 2018; 2019). These BC", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 677 + ], + "score": 1.0, + "content": "approaches condition on goals drawn from a small discrete set of directives. Despite BC’s theoretical", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 689 + ], + "score": 1.0, + "content": "drift shortcomings (Ross et al., 2011), these methods still perform empirically well. These approaches", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 688, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 337, + 700 + ], + "score": 1.0, + "content": "and ours share the same high-level routing algorithm: an", + "type": "text" + }, + { + "bbox": [ + 338, + 688, + 349, + 698 + ], + "score": 0.83, + "content": "A ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 350, + 688, + 505, + 700 + ], + "score": 1.0, + "content": "planner on route nodes that generates", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "waypoints. In contrast to our approach, these approaches use the waypoints in a Waypoint Classifier,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "which reasons about the map and the geometry of the route to classify the waypoints into one of several", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 732 + ], + "score": 1.0, + "content": "directives: {Turn left, Turn right, Follow Lane, Go Straight}. One of the original motivations for", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 644, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 486, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 486, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 437, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 IMITATIVEDRIVING(ROUTEPLAN, IMITATIVEPLAN, PIDCONTROLLER,", + "type": "text" + }, + { + "bbox": [ + 437, + 84, + 483, + 94 + ], + "score": 0.85, + "content": "q _ { \\theta } , f , p , H )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 81, + 486, + 96 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 110, + 97, + 348, + 199 + ], + "lines": [ + { + "bbox": [ + 110, + 97, + 313, + 111 + ], + "spans": [ + { + "bbox": [ + 110, + 97, + 122, + 111 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 123, + 98, + 226, + 110 + ], + "score": 0.73, + "content": "\\phi \\mathrm { E N V I R O N M E N T } ( \\emptyset )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 97, + 313, + 111 + ], + "score": 1.0, + "content": "{Initialize the robot}", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 111, + 109, + 233, + 120 + ], + "spans": [ + { + "bbox": [ + 111, + 109, + 233, + 120 + ], + "score": 1.0, + "content": "2: while not at destination do", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 111, + 119, + 348, + 132 + ], + "spans": [ + { + "bbox": [ + 111, + 120, + 121, + 132 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 133, + 120, + 225, + 131 + ], + "score": 0.55, + "content": "\\mathcal { G } \\gets \\mathsf { R o u r r E P L A N } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 119, + 348, + 132 + ], + "score": 1.0, + "content": "{Generate goals from a route}", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 111, + 127, + 346, + 151 + ], + "spans": [ + { + "bbox": [ + 111, + 132, + 121, + 144 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 132, + 293, + 145 + ], + "score": 0.3, + "content": "\\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } \\gets \\mathrm { I M I T A T I V E P L A N } ( q _ { \\theta } , f , p , \\mathcal { G } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 127, + 346, + 151 + ], + "score": 1.0, + "content": "{Plan path}", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 110, + 143, + 210, + 154 + ], + "spans": [ + { + "bbox": [ + 110, + 144, + 121, + 154 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 133, + 143, + 148, + 154 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 148, + 144, + 174, + 153 + ], + "score": 0.84, + "content": "h = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 143, + 185, + 154 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 185, + 144, + 195, + 153 + ], + "score": 0.61, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 143, + 210, + 154 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 110, + 151, + 301, + 168 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 121, + 165 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 141, + 151, + 242, + 168 + ], + "score": 1.0, + "content": "u ← PIDCONTROLLER", + "type": "text" + }, + { + "bbox": [ + 242, + 153, + 301, + 167 + ], + "score": 0.63, + "content": "( \\phi , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H )", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 110, + 164, + 319, + 177 + ], + "spans": [ + { + "bbox": [ + 110, + 164, + 122, + 177 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 143, + 166, + 244, + 177 + ], + "score": 0.27, + "content": "\\phi \\gets \\mathrm { E N V I R O N M E N T } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 164, + 319, + 177 + ], + "score": 1.0, + "content": "{Execute control}", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 110, + 176, + 168, + 187 + ], + "spans": [ + { + "bbox": [ + 110, + 176, + 121, + 187 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 132, + 176, + 168, + 187 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 109, + 187, + 167, + 199 + ], + "spans": [ + { + "bbox": [ + 109, + 187, + 167, + 199 + ], + "score": 1.0, + "content": "9: end while", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 5 + }, + { + "type": "title", + "bbox": [ + 108, + 215, + 292, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 293, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 293, + 229 + ], + "score": 1.0, + "content": "Algorithm 2 IMITATIVEPLAN(qθ, f, p, G, φ)", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 110, + 231, + 497, + 289 + ], + "lines": [ + { + "bbox": [ + 110, + 228, + 202, + 244 + ], + "spans": [ + { + "bbox": [ + 110, + 228, + 161, + 244 + ], + "score": 1.0, + "content": "1: Initialize", + "type": "text" + }, + { + "bbox": [ + 161, + 232, + 202, + 242 + ], + "score": 0.74, + "content": "{ \\mathbf z } _ { 1 : T } \\sim q _ { 0 }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 110, + 241, + 220, + 253 + ], + "spans": [ + { + "bbox": [ + 110, + 241, + 220, + 253 + ], + "score": 1.0, + "content": "2: while not converged do", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 110, + 251, + 493, + 266 + ], + "spans": [ + { + "bbox": [ + 110, + 251, + 132, + 266 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 252, + 381, + 265 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 1 : T } \\gets \\mathbf { z } _ { 1 : T } + \\mathbf { \\bar { V } } _ { \\mathbf { z } _ { 1 : T } } \\left[ \\log q ( f ( \\mathbf { z } _ { 1 : T } ) | \\phi ) + \\log p ( \\mathcal { G } | f ( \\mathbf { z } _ { 1 : T } ) , \\phi ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 251, + 493, + 266 + ], + "score": 1.0, + "content": "{Gradient ascent on Eq. 1}", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 109, + 263, + 168, + 275 + ], + "spans": [ + { + "bbox": [ + 109, + 263, + 168, + 275 + ], + "score": 1.0, + "content": "4: end while", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 110, + 274, + 216, + 287 + ], + "spans": [ + { + "bbox": [ + 110, + 274, + 153, + 286 + ], + "score": 1.0, + "content": "5: return", + "type": "text" + }, + { + "bbox": [ + 153, + 274, + 216, + 287 + ], + "score": 0.84, + "content": "{ \\bf s } _ { 1 : T } = f ( { \\bf z } _ { 1 : T } )", + "type": "inline_equation" + } + ], + "index": 15 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "these type of controls was to enable a human to direct the robot (Codevilla et al., 2018). However, in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "score": 1.0, + "content": "scenarios where there is no human in the loop (i.e. autonomous driving), we advocate for approaches", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "to make use of the detailed spatial information inherent in these waypoints. Our approach and several", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "others we designed make use of this spatial information. One of these is CIL-States (CILS): whereas", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "the approach in Codevilla et al. (2018) uses images to directly generate controls, CILS uses identical", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "inputs and PID controllers as our method. With respect to prior conditional IL methods, our main", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 378, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 392 + ], + "score": 1.0, + "content": "approach has more flexibility to handle more complex directives post-training, the ability to learn", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "without goal labels, and the ability to generate interpretable planned and unplanned trajectories.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 401, + 329, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 329, + 412 + ], + "score": 1.0, + "content": "These contrasting capabilities are illustrated in Table 1.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "Our approach is also related to MBRL. MBRL can also plan with a predictive model, but its model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "only represents possible dynamics. The task of evoking expert-like behavior is offloaded to the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "score": 1.0, + "content": "reward function, which can be difficult and time-consuming to craft properly. We know of no MBRL", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "approach previously applied to CARLA, so we devised one for comparison. This MBRL approach", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "also uses identical inputs to our method, instead to plan a reachability tree (LaValle, 2006) over an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "dynamic obstacle-based reward function. See Appendix D for further details of the MBRL and CILS", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 483, + 372, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 372, + 496 + ], + "score": 1.0, + "content": "methods, which we emphasize use the same inputs as our method.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "Several prior works (Tamar et al., 2016; Amos et al., 2018; Srinivas et al., 2018) used imitation", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "learning to train policies that contain planning-like modules as part of the model architecture. While", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "our work also combines planning and imitation learning, ours captures a distribution over possible", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "trajectories, and then plan trajectories at test-time that accomplish a variety of given goals with", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "high probability under this distribution. Our approach is suited to offline-learning settings where", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "interactively collecting data is costly (time-consuming or dangerous). However, there exists online IL", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 566, + 470, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 470, + 578 + ], + "score": 1.0, + "content": "approaches that seek to be safe (Menda et al., 2017; Sun et al., 2018; Zhang & Cho, 2017).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35 + }, + { + "type": "title", + "bbox": [ + 108, + 596, + 200, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 201, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 201, + 610 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "We evaluate our method using the CARLA driving simulator (Dosovitskiy et al., 2017). We seek to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "answer four primary questions: (1) Can we generate interpretable, expert-like plans with offline", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "learning and minimal reward engineering? Neither IL nor MBRL can do so. It is straightforward", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "to interpret the trajectories by visualizing them on the ground plane; we thus seek to validate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "whether these plans are expert-like by equating expert-like behavior with high performance on the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "CARLA benchmark. (2) Can we achieve state-of-the-art CARLA performance using resources", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "commonly available in real autonomous vehicle settings? There are several differences between", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the approaches, as discussed in Sec 3 and shown in Tables 1 and 2. Our approach uses the CARLA", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "toolkit’s resources that are commonly available in real autonomous vehicle settings: waypoint-based", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "routes (all prior approaches use these), LIDAR and traffic-light observations (both are CARLA-", + "type": "text" + } + ], + "index": 49 + } + ], + "index": 44.5 + } + ], + "page_idx": 5, + "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 2020", + "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": "text", + "bbox": [ + 105, + 82, + 486, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 81, + 486, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 81, + 437, + 96 + ], + "score": 1.0, + "content": "Algorithm 1 IMITATIVEDRIVING(ROUTEPLAN, IMITATIVEPLAN, PIDCONTROLLER,", + "type": "text" + }, + { + "bbox": [ + 437, + 84, + 483, + 94 + ], + "score": 0.85, + "content": "q _ { \\theta } , f , p , H )", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 81, + 486, + 96 + ], + "score": 0.0, + "content": "", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0, + "bbox_fs": [ + 106, + 81, + 486, + 96 + ] + }, + { + "type": "index", + "bbox": [ + 110, + 97, + 348, + 199 + ], + "lines": [ + { + "bbox": [ + 110, + 97, + 313, + 111 + ], + "spans": [ + { + "bbox": [ + 110, + 97, + 122, + 111 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 123, + 98, + 226, + 110 + ], + "score": 0.73, + "content": "\\phi \\mathrm { E N V I R O N M E N T } ( \\emptyset )", + "type": "inline_equation" + }, + { + "bbox": [ + 226, + 97, + 313, + 111 + ], + "score": 1.0, + "content": "{Initialize the robot}", + "type": "text" + } + ], + "index": 1, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 109, + 233, + 120 + ], + "spans": [ + { + "bbox": [ + 111, + 109, + 233, + 120 + ], + "score": 1.0, + "content": "2: while not at destination do", + "type": "text" + } + ], + "index": 2, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 119, + 348, + 132 + ], + "spans": [ + { + "bbox": [ + 111, + 120, + 121, + 132 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 133, + 120, + 225, + 131 + ], + "score": 0.55, + "content": "\\mathcal { G } \\gets \\mathsf { R o u r r E P L A N } ( \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 225, + 119, + 348, + 132 + ], + "score": 1.0, + "content": "{Generate goals from a route}", + "type": "text" + } + ], + "index": 3, + "is_list_start_line": true + }, + { + "bbox": [ + 111, + 127, + 346, + 151 + ], + "spans": [ + { + "bbox": [ + 111, + 132, + 121, + 144 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 132, + 132, + 293, + 145 + ], + "score": 0.3, + "content": "\\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } \\gets \\mathrm { I M I T A T I V E P L A N } ( q _ { \\theta } , f , p , \\mathcal { G } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 294, + 127, + 346, + 151 + ], + "score": 1.0, + "content": "{Plan path}", + "type": "text" + } + ], + "index": 4, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 143, + 210, + 154 + ], + "spans": [ + { + "bbox": [ + 110, + 144, + 121, + 154 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 133, + 143, + 148, + 154 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 148, + 144, + 174, + 153 + ], + "score": 0.84, + "content": "h = 0", + "type": "inline_equation" + }, + { + "bbox": [ + 174, + 143, + 185, + 154 + ], + "score": 1.0, + "content": "to", + "type": "text" + }, + { + "bbox": [ + 185, + 144, + 195, + 153 + ], + "score": 0.61, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 196, + 143, + 210, + 154 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 5, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 151, + 301, + 168 + ], + "spans": [ + { + "bbox": [ + 110, + 155, + 121, + 165 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 141, + 151, + 242, + 168 + ], + "score": 1.0, + "content": "u ← PIDCONTROLLER", + "type": "text" + }, + { + "bbox": [ + 242, + 153, + 301, + 167 + ], + "score": 0.63, + "content": "( \\phi , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H )", + "type": "inline_equation" + } + ], + "index": 6, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 164, + 319, + 177 + ], + "spans": [ + { + "bbox": [ + 110, + 164, + 122, + 177 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 143, + 166, + 244, + 177 + ], + "score": 0.27, + "content": "\\phi \\gets \\mathrm { E N V I R O N M E N T } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 245, + 164, + 319, + 177 + ], + "score": 1.0, + "content": "{Execute control}", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 176, + 168, + 187 + ], + "spans": [ + { + "bbox": [ + 110, + 176, + 121, + 187 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 132, + 176, + 168, + 187 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 187, + 167, + 199 + ], + "spans": [ + { + "bbox": [ + 109, + 187, + 167, + 199 + ], + "score": 1.0, + "content": "9: end while", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true + } + ], + "index": 5, + "bbox_fs": [ + 109, + 97, + 348, + 199 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 215, + 292, + 227 + ], + "lines": [ + { + "bbox": [ + 105, + 213, + 293, + 229 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 293, + 229 + ], + "score": 1.0, + "content": "Algorithm 2 IMITATIVEPLAN(qθ, f, p, G, φ)", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "index", + "bbox": [ + 110, + 231, + 497, + 289 + ], + "lines": [ + { + "bbox": [ + 110, + 228, + 202, + 244 + ], + "spans": [ + { + "bbox": [ + 110, + 228, + 161, + 244 + ], + "score": 1.0, + "content": "1: Initialize", + "type": "text" + }, + { + "bbox": [ + 161, + 232, + 202, + 242 + ], + "score": 0.74, + "content": "{ \\mathbf z } _ { 1 : T } \\sim q _ { 0 }", + "type": "inline_equation" + } + ], + "index": 11, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 241, + 220, + 253 + ], + "spans": [ + { + "bbox": [ + 110, + 241, + 220, + 253 + ], + "score": 1.0, + "content": "2: while not converged do", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 251, + 493, + 266 + ], + "spans": [ + { + "bbox": [ + 110, + 251, + 132, + 266 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 132, + 252, + 381, + 265 + ], + "score": 0.84, + "content": "\\mathbf { z } _ { 1 : T } \\gets \\mathbf { z } _ { 1 : T } + \\mathbf { \\bar { V } } _ { \\mathbf { z } _ { 1 : T } } \\left[ \\log q ( f ( \\mathbf { z } _ { 1 : T } ) | \\phi ) + \\log p ( \\mathcal { G } | f ( \\mathbf { z } _ { 1 : T } ) , \\phi ) \\right]", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 251, + 493, + 266 + ], + "score": 1.0, + "content": "{Gradient ascent on Eq. 1}", + "type": "text" + } + ], + "index": 13, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 263, + 168, + 275 + ], + "spans": [ + { + "bbox": [ + 109, + 263, + 168, + 275 + ], + "score": 1.0, + "content": "4: end while", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 274, + 216, + 287 + ], + "spans": [ + { + "bbox": [ + 110, + 274, + 153, + 286 + ], + "score": 1.0, + "content": "5: return", + "type": "text" + }, + { + "bbox": [ + 153, + 274, + 216, + 287 + ], + "score": 0.84, + "content": "{ \\bf s } _ { 1 : T } = f ( { \\bf z } _ { 1 : T } )", + "type": "inline_equation" + } + ], + "index": 15, + "is_list_start_line": true + } + ], + "index": 13, + "bbox_fs": [ + 109, + 228, + 493, + 287 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 312, + 505, + 412 + ], + "lines": [ + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "these type of controls was to enable a human to direct the robot (Codevilla et al., 2018). However, in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "spans": [ + { + "bbox": [ + 106, + 325, + 505, + 336 + ], + "score": 1.0, + "content": "scenarios where there is no human in the loop (i.e. autonomous driving), we advocate for approaches", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 505, + 348 + ], + "score": 1.0, + "content": "to make use of the detailed spatial information inherent in these waypoints. Our approach and several", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 505, + 358 + ], + "score": 1.0, + "content": "others we designed make use of this spatial information. One of these is CIL-States (CILS): whereas", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "spans": [ + { + "bbox": [ + 105, + 356, + 506, + 369 + ], + "score": 1.0, + "content": "the approach in Codevilla et al. (2018) uses images to directly generate controls, CILS uses identical", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 505, + 380 + ], + "score": 1.0, + "content": "inputs and PID controllers as our method. With respect to prior conditional IL methods, our main", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 378, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 378, + 506, + 392 + ], + "score": 1.0, + "content": "approach has more flexibility to handle more complex directives post-training, the ability to learn", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "spans": [ + { + "bbox": [ + 105, + 389, + 506, + 403 + ], + "score": 1.0, + "content": "without goal labels, and the ability to generate interpretable planned and unplanned trajectories.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 401, + 329, + 412 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 329, + 412 + ], + "score": 1.0, + "content": "These contrasting capabilities are illustrated in Table 1.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 313, + 506, + 412 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 417, + 505, + 494 + ], + "lines": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 505, + 430 + ], + "score": 1.0, + "content": "Our approach is also related to MBRL. MBRL can also plan with a predictive model, but its model", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 441 + ], + "score": 1.0, + "content": "only represents possible dynamics. The task of evoking expert-like behavior is offloaded to the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "spans": [ + { + "bbox": [ + 106, + 440, + 505, + 451 + ], + "score": 1.0, + "content": "reward function, which can be difficult and time-consuming to craft properly. We know of no MBRL", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 450, + 506, + 464 + ], + "score": 1.0, + "content": "approach previously applied to CARLA, so we devised one for comparison. This MBRL approach", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 461, + 505, + 473 + ], + "score": 1.0, + "content": "also uses identical inputs to our method, instead to plan a reachability tree (LaValle, 2006) over an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "dynamic obstacle-based reward function. See Appendix D for further details of the MBRL and CILS", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 483, + 372, + 496 + ], + "spans": [ + { + "bbox": [ + 105, + 483, + 372, + 496 + ], + "score": 1.0, + "content": "methods, which we emphasize use the same inputs as our method.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 28, + "bbox_fs": [ + 105, + 418, + 506, + 496 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 500, + 505, + 577 + ], + "lines": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 106, + 500, + 505, + 512 + ], + "score": 1.0, + "content": "Several prior works (Tamar et al., 2016; Amos et al., 2018; Srinivas et al., 2018) used imitation", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 505, + 523 + ], + "score": 1.0, + "content": "learning to train policies that contain planning-like modules as part of the model architecture. While", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 534 + ], + "score": 1.0, + "content": "our work also combines planning and imitation learning, ours captures a distribution over possible", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 533, + 505, + 545 + ], + "score": 1.0, + "content": "trajectories, and then plan trajectories at test-time that accomplish a variety of given goals with", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "spans": [ + { + "bbox": [ + 105, + 544, + 505, + 557 + ], + "score": 1.0, + "content": "high probability under this distribution. Our approach is suited to offline-learning settings where", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 568 + ], + "score": 1.0, + "content": "interactively collecting data is costly (time-consuming or dangerous). However, there exists online IL", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 566, + 470, + 578 + ], + "spans": [ + { + "bbox": [ + 105, + 566, + 470, + 578 + ], + "score": 1.0, + "content": "approaches that seek to be safe (Menda et al., 2017; Sun et al., 2018; Zhang & Cho, 2017).", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 500, + 506, + 578 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 596, + 200, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 595, + 201, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 201, + 610 + ], + "score": 1.0, + "content": "4 EXPERIMENTS", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 621, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 506, + 634 + ], + "score": 1.0, + "content": "We evaluate our method using the CARLA driving simulator (Dosovitskiy et al., 2017). We seek to", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 646 + ], + "score": 1.0, + "content": "answer four primary questions: (1) Can we generate interpretable, expert-like plans with offline", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "learning and minimal reward engineering? Neither IL nor MBRL can do so. It is straightforward", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "to interpret the trajectories by visualizing them on the ground plane; we thus seek to validate", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 505, + 679 + ], + "score": 1.0, + "content": "whether these plans are expert-like by equating expert-like behavior with high performance on the", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "CARLA benchmark. (2) Can we achieve state-of-the-art CARLA performance using resources", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 106, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "commonly available in real autonomous vehicle settings? There are several differences between", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "the approaches, as discussed in Sec 3 and shown in Tables 1 and 2. Our approach uses the CARLA", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "toolkit’s resources that are commonly available in real autonomous vehicle settings: waypoint-based", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 506, + 732 + ], + "score": 1.0, + "content": "routes (all prior approaches use these), LIDAR and traffic-light observations (both are CARLA-", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "provided, but only the approaches we implemented use it). Furthermore, the two additional methods", + "type": "text", + "cross_page": true + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 292, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 506, + 304 + ], + "score": 1.0, + "content": "of comparison we implemented (CILS and MBRL) use the exact same inputs as our algorithm.", + "type": "text", + "cross_page": true + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "These reasons justify an overall performance comparison to answer (2): whether we can achieve", + "type": "text", + "cross_page": true + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "state-of-the-art performance using commonly available resources. We advocate that other approaches", + "type": "text", + "cross_page": true + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "also make use of such resources. (3) How flexible is our approach to new tasks? We investigate", + "type": "text", + "cross_page": true + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "(3) by applying each of the goal likelihoods we derived and observing the resulting performance. (4)", + "type": "text", + "cross_page": true + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "How robust is our approach to error in the provided goals? We do so by injecting two different", + "type": "text", + "cross_page": true + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 358, + 405, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 405, + 371 + ], + "score": 1.0, + "content": "types of error into the waypoints and observing the resulting performance.", + "type": "text", + "cross_page": true + } + ], + "index": 12 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 622, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 104, + 501, + 263 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 80, + 502, + 102 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 79, + 504, + 93 + ], + "spans": [ + { + "bbox": [ + 107, + 79, + 504, + 93 + ], + "score": 1.0, + "content": "Table 1: Desirable attributes of each approach. A green check denotes that a method has a desirable", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 88, + 499, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 88, + 499, + 105 + ], + "score": 1.0, + "content": "attribute, whereas a red cross denotes the opposite. A “†” indicates an approach we implemented.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 104, + 501, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 104, + 501, + 263 + ], + "spans": [ + { + "bbox": [ + 108, + 104, + 501, + 263 + ], + "score": 0.492, + "html": "
ApproachFlexible to New GoalsTrains without goal labelsOutputs PlansTrains OflineHas Expert P.D.F.
CIRL*(Liang et al., 2018)XXXXX
CAL* (Sauer et al.,2018)xxxxxν
MT*(Li et al.,2018)
CIL*(Codevilla et al., 2018)xxx
CILRS*(Codevilla et al.,2019)X
CILStxxxx//xxxxx/X
MBRL†XX
Imitative Models (Ours)t
Table 2: Algorithmic components of each approach. A “t” i indicates an approach we implemented.
ApproachControl Algorithm← Learning Algorithm←Goal-Generation Algorithm ←Routing AlgorithmHigh-Dim. Obs.
CIRL*(Liang et al.,2018)Waypoint ClassifierA*Waypointer
PolicyBehavior Cloning+RL Affordance LearningWaypoint ClassifierA*WaypointerImage Image
CAL*(Sauer et al.,2018) MT*(Li et al., 2018)PID PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CIL*(Codevilla et al., 2018)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILRS*(Codevilla et al., 2019)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILStPIDTrajectory RegressorWaypoint ClassifierA*Waypointer(LIDAR,入)
MBRL†Reachability TreeState RegressorWaypoint SelectorA*Waypointer(LIDAR,λ)
Imitative Models (Ours)†Imitative Plan+PIDTraj. Density Est.Goal LikelihoodsA*Waypointer(LIDAR,λ)
", + "type": "table", + "image_path": "c101dd5446fbcbda50ac8354c8ca0d2f9d09eac335ec3db91829dce196b72d4b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 104, + 501, + 157.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 157.0, + 501, + 210.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 210.0, + 501, + 263.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "spans": [ + { + "bbox": [ + 105, + 281, + 506, + 294 + ], + "score": 1.0, + "content": "provided, but only the approaches we implemented use it). Furthermore, the two additional methods", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 292, + 506, + 304 + ], + "spans": [ + { + "bbox": [ + 106, + 292, + 506, + 304 + ], + "score": 1.0, + "content": "of comparison we implemented (CILS and MBRL) use the exact same inputs as our algorithm.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "spans": [ + { + "bbox": [ + 106, + 303, + 505, + 316 + ], + "score": 1.0, + "content": "These reasons justify an overall performance comparison to answer (2): whether we can achieve", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "spans": [ + { + "bbox": [ + 105, + 314, + 505, + 326 + ], + "score": 1.0, + "content": "state-of-the-art performance using commonly available resources. We advocate that other approaches", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "also make use of such resources. (3) How flexible is our approach to new tasks? We investigate", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 335, + 506, + 349 + ], + "score": 1.0, + "content": "(3) by applying each of the goal likelihoods we derived and observing the resulting performance. (4)", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 105, + 347, + 506, + 360 + ], + "score": 1.0, + "content": "How robust is our approach to error in the provided goals? We do so by injecting two different", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 358, + 405, + 371 + ], + "spans": [ + { + "bbox": [ + 105, + 358, + 405, + 371 + ], + "score": 1.0, + "content": "types of error into the waypoints and observing the resulting performance.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 192, + 388 + ], + "score": 1.0, + "content": "We begin by training", + "type": "text" + }, + { + "bbox": [ + 192, + 375, + 221, + 387 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "on a dataset of 25 hours of driving we collected in Town01, detailed in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "Appendix C.2. Following existing protocol, each test episode begins with the vehicle starting in one", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "of a finite set of starting positions provided by the CARLA simulator in Town01 or Town02 maps", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "in one of two settings: static-world (no other vehicles) or dynamic-world (with other vehicles). We", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "ran the same benchmark 3 times across different random seeds to quantify means and their standard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 236, + 443 + ], + "score": 1.0, + "content": "errors. We construct the goal set", + "type": "text" + }, + { + "bbox": [ + 236, + 430, + 245, + 439 + ], + "score": 0.8, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "for the Final-State Indicator (A) directly from the route output by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "CARLA’s waypointer. B’s line segments are formed by connecting the waypoints to form a piecewise", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "linear set of segments. C’s regions are created a polygonal goal region around the segments of (B).", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Each represents an increasing level of coarseness of direction. Coarser directions are easier to specify", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "when there is ambiguity in positions (both the position of the vehicle and the position of the goals).", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Further details are discussed in Appendix B.3. Visualizations of (C) are shown in Figures 6 and 7.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "Visualizations of (A) and (B) are shown in Figures 8 and 9. We use three metrics: (a) success rate in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "driving to the destination without any collisions (which all prior work reports); (b) red-light violations;", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "and (c) proportion of time spent driving in the wrong lane and off road. With the exception of metric", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 529, + 226, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 226, + 540 + ], + "score": 1.0, + "content": "(a), lower numbers are better.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 20 + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "score": 1.0, + "content": "Results: Towards questions (1) and (3) (expert-like plans and flexibility), we apply our approach", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "with a variety of goal likelihoods to the CARLA simulator. Towards question (2), we compare our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "methods against CILS, MBRL, and prior work. These results are shown in Table 3. The metrics", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 578, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 591 + ], + "score": 1.0, + "content": "for the methods we did not implement are from the aggregation reported in Codevilla et al. (2019).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "We observe our method to outperform all other approaches in all settings: static world, dynamic", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "world, training conditions, and test conditions. We observe the Goal Indicator methods are able to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "perform well, despite having no hyperparameters to tune. We found that we could further improve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 621, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 621, + 507, + 635 + ], + "score": 1.0, + "content": "our approach’s performance if we use the light state to define different goal sets, which defines a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "“smart” waypointer. The settings where we use this are suffixed with “S.” in the Tables. We observed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "score": 1.0, + "content": "the planner prefers closer goals when obstructed, when the vehicle was already stopped, and when a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "red light was detected; we observed the planner prefers farther goals when unobstructed and when", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "green lights or no lights were observed. Examples of these and other interesting behaviors are best", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "score": 1.0, + "content": "seen in the videos on the website (https://sites.google.com/view/imitative-models). These", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 290, + 700 + ], + "score": 1.0, + "content": "behaviors follow from the method leveraging", + "type": "text" + }, + { + "bbox": [ + 290, + 688, + 319, + 700 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "’s internalization of aspects of expert behavior", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "in order to reproduce them in new situations. Altogether, these results provide affirmative answers", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "to questions (1) and (2). Towards question (3), these results show that our approach is flexible to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 720, + 321, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 321, + 733 + ], + "score": 1.0, + "content": "different directions defined by these goal likelihoods.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 36 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 763 + ], + "score": 1.0, + "content": "7", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 108, + 104, + 501, + 263 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 80, + 502, + 102 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 79, + 504, + 93 + ], + "spans": [ + { + "bbox": [ + 107, + 79, + 504, + 93 + ], + "score": 1.0, + "content": "Table 1: Desirable attributes of each approach. A green check denotes that a method has a desirable", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 88, + 499, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 88, + 499, + 105 + ], + "score": 1.0, + "content": "attribute, whereas a red cross denotes the opposite. A “†” indicates an approach we implemented.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "table_body", + "bbox": [ + 108, + 104, + 501, + 263 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 104, + 501, + 263 + ], + "spans": [ + { + "bbox": [ + 108, + 104, + 501, + 263 + ], + "score": 0.492, + "html": "
ApproachFlexible to New GoalsTrains without goal labelsOutputs PlansTrains OflineHas Expert P.D.F.
CIRL*(Liang et al., 2018)XXXXX
CAL* (Sauer et al.,2018)xxxxxν
MT*(Li et al.,2018)
CIL*(Codevilla et al., 2018)xxx
CILRS*(Codevilla et al.,2019)X
CILStxxxx//xxxxx/X
MBRL†XX
Imitative Models (Ours)t
Table 2: Algorithmic components of each approach. A “t” i indicates an approach we implemented.
ApproachControl Algorithm← Learning Algorithm←Goal-Generation Algorithm ←Routing AlgorithmHigh-Dim. Obs.
CIRL*(Liang et al.,2018)Waypoint ClassifierA*Waypointer
PolicyBehavior Cloning+RL Affordance LearningWaypoint ClassifierA*WaypointerImage Image
CAL*(Sauer et al.,2018) MT*(Li et al., 2018)PID PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CIL*(Codevilla et al., 2018)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILRS*(Codevilla et al., 2019)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILStPIDTrajectory RegressorWaypoint ClassifierA*Waypointer(LIDAR,入)
MBRL†Reachability TreeState RegressorWaypoint SelectorA*Waypointer(LIDAR,λ)
Imitative Models (Ours)†Imitative Plan+PIDTraj. Density Est.Goal LikelihoodsA*Waypointer(LIDAR,λ)
", + "type": "table", + "image_path": "c101dd5446fbcbda50ac8354c8ca0d2f9d09eac335ec3db91829dce196b72d4b.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 108, + 104, + 501, + 157.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 108, + 157.0, + 501, + 210.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 108, + 210.0, + 501, + 263.0 + ], + "spans": [], + "index": 4 + } + ] + } + ], + "index": 1.75 + }, + { + "type": "text", + "bbox": [ + 106, + 281, + 505, + 370 + ], + "lines": [], + "index": 8.5, + "bbox_fs": [ + 105, + 281, + 506, + 371 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 375, + 505, + 539 + ], + "lines": [ + { + "bbox": [ + 105, + 374, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 105, + 374, + 192, + 388 + ], + "score": 1.0, + "content": "We begin by training", + "type": "text" + }, + { + "bbox": [ + 192, + 375, + 221, + 387 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 374, + 506, + 388 + ], + "score": 1.0, + "content": "on a dataset of 25 hours of driving we collected in Town01, detailed in", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 386, + 505, + 399 + ], + "score": 1.0, + "content": "Appendix C.2. Following existing protocol, each test episode begins with the vehicle starting in one", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 505, + 410 + ], + "score": 1.0, + "content": "of a finite set of starting positions provided by the CARLA simulator in Town01 or Town02 maps", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 505, + 420 + ], + "score": 1.0, + "content": "in one of two settings: static-world (no other vehicles) or dynamic-world (with other vehicles). We", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 505, + 430 + ], + "score": 1.0, + "content": "ran the same benchmark 3 times across different random seeds to quantify means and their standard", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 429, + 505, + 443 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 236, + 443 + ], + "score": 1.0, + "content": "errors. We construct the goal set", + "type": "text" + }, + { + "bbox": [ + 236, + 430, + 245, + 439 + ], + "score": 0.8, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 429, + 505, + 443 + ], + "score": 1.0, + "content": "for the Final-State Indicator (A) directly from the route output by", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 453 + ], + "score": 1.0, + "content": "CARLA’s waypointer. B’s line segments are formed by connecting the waypoints to form a piecewise", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 506, + 465 + ], + "score": 1.0, + "content": "linear set of segments. C’s regions are created a polygonal goal region around the segments of (B).", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 505, + 475 + ], + "score": 1.0, + "content": "Each represents an increasing level of coarseness of direction. Coarser directions are easier to specify", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "when there is ambiguity in positions (both the position of the vehicle and the position of the goals).", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "Further details are discussed in Appendix B.3. Visualizations of (C) are shown in Figures 6 and 7.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "Visualizations of (A) and (B) are shown in Figures 8 and 9. We use three metrics: (a) success rate in", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "driving to the destination without any collisions (which all prior work reports); (b) red-light violations;", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 531 + ], + "score": 1.0, + "content": "and (c) proportion of time spent driving in the wrong lane and off road. With the exception of metric", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 529, + 226, + 540 + ], + "spans": [ + { + "bbox": [ + 106, + 529, + 226, + 540 + ], + "score": 1.0, + "content": "(a), lower numbers are better.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 20, + "bbox_fs": [ + 105, + 374, + 506, + 540 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 545, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 505, + 559 + ], + "score": 1.0, + "content": "Results: Towards questions (1) and (3) (expert-like plans and flexibility), we apply our approach", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 506, + 569 + ], + "score": 1.0, + "content": "with a variety of goal likelihoods to the CARLA simulator. Towards question (2), we compare our", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 506, + 579 + ], + "score": 1.0, + "content": "methods against CILS, MBRL, and prior work. These results are shown in Table 3. The metrics", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 578, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 105, + 578, + 506, + 591 + ], + "score": 1.0, + "content": "for the methods we did not implement are from the aggregation reported in Codevilla et al. (2019).", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 589, + 505, + 601 + ], + "score": 1.0, + "content": "We observe our method to outperform all other approaches in all settings: static world, dynamic", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "world, training conditions, and test conditions. We observe the Goal Indicator methods are able to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 104, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "perform well, despite having no hyperparameters to tune. We found that we could further improve", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 104, + 621, + 507, + 635 + ], + "spans": [ + { + "bbox": [ + 104, + 621, + 507, + 635 + ], + "score": 1.0, + "content": "our approach’s performance if we use the light state to define different goal sets, which defines a", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 632, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 104, + 632, + 506, + 646 + ], + "score": 1.0, + "content": "“smart” waypointer. The settings where we use this are suffixed with “S.” in the Tables. We observed", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 507, + 657 + ], + "score": 1.0, + "content": "the planner prefers closer goals when obstructed, when the vehicle was already stopped, and when a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "spans": [ + { + "bbox": [ + 106, + 655, + 505, + 667 + ], + "score": 1.0, + "content": "red light was detected; we observed the planner prefers farther goals when unobstructed and when", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "green lights or no lights were observed. Examples of these and other interesting behaviors are best", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 505, + 689 + ], + "score": 1.0, + "content": "seen in the videos on the website (https://sites.google.com/view/imitative-models). These", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 290, + 700 + ], + "score": 1.0, + "content": "behaviors follow from the method leveraging", + "type": "text" + }, + { + "bbox": [ + 290, + 688, + 319, + 700 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 319, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "’s internalization of aspects of expert behavior", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "in order to reproduce them in new situations. Altogether, these results provide affirmative answers", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 106, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "to questions (1) and (2). Towards question (3), these results show that our approach is flexible to", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 720, + 321, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 321, + 733 + ], + "score": 1.0, + "content": "different directions defined by these goal likelihoods.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 36, + "bbox_fs": [ + 104, + 543, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 155, + 506, + 347 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 147 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 3: We evaluate different autonomous driving methods on CARLA’s Dynamic Navigation task.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 88, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 104, + 88, + 506, + 105 + ], + "score": 1.0, + "content": "A “†” indicates methods we have implemented (each observes the same waypoints and LIDAR as", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 100, + 507, + 115 + ], + "spans": [ + { + "bbox": [ + 104, + 100, + 507, + 115 + ], + "score": 1.0, + "content": "input). A “∗” indicates results reported in Codevilla et al. (2019). A “–” indicates an unreported", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 111, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 104, + 111, + 506, + 126 + ], + "score": 1.0, + "content": "statistic. A “‡” indicates an optimistic estimate in transferring a result from the static setting to the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "dynamic setting. “S.” denotes a “smart” waypointer reactive to light state, detailed in Appendix B.2.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 135, + 504, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 344, + 148 + ], + "score": 1.0, + "content": "Results accompanied by standard errors are computed with", + "type": "text" + }, + { + "bbox": [ + 345, + 136, + 373, + 145 + ], + "score": 0.9, + "content": "N = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 135, + 504, + 148 + ], + "score": 1.0, + "content": "trials across environment seeds.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 155, + 506, + 347 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 155, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 107, + 155, + 506, + 347 + ], + "score": 0.95, + "html": "
Dynamic Nav. MethodTownO1 (training conditions)Town02 (test conditions)
Success↑Ran Red Light↓Wrong lane↓Off road↓Success↑Ran Red Light↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)82%41%
CAL*(Sauer et al.,2018)83%64%
MT* (Li et al., 2018)81%53%
CIL*(Codevilla et al., 2018)83%83%38%82%t
CILRS*(Codevilla et al., 2019)92%27%66%64%
CILS,Waypoint Input†17%0.0%0.20%12.1%36%0.0%1.11%11.70%
MBRL,Waypoint Input64%72%11.1%2.96%48%54%20.6%13.3 %
Ourmethod,RegionFinal-St.IndicatorS.t96%±1.90.89%±0.40.05%±0.010.11%±0.0188%±3.32.60%±0.040.49%±0.322.60%±1.1
Ourmethod,RegionFinal-St.Inictor93%±2.218%±0.50.023%±0.0020.195%±0.00481%±2.254.7%±1.50.12%±0.011.32%±0.69
Ourmethod,LineegmentFinal-St.Indicatort91%±1.132%±1.30.055%±0.0020.013%±0.00188%±3.335.2%±2.40.52%±0.030.18%±0.02
Ourmethod,Final-StateIndicatort92%26%0.05%0.012%84%35%0.13%0.38%
Ourmethod,Gussianinal-t.92% 100%6.3% 1.7%0.04%0.005%100%12%0.11%0.04%
Our method, Gaussian Final-St.Mix.S.t0.03%0.005%92%0.0%0.05%0.15%
Town01 (training conditions)Town02 (test conditions)
Static Nav. MethodSuccess↑Ran RedLight↓Wrong lane↓Off road↓Success↑Ran RedLight↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)93%68%
CAL*(Sauer et al.,2018)92%68%
MT*(Li et al.,2018)81%78%
CIL*(Codevilla et al., 2018)86%83%44%82%
CILRS*(Codevilla et al., 2019)95%27%90%64%
CILS,Waypoint Inputt28%0.0%0.38%10.23%36%0.0%1.69%16.82%
MBRL,Waypoint Input†96%78%14.3%1.94%96%73%19.6 %0.75%
Ourmethod,Final-StateIndicatort100%48%0.05%0.002%100%52%0.10%0.13%
Our method,GaussianFinal-St. Mixturet96%0.83%0.01%0.08%96%0.0%0.03%0.14%
Ourmethod,GaussianFinal-St.ix..t96%0.0%0.04%0.07%92%0.0%0.18%0.27%
", + "type": "table", + "image_path": "92a0eaf04eb0deca39199213c4f7b9dbf57d6286ea9c0aad0ee48d15c7e5ee1c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 107, + 155, + 506, + 219.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 219.0, + 506, + 283.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 107, + 283.0, + 506, + 347.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "image", + "bbox": [ + 108, + 359, + 298, + 460 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 359, + 298, + 460 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 359, + 298, + 460 + ], + "spans": [ + { + "bbox": [ + 108, + 359, + 298, + 460 + ], + "score": 0.971, + "type": "image", + "image_path": "d0e5003b39ffd8af354765f4a41ccb338bb60327e0b2d15098d188b19a79d9a0.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 108, + 359, + 298, + 373.42857142857144 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 108, + 373.42857142857144, + 298, + 387.8571428571429 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 108, + 387.8571428571429, + 298, + 402.28571428571433 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 108, + 402.28571428571433, + 298, + 416.7142857142858 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 108, + 416.7142857142858, + 298, + 431.1428571428572 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 108, + 431.1428571428572, + 298, + 445.57142857142867 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 445.57142857142867, + 298, + 460.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 469, + 301, + 514 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 469, + 302, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 302, + 482 + ], + "score": 1.0, + "content": "Figure 6: Planning with the Region Final State", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 480, + 302, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 302, + 493 + ], + "score": 1.0, + "content": "Indicator yields plans that end inside the region.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 491, + 302, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 302, + 504 + ], + "score": 1.0, + "content": "The orange polygon indicates the region. The red", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 236, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 236, + 515 + ], + "score": 1.0, + "content": "circles indicate the chosen plan.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.0 + } + ], + "index": 20.5 + }, + { + "type": "image", + "bbox": [ + 313, + 359, + 504, + 460 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 313, + 359, + 504, + 460 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 313, + 359, + 504, + 460 + ], + "spans": [ + { + "bbox": [ + 313, + 359, + 504, + 460 + ], + "score": 0.965, + "type": "image", + "image_path": "58f2baf54f05b70cebe1496658bda359bdc94de6ab7f7752eca9ec9d49fdd210.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 313, + 359, + 504, + 373.42857142857144 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 313, + 373.42857142857144, + 504, + 387.8571428571429 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 313, + 387.8571428571429, + 504, + 402.28571428571433 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 313, + 402.28571428571433, + 504, + 416.7142857142858 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 313, + 416.7142857142858, + 504, + 431.1428571428572 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 313, + 431.1428571428572, + 504, + 445.57142857142867 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 313, + 445.57142857142867, + 504, + 460.0000000000001 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 309, + 470, + 505, + 514 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 309, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 309, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "Figure 7: Even with a wider goal region than", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 309, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 309, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Fig. 6, the vehicle remains in its lane. Despite", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 309, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 309, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "their coarseness, these wide goal regions still", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 309, + 502, + 467, + 514 + ], + "spans": [ + { + "bbox": [ + 309, + 502, + 467, + 514 + ], + "score": 1.0, + "content": "provide useful guidance to the vehicle.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + } + ], + "index": 21.75 + }, + { + "type": "title", + "bbox": [ + 107, + 545, + 348, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 349, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 349, + 558 + ], + "score": 1.0, + "content": "4.1 ROBUSTNESS TO ERRORS IN GOAL-SPECIFICATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 108, + 566, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "Towards questions (3) (flexibility) and (4) (noise-robustness), we analyze the performance of our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "method when the path planner is heavily degraded, to understand its stability and reliability. We use", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 588, + 307, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 307, + 600 + ], + "score": 1.0, + "content": "the Gaussian Final-State Mixture goal likelihood.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "Navigating with high-variance waypoints. As a test of our model’s capability to stay in the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "distribution of demonstrated behavior, we designed a “decoy waypoints” experiment, in which", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "half of the waypoints are highly perturbed versions of the other half, serving as distractions for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "score": 1.0, + "content": "our Gaussian Final-State Mixture imitative planner. We observed surprising robustness to decoy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "waypoints. Examples of this robustness are shown in Fig. 10. In Table 4, we report the success", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 504, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 393, + 672 + ], + "score": 1.0, + "content": "rate and the mean number of planning rounds for failed episodes in the", + "type": "text" + }, + { + "bbox": [ + 394, + 660, + 408, + 670 + ], + "score": 0.78, + "content": "^ { 6 6 } \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 660, + 504, + 672 + ], + "score": 1.0, + "content": "distractors” row. These", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "score": 1.0, + "content": "numbers indicate our method can execute dozens of planning rounds without decoy waypoints", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "causing a catastrophic failure, and often it can execute the hundreds necessary to achieve the goal.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 692, + 219, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 219, + 705 + ], + "score": 1.0, + "content": "See Appendix E for details.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Navigating with waypoints on the wrong side of the road. We also designed an experiment to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "test our method under systemic bias in the route planner. Our method is provided waypoints on the", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44.5 + } + ], + "page_idx": 7, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 750, + 309, + 761 + ], + "score": 1.0, + "content": "8", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 155, + 506, + 347 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 80, + 505, + 147 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "spans": [ + { + "bbox": [ + 105, + 79, + 506, + 93 + ], + "score": 1.0, + "content": "Table 3: We evaluate different autonomous driving methods on CARLA’s Dynamic Navigation task.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 104, + 88, + 506, + 105 + ], + "spans": [ + { + "bbox": [ + 104, + 88, + 506, + 105 + ], + "score": 1.0, + "content": "A “†” indicates methods we have implemented (each observes the same waypoints and LIDAR as", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 104, + 100, + 507, + 115 + ], + "spans": [ + { + "bbox": [ + 104, + 100, + 507, + 115 + ], + "score": 1.0, + "content": "input). A “∗” indicates results reported in Codevilla et al. (2019). A “–” indicates an unreported", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 104, + 111, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 104, + 111, + 506, + 126 + ], + "score": 1.0, + "content": "statistic. A “‡” indicates an optimistic estimate in transferring a result from the static setting to the", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 123, + 506, + 136 + ], + "spans": [ + { + "bbox": [ + 106, + 123, + 506, + 136 + ], + "score": 1.0, + "content": "dynamic setting. “S.” denotes a “smart” waypointer reactive to light state, detailed in Appendix B.2.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 135, + 504, + 148 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 344, + 148 + ], + "score": 1.0, + "content": "Results accompanied by standard errors are computed with", + "type": "text" + }, + { + "bbox": [ + 345, + 136, + 373, + 145 + ], + "score": 0.9, + "content": "N = 3", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 135, + 504, + 148 + ], + "score": 1.0, + "content": "trials across environment seeds.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "table_body", + "bbox": [ + 107, + 155, + 506, + 347 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 155, + 506, + 347 + ], + "spans": [ + { + "bbox": [ + 107, + 155, + 506, + 347 + ], + "score": 0.95, + "html": "
Dynamic Nav. MethodTownO1 (training conditions)Town02 (test conditions)
Success↑Ran Red Light↓Wrong lane↓Off road↓Success↑Ran Red Light↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)82%41%
CAL*(Sauer et al.,2018)83%64%
MT* (Li et al., 2018)81%53%
CIL*(Codevilla et al., 2018)83%83%38%82%t
CILRS*(Codevilla et al., 2019)92%27%66%64%
CILS,Waypoint Input†17%0.0%0.20%12.1%36%0.0%1.11%11.70%
MBRL,Waypoint Input64%72%11.1%2.96%48%54%20.6%13.3 %
Ourmethod,RegionFinal-St.IndicatorS.t96%±1.90.89%±0.40.05%±0.010.11%±0.0188%±3.32.60%±0.040.49%±0.322.60%±1.1
Ourmethod,RegionFinal-St.Inictor93%±2.218%±0.50.023%±0.0020.195%±0.00481%±2.254.7%±1.50.12%±0.011.32%±0.69
Ourmethod,LineegmentFinal-St.Indicatort91%±1.132%±1.30.055%±0.0020.013%±0.00188%±3.335.2%±2.40.52%±0.030.18%±0.02
Ourmethod,Final-StateIndicatort92%26%0.05%0.012%84%35%0.13%0.38%
Ourmethod,Gussianinal-t.92% 100%6.3% 1.7%0.04%0.005%100%12%0.11%0.04%
Our method, Gaussian Final-St.Mix.S.t0.03%0.005%92%0.0%0.05%0.15%
Town01 (training conditions)Town02 (test conditions)
Static Nav. MethodSuccess↑Ran RedLight↓Wrong lane↓Off road↓Success↑Ran RedLight↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)93%68%
CAL*(Sauer et al.,2018)92%68%
MT*(Li et al.,2018)81%78%
CIL*(Codevilla et al., 2018)86%83%44%82%
CILRS*(Codevilla et al., 2019)95%27%90%64%
CILS,Waypoint Inputt28%0.0%0.38%10.23%36%0.0%1.69%16.82%
MBRL,Waypoint Input†96%78%14.3%1.94%96%73%19.6 %0.75%
Ourmethod,Final-StateIndicatort100%48%0.05%0.002%100%52%0.10%0.13%
Our method,GaussianFinal-St. Mixturet96%0.83%0.01%0.08%96%0.0%0.03%0.14%
Ourmethod,GaussianFinal-St.ix..t96%0.0%0.04%0.07%92%0.0%0.18%0.27%
", + "type": "table", + "image_path": "92a0eaf04eb0deca39199213c4f7b9dbf57d6286ea9c0aad0ee48d15c7e5ee1c.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 107, + 155, + 506, + 219.0 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 219.0, + 506, + 283.0 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 107, + 283.0, + 506, + 347.0 + ], + "spans": [], + "index": 8 + } + ] + } + ], + "index": 4.75 + }, + { + "type": "image", + "bbox": [ + 108, + 359, + 298, + 460 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 359, + 298, + 460 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 359, + 298, + 460 + ], + "spans": [ + { + "bbox": [ + 108, + 359, + 298, + 460 + ], + "score": 0.971, + "type": "image", + "image_path": "d0e5003b39ffd8af354765f4a41ccb338bb60327e0b2d15098d188b19a79d9a0.jpg" + } + ] + } + ], + "index": 15, + "virtual_lines": [ + { + "bbox": [ + 108, + 359, + 298, + 373.42857142857144 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 108, + 373.42857142857144, + 298, + 387.8571428571429 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 108, + 387.8571428571429, + 298, + 402.28571428571433 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 108, + 402.28571428571433, + 298, + 416.7142857142858 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 108, + 416.7142857142858, + 298, + 431.1428571428572 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 108, + 431.1428571428572, + 298, + 445.57142857142867 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 445.57142857142867, + 298, + 460.0000000000001 + ], + "spans": [], + "index": 21 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 469, + 301, + 514 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 469, + 302, + 482 + ], + "spans": [ + { + "bbox": [ + 106, + 469, + 302, + 482 + ], + "score": 1.0, + "content": "Figure 6: Planning with the Region Final State", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 480, + 302, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 480, + 302, + 493 + ], + "score": 1.0, + "content": "Indicator yields plans that end inside the region.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 491, + 302, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 491, + 302, + 504 + ], + "score": 1.0, + "content": "The orange polygon indicates the region. The red", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 501, + 236, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 236, + 515 + ], + "score": 1.0, + "content": "circles indicate the chosen plan.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.0 + } + ], + "index": 20.5 + }, + { + "type": "image", + "bbox": [ + 313, + 359, + 504, + 460 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 313, + 359, + 504, + 460 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 313, + 359, + 504, + 460 + ], + "spans": [ + { + "bbox": [ + 313, + 359, + 504, + 460 + ], + "score": 0.965, + "type": "image", + "image_path": "58f2baf54f05b70cebe1496658bda359bdc94de6ab7f7752eca9ec9d49fdd210.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 313, + 359, + 504, + 373.42857142857144 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 313, + 373.42857142857144, + 504, + 387.8571428571429 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 313, + 387.8571428571429, + 504, + 402.28571428571433 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 313, + 402.28571428571433, + 504, + 416.7142857142858 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 313, + 416.7142857142858, + 504, + 431.1428571428572 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 313, + 431.1428571428572, + 504, + 445.57142857142867 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 313, + 445.57142857142867, + 504, + 460.0000000000001 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 309, + 470, + 505, + 514 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 309, + 469, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 309, + 469, + 505, + 481 + ], + "score": 1.0, + "content": "Figure 7: Even with a wider goal region than", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 309, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 309, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Fig. 6, the vehicle remains in its lane. Despite", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 309, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 309, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "their coarseness, these wide goal regions still", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 309, + 502, + 467, + 514 + ], + "spans": [ + { + "bbox": [ + 309, + 502, + 467, + 514 + ], + "score": 1.0, + "content": "provide useful guidance to the vehicle.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 27.5 + } + ], + "index": 21.75 + }, + { + "type": "title", + "bbox": [ + 107, + 545, + 348, + 556 + ], + "lines": [ + { + "bbox": [ + 105, + 545, + 349, + 558 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 349, + 558 + ], + "score": 1.0, + "content": "4.1 ROBUSTNESS TO ERRORS IN GOAL-SPECIFICATION", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 108, + 566, + 505, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 506, + 579 + ], + "score": 1.0, + "content": "Towards questions (3) (flexibility) and (4) (noise-robustness), we analyze the performance of our", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "method when the path planner is heavily degraded, to understand its stability and reliability. We use", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 588, + 307, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 307, + 600 + ], + "score": 1.0, + "content": "the Gaussian Final-State Mixture goal likelihood.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 105, + 565, + 506, + 600 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 605, + 505, + 704 + ], + "lines": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "spans": [ + { + "bbox": [ + 105, + 604, + 505, + 618 + ], + "score": 1.0, + "content": "Navigating with high-variance waypoints. As a test of our model’s capability to stay in the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 505, + 629 + ], + "score": 1.0, + "content": "distribution of demonstrated behavior, we designed a “decoy waypoints” experiment, in which", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 506, + 640 + ], + "score": 1.0, + "content": "half of the waypoints are highly perturbed versions of the other half, serving as distractions for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 105, + 636, + 506, + 652 + ], + "score": 1.0, + "content": "our Gaussian Final-State Mixture imitative planner. We observed surprising robustness to decoy", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 649, + 506, + 662 + ], + "score": 1.0, + "content": "waypoints. Examples of this robustness are shown in Fig. 10. In Table 4, we report the success", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 660, + 504, + 672 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 393, + 672 + ], + "score": 1.0, + "content": "rate and the mean number of planning rounds for failed episodes in the", + "type": "text" + }, + { + "bbox": [ + 394, + 660, + 408, + 670 + ], + "score": 0.78, + "content": "^ { 6 6 } \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 660, + 504, + 672 + ], + "score": 1.0, + "content": "distractors” row. These", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 669, + 506, + 684 + ], + "score": 1.0, + "content": "numbers indicate our method can execute dozens of planning rounds without decoy waypoints", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 681, + 506, + 694 + ], + "score": 1.0, + "content": "causing a catastrophic failure, and often it can execute the hundreds necessary to achieve the goal.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 692, + 219, + 705 + ], + "spans": [ + { + "bbox": [ + 105, + 692, + 219, + 705 + ], + "score": 1.0, + "content": "See Appendix E for details.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 604, + 506, + 705 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 709, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Navigating with waypoints on the wrong side of the road. We also designed an experiment to", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "test our method under systemic bias in the route planner. Our method is provided waypoints on the", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "wrong side of the road (in CARLA, the left side), and tasked with following the directions of these", + "type": "text", + "cross_page": true + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "waypoints while staying on the correct side of the road (the right side). In order for the value of", + "type": "text", + "cross_page": true + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 133, + 424 + ], + "score": 0.92, + "content": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 134, + 412, + 388, + 425 + ], + "score": 1.0, + "content": "to outweigh the influence of these waypoints, we increased the", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 389, + 414, + 394, + 422 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 395, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "hyperparameter. We found", + "type": "text", + "cross_page": true + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "our method to still be very effective at navigating, and report results in Table 4. We also investigated", + "type": "text", + "cross_page": true + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 434, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 104, + 434, + 506, + 446 + ], + "score": 1.0, + "content": "providing very coarse 8-meter wide regions to the Region Final-State likelihood; these always include", + "type": "text", + "cross_page": true + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 444, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 104, + 444, + 506, + 458 + ], + "score": 1.0, + "content": "space in the wrong lane and off-road (Fig. 7 in Appendix ?? provides visualization). Nonetheless, on", + "type": "text", + "cross_page": true + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 388, + 468 + ], + "score": 1.0, + "content": "Town01 Dynamic, this approach still achieved an overall success rate of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 388, + 456, + 407, + 466 + ], + "score": 0.88, + "content": "4 8 \\%", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 408, + 456, + 505, + 468 + ], + "score": 1.0, + "content": ". Taken together towards", + "type": "text", + "cross_page": true + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 466, + 488, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 488, + 479 + ], + "score": 1.0, + "content": "question (4), our results indicate that our method is fairly robust to errors in goal-specification.", + "type": "text", + "cross_page": true + } + ], + "index": 40 + } + ], + "index": 44.5, + "bbox_fs": [ + 105, + 709, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 107, + 81, + 298, + 180 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 298, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 298, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 298, + 180 + ], + "score": 0.969, + "type": "image", + "image_path": "2138ef8e7bb5566ff77af505c28955e60ae36f8ca04afd3d1bd0a9e1d1ecdeb3.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 298, + 93.375 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 93.375, + 298, + 105.75 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 105.75, + 298, + 118.125 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 118.125, + 298, + 130.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 107, + 130.5, + 298, + 142.875 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 142.875, + 298, + 155.25 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 155.25, + 298, + 167.625 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 167.625, + 298, + 180.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 182, + 300, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 181, + 302, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 302, + 193 + ], + "score": 1.0, + "content": "Figure 8: Planning with the Final State Indicator", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 192, + 302, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 302, + 204 + ], + "score": 1.0, + "content": "yields plans that end at one of the provided loca-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 203, + 301, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 301, + 214 + ], + "score": 1.0, + "content": "tions. Orange diamonds indicate the locations in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 213, + 300, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 300, + 226 + ], + "score": 1.0, + "content": "the goal set. Red circles indicate the chosen plan.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 6.5 + }, + { + "type": "image", + "bbox": [ + 313, + 81, + 504, + 180 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 313, + 81, + 504, + 180 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 313, + 81, + 504, + 180 + ], + "spans": [ + { + "bbox": [ + 313, + 81, + 504, + 180 + ], + "score": 0.967, + "type": "image", + "image_path": "08f73d8ccefdf0796b7bf2e02b790e11057096defc95284b7ae07db44e75c5b3.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 313, + 81, + 504, + 93.375 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 313, + 93.375, + 504, + 105.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 313, + 105.75, + 504, + 118.125 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 313, + 118.125, + 504, + 130.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 313, + 130.5, + 504, + 142.875 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 313, + 142.875, + 504, + 155.25 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 313, + 155.25, + 504, + 167.625 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 313, + 167.625, + 504, + 180.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 310, + 182, + 505, + 225 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 309, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 309, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "Figure 9: Planning with the Line Segment Final", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 309, + 190, + 507, + 205 + ], + "spans": [ + { + "bbox": [ + 309, + 190, + 507, + 205 + ], + "score": 1.0, + "content": "State Indicator yields plans that end along a seg-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 309, + 203, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 309, + 203, + 506, + 215 + ], + "score": 1.0, + "content": "ment. Orange diamonds indicate line segment", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 310, + 214, + 502, + 227 + ], + "spans": [ + { + "bbox": [ + 310, + 214, + 502, + 227 + ], + "score": 1.0, + "content": "endpoints. Red circles indicate the chosen plan.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "index": 18.5 + }, + { + "type": "image", + "bbox": [ + 110, + 249, + 514, + 325 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 249, + 514, + 325 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 249, + 514, + 325 + ], + "spans": [ + { + "bbox": [ + 110, + 249, + 514, + 325 + ], + "score": 0.616, + "type": "image", + "image_path": "0d3a5bf828280148d3ce24b021aad8cb207c1501042928f484322246c7ba2609.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 110, + 249, + 514, + 274.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 110, + 274.3333333333333, + 514, + 299.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 110, + 299.66666666666663, + 514, + 324.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 333, + 421, + 366 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 332, + 423, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 423, + 344 + ], + "score": 1.0, + "content": "Figure 10: Tolerating bad goals. The planner prefers goals in the distribution of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 343, + 421, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 408, + 356 + ], + "score": 1.0, + "content": "expert behavior (on the road at a reasonable distance). Left: Planning with", + "type": "text" + }, + { + "bbox": [ + 408, + 343, + 421, + 356 + ], + "score": 0.65, + "content": "^ 1 / 2", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 354, + 402, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 402, + 367 + ], + "score": 1.0, + "content": "decoy goals. Right: Planning with all goals on the wrong side of the road.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "image_caption", + "bbox": [ + 429, + 333, + 505, + 366 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 428, + 332, + 507, + 345 + ], + "spans": [ + { + "bbox": [ + 428, + 332, + 507, + 345 + ], + "score": 1.0, + "content": "Figure 11: Test-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 428, + 342, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 428, + 342, + 506, + 357 + ], + "score": 1.0, + "content": "time plans steering", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 428, + 354, + 498, + 367 + ], + "spans": [ + { + "bbox": [ + 428, + 354, + 498, + 367 + ], + "score": 1.0, + "content": "around potholes.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 505, + 478 + ], + "lines": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "spans": [ + { + "bbox": [ + 106, + 390, + 505, + 402 + ], + "score": 1.0, + "content": "wrong side of the road (in CARLA, the left side), and tasked with following the directions of these", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "spans": [ + { + "bbox": [ + 106, + 401, + 505, + 413 + ], + "score": 1.0, + "content": "waypoints while staying on the correct side of the road (the right side). In order for the value of", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 412, + 506, + 425 + ], + "spans": [ + { + "bbox": [ + 106, + 412, + 133, + 424 + ], + "score": 0.92, + "content": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )", + "type": "inline_equation" + }, + { + "bbox": [ + 134, + 412, + 388, + 425 + ], + "score": 1.0, + "content": "to outweigh the influence of these waypoints, we increased the", + "type": "text" + }, + { + "bbox": [ + 389, + 414, + 394, + 422 + ], + "score": 0.67, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 395, + 412, + 506, + 425 + ], + "score": 1.0, + "content": "hyperparameter. We found", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 423, + 505, + 435 + ], + "score": 1.0, + "content": "our method to still be very effective at navigating, and report results in Table 4. We also investigated", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 104, + 434, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 104, + 434, + 506, + 446 + ], + "score": 1.0, + "content": "providing very coarse 8-meter wide regions to the Region Final-State likelihood; these always include", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 444, + 506, + 458 + ], + "spans": [ + { + "bbox": [ + 104, + 444, + 506, + 458 + ], + "score": 1.0, + "content": "space in the wrong lane and off-road (Fig. 7 in Appendix ?? provides visualization). Nonetheless, on", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 456, + 388, + 468 + ], + "score": 1.0, + "content": "Town01 Dynamic, this approach still achieved an overall success rate of", + "type": "text" + }, + { + "bbox": [ + 388, + 456, + 407, + 466 + ], + "score": 0.88, + "content": "4 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 408, + 456, + 505, + 468 + ], + "score": 1.0, + "content": ". Taken together towards", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 466, + 488, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 466, + 488, + 479 + ], + "score": 1.0, + "content": "question (4), our results indicate that our method is fairly robust to errors in goal-specification.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 36.5 + }, + { + "type": "title", + "bbox": [ + 108, + 494, + 428, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 429, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 429, + 507 + ], + "score": 1.0, + "content": "4.2 PRODUCING UNOBSERVED BEHAVIORS TO AVOID NOVEL OBSTACLES", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "table", + "bbox": [ + 147, + 575, + 464, + 628 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 521, + 504, + 565 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "Table 4: Robustness to waypoint noise and test-time pothole adaptation. Our method is robust to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "waypoints on the wrong side of the road and fairly robust to decoy waypoints. Our method is flexible", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "enough to safely produce behavior not demonstrated (pothole avoidance) by incorporating a test-time", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 555, + 294, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 294, + 566 + ], + "score": 1.0, + "content": "cost. Ten episodes are collected in each Town.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + }, + { + "type": "table_body", + "bbox": [ + 147, + 575, + 464, + 628 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 575, + 464, + 628 + ], + "spans": [ + { + "bbox": [ + 147, + 575, + 464, + 628 + ], + "score": 0.977, + "html": "
Town01 (training conditions)Town02 (test conditions)
WaypointerExtra CostSuccessWrong lanePotholes hitSuccessWrong lanePotholes hit
Noiseless waypointer100%0.00%177/230100%0.41%82/154
Waypoints wrong lane100%0.34%170%3.16%
1/2 waypoints distracting70%150%1
Noiseless waypointerPothole90%1.53%10/23070%1.53%35/154
", + "type": "table", + "image_path": "cb0a2b06538473a27da19eb37aba9e5524a12cf75657cf0a3f5b71617141d66e.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 147, + 575, + 464, + 592.6666666666666 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 147, + 592.6666666666666, + 464, + 610.3333333333333 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 147, + 610.3333333333333, + 464, + 627.9999999999999 + ], + "spans": [], + "index": 48 + } + ] + } + ], + "index": 45.25 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "To further investigate our model’s flexibility to test-time objectives (question 3), we designed a", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 654, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 506, + 669 + ], + "score": 1.0, + "content": "pothole avoidance experiment. We simulated potholes in the environment by randomly inserting", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "them in the cost map near waypoints. We ran our method with a test-time-only cost map of the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "simulated potholes by combining goal likelihoods (F) and (G), and compared to our method that", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "did not incorporate the cost map (using (F) only, and thus had no incentive to avoid potholes). We", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "recorded the number of collisions with potholes. In Table 4, our method with cost incorporated", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "avoided most potholes while avoiding collisions with the environment. To do so, it drove closer to the", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "centerline, and occasionally entered the opposite lane. Our model internalized obstacle avoidance by", + "type": "text" + } + ], + "index": 56 + } + ], + "index": 52.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 2020", + "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": [ + 107, + 81, + 298, + 180 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 81, + 298, + 180 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 298, + 180 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 298, + 180 + ], + "score": 0.969, + "type": "image", + "image_path": "2138ef8e7bb5566ff77af505c28955e60ae36f8ca04afd3d1bd0a9e1d1ecdeb3.jpg" + } + ] + } + ], + "index": 3.5, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 298, + 93.375 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 93.375, + 298, + 105.75 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 105.75, + 298, + 118.125 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 107, + 118.125, + 298, + 130.5 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 107, + 130.5, + 298, + 142.875 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 142.875, + 298, + 155.25 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 155.25, + 298, + 167.625 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 107, + 167.625, + 298, + 180.0 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 182, + 300, + 225 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 181, + 302, + 193 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 302, + 193 + ], + "score": 1.0, + "content": "Figure 8: Planning with the Final State Indicator", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 192, + 302, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 302, + 204 + ], + "score": 1.0, + "content": "yields plans that end at one of the provided loca-", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 203, + 301, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 203, + 301, + 214 + ], + "score": 1.0, + "content": "tions. Orange diamonds indicate the locations in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 213, + 300, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 213, + 300, + 226 + ], + "score": 1.0, + "content": "the goal set. Red circles indicate the chosen plan.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 9.5 + } + ], + "index": 6.5 + }, + { + "type": "image", + "bbox": [ + 313, + 81, + 504, + 180 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 313, + 81, + 504, + 180 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 313, + 81, + 504, + 180 + ], + "spans": [ + { + "bbox": [ + 313, + 81, + 504, + 180 + ], + "score": 0.967, + "type": "image", + "image_path": "08f73d8ccefdf0796b7bf2e02b790e11057096defc95284b7ae07db44e75c5b3.jpg" + } + ] + } + ], + "index": 15.5, + "virtual_lines": [ + { + "bbox": [ + 313, + 81, + 504, + 93.375 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 313, + 93.375, + 504, + 105.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 313, + 105.75, + 504, + 118.125 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 313, + 118.125, + 504, + 130.5 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 313, + 130.5, + 504, + 142.875 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 313, + 142.875, + 504, + 155.25 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 313, + 155.25, + 504, + 167.625 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 313, + 167.625, + 504, + 180.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 310, + 182, + 505, + 225 + ], + "group_id": 2, + "lines": [ + { + "bbox": [ + 309, + 181, + 505, + 193 + ], + "spans": [ + { + "bbox": [ + 309, + 181, + 505, + 193 + ], + "score": 1.0, + "content": "Figure 9: Planning with the Line Segment Final", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 309, + 190, + 507, + 205 + ], + "spans": [ + { + "bbox": [ + 309, + 190, + 507, + 205 + ], + "score": 1.0, + "content": "State Indicator yields plans that end along a seg-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 309, + 203, + 506, + 215 + ], + "spans": [ + { + "bbox": [ + 309, + 203, + 506, + 215 + ], + "score": 1.0, + "content": "ment. Orange diamonds indicate line segment", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 310, + 214, + 502, + 227 + ], + "spans": [ + { + "bbox": [ + 310, + 214, + 502, + 227 + ], + "score": 1.0, + "content": "endpoints. Red circles indicate the chosen plan.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 21.5 + } + ], + "index": 18.5 + }, + { + "type": "image", + "bbox": [ + 110, + 249, + 514, + 325 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 110, + 249, + 514, + 325 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 110, + 249, + 514, + 325 + ], + "spans": [ + { + "bbox": [ + 110, + 249, + 514, + 325 + ], + "score": 0.616, + "type": "image", + "image_path": "0d3a5bf828280148d3ce24b021aad8cb207c1501042928f484322246c7ba2609.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 110, + 249, + 514, + 274.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 110, + 274.3333333333333, + 514, + 299.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 110, + 299.66666666666663, + 514, + 324.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 333, + 421, + 366 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 332, + 423, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 423, + 344 + ], + "score": 1.0, + "content": "Figure 10: Tolerating bad goals. The planner prefers goals in the distribution of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 343, + 421, + 356 + ], + "spans": [ + { + "bbox": [ + 105, + 343, + 408, + 356 + ], + "score": 1.0, + "content": "expert behavior (on the road at a reasonable distance). Left: Planning with", + "type": "text" + }, + { + "bbox": [ + 408, + 343, + 421, + 356 + ], + "score": 0.65, + "content": "^ 1 / 2", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 354, + 402, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 354, + 402, + 367 + ], + "score": 1.0, + "content": "decoy goals. Right: Planning with all goals on the wrong side of the road.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "image_caption", + "bbox": [ + 429, + 333, + 505, + 366 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 428, + 332, + 507, + 345 + ], + "spans": [ + { + "bbox": [ + 428, + 332, + 507, + 345 + ], + "score": 1.0, + "content": "Figure 11: Test-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 428, + 342, + 506, + 357 + ], + "spans": [ + { + "bbox": [ + 428, + 342, + 506, + 357 + ], + "score": 1.0, + "content": "time plans steering", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 428, + 354, + 498, + 367 + ], + "spans": [ + { + "bbox": [ + 428, + 354, + 498, + 367 + ], + "score": 1.0, + "content": "around potholes.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 106, + 389, + 505, + 478 + ], + "lines": [], + "index": 36.5, + "bbox_fs": [ + 104, + 390, + 506, + 479 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 494, + 428, + 506 + ], + "lines": [ + { + "bbox": [ + 105, + 493, + 429, + 507 + ], + "spans": [ + { + "bbox": [ + 105, + 493, + 429, + 507 + ], + "score": 1.0, + "content": "4.2 PRODUCING UNOBSERVED BEHAVIORS TO AVOID NOVEL OBSTACLES", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "table", + "bbox": [ + 147, + 575, + 464, + 628 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 521, + 504, + 565 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 521, + 505, + 534 + ], + "score": 1.0, + "content": "Table 4: Robustness to waypoint noise and test-time pothole adaptation. Our method is robust to", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 544 + ], + "score": 1.0, + "content": "waypoints on the wrong side of the road and fairly robust to decoy waypoints. Our method is flexible", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "spans": [ + { + "bbox": [ + 106, + 543, + 505, + 556 + ], + "score": 1.0, + "content": "enough to safely produce behavior not demonstrated (pothole avoidance) by incorporating a test-time", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 555, + 294, + 566 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 294, + 566 + ], + "score": 1.0, + "content": "cost. Ten episodes are collected in each Town.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 43.5 + }, + { + "type": "table_body", + "bbox": [ + 147, + 575, + 464, + 628 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 147, + 575, + 464, + 628 + ], + "spans": [ + { + "bbox": [ + 147, + 575, + 464, + 628 + ], + "score": 0.977, + "html": "
Town01 (training conditions)Town02 (test conditions)
WaypointerExtra CostSuccessWrong lanePotholes hitSuccessWrong lanePotholes hit
Noiseless waypointer100%0.00%177/230100%0.41%82/154
Waypoints wrong lane100%0.34%170%3.16%
1/2 waypoints distracting70%150%1
Noiseless waypointerPothole90%1.53%10/23070%1.53%35/154
", + "type": "table", + "image_path": "cb0a2b06538473a27da19eb37aba9e5524a12cf75657cf0a3f5b71617141d66e.jpg" + } + ] + } + ], + "index": 47, + "virtual_lines": [ + { + "bbox": [ + 147, + 575, + 464, + 592.6666666666666 + ], + "spans": [], + "index": 46 + }, + { + "bbox": [ + 147, + 592.6666666666666, + 464, + 610.3333333333333 + ], + "spans": [], + "index": 47 + }, + { + "bbox": [ + 147, + 610.3333333333333, + 464, + 627.9999999999999 + ], + "spans": [], + "index": 48 + } + ] + } + ], + "index": 45.25 + }, + { + "type": "text", + "bbox": [ + 106, + 643, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "spans": [ + { + "bbox": [ + 106, + 644, + 505, + 656 + ], + "score": 1.0, + "content": "To further investigate our model’s flexibility to test-time objectives (question 3), we designed a", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 104, + 654, + 506, + 669 + ], + "spans": [ + { + "bbox": [ + 104, + 654, + 506, + 669 + ], + "score": 1.0, + "content": "pothole avoidance experiment. We simulated potholes in the environment by randomly inserting", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 666, + 505, + 678 + ], + "score": 1.0, + "content": "them in the cost map near waypoints. We ran our method with a test-time-only cost map of the", + "type": "text" + } + ], + "index": 51 + }, + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 677, + 506, + 689 + ], + "score": 1.0, + "content": "simulated potholes by combining goal likelihoods (F) and (G), and compared to our method that", + "type": "text" + } + ], + "index": 52 + }, + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 688, + 506, + 700 + ], + "score": 1.0, + "content": "did not incorporate the cost map (using (F) only, and thus had no incentive to avoid potholes). We", + "type": "text" + } + ], + "index": 53 + }, + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "recorded the number of collisions with potholes. In Table 4, our method with cost incorporated", + "type": "text" + } + ], + "index": 54 + }, + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "avoided most potholes while avoiding collisions with the environment. To do so, it drove closer to the", + "type": "text" + } + ], + "index": 55 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "centerline, and occasionally entered the opposite lane. Our model internalized obstacle avoidance by", + "type": "text" + } + ], + "index": 56 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "staying on the road and demonstrated its flexibility to obstacles not observed during training. Fig. 11", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 463, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 463, + 106 + ], + "score": 1.0, + "content": "shows an example of this behavior. See Appendix F for details of the pothole generation.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 52.5, + "bbox_fs": [ + 104, + 644, + 506, + 734 + ] + } + ] + }, + { + "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": "staying on the road and demonstrated its flexibility to obstacles not observed during training. Fig. 11", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 463, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 463, + 106 + ], + "score": 1.0, + "content": "shows an example of this behavior. See Appendix F for details of the pothole generation.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 107, + 121, + 190, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 192, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 192, + 136 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 147, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "We proposed “Imitative Models” to combine the benefits of IL and MBRL. Imitative Models are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "probabilistic predictive models able to plan interpretable expert-like trajectories to achieve new goals.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "Inference with an Imitative Model resembles trajectory optimization in MBRL, enabling it to both", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "incorporate new goals and plan to them at test-time, which IL cannot. Learning an Imitative Model", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 203 + ], + "score": 1.0, + "content": "resembles offline IL, enabling it to circumvent the difficult reward-engineering and costly online", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "data collection necessities of MBRL. We derived families of flexible goal objectives and showed", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "our model can successfully incorporate them without additional training. Our method substantially", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "score": 1.0, + "content": "outperformed six IL approaches and an MBRL approach in a dynamic simulated autonomous driving", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "task. We showed our approach is robust to poorly specified goals, such as goals on the wrong side", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "of the road. We believe our method is broadly applicable in settings where expert demonstrations", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "are available, flexibility to new situations is demanded, and safety is paramount. Future work could", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "investigate methods to handle both observation noise and out-of-distribution observations to enhance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "score": 1.0, + "content": "the applicability to robust real systems — we expand on this issue in Appendix E. Finally, to facilitate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "more general planning, future work could extend our approach to explicitly reason about all agents in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 421, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 421, + 313 + ], + "score": 1.0, + "content": "the environment in order to inform a closed-loop plan for the controlled agent.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 329, + 224, + 340 + ], + "lines": [ + { + "bbox": [ + 107, + 328, + 226, + 343 + ], + "spans": [ + { + "bbox": [ + 107, + 328, + 226, + 343 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 502, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 504, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 504, + 367 + ], + "score": 1.0, + "content": "This research was supported by ONR N000141712623, DARPA Assured Autonomy, ARL DCIST", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 364, + 347, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 347, + 378 + ], + "score": 1.0, + "content": "CRA W911NF-17-2-0181, Google, NVIDIA, and Amazon.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "title", + "bbox": [ + 108, + 393, + 175, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 176, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 176, + 406 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 424 + ], + "score": 1.0, + "content": "Brandon Amos, Ivan Dario Jimenez Rodriguez, Jacob Sacks, Byron Boots, and Zico Kolter. Differ-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "entiable MPC for end-to-end planning and control. In Neural Information Processing Systems", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 433, + 187, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 187, + 446 + ], + "score": 1.0, + "content": "(NeurIPS), 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 504, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "score": 1.0, + "content": "Felipe Codevilla, Matthias Miiller, Antonio López, Vladlen Koltun, and Alexey Dosovitskiy. End-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 116, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "to-end driving via conditional imitation learning. In International Conference on Robotics and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 475, + 285, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 285, + 487 + ], + "score": 1.0, + "content": "Automation (ICRA), pp. 1–9. IEEE, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 504, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "Felipe Codevilla, Eder Santana, Antonio M López, and Adrien Gaidon. Exploring the limitations of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 506, + 448, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 448, + 519 + ], + "score": 1.0, + "content": "behavior cloning for autonomous driving. arXiv preprint arXiv:1904.08980, 2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 537, + 493, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 537, + 493, + 549 + ], + "score": 1.0, + "content": "policy search. In International Conference on Machine Learning (ICML), pp. 465–472, 2011.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy and Vladlen Koltun. Learning to act by predicting the future. arXiv preprint", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 567, + 219, + 578 + ], + "spans": [ + { + "bbox": [ + 116, + 567, + 219, + 578 + ], + "score": 1.0, + "content": "arXiv:1611.01779, 2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy, German Ros, Felipe Codevilla, Antonio Lopez, and Vladlen Koltun. CARLA:", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 597, + 488, + 611 + ], + "spans": [ + { + "bbox": [ + 115, + 597, + 488, + 611 + ], + "score": 1.0, + "content": "An open urban driving simulator. In Conference on Robot Learning (CoRL), pp. 1–16, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 105, + 617, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 507, + 631 + ], + "score": 1.0, + "content": "Leonid Kuvayev and Richard S. Sutton. Model-based reinforcement learning with an approximate,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 628, + 474, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 474, + 641 + ], + "score": 1.0, + "content": "learned model. In Yale Workshop on Adaptive and Learning Systems, pp. 101–105, 1996.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "Balaji Lakshminarayanan, Alexander Pritzel, and Charles Blundell. Simple and scalable predictive", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 659, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 507, + 672 + ], + "score": 1.0, + "content": "uncertainty estimation using deep ensembles. In Neural Information Processing Systems (NeurIPS),", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 670, + 207, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 670, + 207, + 681 + ], + "score": 1.0, + "content": "pp. 6402–6413, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 106, + 689, + 414, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 413, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 413, + 703 + ], + "score": 1.0, + "content": "Steven M LaValle. Planning algorithms. Cambridge University Press, 2006.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 721, + 279, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 279, + 732 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.00909, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 293, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 107, + 121, + 190, + 134 + ], + "lines": [ + { + "bbox": [ + 105, + 120, + 192, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 192, + 136 + ], + "score": 1.0, + "content": "5 DISCUSSION", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 147, + 505, + 311 + ], + "lines": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "spans": [ + { + "bbox": [ + 106, + 146, + 505, + 159 + ], + "score": 1.0, + "content": "We proposed “Imitative Models” to combine the benefits of IL and MBRL. Imitative Models are", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 506, + 171 + ], + "score": 1.0, + "content": "probabilistic predictive models able to plan interpretable expert-like trajectories to achieve new goals.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 106, + 168, + 505, + 181 + ], + "score": 1.0, + "content": "Inference with an Imitative Model resembles trajectory optimization in MBRL, enabling it to both", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 180, + 505, + 192 + ], + "score": 1.0, + "content": "incorporate new goals and plan to them at test-time, which IL cannot. Learning an Imitative Model", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 191, + 505, + 203 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 505, + 203 + ], + "score": 1.0, + "content": "resembles offline IL, enabling it to circumvent the difficult reward-engineering and costly online", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "spans": [ + { + "bbox": [ + 105, + 202, + 506, + 214 + ], + "score": 1.0, + "content": "data collection necessities of MBRL. We derived families of flexible goal objectives and showed", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "spans": [ + { + "bbox": [ + 105, + 212, + 505, + 226 + ], + "score": 1.0, + "content": "our model can successfully incorporate them without additional training. Our method substantially", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 506, + 237 + ], + "score": 1.0, + "content": "outperformed six IL approaches and an MBRL approach in a dynamic simulated autonomous driving", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 247 + ], + "score": 1.0, + "content": "task. We showed our approach is robust to poorly specified goals, such as goals on the wrong side", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 258 + ], + "score": 1.0, + "content": "of the road. We believe our method is broadly applicable in settings where expert demonstrations", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 268 + ], + "score": 1.0, + "content": "are available, flexibility to new situations is demanded, and safety is paramount. Future work could", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 106, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "investigate methods to handle both observation noise and out-of-distribution observations to enhance", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "spans": [ + { + "bbox": [ + 105, + 278, + 505, + 291 + ], + "score": 1.0, + "content": "the applicability to robust real systems — we expand on this issue in Appendix E. Finally, to facilitate", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "more general planning, future work could extend our approach to explicitly reason about all agents in", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 421, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 421, + 313 + ], + "score": 1.0, + "content": "the environment in order to inform a closed-loop plan for the controlled agent.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 146, + 506, + 313 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 329, + 224, + 340 + ], + "lines": [ + { + "bbox": [ + 107, + 328, + 226, + 343 + ], + "spans": [ + { + "bbox": [ + 107, + 328, + 226, + 343 + ], + "score": 1.0, + "content": "ACKNOWLEDGEMENTS", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 353, + 502, + 375 + ], + "lines": [ + { + "bbox": [ + 105, + 353, + 504, + 367 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 504, + 367 + ], + "score": 1.0, + "content": "This research was supported by ONR N000141712623, DARPA Assured Autonomy, ARL DCIST", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 364, + 347, + 378 + ], + "spans": [ + { + "bbox": [ + 105, + 364, + 347, + 378 + ], + "score": 1.0, + "content": "CRA W911NF-17-2-0181, Google, NVIDIA, and Amazon.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 353, + 504, + 378 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 393, + 175, + 404 + ], + "lines": [ + { + "bbox": [ + 106, + 393, + 176, + 406 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 176, + 406 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 411, + 505, + 444 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 506, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 506, + 424 + ], + "score": 1.0, + "content": "Brandon Amos, Ivan Dario Jimenez Rodriguez, Jacob Sacks, Byron Boots, and Zico Kolter. Differ-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 422, + 505, + 435 + ], + "spans": [ + { + "bbox": [ + 115, + 422, + 505, + 435 + ], + "score": 1.0, + "content": "entiable MPC for end-to-end planning and control. In Neural Information Processing Systems", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 115, + 433, + 187, + 446 + ], + "spans": [ + { + "bbox": [ + 115, + 433, + 187, + 446 + ], + "score": 1.0, + "content": "(NeurIPS), 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 411, + 506, + 446 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 452, + 504, + 487 + ], + "lines": [ + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 452, + 506, + 466 + ], + "score": 1.0, + "content": "Felipe Codevilla, Matthias Miiller, Antonio López, Vladlen Koltun, and Alexey Dosovitskiy. End-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 116, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "to-end driving via conditional imitation learning. In International Conference on Robotics and", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 475, + 285, + 487 + ], + "spans": [ + { + "bbox": [ + 115, + 475, + 285, + 487 + ], + "score": 1.0, + "content": "Automation (ICRA), pp. 1–9. IEEE, 2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 452, + 506, + 487 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 495, + 504, + 518 + ], + "lines": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "Felipe Codevilla, Eder Santana, Antonio M López, and Adrien Gaidon. Exploring the limitations of", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 506, + 448, + 519 + ], + "spans": [ + { + "bbox": [ + 115, + 506, + 448, + 519 + ], + "score": 1.0, + "content": "behavior cloning for autonomous driving. arXiv preprint arXiv:1904.08980, 2019.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 106, + 495, + 505, + 519 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 525, + 505, + 548 + ], + "lines": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "spans": [ + { + "bbox": [ + 105, + 524, + 505, + 538 + ], + "score": 1.0, + "content": "Marc Deisenroth and Carl E Rasmussen. PILCO: A model-based and data-efficient approach to", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 537, + 493, + 549 + ], + "spans": [ + { + "bbox": [ + 115, + 537, + 493, + 549 + ], + "score": 1.0, + "content": "policy search. In International Conference on Machine Learning (ICML), pp. 465–472, 2011.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 524, + 505, + 549 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 556, + 504, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "spans": [ + { + "bbox": [ + 106, + 556, + 505, + 569 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy and Vladlen Koltun. Learning to act by predicting the future. arXiv preprint", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 567, + 219, + 578 + ], + "spans": [ + { + "bbox": [ + 116, + 567, + 219, + 578 + ], + "score": 1.0, + "content": "arXiv:1611.01779, 2016.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32.5, + "bbox_fs": [ + 106, + 556, + 505, + 578 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 586, + 505, + 610 + ], + "lines": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 106, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "Alexey Dosovitskiy, German Ros, Felipe Codevilla, Antonio Lopez, and Vladlen Koltun. CARLA:", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 597, + 488, + 611 + ], + "spans": [ + { + "bbox": [ + 115, + 597, + 488, + 611 + ], + "score": 1.0, + "content": "An open urban driving simulator. In Conference on Robot Learning (CoRL), pp. 1–16, 2017.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 586, + 506, + 611 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 617, + 505, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 615, + 507, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 615, + 507, + 631 + ], + "score": 1.0, + "content": "Leonid Kuvayev and Richard S. Sutton. Model-based reinforcement learning with an approximate,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 628, + 474, + 641 + ], + "spans": [ + { + "bbox": [ + 115, + 628, + 474, + 641 + ], + "score": 1.0, + "content": "learned model. In Yale Workshop on Adaptive and Learning Systems, pp. 101–105, 1996.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 615, + 507, + 641 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 648, + 505, + 681 + ], + "lines": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 105, + 647, + 505, + 661 + ], + "score": 1.0, + "content": "Balaji Lakshminarayanan, Alexander Pritzel, and Charles Blundell. Simple and scalable predictive", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 659, + 507, + 672 + ], + "spans": [ + { + "bbox": [ + 115, + 659, + 507, + 672 + ], + "score": 1.0, + "content": "uncertainty estimation using deep ensembles. In Neural Information Processing Systems (NeurIPS),", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 670, + 207, + 681 + ], + "spans": [ + { + "bbox": [ + 115, + 670, + 207, + 681 + ], + "score": 1.0, + "content": "pp. 6402–6413, 2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 647, + 507, + 681 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 689, + 414, + 702 + ], + "lines": [ + { + "bbox": [ + 106, + 689, + 413, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 689, + 413, + 703 + ], + "score": 1.0, + "content": "Steven M LaValle. Planning algorithms. Cambridge University Press, 2006.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 41, + "bbox_fs": [ + 106, + 689, + 413, + 703 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 504, + 731 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Sergey Levine. Reinforcement learning and control as probabilistic inference: Tutorial and review.", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 721, + 279, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 279, + 732 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.00909, 2018.", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 709, + 505, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Zhihao Li, Toshiyuki Motoyoshi, Kazuma Sasaki, Tetsuya Ogata, and Shigeki Sugano. Rethinking", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "self-driving: Multi-task knowledge for better generalization and accident explanation ability. arXiv", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 254, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 254, + 116 + ], + "score": 1.0, + "content": "preprint arXiv:1809.11100, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 135 + ], + "score": 1.0, + "content": "Xiaodan Liang, Tairui Wang, Luona Yang, and Eric Xing. CIRL: Controllable imitative reinforcement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 433, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 433, + 147 + ], + "score": 1.0, + "content": "learning for vision-based self-driving. arXiv preprint arXiv:1807.03776, 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 167 + ], + "score": 1.0, + "content": "Kunal Menda, Katherine Driggs-Campbell, and Mykel J Kochenderfer. DropoutDAgger: A Bayesian", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 424, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 424, + 176 + ], + "score": 1.0, + "content": "approach to safe imitation learning. arXiv preprint arXiv:1709.06166, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 110, + 182, + 504, + 217 + ], + "lines": [ + { + "bbox": [ + 108, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 108, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "Aaron van den Oord, Yazhe Li, Igor Babuschkin, Karen Simonyan, Oriol Vinyals, Koray Kavukcuoglu,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "George van den Driessche, Edward Lockhart, Luis C Cobo, Florian Stimberg, et al. Parallel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 204, + 465, + 218 + ], + "spans": [ + { + "bbox": [ + 116, + 204, + 465, + 218 + ], + "score": 1.0, + "content": "WaveNet: Fast high-fidelity speech synthesis. arXiv preprint arXiv:1711.10433, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 506, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "Brian Paden, Michal Cáp, Sze Zheng Yong, Dmitry Yershov, and Emilio Frazzoli. A survey of ˇ", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "motion planning and control techniques for self-driving urban vehicles. Transactions on Intelligent", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 247, + 228, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 247, + 228, + 259 + ], + "score": 1.0, + "content": "Vehicles, 1(1):33–55, 2016.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 504, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "Danilo Rezende and Shakir Mohamed. Variational inference with normalizing flows. In International", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 277, + 379, + 289 + ], + "spans": [ + { + "bbox": [ + 116, + 277, + 379, + 289 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), pp. 1530–1538, 2015.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "score": 1.0, + "content": "Nicholas Rhinehart, Kris M. Kitani, and Paul Vernaza. R2P2: A reparameterized pushforward policy", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "for diverse, precise generative path forecasting. In European Conference on Computer Vision", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 317, + 223, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 317, + 223, + 330 + ], + "score": 1.0, + "content": "(ECCV), September 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "score": 1.0, + "content": "Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 347, + 507, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 347, + 507, + 362 + ], + "score": 1.0, + "content": "prediction to no-regret online learning. In Artificial Intelligence and Statistics (AISTATS), pp.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 358, + 181, + 370 + ], + "spans": [ + { + "bbox": [ + 116, + 358, + 181, + 370 + ], + "score": 1.0, + "content": "627–635, 2011.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "Andrey Rudenko, Luigi Palmieri, Michael Herman, Kris M Kitani, Dariu M Gavrila, and Kai O Arras.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 388, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 469, + 401 + ], + "score": 1.0, + "content": "Human motion trajectory prediction: A survey. arXiv preprint arXiv:1905.06113, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5 + }, + { + "type": "text", + "bbox": [ + 105, + 407, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 421 + ], + "score": 1.0, + "content": "Axel Sauer, Nikolay Savinov, and Andreas Geiger. Conditional affordance learning for driving in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 418, + 364, + 430 + ], + "spans": [ + { + "bbox": [ + 116, + 418, + 364, + 430 + ], + "score": 1.0, + "content": "urban environments. arXiv preprint arXiv:1806.06498, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 108, + 437, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "Wilko Schwarting, Javier Alonso-Mora, and Daniela Rus. Planning and decision-making for au-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 116, + 448, + 506, + 460 + ], + "score": 1.0, + "content": "tonomous vehicles. Annual Review of Control, Robotics, and Autonomous Systems, 1:187–210,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 459, + 142, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 459, + 142, + 471 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "Aravind Srinivas, Allan Jabri, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Universal plan-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "ning networks: Learning generalizable representations for visuomotor control. In International", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 500, + 378, + 513 + ], + "spans": [ + { + "bbox": [ + 117, + 500, + 378, + 513 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), pp. 4739–4748, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 108, + 518, + 504, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "Liting Sun, Cheng Peng, Wei Zhan, and Masayoshi Tomizuka. A fast integrated planning and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 530, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 115, + 530, + 505, + 542 + ], + "score": 1.0, + "content": "control framework for autonomous driving via imitation learning. In Dynamic Systems and Control", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 540, + 371, + 554 + ], + "spans": [ + { + "bbox": [ + 116, + 540, + 371, + 554 + ], + "score": 1.0, + "content": "Conference. American Society of Mechanical Engineers, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 108, + 559, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Aviv Tamar, Yi Wu, Garrett Thomas, Sergey Levine, and Pieter Abbeel. Value iteration networks. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 570, + 412, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 412, + 583 + ], + "score": 1.0, + "content": "Neural Information Processing Systems (NeurIPS), pp. 2154–2162, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 503, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 604 + ], + "score": 1.0, + "content": "Emanuel Todorov. Linearly-solvable Markov decision problems. In Neural Information Processing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 600, + 286, + 613 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 286, + 613 + ], + "score": 1.0, + "content": "Systems (NeurIPS), pp. 1369–1376, 2007.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5 + }, + { + "type": "text", + "bbox": [ + 107, + 619, + 506, + 653 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "Jiakai Zhang and Kyunghyun Cho. Query-efficient imitation learning for end-to-end simulated", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "driving. In Association for the Advancement of Artificial Intelligence (AAAI), pp. 2891–2897,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 640, + 144, + 654 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 144, + 654 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "page_idx": 10, + "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 2020", + "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": "text", + "bbox": [ + 108, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 505, + 96 + ], + "score": 1.0, + "content": "Zhihao Li, Toshiyuki Motoyoshi, Kazuma Sasaki, Tetsuya Ogata, and Shigeki Sugano. Rethinking", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "self-driving: Multi-task knowledge for better generalization and accident explanation ability. arXiv", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 105, + 254, + 116 + ], + "spans": [ + { + "bbox": [ + 115, + 105, + 254, + 116 + ], + "score": 1.0, + "content": "preprint arXiv:1809.11100, 2018.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 505, + 116 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 504, + 146 + ], + "lines": [ + { + "bbox": [ + 106, + 124, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 106, + 124, + 505, + 135 + ], + "score": 1.0, + "content": "Xiaodan Liang, Tairui Wang, Luona Yang, and Eric Xing. CIRL: Controllable imitative reinforcement", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 116, + 134, + 433, + 147 + ], + "spans": [ + { + "bbox": [ + 116, + 134, + 433, + 147 + ], + "score": 1.0, + "content": "learning for vision-based self-driving. arXiv preprint arXiv:1807.03776, 2018.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 106, + 124, + 505, + 147 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 153, + 504, + 176 + ], + "lines": [ + { + "bbox": [ + 106, + 152, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 152, + 505, + 167 + ], + "score": 1.0, + "content": "Kunal Menda, Katherine Driggs-Campbell, and Mykel J Kochenderfer. DropoutDAgger: A Bayesian", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 164, + 424, + 176 + ], + "spans": [ + { + "bbox": [ + 116, + 164, + 424, + 176 + ], + "score": 1.0, + "content": "approach to safe imitation learning. arXiv preprint arXiv:1709.06166, 2017.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 106, + 152, + 505, + 176 + ] + }, + { + "type": "text", + "bbox": [ + 110, + 182, + 504, + 217 + ], + "lines": [ + { + "bbox": [ + 108, + 182, + 506, + 196 + ], + "spans": [ + { + "bbox": [ + 108, + 182, + 506, + 196 + ], + "score": 1.0, + "content": "Aaron van den Oord, Yazhe Li, Igor Babuschkin, Karen Simonyan, Oriol Vinyals, Koray Kavukcuoglu,", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 194, + 506, + 207 + ], + "spans": [ + { + "bbox": [ + 116, + 194, + 506, + 207 + ], + "score": 1.0, + "content": "George van den Driessche, Edward Lockhart, Luis C Cobo, Florian Stimberg, et al. Parallel", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 204, + 465, + 218 + ], + "spans": [ + { + "bbox": [ + 116, + 204, + 465, + 218 + ], + "score": 1.0, + "content": "WaveNet: Fast high-fidelity speech synthesis. arXiv preprint arXiv:1711.10433, 2017.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 108, + 182, + 506, + 218 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 224, + 506, + 258 + ], + "lines": [ + { + "bbox": [ + 106, + 224, + 506, + 237 + ], + "spans": [ + { + "bbox": [ + 106, + 224, + 506, + 237 + ], + "score": 1.0, + "content": "Brian Paden, Michal Cáp, Sze Zheng Yong, Dmitry Yershov, and Emilio Frazzoli. A survey of ˇ", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 116, + 236, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 116, + 236, + 505, + 249 + ], + "score": 1.0, + "content": "motion planning and control techniques for self-driving urban vehicles. Transactions on Intelligent", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 116, + 247, + 228, + 259 + ], + "spans": [ + { + "bbox": [ + 116, + 247, + 228, + 259 + ], + "score": 1.0, + "content": "Vehicles, 1(1):33–55, 2016.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11, + "bbox_fs": [ + 106, + 224, + 506, + 259 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 266, + 504, + 289 + ], + "lines": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 106, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "Danilo Rezende and Shakir Mohamed. Variational inference with normalizing flows. In International", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 277, + 379, + 289 + ], + "spans": [ + { + "bbox": [ + 116, + 277, + 379, + 289 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), pp. 1530–1538, 2015.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 266, + 505, + 289 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 295, + 505, + 329 + ], + "lines": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "spans": [ + { + "bbox": [ + 105, + 294, + 505, + 309 + ], + "score": 1.0, + "content": "Nicholas Rhinehart, Kris M. Kitani, and Paul Vernaza. R2P2: A reparameterized pushforward policy", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 307, + 505, + 319 + ], + "spans": [ + { + "bbox": [ + 116, + 307, + 505, + 319 + ], + "score": 1.0, + "content": "for diverse, precise generative path forecasting. In European Conference on Computer Vision", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 317, + 223, + 330 + ], + "spans": [ + { + "bbox": [ + 115, + 317, + 223, + 330 + ], + "score": 1.0, + "content": "(ECCV), September 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 294, + 505, + 330 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 336, + 505, + 370 + ], + "lines": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "spans": [ + { + "bbox": [ + 106, + 336, + 506, + 349 + ], + "score": 1.0, + "content": "Stéphane Ross, Geoffrey Gordon, and Drew Bagnell. A reduction of imitation learning and structured", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 347, + 507, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 347, + 507, + 362 + ], + "score": 1.0, + "content": "prediction to no-regret online learning. In Artificial Intelligence and Statistics (AISTATS), pp.", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 116, + 358, + 181, + 370 + ], + "spans": [ + { + "bbox": [ + 116, + 358, + 181, + 370 + ], + "score": 1.0, + "content": "627–635, 2011.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 336, + 507, + 370 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 377, + 505, + 401 + ], + "lines": [ + { + "bbox": [ + 106, + 378, + 506, + 390 + ], + "spans": [ + { + "bbox": [ + 106, + 378, + 506, + 390 + ], + "score": 1.0, + "content": "Andrey Rudenko, Luigi Palmieri, Michael Herman, Kris M Kitani, Dariu M Gavrila, and Kai O Arras.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 388, + 469, + 401 + ], + "spans": [ + { + "bbox": [ + 115, + 388, + 469, + 401 + ], + "score": 1.0, + "content": "Human motion trajectory prediction: A survey. arXiv preprint arXiv:1905.06113, 2019.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21.5, + "bbox_fs": [ + 106, + 378, + 506, + 401 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 407, + 504, + 430 + ], + "lines": [ + { + "bbox": [ + 105, + 406, + 505, + 421 + ], + "spans": [ + { + "bbox": [ + 105, + 406, + 505, + 421 + ], + "score": 1.0, + "content": "Axel Sauer, Nikolay Savinov, and Andreas Geiger. Conditional affordance learning for driving in", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 418, + 364, + 430 + ], + "spans": [ + { + "bbox": [ + 116, + 418, + 364, + 430 + ], + "score": 1.0, + "content": "urban environments. arXiv preprint arXiv:1806.06498, 2018.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 105, + 406, + 505, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 437, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 106, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 106, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "Wilko Schwarting, Javier Alonso-Mora, and Daniela Rus. Planning and decision-making for au-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 448, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 116, + 448, + 506, + 460 + ], + "score": 1.0, + "content": "tonomous vehicles. Annual Review of Control, Robotics, and Autonomous Systems, 1:187–210,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 459, + 142, + 471 + ], + "spans": [ + { + "bbox": [ + 115, + 459, + 142, + 471 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26, + "bbox_fs": [ + 106, + 437, + 506, + 471 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 512 + ], + "lines": [ + { + "bbox": [ + 106, + 478, + 506, + 490 + ], + "spans": [ + { + "bbox": [ + 106, + 478, + 506, + 490 + ], + "score": 1.0, + "content": "Aravind Srinivas, Allan Jabri, Pieter Abbeel, Sergey Levine, and Chelsea Finn. Universal plan-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 489, + 505, + 501 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 505, + 501 + ], + "score": 1.0, + "content": "ning networks: Learning generalizable representations for visuomotor control. In International", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 117, + 500, + 378, + 513 + ], + "spans": [ + { + "bbox": [ + 117, + 500, + 378, + 513 + ], + "score": 1.0, + "content": "Conference on Machine Learning (ICML), pp. 4739–4748, 2018.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 106, + 478, + 506, + 513 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 518, + 504, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 518, + 505, + 532 + ], + "score": 1.0, + "content": "Liting Sun, Cheng Peng, Wei Zhan, and Masayoshi Tomizuka. A fast integrated planning and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 530, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 115, + 530, + 505, + 542 + ], + "score": 1.0, + "content": "control framework for autonomous driving via imitation learning. In Dynamic Systems and Control", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 540, + 371, + 554 + ], + "spans": [ + { + "bbox": [ + 116, + 540, + 371, + 554 + ], + "score": 1.0, + "content": "Conference. American Society of Mechanical Engineers, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 518, + 505, + 554 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 559, + 504, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 505, + 572 + ], + "score": 1.0, + "content": "Aviv Tamar, Yi Wu, Garrett Thomas, Sergey Levine, and Pieter Abbeel. Value iteration networks. In", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 570, + 412, + 583 + ], + "spans": [ + { + "bbox": [ + 115, + 570, + 412, + 583 + ], + "score": 1.0, + "content": "Neural Information Processing Systems (NeurIPS), pp. 2154–2162, 2016.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 559, + 505, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 503, + 613 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 505, + 604 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 604 + ], + "score": 1.0, + "content": "Emanuel Todorov. Linearly-solvable Markov decision problems. In Neural Information Processing", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 115, + 600, + 286, + 613 + ], + "spans": [ + { + "bbox": [ + 115, + 600, + 286, + 613 + ], + "score": 1.0, + "content": "Systems (NeurIPS), pp. 1369–1376, 2007.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36.5, + "bbox_fs": [ + 105, + 587, + 505, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 619, + 506, + 653 + ], + "lines": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "Jiakai Zhang and Kyunghyun Cho. Query-efficient imitation learning for end-to-end simulated", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "spans": [ + { + "bbox": [ + 115, + 630, + 506, + 644 + ], + "score": 1.0, + "content": "driving. In Association for the Advancement of Artificial Intelligence (AAAI), pp. 2891–2897,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 640, + 144, + 654 + ], + "spans": [ + { + "bbox": [ + 115, + 640, + 144, + 654 + ], + "score": 1.0, + "content": "2017.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 619, + 506, + 654 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 199, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 201, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 201, + 96 + ], + "score": 1.0, + "content": "A ALGORITHMS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 505, + 142 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "score": 1.0, + "content": "In Algorithm 1, we provided pseudocode for receding-horizon control via our imitative model. In", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 119, + 507, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 507, + 134 + ], + "score": 1.0, + "content": "Algorithm 2 we provided pesudocode that describes how we plan in the latent space of the trajectory.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 484, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 484, + 144 + ], + "score": 1.0, + "content": "In Algorithm 3, we detail the speed-based throttle and position-based steering PID controllers.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 159, + 409, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 409, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 409, + 175 + ], + "score": 0.68, + "content": "\\mathbf { A l g o r i t h m 3 } \\quad \\mathbf { P I D C O N T R O L L E R } ( \\phi = \\left\\{ \\mathbf { s } _ { 0 } , \\mathbf { s } _ { - 1 } , \\ldots \\right\\} , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H ; K _ { p } ^ { \\dot { s } } , K _ { p } ^ { \\alpha } )", + "type": "interline_equation", + "image_path": "d6f2100ae9e21212ad285e7d1a49facac34bb119ac3adff0d5217cec7ec32cf6.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 105, + 159, + 409, + 175 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "text", + "bbox": [ + 110, + 178, + 503, + 344 + ], + "lines": [ + { + "bbox": [ + 110, + 178, + 364, + 192 + ], + "spans": [ + { + "bbox": [ + 110, + 178, + 123, + 192 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 124, + 179, + 190, + 190 + ], + "score": 0.78, + "content": "i T - H + h", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 178, + 364, + 192 + ], + "score": 1.0, + "content": "{Compute the index of the target position}", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 109, + 188, + 486, + 204 + ], + "spans": [ + { + "bbox": [ + 109, + 188, + 169, + 204 + ], + "score": 1.0, + "content": "2: s˙process-speed", + "type": "text" + }, + { + "bbox": [ + 170, + 190, + 242, + 202 + ], + "score": 0.74, + "content": " ( \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 188, + 486, + 204 + ], + "score": 1.0, + "content": "{Compute the current forward speed from the observations}", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 108, + 199, + 438, + 219 + ], + "spans": [ + { + "bbox": [ + 108, + 199, + 123, + 219 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 123, + 203, + 207, + 216 + ], + "score": 0.68, + "content": "s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\mathbf { s } _ { i , x } ^ { \\mathcal { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 199, + 323, + 219 + ], + "score": 1.0, + "content": "{Retrieve the target position", + "type": "text" + }, + { + "bbox": [ + 323, + 205, + 329, + 213 + ], + "score": 0.28, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 199, + 438, + 219 + ], + "score": 1.0, + "content": "-coordinate from the plan}", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 109, + 214, + 378, + 230 + ], + "spans": [ + { + "bbox": [ + 109, + 214, + 124, + 230 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 124, + 217, + 229, + 227 + ], + "score": 0.65, + "content": "\\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\Big / i", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 214, + 378, + 230 + ], + "score": 1.0, + "content": "{Compute the forward target speed}", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 109, + 225, + 397, + 241 + ], + "spans": [ + { + "bbox": [ + 109, + 225, + 123, + 241 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 124, + 227, + 227, + 237 + ], + "score": 0.37, + "content": "e _ { \\dot { s } } \\gets \\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } - \\dot { s } _ { \\mathrm { p r o c e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 225, + 397, + 241 + ], + "score": 1.0, + "content": "ss-speed {Compute the forward speed error}", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 110, + 238, + 447, + 252 + ], + "spans": [ + { + "bbox": [ + 110, + 238, + 123, + 251 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 124, + 238, + 172, + 252 + ], + "score": 0.91, + "content": "u _ { \\dot { s } } \\gets K _ { p } ^ { \\dot { s } } e _ { \\dot { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 238, + 447, + 251 + ], + "score": 1.0, + "content": "{Compute the accelerator control with a nonzero proportional term}", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 110, + 249, + 502, + 263 + ], + "spans": [ + { + "bbox": [ + 110, + 249, + 153, + 263 + ], + "score": 1.0, + "content": "7: throttle", + "type": "text" + }, + { + "bbox": [ + 153, + 250, + 277, + 262 + ], + "score": 0.88, + "content": "\\iff \\mathbb { 1 } ( e > 0 ) \\cdot u + \\mathbb { 1 } ( e \\leq 0 ) \\cdot 0", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 249, + 502, + 263 + ], + "score": 1.0, + "content": "{Use the control as throttle if the speed error is positive}", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 109, + 261, + 497, + 275 + ], + "spans": [ + { + "bbox": [ + 109, + 261, + 149, + 275 + ], + "score": 1.0, + "content": "8: brake", + "type": "text" + }, + { + "bbox": [ + 149, + 262, + 275, + 273 + ], + "score": 0.8, + "content": " \\mathbb { 1 } ( e > 0 ) \\cdot 0 + \\mathbb { 1 } ( e \\leq 0 ) \\cdot u", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 261, + 497, + 275 + ], + "score": 1.0, + "content": "{Use the control as brake if the speed error is negative}", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 103, + 271, + 446, + 311 + ], + "spans": [ + { + "bbox": [ + 103, + 271, + 123, + 311 + ], + "score": 1.0, + "content": "9: 10: 11:", + "type": "text" + }, + { + "bbox": [ + 128, + 274, + 307, + 285 + ], + "score": 0.73, + "content": "\\boldsymbol { \\iota } _ { \\mathrm { p r o c e s s } } \\gets \\arctan ( \\mathbf { s } _ { 0 , y } - \\mathbf { s } _ { - 1 , y } , \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 271, + 446, + 311 + ], + "score": 1.0, + "content": "{Compute current heading}{Compute target forward heading}g error}", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 124, + 285, + 300, + 299 + ], + "spans": [ + { + "bbox": [ + 124, + 285, + 300, + 299 + ], + "score": 0.8, + "content": "\\alpha _ { \\mathrm { s e t p o i n t } } \\arctan ( \\mathbf { s } _ { i , y } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , y } , | \\mathbf { s } _ { i , x } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , x } | ) _ { . }", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 124, + 299, + 210, + 308 + ], + "spans": [ + { + "bbox": [ + 124, + 299, + 210, + 308 + ], + "score": 0.64, + "content": "e _ { \\alpha } \\gets \\alpha _ { \\mathrm { s e t p o i n t } } - \\alpha _ { \\mathrm { p r o c } }", + "type": "inline_equation" + } + ], + "index": 15 + }, + { + "bbox": [ + 108, + 307, + 429, + 321 + ], + "spans": [ + { + "bbox": [ + 108, + 307, + 154, + 321 + ], + "score": 1.0, + "content": "12: steering", + "type": "text" + }, + { + "bbox": [ + 155, + 308, + 196, + 321 + ], + "score": 0.82, + "content": "\\ L _ { \\ S } K _ { p } ^ { \\alpha } e _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 307, + 429, + 321 + ], + "score": 1.0, + "content": "{Compute the steering with a nonzero proportional term}", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 320, + 243, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 123, + 332 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 123, + 320, + 144, + 331 + ], + "score": 0.64, + "content": "u \\gets", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 320, + 243, + 332 + ], + "score": 1.0, + "content": "[throttle, steering, brake]", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 331, + 160, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 153, + 343 + ], + "score": 1.0, + "content": "14: return", + "type": "text" + }, + { + "bbox": [ + 153, + 333, + 160, + 341 + ], + "score": 0.51, + "content": "u", + "type": "inline_equation" + } + ], + "index": 18 + } + ], + "index": 11.5 + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 260, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 262, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 262, + 387 + ], + "score": 1.0, + "content": "A.1 LATENT PLAN OPTIMIZATION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 132, + 410 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 133, + 397, + 199, + 409 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 396, + 318, + 410 + ], + "score": 1.0, + "content": "in our implementation, and", + "type": "text" + }, + { + "bbox": [ + 319, + 397, + 326, + 408 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "is differentiable, we can perform gradient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 280, + 420 + ], + "score": 1.0, + "content": "descent of the same objective in terms of", + "type": "text" + }, + { + "bbox": [ + 280, + 409, + 299, + 419 + ], + "score": 0.88, + "content": "\\mathbf { z } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 407, + 434, + 420 + ], + "score": 1.0, + "content": ", as shown in Algorithm 2.Since", + "type": "text" + }, + { + "bbox": [ + 435, + 409, + 442, + 419 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "is trained with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 171, + 430 + ], + "score": 0.93, + "content": "\\mathbf { z } _ { 1 : T } \\sim \\mathcal { N } ( 0 , I )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 417, + 506, + 431 + ], + "score": 1.0, + "content": ", the latent space is likelier to be better numerically conditioned than the space of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 124, + 441 + ], + "score": 0.81, + "content": "\\mathbf { s } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 429, + 506, + 443 + ], + "score": 1.0, + "content": ", although we did not compare the two approaches formally. We implemented the following", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 504, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 465, + 452 + ], + "score": 1.0, + "content": "optimizations to improve this procedure’s output and practical run time. 1) We started with", + "type": "text" + }, + { + "bbox": [ + 465, + 441, + 504, + 451 + ], + "score": 0.89, + "content": "N = 1 2 0", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 142, + 464 + ], + "score": 1.0, + "content": "different", + "type": "text" + }, + { + "bbox": [ + 142, + 453, + 149, + 461 + ], + "score": 0.6, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "initializations, optimized them in batch, and returned the highest-scoring value across the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "score": 1.0, + "content": "entire optimization. 2) We observed the resulting planning procedure to usually converge quickly, so", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "instead of specifying a convergence threshold, we simply ran the optimization for a small number of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 131, + 497 + ], + "score": 1.0, + "content": "steps,", + "type": "text" + }, + { + "bbox": [ + 131, + 484, + 166, + 495 + ], + "score": 0.89, + "content": "M = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 484, + 506, + 497 + ], + "score": 1.0, + "content": ", and found that we obtained good performance. Better performance could be obtained", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 495, + 267, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 267, + 508 + ], + "score": 1.0, + "content": "by performing a larger number of steps.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24.5 + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 207, + 541 + ], + "lines": [ + { + "bbox": [ + 104, + 525, + 208, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 208, + 543 + ], + "score": 1.0, + "content": "B GOAL DETAILS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 555, + 385, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 386, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 386, + 569 + ], + "score": 1.0, + "content": "B.1 OPTIMIZING GOAL LIKELIHOODS WITH SET CONSTRAINTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "We now derive an approach to optimize our main objective with set constraints. Although we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 589, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 602 + ], + "score": 1.0, + "content": "could apply a constrained optimizer, we find that we are able to exploit properties of the model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "and constraints to derive differentiable objectives that enable approximate optimization of the cor-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "responding closed-form optimization problems. These enable us to use the same straightforward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 622, + 398, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 398, + 636 + ], + "score": 1.0, + "content": "gradient-descent-based optimization approach described in Algorithm 2.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34 + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 504, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 369, + 664 + ], + "score": 1.0, + "content": "Shorthand notation: In this section we omit dependencies on", + "type": "text" + }, + { + "bbox": [ + 370, + 652, + 377, + 663 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "for brevity, and use short hand", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 662, + 442, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 662, + 173, + 675 + ], + "score": 0.92, + "content": "\\mu _ { t } \\doteq \\mu _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 662, + 191, + 676 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 192, + 662, + 261, + 675 + ], + "score": 0.92, + "content": "\\Sigma _ { t } \\doteq \\Sigma _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 662, + 319, + 676 + ], + "score": 1.0, + "content": ". For example,", + "type": "text" + }, + { + "bbox": [ + 320, + 663, + 438, + 675 + ], + "score": 0.91, + "content": "q ( \\mathbf { s } _ { t } | \\mathbf { s } _ { 1 : t - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { t } ; \\mu _ { t } , \\Sigma _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 662, + 442, + 676 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5 + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 298, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 299, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 299, + 693 + ], + "score": 1.0, + "content": "Let us begin by defining a useful delta function:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 702, + 364, + 730 + ], + "lines": [ + { + "bbox": [ + 245, + 702, + 364, + 730 + ], + "spans": [ + { + "bbox": [ + 245, + 702, + 364, + 730 + ], + "score": 0.94, + "content": "\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) \\doteq { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\in \\mathbb { G } } \\\\ { 0 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\notin \\mathbb { G } , } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "a11082ca3dca33c8a44f6f820e7dea5f3c38e21cb6c4717d8ab90aae1e7d66bc.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 245, + 702, + 364, + 730 + ], + "spans": [], + "index": 40 + } + ] + } + ], + "page_idx": 11, + "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 2020", + "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": "12", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 199, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 201, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 201, + 96 + ], + "score": 1.0, + "content": "A ALGORITHMS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 109, + 505, + 142 + ], + "lines": [ + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "spans": [ + { + "bbox": [ + 105, + 109, + 505, + 122 + ], + "score": 1.0, + "content": "In Algorithm 1, we provided pseudocode for receding-horizon control via our imitative model. In", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 119, + 507, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 507, + 134 + ], + "score": 1.0, + "content": "Algorithm 2 we provided pesudocode that describes how we plan in the latent space of the trajectory.", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 131, + 484, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 131, + 484, + 144 + ], + "score": 1.0, + "content": "In Algorithm 3, we detail the speed-based throttle and position-based steering PID controllers.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 109, + 507, + 144 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 105, + 159, + 409, + 175 + ], + "lines": [ + { + "bbox": [ + 105, + 159, + 409, + 175 + ], + "spans": [ + { + "bbox": [ + 105, + 159, + 409, + 175 + ], + "score": 0.68, + "content": "\\mathbf { A l g o r i t h m 3 } \\quad \\mathbf { P I D C O N T R O L L E R } ( \\phi = \\left\\{ \\mathbf { s } _ { 0 } , \\mathbf { s } _ { - 1 } , \\ldots \\right\\} , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H ; K _ { p } ^ { \\dot { s } } , K _ { p } ^ { \\alpha } )", + "type": "interline_equation", + "image_path": "d6f2100ae9e21212ad285e7d1a49facac34bb119ac3adff0d5217cec7ec32cf6.jpg" + } + ] + } + ], + "index": 4, + "virtual_lines": [ + { + "bbox": [ + 105, + 159, + 409, + 175 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "list", + "bbox": [ + 110, + 178, + 503, + 344 + ], + "lines": [ + { + "bbox": [ + 110, + 178, + 364, + 192 + ], + "spans": [ + { + "bbox": [ + 110, + 178, + 123, + 192 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 124, + 179, + 190, + 190 + ], + "score": 0.78, + "content": "i T - H + h", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 178, + 364, + 192 + ], + "score": 1.0, + "content": "{Compute the index of the target position}", + "type": "text" + } + ], + "index": 5, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 188, + 486, + 204 + ], + "spans": [ + { + "bbox": [ + 109, + 188, + 169, + 204 + ], + "score": 1.0, + "content": "2: s˙process-speed", + "type": "text" + }, + { + "bbox": [ + 170, + 190, + 242, + 202 + ], + "score": 0.74, + "content": " ( \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 188, + 486, + 204 + ], + "score": 1.0, + "content": "{Compute the current forward speed from the observations}", + "type": "text" + } + ], + "index": 6, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 199, + 438, + 219 + ], + "spans": [ + { + "bbox": [ + 108, + 199, + 123, + 219 + ], + "score": 1.0, + "content": "3:", + "type": "text" + }, + { + "bbox": [ + 123, + 203, + 207, + 216 + ], + "score": 0.68, + "content": "s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\mathbf { s } _ { i , x } ^ { \\mathcal { G } }", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 199, + 323, + 219 + ], + "score": 1.0, + "content": "{Retrieve the target position", + "type": "text" + }, + { + "bbox": [ + 323, + 205, + 329, + 213 + ], + "score": 0.28, + "content": "\\mathbf { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 330, + 199, + 438, + 219 + ], + "score": 1.0, + "content": "-coordinate from the plan}", + "type": "text" + } + ], + "index": 7, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 214, + 378, + 230 + ], + "spans": [ + { + "bbox": [ + 109, + 214, + 124, + 230 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 124, + 217, + 229, + 227 + ], + "score": 0.65, + "content": "\\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\Big / i", + "type": "inline_equation" + }, + { + "bbox": [ + 229, + 214, + 378, + 230 + ], + "score": 1.0, + "content": "{Compute the forward target speed}", + "type": "text" + } + ], + "index": 8, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 109, + 225, + 397, + 241 + ], + "spans": [ + { + "bbox": [ + 109, + 225, + 123, + 241 + ], + "score": 1.0, + "content": "5:", + "type": "text" + }, + { + "bbox": [ + 124, + 227, + 227, + 237 + ], + "score": 0.37, + "content": "e _ { \\dot { s } } \\gets \\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } - \\dot { s } _ { \\mathrm { p r o c e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 225, + 397, + 241 + ], + "score": 1.0, + "content": "ss-speed {Compute the forward speed error}", + "type": "text" + } + ], + "index": 9, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 238, + 447, + 252 + ], + "spans": [ + { + "bbox": [ + 110, + 238, + 123, + 251 + ], + "score": 1.0, + "content": "6:", + "type": "text" + }, + { + "bbox": [ + 124, + 238, + 172, + 252 + ], + "score": 0.91, + "content": "u _ { \\dot { s } } \\gets K _ { p } ^ { \\dot { s } } e _ { \\dot { s } }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 238, + 447, + 251 + ], + "score": 1.0, + "content": "{Compute the accelerator control with a nonzero proportional term}", + "type": "text" + } + ], + "index": 10, + "is_list_end_line": true + }, + { + "bbox": [ + 110, + 249, + 502, + 263 + ], + "spans": [ + { + "bbox": [ + 110, + 249, + 153, + 263 + ], + "score": 1.0, + "content": "7: throttle", + "type": "text" + }, + { + "bbox": [ + 153, + 250, + 277, + 262 + ], + "score": 0.88, + "content": "\\iff \\mathbb { 1 } ( e > 0 ) \\cdot u + \\mathbb { 1 } ( e \\leq 0 ) \\cdot 0", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 249, + 502, + 263 + ], + "score": 1.0, + "content": "{Use the control as throttle if the speed error is positive}", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 109, + 261, + 497, + 275 + ], + "spans": [ + { + "bbox": [ + 109, + 261, + 149, + 275 + ], + "score": 1.0, + "content": "8: brake", + "type": "text" + }, + { + "bbox": [ + 149, + 262, + 275, + 273 + ], + "score": 0.8, + "content": " \\mathbb { 1 } ( e > 0 ) \\cdot 0 + \\mathbb { 1 } ( e \\leq 0 ) \\cdot u", + "type": "inline_equation" + }, + { + "bbox": [ + 275, + 261, + 497, + 275 + ], + "score": 1.0, + "content": "{Use the control as brake if the speed error is negative}", + "type": "text" + } + ], + "index": 12, + "is_list_start_line": true + }, + { + "bbox": [ + 103, + 271, + 446, + 311 + ], + "spans": [ + { + "bbox": [ + 103, + 271, + 123, + 311 + ], + "score": 1.0, + "content": "9: 10: 11:", + "type": "text" + }, + { + "bbox": [ + 128, + 274, + 307, + 285 + ], + "score": 0.73, + "content": "\\boldsymbol { \\iota } _ { \\mathrm { p r o c e s s } } \\gets \\arctan ( \\mathbf { s } _ { 0 , y } - \\mathbf { s } _ { - 1 , y } , \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 271, + 446, + 311 + ], + "score": 1.0, + "content": "{Compute current heading}{Compute target forward heading}g error}", + "type": "text" + } + ], + "index": 14, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 124, + 285, + 300, + 299 + ], + "spans": [ + { + "bbox": [ + 124, + 285, + 300, + 299 + ], + "score": 0.8, + "content": "\\alpha _ { \\mathrm { s e t p o i n t } } \\arctan ( \\mathbf { s } _ { i , y } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , y } , | \\mathbf { s } _ { i , x } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , x } | ) _ { . }", + "type": "inline_equation" + } + ], + "index": 13, + "is_list_end_line": true + }, + { + "bbox": [ + 124, + 299, + 210, + 308 + ], + "spans": [ + { + "bbox": [ + 124, + 299, + 210, + 308 + ], + "score": 0.64, + "content": "e _ { \\alpha } \\gets \\alpha _ { \\mathrm { s e t p o i n t } } - \\alpha _ { \\mathrm { p r o c } }", + "type": "inline_equation" + } + ], + "index": 15, + "is_list_end_line": true + }, + { + "bbox": [ + 108, + 307, + 429, + 321 + ], + "spans": [ + { + "bbox": [ + 108, + 307, + 154, + 321 + ], + "score": 1.0, + "content": "12: steering", + "type": "text" + }, + { + "bbox": [ + 155, + 308, + 196, + 321 + ], + "score": 0.82, + "content": "\\ L _ { \\ S } K _ { p } ^ { \\alpha } e _ { \\alpha }", + "type": "inline_equation" + }, + { + "bbox": [ + 197, + 307, + 429, + 321 + ], + "score": 1.0, + "content": "{Compute the steering with a nonzero proportional term}", + "type": "text" + } + ], + "index": 16, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 320, + 243, + 332 + ], + "spans": [ + { + "bbox": [ + 106, + 320, + 123, + 332 + ], + "score": 1.0, + "content": "13:", + "type": "text" + }, + { + "bbox": [ + 123, + 320, + 144, + 331 + ], + "score": 0.64, + "content": "u \\gets", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 320, + 243, + 332 + ], + "score": 1.0, + "content": "[throttle, steering, brake]", + "type": "text" + } + ], + "index": 17, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 106, + 331, + 160, + 343 + ], + "spans": [ + { + "bbox": [ + 106, + 331, + 153, + 343 + ], + "score": 1.0, + "content": "14: return", + "type": "text" + }, + { + "bbox": [ + 153, + 333, + 160, + 341 + ], + "score": 0.51, + "content": "u", + "type": "inline_equation" + } + ], + "index": 18, + "is_list_start_line": true, + "is_list_end_line": true + } + ], + "index": 11.5, + "bbox_fs": [ + 103, + 178, + 502, + 343 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 374, + 260, + 385 + ], + "lines": [ + { + "bbox": [ + 106, + 373, + 262, + 387 + ], + "spans": [ + { + "bbox": [ + 106, + 373, + 262, + 387 + ], + "score": 1.0, + "content": "A.1 LATENT PLAN OPTIMIZATION", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 106, + 396, + 505, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 396, + 506, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 396, + 132, + 410 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 133, + 397, + 199, + 409 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 396, + 318, + 410 + ], + "score": 1.0, + "content": "in our implementation, and", + "type": "text" + }, + { + "bbox": [ + 319, + 397, + 326, + 408 + ], + "score": 0.85, + "content": "f", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 396, + 506, + 410 + ], + "score": 1.0, + "content": "is differentiable, we can perform gradient", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 407, + 505, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 280, + 420 + ], + "score": 1.0, + "content": "descent of the same objective in terms of", + "type": "text" + }, + { + "bbox": [ + 280, + 409, + 299, + 419 + ], + "score": 0.88, + "content": "\\mathbf { z } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 299, + 407, + 434, + 420 + ], + "score": 1.0, + "content": ", as shown in Algorithm 2.Since", + "type": "text" + }, + { + "bbox": [ + 435, + 409, + 442, + 419 + ], + "score": 0.77, + "content": "q", + "type": "inline_equation" + }, + { + "bbox": [ + 442, + 407, + 505, + 420 + ], + "score": 1.0, + "content": "is trained with", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 417, + 506, + 431 + ], + "spans": [ + { + "bbox": [ + 106, + 418, + 171, + 430 + ], + "score": 0.93, + "content": "\\mathbf { z } _ { 1 : T } \\sim \\mathcal { N } ( 0 , I )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 417, + 506, + 431 + ], + "score": 1.0, + "content": ", the latent space is likelier to be better numerically conditioned than the space of", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 432, + 124, + 441 + ], + "score": 0.81, + "content": "\\mathbf { s } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 429, + 506, + 443 + ], + "score": 1.0, + "content": ", although we did not compare the two approaches formally. We implemented the following", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 440, + 504, + 452 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 465, + 452 + ], + "score": 1.0, + "content": "optimizations to improve this procedure’s output and practical run time. 1) We started with", + "type": "text" + }, + { + "bbox": [ + 465, + 441, + 504, + 451 + ], + "score": 0.89, + "content": "N = 1 2 0", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 451, + 142, + 464 + ], + "score": 1.0, + "content": "different", + "type": "text" + }, + { + "bbox": [ + 142, + 453, + 149, + 461 + ], + "score": 0.6, + "content": "\\mathbf { z }", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "initializations, optimized them in batch, and returned the highest-scoring value across the", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "spans": [ + { + "bbox": [ + 106, + 462, + 506, + 474 + ], + "score": 1.0, + "content": "entire optimization. 2) We observed the resulting planning procedure to usually converge quickly, so", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 487 + ], + "score": 1.0, + "content": "instead of specifying a convergence threshold, we simply ran the optimization for a small number of", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 131, + 497 + ], + "score": 1.0, + "content": "steps,", + "type": "text" + }, + { + "bbox": [ + 131, + 484, + 166, + 495 + ], + "score": 0.89, + "content": "M = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 166, + 484, + 506, + 497 + ], + "score": 1.0, + "content": ", and found that we obtained good performance. Better performance could be obtained", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 495, + 267, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 267, + 508 + ], + "score": 1.0, + "content": "by performing a larger number of steps.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 396, + 506, + 508 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 527, + 207, + 541 + ], + "lines": [ + { + "bbox": [ + 104, + 525, + 208, + 543 + ], + "spans": [ + { + "bbox": [ + 104, + 525, + 208, + 543 + ], + "score": 1.0, + "content": "B GOAL DETAILS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 555, + 385, + 568 + ], + "lines": [ + { + "bbox": [ + 105, + 555, + 386, + 569 + ], + "spans": [ + { + "bbox": [ + 105, + 555, + 386, + 569 + ], + "score": 1.0, + "content": "B.1 OPTIMIZING GOAL LIKELIHOODS WITH SET CONSTRAINTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 578, + 505, + 634 + ], + "lines": [ + { + "bbox": [ + 106, + 578, + 505, + 592 + ], + "spans": [ + { + "bbox": [ + 106, + 578, + 505, + 592 + ], + "score": 1.0, + "content": "We now derive an approach to optimize our main objective with set constraints. Although we", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 589, + 506, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 602 + ], + "score": 1.0, + "content": "could apply a constrained optimizer, we find that we are able to exploit properties of the model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 614 + ], + "score": 1.0, + "content": "and constraints to derive differentiable objectives that enable approximate optimization of the cor-", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 624 + ], + "score": 1.0, + "content": "responding closed-form optimization problems. These enable us to use the same straightforward", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 622, + 398, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 398, + 636 + ], + "score": 1.0, + "content": "gradient-descent-based optimization approach described in Algorithm 2.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34, + "bbox_fs": [ + 105, + 578, + 506, + 636 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 651, + 504, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 651, + 505, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 369, + 664 + ], + "score": 1.0, + "content": "Shorthand notation: In this section we omit dependencies on", + "type": "text" + }, + { + "bbox": [ + 370, + 652, + 377, + 663 + ], + "score": 0.84, + "content": "\\phi", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 651, + 505, + 664 + ], + "score": 1.0, + "content": "for brevity, and use short hand", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 107, + 662, + 442, + 676 + ], + "spans": [ + { + "bbox": [ + 107, + 662, + 173, + 675 + ], + "score": 0.92, + "content": "\\mu _ { t } \\doteq \\mu _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 662, + 191, + 676 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 192, + 662, + 261, + 675 + ], + "score": 0.92, + "content": "\\Sigma _ { t } \\doteq \\Sigma _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 662, + 319, + 676 + ], + "score": 1.0, + "content": ". For example,", + "type": "text" + }, + { + "bbox": [ + 320, + 663, + 438, + 675 + ], + "score": 0.91, + "content": "q ( \\mathbf { s } _ { t } | \\mathbf { s } _ { 1 : t - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { t } ; \\mu _ { t } , \\Sigma _ { t } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 662, + 442, + 676 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37.5, + "bbox_fs": [ + 106, + 651, + 505, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 679, + 298, + 691 + ], + "lines": [ + { + "bbox": [ + 106, + 678, + 299, + 693 + ], + "spans": [ + { + "bbox": [ + 106, + 678, + 299, + 693 + ], + "score": 1.0, + "content": "Let us begin by defining a useful delta function:", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 678, + 299, + 693 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 245, + 702, + 364, + 730 + ], + "lines": [ + { + "bbox": [ + 245, + 702, + 364, + 730 + ], + "spans": [ + { + "bbox": [ + 245, + 702, + 364, + 730 + ], + "score": 0.94, + "content": "\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) \\doteq { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\in \\mathbb { G } } \\\\ { 0 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\notin \\mathbb { G } , } \\end{array} \\right. }", + "type": "interline_equation", + "image_path": "a11082ca3dca33c8a44f6f820e7dea5f3c38e21cb6c4717d8ab90aae1e7d66bc.jpg" + } + ] + } + ], + "index": 40, + "virtual_lines": [ + { + "bbox": [ + 245, + 702, + 364, + 730 + ], + "spans": [], + "index": 40 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 398, + 95 + ], + "score": 1.0, + "content": "which serves as our goal likelihood when using goal with set constraints:", + "type": "text" + }, + { + "bbox": [ + 399, + 82, + 485, + 95 + ], + "score": 0.93, + "content": "p ( \\mathcal { G } | \\mathbf { s } _ { 1 : T } ) \\gets \\delta _ { S _ { T } } ( \\mathbb { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 409, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 409, + 106 + ], + "score": 1.0, + "content": "now derive the corresponding maximum a posteriori optimization problem:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 114, + 445, + 342 + ], + "lines": [ + { + "bbox": [ + 172, + 114, + 445, + 342 + ], + "spans": [ + { + "bbox": [ + 172, + 114, + 445, + 342 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\mathbf { f } _ { \\perp \\perp } } & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\{ ( \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ) \\cdot \\boldsymbol { F } _ { \\perp \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { S } _ { \\parallel } \\cdot \\mathbf { u } _ { \\mathrm { L } } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\frac { \\boldsymbol { F } _ { \\perp } \\lambda _ { \\mathrm { R } } ^ { \\perp } } { \\lambda _ { \\mathrm { R } } ^ { \\perp } \\sin { \\mathrm { R } } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } \\} } \\\\ & = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp } \\cdot \\mathbf { J } _ { \\perp } \\end{array}", + "type": "interline_equation", + "image_path": "493b80b970e59ee14ec8153483f7117d75abffff384a516874df423344d29019.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 172, + 114, + 445, + 127.41176470588235 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 172, + 127.41176470588235, + 445, + 140.8235294117647 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 172, + 140.8235294117647, + 445, + 154.23529411764704 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 172, + 154.23529411764704, + 445, + 167.6470588235294 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 172, + 167.6470588235294, + 445, + 181.05882352941174 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 172, + 181.05882352941174, + 445, + 194.4705882352941 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 172, + 194.4705882352941, + 445, + 207.88235294117644 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 172, + 207.88235294117644, + 445, + 221.29411764705878 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 172, + 221.29411764705878, + 445, + 234.70588235294113 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 172, + 234.70588235294113, + 445, + 248.11764705882348 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 172, + 248.11764705882348, + 445, + 261.52941176470586 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 172, + 261.52941176470586, + 445, + 274.94117647058823 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 172, + 274.94117647058823, + 445, + 288.3529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 172, + 288.3529411764706, + 445, + 301.764705882353 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 172, + 301.764705882353, + 445, + 315.17647058823536 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 172, + 315.17647058823536, + 445, + 328.58823529411774 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 172, + 328.58823529411774, + 445, + 342.0000000000001 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 352, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 352, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 211, + 367 + ], + "score": 1.0, + "content": "By exploiting the fact that", + "type": "text" + }, + { + "bbox": [ + 212, + 353, + 343, + 366 + ], + "score": 0.91, + "content": "q ( \\mathbf { s } _ { T } | \\mathbf { s } _ { 1 : T - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 352, + 506, + 367 + ], + "score": 1.0, + "content": ", we can derive closed-form solutions for", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 370, + 373, + 392 + ], + "lines": [ + { + "bbox": [ + 237, + 370, + 373, + 392 + ], + "spans": [ + { + "bbox": [ + 237, + 370, + 373, + 392 + ], + "score": 0.89, + "content": "\\mathbf { s } _ { T } ^ { * } \\ = \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)", + "type": "interline_equation", + "image_path": "0215a4e4a42354cf955bbd3e2063267be767c2d1401ee09d09e219cc6222c9c5.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 237, + 370, + 373, + 392 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 130, + 411 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 131, + 399, + 140, + 409 + ], + "score": 0.78, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "has special structure, which enables us to apply gradient descent to solve this constrained-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "optimization problem (examples below). With a closed form solution to equation 6, we can easily", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 420, + 371, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 371, + 432 + ], + "score": 1.0, + "content": "compute equation 5 using unconstrained-optimization as follows:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 437, + 442, + 507 + ], + "lines": [ + { + "bbox": [ + 169, + 437, + 442, + 507 + ], + "spans": [ + { + "bbox": [ + 169, + 437, + 442, + 507 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { { \\bf s } _ { 1 : T } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } { \\bf s } _ { T } \\in \\mathbb { G } _ { \\mathrm { i n e - s e g m a x } } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } | { \\bf s } _ { 1 : T - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) } \\\\ & { { \\bf s } _ { 1 : T - 1 } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } ^ { * } | { \\bf s } _ { 1 : t - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4e6528090e8c4871dd35909ff3621a55e5aa62e1fb99b29be8f12c9b4ac99c50.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 169, + 437, + 442, + 460.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 169, + 460.3333333333333, + 442, + 483.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 169, + 483.66666666666663, + 442, + 506.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "Note that equation 8 only helps solve equation 5 if equation 6 has a closed-form solution. We detail", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 545, + 438, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 438, + 559 + ], + "score": 1.0, + "content": "example of goal-sets with such closed-form solutions in the following subsections.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "title", + "bbox": [ + 107, + 570, + 215, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 216, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 216, + 582 + ], + "score": 1.0, + "content": "B.1.1 POINT GOAL-SET", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 428, + 602 + ], + "lines": [ + { + "bbox": [ + 104, + 587, + 429, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 352, + 604 + ], + "score": 1.0, + "content": "The solution to equation 6 in the case of a single desired goal", + "type": "text" + }, + { + "bbox": [ + 353, + 589, + 385, + 601 + ], + "score": 0.92, + "content": "g \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 587, + 429, + 604 + ], + "score": 1.0, + "content": "is simply:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 607, + 380, + 661 + ], + "lines": [ + { + "bbox": [ + 230, + 607, + 380, + 661 + ], + "spans": [ + { + "bbox": [ + 230, + 607, + 380, + 661 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\mathbb { G } _ { \\mathrm { p o i n t } } ~ \\doteq ~ \\{ \\mathbf { g } _ { T } \\} , } & { } \\\\ { \\mathbf { s } _ { T , \\mathrm { p o i n t } } ^ { * } ~ \\doteq ~ \\mathrm { a r g } \\operatorname* { m a x } \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) } & { } \\\\ & { ~ \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { p o i n t } } } \\\\ { ~ } & { = ~ \\mathbf { g } _ { T } . } \\end{array}", + "type": "interline_equation", + "image_path": "55df557501a6749043e9822de5551d4d8e8641545ce67fb56d24f303bde57d8f.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 607, + 380, + 634.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 230, + 634.0, + 380, + 661.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 665, + 504, + 688 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 505, + 680 + ], + "score": 1.0, + "content": "More generally, multiple point goals help define optional end points for planning: where the agent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 676, + 415, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 415, + 689 + ], + "score": 1.0, + "content": "only need reach one valid end point (see Fig. 8 for examples), formulated as:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5 + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 693, + 385, + 735 + ], + "lines": [ + { + "bbox": [ + 225, + 693, + 385, + 735 + ], + "spans": [ + { + "bbox": [ + 225, + 693, + 385, + 735 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\displaystyle \\mathbb { G } _ { \\mathrm { p o i n t s } } } & { \\doteq } & { \\displaystyle \\{ \\mathbf { g } _ { T } ^ { k } \\} _ { k = 1 } ^ { K } , } \\\\ { \\displaystyle \\mathbf { s } _ { T , \\mathrm { p o i n t s } } ^ { * } } & { \\stackrel { \\cdot } { = } } & { \\arg \\operatorname* { m a x } _ { T } \\mathcal { N } \\left( \\mathbf { g } _ { T } ^ { k } ; \\boldsymbol { \\mu } _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "892a0d13437844aecaf4c475ffdbd98caf65deee76aea584c5f1ece8367b72df.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 225, + 693, + 385, + 707.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 225, + 707.0, + 385, + 721.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 225, + 721.0, + 385, + 735.0 + ], + "spans": [], + "index": 37 + } + ] + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 398, + 95 + ], + "score": 1.0, + "content": "which serves as our goal likelihood when using goal with set constraints:", + "type": "text" + }, + { + "bbox": [ + 399, + 82, + 485, + 95 + ], + "score": 0.93, + "content": "p ( \\mathcal { G } | \\mathbf { s } _ { 1 : T } ) \\gets \\delta _ { S _ { T } } ( \\mathbb { G } )", + "type": "inline_equation" + }, + { + "bbox": [ + 486, + 82, + 505, + 95 + ], + "score": 1.0, + "content": ". We", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 409, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 409, + 106 + ], + "score": 1.0, + "content": "now derive the corresponding maximum a posteriori optimization problem:", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 505, + 106 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 172, + 114, + 445, + 342 + ], + "lines": [ + { + "bbox": [ + 172, + 114, + 445, + 342 + ], + "spans": [ + { + "bbox": [ + 172, + 114, + 445, + 342 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\mathbf { f } _ { \\perp \\perp } } & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\{ ( \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ) \\cdot \\boldsymbol { F } _ { \\perp \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { S } _ { \\parallel } \\cdot \\mathbf { u } _ { \\mathrm { L } } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\frac { \\boldsymbol { F } _ { \\perp } \\lambda _ { \\mathrm { R } } ^ { \\perp } } { \\lambda _ { \\mathrm { R } } ^ { \\perp } \\sin { \\mathrm { R } } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } \\} } \\\\ & = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp } \\cdot \\mathbf { J } _ { \\perp } \\end{array}", + "type": "interline_equation", + "image_path": "493b80b970e59ee14ec8153483f7117d75abffff384a516874df423344d29019.jpg" + } + ] + } + ], + "index": 10, + "virtual_lines": [ + { + "bbox": [ + 172, + 114, + 445, + 127.41176470588235 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 172, + 127.41176470588235, + 445, + 140.8235294117647 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 172, + 140.8235294117647, + 445, + 154.23529411764704 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 172, + 154.23529411764704, + 445, + 167.6470588235294 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 172, + 167.6470588235294, + 445, + 181.05882352941174 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 172, + 181.05882352941174, + 445, + 194.4705882352941 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 172, + 194.4705882352941, + 445, + 207.88235294117644 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 172, + 207.88235294117644, + 445, + 221.29411764705878 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 172, + 221.29411764705878, + 445, + 234.70588235294113 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 172, + 234.70588235294113, + 445, + 248.11764705882348 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 172, + 248.11764705882348, + 445, + 261.52941176470586 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 172, + 261.52941176470586, + 445, + 274.94117647058823 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 172, + 274.94117647058823, + 445, + 288.3529411764706 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 172, + 288.3529411764706, + 445, + 301.764705882353 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 172, + 301.764705882353, + 445, + 315.17647058823536 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 172, + 315.17647058823536, + 445, + 328.58823529411774 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 172, + 328.58823529411774, + 445, + 342.0000000000001 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 352, + 504, + 366 + ], + "lines": [ + { + "bbox": [ + 106, + 352, + 506, + 367 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 211, + 367 + ], + "score": 1.0, + "content": "By exploiting the fact that", + "type": "text" + }, + { + "bbox": [ + 212, + 353, + 343, + 366 + ], + "score": 0.91, + "content": "q ( \\mathbf { s } _ { T } | \\mathbf { s } _ { 1 : T - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 352, + 506, + 367 + ], + "score": 1.0, + "content": ", we can derive closed-form solutions for", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 352, + 506, + 367 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 237, + 370, + 373, + 392 + ], + "lines": [ + { + "bbox": [ + 237, + 370, + 373, + 392 + ], + "spans": [ + { + "bbox": [ + 237, + 370, + 373, + 392 + ], + "score": 0.89, + "content": "\\mathbf { s } _ { T } ^ { * } \\ = \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)", + "type": "interline_equation", + "image_path": "0215a4e4a42354cf955bbd3e2063267be767c2d1401ee09d09e219cc6222c9c5.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 237, + 370, + 373, + 392 + ], + "spans": [], + "index": 20 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 398, + 505, + 432 + ], + "lines": [ + { + "bbox": [ + 105, + 398, + 506, + 411 + ], + "spans": [ + { + "bbox": [ + 105, + 398, + 130, + 411 + ], + "score": 1.0, + "content": "when", + "type": "text" + }, + { + "bbox": [ + 131, + 399, + 140, + 409 + ], + "score": 0.78, + "content": "\\mathbb { G }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 398, + 506, + 411 + ], + "score": 1.0, + "content": "has special structure, which enables us to apply gradient descent to solve this constrained-", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "spans": [ + { + "bbox": [ + 105, + 409, + 505, + 423 + ], + "score": 1.0, + "content": "optimization problem (examples below). With a closed form solution to equation 6, we can easily", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 420, + 371, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 371, + 432 + ], + "score": 1.0, + "content": "compute equation 5 using unconstrained-optimization as follows:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 398, + 506, + 432 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 169, + 437, + 442, + 507 + ], + "lines": [ + { + "bbox": [ + 169, + 437, + 442, + 507 + ], + "spans": [ + { + "bbox": [ + 169, + 437, + 442, + 507 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { { \\bf s } _ { 1 : T } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } { \\bf s } _ { T } \\in \\mathbb { G } _ { \\mathrm { i n e - s e g m a x } } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } | { \\bf s } _ { 1 : T - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) } \\\\ & { { \\bf s } _ { 1 : T - 1 } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } ^ { * } | { \\bf s } _ { 1 : t - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "4e6528090e8c4871dd35909ff3621a55e5aa62e1fb99b29be8f12c9b4ac99c50.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 169, + 437, + 442, + 460.3333333333333 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 169, + 460.3333333333333, + 442, + 483.66666666666663 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 169, + 483.66666666666663, + 442, + 506.99999999999994 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 534, + 505, + 558 + ], + "lines": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "spans": [ + { + "bbox": [ + 106, + 534, + 505, + 547 + ], + "score": 1.0, + "content": "Note that equation 8 only helps solve equation 5 if equation 6 has a closed-form solution. We detail", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 545, + 438, + 559 + ], + "spans": [ + { + "bbox": [ + 105, + 545, + 438, + 559 + ], + "score": 1.0, + "content": "example of goal-sets with such closed-form solutions in the following subsections.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 534, + 505, + 559 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 570, + 215, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 570, + 216, + 582 + ], + "spans": [ + { + "bbox": [ + 106, + 570, + 216, + 582 + ], + "score": 1.0, + "content": "B.1.1 POINT GOAL-SET", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 428, + 602 + ], + "lines": [ + { + "bbox": [ + 104, + 587, + 429, + 604 + ], + "spans": [ + { + "bbox": [ + 104, + 587, + 352, + 604 + ], + "score": 1.0, + "content": "The solution to equation 6 in the case of a single desired goal", + "type": "text" + }, + { + "bbox": [ + 353, + 589, + 385, + 601 + ], + "score": 0.92, + "content": "g \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 587, + 429, + 604 + ], + "score": 1.0, + "content": "is simply:", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 104, + 587, + 429, + 604 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 230, + 607, + 380, + 661 + ], + "lines": [ + { + "bbox": [ + 230, + 607, + 380, + 661 + ], + "spans": [ + { + "bbox": [ + 230, + 607, + 380, + 661 + ], + "score": 0.93, + "content": "\\begin{array} { r l } { \\mathbb { G } _ { \\mathrm { p o i n t } } ~ \\doteq ~ \\{ \\mathbf { g } _ { T } \\} , } & { } \\\\ { \\mathbf { s } _ { T , \\mathrm { p o i n t } } ^ { * } ~ \\doteq ~ \\mathrm { a r g } \\operatorname* { m a x } \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) } & { } \\\\ & { ~ \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { p o i n t } } } \\\\ { ~ } & { = ~ \\mathbf { g } _ { T } . } \\end{array}", + "type": "interline_equation", + "image_path": "55df557501a6749043e9822de5551d4d8e8641545ce67fb56d24f303bde57d8f.jpg" + } + ] + } + ], + "index": 31.5, + "virtual_lines": [ + { + "bbox": [ + 230, + 607, + 380, + 634.0 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 230, + 634.0, + 380, + 661.0 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "text", + "bbox": [ + 104, + 665, + 504, + 688 + ], + "lines": [ + { + "bbox": [ + 105, + 664, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 105, + 664, + 505, + 680 + ], + "score": 1.0, + "content": "More generally, multiple point goals help define optional end points for planning: where the agent", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 676, + 415, + 689 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 415, + 689 + ], + "score": 1.0, + "content": "only need reach one valid end point (see Fig. 8 for examples), formulated as:", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 664, + 505, + 689 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 225, + 693, + 385, + 735 + ], + "lines": [ + { + "bbox": [ + 225, + 693, + 385, + 735 + ], + "spans": [ + { + "bbox": [ + 225, + 693, + 385, + 735 + ], + "score": 0.94, + "content": "\\begin{array} { r c l } { \\displaystyle \\mathbb { G } _ { \\mathrm { p o i n t s } } } & { \\doteq } & { \\displaystyle \\{ \\mathbf { g } _ { T } ^ { k } \\} _ { k = 1 } ^ { K } , } \\\\ { \\displaystyle \\mathbf { s } _ { T , \\mathrm { p o i n t s } } ^ { * } } & { \\stackrel { \\cdot } { = } } & { \\arg \\operatorname* { m a x } _ { T } \\mathcal { N } \\left( \\mathbf { g } _ { T } ^ { k } ; \\boldsymbol { \\mu } _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) . } \\end{array}", + "type": "interline_equation", + "image_path": "892a0d13437844aecaf4c475ffdbd98caf65deee76aea584c5f1ece8367b72df.jpg" + } + ] + } + ], + "index": 36, + "virtual_lines": [ + { + "bbox": [ + 225, + 693, + 385, + 707.0 + ], + "spans": [], + "index": 35 + }, + { + "bbox": [ + 225, + 707.0, + 385, + 721.0 + ], + "spans": [], + "index": 36 + }, + { + "bbox": [ + 225, + 721.0, + 385, + 735.0 + ], + "spans": [], + "index": 37 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 254, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 255, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 255, + 94 + ], + "score": 1.0, + "content": "B.1.2 LINE-SEGMENT GOAL-SET", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 499, + 114 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 500, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 394, + 115 + ], + "score": 1.0, + "content": "We can form a goal-set as a finite-length line segment, connecting point", + "type": "text" + }, + { + "bbox": [ + 394, + 101, + 427, + 112 + ], + "score": 0.91, + "content": "\\mathbf { a } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 99, + 462, + 115 + ], + "score": 1.0, + "content": "to point", + "type": "text" + }, + { + "bbox": [ + 463, + 102, + 496, + 111 + ], + "score": 0.91, + "content": "\\mathbf { b } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 99, + 500, + 115 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 117, + 387, + 149 + ], + "lines": [ + { + "bbox": [ + 223, + 117, + 387, + 149 + ], + "spans": [ + { + "bbox": [ + 223, + 117, + 387, + 149 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { g _ { \\mathrm { l i n e } } ( u ) } & { \\doteq \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) , ~ u \\in \\mathbb { R } , } \\\\ { \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } ^ { \\mathbf { a } \\to \\mathbf { b } } } & { \\doteq \\{ g _ { \\mathrm { l i n e } } ( u ) : u \\in [ 0 , 1 ] \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "f2a6e2dd18d7c6730ab18c595c4709a88cc510b3067ffce6a6d51727220db903.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 117, + 387, + 133.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 223, + 133.0, + 387, + 149.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 357, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 358, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 358, + 165 + ], + "score": 1.0, + "content": "The solution to equation 6 in the case of line-segment goals is:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 165, + 465, + 223 + ], + "lines": [ + { + "bbox": [ + 145, + 165, + 465, + 223 + ], + "spans": [ + { + "bbox": [ + 145, + 165, + 465, + 223 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ \\doteq \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { l i n e - s e m e n t } } ^ { \\mathrm { a v } } } { \\arg \\operatorname* { m a x } } \\ N \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\mathbf { a } + \\operatorname* { m i n } \\left( 1 , \\ \\operatorname* { m a x } \\left( 0 , \\ \\frac { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\right) \\right) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "f5b41fa9acf9f52d1b00ee6cc285c1c124ca8d61bf15a898548703bee0660bf4.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 145, + 165, + 465, + 184.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 145, + 184.33333333333334, + 465, + 203.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 145, + 203.66666666666669, + 465, + 223.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 231, + 135, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 136, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 136, + 244 + ], + "score": 1.0, + "content": "Proof:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 337, + 262 + ], + "score": 1.0, + "content": "To solve equation 15 is to find which point along the line", + "type": "text" + }, + { + "bbox": [ + 338, + 248, + 367, + 261 + ], + "score": 0.92, + "content": "g _ { \\mathrm { l i n e } } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 246, + 415, + 262 + ], + "score": 1.0, + "content": "maximizes", + "type": "text" + }, + { + "bbox": [ + 415, + 248, + 473, + 261 + ], + "score": 0.91, + "content": "\\mathcal { N } ( \\cdot ; \\mu _ { T } , \\Sigma _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 246, + 506, + 262 + ], + "score": 1.0, + "content": "subject", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 258, + 221, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 173, + 271 + ], + "score": 1.0, + "content": "to the constraint", + "type": "text" + }, + { + "bbox": [ + 173, + 260, + 217, + 270 + ], + "score": 0.92, + "content": "0 \\leq u \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 258, + 221, + 271 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5 + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 273, + 416, + 330 + ], + "lines": [ + { + "bbox": [ + 194, + 273, + 416, + 330 + ], + "spans": [ + { + "bbox": [ + 194, + 273, + 416, + 330 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { u ^ { * } \\ \\doteq \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( g _ { \\mathrm { l i n e } } ( u ) ; \\boldsymbol { \\mu } _ { T } , \\Sigma _ { T } \\right) ) } \\\\ & { \\quad = \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\ \\underbrace { \\left( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } ) } _ { \\mathcal { L } _ { u } ( u ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "e205b350c5381762b197cb36bd0db1e66f43ab03969176ed7d06899a63697396.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 273, + 416, + 287.25 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 194, + 287.25, + 416, + 301.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 194, + 301.5, + 416, + 315.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 194, + 315.75, + 416, + 330.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 507, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 132, + 349 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 335, + 145, + 345 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 332, + 264, + 349 + ], + "score": 1.0, + "content": "is convex, the optimal value", + "type": "text" + }, + { + "bbox": [ + 264, + 335, + 275, + 344 + ], + "score": 0.87, + "content": "u ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 332, + 476, + 349 + ], + "score": 1.0, + "content": "is value closest to the unconstrained arg max of", + "type": "text" + }, + { + "bbox": [ + 476, + 335, + 502, + 347 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { u } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 332, + 507, + 349 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 345, + 195, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 147, + 358 + ], + "score": 1.0, + "content": "subject to", + "type": "text" + }, + { + "bbox": [ + 148, + 346, + 191, + 356 + ], + "score": 0.91, + "content": "0 \\leq u \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 345, + 195, + 358 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5 + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 359, + 369, + 421 + ], + "lines": [ + { + "bbox": [ + 242, + 359, + 369, + 421 + ], + "spans": [ + { + "bbox": [ + 242, + 359, + 369, + 421 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } \\doteq \\underset { u \\in \\mathbb { R } } { \\arg \\operatorname* { m a x } } \\mathcal { L } _ { u } ( u ) , } \\\\ & { u ^ { * } = \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\mathcal { L } _ { u } ( u ) } \\\\ & { \\quad = \\underset { \\quad \\operatorname* { m i n } \\big ( 1 , \\ : \\operatorname* { m a x } \\big ( 0 , \\ : u _ { \\mathbb { R } } ^ { * } \\big ) \\big ) . } { \\operatorname* { m i n } } } \\end{array}", + "type": "interline_equation", + "image_path": "94744784fb1b140a0885bcf2c3b01b8363691b80548f064a03ad7327e7ecaaae.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 359, + 369, + 390.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 242, + 390.0, + 369, + 421.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 423, + 194, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 191, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 178, + 438 + ], + "score": 1.0, + "content": "We now solve for", + "type": "text" + }, + { + "bbox": [ + 179, + 424, + 191, + 436 + ], + "score": 0.9, + "content": "u _ { \\mathbb { R } } ^ { * }", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 439, + 473, + 568 + ], + "lines": [ + { + "bbox": [ + 138, + 439, + 473, + 568 + ], + "spans": [ + { + "bbox": [ + 138, + 439, + 473, + 568 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } = u : 0 = \\frac { \\mathrm { d } \\mathcal { L } ( u ) } { \\mathrm { d } u } = \\frac { \\mathrm { d } \\left( \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) \\right) } { \\mathrm { d } u } } \\\\ & { \\phantom { \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( \\mathbf { a } + u \\cdot \\left( \\mathbf { b } - \\mathbf { a } \\right) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } \\right) , } \\\\ & { \\quad \\quad \\quad u _ { \\mathbb { R } } ^ { * } = \\frac { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mu _ { T } - \\mathbf { a } \\right) } { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { b } - \\mathbf { a } \\right) } , } \\end{array}", + "type": "interline_equation", + "image_path": "383c0c8a2990a8a1fe9bc2785c13e5c499c68024863d7e4d31d60fb8f6d65484.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 138, + 439, + 473, + 482.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 138, + 482.0, + 473, + 525.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 138, + 525.0, + 473, + 568.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 169, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 171, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 171, + 581 + ], + "score": 1.0, + "content": "which gives us:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 583, + 465, + 659 + ], + "lines": [ + { + "bbox": [ + 145, + 583, + 465, + 659 + ], + "spans": [ + { + "bbox": [ + 145, + 583, + 465, + 659 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ = \\ g _ { \\mathrm { l i n e } } ( u ^ { * } ) } \\\\ & { \\ = \\ \\mathbf { a } + u ^ { * } \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\big ( 1 , \\ \\operatorname* { m a x } \\big ( 0 , \\ u _ { \\mathtt { R } } ^ { * } \\big ) \\big ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\bigg ( 1 , \\ \\operatorname* { m a x } \\bigg ( 0 , \\ \\frac { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\bigg ) \\bigg ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "db6cf4792fb5adcc58aa8af0125af07ce0cae092a9dbefba72ab984801bae039.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 145, + 583, + 465, + 608.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 145, + 608.3333333333334, + 465, + 633.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 145, + 633.6666666666667, + 465, + 659.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 303, + 678 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 304, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 304, + 679 + ], + "score": 1.0, + "content": "B.1.3 MULTIPLE-LINE-SEGMENT GOAL-SET:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 106, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "score": 1.0, + "content": "More generally, we can combine multiple line-segments to form piecewise linear “paths” we wish", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 156, + 696, + 510, + 733 + ], + "spans": [ + { + "bbox": [ + 156, + 696, + 262, + 733 + ], + "score": 1.0, + "content": "y defining a path that con select the optimal segment", + "type": "text" + }, + { + "bbox": [ + 315, + 698, + 380, + 709 + ], + "score": 0.9, + "content": "\\left( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } , . . . , \\mathbf { p } _ { N } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 696, + 421, + 733 + ], + "score": 1.0, + "content": ", we can e segment", + "type": "text" + }, + { + "bbox": [ + 430, + 696, + 453, + 733 + ], + "score": 1.0, + "content": "aluate ’s sol", + "type": "text" + }, + { + "bbox": [ + 454, + 697, + 467, + 709 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { u } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 696, + 482, + 733 + ], + "score": 1.0, + "content": "forn to", + "type": "text" + }, + { + "bbox": [ + 494, + 696, + 510, + 733 + ], + "score": 1.0, + "content": "chto", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 707, + 493, + 720 + ], + "spans": [ + { + "bbox": [ + 107, + 707, + 151, + 719 + ], + "score": 0.75, + "content": "\\mathbb { G } _ { \\mathsf { l i n e - s e o m e n t } } ^ { \\mathbf { p } _ { i } \\to \\mathbf { p } _ { i + 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 709, + 336, + 720 + ], + "score": 0.9, + "content": "i ^ { * } = \\arg \\operatorname* { m a x } _ { i } \\mathcal { L } _ { u } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 709, + 430, + 718 + ], + "score": 0.82, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 709, + 493, + 718 + ], + "score": 0.86, + "content": "u ^ { * }", + "type": "inline_equation" + } + ], + "index": 29 + }, + { + "bbox": [ + 144, + 721, + 155, + 733 + ], + "spans": [ + { + "bbox": [ + 144, + 721, + 155, + 733 + ], + "score": 0.88, + "content": "s _ { T } ^ { * }", + "type": "inline_equation" + } + ], + "index": 30 + } + ], + "index": 29.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 26, + 294, + 38 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 294, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "14", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 82, + 254, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 255, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 255, + 94 + ], + "score": 1.0, + "content": "B.1.2 LINE-SEGMENT GOAL-SET", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 106, + 100, + 499, + 114 + ], + "lines": [ + { + "bbox": [ + 105, + 99, + 500, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 99, + 394, + 115 + ], + "score": 1.0, + "content": "We can form a goal-set as a finite-length line segment, connecting point", + "type": "text" + }, + { + "bbox": [ + 394, + 101, + 427, + 112 + ], + "score": 0.91, + "content": "\\mathbf { a } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 99, + 462, + 115 + ], + "score": 1.0, + "content": "to point", + "type": "text" + }, + { + "bbox": [ + 463, + 102, + 496, + 111 + ], + "score": 0.91, + "content": "\\mathbf { b } \\in \\mathbb { R } ^ { D }", + "type": "inline_equation" + }, + { + "bbox": [ + 496, + 99, + 500, + 115 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 99, + 500, + 115 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 223, + 117, + 387, + 149 + ], + "lines": [ + { + "bbox": [ + 223, + 117, + 387, + 149 + ], + "spans": [ + { + "bbox": [ + 223, + 117, + 387, + 149 + ], + "score": 0.92, + "content": "\\begin{array} { r l } { g _ { \\mathrm { l i n e } } ( u ) } & { \\doteq \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) , ~ u \\in \\mathbb { R } , } \\\\ { \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } ^ { \\mathbf { a } \\to \\mathbf { b } } } & { \\doteq \\{ g _ { \\mathrm { l i n e } } ( u ) : u \\in [ 0 , 1 ] \\} . } \\end{array}", + "type": "interline_equation", + "image_path": "f2a6e2dd18d7c6730ab18c595c4709a88cc510b3067ffce6a6d51727220db903.jpg" + } + ] + } + ], + "index": 2.5, + "virtual_lines": [ + { + "bbox": [ + 223, + 117, + 387, + 133.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 223, + 133.0, + 387, + 149.0 + ], + "spans": [], + "index": 3 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 151, + 357, + 163 + ], + "lines": [ + { + "bbox": [ + 105, + 149, + 358, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 149, + 358, + 165 + ], + "score": 1.0, + "content": "The solution to equation 6 in the case of line-segment goals is:", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 149, + 358, + 165 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 165, + 465, + 223 + ], + "lines": [ + { + "bbox": [ + 145, + 165, + 465, + 223 + ], + "spans": [ + { + "bbox": [ + 145, + 165, + 465, + 223 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ \\doteq \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { l i n e - s e m e n t } } ^ { \\mathrm { a v } } } { \\arg \\operatorname* { m a x } } \\ N \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\mathbf { a } + \\operatorname* { m i n } \\left( 1 , \\ \\operatorname* { m a x } \\left( 0 , \\ \\frac { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\right) \\right) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "f5b41fa9acf9f52d1b00ee6cc285c1c124ca8d61bf15a898548703bee0660bf4.jpg" + } + ] + } + ], + "index": 6, + "virtual_lines": [ + { + "bbox": [ + 145, + 165, + 465, + 184.33333333333334 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 145, + 184.33333333333334, + 465, + 203.66666666666669 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 145, + 203.66666666666669, + 465, + 223.00000000000003 + ], + "spans": [], + "index": 7 + } + ] + }, + { + "type": "title", + "bbox": [ + 106, + 231, + 135, + 242 + ], + "lines": [ + { + "bbox": [ + 106, + 231, + 136, + 244 + ], + "spans": [ + { + "bbox": [ + 106, + 231, + 136, + 244 + ], + "score": 1.0, + "content": "Proof:", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 337, + 262 + ], + "score": 1.0, + "content": "To solve equation 15 is to find which point along the line", + "type": "text" + }, + { + "bbox": [ + 338, + 248, + 367, + 261 + ], + "score": 0.92, + "content": "g _ { \\mathrm { l i n e } } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 368, + 246, + 415, + 262 + ], + "score": 1.0, + "content": "maximizes", + "type": "text" + }, + { + "bbox": [ + 415, + 248, + 473, + 261 + ], + "score": 0.91, + "content": "\\mathcal { N } ( \\cdot ; \\mu _ { T } , \\Sigma _ { T } )", + "type": "inline_equation" + }, + { + "bbox": [ + 473, + 246, + 506, + 262 + ], + "score": 1.0, + "content": "subject", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 258, + 221, + 271 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 173, + 271 + ], + "score": 1.0, + "content": "to the constraint", + "type": "text" + }, + { + "bbox": [ + 173, + 260, + 217, + 270 + ], + "score": 0.92, + "content": "0 \\leq u \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 217, + 258, + 221, + 271 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9.5, + "bbox_fs": [ + 105, + 246, + 506, + 271 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 194, + 273, + 416, + 330 + ], + "lines": [ + { + "bbox": [ + 194, + 273, + 416, + 330 + ], + "spans": [ + { + "bbox": [ + 194, + 273, + 416, + 330 + ], + "score": 0.93, + "content": "\\begin{array} { r l } & { u ^ { * } \\ \\doteq \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( g _ { \\mathrm { l i n e } } ( u ) ; \\boldsymbol { \\mu } _ { T } , \\Sigma _ { T } \\right) ) } \\\\ & { \\quad = \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\ \\underbrace { \\left( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } ) } _ { \\mathcal { L } _ { u } ( u ) } . } \\end{array}", + "type": "interline_equation", + "image_path": "e205b350c5381762b197cb36bd0db1e66f43ab03969176ed7d06899a63697396.jpg" + } + ] + } + ], + "index": 12.5, + "virtual_lines": [ + { + "bbox": [ + 194, + 273, + 416, + 287.25 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 194, + 287.25, + 416, + 301.5 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 194, + 301.5, + 416, + 315.75 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 194, + 315.75, + 416, + 330.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 334, + 505, + 357 + ], + "lines": [ + { + "bbox": [ + 105, + 332, + 507, + 349 + ], + "spans": [ + { + "bbox": [ + 105, + 332, + 132, + 349 + ], + "score": 1.0, + "content": "Since", + "type": "text" + }, + { + "bbox": [ + 132, + 335, + 145, + 345 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { u }", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 332, + 264, + 349 + ], + "score": 1.0, + "content": "is convex, the optimal value", + "type": "text" + }, + { + "bbox": [ + 264, + 335, + 275, + 344 + ], + "score": 0.87, + "content": "u ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 332, + 476, + 349 + ], + "score": 1.0, + "content": "is value closest to the unconstrained arg max of", + "type": "text" + }, + { + "bbox": [ + 476, + 335, + 502, + 347 + ], + "score": 0.92, + "content": "\\mathcal { L } _ { u } ( u )", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 332, + 507, + 349 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 345, + 195, + 358 + ], + "spans": [ + { + "bbox": [ + 105, + 345, + 147, + 358 + ], + "score": 1.0, + "content": "subject to", + "type": "text" + }, + { + "bbox": [ + 148, + 346, + 191, + 356 + ], + "score": 0.91, + "content": "0 \\leq u \\leq 1", + "type": "inline_equation" + }, + { + "bbox": [ + 191, + 345, + 195, + 358 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15.5, + "bbox_fs": [ + 105, + 332, + 507, + 358 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 242, + 359, + 369, + 421 + ], + "lines": [ + { + "bbox": [ + 242, + 359, + 369, + 421 + ], + "spans": [ + { + "bbox": [ + 242, + 359, + 369, + 421 + ], + "score": 0.94, + "content": "\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } \\doteq \\underset { u \\in \\mathbb { R } } { \\arg \\operatorname* { m a x } } \\mathcal { L } _ { u } ( u ) , } \\\\ & { u ^ { * } = \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\mathcal { L } _ { u } ( u ) } \\\\ & { \\quad = \\underset { \\quad \\operatorname* { m i n } \\big ( 1 , \\ : \\operatorname* { m a x } \\big ( 0 , \\ : u _ { \\mathbb { R } } ^ { * } \\big ) \\big ) . } { \\operatorname* { m i n } } } \\end{array}", + "type": "interline_equation", + "image_path": "94744784fb1b140a0885bcf2c3b01b8363691b80548f064a03ad7327e7ecaaae.jpg" + } + ] + } + ], + "index": 17.5, + "virtual_lines": [ + { + "bbox": [ + 242, + 359, + 369, + 390.0 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 242, + 390.0, + 369, + 421.0 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 423, + 194, + 435 + ], + "lines": [ + { + "bbox": [ + 105, + 420, + 191, + 438 + ], + "spans": [ + { + "bbox": [ + 105, + 420, + 178, + 438 + ], + "score": 1.0, + "content": "We now solve for", + "type": "text" + }, + { + "bbox": [ + 179, + 424, + 191, + 436 + ], + "score": 0.9, + "content": "u _ { \\mathbb { R } } ^ { * }", + "type": "inline_equation" + } + ], + "index": 19 + } + ], + "index": 19, + "bbox_fs": [ + 105, + 420, + 191, + 438 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 138, + 439, + 473, + 568 + ], + "lines": [ + { + "bbox": [ + 138, + 439, + 473, + 568 + ], + "spans": [ + { + "bbox": [ + 138, + 439, + 473, + 568 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } = u : 0 = \\frac { \\mathrm { d } \\mathcal { L } ( u ) } { \\mathrm { d } u } = \\frac { \\mathrm { d } \\left( \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) \\right) } { \\mathrm { d } u } } \\\\ & { \\phantom { \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( \\mathbf { a } + u \\cdot \\left( \\mathbf { b } - \\mathbf { a } \\right) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } \\right) , } \\\\ & { \\quad \\quad \\quad u _ { \\mathbb { R } } ^ { * } = \\frac { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mu _ { T } - \\mathbf { a } \\right) } { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { b } - \\mathbf { a } \\right) } , } \\end{array}", + "type": "interline_equation", + "image_path": "383c0c8a2990a8a1fe9bc2785c13e5c499c68024863d7e4d31d60fb8f6d65484.jpg" + } + ] + } + ], + "index": 21, + "virtual_lines": [ + { + "bbox": [ + 138, + 439, + 473, + 482.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 138, + 482.0, + 473, + 525.0 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 138, + 525.0, + 473, + 568.0 + ], + "spans": [], + "index": 22 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 169, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 171, + 581 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 171, + 581 + ], + "score": 1.0, + "content": "which gives us:", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23, + "bbox_fs": [ + 106, + 567, + 171, + 581 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 145, + 583, + 465, + 659 + ], + "lines": [ + { + "bbox": [ + 145, + 583, + 465, + 659 + ], + "spans": [ + { + "bbox": [ + 145, + 583, + 465, + 659 + ], + "score": 0.95, + "content": "\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ = \\ g _ { \\mathrm { l i n e } } ( u ^ { * } ) } \\\\ & { \\ = \\ \\mathbf { a } + u ^ { * } \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\big ( 1 , \\ \\operatorname* { m a x } \\big ( 0 , \\ u _ { \\mathtt { R } } ^ { * } \\big ) \\big ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\bigg ( 1 , \\ \\operatorname* { m a x } \\bigg ( 0 , \\ \\frac { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\bigg ) \\bigg ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}", + "type": "interline_equation", + "image_path": "db6cf4792fb5adcc58aa8af0125af07ce0cae092a9dbefba72ab984801bae039.jpg" + } + ] + } + ], + "index": 25, + "virtual_lines": [ + { + "bbox": [ + 145, + 583, + 465, + 608.3333333333334 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 145, + 608.3333333333334, + 465, + 633.6666666666667 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 145, + 633.6666666666667, + 465, + 659.0000000000001 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "title", + "bbox": [ + 107, + 667, + 303, + 678 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 304, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 304, + 679 + ], + "score": 1.0, + "content": "B.1.3 MULTIPLE-LINE-SEGMENT GOAL-SET:", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "list", + "bbox": [ + 106, + 686, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "spans": [ + { + "bbox": [ + 105, + 685, + 505, + 698 + ], + "score": 1.0, + "content": "More generally, we can combine multiple line-segments to form piecewise linear “paths” we wish", + "type": "text" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 156, + 696, + 510, + 733 + ], + "spans": [ + { + "bbox": [ + 156, + 696, + 262, + 733 + ], + "score": 1.0, + "content": "y defining a path that con select the optimal segment", + "type": "text" + }, + { + "bbox": [ + 315, + 698, + 380, + 709 + ], + "score": 0.9, + "content": "\\left( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } , . . . , \\mathbf { p } _ { N } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 381, + 696, + 421, + 733 + ], + "score": 1.0, + "content": ", we can e segment", + "type": "text" + }, + { + "bbox": [ + 430, + 696, + 453, + 733 + ], + "score": 1.0, + "content": "aluate ’s sol", + "type": "text" + }, + { + "bbox": [ + 454, + 697, + 467, + 709 + ], + "score": 0.91, + "content": "\\mathcal { L } _ { u } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 696, + 482, + 733 + ], + "score": 1.0, + "content": "forn to", + "type": "text" + }, + { + "bbox": [ + 494, + 696, + 510, + 733 + ], + "score": 1.0, + "content": "chto", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 107, + 707, + 493, + 720 + ], + "spans": [ + { + "bbox": [ + 107, + 707, + 151, + 719 + ], + "score": 0.75, + "content": "\\mathbb { G } _ { \\mathsf { l i n e - s e o m e n t } } ^ { \\mathbf { p } _ { i } \\to \\mathbf { p } _ { i + 1 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 709, + 336, + 720 + ], + "score": 0.9, + "content": "i ^ { * } = \\arg \\operatorname* { m a x } _ { i } \\mathcal { L } _ { u } ^ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 421, + 709, + 430, + 718 + ], + "score": 0.82, + "content": "i ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 482, + 709, + 493, + 718 + ], + "score": 0.86, + "content": "u ^ { * }", + "type": "inline_equation" + } + ], + "index": 29, + "is_list_start_line": true, + "is_list_end_line": true + }, + { + "bbox": [ + 144, + 721, + 155, + 733 + ], + "spans": [ + { + "bbox": [ + 144, + 721, + 155, + 733 + ], + "score": 0.88, + "content": "s _ { T } ^ { * }", + "type": "inline_equation" + } + ], + "index": 30, + "is_list_end_line": true + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 685, + 510, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 229, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 230, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 230, + 94 + ], + "score": 1.0, + "content": "B.1.4 POLYGON GOAL-SET", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "Instead of a route or path, a user (or program) may wish to provide a general region the agent should", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "score": 1.0, + "content": "go to, and state within that region being equally valid. Polygon regions (including both boundary", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "and interior) offer closed form solution to equation 6 and are simple to specify. A polygon can be", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 133, + 507, + 149 + ], + "spans": [ + { + "bbox": [ + 103, + 133, + 290, + 149 + ], + "score": 1.0, + "content": "specified by an ordered sequence of vertices", + "type": "text" + }, + { + "bbox": [ + 290, + 134, + 393, + 147 + ], + "score": 0.91, + "content": "( { \\bf p } _ { 0 } , { \\bf p } _ { 1 } , . . . , { \\bf p } _ { N } ) \\in \\bar { \\mathbb { R } } ^ { N \\times 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 133, + 507, + 149 + ], + "score": 1.0, + "content": ". Edges are then defined as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "the sequence of line-segments between successive vertices (and a final edge between first and last", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 156, + 429, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 141, + 170 + ], + "score": 1.0, + "content": "vertex):", + "type": "text" + }, + { + "bbox": [ + 141, + 156, + 291, + 169 + ], + "score": 0.88, + "content": "\\big ( \\big ( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } \\big ) , . . . , \\big ( \\mathbf { p } _ { N - 1 } , \\mathbf { p } _ { N } \\big ) , \\big ( \\mathbf { p } _ { N } , \\mathbf { p } _ { 0 } \\big ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 156, + 429, + 170 + ], + "score": 1.0, + "content": ". Examples shown in Fig. 6 and 7.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 390, + 186 + ], + "score": 1.0, + "content": "Solving equation 6 with a polygon has two cases: depending whether", + "type": "text" + }, + { + "bbox": [ + 390, + 176, + 403, + 185 + ], + "score": 0.86, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "is inside the polygon, or", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 150, + 197 + ], + "score": 1.0, + "content": "outside. If", + "type": "text" + }, + { + "bbox": [ + 150, + 186, + 164, + 196 + ], + "score": 0.87, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 184, + 364, + 197 + ], + "score": 1.0, + "content": "lies inside the polygon, then the optimal value for", + "type": "text" + }, + { + "bbox": [ + 365, + 185, + 376, + 197 + ], + "score": 0.88, + "content": "\\mathbf { s } _ { T } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 184, + 441, + 197 + ], + "score": 1.0, + "content": "that maximizes", + "type": "text" + }, + { + "bbox": [ + 441, + 185, + 505, + 197 + ], + "score": 0.92, + "content": "\\mathcal { N } ( \\mathbf { s } _ { T } ^ { * } ; \\mu _ { T } , \\boldsymbol { \\Sigma _ { T } } )", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 145, + 208 + ], + "score": 1.0, + "content": "is simply", + "type": "text" + }, + { + "bbox": [ + 145, + 197, + 158, + 207 + ], + "score": 0.85, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 196, + 371, + 208 + ], + "score": 1.0, + "content": ": the mode of the Gaussian distribution. Otherwise, if", + "type": "text" + }, + { + "bbox": [ + 371, + 197, + 385, + 207 + ], + "score": 0.87, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "lies outside the polygon, then", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 207, + 424, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 177, + 218 + ], + "score": 1.0, + "content": "the optimal value", + "type": "text" + }, + { + "bbox": [ + 178, + 207, + 190, + 219 + ], + "score": 0.89, + "content": "\\mathbf { s } _ { T } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 207, + 424, + 218 + ], + "score": 1.0, + "content": "will lie on one of the polygon’s edges, solved using B.1.3.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5 + }, + { + "type": "title", + "bbox": [ + 108, + 231, + 231, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 232, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 232, + 244 + ], + "score": 1.0, + "content": "B.2 WAYPOINTER DETAILS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 506, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "score": 1.0, + "content": "The waypointer uses the CARLA planner’s provided route to generate waypoints. In the constrained-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "based planning goal likelihoods, we use this route to generate waypoints without interpolating", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "between them. In the relaxed goal likelihoods, we interpolate this route to every 2 meters, and use", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "the first 20 waypoints. As mentioned in the main text, one variant of our approach uses a “smart”", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 296, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 506, + 308 + ], + "score": 1.0, + "content": "waypointer. This waypointer simply removes nearby waypoints closer than 5 meters from the vehicle", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "when a green light is observed in the measurements provided by CARLA, to encourage the agent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "to move forward, and removes far waypoints beyond 5 meters from the vehicle when a red light is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "observed in the measurements provided by CARLA. Note that the performance differences between", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "our method without the smart waypointer and our method with the smart waypointer are small: the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "score": 1.0, + "content": "only signal in the metrics is that the smart waypointer improves the vehicle’s ability to stop for red", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 362, + 403, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 403, + 375 + ], + "score": 1.0, + "content": "lights, however, it is quite adept at doing so without the smart waypointer.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17 + }, + { + "type": "title", + "bbox": [ + 108, + 387, + 253, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 255, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 255, + 400 + ], + "score": 1.0, + "content": "B.3 CONSTRUCTING GOAL SETS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "Given the in-lane waypoints generated by CARLA’s route planner, we use these to create Point", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "goal sets, Line-Segment goal sets, and Polygon Goal-Sets, which respectively correspond to the (A)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "Final-State Indicator, (B) Line-Segment Final-State Indicator, and (C) Final-State Region Indicator", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "described in Section 2.2. For (A), we simply feed the waypoints directly into the Final-State Indicator,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 101, + 445, + 510, + 475 + ], + "spans": [ + { + "bbox": [ + 101, + 445, + 343, + 475 + ], + "score": 1.0, + "content": "which results in a constrained optimization to ensure that the vehicle’s current position in the goal set, in order to allo", + "type": "text" + }, + { + "bbox": [ + 343, + 451, + 427, + 464 + ], + "score": 0.92, + "content": "S _ { T } \\in \\mathbb { G } \\overset { \\cdot } { = } \\{ g _ { T } ^ { k } \\} _ { k = 1 } ^ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 445, + 510, + 475 + ], + "score": 1.0, + "content": ". We also includeddient-descent based", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 474, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 506, + 486 + ], + "score": 1.0, + "content": "optimization is then formed from combining Eq. 8 with Eq. 12. The gradient to the nearest goal of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "the final state of the partially-optimized plan encourage the optimization to move the plan closer", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 496, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 195, + 508 + ], + "score": 1.0, + "content": "to that goal. We used", + "type": "text" + }, + { + "bbox": [ + 195, + 496, + 229, + 506 + ], + "score": 0.9, + "content": "K = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 496, + 506, + 508 + ], + "score": 1.0, + "content": ". We applied the same procedure to generate the goal set for the (B)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "Line Segment indicator, as the waypoints returned by the planner are ordered. Finally, for the (C)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Final-State Region Indicator (polygon), we used the ordered waypoints as the “skeleton” of a polygon", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 381, + 540 + ], + "score": 1.0, + "content": "that surrounds. It was created by adding a two vertices for each point", + "type": "text" + }, + { + "bbox": [ + 381, + 529, + 393, + 539 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "in the skeleton at a distance", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 160, + 552 + ], + "score": 1.0, + "content": "1 meter from", + "type": "text" + }, + { + "bbox": [ + 160, + 541, + 171, + 550 + ], + "score": 0.84, + "content": "\\mathbf { v } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 539, + 428, + 552 + ], + "score": 1.0, + "content": "perpendicular to the segment connecting the surrounding points", + "type": "text" + }, + { + "bbox": [ + 428, + 539, + 480, + 551 + ], + "score": 0.91, + "content": "\\left( \\mathbf { v } _ { t - 1 } , \\mathbf { v } _ { t + 1 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 539, + 506, + 552 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 549, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 194, + 565 + ], + "score": 1.0, + "content": "resulted in a goal set", + "type": "text" + }, + { + "bbox": [ + 195, + 550, + 286, + 563 + ], + "score": 0.83, + "content": "\\mathbb { G } _ { \\mathrm { p o l y g o n } } \\supset \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } .", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 549, + 506, + 565 + ], + "score": 1.0, + "content": ", as it surrounds the line segments. The (F) Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Final-State Mixture goal set was constructed in the same way as (A), and also used when the pothole", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 573, + 180, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 180, + 583 + ], + "score": 1.0, + "content": "costs were added.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 600 + ], + "score": 1.0, + "content": "For the methods we implemented, the task is to drive the furthest road location from the vehicle’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 600, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 612 + ], + "score": 1.0, + "content": "initial position. Note that this protocol more difficult than the one used in prior work Codevilla et al.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "(2018); Liang et al. (2018); Sauer et al. (2018); Li et al. (2018); Codevilla et al. (2019), which has no", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 622, + 458, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 458, + 633 + ], + "score": 1.0, + "content": "distance guarantees between start positions and goals, and often results in shorter paths.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "title", + "bbox": [ + 107, + 649, + 339, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 340, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 340, + 664 + ], + "score": 1.0, + "content": "C ARCHITECTURE AND TRAINING DETAILS", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 674, + 294, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 674, + 296, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 185, + 687 + ], + "score": 1.0, + "content": "The architecture of", + "type": "text" + }, + { + "bbox": [ + 185, + 675, + 213, + 687 + ], + "score": 0.93, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 674, + 296, + 687 + ], + "score": 1.0, + "content": "is shown in Table 5.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44 + }, + { + "type": "title", + "bbox": [ + 107, + 699, + 304, + 711 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 304, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 304, + 712 + ], + "score": 1.0, + "content": "C.1 PRIOR VISUALIZATION AND STATISTICS", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 335, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 336, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 336, + 734 + ], + "score": 1.0, + "content": "We show examples of the priors multimodality in Fig. 13", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46 + } + ], + "page_idx": 14, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 229, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 230, + 94 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 230, + 94 + ], + "score": 1.0, + "content": "B.1.4 POLYGON GOAL-SET", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 169 + ], + "lines": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 105, + 102, + 505, + 115 + ], + "score": 1.0, + "content": "Instead of a route or path, a user (or program) may wish to provide a general region the agent should", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 506, + 126 + ], + "score": 1.0, + "content": "go to, and state within that region being equally valid. Polygon regions (including both boundary", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "and interior) offer closed form solution to equation 6 and are simple to specify. A polygon can be", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 133, + 507, + 149 + ], + "spans": [ + { + "bbox": [ + 103, + 133, + 290, + 149 + ], + "score": 1.0, + "content": "specified by an ordered sequence of vertices", + "type": "text" + }, + { + "bbox": [ + 290, + 134, + 393, + 147 + ], + "score": 0.91, + "content": "( { \\bf p } _ { 0 } , { \\bf p } _ { 1 } , . . . , { \\bf p } _ { N } ) \\in \\bar { \\mathbb { R } } ^ { N \\times 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 133, + 507, + 149 + ], + "score": 1.0, + "content": ". Edges are then defined as", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "spans": [ + { + "bbox": [ + 105, + 145, + 505, + 158 + ], + "score": 1.0, + "content": "the sequence of line-segments between successive vertices (and a final edge between first and last", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 156, + 429, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 156, + 141, + 170 + ], + "score": 1.0, + "content": "vertex):", + "type": "text" + }, + { + "bbox": [ + 141, + 156, + 291, + 169 + ], + "score": 0.88, + "content": "\\big ( \\big ( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } \\big ) , . . . , \\big ( \\mathbf { p } _ { N - 1 } , \\mathbf { p } _ { N } \\big ) , \\big ( \\mathbf { p } _ { N } , \\mathbf { p } _ { 0 } \\big ) \\big )", + "type": "inline_equation" + }, + { + "bbox": [ + 292, + 156, + 429, + 170 + ], + "score": 1.0, + "content": ". Examples shown in Fig. 6 and 7.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 103, + 102, + 507, + 170 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 173, + 505, + 218 + ], + "lines": [ + { + "bbox": [ + 105, + 173, + 506, + 186 + ], + "spans": [ + { + "bbox": [ + 105, + 173, + 390, + 186 + ], + "score": 1.0, + "content": "Solving equation 6 with a polygon has two cases: depending whether", + "type": "text" + }, + { + "bbox": [ + 390, + 176, + 403, + 185 + ], + "score": 0.86, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 173, + 506, + 186 + ], + "score": 1.0, + "content": "is inside the polygon, or", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 184, + 505, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 184, + 150, + 197 + ], + "score": 1.0, + "content": "outside. If", + "type": "text" + }, + { + "bbox": [ + 150, + 186, + 164, + 196 + ], + "score": 0.87, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 184, + 364, + 197 + ], + "score": 1.0, + "content": "lies inside the polygon, then the optimal value for", + "type": "text" + }, + { + "bbox": [ + 365, + 185, + 376, + 197 + ], + "score": 0.88, + "content": "\\mathbf { s } _ { T } ^ { * }", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 184, + 441, + 197 + ], + "score": 1.0, + "content": "that maximizes", + "type": "text" + }, + { + "bbox": [ + 441, + 185, + 505, + 197 + ], + "score": 0.92, + "content": "\\mathcal { N } ( \\mathbf { s } _ { T } ^ { * } ; \\mu _ { T } , \\boldsymbol { \\Sigma _ { T } } )", + "type": "inline_equation" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 196, + 505, + 208 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 145, + 208 + ], + "score": 1.0, + "content": "is simply", + "type": "text" + }, + { + "bbox": [ + 145, + 197, + 158, + 207 + ], + "score": 0.85, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 159, + 196, + 371, + 208 + ], + "score": 1.0, + "content": ": the mode of the Gaussian distribution. Otherwise, if", + "type": "text" + }, + { + "bbox": [ + 371, + 197, + 385, + 207 + ], + "score": 0.87, + "content": "\\mu _ { T }", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 196, + 505, + 208 + ], + "score": 1.0, + "content": "lies outside the polygon, then", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 207, + 424, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 177, + 218 + ], + "score": 1.0, + "content": "the optimal value", + "type": "text" + }, + { + "bbox": [ + 178, + 207, + 190, + 219 + ], + "score": 0.89, + "content": "\\mathbf { s } _ { T } ^ { \\ast }", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 207, + 424, + 218 + ], + "score": 1.0, + "content": "will lie on one of the polygon’s edges, solved using B.1.3.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 173, + 506, + 219 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 231, + 231, + 242 + ], + "lines": [ + { + "bbox": [ + 105, + 230, + 232, + 244 + ], + "spans": [ + { + "bbox": [ + 105, + 230, + 232, + 244 + ], + "score": 1.0, + "content": "B.2 WAYPOINTER DETAILS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 106, + 252, + 506, + 373 + ], + "lines": [ + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "spans": [ + { + "bbox": [ + 105, + 251, + 507, + 265 + ], + "score": 1.0, + "content": "The waypointer uses the CARLA planner’s provided route to generate waypoints. In the constrained-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 262, + 506, + 277 + ], + "score": 1.0, + "content": "based planning goal likelihoods, we use this route to generate waypoints without interpolating", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "spans": [ + { + "bbox": [ + 105, + 273, + 506, + 286 + ], + "score": 1.0, + "content": "between them. In the relaxed goal likelihoods, we interpolate this route to every 2 meters, and use", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 285, + 506, + 298 + ], + "spans": [ + { + "bbox": [ + 106, + 285, + 506, + 298 + ], + "score": 1.0, + "content": "the first 20 waypoints. As mentioned in the main text, one variant of our approach uses a “smart”", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 104, + 296, + 506, + 308 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 506, + 308 + ], + "score": 1.0, + "content": "waypointer. This waypointer simply removes nearby waypoints closer than 5 meters from the vehicle", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "spans": [ + { + "bbox": [ + 105, + 307, + 505, + 320 + ], + "score": 1.0, + "content": "when a green light is observed in the measurements provided by CARLA, to encourage the agent", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "spans": [ + { + "bbox": [ + 106, + 318, + 505, + 330 + ], + "score": 1.0, + "content": "to move forward, and removes far waypoints beyond 5 meters from the vehicle when a red light is", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "spans": [ + { + "bbox": [ + 106, + 329, + 505, + 342 + ], + "score": 1.0, + "content": "observed in the measurements provided by CARLA. Note that the performance differences between", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 505, + 353 + ], + "score": 1.0, + "content": "our method without the smart waypointer and our method with the smart waypointer are small: the", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 506, + 364 + ], + "score": 1.0, + "content": "only signal in the metrics is that the smart waypointer improves the vehicle’s ability to stop for red", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 362, + 403, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 362, + 403, + 375 + ], + "score": 1.0, + "content": "lights, however, it is quite adept at doing so without the smart waypointer.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 17, + "bbox_fs": [ + 104, + 251, + 507, + 375 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 387, + 253, + 398 + ], + "lines": [ + { + "bbox": [ + 105, + 385, + 255, + 400 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 255, + 400 + ], + "score": 1.0, + "content": "B.3 CONSTRUCTING GOAL SETS", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 23 + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 505, + 583 + ], + "lines": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "spans": [ + { + "bbox": [ + 106, + 407, + 506, + 420 + ], + "score": 1.0, + "content": "Given the in-lane waypoints generated by CARLA’s route planner, we use these to create Point", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "goal sets, Line-Segment goal sets, and Polygon Goal-Sets, which respectively correspond to the (A)", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "spans": [ + { + "bbox": [ + 105, + 429, + 506, + 442 + ], + "score": 1.0, + "content": "Final-State Indicator, (B) Line-Segment Final-State Indicator, and (C) Final-State Region Indicator", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 439, + 506, + 453 + ], + "score": 1.0, + "content": "described in Section 2.2. For (A), we simply feed the waypoints directly into the Final-State Indicator,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 101, + 445, + 510, + 475 + ], + "spans": [ + { + "bbox": [ + 101, + 445, + 343, + 475 + ], + "score": 1.0, + "content": "which results in a constrained optimization to ensure that the vehicle’s current position in the goal set, in order to allo", + "type": "text" + }, + { + "bbox": [ + 343, + 451, + 427, + 464 + ], + "score": 0.92, + "content": "S _ { T } \\in \\mathbb { G } \\overset { \\cdot } { = } \\{ g _ { T } ^ { k } \\} _ { k = 1 } ^ { K }", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 445, + 510, + 475 + ], + "score": 1.0, + "content": ". We also includeddient-descent based", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 474, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 474, + 506, + 486 + ], + "score": 1.0, + "content": "optimization is then formed from combining Eq. 8 with Eq. 12. The gradient to the nearest goal of", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "spans": [ + { + "bbox": [ + 106, + 484, + 506, + 497 + ], + "score": 1.0, + "content": "the final state of the partially-optimized plan encourage the optimization to move the plan closer", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 496, + 506, + 508 + ], + "spans": [ + { + "bbox": [ + 106, + 496, + 195, + 508 + ], + "score": 1.0, + "content": "to that goal. We used", + "type": "text" + }, + { + "bbox": [ + 195, + 496, + 229, + 506 + ], + "score": 0.9, + "content": "K = 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 496, + 506, + 508 + ], + "score": 1.0, + "content": ". We applied the same procedure to generate the goal set for the (B)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "spans": [ + { + "bbox": [ + 105, + 506, + 506, + 519 + ], + "score": 1.0, + "content": "Line Segment indicator, as the waypoints returned by the planner are ordered. Finally, for the (C)", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 505, + 530 + ], + "score": 1.0, + "content": "Final-State Region Indicator (polygon), we used the ordered waypoints as the “skeleton” of a polygon", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 381, + 540 + ], + "score": 1.0, + "content": "that surrounds. It was created by adding a two vertices for each point", + "type": "text" + }, + { + "bbox": [ + 381, + 529, + 393, + 539 + ], + "score": 0.86, + "content": "\\mathbf { v } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "in the skeleton at a distance", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 160, + 552 + ], + "score": 1.0, + "content": "1 meter from", + "type": "text" + }, + { + "bbox": [ + 160, + 541, + 171, + 550 + ], + "score": 0.84, + "content": "\\mathbf { v } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 539, + 428, + 552 + ], + "score": 1.0, + "content": "perpendicular to the segment connecting the surrounding points", + "type": "text" + }, + { + "bbox": [ + 428, + 539, + 480, + 551 + ], + "score": 0.91, + "content": "\\left( \\mathbf { v } _ { t - 1 } , \\mathbf { v } _ { t + 1 } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 539, + 506, + 552 + ], + "score": 1.0, + "content": ". This", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 549, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 104, + 549, + 194, + 565 + ], + "score": 1.0, + "content": "resulted in a goal set", + "type": "text" + }, + { + "bbox": [ + 195, + 550, + 286, + 563 + ], + "score": 0.83, + "content": "\\mathbb { G } _ { \\mathrm { p o l y g o n } } \\supset \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } .", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 549, + 506, + 565 + ], + "score": 1.0, + "content": ", as it surrounds the line segments. The (F) Gaussian", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 105, + 560, + 506, + 574 + ], + "score": 1.0, + "content": "Final-State Mixture goal set was constructed in the same way as (A), and also used when the pothole", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 573, + 180, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 573, + 180, + 583 + ], + "score": 1.0, + "content": "costs were added.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 31, + "bbox_fs": [ + 101, + 407, + 510, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 633 + ], + "lines": [ + { + "bbox": [ + 105, + 589, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 506, + 600 + ], + "score": 1.0, + "content": "For the methods we implemented, the task is to drive the furthest road location from the vehicle’s", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 600, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 612 + ], + "score": 1.0, + "content": "initial position. Note that this protocol more difficult than the one used in prior work Codevilla et al.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "(2018); Liang et al. (2018); Sauer et al. (2018); Li et al. (2018); Codevilla et al. (2019), which has no", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 622, + 458, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 458, + 633 + ], + "score": 1.0, + "content": "distance guarantees between start positions and goals, and often results in shorter paths.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 589, + 506, + 633 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 649, + 339, + 662 + ], + "lines": [ + { + "bbox": [ + 105, + 648, + 340, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 340, + 664 + ], + "score": 1.0, + "content": "C ARCHITECTURE AND TRAINING DETAILS", + "type": "text" + } + ], + "index": 43 + } + ], + "index": 43 + }, + { + "type": "text", + "bbox": [ + 107, + 674, + 294, + 686 + ], + "lines": [ + { + "bbox": [ + 106, + 674, + 296, + 687 + ], + "spans": [ + { + "bbox": [ + 106, + 674, + 185, + 687 + ], + "score": 1.0, + "content": "The architecture of", + "type": "text" + }, + { + "bbox": [ + 185, + 675, + 213, + 687 + ], + "score": 0.93, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 674, + 296, + 687 + ], + "score": 1.0, + "content": "is shown in Table 5.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 674, + 296, + 687 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 699, + 304, + 711 + ], + "lines": [ + { + "bbox": [ + 106, + 699, + 304, + 712 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 304, + 712 + ], + "score": 1.0, + "content": "C.1 PRIOR VISUALIZATION AND STATISTICS", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 45 + }, + { + "type": "text", + "bbox": [ + 107, + 720, + 335, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 720, + 336, + 734 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 336, + 734 + ], + "score": 1.0, + "content": "We show examples of the priors multimodality in Fig. 13", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 46, + "bbox_fs": [ + 106, + 720, + 336, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 141, + 80, + 475, + 189 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 80, + 475, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 80, + 475, + 189 + ], + "spans": [ + { + "bbox": [ + 141, + 80, + 475, + 189 + ], + "score": 0.971, + "type": "image", + "image_path": "165cba554b1e126586e7d95b1c3a2ea09d4d92b423f23288cb25513c6941cb37.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 141, + 80, + 475, + 116.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 141, + 116.33333333333334, + 475, + 152.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 141, + 152.66666666666669, + 475, + 189.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 197, + 505, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 213, + 210 + ], + "score": 1.0, + "content": "Figure 12: Architecture of", + "type": "text" + }, + { + "bbox": [ + 213, + 199, + 228, + 208 + ], + "score": 0.87, + "content": "m _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 196, + 245, + 210 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 246, + 199, + 257, + 208 + ], + "score": 0.86, + "content": "\\sigma _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 196, + 341, + 210 + ], + "score": 1.0, + "content": ", which parameterize", + "type": "text" + }, + { + "bbox": [ + 342, + 197, + 437, + 209 + ], + "score": 0.91, + "content": "q _ { \\theta } ( \\mathbf { S } | \\phi = \\{ \\chi , \\mathbf { s } _ { - \\tau : 0 } , \\lambda \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 196, + 505, + 210 + ], + "score": 1.0, + "content": ". Inputs: LIDAR", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 114, + 220 + ], + "score": 0.71, + "content": "\\chi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 208, + 165, + 221 + ], + "score": 1.0, + "content": ", past-states", + "type": "text" + }, + { + "bbox": [ + 165, + 210, + 189, + 220 + ], + "score": 0.89, + "content": "{ \\bf s } _ { - \\tau : 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 208, + 239, + 221 + ], + "score": 1.0, + "content": ", light-state", + "type": "text" + }, + { + "bbox": [ + 239, + 209, + 247, + 218 + ], + "score": 0.69, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 208, + 323, + 221 + ], + "score": 1.0, + "content": ", and latent noise", + "type": "text" + }, + { + "bbox": [ + 323, + 209, + 344, + 220 + ], + "score": 0.9, + "content": "\\mathbf { Z } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 208, + 433, + 221 + ], + "score": 1.0, + "content": ". Output: trajectory", + "type": "text" + }, + { + "bbox": [ + 433, + 209, + 453, + 220 + ], + "score": 0.92, + "content": "\\mathbf { S } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 208, + 505, + 221 + ], + "score": 1.0, + "content": ". Details in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 219, + 160, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 160, + 232 + ], + "score": 1.0, + "content": "Appendix C.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 111, + 276, + 500, + 394 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 245, + 503, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 298, + 258 + ], + "score": 1.0, + "content": "Table 5: Detailed Architecture that implements", + "type": "text" + }, + { + "bbox": [ + 299, + 245, + 372, + 257 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 243, + 418, + 258 + ], + "score": 1.0, + "content": ". Typically,", + "type": "text" + }, + { + "bbox": [ + 418, + 245, + 450, + 255 + ], + "score": 0.8, + "content": "T = 4 0", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 243, + 453, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 453, + 245, + 506, + 257 + ], + "score": 0.77, + "content": "D = 2 , H =", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 255, + 151, + 268 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 147, + 266 + ], + "score": 0.87, + "content": "W = 2 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 255, + 151, + 268 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 111, + 276, + 500, + 394 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 276, + 500, + 394 + ], + "spans": [ + { + "bbox": [ + 111, + 276, + 500, + 394 + ], + "score": 0.98, + "html": "
ComponentInput [dimensionality]Layer or OperationOutput [dimensionality]Details
Static featurizationofcontext:={x,s:A}.
MapFeatx[H,W,2]2D Convolution1x[H,W,32]3 ×3 stride 1,ReLu
MapFeat1-1x[H,W,32]2D Convolutionx[H,W,32]3 × 3 stride 1,ReLu,i∈[2,...,8]
MapFeat8x[H,W,32]2D Convolutionr[H,W,8]3 × 3 stride 1,ReLu
PastRNNS-T:0[T+1,D]RNN[32]GRU across time dimension
Dynamic generation via loop:fort∈{0,...,T-1}.
MapFeats[D]Interpolatet=F(st)[8]Differentiable interpolation
JointFeatt,S0,²n,s0²n田a入pt [D+50+32+1]Concatenate ()
FutureRNNpt[D+50+32+1]RNNpt[50]GRU
FutureMLP1pt[50]Affine (FC)2pt[200]Tanh activation
FutureMLP2pt[200]Affine (FC)mt [D],εt [D,D]Identity activation
MatrixExp[D,D]Tt[D,D]Differentiable Matrix Exponential Rhinehart et al. (2018)
VerletStepSt,St-1,mt,Ot,Zt2st-St-1+mt+OtZtSt+1[D]
", + "type": "table", + "image_path": "61f2f8a184a505731c10b6e22290c9a303397fa8f1276c154028572d29fc6e71.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 276, + 500, + 315.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 315.3333333333333, + 500, + 354.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 354.66666666666663, + 500, + 393.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 7.75 + }, + { + "type": "title", + "bbox": [ + 107, + 417, + 345, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 347, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 347, + 430 + ], + "score": 1.0, + "content": "C.1.1 STATISTICS OF PRIOR AND GOAL LIKELIHOODS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 506, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 312, + 450 + ], + "score": 1.0, + "content": "Following are the values of the planning criterion on", + "type": "text" + }, + { + "bbox": [ + 312, + 437, + 361, + 448 + ], + "score": 0.91, + "content": "N \\approx 8 \\cdot 1 0 ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "rounds from applying the “Gaussian", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 448, + 507, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 322, + 461 + ], + "score": 1.0, + "content": "Final-State Mixture” to Town01 Dynamic. Mean of log", + "type": "text" + }, + { + "bbox": [ + 322, + 448, + 381, + 460 + ], + "score": 0.94, + "content": "q ( \\mathbf { s } ^ { * } | \\boldsymbol { \\phi } ) \\approx 1 0 4", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 448, + 420, + 461 + ], + "score": 1.0, + "content": ". Mean of", + "type": "text" + }, + { + "bbox": [ + 421, + 448, + 503, + 460 + ], + "score": 0.88, + "content": "\\bar { \\log { p ( \\mathcal { G } | \\mathbf { s } ^ { * } , \\boldsymbol { \\phi } ) } } = - 4", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 448, + 507, + 461 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "This illustrates that while the prior’s value mostly dominates the values of the final plans, the Gaussian", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 470, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 482 + ], + "score": 1.0, + "content": "Final-State Goal Mixture likelihood has a moderate amount of influence on the value of the final plan.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5 + }, + { + "type": "title", + "bbox": [ + 107, + 498, + 172, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 174, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 174, + 512 + ], + "score": 1.0, + "content": "C.2 DATASET", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 170, + 533 + ], + "score": 1.0, + "content": "Before training", + "type": "text" + }, + { + "bbox": [ + 170, + 520, + 199, + 532 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 520, + 506, + 533 + ], + "score": 1.0, + "content": ", we ran CARLA’s expert in the dynamic world setting of Town01 to collect", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 532, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 543 + ], + "score": 1.0, + "content": "a dataset of examples. We have prepared the dataset of collected data for public release upon", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "publication. We ran the autopilot in Town01 for over 900 episodes of 100 seconds each in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "presence of 100 other vehicles, and recorded the trajectory of every vehicle and the autopilot’s LIDAR", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "observation. We randomized episodes to either train, validation, or test sets. We created sets of 60,701", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "train, 7586 validation, and 7567 test scenes, each with 2 seconds of past and 4 seconds of future", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 199, + 599 + ], + "score": 1.0, + "content": "position information at", + "type": "text" + }, + { + "bbox": [ + 199, + 586, + 221, + 597 + ], + "score": 0.63, + "content": "1 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 585, + 505, + 599 + ], + "score": 1.0, + "content": ". The dataset also includes 100 episodes obtained by following the same", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 597, + 197, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 197, + 608 + ], + "score": 1.0, + "content": "procedure in Town02.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5 + }, + { + "type": "title", + "bbox": [ + 107, + 627, + 228, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 230, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 230, + 643 + ], + "score": 1.0, + "content": "D BASELINE DETAILS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 654, + 376, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 378, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 378, + 668 + ], + "score": 1.0, + "content": "D.1 CONDITIONAL IMITATION LEARNING OF STATES (CILS):", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 507, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 507, + 689 + ], + "score": 1.0, + "content": "We designed a conditional imitation learning baseline that predicts the setpoint for the PID-controller.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Each receives the same scene observations (LIDAR) and is trained with the same set of trajectories as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "our main method. It uses nearly the same architecture as that of the original CIL, except it outputs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "setpoints instead of controls, and also observes the traffic light information. We found it very effective", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "for stable control on straightaways. When the model encounters corners, however, prediction is more", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 29 + } + ], + "page_idx": 15, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 141, + 80, + 475, + 189 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 141, + 80, + 475, + 189 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 141, + 80, + 475, + 189 + ], + "spans": [ + { + "bbox": [ + 141, + 80, + 475, + 189 + ], + "score": 0.971, + "type": "image", + "image_path": "165cba554b1e126586e7d95b1c3a2ea09d4d92b423f23288cb25513c6941cb37.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 141, + 80, + 475, + 116.33333333333334 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 141, + 116.33333333333334, + 475, + 152.66666666666669 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 141, + 152.66666666666669, + 475, + 189.00000000000003 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 197, + 505, + 231 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 106, + 196, + 213, + 210 + ], + "score": 1.0, + "content": "Figure 12: Architecture of", + "type": "text" + }, + { + "bbox": [ + 213, + 199, + 228, + 208 + ], + "score": 0.87, + "content": "m _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 196, + 245, + 210 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 246, + 199, + 257, + 208 + ], + "score": 0.86, + "content": "\\sigma _ { \\theta }", + "type": "inline_equation" + }, + { + "bbox": [ + 257, + 196, + 341, + 210 + ], + "score": 1.0, + "content": ", which parameterize", + "type": "text" + }, + { + "bbox": [ + 342, + 197, + 437, + 209 + ], + "score": 0.91, + "content": "q _ { \\theta } ( \\mathbf { S } | \\phi = \\{ \\chi , \\mathbf { s } _ { - \\tau : 0 } , \\lambda \\} )", + "type": "inline_equation" + }, + { + "bbox": [ + 437, + 196, + 505, + 210 + ], + "score": 1.0, + "content": ". Inputs: LIDAR", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 208, + 505, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 210, + 114, + 220 + ], + "score": 0.71, + "content": "\\chi", + "type": "inline_equation" + }, + { + "bbox": [ + 114, + 208, + 165, + 221 + ], + "score": 1.0, + "content": ", past-states", + "type": "text" + }, + { + "bbox": [ + 165, + 210, + 189, + 220 + ], + "score": 0.89, + "content": "{ \\bf s } _ { - \\tau : 0 }", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 208, + 239, + 221 + ], + "score": 1.0, + "content": ", light-state", + "type": "text" + }, + { + "bbox": [ + 239, + 209, + 247, + 218 + ], + "score": 0.69, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 208, + 323, + 221 + ], + "score": 1.0, + "content": ", and latent noise", + "type": "text" + }, + { + "bbox": [ + 323, + 209, + 344, + 220 + ], + "score": 0.9, + "content": "\\mathbf { Z } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 344, + 208, + 433, + 221 + ], + "score": 1.0, + "content": ". Output: trajectory", + "type": "text" + }, + { + "bbox": [ + 433, + 209, + 453, + 220 + ], + "score": 0.92, + "content": "\\mathbf { S } _ { 1 : T }", + "type": "inline_equation" + }, + { + "bbox": [ + 453, + 208, + 505, + 221 + ], + "score": 1.0, + "content": ". Details in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 219, + 160, + 232 + ], + "spans": [ + { + "bbox": [ + 105, + 219, + 160, + 232 + ], + "score": 1.0, + "content": "Appendix C.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "table", + "bbox": [ + 111, + 276, + 500, + 394 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 108, + 245, + 503, + 267 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 243, + 506, + 258 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 298, + 258 + ], + "score": 1.0, + "content": "Table 5: Detailed Architecture that implements", + "type": "text" + }, + { + "bbox": [ + 299, + 245, + 372, + 257 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } , \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 243, + 418, + 258 + ], + "score": 1.0, + "content": ". Typically,", + "type": "text" + }, + { + "bbox": [ + 418, + 245, + 450, + 255 + ], + "score": 0.8, + "content": "T = 4 0", + "type": "inline_equation" + }, + { + "bbox": [ + 450, + 243, + 453, + 258 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 453, + 245, + 506, + 257 + ], + "score": 0.77, + "content": "D = 2 , H =", + "type": "inline_equation" + } + ], + "index": 6 + }, + { + "bbox": [ + 107, + 255, + 151, + 268 + ], + "spans": [ + { + "bbox": [ + 107, + 256, + 147, + 266 + ], + "score": 0.87, + "content": "W = 2 0 0", + "type": "inline_equation" + }, + { + "bbox": [ + 147, + 255, + 151, + 268 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 6.5 + }, + { + "type": "table_body", + "bbox": [ + 111, + 276, + 500, + 394 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 276, + 500, + 394 + ], + "spans": [ + { + "bbox": [ + 111, + 276, + 500, + 394 + ], + "score": 0.98, + "html": "
ComponentInput [dimensionality]Layer or OperationOutput [dimensionality]Details
Static featurizationofcontext:={x,s:A}.
MapFeatx[H,W,2]2D Convolution1x[H,W,32]3 ×3 stride 1,ReLu
MapFeat1-1x[H,W,32]2D Convolutionx[H,W,32]3 × 3 stride 1,ReLu,i∈[2,...,8]
MapFeat8x[H,W,32]2D Convolutionr[H,W,8]3 × 3 stride 1,ReLu
PastRNNS-T:0[T+1,D]RNN[32]GRU across time dimension
Dynamic generation via loop:fort∈{0,...,T-1}.
MapFeats[D]Interpolatet=F(st)[8]Differentiable interpolation
JointFeatt,S0,²n,s0²n田a入pt [D+50+32+1]Concatenate ()
FutureRNNpt[D+50+32+1]RNNpt[50]GRU
FutureMLP1pt[50]Affine (FC)2pt[200]Tanh activation
FutureMLP2pt[200]Affine (FC)mt [D],εt [D,D]Identity activation
MatrixExp[D,D]Tt[D,D]Differentiable Matrix Exponential Rhinehart et al. (2018)
VerletStepSt,St-1,mt,Ot,Zt2st-St-1+mt+OtZtSt+1[D]
", + "type": "table", + "image_path": "61f2f8a184a505731c10b6e22290c9a303397fa8f1276c154028572d29fc6e71.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 276, + 500, + 315.3333333333333 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 315.3333333333333, + 500, + 354.66666666666663 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 354.66666666666663, + 500, + 393.99999999999994 + ], + "spans": [], + "index": 10 + } + ] + } + ], + "index": 7.75 + }, + { + "type": "title", + "bbox": [ + 107, + 417, + 345, + 428 + ], + "lines": [ + { + "bbox": [ + 105, + 415, + 347, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 415, + 347, + 430 + ], + "score": 1.0, + "content": "C.1.1 STATISTICS OF PRIOR AND GOAL LIKELIHOODS", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 437, + 506, + 481 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 506, + 450 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 312, + 450 + ], + "score": 1.0, + "content": "Following are the values of the planning criterion on", + "type": "text" + }, + { + "bbox": [ + 312, + 437, + 361, + 448 + ], + "score": 0.91, + "content": "N \\approx 8 \\cdot 1 0 ^ { 3 }", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 437, + 506, + 450 + ], + "score": 1.0, + "content": "rounds from applying the “Gaussian", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 448, + 507, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 322, + 461 + ], + "score": 1.0, + "content": "Final-State Mixture” to Town01 Dynamic. Mean of log", + "type": "text" + }, + { + "bbox": [ + 322, + 448, + 381, + 460 + ], + "score": 0.94, + "content": "q ( \\mathbf { s } ^ { * } | \\boldsymbol { \\phi } ) \\approx 1 0 4", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 448, + 420, + 461 + ], + "score": 1.0, + "content": ". Mean of", + "type": "text" + }, + { + "bbox": [ + 421, + 448, + 503, + 460 + ], + "score": 0.88, + "content": "\\bar { \\log { p ( \\mathcal { G } | \\mathbf { s } ^ { * } , \\boldsymbol { \\phi } ) } } = - 4", + "type": "inline_equation" + }, + { + "bbox": [ + 504, + 448, + 507, + 461 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 505, + 471 + ], + "score": 1.0, + "content": "This illustrates that while the prior’s value mostly dominates the values of the final plans, the Gaussian", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 470, + 506, + 482 + ], + "spans": [ + { + "bbox": [ + 105, + 470, + 506, + 482 + ], + "score": 1.0, + "content": "Final-State Goal Mixture likelihood has a moderate amount of influence on the value of the final plan.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 13.5, + "bbox_fs": [ + 105, + 437, + 507, + 482 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 498, + 172, + 510 + ], + "lines": [ + { + "bbox": [ + 105, + 496, + 174, + 512 + ], + "spans": [ + { + "bbox": [ + 105, + 496, + 174, + 512 + ], + "score": 1.0, + "content": "C.2 DATASET", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 608 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 506, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 170, + 533 + ], + "score": 1.0, + "content": "Before training", + "type": "text" + }, + { + "bbox": [ + 170, + 520, + 199, + 532 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 520, + 506, + 533 + ], + "score": 1.0, + "content": ", we ran CARLA’s expert in the dynamic world setting of Town01 to collect", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 532, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 505, + 543 + ], + "score": 1.0, + "content": "a dataset of examples. We have prepared the dataset of collected data for public release upon", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "publication. We ran the autopilot in Town01 for over 900 episodes of 100 seconds each in the", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 104, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "presence of 100 other vehicles, and recorded the trajectory of every vehicle and the autopilot’s LIDAR", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 505, + 576 + ], + "score": 1.0, + "content": "observation. We randomized episodes to either train, validation, or test sets. We created sets of 60,701", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 105, + 574, + 505, + 587 + ], + "score": 1.0, + "content": "train, 7586 validation, and 7567 test scenes, each with 2 seconds of past and 4 seconds of future", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 104, + 585, + 505, + 599 + ], + "spans": [ + { + "bbox": [ + 104, + 585, + 199, + 599 + ], + "score": 1.0, + "content": "position information at", + "type": "text" + }, + { + "bbox": [ + 199, + 586, + 221, + 597 + ], + "score": 0.63, + "content": "1 0 \\mathrm { H z }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 585, + 505, + 599 + ], + "score": 1.0, + "content": ". The dataset also includes 100 episodes obtained by following the same", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 597, + 197, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 197, + 608 + ], + "score": 1.0, + "content": "procedure in Town02.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 20.5, + "bbox_fs": [ + 104, + 520, + 506, + 608 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 627, + 228, + 640 + ], + "lines": [ + { + "bbox": [ + 105, + 626, + 230, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 626, + 230, + 643 + ], + "score": 1.0, + "content": "D BASELINE DETAILS", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 25 + }, + { + "type": "title", + "bbox": [ + 107, + 654, + 376, + 666 + ], + "lines": [ + { + "bbox": [ + 105, + 653, + 378, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 653, + 378, + 668 + ], + "score": 1.0, + "content": "D.1 CONDITIONAL IMITATION LEARNING OF STATES (CILS):", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 26 + }, + { + "type": "text", + "bbox": [ + 107, + 676, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 676, + 507, + 689 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 507, + 689 + ], + "score": 1.0, + "content": "We designed a conditional imitation learning baseline that predicts the setpoint for the PID-controller.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Each receives the same scene observations (LIDAR) and is trained with the same set of trajectories as", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "our main method. It uses nearly the same architecture as that of the original CIL, except it outputs", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 723 + ], + "score": 1.0, + "content": "setpoints instead of controls, and also observes the traffic light information. We found it very effective", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 505, + 733 + ], + "score": 1.0, + "content": "for stable control on straightaways. When the model encounters corners, however, prediction is more", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "difficult, as in order to successfully avoid the curbs, the model must implicitly plan a safe path. We", + "type": "text", + "cross_page": true + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 263, + 424, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 424, + 277 + ], + "score": 1.0, + "content": "found that using the traffic light information allowed it to stop more frequently.", + "type": "text", + "cross_page": true + } + ], + "index": 5 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 676, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 174, + 78, + 435, + 201 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 174, + 78, + 435, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 174, + 78, + 435, + 201 + ], + "spans": [ + { + "bbox": [ + 174, + 78, + 435, + 201 + ], + "score": 0.966, + "type": "image", + "image_path": "106d03c1b2c5f19e0b13f53be203f8bf17bd27eb4f8541bef1d198d912953f5c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 174, + 78, + 435, + 119.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 174, + 119.0, + 435, + 160.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 174, + 160.0, + 435, + 201.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 209, + 504, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 207, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 266, + 223 + ], + "score": 1.0, + "content": "Figure 13: Left: Samples from the prior,", + "type": "text" + }, + { + "bbox": [ + 267, + 209, + 295, + 222 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 207, + 504, + 223 + ], + "score": 1.0, + "content": ", go left or right. Right: Samples go forward or right.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 504, + 275 + ], + "lines": [ + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "spans": [ + { + "bbox": [ + 106, + 253, + 505, + 266 + ], + "score": 1.0, + "content": "difficult, as in order to successfully avoid the curbs, the model must implicitly plan a safe path. We", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 263, + 424, + 277 + ], + "spans": [ + { + "bbox": [ + 105, + 263, + 424, + 277 + ], + "score": 1.0, + "content": "found that using the traffic light information allowed it to stop more frequently.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "title", + "bbox": [ + 109, + 300, + 326, + 312 + ], + "lines": [ + { + "bbox": [ + 107, + 299, + 329, + 313 + ], + "spans": [ + { + "bbox": [ + 107, + 299, + 329, + 313 + ], + "score": 1.0, + "content": "D.2 MODEL-BASED REINFORCEMENT LEARNING:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "Static-world To compare against a purely model-based reinforcement learning algorithm, we propose", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 337, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 348 + ], + "score": 1.0, + "content": "a model-based reinforcement learning baseline. This baseline first learns a forwards dynamics model", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 190, + 360 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { t + 1 } = f ( \\mathbf { s } _ { t - 3 : t } , \\mathbf { a } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 348, + 304, + 360 + ], + "score": 1.0, + "content": "given observed expert data", + "type": "text" + }, + { + "bbox": [ + 305, + 349, + 315, + 358 + ], + "score": 0.81, + "content": "\\cdot { a } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "are recorded vehicle actions). We use an MLP", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 359, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 370 + ], + "score": 1.0, + "content": "with two hidden layers, each 100 units. Note that our forwards dynamics model does not imitate the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "expert preferred actions, but only models what is physically possible. Together with the same LIDAR", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 125, + 393 + ], + "score": 1.0, + "content": "map", + "type": "text" + }, + { + "bbox": [ + 125, + 382, + 134, + 392 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "our method uses to locate obstacles, this baseline uses its dynamics model to plan a reachability", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 101, + 390, + 473, + 429 + ], + "spans": [ + { + "bbox": [ + 101, + 390, + 249, + 429 + ], + "score": 1.0, + "content": "tree LaValle (2006) through the free-for the lowest-cost path that ends ncost of a position is determined by", + "type": "text" + }, + { + "bbox": [ + 300, + 402, + 473, + 417 + ], + "score": 0.9, + "content": "\\begin{array} { r } { C ( \\mathbf { s } _ { 1 : T } ; \\mathbf { g } _ { T } ) = | | \\mathbf { s } _ { T } - \\mathbf { g } _ { T } | | _ { 2 } + \\sum _ { t = 1 } ^ { T } c ( \\mathbf { s } _ { t } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 250, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 250, + 415, + 334, + 427 + ], + "score": 0.86, + "content": "c ( \\mathbf { s } _ { t } ) = 1 . 5 \\mathbb { 1 } ( \\mathbf { s } _ { t } < 1 ", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 416, + 505, + 427 + ], + "score": 0.64, + "content": "+ 0 . 7 5 \\mathbb { 1 } ( 1 < =", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 426, + 266, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 134, + 438 + ], + "score": 0.89, + "content": "\\mathbf { s } _ { t } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 426, + 241, + 440 + ], + "score": 1.0, + "content": "meters from any obstacle)", + "type": "text" + }, + { + "bbox": [ + 241, + 427, + 261, + 438 + ], + "score": 0.8, + "content": "+ \\ddot { \\mathbf { s } _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 426, + 266, + 440 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11 + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "We plan forwards over 20 time steps using a breadth-first search over CARLA steering angle", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 454, + 209, + 466 + ], + "score": 0.91, + "content": "\\{ - 0 . 3 , - 0 . 1 , 0 . , 0 . 1 , 0 . 3 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 454, + 412, + 466 + ], + "score": 1.0, + "content": ", noting valid steering angles are normalized to", + "type": "text" + }, + { + "bbox": [ + 413, + 454, + 441, + 466 + ], + "score": 0.89, + "content": "[ - 1 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 454, + 506, + 466 + ], + "score": 1.0, + "content": ", with constant", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "throttle at 0.5, noting the valid throttle range is [0, 1]. Our search expands each state node by the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "score": 1.0, + "content": "available actions and retains the 50 closest nodes to the waypoint. The planned trajectory efficiently", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "reaches the waypoint, and can successfully plan around perceived obstacles to avoid getting stuck. To", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "score": 1.0, + "content": "convert the LIDAR images into obstacle maps, we expanded all obstacles by the approximate radius", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 508, + 195, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 195, + 520 + ], + "score": 1.0, + "content": "of the car, 1.5 meters.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 504, + 537 + ], + "score": 1.0, + "content": "Dynamic-world We use the same setup as the Static-MBRL method, except we add a discrete", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 287, + 549 + ], + "score": 1.0, + "content": "temporal dimension to the search space (one", + "type": "text" + }, + { + "bbox": [ + 288, + 536, + 300, + 547 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "spatial dimension per T time steps into the future).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "All static obstacles remain static, however all LIDAR points that were known to collide with a vehicle", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "are now removed: and replaced at every time step using a constant velocity model of that vehicle. We", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 568, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 583 + ], + "score": 1.0, + "content": "found that the main failure mode was due to both to inaccuracy in constant velocity prediction as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "score": 1.0, + "content": "well as the model’s inability to perceive lanes in the LIDAR. The vehicle would sometimes wander", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 592, + 495, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 495, + 604 + ], + "score": 1.0, + "content": "into the opposing traffic’s lane, having failed to anticipate an oncoming vehicle blocking its path.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "title", + "bbox": [ + 107, + 630, + 195, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 197, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 197, + 646 + ], + "score": 1.0, + "content": "E ROBUSTNESS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 662, + 281, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 283, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 283, + 675 + ], + "score": 1.0, + "content": "E.1 DECOY WAYPOINTS EXPERIMENTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 371, + 700 + ], + "score": 1.0, + "content": "In the decoy waypoints experiment, the perturbation distribution is", + "type": "text" + }, + { + "bbox": [ + 371, + 687, + 432, + 699 + ], + "score": 0.91, + "content": "\\mathcal { N } ( 0 , \\sigma = 8 m )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 687, + 506, + 700 + ], + "score": 1.0, + "content": ": each waypoint is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "perturbed with a standard deviation of 8 meters. One failure mode of this approach is when decoy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "waypoints lie on a valid off-route path at intersections, which temporarily confuses the planner about", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 354, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 354, + 732 + ], + "score": 1.0, + "content": "the best route. Additional visualizations are shown in Fig. 14.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5 + } + ], + "page_idx": 16, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 174, + 78, + 435, + 201 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 174, + 78, + 435, + 201 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 174, + 78, + 435, + 201 + ], + "spans": [ + { + "bbox": [ + 174, + 78, + 435, + 201 + ], + "score": 0.966, + "type": "image", + "image_path": "106d03c1b2c5f19e0b13f53be203f8bf17bd27eb4f8541bef1d198d912953f5c.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 174, + 78, + 435, + 119.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 174, + 119.0, + 435, + 160.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 174, + 160.0, + 435, + 201.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 209, + 504, + 222 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 207, + 504, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 207, + 266, + 223 + ], + "score": 1.0, + "content": "Figure 13: Left: Samples from the prior,", + "type": "text" + }, + { + "bbox": [ + 267, + 209, + 295, + 222 + ], + "score": 0.92, + "content": "q ( \\mathbf { S } | \\phi )", + "type": "inline_equation" + }, + { + "bbox": [ + 295, + 207, + 504, + 223 + ], + "score": 1.0, + "content": ", go left or right. Right: Samples go forward or right.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "text", + "bbox": [ + 106, + 253, + 504, + 275 + ], + "lines": [], + "index": 4.5, + "bbox_fs": [ + 105, + 253, + 505, + 277 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 109, + 300, + 326, + 312 + ], + "lines": [ + { + "bbox": [ + 107, + 299, + 329, + 313 + ], + "spans": [ + { + "bbox": [ + 107, + 299, + 329, + 313 + ], + "score": 1.0, + "content": "D.2 MODEL-BASED REINFORCEMENT LEARNING:", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 106, + 325, + 505, + 438 + ], + "lines": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 338 + ], + "score": 1.0, + "content": "Static-world To compare against a purely model-based reinforcement learning algorithm, we propose", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 337, + 505, + 348 + ], + "spans": [ + { + "bbox": [ + 105, + 337, + 505, + 348 + ], + "score": 1.0, + "content": "a model-based reinforcement learning baseline. This baseline first learns a forwards dynamics model", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 347, + 506, + 360 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 190, + 360 + ], + "score": 0.92, + "content": "\\mathbf { s } _ { t + 1 } = f ( \\mathbf { s } _ { t - 3 : t } , \\mathbf { a } _ { t } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 348, + 304, + 360 + ], + "score": 1.0, + "content": "given observed expert data", + "type": "text" + }, + { + "bbox": [ + 305, + 349, + 315, + 358 + ], + "score": 0.81, + "content": "\\cdot { a } _ { t }", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 348, + 506, + 360 + ], + "score": 1.0, + "content": "are recorded vehicle actions). We use an MLP", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 359, + 505, + 370 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 370 + ], + "score": 1.0, + "content": "with two hidden layers, each 100 units. Note that our forwards dynamics model does not imitate the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "spans": [ + { + "bbox": [ + 105, + 369, + 505, + 381 + ], + "score": 1.0, + "content": "expert preferred actions, but only models what is physically possible. Together with the same LIDAR", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 380, + 505, + 393 + ], + "spans": [ + { + "bbox": [ + 105, + 380, + 125, + 393 + ], + "score": 1.0, + "content": "map", + "type": "text" + }, + { + "bbox": [ + 125, + 382, + 134, + 392 + ], + "score": 0.78, + "content": "x", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 380, + 505, + 393 + ], + "score": 1.0, + "content": "our method uses to locate obstacles, this baseline uses its dynamics model to plan a reachability", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 101, + 390, + 473, + 429 + ], + "spans": [ + { + "bbox": [ + 101, + 390, + 249, + 429 + ], + "score": 1.0, + "content": "tree LaValle (2006) through the free-for the lowest-cost path that ends ncost of a position is determined by", + "type": "text" + }, + { + "bbox": [ + 300, + 402, + 473, + 417 + ], + "score": 0.9, + "content": "\\begin{array} { r } { C ( \\mathbf { s } _ { 1 : T } ; \\mathbf { g } _ { T } ) = | | \\mathbf { s } _ { T } - \\mathbf { g } _ { T } | | _ { 2 } + \\sum _ { t = 1 } ^ { T } c ( \\mathbf { s } _ { t } ) } \\end{array}", + "type": "inline_equation" + } + ], + "index": 13 + }, + { + "bbox": [ + 250, + 415, + 505, + 427 + ], + "spans": [ + { + "bbox": [ + 250, + 415, + 334, + 427 + ], + "score": 0.86, + "content": "c ( \\mathbf { s } _ { t } ) = 1 . 5 \\mathbb { 1 } ( \\mathbf { s } _ { t } < 1 ", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 416, + 505, + 427 + ], + "score": 0.64, + "content": "+ 0 . 7 5 \\mathbb { 1 } ( 1 < =", + "type": "inline_equation" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 426, + 266, + 440 + ], + "spans": [ + { + "bbox": [ + 106, + 427, + 134, + 438 + ], + "score": 0.89, + "content": "\\mathbf { s } _ { t } < 2", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 426, + 241, + 440 + ], + "score": 1.0, + "content": "meters from any obstacle)", + "type": "text" + }, + { + "bbox": [ + 241, + 427, + 261, + 438 + ], + "score": 0.8, + "content": "+ \\ddot { \\mathbf { s } _ { t } }", + "type": "inline_equation" + }, + { + "bbox": [ + 261, + 426, + 266, + 440 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 11, + "bbox_fs": [ + 101, + 325, + 506, + 440 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 443, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "We plan forwards over 20 time steps using a breadth-first search over CARLA steering angle", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 107, + 454, + 506, + 466 + ], + "spans": [ + { + "bbox": [ + 107, + 454, + 209, + 466 + ], + "score": 0.91, + "content": "\\{ - 0 . 3 , - 0 . 1 , 0 . , 0 . 1 , 0 . 3 \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 210, + 454, + 412, + 466 + ], + "score": 1.0, + "content": ", noting valid steering angles are normalized to", + "type": "text" + }, + { + "bbox": [ + 413, + 454, + 441, + 466 + ], + "score": 0.89, + "content": "[ - 1 , 1 ]", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 454, + 506, + 466 + ], + "score": 1.0, + "content": ", with constant", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "spans": [ + { + "bbox": [ + 105, + 465, + 505, + 478 + ], + "score": 1.0, + "content": "throttle at 0.5, noting the valid throttle range is [0, 1]. Our search expands each state node by the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 476, + 505, + 489 + ], + "score": 1.0, + "content": "available actions and retains the 50 closest nodes to the waypoint. The planned trajectory efficiently", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 505, + 500 + ], + "score": 1.0, + "content": "reaches the waypoint, and can successfully plan around perceived obstacles to avoid getting stuck. To", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "spans": [ + { + "bbox": [ + 104, + 497, + 505, + 512 + ], + "score": 1.0, + "content": "convert the LIDAR images into obstacle maps, we expanded all obstacles by the approximate radius", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 508, + 195, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 195, + 520 + ], + "score": 1.0, + "content": "of the car, 1.5 meters.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 442, + 506, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 603 + ], + "lines": [ + { + "bbox": [ + 106, + 526, + 504, + 537 + ], + "spans": [ + { + "bbox": [ + 106, + 526, + 504, + 537 + ], + "score": 1.0, + "content": "Dynamic-world We use the same setup as the Static-MBRL method, except we add a discrete", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 536, + 506, + 549 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 287, + 549 + ], + "score": 1.0, + "content": "temporal dimension to the search space (one", + "type": "text" + }, + { + "bbox": [ + 288, + 536, + 300, + 547 + ], + "score": 0.87, + "content": "\\mathbb { R } ^ { 2 }", + "type": "inline_equation" + }, + { + "bbox": [ + 300, + 537, + 506, + 549 + ], + "score": 1.0, + "content": "spatial dimension per T time steps into the future).", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "spans": [ + { + "bbox": [ + 106, + 547, + 505, + 560 + ], + "score": 1.0, + "content": "All static obstacles remain static, however all LIDAR points that were known to collide with a vehicle", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "spans": [ + { + "bbox": [ + 105, + 559, + 505, + 571 + ], + "score": 1.0, + "content": "are now removed: and replaced at every time step using a constant velocity model of that vehicle. We", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 568, + 505, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 583 + ], + "score": 1.0, + "content": "found that the main failure mode was due to both to inaccuracy in constant velocity prediction as", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "spans": [ + { + "bbox": [ + 106, + 581, + 506, + 593 + ], + "score": 1.0, + "content": "well as the model’s inability to perceive lanes in the LIDAR. The vehicle would sometimes wander", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 592, + 495, + 604 + ], + "spans": [ + { + "bbox": [ + 106, + 592, + 495, + 604 + ], + "score": 1.0, + "content": "into the opposing traffic’s lane, having failed to anticipate an oncoming vehicle blocking its path.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 105, + 526, + 506, + 604 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 630, + 195, + 643 + ], + "lines": [ + { + "bbox": [ + 105, + 628, + 197, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 197, + 646 + ], + "score": 1.0, + "content": "E ROBUSTNESS", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 662, + 281, + 674 + ], + "lines": [ + { + "bbox": [ + 106, + 662, + 283, + 675 + ], + "spans": [ + { + "bbox": [ + 106, + 662, + 283, + 675 + ], + "score": 1.0, + "content": "E.1 DECOY WAYPOINTS EXPERIMENTS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 371, + 700 + ], + "score": 1.0, + "content": "In the decoy waypoints experiment, the perturbation distribution is", + "type": "text" + }, + { + "bbox": [ + 371, + 687, + 432, + 699 + ], + "score": 0.91, + "content": "\\mathcal { N } ( 0 , \\sigma = 8 m )", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 687, + 506, + 700 + ], + "score": 1.0, + "content": ": each waypoint is", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 712 + ], + "score": 1.0, + "content": "perturbed with a standard deviation of 8 meters. One failure mode of this approach is when decoy", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 721 + ], + "score": 1.0, + "content": "waypoints lie on a valid off-route path at intersections, which temporarily confuses the planner about", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 720, + 354, + 732 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 354, + 732 + ], + "score": 1.0, + "content": "the best route. Additional visualizations are shown in Fig. 14.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 33.5, + "bbox_fs": [ + 105, + 687, + 506, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 152, + 79, + 458, + 228 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 152, + 79, + 458, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 79, + 458, + 228 + ], + "spans": [ + { + "bbox": [ + 152, + 79, + 458, + 228 + ], + "score": 0.975, + "type": "image", + "image_path": "d8b13395204615bce46b5db80e8e75041fa8fdfb55f5d3cb5b16d5a4c9f0ca9e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 152, + 79, + 458, + 128.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 152, + 128.66666666666666, + 458, + 178.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 152, + 178.33333333333331, + 458, + 227.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 237, + 505, + 271 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "Figure 14: Tolerating bad waypoints. The planner prefers waypoints in the distribution of expert", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 246, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 419, + 262 + ], + "score": 1.0, + "content": "behavior (on the road at a reasonable distance). Columns 1,2: Planning with", + "type": "text" + }, + { + "bbox": [ + 419, + 248, + 432, + 260 + ], + "score": 0.8, + "content": "^ 1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 246, + 507, + 262 + ], + "score": 1.0, + "content": "decoy waypoints.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 259, + 398, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 398, + 271 + ], + "score": 1.0, + "content": "Columns 3,4: Planning with all waypoints on the wrong side of the road.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 294, + 271, + 305 + ], + "lines": [ + { + "bbox": [ + 106, + 293, + 273, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 273, + 306 + ], + "score": 1.0, + "content": "E.2 PLAN RELIABILITY ESTIMATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "Besides using our model to make a best-effort attempt to reach a user-specified goal, the fact that our", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "score": 1.0, + "content": "model produces explicit likelihoods can also be leveraged to test the reliability of a plan by evaluating", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "whether reaching particular waypoints will result in human-like behavior or not. This capability can", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "be quite important for real-world safety-critical applications, such as autonomous driving, and can be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "score": 1.0, + "content": "used to build a degree of fault tolerance into the system. We designed a classification experiment", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "to evaluate how well our model can recognize safe and unsafe plans. We planned our model to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "known good waypoints (where the expert actually went) and known bad waypoints (off-road) on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "score": 1.0, + "content": "1650 held-out test scenes. We used the planning criterion to classify these as good and bad plans and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 285, + 415 + ], + "score": 1.0, + "content": "found that we can detect these bad plans with", + "type": "text" + }, + { + "bbox": [ + 285, + 403, + 313, + 414 + ], + "score": 0.88, + "content": "9 \\bar { 7 } . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 402, + 354, + 415 + ], + "score": 1.0, + "content": "recall and", + "type": "text" + }, + { + "bbox": [ + 354, + 403, + 382, + 414 + ], + "score": 0.89, + "content": "9 0 . { \\dot { 2 } } \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "precision. This result indicates", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 395, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 395, + 427 + ], + "score": 1.0, + "content": "imitative models could be effective in estimating the reliability of plans.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 11.5 + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "We determined a threshold on the planning criterion by single-goal planning to the expert’s final", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "location on offline validation data and setting it to the criterion’s mean minus one stddev. Although", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "a more intelligent calibration could be performed by analyzing the information retrieval statistics", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "on the offline validation, we found this simple calibration to yield reasonably good performance.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "We used 1650 test scenes to perform classification of plans to three different types of waypoints", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 282, + 498 + ], + "score": 1.0, + "content": "1) where the expert actually arrived at time", + "type": "text" + }, + { + "bbox": [ + 282, + 486, + 291, + 496 + ], + "score": 0.73, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 486, + 295, + 498 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 295, + 486, + 323, + 497 + ], + "score": 0.81, + "content": "8 9 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 486, + 418, + 498 + ], + "score": 1.0, + "content": "reliable), 2) waypoints", + "type": "text" + }, + { + "bbox": [ + 418, + 486, + 438, + 496 + ], + "score": 0.61, + "content": "2 0 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "ahead along the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 412, + 510 + ], + "score": 1.0, + "content": "waypointer-provided route, which are often near where the expert arrives", + "type": "text" + }, + { + "bbox": [ + 413, + 497, + 441, + 508 + ], + "score": 0.83, + "content": "7 3 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "reliable) 3) the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 240, + 520 + ], + "score": 1.0, + "content": "same waypoints from 2), shifted", + "type": "text" + }, + { + "bbox": [ + 240, + 508, + 263, + 518 + ], + "score": 0.61, + "content": "2 . 5 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 507, + 325, + 520 + ], + "score": 1.0, + "content": "off of the road", + "type": "text" + }, + { + "bbox": [ + 325, + 507, + 350, + 519 + ], + "score": 0.86, + "content": "( 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "reliable). This shows that our learned", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "model exhibits a strong preference for valid waypoints. Therefore, a waypointer that provides expert", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 529, + 507, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 507, + 542 + ], + "score": 1.0, + "content": "waypoints via 1) half of the time, and slightly out-of-distribution waypoints via 3) in the other half,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 540, + 403, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 263, + 552 + ], + "score": 1.0, + "content": "an “unreliable” plan classifier achieves", + "type": "text" + }, + { + "bbox": [ + 263, + 540, + 291, + 551 + ], + "score": 0.88, + "content": "9 \\hat { 7 } . 5 \\hat { \\% }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 540, + 333, + 552 + ], + "score": 1.0, + "content": "recall and", + "type": "text" + }, + { + "bbox": [ + 334, + 540, + 361, + 551 + ], + "score": 0.87, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 540, + 403, + 552 + ], + "score": 1.0, + "content": "precision.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 108, + 567, + 292, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 294, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 294, + 580 + ], + "score": 1.0, + "content": "E.3 OUT-OF-DISTRIBUTION ROBUSTNESS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "The existence of both (1) observation noise and (2) uncertain/out-of-distribution observations is an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "important practical issue for autonomous vehicles. Although our current method only conditions", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "on our current observation, several extensions could help mitigate the negative effects of both (1)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "and (2). For (1), a Bayesian filtering formulation is arguably most ideal, to better estimate (and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "track) the location of static and dynamic obstacles under noise. However, such high-dimensional", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "filtering are often intractable, and might necessitate approximate Bayesian deep learning techniques,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "RNNs, or frame stacking, to benefit from multiple observations. Addressing (2) would ideally be", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "done by placing a prior over our neural network weights, to derive some measure of confidence in our", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "density estimation of how expert each plan is, such that unfamiliar scenes generate large uncertainty", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "on our density estimate that we could detect, and react cautiously (pessimistically) to. One way", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "to address the situation if the distributions are very different is to adopt an ensembling approach", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Lakshminarayanan et al. (2017) in order for the method to determine when the inputs are out of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "distribution — the ensemble will usually have higher variance (i.e. disagree) when each element of", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 35 + } + ], + "page_idx": 17, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 13, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 152, + 79, + 458, + 228 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 152, + 79, + 458, + 228 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 152, + 79, + 458, + 228 + ], + "spans": [ + { + "bbox": [ + 152, + 79, + 458, + 228 + ], + "score": 0.975, + "type": "image", + "image_path": "d8b13395204615bce46b5db80e8e75041fa8fdfb55f5d3cb5b16d5a4c9f0ca9e.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 152, + 79, + 458, + 128.66666666666666 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 152, + 128.66666666666666, + 458, + 178.33333333333331 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 152, + 178.33333333333331, + 458, + 227.99999999999997 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 237, + 505, + 271 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "Figure 14: Tolerating bad waypoints. The planner prefers waypoints in the distribution of expert", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 246, + 507, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 246, + 419, + 262 + ], + "score": 1.0, + "content": "behavior (on the road at a reasonable distance). Columns 1,2: Planning with", + "type": "text" + }, + { + "bbox": [ + 419, + 248, + 432, + 260 + ], + "score": 0.8, + "content": "^ 1 / 2", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 246, + 507, + 262 + ], + "score": 1.0, + "content": "decoy waypoints.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 106, + 259, + 398, + 271 + ], + "spans": [ + { + "bbox": [ + 106, + 259, + 398, + 271 + ], + "score": 1.0, + "content": "Columns 3,4: Planning with all waypoints on the wrong side of the road.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "title", + "bbox": [ + 108, + 294, + 271, + 305 + ], + "lines": [ + { + "bbox": [ + 106, + 293, + 273, + 306 + ], + "spans": [ + { + "bbox": [ + 106, + 293, + 273, + 306 + ], + "score": 1.0, + "content": "E.2 PLAN RELIABILITY ESTIMATION", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 6 + }, + { + "type": "text", + "bbox": [ + 107, + 315, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "spans": [ + { + "bbox": [ + 105, + 315, + 505, + 327 + ], + "score": 1.0, + "content": "Besides using our model to make a best-effort attempt to reach a user-specified goal, the fact that our", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 506, + 340 + ], + "score": 1.0, + "content": "model produces explicit likelihoods can also be leveraged to test the reliability of a plan by evaluating", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 105, + 336, + 506, + 351 + ], + "score": 1.0, + "content": "whether reaching particular waypoints will result in human-like behavior or not. This capability can", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 105, + 348, + 505, + 361 + ], + "score": 1.0, + "content": "be quite important for real-world safety-critical applications, such as autonomous driving, and can be", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "spans": [ + { + "bbox": [ + 105, + 359, + 506, + 372 + ], + "score": 1.0, + "content": "used to build a degree of fault tolerance into the system. We designed a classification experiment", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "to evaluate how well our model can recognize safe and unsafe plans. We planned our model to", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 505, + 394 + ], + "score": 1.0, + "content": "known good waypoints (where the expert actually went) and known bad waypoints (off-road) on", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 505, + 405 + ], + "score": 1.0, + "content": "1650 held-out test scenes. We used the planning criterion to classify these as good and bad plans and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 402, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 402, + 285, + 415 + ], + "score": 1.0, + "content": "found that we can detect these bad plans with", + "type": "text" + }, + { + "bbox": [ + 285, + 403, + 313, + 414 + ], + "score": 0.88, + "content": "9 \\bar { 7 } . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 402, + 354, + 415 + ], + "score": 1.0, + "content": "recall and", + "type": "text" + }, + { + "bbox": [ + 354, + 403, + 382, + 414 + ], + "score": 0.89, + "content": "9 0 . { \\dot { 2 } } \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 382, + 402, + 505, + 415 + ], + "score": 1.0, + "content": "precision. This result indicates", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 413, + 395, + 427 + ], + "spans": [ + { + "bbox": [ + 105, + 413, + 395, + 427 + ], + "score": 1.0, + "content": "imitative models could be effective in estimating the reliability of plans.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 11.5, + "bbox_fs": [ + 105, + 315, + 506, + 427 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 552 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 506, + 444 + ], + "score": 1.0, + "content": "We determined a threshold on the planning criterion by single-goal planning to the expert’s final", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 505, + 454 + ], + "score": 1.0, + "content": "location on offline validation data and setting it to the criterion’s mean minus one stddev. Although", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 465 + ], + "score": 1.0, + "content": "a more intelligent calibration could be performed by analyzing the information retrieval statistics", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 463, + 506, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 506, + 477 + ], + "score": 1.0, + "content": "on the offline validation, we found this simple calibration to yield reasonably good performance.", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 505, + 488 + ], + "score": 1.0, + "content": "We used 1650 test scenes to perform classification of plans to three different types of waypoints", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 282, + 498 + ], + "score": 1.0, + "content": "1) where the expert actually arrived at time", + "type": "text" + }, + { + "bbox": [ + 282, + 486, + 291, + 496 + ], + "score": 0.73, + "content": "T", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 486, + 295, + 498 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 295, + 486, + 323, + 497 + ], + "score": 0.81, + "content": "8 9 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 324, + 486, + 418, + 498 + ], + "score": 1.0, + "content": "reliable), 2) waypoints", + "type": "text" + }, + { + "bbox": [ + 418, + 486, + 438, + 496 + ], + "score": 0.61, + "content": "2 0 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "ahead along the", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 412, + 510 + ], + "score": 1.0, + "content": "waypointer-provided route, which are often near where the expert arrives", + "type": "text" + }, + { + "bbox": [ + 413, + 497, + 441, + 508 + ], + "score": 0.83, + "content": "7 3 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "reliable) 3) the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 507, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 507, + 240, + 520 + ], + "score": 1.0, + "content": "same waypoints from 2), shifted", + "type": "text" + }, + { + "bbox": [ + 240, + 508, + 263, + 518 + ], + "score": 0.61, + "content": "2 . 5 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 263, + 507, + 325, + 520 + ], + "score": 1.0, + "content": "off of the road", + "type": "text" + }, + { + "bbox": [ + 325, + 507, + 350, + 519 + ], + "score": 0.86, + "content": "( 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 351, + 507, + 506, + 520 + ], + "score": 1.0, + "content": "reliable). This shows that our learned", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 505, + 531 + ], + "score": 1.0, + "content": "model exhibits a strong preference for valid waypoints. Therefore, a waypointer that provides expert", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 529, + 507, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 529, + 507, + 542 + ], + "score": 1.0, + "content": "waypoints via 1) half of the time, and slightly out-of-distribution waypoints via 3) in the other half,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 540, + 403, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 263, + 552 + ], + "score": 1.0, + "content": "an “unreliable” plan classifier achieves", + "type": "text" + }, + { + "bbox": [ + 263, + 540, + 291, + 551 + ], + "score": 0.88, + "content": "9 \\hat { 7 } . 5 \\hat { \\% }", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 540, + 333, + 552 + ], + "score": 1.0, + "content": "recall and", + "type": "text" + }, + { + "bbox": [ + 334, + 540, + 361, + 551 + ], + "score": 0.87, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 540, + 403, + 552 + ], + "score": 1.0, + "content": "precision.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 430, + 507, + 552 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 567, + 292, + 579 + ], + "lines": [ + { + "bbox": [ + 106, + 567, + 294, + 580 + ], + "spans": [ + { + "bbox": [ + 106, + 567, + 294, + 580 + ], + "score": 1.0, + "content": "E.3 OUT-OF-DISTRIBUTION ROBUSTNESS", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 589, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 506, + 601 + ], + "score": 1.0, + "content": "The existence of both (1) observation noise and (2) uncertain/out-of-distribution observations is an", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 506, + 613 + ], + "score": 1.0, + "content": "important practical issue for autonomous vehicles. Although our current method only conditions", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 623 + ], + "score": 1.0, + "content": "on our current observation, several extensions could help mitigate the negative effects of both (1)", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "spans": [ + { + "bbox": [ + 106, + 622, + 505, + 634 + ], + "score": 1.0, + "content": "and (2). For (1), a Bayesian filtering formulation is arguably most ideal, to better estimate (and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 106, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "track) the location of static and dynamic obstacles under noise. However, such high-dimensional", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 657 + ], + "score": 1.0, + "content": "filtering are often intractable, and might necessitate approximate Bayesian deep learning techniques,", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 654, + 505, + 668 + ], + "score": 1.0, + "content": "RNNs, or frame stacking, to benefit from multiple observations. Addressing (2) would ideally be", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "spans": [ + { + "bbox": [ + 105, + 665, + 506, + 679 + ], + "score": 1.0, + "content": "done by placing a prior over our neural network weights, to derive some measure of confidence in our", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 105, + 676, + 505, + 690 + ], + "score": 1.0, + "content": "density estimation of how expert each plan is, such that unfamiliar scenes generate large uncertainty", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 104, + 686, + 505, + 702 + ], + "spans": [ + { + "bbox": [ + 104, + 686, + 505, + 702 + ], + "score": 1.0, + "content": "on our density estimate that we could detect, and react cautiously (pessimistically) to. One way", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "to address the situation if the distributions are very different is to adopt an ensembling approach", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 506, + 722 + ], + "score": 1.0, + "content": "Lakshminarayanan et al. (2017) in order for the method to determine when the inputs are out of", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 506, + 733 + ], + "score": 1.0, + "content": "distribution — the ensemble will usually have higher variance (i.e. disagree) when each element of", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "the ensemble is provided with an out-of-distribution input. For instance, this variance could be used", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 276, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 276, + 106 + ], + "score": 1.0, + "content": "as a penalization in the planning criterion.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 35, + "bbox_fs": [ + 104, + 588, + 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 ensemble is provided with an out-of-distribution input. For instance, this variance could be used", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 276, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 276, + 106 + ], + "score": 1.0, + "content": "as a penalization in the planning criterion.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 118, + 231, + 130 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 232, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 232, + 130 + ], + "score": 1.0, + "content": "E.4 TRAFFIC-LIGHT NOISE", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 139, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "As discussed, our model assumes access to the traffic-light state provided by the simulator, which we", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 504, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 123, + 161 + ], + "score": 1.0, + "content": "call", + "type": "text" + }, + { + "bbox": [ + 124, + 150, + 131, + 160 + ], + "score": 0.63, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 150, + 504, + 161 + ], + "score": 1.0, + "content": ". However, access to this state would be noisy in practice, because it relies on a sensor-based", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 342, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 342, + 172 + ], + "score": 1.0, + "content": "(usually image-based) detection and classification module.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 344, + 191 + ], + "score": 1.0, + "content": "We performed an experiment to assess robustness to noise in", + "type": "text" + }, + { + "bbox": [ + 345, + 178, + 352, + 188 + ], + "score": 0.49, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 176, + 443, + 191 + ], + "score": 1.0, + "content": ": we simulated noise in", + "type": "text" + }, + { + "bbox": [ + 443, + 178, + 451, + 188 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 176, + 505, + 191 + ], + "score": 1.0, + "content": "by “flipping\"", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 182, + 201 + ], + "score": 1.0, + "content": "the light state with", + "type": "text" + }, + { + "bbox": [ + 182, + 189, + 202, + 199 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 189, + 434, + 201 + ], + "score": 1.0, + "content": "probability, corresponding to a light state detector that has", + "type": "text" + }, + { + "bbox": [ + 435, + 189, + 454, + 199 + ], + "score": 0.86, + "content": "80 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "accuracy on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "score": 1.0, + "content": "average. “Flipping\" means that if the light is green, then changingλ to indicate red, and if the light", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 209, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 104, + 209, + 192, + 224 + ], + "score": 1.0, + "content": "is red, then changing", + "type": "text" + }, + { + "bbox": [ + 193, + 211, + 200, + 221 + ], + "score": 0.68, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 209, + 506, + 224 + ], + "score": 1.0, + "content": "to indicate green. We performed this following the experimental method of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "“Region Final-St. Indicator S.” in dynamic Town02, and ran it with three separate seeds. The means", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "and their standard errors are reported in Table 6. The conclusion we draw is that the approach can still", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "achieve success most of the time, although it tends to violate red-lights more often. Qualitatively, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 253, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 268 + ], + "score": 1.0, + "content": "observed the resulting behavior near intersections to sometimes be “jerky”, with the model alternating", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "between stopping and non-stopping plans. We hypothesize that the model itself could be made more", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 347, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 190, + 289 + ], + "score": 1.0, + "content": "robust if the noise in", + "type": "text" + }, + { + "bbox": [ + 191, + 277, + 198, + 286 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 277, + 347, + 289 + ], + "score": 1.0, + "content": "was also present in the training data.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5 + }, + { + "type": "table", + "bbox": [ + 108, + 341, + 503, + 383 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 298, + 505, + 332 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 354, + 311 + ], + "score": 1.0, + "content": "Table 6: We evaluate the effect of noise in the traffic-light state", + "type": "text" + }, + { + "bbox": [ + 354, + 299, + 367, + 309 + ], + "score": 0.46, + "content": "( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "on CARLA’s Dynamic Navigation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "task. Noise in the light state predictably degrades overall and red-light performance, but not to the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 321, + 318, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 318, + 332 + ], + "score": 1.0, + "content": "point of preventing the method from operating at all.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "table_body", + "bbox": [ + 108, + 341, + 503, + 383 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 341, + 503, + 383 + ], + "spans": [ + { + "bbox": [ + 108, + 341, + 503, + 383 + ], + "score": 0.977, + "html": "
Town02 Dynamic Navigation MethodSuccessRan Red LightWrong laneOff road
Region Final-St. Indicator S. (original)88%±3.32.57%±0.040.49%±0.322.6%±1.06
Region Final-St. Indicator S. (noisy λ)76%±5.034.8%± 2.40.15%±0.041.79% ±0.34
", + "type": "table", + "image_path": "7669418f324dd074165ae9dac844ebb227759cbc3041c1c173d0fc037f7f26bc.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 108, + 341, + 503, + 355.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 355.0, + 503, + 369.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 108, + 369.0, + 503, + 383.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 405, + 294, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 295, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 295, + 419 + ], + "score": 1.0, + "content": "F POTHOLE EXPERIMENT DETAILS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "We simulated potholes in the environment by randomly inserting them in the cost map near each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 145, + 453 + ], + "score": 1.0, + "content": "waypoint", + "type": "text" + }, + { + "bbox": [ + 145, + 442, + 150, + 451 + ], + "score": 0.62, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 441, + 244, + 453 + ], + "score": 1.0, + "content": "with offsets distributed", + "type": "text" + }, + { + "bbox": [ + 244, + 441, + 322, + 453 + ], + "score": 0.69, + "content": "\\mathcal { N } _ { i } ( \\mu { = } [ - 1 5 \\mathrm { m } , 0 \\mathrm { m } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 441, + 326, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 441, + 409, + 453 + ], + "score": 0.55, + "content": "\\Sigma = \\mathrm { d i a g } ( [ 1 , 0 . 0 1 ] ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 441, + 505, + 453 + ], + "score": 1.0, + "content": ", (i.e. mean-centered on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 452, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 203, + 465 + ], + "score": 1.0, + "content": "the right side of the lane", + "type": "text" + }, + { + "bbox": [ + 204, + 452, + 223, + 462 + ], + "score": 0.53, + "content": "1 5 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 452, + 437, + 465 + ], + "score": 1.0, + "content": "before each waypoint). We inserted pixels of root cost", + "type": "text" + }, + { + "bbox": [ + 438, + 452, + 461, + 462 + ], + "score": 0.82, + "content": "- 1 e 3", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 452, + 506, + 465 + ], + "score": 1.0, + "content": "in the cost", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 463, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 228, + 475 + ], + "score": 1.0, + "content": "map at a single sample of each", + "type": "text" + }, + { + "bbox": [ + 228, + 463, + 240, + 474 + ], + "score": 0.88, + "content": "{ \\mathcal { N } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 463, + 364, + 475 + ], + "score": 1.0, + "content": ", binary-dilated the cost map by", + "type": "text" + }, + { + "bbox": [ + 365, + 463, + 378, + 475 + ], + "score": 0.86, + "content": "^ 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 463, + 505, + 475 + ], + "score": 1.0, + "content": "of the lane-width (spreading the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "cost to neighboring pixels), and then blurred the cost map by convolving with a normalized truncated", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 485, + 299, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 177, + 495 + ], + "score": 1.0, + "content": "Gaussian filter of", + "type": "text" + }, + { + "bbox": [ + 178, + 485, + 203, + 495 + ], + "score": 0.9, + "content": "\\sigma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 486, + 299, + 495 + ], + "score": 1.0, + "content": "and truncation width 1.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5 + }, + { + "type": "title", + "bbox": [ + 109, + 512, + 272, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 273, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 273, + 527 + ], + "score": 1.0, + "content": "G BASELINE VISUALIZATIONS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 328, + 548 + ], + "lines": [ + { + "bbox": [ + 106, + 537, + 329, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 329, + 550 + ], + "score": 1.0, + "content": "See Fig. 15 for a visualization of our baseline methods.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 564, + 233, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 234, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 234, + 579 + ], + "score": 1.0, + "content": "H HYPERPARAMETERS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 185, + 603 + ], + "score": 1.0, + "content": "In order to tune the", + "type": "text" + }, + { + "bbox": [ + 186, + 592, + 192, + 600 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 588, + 506, + 603 + ], + "score": 1.0, + "content": "hyperparameter of the unconstrained likelihoods, we undertook the following", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 453, + 613 + ], + "score": 1.0, + "content": "binary-search procedure. When the prior frequently overwhelmed the posterior, we set", + "type": "text" + }, + { + "bbox": [ + 453, + 601, + 491, + 612 + ], + "score": 0.88, + "content": "\\epsilon \\gets 0 . 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 601, + 505, + 613 + ], + "score": 1.0, + "content": ", to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "yield tighter covariances, and thus more penalty for failing to satisfy the goals. When the posterior", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 267, + 635 + ], + "score": 1.0, + "content": "frequently overwhelmed the prior, we set", + "type": "text" + }, + { + "bbox": [ + 268, + 623, + 298, + 633 + ], + "score": 0.9, + "content": "\\epsilon 5 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 623, + 506, + 635 + ], + "score": 1.0, + "content": ", to yield looser covariances, and thus less penalty for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "failing to satisfy the goals. We executed this process three times: once for the “Gaussian Final-State", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "Mixture” experiments (Section 4), once for the “Noise Robustness” Experiments (Section 4.1), and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "once for the pothole-planning experiments (Section 4.2). Note that the Constrained-Goal Likelihoods", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 667, + 265, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 265, + 679 + ], + "score": 1.0, + "content": "introduced no hyperparameters to tune.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5 + } + ], + "page_idx": 18, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 106 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 118, + 231, + 130 + ], + "lines": [ + { + "bbox": [ + 106, + 118, + 232, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 118, + 232, + 130 + ], + "score": 1.0, + "content": "E.4 TRAFFIC-LIGHT NOISE", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 107, + 139, + 505, + 172 + ], + "lines": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "spans": [ + { + "bbox": [ + 105, + 138, + 505, + 152 + ], + "score": 1.0, + "content": "As discussed, our model assumes access to the traffic-light state provided by the simulator, which we", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 150, + 504, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 150, + 123, + 161 + ], + "score": 1.0, + "content": "call", + "type": "text" + }, + { + "bbox": [ + 124, + 150, + 131, + 160 + ], + "score": 0.63, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 131, + 150, + 504, + 161 + ], + "score": 1.0, + "content": ". However, access to this state would be noisy in practice, because it relies on a sensor-based", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 161, + 342, + 172 + ], + "spans": [ + { + "bbox": [ + 105, + 161, + 342, + 172 + ], + "score": 1.0, + "content": "(usually image-based) detection and classification module.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4, + "bbox_fs": [ + 105, + 138, + 505, + 172 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 177, + 505, + 288 + ], + "lines": [ + { + "bbox": [ + 105, + 176, + 505, + 191 + ], + "spans": [ + { + "bbox": [ + 105, + 176, + 344, + 191 + ], + "score": 1.0, + "content": "We performed an experiment to assess robustness to noise in", + "type": "text" + }, + { + "bbox": [ + 345, + 178, + 352, + 188 + ], + "score": 0.49, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 176, + 443, + 191 + ], + "score": 1.0, + "content": ": we simulated noise in", + "type": "text" + }, + { + "bbox": [ + 443, + 178, + 451, + 188 + ], + "score": 0.79, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 451, + 176, + 505, + 191 + ], + "score": 1.0, + "content": "by “flipping\"", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 189, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 189, + 182, + 201 + ], + "score": 1.0, + "content": "the light state with", + "type": "text" + }, + { + "bbox": [ + 182, + 189, + 202, + 199 + ], + "score": 0.87, + "content": "20 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 202, + 189, + 434, + 201 + ], + "score": 1.0, + "content": "probability, corresponding to a light state detector that has", + "type": "text" + }, + { + "bbox": [ + 435, + 189, + 454, + 199 + ], + "score": 0.86, + "content": "80 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 455, + 189, + 505, + 201 + ], + "score": 1.0, + "content": "accuracy on", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 506, + 212 + ], + "score": 1.0, + "content": "average. “Flipping\" means that if the light is green, then changingλ to indicate red, and if the light", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 104, + 209, + 506, + 224 + ], + "spans": [ + { + "bbox": [ + 104, + 209, + 192, + 224 + ], + "score": 1.0, + "content": "is red, then changing", + "type": "text" + }, + { + "bbox": [ + 193, + 211, + 200, + 221 + ], + "score": 0.68, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 209, + 506, + 224 + ], + "score": 1.0, + "content": "to indicate green. We performed this following the experimental method of", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "spans": [ + { + "bbox": [ + 105, + 221, + 506, + 235 + ], + "score": 1.0, + "content": "“Region Final-St. Indicator S.” in dynamic Town02, and ran it with three separate seeds. The means", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "spans": [ + { + "bbox": [ + 106, + 233, + 505, + 245 + ], + "score": 1.0, + "content": "and their standard errors are reported in Table 6. The conclusion we draw is that the approach can still", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "spans": [ + { + "bbox": [ + 105, + 243, + 505, + 257 + ], + "score": 1.0, + "content": "achieve success most of the time, although it tends to violate red-lights more often. Qualitatively, we", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 253, + 505, + 268 + ], + "spans": [ + { + "bbox": [ + 105, + 253, + 505, + 268 + ], + "score": 1.0, + "content": "observed the resulting behavior near intersections to sometimes be “jerky”, with the model alternating", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "spans": [ + { + "bbox": [ + 105, + 266, + 505, + 279 + ], + "score": 1.0, + "content": "between stopping and non-stopping plans. We hypothesize that the model itself could be made more", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 277, + 347, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 277, + 190, + 289 + ], + "score": 1.0, + "content": "robust if the noise in", + "type": "text" + }, + { + "bbox": [ + 191, + 277, + 198, + 286 + ], + "score": 0.75, + "content": "\\lambda", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 277, + 347, + 289 + ], + "score": 1.0, + "content": "was also present in the training data.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 10.5, + "bbox_fs": [ + 104, + 176, + 506, + 289 + ] + }, + { + "type": "table", + "bbox": [ + 108, + 341, + 503, + 383 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 106, + 298, + 505, + 332 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 104, + 296, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 104, + 296, + 354, + 311 + ], + "score": 1.0, + "content": "Table 6: We evaluate the effect of noise in the traffic-light state", + "type": "text" + }, + { + "bbox": [ + 354, + 299, + 367, + 309 + ], + "score": 0.46, + "content": "( \\lambda )", + "type": "inline_equation" + }, + { + "bbox": [ + 367, + 296, + 505, + 311 + ], + "score": 1.0, + "content": "on CARLA’s Dynamic Navigation", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 505, + 322 + ], + "score": 1.0, + "content": "task. Noise in the light state predictably degrades overall and red-light performance, but not to the", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 321, + 318, + 332 + ], + "spans": [ + { + "bbox": [ + 105, + 321, + 318, + 332 + ], + "score": 1.0, + "content": "point of preventing the method from operating at all.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 17 + }, + { + "type": "table_body", + "bbox": [ + 108, + 341, + 503, + 383 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 341, + 503, + 383 + ], + "spans": [ + { + "bbox": [ + 108, + 341, + 503, + 383 + ], + "score": 0.977, + "html": "
Town02 Dynamic Navigation MethodSuccessRan Red LightWrong laneOff road
Region Final-St. Indicator S. (original)88%±3.32.57%±0.040.49%±0.322.6%±1.06
Region Final-St. Indicator S. (noisy λ)76%±5.034.8%± 2.40.15%±0.041.79% ±0.34
", + "type": "table", + "image_path": "7669418f324dd074165ae9dac844ebb227759cbc3041c1c173d0fc037f7f26bc.jpg" + } + ] + } + ], + "index": 20, + "virtual_lines": [ + { + "bbox": [ + 108, + 341, + 503, + 355.0 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 108, + 355.0, + 503, + 369.0 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 108, + 369.0, + 503, + 383.0 + ], + "spans": [], + "index": 21 + } + ] + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 405, + 294, + 417 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 295, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 295, + 419 + ], + "score": 1.0, + "content": "F POTHOLE EXPERIMENT DETAILS", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 430, + 505, + 496 + ], + "lines": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 505, + 442 + ], + "score": 1.0, + "content": "We simulated potholes in the environment by randomly inserting them in the cost map near each", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 441, + 505, + 453 + ], + "spans": [ + { + "bbox": [ + 105, + 441, + 145, + 453 + ], + "score": 1.0, + "content": "waypoint", + "type": "text" + }, + { + "bbox": [ + 145, + 442, + 150, + 451 + ], + "score": 0.62, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 150, + 441, + 244, + 453 + ], + "score": 1.0, + "content": "with offsets distributed", + "type": "text" + }, + { + "bbox": [ + 244, + 441, + 322, + 453 + ], + "score": 0.69, + "content": "\\mathcal { N } _ { i } ( \\mu { = } [ - 1 5 \\mathrm { m } , 0 \\mathrm { m } ]", + "type": "inline_equation" + }, + { + "bbox": [ + 323, + 441, + 326, + 453 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 326, + 441, + 409, + 453 + ], + "score": 0.55, + "content": "\\Sigma = \\mathrm { d i a g } ( [ 1 , 0 . 0 1 ] ) )", + "type": "inline_equation" + }, + { + "bbox": [ + 409, + 441, + 505, + 453 + ], + "score": 1.0, + "content": ", (i.e. mean-centered on", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 452, + 506, + 465 + ], + "spans": [ + { + "bbox": [ + 106, + 452, + 203, + 465 + ], + "score": 1.0, + "content": "the right side of the lane", + "type": "text" + }, + { + "bbox": [ + 204, + 452, + 223, + 462 + ], + "score": 0.53, + "content": "1 5 \\mathrm { m }", + "type": "inline_equation" + }, + { + "bbox": [ + 223, + 452, + 437, + 465 + ], + "score": 1.0, + "content": "before each waypoint). We inserted pixels of root cost", + "type": "text" + }, + { + "bbox": [ + 438, + 452, + 461, + 462 + ], + "score": 0.82, + "content": "- 1 e 3", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 452, + 506, + 465 + ], + "score": 1.0, + "content": "in the cost", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 463, + 505, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 228, + 475 + ], + "score": 1.0, + "content": "map at a single sample of each", + "type": "text" + }, + { + "bbox": [ + 228, + 463, + 240, + 474 + ], + "score": 0.88, + "content": "{ \\mathcal { N } } _ { i }", + "type": "inline_equation" + }, + { + "bbox": [ + 241, + 463, + 364, + 475 + ], + "score": 1.0, + "content": ", binary-dilated the cost map by", + "type": "text" + }, + { + "bbox": [ + 365, + 463, + 378, + 475 + ], + "score": 0.86, + "content": "^ 1 / 3", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 463, + 505, + 475 + ], + "score": 1.0, + "content": "of the lane-width (spreading the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 486 + ], + "score": 1.0, + "content": "cost to neighboring pixels), and then blurred the cost map by convolving with a normalized truncated", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 485, + 299, + 495 + ], + "spans": [ + { + "bbox": [ + 106, + 486, + 177, + 495 + ], + "score": 1.0, + "content": "Gaussian filter of", + "type": "text" + }, + { + "bbox": [ + 178, + 485, + 203, + 495 + ], + "score": 0.9, + "content": "\\sigma = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 486, + 299, + 495 + ], + "score": 1.0, + "content": "and truncation width 1.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 429, + 506, + 495 + ] + }, + { + "type": "title", + "bbox": [ + 109, + 512, + 272, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 511, + 273, + 527 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 273, + 527 + ], + "score": 1.0, + "content": "G BASELINE VISUALIZATIONS", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 537, + 328, + 548 + ], + "lines": [ + { + "bbox": [ + 106, + 537, + 329, + 550 + ], + "spans": [ + { + "bbox": [ + 106, + 537, + 329, + 550 + ], + "score": 1.0, + "content": "See Fig. 15 for a visualization of our baseline methods.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 30, + "bbox_fs": [ + 106, + 537, + 329, + 550 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 564, + 233, + 578 + ], + "lines": [ + { + "bbox": [ + 106, + 565, + 234, + 579 + ], + "spans": [ + { + "bbox": [ + 106, + 565, + 234, + 579 + ], + "score": 1.0, + "content": "H HYPERPARAMETERS", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 589, + 505, + 678 + ], + "lines": [ + { + "bbox": [ + 105, + 588, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 588, + 185, + 603 + ], + "score": 1.0, + "content": "In order to tune the", + "type": "text" + }, + { + "bbox": [ + 186, + 592, + 192, + 600 + ], + "score": 0.61, + "content": "\\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 588, + 506, + 603 + ], + "score": 1.0, + "content": "hyperparameter of the unconstrained likelihoods, we undertook the following", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 106, + 601, + 453, + 613 + ], + "score": 1.0, + "content": "binary-search procedure. When the prior frequently overwhelmed the posterior, we set", + "type": "text" + }, + { + "bbox": [ + 453, + 601, + 491, + 612 + ], + "score": 0.88, + "content": "\\epsilon \\gets 0 . 2 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 601, + 505, + 613 + ], + "score": 1.0, + "content": ", to", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "yield tighter covariances, and thus more penalty for failing to satisfy the goals. When the posterior", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 623, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 106, + 623, + 267, + 635 + ], + "score": 1.0, + "content": "frequently overwhelmed the prior, we set", + "type": "text" + }, + { + "bbox": [ + 268, + 623, + 298, + 633 + ], + "score": 0.9, + "content": "\\epsilon 5 \\epsilon", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 623, + 506, + 635 + ], + "score": 1.0, + "content": ", to yield looser covariances, and thus less penalty for", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 506, + 646 + ], + "score": 1.0, + "content": "failing to satisfy the goals. We executed this process three times: once for the “Gaussian Final-State", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 645, + 505, + 657 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 505, + 657 + ], + "score": 1.0, + "content": "Mixture” experiments (Section 4), once for the “Noise Robustness” Experiments (Section 4.1), and", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 505, + 668 + ], + "score": 1.0, + "content": "once for the pothole-planning experiments (Section 4.2). Note that the Constrained-Goal Likelihoods", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 106, + 667, + 265, + 679 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 265, + 679 + ], + "score": 1.0, + "content": "introduced no hyperparameters to tune.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 588, + 506, + 679 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 176, + 308, + 437, + 437 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 176, + 308, + 437, + 437 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 308, + 437, + 437 + ], + "spans": [ + { + "bbox": [ + 176, + 308, + 437, + 437 + ], + "score": 0.968, + "type": "image", + "image_path": "55a6407c4cd42ba8899098a9c834492b60df3c9d00acac3919a53aec20a9e353.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 176, + 308, + 437, + 351.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 176, + 351.0, + 437, + 394.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 176, + 394.0, + 437, + 437.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 444, + 506, + 501 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "Figure 15: Baseline methods we compare against. The red crosses indicate the past 10 positions of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "the agent. Left: Imitation Learning baseline: the green cross indicates the provided goal, and the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 466, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 506, + 480 + ], + "score": 1.0, + "content": "yellow plus indicates the predicted setpoint for the controller. Right: Model-based RL baseline: the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "green regions indicate the model’s predicted reachability, the red regions are post-processed LIDAR", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 487, + 232, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 232, + 503 + ], + "score": 1.0, + "content": "used to create its obstacle map.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + } + ], + "page_idx": 19, + "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 2020", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 176, + 308, + 437, + 437 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 176, + 308, + 437, + 437 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 308, + 437, + 437 + ], + "spans": [ + { + "bbox": [ + 176, + 308, + 437, + 437 + ], + "score": 0.968, + "type": "image", + "image_path": "55a6407c4cd42ba8899098a9c834492b60df3c9d00acac3919a53aec20a9e353.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 176, + 308, + 437, + 351.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 176, + 351.0, + 437, + 394.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 176, + 394.0, + 437, + 437.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 106, + 444, + 506, + 501 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "spans": [ + { + "bbox": [ + 106, + 445, + 505, + 457 + ], + "score": 1.0, + "content": "Figure 15: Baseline methods we compare against. The red crosses indicate the past 10 positions of", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 456, + 505, + 468 + ], + "score": 1.0, + "content": "the agent. Left: Imitation Learning baseline: the green cross indicates the provided goal, and the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 466, + 506, + 480 + ], + "spans": [ + { + "bbox": [ + 104, + 466, + 506, + 480 + ], + "score": 1.0, + "content": "yellow plus indicates the predicted setpoint for the controller. Right: Model-based RL baseline: the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 104, + 477, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 104, + 477, + 506, + 491 + ], + "score": 1.0, + "content": "green regions indicate the model’s predicted reachability, the red regions are post-processed LIDAR", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 487, + 232, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 232, + 503 + ], + "score": 1.0, + "content": "used to create its obstacle map.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + } + ], + "index": 3.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/Skl4mRNYDr/Skl4mRNYDr_model.json b/parse/train/Skl4mRNYDr/Skl4mRNYDr_model.json new file mode 100644 index 0000000000000000000000000000000000000000..4c75b72421f46d0217ae9ecde8f1aec7af478645 --- /dev/null +++ b/parse/train/Skl4mRNYDr/Skl4mRNYDr_model.json @@ -0,0 +1,25278 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 398, + 638, + 1303, + 638, + 1303, + 1066, + 398, + 1066 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1758, + 1404, + 1758, + 1404, + 2034, + 298, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1438, + 1404, + 1438, + 1404, + 1744, + 298, + 1744 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1238, + 1403, + 1238, + 1403, + 1422, + 298, + 1422 + ], + "score": 0.979 + }, + { + "category_id": 0, + "poly": [ + 301, + 220, + 1329, + 220, + 1329, + 325, + 301, + 325 + ], + "score": 0.954 + }, + { + "category_id": 1, + "poly": [ + 684, + 381, + 1003, + 381, + 1003, + 474, + 684, + 474 + ], + "score": 0.94 + }, + { + "category_id": 1, + "poly": [ + 312, + 381, + 619, + 381, + 619, + 474, + 312, + 474 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 1067, + 383, + 1348, + 383, + 1348, + 474, + 1067, + 474 + ], + "score": 0.93 + }, + { + "category_id": 0, + "poly": [ + 301, + 1157, + 572, + 1157, + 572, + 1192, + 301, + 1192 + ], + "score": 0.882 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 817, + 75, + 817, + 105, + 299, + 105 + ], + "score": 0.876 + }, + { + "category_id": 0, + "poly": [ + 773, + 556, + 927, + 556, + 927, + 589, + 773, + 589 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.727 + }, + { + "category_id": 13, + "poly": [ + 620, + 640, + 665, + 640, + 665, + 669, + 620, + 669 + ], + "score": 0.36, + "latex": "\\left( \\operatorname { I L } \\right)" + }, + { + "category_id": 13, + "poly": [ + 429, + 791, + 460, + 791, + 460, + 819, + 429, + 819 + ], + "score": 0.27, + "latex": "\\mathrm { I L }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 215.0, + 928.0, + 215.0, + 928.0, + 273.0, + 296.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 274.0, + 1331.0, + 274.0, + 1331.0, + 326.0, + 296.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1153.0, + 579.0, + 1153.0, + 579.0, + 1200.0, + 294.0, + 1200.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": [ + 768.0, + 552.0, + 934.0, + 552.0, + 934.0, + 595.0, + 768.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 636.0, + 619.0, + 636.0, + 619.0, + 674.0, + 393.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 636.0, + 1307.0, + 636.0, + 1307.0, + 674.0, + 666.0, + 674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 668.0, + 1308.0, + 668.0, + 1308.0, + 704.0, + 394.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 699.0, + 1307.0, + 699.0, + 1307.0, + 733.0, + 392.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 729.0, + 1305.0, + 729.0, + 1305.0, + 762.0, + 392.0, + 762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 760.0, + 1305.0, + 760.0, + 1305.0, + 793.0, + 393.0, + 793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 789.0, + 428.0, + 789.0, + 428.0, + 825.0, + 394.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 789.0, + 1304.0, + 789.0, + 1304.0, + 825.0, + 461.0, + 825.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 821.0, + 1305.0, + 821.0, + 1305.0, + 855.0, + 394.0, + 855.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 850.0, + 1305.0, + 850.0, + 1305.0, + 888.0, + 393.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 882.0, + 1305.0, + 882.0, + 1305.0, + 916.0, + 393.0, + 916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 912.0, + 1305.0, + 912.0, + 1305.0, + 946.0, + 394.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 942.0, + 1304.0, + 942.0, + 1304.0, + 977.0, + 394.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 975.0, + 1304.0, + 975.0, + 1304.0, + 1007.0, + 395.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1004.0, + 1305.0, + 1004.0, + 1305.0, + 1039.0, + 394.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1036.0, + 1272.0, + 1036.0, + 1272.0, + 1068.0, + 393.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1759.0, + 1404.0, + 1759.0, + 1404.0, + 1792.0, + 297.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1786.0, + 1404.0, + 1786.0, + 1404.0, + 1824.0, + 293.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1818.0, + 1404.0, + 1818.0, + 1404.0, + 1857.0, + 292.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1882.0, + 1406.0, + 1882.0, + 1406.0, + 1918.0, + 293.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1405.0, + 1912.0, + 1405.0, + 1948.0, + 294.0, + 1948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1405.0, + 1940.0, + 1405.0, + 1980.0, + 292.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1316.0, + 2004.0, + 1316.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1436.0, + 1406.0, + 1436.0, + 1406.0, + 1473.0, + 293.0, + 1473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1467.0, + 1404.0, + 1467.0, + 1404.0, + 1503.0, + 295.0, + 1503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1496.0, + 1409.0, + 1496.0, + 1409.0, + 1536.0, + 291.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1529.0, + 1405.0, + 1529.0, + 1405.0, + 1564.0, + 296.0, + 1564.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1561.0, + 1406.0, + 1561.0, + 1406.0, + 1595.0, + 293.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1590.0, + 1406.0, + 1590.0, + 1406.0, + 1625.0, + 294.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1616.0, + 1408.0, + 1616.0, + 1408.0, + 1660.0, + 292.0, + 1660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1648.0, + 1406.0, + 1648.0, + 1406.0, + 1687.0, + 292.0, + 1687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1682.0, + 1404.0, + 1682.0, + 1404.0, + 1714.0, + 296.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1713.0, + 1362.0, + 1713.0, + 1362.0, + 1746.0, + 293.0, + 1746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1240.0, + 1404.0, + 1240.0, + 1404.0, + 1272.0, + 296.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1269.0, + 1407.0, + 1269.0, + 1407.0, + 1303.0, + 292.0, + 1303.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1296.0, + 1405.0, + 1296.0, + 1405.0, + 1335.0, + 293.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1327.0, + 1405.0, + 1327.0, + 1405.0, + 1366.0, + 293.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1358.0, + 1407.0, + 1358.0, + 1407.0, + 1396.0, + 293.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1392.0, + 685.0, + 1392.0, + 685.0, + 1423.0, + 296.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 383.0, + 906.0, + 383.0, + 906.0, + 412.0, + 684.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 409.0, + 837.0, + 409.0, + 837.0, + 448.0, + 682.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 682.0, + 447.0, + 1004.0, + 447.0, + 1004.0, + 475.0, + 682.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 379.0, + 552.0, + 379.0, + 552.0, + 414.0, + 311.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 409.0, + 466.0, + 409.0, + 466.0, + 447.0, + 312.0, + 447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 446.0, + 620.0, + 446.0, + 620.0, + 476.0, + 311.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 381.0, + 1243.0, + 381.0, + 1243.0, + 416.0, + 1067.0, + 416.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 409.0, + 1222.0, + 409.0, + 1222.0, + 449.0, + 1066.0, + 449.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 442.0, + 1350.0, + 442.0, + 1350.0, + 476.0, + 1067.0, + 476.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 321, + 224, + 1388, + 224, + 1388, + 738, + 321, + 738 + ], + "score": 0.973 + }, + { + "category_id": 1, + "poly": [ + 297, + 1870, + 1405, + 1870, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.97 + }, + { + "category_id": 1, + "poly": [ + 297, + 1642, + 1406, + 1642, + 1406, + 1858, + 297, + 1858 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 995, + 1407, + 995, + 1407, + 1086, + 297, + 1086 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 295, + 773, + 1406, + 773, + 1406, + 929, + 295, + 929 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 297, + 1121, + 1407, + 1121, + 1407, + 1515, + 297, + 1515 + ], + "score": 0.943 + }, + { + "category_id": 0, + "poly": [ + 301, + 1567, + 719, + 1567, + 719, + 1603, + 301, + 1603 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.695 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.296 + }, + { + "category_id": 13, + "poly": [ + 1116, + 1939, + 1263, + 1939, + 1263, + 1976, + 1116, + 1976 + ], + "score": 0.93, + "latex": "s ^ { i } \\sim p ( \\mathbf { S } | \\phi ^ { i } )" + }, + { + "category_id": 13, + "poly": [ + 625, + 1902, + 1020, + 1902, + 1020, + 1943, + 625, + 1943 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { q ( \\mathbf { S } _ { 1 : T } | \\phi ) = \\prod _ { t = 1 } ^ { T } q ( \\mathbf { S } _ { t } | \\mathbf { S } _ { 1 : t - 1 } , \\phi ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 297, + 1938, + 506, + 1938, + 506, + 1976, + 297, + 1976 + ], + "score": 0.92, + "latex": "\\mathcal { D } = \\{ ( s ^ { i } , \\phi ^ { i } ) \\} _ { i = 1 } ^ { N }" + }, + { + "category_id": 13, + "poly": [ + 1132, + 1793, + 1349, + 1793, + 1349, + 1825, + 1132, + 1825 + ], + "score": 0.92, + "latex": "\\mathbf { S } \\doteq \\mathbf { S } _ { 1 : T } \\in \\mathbb { R } ^ { T \\times D }" + }, + { + "category_id": 13, + "poly": [ + 1218, + 1825, + 1397, + 1825, + 1397, + 1859, + 1218, + 1859 + ], + "score": 0.91, + "latex": "p ( \\mathbf { s } ) \\doteq p ( \\mathbf { S } = \\mathbf { s } )" + }, + { + "category_id": 13, + "poly": [ + 981, + 1825, + 1036, + 1825, + 1036, + 1858, + 981, + 1858 + ], + "score": 0.9, + "latex": "p ( \\mathbf { S } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1974, + 376, + 1974, + 376, + 2006, + 298, + 2006 + ], + "score": 0.9, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1732, + 1325, + 1732, + 1325, + 1764, + 1225, + 1764 + ], + "score": 0.87, + "latex": "\\bar { \\bf s } _ { t } \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1336, + 1732, + 1402, + 1732, + 1402, + 1763, + 1336, + 1763 + ], + "score": 0.86, + "latex": "t = 0" + }, + { + "category_id": 13, + "poly": [ + 677, + 1765, + 698, + 1765, + 698, + 1796, + 677, + 1796 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 1184, + 1736, + 1198, + 1736, + 1198, + 1762, + 1184, + 1762 + ], + "score": 0.78, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 803, + 456, + 904, + 456, + 904, + 486, + 803, + 486 + ], + "score": 0.73, + "latex": "q { \\bigl ( } s _ { 1 : T } | \\phi { \\bigr ) }" + }, + { + "category_id": 13, + "poly": [ + 614, + 810, + 632, + 810, + 632, + 836, + 614, + 836 + ], + "score": 0.72, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 965, + 240, + 995, + 240, + 995, + 254, + 965, + 254 + ], + "score": 0.38, + "latex": "s _ { 1 : T }" + }, + { + "category_id": 13, + "poly": [ + 928, + 1825, + 951, + 1825, + 951, + 1853, + 928, + 1853 + ], + "score": 0.3, + "latex": "\\mathbf { S }" + }, + { + "category_id": 15, + "poly": [ + 655.0, + 227.0, + 964.0, + 227.0, + 964.0, + 259.0, + 655.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 227.0, + 1053.0, + 227.0, + 1053.0, + 259.0, + 996.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 678.0, + 284.0, + 698.0, + 284.0, + 698.0, + 298.0, + 678.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 262.0, + 825.0, + 262.0, + 825.0, + 329.0, + 806.0, + 329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 260.0, + 1005.0, + 260.0, + 1005.0, + 306.0, + 989.0, + 306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 425.0, + 300.0, + 546.0, + 300.0, + 546.0, + 326.0, + 425.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 716.0, + 308.0, + 724.0, + 308.0, + 724.0, + 323.0, + 716.0, + 323.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1127.0, + 299.0, + 1320.0, + 299.0, + 1320.0, + 325.0, + 1127.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 319.0, + 573.0, + 319.0, + 573.0, + 343.0, + 400.0, + 343.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 318.0, + 1321.0, + 318.0, + 1321.0, + 346.0, + 1124.0, + 346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 363.0, + 1270.0, + 363.0, + 1270.0, + 398.0, + 1158.0, + 398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1271.0, + 395.0, + 1353.0, + 395.0, + 1353.0, + 427.0, + 1271.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 765.0, + 409.0, + 946.0, + 409.0, + 946.0, + 440.0, + 765.0, + 440.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 672.0, + 435.0, + 1037.0, + 435.0, + 1037.0, + 458.0, + 672.0, + 458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 799.0, + 455.0, + 802.0, + 455.0, + 802.0, + 489.0, + 799.0, + 489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 467.0, + 1173.0, + 467.0, + 1173.0, + 481.0, + 1158.0, + 481.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 482.0, + 1157.0, + 482.0, + 1157.0, + 491.0, + 1143.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 535.0, + 644.0, + 535.0, + 644.0, + 565.0, + 331.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1104.0, + 527.0, + 1352.0, + 527.0, + 1352.0, + 575.0, + 1104.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 567.0, + 799.0, + 567.0, + 799.0, + 579.0, + 773.0, + 579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 869.0, + 564.0, + 966.0, + 564.0, + 966.0, + 601.0, + 869.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 413.0, + 599.0, + 559.0, + 599.0, + 559.0, + 630.0, + 413.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 972.0, + 639.0, + 1055.0, + 639.0, + 1055.0, + 661.0, + 972.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 703.0, + 671.0, + 805.0, + 671.0, + 805.0, + 702.0, + 703.0, + 702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 669.0, + 1050.0, + 669.0, + 1050.0, + 696.0, + 875.0, + 696.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 682.0, + 1173.0, + 682.0, + 1173.0, + 692.0, + 1157.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 609.0, + 1267.0, + 609.0, + 1267.0, + 640.5, + 1191.0, + 640.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 775.0, + 1407.0, + 775.0, + 1407.0, + 808.0, + 295.0, + 808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 803.0, + 613.0, + 803.0, + 613.0, + 839.0, + 293.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 803.0, + 1405.0, + 803.0, + 1405.0, + 839.0, + 633.0, + 839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 836.0, + 1405.0, + 836.0, + 1405.0, + 870.0, + 292.0, + 870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 866.0, + 1404.0, + 866.0, + 1404.0, + 899.0, + 295.0, + 899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 896.0, + 1388.0, + 896.0, + 1388.0, + 932.0, + 293.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1564.0, + 723.0, + 1564.0, + 723.0, + 1607.0, + 292.0, + 1607.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": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2120.0, + 838.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1868.0, + 1406.0, + 1868.0, + 1406.0, + 1908.0, + 292.0, + 1908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1904.0, + 624.0, + 1904.0, + 624.0, + 1947.0, + 291.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1021.0, + 1904.0, + 1407.0, + 1904.0, + 1407.0, + 1947.0, + 1021.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1936.0, + 296.0, + 1936.0, + 296.0, + 1984.0, + 290.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 507.0, + 1936.0, + 1115.0, + 1936.0, + 1115.0, + 1984.0, + 507.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 1936.0, + 1408.0, + 1936.0, + 1408.0, + 1984.0, + 1264.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 377.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2009.0, + 377.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1262.0, + 2004.0, + 1262.0, + 2037.0, + 296.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1640.0, + 1406.0, + 1640.0, + 1406.0, + 1676.0, + 294.0, + 1676.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1672.0, + 1406.0, + 1672.0, + 1406.0, + 1707.0, + 295.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1739.0, + 291.0, + 1739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1733.0, + 1183.0, + 1733.0, + 1183.0, + 1767.0, + 292.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 1733.0, + 1224.0, + 1733.0, + 1224.0, + 1767.0, + 1199.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1326.0, + 1733.0, + 1335.0, + 1733.0, + 1335.0, + 1767.0, + 1326.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1733.0, + 1407.0, + 1733.0, + 1407.0, + 1767.0, + 1403.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1762.0, + 676.0, + 1762.0, + 676.0, + 1797.0, + 292.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1762.0, + 1406.0, + 1762.0, + 1406.0, + 1797.0, + 699.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1792.0, + 1131.0, + 1792.0, + 1131.0, + 1829.0, + 291.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 1792.0, + 1409.0, + 1792.0, + 1409.0, + 1829.0, + 1350.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1824.0, + 927.0, + 1824.0, + 927.0, + 1859.0, + 295.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 1824.0, + 980.0, + 1824.0, + 980.0, + 1859.0, + 952.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1037.0, + 1824.0, + 1217.0, + 1824.0, + 1217.0, + 1859.0, + 1037.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1824.0, + 1408.0, + 1824.0, + 1408.0, + 1859.0, + 1398.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 992.0, + 1408.0, + 992.0, + 1408.0, + 1031.0, + 292.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1024.0, + 1405.0, + 1024.0, + 1405.0, + 1060.0, + 294.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1051.0, + 426.0, + 1051.0, + 426.0, + 1090.0, + 293.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1122.0, + 1407.0, + 1122.0, + 1407.0, + 1158.0, + 297.0, + 1158.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1152.0, + 1405.0, + 1152.0, + 1405.0, + 1188.0, + 328.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 1178.0, + 1409.0, + 1178.0, + 1409.0, + 1223.0, + 326.0, + 1223.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1224.0, + 1404.0, + 1224.0, + 1404.0, + 1256.0, + 297.0, + 1256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1252.0, + 1405.0, + 1252.0, + 1405.0, + 1287.0, + 328.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1283.0, + 1279.0, + 1283.0, + 1279.0, + 1319.0, + 329.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1321.0, + 1405.0, + 1321.0, + 1405.0, + 1358.0, + 297.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1354.0, + 1407.0, + 1354.0, + 1407.0, + 1387.0, + 329.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 330.0, + 1384.0, + 1278.0, + 1384.0, + 1278.0, + 1420.0, + 330.0, + 1420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1421.0, + 1405.0, + 1421.0, + 1405.0, + 1458.0, + 291.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1448.0, + 1407.0, + 1448.0, + 1407.0, + 1493.0, + 328.0, + 1493.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1483.0, + 1253.0, + 1483.0, + 1253.0, + 1520.0, + 329.0, + 1520.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 930, + 1406, + 930, + 1406, + 1268, + 297, + 1268 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 1526, + 1405, + 1526, + 1405, + 1897, + 296, + 1897 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 295, + 285, + 1407, + 285, + 1407, + 533, + 295, + 533 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 297, + 700, + 1405, + 700, + 1405, + 917, + 297, + 917 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1363, + 1403, + 1363, + 1403, + 1456, + 298, + 1456 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1404, + 1911, + 1404, + 2036, + 299, + 2036 + ], + "score": 0.972 + }, + { + "category_id": 8, + "poly": [ + 380, + 547, + 1319, + 547, + 1319, + 686, + 380, + 686 + ], + "score": 0.966 + }, + { + "category_id": 8, + "poly": [ + 426, + 1470, + 1265, + 1470, + 1265, + 1511, + 426, + 1511 + ], + "score": 0.927 + }, + { + "category_id": 0, + "poly": [ + 300, + 1304, + 808, + 1304, + 808, + 1337, + 300, + 1337 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1366, + 610, + 1400, + 610, + 1400, + 639, + 1366, + 639 + ], + "score": 0.873 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1476, + 1399, + 1476, + 1399, + 1505, + 1366, + 1505 + ], + "score": 0.872 + }, + { + "category_id": 0, + "poly": [ + 301, + 229, + 756, + 229, + 756, + 261, + 301, + 261 + ], + "score": 0.734 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.626 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.457 + }, + { + "category_id": 13, + "poly": [ + 617, + 1527, + 778, + 1527, + 778, + 1559, + 617, + 1559 + ], + "score": 0.93, + "latex": "\\mathbf { s } _ { T } \\in \\mathbb { G } \\subset \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 970, + 440, + 1044, + 440, + 1044, + 472, + 970, + 472 + ], + "score": 0.93, + "latex": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )" + }, + { + "category_id": 13, + "poly": [ + 457, + 441, + 561, + 441, + 561, + 474, + 457, + 474 + ], + "score": 0.92, + "latex": "p ( \\mathbf { s } | \\mathcal { G } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 463, + 287, + 543, + 287, + 543, + 321, + 463, + 321 + ], + "score": 0.92, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 298, + 471, + 403, + 471, + 403, + 504, + 298, + 504 + ], + "score": 0.92, + "latex": "p ( \\mathcal { G } | \\mathbf { s } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1260, + 2002, + 1405, + 2002, + 1405, + 2036, + 1260, + 2036 + ], + "score": 0.92, + "latex": "p ( { \\mathcal { G } } | \\mathbf { s } , \\phi ) \\gets" + }, + { + "category_id": 14, + "poly": [ + 380, + 545, + 1320, + 545, + 1320, + 687, + 380, + 687 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { \\mathbf { s } ^ { * } \\ \\stackrel { } { = } \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log p ( \\mathbf { s } | \\mathcal { G } , \\boldsymbol { \\phi } ) \\ = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log q ( \\mathbf { s } | \\boldsymbol { \\phi } ) + \\log p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) - \\log p ( \\mathcal { G } | \\boldsymbol { \\phi } ) } & { } \\\\ { \\ \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\underset { \\mathbf { s } } { \\arg \\operatorname* { m a x } } \\ \\log \\underset { \\underset { \\mathrm { i m i t a t i o n ~ p r i o r } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } } { \\underbrace { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } } + \\log \\underset { \\mathrm { g o a l l i k e l i h o o d } } { \\underbrace { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) } } . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 981, + 472, + 1085, + 472, + 1085, + 504, + 981, + 504 + ], + "score": 0.92, + "latex": "p ( { \\mathcal { G } } | \\mathbf { s } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1252, + 1423, + 1347, + 1423, + 1347, + 1453, + 1252, + 1453 + ], + "score": 0.91, + "latex": "\\mathbb { G } \\subset \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1563, + 402, + 1563, + 402, + 1594, + 298, + 1594 + ], + "score": 0.9, + "latex": "p ( \\mathcal { G } | \\mathbf { s } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1529, + 381, + 1529, + 381, + 1562, + 298, + 1562 + ], + "score": 0.9, + "latex": "\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } )" + }, + { + "category_id": 13, + "poly": [ + 661, + 2003, + 775, + 2003, + 775, + 2036, + 661, + 2036 + ], + "score": 0.9, + "latex": "\\langle \\mathbf { G } = \\{ \\mathbf { g } _ { T } \\}" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1940, + 1396, + 1940, + 1396, + 1974, + 1281, + 1974 + ], + "score": 0.89, + "latex": "( \\mathbf { s } _ { T } \\in \\mathbb { R } ^ { D } )" + }, + { + "category_id": 13, + "poly": [ + 905, + 1534, + 940, + 1534, + 940, + 1560, + 905, + 1560 + ], + "score": 0.86, + "latex": "{ \\bf s } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 363, + 1145, + 399, + 1145, + 399, + 1173, + 363, + 1173 + ], + "score": 0.86, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 687, + 1175, + 722, + 1175, + 722, + 1203, + 687, + 1203 + ], + "score": 0.86, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 679, + 1592, + 705, + 1592, + 705, + 1618, + 679, + 1618 + ], + "score": 0.85, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 1244, + 411, + 1265, + 411, + 1265, + 440, + 1244, + 440 + ], + "score": 0.84, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 1077, + 1622, + 1114, + 1622, + 1114, + 1650, + 1077, + 1650 + ], + "score": 0.84, + "latex": "\\mathbf { A } ^ { * }" + }, + { + "category_id": 14, + "poly": [ + 431, + 1471, + 1268, + 1471, + 1268, + 1510, + 431, + 1510 + ], + "score": 0.83, + "latex": "p ( \\mathcal { G } | \\mathbf { s } , \\phi ) \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 1 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\in \\mathbb { G } , \\quad \\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) = 0 \\mathrm { i f ~ } \\mathbf { s } _ { T } \\ncong \\mathbb { G } ." + }, + { + "category_id": 13, + "poly": [ + 641, + 410, + 663, + 410, + 663, + 439, + 641, + 439 + ], + "score": 0.82, + "latex": "\\mathcal { G }" + }, + { + "category_id": 13, + "poly": [ + 631, + 1563, + 655, + 1563, + 655, + 1588, + 631, + 1588 + ], + "score": 0.82, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 1376, + 1743, + 1401, + 1743, + 1401, + 1770, + 1376, + 1770 + ], + "score": 0.8, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 1129, + 1835, + 1155, + 1835, + 1155, + 1862, + 1129, + 1862 + ], + "score": 0.8, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1683, + 1330, + 1683, + 1330, + 1709, + 1304, + 1709 + ], + "score": 0.79, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 839, + 2003, + 879, + 2003, + 879, + 2033, + 839, + 2033 + ], + "score": 0.5, + "latex": "\\mathbf { \\eta } ^ { ( \\mathbf { D } ) }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1302.0, + 811.0, + 1302.0, + 811.0, + 1341.0, + 294.0, + 1341.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": [ + 293.0, + 225.0, + 759.0, + 225.0, + 759.0, + 267.0, + 293.0, + 267.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, + 931.0, + 1406.0, + 931.0, + 1406.0, + 966.0, + 296.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 962.0, + 1404.0, + 962.0, + 1404.0, + 997.0, + 295.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 992.0, + 1406.0, + 992.0, + 1406.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1023.0, + 1404.0, + 1023.0, + 1404.0, + 1058.0, + 295.0, + 1058.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1052.0, + 1406.0, + 1052.0, + 1406.0, + 1092.0, + 292.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1082.0, + 1404.0, + 1082.0, + 1404.0, + 1120.0, + 292.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1114.0, + 1404.0, + 1114.0, + 1404.0, + 1149.0, + 295.0, + 1149.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1145.0, + 362.0, + 1145.0, + 362.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1145.0, + 1404.0, + 1145.0, + 1404.0, + 1180.0, + 400.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1175.0, + 686.0, + 1175.0, + 686.0, + 1210.0, + 294.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1175.0, + 1408.0, + 1175.0, + 1408.0, + 1210.0, + 723.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1207.0, + 1404.0, + 1207.0, + 1404.0, + 1238.0, + 296.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1237.0, + 1345.0, + 1237.0, + 1345.0, + 1272.0, + 294.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1525.0, + 297.0, + 1525.0, + 297.0, + 1567.0, + 293.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1525.0, + 616.0, + 1525.0, + 616.0, + 1567.0, + 382.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 779.0, + 1525.0, + 904.0, + 1525.0, + 904.0, + 1567.0, + 779.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 941.0, + 1525.0, + 1407.0, + 1525.0, + 1407.0, + 1567.0, + 941.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1559.0, + 297.0, + 1559.0, + 297.0, + 1597.0, + 293.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 1559.0, + 630.0, + 1559.0, + 630.0, + 1597.0, + 403.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 656.0, + 1559.0, + 1407.0, + 1559.0, + 1407.0, + 1597.0, + 656.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1590.0, + 678.0, + 1590.0, + 678.0, + 1623.0, + 293.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 1590.0, + 1407.0, + 1590.0, + 1407.0, + 1623.0, + 706.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1076.0, + 1620.0, + 1076.0, + 1658.0, + 294.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1115.0, + 1620.0, + 1406.0, + 1620.0, + 1406.0, + 1658.0, + 1115.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1651.0, + 1406.0, + 1651.0, + 1406.0, + 1686.0, + 295.0, + 1686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1682.0, + 1303.0, + 1682.0, + 1303.0, + 1715.0, + 294.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1331.0, + 1682.0, + 1405.0, + 1682.0, + 1405.0, + 1715.0, + 1331.0, + 1715.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1710.0, + 1407.0, + 1710.0, + 1407.0, + 1750.0, + 291.0, + 1750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1742.0, + 1375.0, + 1742.0, + 1375.0, + 1777.0, + 294.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1742.0, + 1405.0, + 1742.0, + 1405.0, + 1777.0, + 1402.0, + 1777.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1774.0, + 1405.0, + 1774.0, + 1405.0, + 1808.0, + 294.0, + 1808.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1804.0, + 1408.0, + 1804.0, + 1408.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1832.0, + 1128.0, + 1832.0, + 1128.0, + 1868.0, + 293.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 1832.0, + 1410.0, + 1832.0, + 1410.0, + 1868.0, + 1156.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1865.0, + 1291.0, + 1865.0, + 1291.0, + 1899.0, + 295.0, + 1899.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 283.0, + 462.0, + 283.0, + 462.0, + 327.0, + 292.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 544.0, + 283.0, + 1412.0, + 283.0, + 1412.0, + 327.0, + 544.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 317.0, + 1408.0, + 317.0, + 1408.0, + 353.0, + 292.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 350.0, + 1405.0, + 350.0, + 1405.0, + 384.0, + 293.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 380.0, + 1405.0, + 380.0, + 1405.0, + 414.0, + 294.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 410.0, + 640.0, + 410.0, + 640.0, + 444.0, + 294.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 664.0, + 410.0, + 1243.0, + 410.0, + 1243.0, + 444.0, + 664.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1266.0, + 410.0, + 1405.0, + 410.0, + 1405.0, + 444.0, + 1266.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 439.0, + 456.0, + 439.0, + 456.0, + 477.0, + 293.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 439.0, + 969.0, + 439.0, + 969.0, + 477.0, + 562.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 439.0, + 1408.0, + 439.0, + 1408.0, + 477.0, + 1045.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 472.0, + 297.0, + 472.0, + 297.0, + 506.0, + 294.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 472.0, + 980.0, + 472.0, + 980.0, + 506.0, + 404.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1086.0, + 472.0, + 1408.0, + 472.0, + 1408.0, + 506.0, + 1086.0, + 506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 501.0, + 1265.0, + 501.0, + 1265.0, + 536.0, + 293.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 700.0, + 1405.0, + 700.0, + 1405.0, + 737.0, + 294.0, + 737.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 733.0, + 1405.0, + 733.0, + 1405.0, + 768.0, + 295.0, + 768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 763.0, + 1405.0, + 763.0, + 1405.0, + 797.0, + 295.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 794.0, + 1405.0, + 794.0, + 1405.0, + 828.0, + 294.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 822.0, + 1406.0, + 822.0, + 1406.0, + 858.0, + 292.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 854.0, + 1405.0, + 854.0, + 1405.0, + 889.0, + 295.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 885.0, + 1362.0, + 885.0, + 1362.0, + 920.0, + 296.0, + 920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1400.0, + 295.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1395.0, + 1404.0, + 1395.0, + 1404.0, + 1425.0, + 296.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1422.0, + 1251.0, + 1422.0, + 1251.0, + 1459.0, + 292.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1348.0, + 1422.0, + 1361.0, + 1422.0, + 1361.0, + 1459.0, + 1348.0, + 1459.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1910.0, + 1405.0, + 1910.0, + 1405.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1280.0, + 1940.0, + 1280.0, + 1977.0, + 292.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 1940.0, + 1409.0, + 1940.0, + 1409.0, + 1977.0, + 1397.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1409.0, + 1972.0, + 1409.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 660.0, + 2002.0, + 660.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 776.0, + 2002.0, + 838.0, + 2002.0, + 838.0, + 2038.0, + 776.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 880.0, + 2002.0, + 1259.0, + 2002.0, + 1259.0, + 2038.0, + 880.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 756, + 1405, + 756, + 1405, + 1063, + 297, + 1063 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 520, + 1405, + 520, + 1405, + 744, + 298, + 744 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 228, + 1404, + 228, + 1404, + 507, + 298, + 507 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 296, + 1586, + 1404, + 1586, + 1404, + 1836, + 296, + 1836 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 297, + 1850, + 1404, + 1850, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.978 + }, + { + "category_id": 3, + "poly": [ + 305, + 1103, + 712, + 1103, + 712, + 1306, + 305, + 1306 + ], + "score": 0.944 + }, + { + "category_id": 4, + "poly": [ + 1187, + 1330, + 1403, + 1330, + 1403, + 1453, + 1187, + 1453 + ], + "score": 0.933 + }, + { + "category_id": 3, + "poly": [ + 747, + 1103, + 1159, + 1103, + 1159, + 1306, + 747, + 1306 + ], + "score": 0.918 + }, + { + "category_id": 3, + "poly": [ + 1190, + 1095, + 1401, + 1095, + 1401, + 1306, + 1190, + 1306 + ], + "score": 0.917 + }, + { + "category_id": 4, + "poly": [ + 296, + 1330, + 721, + 1330, + 721, + 1423, + 296, + 1423 + ], + "score": 0.917 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 4, + "poly": [ + 733, + 1330, + 1169, + 1330, + 1169, + 1423, + 733, + 1423 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 301, + 1530, + 1137, + 1530, + 1137, + 1561, + 301, + 1561 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 857, + 2089, + 857, + 2111, + 840, + 2111 + ], + "score": 0.773 + }, + { + "category_id": 13, + "poly": [ + 1067, + 582, + 1149, + 582, + 1149, + 616, + 1067, + 616 + ], + "score": 0.93, + "latex": "c ( \\mathbf { s } _ { i } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 677, + 612, + 984, + 612, + 984, + 655, + 677, + 655 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\overset { } { \\propto } \\prod _ { t = 1 } ^ { T } e ^ { - c ( \\mathbf { s } _ { t } | \\boldsymbol { \\phi } ) } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 883, + 1881, + 991, + 1881, + 991, + 1915, + 883, + 1915 + ], + "score": 0.93, + "latex": "\\nabla _ { \\mathbf { s } } q ( \\mathbf { s } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 935, + 379, + 1352, + 379, + 1352, + 419, + 935, + 419 + ], + "score": 0.93, + "latex": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\boldsymbol { \\phi } ) \\gets \\frac { 1 } { K } \\sum _ { k = 1 } ^ { K } \\mathcal { N } ( \\mathbf { g } _ { T } ^ { k } ; \\mathbf { s } _ { T } , \\boldsymbol { \\epsilon } I ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 401, + 1879, + 610, + 1879, + 610, + 1915, + 401, + 1915 + ], + "score": 0.93, + "latex": "\\bar { q ( \\mathbf { s } | \\boldsymbol { \\phi } ) } \\forall \\mathbf { s } \\in \\mathbb { R } ^ { T \\times D }" + }, + { + "category_id": 13, + "poly": [ + 1323, + 848, + 1396, + 848, + 1396, + 882, + 1323, + 882 + ], + "score": 0.92, + "latex": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )" + }, + { + "category_id": 13, + "poly": [ + 834, + 710, + 913, + 710, + 913, + 744, + 834, + 744 + ], + "score": 0.92, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 297, + 1648, + 511, + 1648, + 511, + 1682, + 297, + 1682 + ], + "score": 0.92, + "latex": "\\phi { \\bf \\bar { \\omega } } \\{ { \\bf s } _ { - \\tau : 0 } , \\chi , { \\bf \\bar { \\omega } } \\}" + }, + { + "category_id": 13, + "poly": [ + 298, + 230, + 462, + 230, + 462, + 264, + 298, + 264 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( \\mathbf { g } _ { T } ; \\mathbf { s } _ { T } , \\epsilon I )" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1585, + 1237, + 1585, + 1237, + 1618, + 1139, + 1618 + ], + "score": 0.92, + "latex": "\\mathbf { s } _ { t } \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1319, + 1942, + 1397, + 1942, + 1397, + 1976, + 1319, + 1976 + ], + "score": 0.92, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 607, + 290, + 1052, + 290, + 1052, + 328, + 607, + 328 + ], + "score": 0.91, + "latex": "\\begin{array} { r } { p ( \\mathcal { G } | \\mathbf { s } , \\acute { \\phi } ) \\prod _ { k = T - K + 1 } ^ { T } \\mathcal { N } ( \\mathbf { g } _ { k } ; \\mathbf { s } _ { k } , \\epsilon I ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 767, + 1775, + 824, + 1775, + 824, + 1806, + 767, + 1806 + ], + "score": 0.91, + "latex": "( i , j )" + }, + { + "category_id": 13, + "poly": [ + 522, + 1737, + 714, + 1737, + 714, + 1771, + 522, + 1771 + ], + "score": 0.91, + "latex": "\\chi = \\mathrm { \\mathbb { R } ^ { 2 0 0 \\times 2 0 0 \\times 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1005, + 262, + 1280, + 262, + 1280, + 295, + 1005, + 295 + ], + "score": 0.9, + "latex": "\\mathcal { G } = ( \\mathbf { g } _ { T - K + 1 } , \\dots , \\mathbf { g } _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 1188, + 1776, + 1253, + 1776, + 1253, + 1805, + 1188, + 1805 + ], + "score": 0.88, + "latex": "{ \\bf s } _ { - \\tau : 0 }" + }, + { + "category_id": 13, + "poly": [ + 782, + 1742, + 825, + 1742, + 825, + 1774, + 782, + 1774 + ], + "score": 0.88, + "latex": "\\chi _ { i j }" + }, + { + "category_id": 13, + "poly": [ + 1296, + 1588, + 1364, + 1588, + 1364, + 1617, + 1296, + 1617 + ], + "score": 0.88, + "latex": "D = 2" + }, + { + "category_id": 13, + "poly": [ + 518, + 1772, + 592, + 1772, + 592, + 1803, + 518, + 1803 + ], + "score": 0.85, + "latex": "0 . 5 \\mathrm { m } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 536, + 236, + 573, + 236, + 573, + 262, + 536, + 262 + ], + "score": 0.84, + "latex": "{ \\bf g } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1139, + 1653, + 1163, + 1653, + 1163, + 1680, + 1139, + 1680 + ], + "score": 0.84, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1006, + 327, + 1044, + 327, + 1044, + 353, + 1006, + 353 + ], + "score": 0.82, + "latex": "{ \\bf g } _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1374, + 1591, + 1400, + 1591, + 1400, + 1619, + 1374, + 1619 + ], + "score": 0.81, + "latex": "\\mathbf { s } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 775, + 262, + 805, + 262, + 805, + 289, + 775, + 289 + ], + "score": 0.79, + "latex": "K" + }, + { + "category_id": 13, + "poly": [ + 1124, + 1684, + 1149, + 1684, + 1149, + 1712, + 1124, + 1712 + ], + "score": 0.79, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 593, + 1653, + 613, + 1653, + 613, + 1676, + 593, + 1676 + ], + "score": 0.76, + "latex": "\\tau" + }, + { + "category_id": 13, + "poly": [ + 1116, + 445, + 1142, + 445, + 1142, + 472, + 1116, + 472 + ], + "score": 0.75, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 635, + 1681, + 658, + 1681, + 658, + 1708, + 635, + 1708 + ], + "score": 0.74, + "latex": "\\boldsymbol { \\lambda }" + }, + { + "category_id": 13, + "poly": [ + 1094, + 1591, + 1109, + 1591, + 1109, + 1615, + 1094, + 1615 + ], + "score": 0.72, + "latex": "t" + }, + { + "category_id": 13, + "poly": [ + 1386, + 528, + 1403, + 528, + 1403, + 549, + 1386, + 549 + ], + "score": 0.61, + "latex": "c" + }, + { + "category_id": 13, + "poly": [ + 1363, + 262, + 1403, + 262, + 1403, + 292, + 1363, + 292 + ], + "score": 0.54, + "latex": "\\mathbf { ( E ) }" + }, + { + "category_id": 13, + "poly": [ + 1304, + 1774, + 1326, + 1774, + 1326, + 1802, + 1304, + 1802 + ], + "score": 0.54, + "latex": "\\boldsymbol { \\lambda }" + }, + { + "category_id": 13, + "poly": [ + 612, + 445, + 635, + 445, + 635, + 472, + 612, + 472 + ], + "score": 0.38, + "latex": "\\cdot \\epsilon ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 523, + 383, + 560, + 383, + 560, + 413, + 523, + 413 + ], + "score": 0.36, + "latex": "\\mathbf { \\Pi } ^ { ( \\mathbf { F } ) }" + }, + { + "category_id": 15, + "poly": [ + 489.0, + 1179.0, + 509.0, + 1179.0, + 509.0, + 1201.0, + 489.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1231.0, + 523.0, + 1231.0, + 523.0, + 1241.0, + 514.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1224.0, + 650.0, + 1224.0, + 650.0, + 1244.0, + 531.0, + 1244.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 531.0, + 1238.0, + 610.0, + 1238.0, + 610.0, + 1258.0, + 531.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1255.0, + 526.0, + 1255.0, + 526.0, + 1270.0, + 513.0, + 1270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 1252.0, + 605.0, + 1252.0, + 605.0, + 1272.0, + 529.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 1297.0, + 364.0, + 1297.0, + 364.0, + 1304.0, + 351.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 1297.0, + 460.0, + 1297.0, + 460.0, + 1304.0, + 444.0, + 1304.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 528.0, + 1292.0, + 667.0, + 1292.0, + 667.0, + 1305.0, + 528.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1236.0, + 368.0, + 1236.0, + 368.0, + 1246.0, + 348.0, + 1246.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1326.0, + 1407.0, + 1326.0, + 1407.0, + 1363.0, + 1183.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1360.0, + 1405.0, + 1360.0, + 1405.0, + 1392.0, + 1183.0, + 1392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1184.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1424.0, + 1184.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1183.0, + 1420.0, + 1397.0, + 1420.0, + 1397.0, + 1458.0, + 1183.0, + 1458.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1227.0, + 970.0, + 1227.0, + 970.0, + 1272.0, + 953.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 974.0, + 1227.0, + 1091.0, + 1227.0, + 1091.0, + 1243.0, + 974.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1238.0, + 1052.0, + 1238.0, + 1052.0, + 1258.0, + 973.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 971.0, + 1251.0, + 1048.0, + 1251.0, + 1048.0, + 1273.0, + 971.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 970.0, + 1292.0, + 1109.0, + 1292.0, + 1109.0, + 1305.0, + 970.0, + 1305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1133.0, + 1407.0, + 1133.0, + 1407.0, + 1312.0, + 1167.0, + 1312.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1326.0, + 722.0, + 1326.0, + 722.0, + 1363.0, + 294.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1359.0, + 725.0, + 1359.0, + 725.0, + 1393.0, + 295.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1391.0, + 616.0, + 1391.0, + 616.0, + 1425.0, + 295.0, + 1425.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": [ + 731.0, + 1328.0, + 1174.0, + 1328.0, + 1174.0, + 1363.0, + 731.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1359.0, + 1173.0, + 1359.0, + 1173.0, + 1393.0, + 731.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 1392.0, + 1143.0, + 1392.0, + 1143.0, + 1424.0, + 731.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1528.0, + 1140.0, + 1528.0, + 1140.0, + 1566.0, + 294.0, + 1566.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": [ + 292.0, + 756.0, + 1407.0, + 756.0, + 1407.0, + 794.0, + 292.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 787.0, + 1406.0, + 787.0, + 1406.0, + 822.0, + 292.0, + 822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 818.0, + 1405.0, + 818.0, + 1405.0, + 854.0, + 295.0, + 854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 843.0, + 1322.0, + 843.0, + 1322.0, + 887.0, + 292.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 843.0, + 1407.0, + 843.0, + 1407.0, + 887.0, + 1397.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 879.0, + 1406.0, + 879.0, + 1406.0, + 915.0, + 295.0, + 915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 908.0, + 1405.0, + 908.0, + 1405.0, + 945.0, + 292.0, + 945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 939.0, + 1406.0, + 939.0, + 1406.0, + 974.0, + 294.0, + 974.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 971.0, + 1405.0, + 971.0, + 1405.0, + 1006.0, + 295.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1035.0, + 292.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1032.0, + 1357.0, + 1032.0, + 1357.0, + 1066.0, + 294.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 518.0, + 1385.0, + 518.0, + 1385.0, + 557.0, + 295.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 518.0, + 1407.0, + 518.0, + 1407.0, + 557.0, + 1404.0, + 557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 551.0, + 1407.0, + 551.0, + 1407.0, + 586.0, + 295.0, + 586.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 581.0, + 1066.0, + 581.0, + 1066.0, + 619.0, + 293.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 619.0, + 1150.0, + 619.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 613.0, + 676.0, + 613.0, + 676.0, + 657.0, + 288.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 985.0, + 613.0, + 1410.0, + 613.0, + 1410.0, + 657.0, + 985.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 650.0, + 1408.0, + 650.0, + 1408.0, + 685.0, + 295.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 679.0, + 1405.0, + 679.0, + 1405.0, + 714.0, + 295.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 710.0, + 833.0, + 710.0, + 833.0, + 746.0, + 296.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 914.0, + 710.0, + 1341.0, + 710.0, + 1341.0, + 746.0, + 914.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 297.0, + 225.0, + 297.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 225.0, + 535.0, + 225.0, + 535.0, + 268.0, + 463.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 574.0, + 225.0, + 1408.0, + 225.0, + 1408.0, + 268.0, + 574.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 774.0, + 258.0, + 774.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 806.0, + 258.0, + 1004.0, + 258.0, + 1004.0, + 299.0, + 806.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1281.0, + 258.0, + 1362.0, + 258.0, + 1362.0, + 299.0, + 1281.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1404.0, + 258.0, + 1408.0, + 258.0, + 1408.0, + 299.0, + 1404.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 285.0, + 606.0, + 285.0, + 606.0, + 336.0, + 291.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 285.0, + 1410.0, + 285.0, + 1410.0, + 336.0, + 1053.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 320.0, + 1005.0, + 320.0, + 1005.0, + 357.0, + 294.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1045.0, + 320.0, + 1406.0, + 320.0, + 1406.0, + 357.0, + 1045.0, + 357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 352.0, + 1406.0, + 352.0, + 1406.0, + 386.0, + 292.0, + 386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 375.0, + 522.0, + 375.0, + 522.0, + 427.0, + 289.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 375.0, + 934.0, + 375.0, + 934.0, + 427.0, + 561.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1353.0, + 375.0, + 1411.0, + 375.0, + 1411.0, + 427.0, + 1353.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 412.0, + 1407.0, + 412.0, + 1407.0, + 446.0, + 292.0, + 446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 444.0, + 611.0, + 444.0, + 611.0, + 477.0, + 296.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 636.0, + 444.0, + 1115.0, + 444.0, + 1115.0, + 477.0, + 636.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1143.0, + 444.0, + 1405.0, + 444.0, + 1405.0, + 477.0, + 1143.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 474.0, + 1267.0, + 474.0, + 1267.0, + 511.0, + 296.0, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1583.0, + 1093.0, + 1583.0, + 1093.0, + 1625.0, + 291.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1110.0, + 1583.0, + 1138.0, + 1583.0, + 1138.0, + 1625.0, + 1110.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 1583.0, + 1295.0, + 1583.0, + 1295.0, + 1625.0, + 1238.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 1583.0, + 1373.0, + 1583.0, + 1373.0, + 1625.0, + 1365.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 1583.0, + 1406.0, + 1583.0, + 1406.0, + 1625.0, + 1401.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1617.0, + 1404.0, + 1617.0, + 1404.0, + 1651.0, + 294.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 512.0, + 1649.0, + 592.0, + 1649.0, + 592.0, + 1683.0, + 512.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 614.0, + 1649.0, + 1138.0, + 1649.0, + 1138.0, + 1683.0, + 614.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1649.0, + 1404.0, + 1649.0, + 1404.0, + 1683.0, + 1164.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1679.0, + 634.0, + 1679.0, + 634.0, + 1713.0, + 294.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1679.0, + 1123.0, + 1679.0, + 1123.0, + 1713.0, + 659.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1679.0, + 1406.0, + 1679.0, + 1406.0, + 1713.0, + 1150.0, + 1713.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1706.0, + 1407.0, + 1706.0, + 1407.0, + 1745.0, + 291.0, + 1745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 1730.0, + 521.0, + 1730.0, + 521.0, + 1779.0, + 289.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 1730.0, + 781.0, + 1730.0, + 781.0, + 1779.0, + 715.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 826.0, + 1730.0, + 1409.0, + 1730.0, + 1409.0, + 1779.0, + 826.0, + 1779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1772.0, + 517.0, + 1772.0, + 517.0, + 1809.0, + 293.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1772.0, + 766.0, + 1772.0, + 766.0, + 1809.0, + 593.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1772.0, + 1187.0, + 1772.0, + 1187.0, + 1809.0, + 825.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 1772.0, + 1303.0, + 1772.0, + 1303.0, + 1809.0, + 1254.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1327.0, + 1772.0, + 1407.0, + 1772.0, + 1407.0, + 1809.0, + 1327.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1805.0, + 1331.0, + 1805.0, + 1331.0, + 1839.0, + 294.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1849.0, + 1406.0, + 1849.0, + 1406.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1872.0, + 400.0, + 1872.0, + 400.0, + 1920.0, + 291.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 611.0, + 1872.0, + 882.0, + 1872.0, + 882.0, + 1920.0, + 611.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 992.0, + 1872.0, + 1409.0, + 1872.0, + 1409.0, + 1920.0, + 992.0, + 1920.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1941.0, + 1318.0, + 1941.0, + 1318.0, + 1980.0, + 292.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1398.0, + 1941.0, + 1407.0, + 1941.0, + 1407.0, + 1980.0, + 1398.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2007.0, + 292.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1405.0, + 2000.0, + 1405.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1278, + 1406, + 1278, + 1406, + 1675, + 297, + 1675 + ], + "score": 0.985 + }, + { + "category_id": 1, + "poly": [ + 298, + 937, + 1405, + 937, + 1405, + 1185, + 298, + 1185 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 685, + 1404, + 685, + 1404, + 872, + 298, + 872 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1787, + 1404, + 1787, + 1404, + 2035, + 298, + 2035 + ], + "score": 0.979 + }, + { + "category_id": 4, + "poly": [ + 296, + 442, + 1404, + 442, + 1404, + 627, + 296, + 627 + ], + "score": 0.967 + }, + { + "category_id": 3, + "poly": [ + 302, + 225, + 1398, + 225, + 1398, + 418, + 302, + 418 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 559, + 887, + 1136, + 887, + 1136, + 926, + 559, + 926 + ], + "score": 0.947 + }, + { + "category_id": 0, + "poly": [ + 301, + 1720, + 587, + 1720, + 587, + 1755, + 301, + 1755 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 300, + 1220, + 605, + 1220, + 605, + 1252, + 300, + 1252 + ], + "score": 0.907 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.886 + }, + { + "category_id": 9, + "poly": [ + 1366, + 891, + 1399, + 891, + 1399, + 920, + 1366, + 920 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.718 + }, + { + "category_id": 13, + "poly": [ + 857, + 748, + 931, + 748, + 931, + 782, + 857, + 782 + ], + "score": 0.94, + "latex": "{ \\dot { \\mathbf { \\zeta } } } _ { q } ( \\mathbf { s } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 860, + 809, + 1055, + 809, + 1055, + 843, + 860, + 843 + ], + "score": 0.93, + "latex": "\\mathbf { Z } \\sim q _ { 0 } = \\mathcal { N } ( 0 , I )" + }, + { + "category_id": 13, + "poly": [ + 298, + 841, + 388, + 841, + 388, + 874, + 298, + 874 + ], + "score": 0.92, + "latex": "q _ { \\theta } ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 375, + 779, + 466, + 779, + 466, + 813, + 375, + 813 + ], + "score": 0.92, + "latex": "q _ { \\theta } ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1060, + 777, + 1395, + 777, + 1395, + 812, + 1060, + 812 + ], + "score": 0.92, + "latex": "\\mathbf { S } = f _ { \\theta } ( \\mathbf { Z } ; \\phi ) : \\mathbb { R } ^ { T \\times 2 } \\mapsto \\mathbb { R } ^ { T \\times 2 }" + }, + { + "category_id": 13, + "poly": [ + 375, + 687, + 454, + 687, + 454, + 721, + 375, + 721 + ], + "score": 0.91, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1324, + 1060, + 1403, + 1060, + 1403, + 1093, + 1324, + 1093 + ], + "score": 0.91, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 970, + 970, + 1095, + 970, + 1095, + 1000, + 970, + 1000 + ], + "score": 0.9, + "latex": "\\sigma _ { \\theta } \\in \\mathbb { R } ^ { 2 \\times 2 }" + }, + { + "category_id": 13, + "poly": [ + 1303, + 1093, + 1382, + 1093, + 1382, + 1124, + 1303, + 1124 + ], + "score": 0.9, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 815, + 970, + 921, + 970, + 921, + 1000, + 815, + 1000 + ], + "score": 0.9, + "latex": "m _ { \\theta } \\in \\mathbb { R } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 761, + 1122, + 840, + 1122, + 840, + 1150, + 761, + 1150 + ], + "score": 0.89, + "latex": "T = 4 0" + }, + { + "category_id": 13, + "poly": [ + 1248, + 1124, + 1308, + 1124, + 1308, + 1150, + 1248, + 1150 + ], + "score": 0.87, + "latex": "\\tau = 3" + }, + { + "category_id": 13, + "poly": [ + 637, + 841, + 665, + 841, + 665, + 873, + 637, + 873 + ], + "score": 0.86, + "latex": "f _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 844, + 1157, + 874, + 1157, + 874, + 1183, + 844, + 1183 + ], + "score": 0.86, + "latex": "\\sigma _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 761, + 1157, + 793, + 1157, + 793, + 1184, + 761, + 1184 + ], + "score": 0.86, + "latex": "\\mu _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1062, + 1032, + 1083, + 1032, + 1083, + 1062, + 1062, + 1062 + ], + "score": 0.85, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 939, + 1913, + 972, + 1913, + 972, + 1940, + 939, + 1940 + ], + "score": 0.83, + "latex": "A ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 298, + 810, + 326, + 810, + 326, + 841, + 298, + 841 + ], + "score": 0.82, + "latex": "f _ { \\theta }" + }, + { + "category_id": 14, + "poly": [ + 562, + 886, + 1135, + 886, + 1135, + 926, + 562, + 926 + ], + "score": 0.79, + "latex": "\\mathbf { S } _ { t } = f _ { t } ( \\mathbf { Z } _ { 1 : t } ) = \\mu _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) + \\sigma _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) \\mathbf { Z } _ { t } ," + }, + { + "category_id": 13, + "poly": [ + 998, + 1122, + 1062, + 1122, + 1062, + 1151, + 998, + 1151 + ], + "score": 0.76, + "latex": "1 0 \\mathrm { H z }" + }, + { + "category_id": 13, + "poly": [ + 823, + 842, + 876, + 842, + 876, + 869, + 823, + 869 + ], + "score": 0.74, + "latex": "1 . . T" + }, + { + "category_id": 13, + "poly": [ + 1123, + 812, + 1141, + 812, + 1141, + 837, + 1123, + 837 + ], + "score": 0.74, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 394, + 938, + 1399, + 938, + 1399, + 972, + 394, + 972 + ], + "score": 0.7, + "latex": "\\begin{array} { r } { \\phantom { \\frac { 1 } { \\theta } } \\theta ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = \\mathbf { S } _ { t - 1 } + ( \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } ) \\phantom { \\frac { 1 } { \\theta } } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) = 2 \\mathbf { S } _ { t - 1 } - \\mathbf { S } _ { t - 2 } + m _ { \\theta } ( \\mathbf { S } _ { 1 : t - 1 } , \\phi ) , } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1063, + 1088, + 1063, + 1088, + 1088, + 1066, + 1088 + ], + "score": 0.68, + "latex": "\\boldsymbol { \\lambda }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 443.0, + 1405.0, + 443.0, + 1405.0, + 479.0, + 295.0, + 479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 476.0, + 1405.0, + 476.0, + 1405.0, + 508.0, + 295.0, + 508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 507.0, + 1404.0, + 507.0, + 1404.0, + 538.0, + 295.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 535.0, + 1406.0, + 535.0, + 1406.0, + 571.0, + 294.0, + 571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 564.0, + 1406.0, + 564.0, + 1406.0, + 601.0, + 293.0, + 601.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 596.0, + 977.0, + 596.0, + 977.0, + 630.0, + 293.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 350.0, + 229.0, + 506.0, + 229.0, + 506.0, + 257.0, + 350.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 229.0, + 700.0, + 229.0, + 700.0, + 257.0, + 567.0, + 257.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 801.0, + 227.0, + 930.0, + 227.0, + 930.0, + 256.0, + 801.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1016.0, + 225.0, + 1144.0, + 225.0, + 1144.0, + 256.0, + 1016.0, + 256.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1235.0, + 226.0, + 1366.0, + 226.0, + 1366.0, + 255.0, + 1235.0, + 255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 253.0, + 336.0, + 253.0, + 336.0, + 412.0, + 303.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 286.0, + 369.0, + 286.0, + 369.0, + 295.0, + 354.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 475.0, + 268.0, + 491.0, + 268.0, + 491.0, + 327.0, + 475.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 753.0, + 276.0, + 781.0, + 276.0, + 781.0, + 395.0, + 753.0, + 395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 280.0, + 961.0, + 280.0, + 961.0, + 301.0, + 894.0, + 301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 260.0, + 1184.0, + 260.0, + 1184.0, + 318.0, + 989.0, + 318.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 562.0, + 308.0, + 707.0, + 308.0, + 707.0, + 361.0, + 562.0, + 361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1246.0, + 324.0, + 1298.0, + 324.0, + 1298.0, + 345.0, + 1246.0, + 345.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 461.0, + 340.0, + 474.0, + 340.0, + 474.0, + 399.0, + 461.0, + 399.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 346.0, + 1371.0, + 346.0, + 1371.0, + 365.0, + 1284.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 359.0, + 1356.0, + 359.0, + 1356.0, + 376.0, + 1284.0, + 376.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1717.0, + 593.0, + 1717.0, + 593.0, + 1761.0, + 292.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1220.0, + 608.0, + 1220.0, + 608.0, + 1256.0, + 295.0, + 1256.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": [ + 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, + 1276.0, + 1404.0, + 1276.0, + 1404.0, + 1313.0, + 294.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1308.0, + 1404.0, + 1308.0, + 1404.0, + 1346.0, + 292.0, + 1346.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1341.0, + 1404.0, + 1341.0, + 1404.0, + 1373.0, + 295.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1369.0, + 1407.0, + 1369.0, + 1407.0, + 1404.0, + 292.0, + 1404.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1398.0, + 1406.0, + 1398.0, + 1406.0, + 1435.0, + 294.0, + 1435.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1431.0, + 1408.0, + 1431.0, + 1408.0, + 1465.0, + 292.0, + 1465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1461.0, + 1404.0, + 1461.0, + 1404.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1491.0, + 1408.0, + 1491.0, + 1408.0, + 1527.0, + 294.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1522.0, + 1406.0, + 1522.0, + 1406.0, + 1557.0, + 292.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1553.0, + 1403.0, + 1553.0, + 1403.0, + 1585.0, + 295.0, + 1585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1581.0, + 1408.0, + 1581.0, + 1408.0, + 1620.0, + 292.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1611.0, + 1406.0, + 1611.0, + 1406.0, + 1649.0, + 292.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1644.0, + 544.0, + 1644.0, + 544.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 935.0, + 393.0, + 935.0, + 393.0, + 976.0, + 293.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 935.0, + 1407.0, + 935.0, + 1407.0, + 976.0, + 1400.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 961.0, + 814.0, + 961.0, + 814.0, + 1008.0, + 290.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 961.0, + 969.0, + 961.0, + 969.0, + 1008.0, + 922.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1096.0, + 961.0, + 1408.0, + 961.0, + 1408.0, + 1008.0, + 1096.0, + 1008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1001.0, + 1405.0, + 1001.0, + 1405.0, + 1034.0, + 295.0, + 1034.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1031.0, + 1061.0, + 1031.0, + 1061.0, + 1062.0, + 293.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1031.0, + 1407.0, + 1031.0, + 1407.0, + 1062.0, + 1084.0, + 1062.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1056.0, + 1065.0, + 1056.0, + 1065.0, + 1097.0, + 292.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1089.0, + 1056.0, + 1323.0, + 1056.0, + 1323.0, + 1097.0, + 1089.0, + 1097.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1090.0, + 1302.0, + 1090.0, + 1302.0, + 1127.0, + 293.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1383.0, + 1090.0, + 1406.0, + 1090.0, + 1406.0, + 1127.0, + 1383.0, + 1127.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1120.0, + 760.0, + 1120.0, + 760.0, + 1156.0, + 292.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 841.0, + 1120.0, + 997.0, + 1120.0, + 997.0, + 1156.0, + 841.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1120.0, + 1247.0, + 1120.0, + 1247.0, + 1156.0, + 1063.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1309.0, + 1120.0, + 1405.0, + 1120.0, + 1405.0, + 1156.0, + 1309.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1152.0, + 760.0, + 1152.0, + 760.0, + 1188.0, + 293.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 794.0, + 1152.0, + 843.0, + 1152.0, + 843.0, + 1188.0, + 794.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1152.0, + 885.0, + 1152.0, + 885.0, + 1188.0, + 875.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 686.0, + 374.0, + 686.0, + 374.0, + 722.0, + 296.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 455.0, + 686.0, + 1405.0, + 686.0, + 1405.0, + 722.0, + 455.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 1404.0, + 718.0, + 1404.0, + 754.0, + 294.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 748.0, + 856.0, + 748.0, + 856.0, + 784.0, + 294.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 932.0, + 748.0, + 1405.0, + 748.0, + 1405.0, + 784.0, + 932.0, + 784.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 773.0, + 374.0, + 773.0, + 374.0, + 817.0, + 289.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 467.0, + 773.0, + 1059.0, + 773.0, + 1059.0, + 817.0, + 467.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1396.0, + 773.0, + 1410.0, + 773.0, + 1410.0, + 817.0, + 1396.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 809.0, + 297.0, + 809.0, + 297.0, + 845.0, + 294.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 809.0, + 859.0, + 809.0, + 859.0, + 845.0, + 327.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1056.0, + 809.0, + 1122.0, + 809.0, + 1122.0, + 845.0, + 1056.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1142.0, + 809.0, + 1406.0, + 809.0, + 1406.0, + 845.0, + 1142.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 839.0, + 297.0, + 839.0, + 297.0, + 876.0, + 292.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 389.0, + 839.0, + 636.0, + 839.0, + 636.0, + 876.0, + 389.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 666.0, + 839.0, + 822.0, + 839.0, + 822.0, + 876.0, + 666.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 839.0, + 1008.0, + 839.0, + 1008.0, + 876.0, + 877.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1789.0, + 1406.0, + 1789.0, + 1406.0, + 1823.0, + 293.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1822.0, + 1404.0, + 1822.0, + 1404.0, + 1852.0, + 296.0, + 1852.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1851.0, + 1404.0, + 1851.0, + 1404.0, + 1883.0, + 293.0, + 1883.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1880.0, + 1404.0, + 1880.0, + 1404.0, + 1916.0, + 293.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 938.0, + 1912.0, + 938.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 973.0, + 1912.0, + 1404.0, + 1912.0, + 1404.0, + 1946.0, + 973.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 1406.0, + 1944.0, + 1406.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2006.0, + 293.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 2004.0, + 1404.0, + 2004.0, + 1404.0, + 2034.0, + 297.0, + 2034.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 869, + 1405, + 869, + 1405, + 1145, + 297, + 1145 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1389, + 1404, + 1389, + 1404, + 1605, + 298, + 1605 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 1160, + 1403, + 1160, + 1403, + 1374, + 298, + 1374 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1727, + 1405, + 1727, + 1405, + 2034, + 297, + 2034 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 307, + 271, + 967, + 271, + 967, + 554, + 307, + 554 + ], + "score": 0.958 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 301, + 1656, + 557, + 1656, + 557, + 1690, + 301, + 1690 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 599, + 812, + 599, + 812, + 633, + 300, + 633 + ], + "score": 0.844 + }, + { + "category_id": 1, + "poly": [ + 307, + 644, + 1382, + 644, + 1382, + 805, + 307, + 805 + ], + "score": 0.825 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.776 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1350, + 229, + 1350, + 262, + 294, + 262 + ], + "score": 0.409 + }, + { + "category_id": 0, + "poly": [ + 294, + 229, + 1350, + 229, + 1350, + 262, + 294, + 262 + ], + "score": 0.113 + }, + { + "category_id": 13, + "poly": [ + 1216, + 235, + 1344, + 235, + 1344, + 262, + 1216, + 262 + ], + "score": 0.85, + "latex": "q _ { \\theta } , f , p , H )" + }, + { + "category_id": 13, + "poly": [ + 426, + 763, + 601, + 763, + 601, + 798, + 426, + 798 + ], + "score": 0.84, + "latex": "{ \\bf s } _ { 1 : T } = f ( { \\bf z } _ { 1 : T } )" + }, + { + "category_id": 13, + "poly": [ + 413, + 402, + 484, + 402, + 484, + 427, + 413, + 427 + ], + "score": 0.84, + "latex": "h = 0" + }, + { + "category_id": 13, + "poly": [ + 368, + 701, + 1059, + 701, + 1059, + 737, + 368, + 737 + ], + "score": 0.84, + "latex": "\\mathbf { z } _ { 1 : T } \\gets \\mathbf { z } _ { 1 : T } + \\mathbf { \\bar { V } } _ { \\mathbf { z } _ { 1 : T } } \\left[ \\log q ( f ( \\mathbf { z } _ { 1 : T } ) | \\phi ) + \\log p ( \\mathcal { G } | f ( \\mathbf { z } _ { 1 : T } ) , \\phi ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 449, + 647, + 563, + 647, + 563, + 674, + 449, + 674 + ], + "score": 0.74, + "latex": "{ \\mathbf z } _ { 1 : T } \\sim q _ { 0 }" + }, + { + "category_id": 13, + "poly": [ + 342, + 274, + 629, + 274, + 629, + 306, + 342, + 306 + ], + "score": 0.73, + "latex": "\\phi \\mathrm { E N V I R O N M E N T } ( \\emptyset )" + }, + { + "category_id": 13, + "poly": [ + 371, + 366, + 459, + 366, + 459, + 403, + 371, + 403 + ], + "score": 0.72, + "latex": "\\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } \\gets" + }, + { + "category_id": 14, + "poly": [ + 369, + 701, + 1064, + 701, + 1064, + 737, + 369, + 737 + ], + "score": 0.65, + "latex": "\\mathbf { z } _ { 1 : T } \\gets \\mathbf { z } _ { 1 : T } + \\mathbf { \\bar { V } } _ { \\mathbf { z } _ { 1 : T } } \\left[ \\log q ( f ( \\mathbf { z } _ { 1 : T } ) | \\phi ) + \\log p ( \\mathcal { G } | f ( \\mathbf { z } _ { 1 : T } ) , \\phi ) \\right]" + }, + { + "category_id": 13, + "poly": [ + 674, + 426, + 837, + 426, + 837, + 464, + 674, + 464 + ], + "score": 0.63, + "latex": "( \\phi , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H )" + }, + { + "category_id": 13, + "poly": [ + 516, + 401, + 544, + 401, + 544, + 427, + 516, + 427 + ], + "score": 0.61, + "latex": "H" + }, + { + "category_id": 13, + "poly": [ + 372, + 335, + 625, + 335, + 625, + 366, + 372, + 366 + ], + "score": 0.55, + "latex": "\\mathcal { G } \\gets \\mathsf { R o u r r E P L A N } ( \\phi )" + }, + { + "category_id": 13, + "poly": [ + 369, + 369, + 816, + 369, + 816, + 403, + 369, + 403 + ], + "score": 0.3, + "latex": "\\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } \\gets \\mathrm { I M I T A T I V E P L A N } ( q _ { \\theta } , f , p , \\mathcal { G } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 399, + 463, + 680, + 463, + 680, + 493, + 399, + 493 + ], + "score": 0.27, + "latex": "\\phi \\gets \\mathrm { E N V I R O N M E N T } ( u )" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1653.0, + 561.0, + 1653.0, + 561.0, + 1695.0, + 293.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 593.0, + 815.0, + 593.0, + 815.0, + 637.0, + 294.0, + 637.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": [ + 295.0, + 225.0, + 1215.0, + 225.0, + 1215.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 225.0, + 1351.0, + 225.0, + 1351.0, + 268.0, + 1345.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 870.0, + 1403.0, + 870.0, + 1403.0, + 903.0, + 295.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 903.0, + 1403.0, + 903.0, + 1403.0, + 935.0, + 295.0, + 935.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 931.0, + 1405.0, + 931.0, + 1405.0, + 968.0, + 294.0, + 968.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 959.0, + 1405.0, + 959.0, + 1405.0, + 997.0, + 294.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 991.0, + 1406.0, + 991.0, + 1406.0, + 1027.0, + 294.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1020.0, + 1403.0, + 1020.0, + 1403.0, + 1057.0, + 295.0, + 1057.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1051.0, + 1406.0, + 1051.0, + 1406.0, + 1091.0, + 292.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1081.0, + 1408.0, + 1081.0, + 1408.0, + 1121.0, + 294.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1114.0, + 914.0, + 1114.0, + 914.0, + 1147.0, + 295.0, + 1147.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1390.0, + 1405.0, + 1390.0, + 1405.0, + 1424.0, + 296.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1420.0, + 1405.0, + 1420.0, + 1405.0, + 1455.0, + 293.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1451.0, + 1404.0, + 1451.0, + 1404.0, + 1485.0, + 293.0, + 1485.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": [ + 294.0, + 1513.0, + 1405.0, + 1513.0, + 1405.0, + 1548.0, + 294.0, + 1548.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1544.0, + 1408.0, + 1544.0, + 1408.0, + 1578.0, + 294.0, + 1578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1574.0, + 1307.0, + 1574.0, + 1307.0, + 1608.0, + 294.0, + 1608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1162.0, + 1405.0, + 1162.0, + 1405.0, + 1196.0, + 296.0, + 1196.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1192.0, + 1405.0, + 1192.0, + 1405.0, + 1227.0, + 296.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1224.0, + 1404.0, + 1224.0, + 1404.0, + 1255.0, + 296.0, + 1255.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1252.0, + 1407.0, + 1252.0, + 1407.0, + 1289.0, + 292.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1282.0, + 1405.0, + 1282.0, + 1405.0, + 1316.0, + 294.0, + 1316.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1314.0, + 1405.0, + 1314.0, + 1405.0, + 1348.0, + 296.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1344.0, + 1036.0, + 1344.0, + 1036.0, + 1379.0, + 294.0, + 1379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1728.0, + 1406.0, + 1728.0, + 1406.0, + 1763.0, + 295.0, + 1763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1795.0, + 294.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1789.0, + 1405.0, + 1789.0, + 1405.0, + 1823.0, + 292.0, + 1823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1856.0, + 295.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1887.0, + 292.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1878.0, + 1405.0, + 1878.0, + 1405.0, + 1919.0, + 294.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1911.0, + 1403.0, + 1911.0, + 1403.0, + 1947.0, + 295.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 1403.0, + 1944.0, + 1403.0, + 1976.0, + 296.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1972.0, + 1406.0, + 1972.0, + 1406.0, + 2008.0, + 295.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 1407.0, + 2004.0, + 1407.0, + 2036.0, + 294.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 270.0, + 341.0, + 270.0, + 341.0, + 309.0, + 308.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 270.0, + 871.0, + 270.0, + 871.0, + 309.0, + 630.0, + 309.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 305.0, + 648.0, + 305.0, + 648.0, + 336.0, + 310.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 336.0, + 338.0, + 336.0, + 338.0, + 367.0, + 309.0, + 367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 333.0, + 371.0, + 333.0, + 371.0, + 369.0, + 367.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 333.0, + 968.0, + 333.0, + 968.0, + 369.0, + 626.0, + 369.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 368.0, + 337.0, + 368.0, + 337.0, + 402.0, + 309.0, + 402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 353.0, + 368.0, + 353.0, + 368.0, + 422.0, + 360.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 817.0, + 353.0, + 963.0, + 353.0, + 963.0, + 422.0, + 817.0, + 422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 401.0, + 337.0, + 401.0, + 337.0, + 430.0, + 308.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 399.0, + 412.0, + 399.0, + 412.0, + 430.0, + 370.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 399.0, + 515.0, + 399.0, + 515.0, + 430.0, + 485.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 545.0, + 399.0, + 585.0, + 399.0, + 585.0, + 430.0, + 545.0, + 430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 431.0, + 338.0, + 431.0, + 338.0, + 461.0, + 308.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 422.0, + 673.0, + 422.0, + 673.0, + 469.0, + 393.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 422.0, + 843.0, + 422.0, + 843.0, + 469.0, + 838.0, + 469.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 457.0, + 341.0, + 457.0, + 341.0, + 494.0, + 308.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 458.0, + 398.0, + 458.0, + 398.0, + 494.0, + 395.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 681.0, + 458.0, + 888.0, + 458.0, + 888.0, + 494.0, + 681.0, + 494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 491.0, + 338.0, + 491.0, + 338.0, + 521.0, + 308.0, + 521.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 369.0, + 489.0, + 467.0, + 489.0, + 467.0, + 522.0, + 369.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 520.0, + 466.0, + 520.0, + 466.0, + 553.0, + 304.0, + 553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 636.0, + 448.0, + 636.0, + 448.0, + 679.0, + 307.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 564.0, + 636.0, + 569.0, + 636.0, + 569.0, + 679.0, + 564.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 671.0, + 613.0, + 671.0, + 613.0, + 705.0, + 306.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 698.0, + 367.0, + 698.0, + 367.0, + 741.0, + 306.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1065.0, + 698.0, + 1371.0, + 698.0, + 1371.0, + 741.0, + 1065.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 731.0, + 468.0, + 731.0, + 468.0, + 765.0, + 305.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 763.0, + 425.0, + 763.0, + 425.0, + 797.0, + 306.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 225.0, + 1215.0, + 225.0, + 1215.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 225.0, + 1351.0, + 225.0, + 1351.0, + 268.0, + 1345.0, + 268.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1515, + 1404, + 1515, + 1404, + 2035, + 296, + 2035 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1042, + 1405, + 1042, + 1405, + 1499, + 298, + 1499 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 781, + 1404, + 781, + 1404, + 1028, + 297, + 1028 + ], + "score": 0.979 + }, + { + "category_id": 6, + "poly": [ + 301, + 224, + 1397, + 224, + 1397, + 286, + 301, + 286 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2111, + 841, + 2111 + ], + "score": 0.755 + }, + { + "category_id": 5, + "poly": [ + 300, + 289, + 1394, + 289, + 1394, + 732, + 300, + 732 + ], + "score": 0.492, + "html": "
ApproachFlexible to New GoalsTrains without goal labelsOutputs PlansTrains OflineHas Expert P.D.F.
CIRL*(Liang et al., 2018)XXXXX
CAL* (Sauer et al.,2018)xxxxxν
MT*(Li et al.,2018)
CIL*(Codevilla et al., 2018)xxx
CILRS*(Codevilla et al.,2019)X
CILStxxxx//xxxxx/X
MBRL†XX
Imitative Models (Ours)t
Table 2: Algorithmic components of each approach. A “t” i indicates an approach we implemented.
ApproachControl Algorithm← Learning Algorithm←Goal-Generation Algorithm ←Routing AlgorithmHigh-Dim. Obs.
CIRL*(Liang et al.,2018)Waypoint ClassifierA*Waypointer
PolicyBehavior Cloning+RL Affordance LearningWaypoint ClassifierA*WaypointerImage Image
CAL*(Sauer et al.,2018) MT*(Li et al., 2018)PID PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CIL*(Codevilla et al., 2018)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILRS*(Codevilla et al., 2019)PolicyBehavior CloningWaypoint ClassifierA*WaypointerImage
CILStPIDTrajectory RegressorWaypoint ClassifierA*Waypointer(LIDAR,入)
MBRL†Reachability TreeState RegressorWaypoint SelectorA*Waypointer(LIDAR,λ)
Imitative Models (Ours)†Imitative Plan+PIDTraj. Density Est.Goal LikelihoodsA*Waypointer(LIDAR,λ)
" + }, + { + "category_id": 6, + "poly": [ + 316, + 503, + 1387, + 503, + 1387, + 537, + 316, + 537 + ], + "score": 0.217 + }, + { + "category_id": 13, + "poly": [ + 535, + 1042, + 614, + 1042, + 614, + 1076, + 535, + 1076 + ], + "score": 0.92, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 807, + 1912, + 887, + 1912, + 887, + 1945, + 807, + 1945 + ], + "score": 0.92, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 657, + 1195, + 683, + 1195, + 683, + 1222, + 657, + 1222 + ], + "score": 0.8, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 1092, + 547, + 1113, + 547, + 1113, + 563, + 1092, + 563 + ], + "score": 0.65, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 872, + 547, + 892, + 547, + 892, + 562, + 872, + 562 + ], + "score": 0.52, + "latex": "" + }, + { + "category_id": 13, + "poly": [ + 689, + 547, + 710, + 547, + 710, + 563, + 689, + 563 + ], + "score": 0.49, + "latex": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 221.0, + 1400.0, + 221.0, + 1400.0, + 259.0, + 298.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 247.0, + 1388.0, + 247.0, + 1388.0, + 292.0, + 297.0, + 292.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, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 496.0, + 1392.0, + 496.0, + 1392.0, + 542.0, + 308.0, + 542.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1511.0, + 1405.0, + 1511.0, + 1405.0, + 1553.0, + 293.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1544.0, + 1406.0, + 1544.0, + 1406.0, + 1583.0, + 293.0, + 1583.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1575.0, + 1406.0, + 1575.0, + 1406.0, + 1611.0, + 294.0, + 1611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1607.0, + 1406.0, + 1607.0, + 1406.0, + 1643.0, + 294.0, + 1643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1638.0, + 1404.0, + 1638.0, + 1404.0, + 1670.0, + 296.0, + 1670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1668.0, + 1406.0, + 1668.0, + 1406.0, + 1703.0, + 293.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1698.0, + 1407.0, + 1698.0, + 1407.0, + 1735.0, + 290.0, + 1735.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1726.0, + 1409.0, + 1726.0, + 1409.0, + 1765.0, + 290.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1757.0, + 1407.0, + 1757.0, + 1407.0, + 1797.0, + 291.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1787.0, + 1409.0, + 1787.0, + 1409.0, + 1827.0, + 294.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1821.0, + 1405.0, + 1821.0, + 1405.0, + 1854.0, + 295.0, + 1854.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1849.0, + 1407.0, + 1849.0, + 1407.0, + 1886.0, + 293.0, + 1886.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1884.0, + 1405.0, + 1884.0, + 1405.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 806.0, + 1911.0, + 806.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 888.0, + 1911.0, + 1406.0, + 1911.0, + 1406.0, + 1947.0, + 888.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1944.0, + 1405.0, + 1944.0, + 1405.0, + 1976.0, + 295.0, + 1976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1974.0, + 1405.0, + 1974.0, + 1405.0, + 2006.0, + 295.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2000.0, + 892.0, + 2000.0, + 892.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1039.0, + 534.0, + 1039.0, + 534.0, + 1079.0, + 292.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1039.0, + 1406.0, + 1039.0, + 1406.0, + 1079.0, + 615.0, + 1079.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1074.0, + 1405.0, + 1074.0, + 1405.0, + 1109.0, + 295.0, + 1109.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1104.0, + 1405.0, + 1104.0, + 1405.0, + 1139.0, + 295.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1134.0, + 1403.0, + 1134.0, + 1403.0, + 1169.0, + 295.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1164.0, + 1405.0, + 1164.0, + 1405.0, + 1197.0, + 293.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1193.0, + 656.0, + 1193.0, + 656.0, + 1231.0, + 293.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 1193.0, + 1405.0, + 1193.0, + 1405.0, + 1231.0, + 684.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1223.0, + 1406.0, + 1223.0, + 1406.0, + 1261.0, + 293.0, + 1261.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1254.0, + 1407.0, + 1254.0, + 1407.0, + 1292.0, + 292.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1284.0, + 1405.0, + 1284.0, + 1405.0, + 1321.0, + 292.0, + 1321.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1315.0, + 1406.0, + 1315.0, + 1406.0, + 1350.0, + 295.0, + 1350.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1345.0, + 1408.0, + 1345.0, + 1408.0, + 1382.0, + 293.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1377.0, + 1405.0, + 1377.0, + 1405.0, + 1411.0, + 296.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1406.0, + 1407.0, + 1406.0, + 1407.0, + 1443.0, + 293.0, + 1443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1436.0, + 1405.0, + 1436.0, + 1405.0, + 1476.0, + 292.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1471.0, + 628.0, + 1471.0, + 628.0, + 1502.0, + 296.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 782.0, + 1406.0, + 782.0, + 1406.0, + 817.0, + 292.0, + 817.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 813.0, + 1407.0, + 813.0, + 1407.0, + 847.0, + 295.0, + 847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 844.0, + 1404.0, + 844.0, + 1404.0, + 878.0, + 295.0, + 878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 874.0, + 1405.0, + 874.0, + 1405.0, + 908.0, + 294.0, + 908.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 903.0, + 1406.0, + 903.0, + 1406.0, + 941.0, + 294.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 933.0, + 1407.0, + 933.0, + 1407.0, + 971.0, + 294.0, + 971.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 965.0, + 1406.0, + 965.0, + 1406.0, + 1002.0, + 294.0, + 1002.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 996.0, + 1127.0, + 996.0, + 1127.0, + 1032.0, + 293.0, + 1032.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1681, + 1404, + 1681, + 1404, + 1956, + 298, + 1956 + ], + "score": 0.98 + }, + { + "category_id": 3, + "poly": [ + 300, + 998, + 829, + 998, + 829, + 1279, + 300, + 1279 + ], + "score": 0.971 + }, + { + "category_id": 3, + "poly": [ + 871, + 999, + 1400, + 999, + 1400, + 1279, + 871, + 1279 + ], + "score": 0.965 + }, + { + "category_id": 4, + "poly": [ + 296, + 1305, + 837, + 1305, + 837, + 1428, + 296, + 1428 + ], + "score": 0.961 + }, + { + "category_id": 4, + "poly": [ + 861, + 1306, + 1403, + 1306, + 1403, + 1428, + 861, + 1428 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 300, + 1573, + 1403, + 1573, + 1403, + 1665, + 300, + 1665 + ], + "score": 0.953 + }, + { + "category_id": 5, + "poly": [ + 299, + 433, + 1406, + 433, + 1406, + 966, + 299, + 966 + ], + "score": 0.95, + "html": "
Dynamic Nav. MethodTownO1 (training conditions)Town02 (test conditions)
Success↑Ran Red Light↓Wrong lane↓Off road↓Success↑Ran Red Light↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)82%41%
CAL*(Sauer et al.,2018)83%64%
MT* (Li et al., 2018)81%53%
CIL*(Codevilla et al., 2018)83%83%38%82%t
CILRS*(Codevilla et al., 2019)92%27%66%64%
CILS,Waypoint Input†17%0.0%0.20%12.1%36%0.0%1.11%11.70%
MBRL,Waypoint Input64%72%11.1%2.96%48%54%20.6%13.3 %
Ourmethod,RegionFinal-St.IndicatorS.t96%±1.90.89%±0.40.05%±0.010.11%±0.0188%±3.32.60%±0.040.49%±0.322.60%±1.1
Ourmethod,RegionFinal-St.Inictor93%±2.218%±0.50.023%±0.0020.195%±0.00481%±2.254.7%±1.50.12%±0.011.32%±0.69
Ourmethod,LineegmentFinal-St.Indicatort91%±1.132%±1.30.055%±0.0020.013%±0.00188%±3.335.2%±2.40.52%±0.030.18%±0.02
Ourmethod,Final-StateIndicatort92%26%0.05%0.012%84%35%0.13%0.38%
Ourmethod,Gussianinal-t.92% 100%6.3% 1.7%0.04%0.005%100%12%0.11%0.04%
Our method, Gaussian Final-St.Mix.S.t0.03%0.005%92%0.0%0.05%0.15%
Town01 (training conditions)Town02 (test conditions)
Static Nav. MethodSuccess↑Ran RedLight↓Wrong lane↓Off road↓Success↑Ran RedLight↓Wrong lane↓Off road↓
CIRL*(Liang et al., 2018)93%68%
CAL*(Sauer et al.,2018)92%68%
MT*(Li et al.,2018)81%78%
CIL*(Codevilla et al., 2018)86%83%44%82%
CILRS*(Codevilla et al., 2019)95%27%90%64%
CILS,Waypoint Inputt28%0.0%0.38%10.23%36%0.0%1.69%16.82%
MBRL,Waypoint Input†96%78%14.3%1.94%96%73%19.6 %0.75%
Ourmethod,Final-StateIndicatort100%48%0.05%0.002%100%52%0.10%0.13%
Our method,GaussianFinal-St. Mixturet96%0.83%0.01%0.08%96%0.0%0.03%0.14%
Ourmethod,GaussianFinal-St.ix..t96%0.0%0.04%0.07%92%0.0%0.18%0.27%
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1972, + 1401, + 1972, + 1401, + 2034, + 297, + 2034 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 298, + 1516, + 968, + 1516, + 968, + 1547, + 298, + 1547 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 6, + "poly": [ + 296, + 223, + 1405, + 223, + 1405, + 409, + 296, + 409 + ], + "score": 0.794 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2111, + 841, + 2111 + ], + "score": 0.786 + }, + { + "category_id": 1, + "poly": [ + 296, + 223, + 1405, + 223, + 1405, + 409, + 296, + 409 + ], + "score": 0.313 + }, + { + "category_id": 13, + "poly": [ + 959, + 378, + 1038, + 378, + 1038, + 404, + 959, + 404 + ], + "score": 0.9, + "latex": "N = 3" + }, + { + "category_id": 13, + "poly": [ + 1095, + 1835, + 1135, + 1835, + 1135, + 1863, + 1095, + 1863 + ], + "score": 0.78, + "latex": "^ { 6 6 } \\%" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1173.0, + 749.0, + 1173.0, + 749.0, + 1211.0, + 732.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1305.0, + 839.0, + 1305.0, + 839.0, + 1339.0, + 295.0, + 1339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1334.0, + 841.0, + 1334.0, + 841.0, + 1370.0, + 294.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1364.0, + 839.0, + 1364.0, + 839.0, + 1400.0, + 293.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1393.0, + 656.0, + 1393.0, + 656.0, + 1431.0, + 294.0, + 1431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1304.0, + 1405.0, + 1304.0, + 1405.0, + 1338.0, + 861.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1336.0, + 1403.0, + 1336.0, + 1403.0, + 1367.0, + 861.0, + 1367.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 1366.0, + 1404.0, + 1366.0, + 1404.0, + 1400.0, + 861.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 859.0, + 1396.0, + 1299.0, + 1396.0, + 1299.0, + 1429.0, + 859.0, + 1429.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1514.0, + 972.0, + 1514.0, + 972.0, + 1551.0, + 294.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 817.0, + 73.0, + 817.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 1408.0, + 222.0, + 1408.0, + 259.0, + 293.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 247.0, + 1408.0, + 247.0, + 1408.0, + 292.0, + 290.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 279.0, + 1410.0, + 279.0, + 1410.0, + 322.0, + 291.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 310.0, + 1406.0, + 310.0, + 1406.0, + 352.0, + 291.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 344.0, + 1407.0, + 344.0, + 1407.0, + 380.0, + 296.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 376.0, + 958.0, + 376.0, + 958.0, + 412.0, + 294.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 376.0, + 1400.0, + 376.0, + 1400.0, + 412.0, + 1039.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 860.0, + 2086.0, + 860.0, + 2116.0, + 839.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1679.0, + 1405.0, + 1679.0, + 1405.0, + 1717.0, + 293.0, + 1717.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1709.0, + 1405.0, + 1709.0, + 1405.0, + 1748.0, + 293.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1740.0, + 1406.0, + 1740.0, + 1406.0, + 1778.0, + 292.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1769.0, + 1406.0, + 1769.0, + 1406.0, + 1812.0, + 292.0, + 1812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1803.0, + 1406.0, + 1803.0, + 1406.0, + 1839.0, + 293.0, + 1839.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1835.0, + 1094.0, + 1835.0, + 1094.0, + 1868.0, + 294.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1136.0, + 1835.0, + 1402.0, + 1835.0, + 1402.0, + 1868.0, + 1136.0, + 1868.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1861.0, + 1406.0, + 1861.0, + 1406.0, + 1901.0, + 292.0, + 1901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1894.0, + 1406.0, + 1894.0, + 1406.0, + 1930.0, + 294.0, + 1930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1924.0, + 610.0, + 1924.0, + 610.0, + 1960.0, + 294.0, + 1960.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1572.0, + 1407.0, + 1572.0, + 1407.0, + 1609.0, + 295.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1603.0, + 1404.0, + 1603.0, + 1404.0, + 1641.0, + 293.0, + 1641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1635.0, + 855.0, + 1635.0, + 855.0, + 1668.0, + 295.0, + 1668.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, + 2002.0, + 1403.0, + 2002.0, + 1403.0, + 2038.0, + 293.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 222.0, + 1408.0, + 222.0, + 1408.0, + 259.0, + 293.0, + 259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 247.0, + 1408.0, + 247.0, + 1408.0, + 292.0, + 290.0, + 292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 279.0, + 1410.0, + 279.0, + 1410.0, + 322.0, + 291.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 310.0, + 1406.0, + 310.0, + 1406.0, + 352.0, + 291.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 344.0, + 1407.0, + 344.0, + 1407.0, + 380.0, + 296.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 376.0, + 958.0, + 376.0, + 958.0, + 412.0, + 294.0, + 412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1039.0, + 376.0, + 1400.0, + 376.0, + 1400.0, + 412.0, + 1039.0, + 412.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1083, + 1405, + 1083, + 1405, + 1329, + 297, + 1329 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 410, + 1598, + 1289, + 1598, + 1289, + 1747, + 410, + 1747 + ], + "score": 0.977, + "html": "
Town01 (training conditions)Town02 (test conditions)
WaypointerExtra CostSuccessWrong lanePotholes hitSuccessWrong lanePotholes hit
Noiseless waypointer100%0.00%177/230100%0.41%82/154
Waypoints wrong lane100%0.34%170%3.16%
1/2 waypoints distracting70%150%1
Noiseless waypointerPothole90%1.53%10/23070%1.53%35/154
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1788, + 1404, + 1788, + 1404, + 2035, + 297, + 2035 + ], + "score": 0.976 + }, + { + "category_id": 3, + "poly": [ + 299, + 225, + 828, + 225, + 828, + 502, + 299, + 502 + ], + "score": 0.969 + }, + { + "category_id": 3, + "poly": [ + 871, + 225, + 1400, + 225, + 1400, + 502, + 871, + 502 + ], + "score": 0.967 + }, + { + "category_id": 4, + "poly": [ + 296, + 506, + 836, + 506, + 836, + 627, + 296, + 627 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 295, + 926, + 1171, + 926, + 1171, + 1018, + 295, + 1018 + ], + "score": 0.953 + }, + { + "category_id": 4, + "poly": [ + 862, + 506, + 1405, + 506, + 1405, + 627, + 862, + 627 + ], + "score": 0.95 + }, + { + "category_id": 4, + "poly": [ + 1192, + 926, + 1405, + 926, + 1405, + 1017, + 1192, + 1017 + ], + "score": 0.922 + }, + { + "category_id": 6, + "poly": [ + 300, + 1449, + 1401, + 1449, + 1401, + 1571, + 300, + 1571 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 300, + 1373, + 1189, + 1373, + 1189, + 1406, + 300, + 1406 + ], + "score": 0.798 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.79 + }, + { + "category_id": 3, + "poly": [ + 306, + 693, + 1429, + 693, + 1429, + 903, + 306, + 903 + ], + "score": 0.616 + }, + { + "category_id": 1, + "poly": [ + 300, + 1373, + 1189, + 1373, + 1189, + 1406, + 300, + 1406 + ], + "score": 0.107 + }, + { + "category_id": 1, + "poly": [ + 300, + 1449, + 1401, + 1449, + 1401, + 1571, + 300, + 1571 + ], + "score": 0.099 + }, + { + "category_id": 13, + "poly": [ + 297, + 1146, + 372, + 1146, + 372, + 1179, + 297, + 1179 + ], + "score": 0.92, + "latex": "q ( \\mathbf { s } | \\boldsymbol { \\phi } )" + }, + { + "category_id": 13, + "poly": [ + 1080, + 1267, + 1133, + 1267, + 1133, + 1297, + 1080, + 1297 + ], + "score": 0.88, + "latex": "4 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1150, + 1097, + 1150, + 1097, + 1173, + 1081, + 1173 + ], + "score": 0.67, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1135, + 955, + 1171, + 955, + 1171, + 989, + 1135, + 989 + ], + "score": 0.65, + "latex": "^ 1 / 2" + }, + { + "category_id": 15, + "poly": [ + 384.0, + 359.0, + 393.0, + 359.0, + 393.0, + 379.0, + 384.0, + 379.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 503.0, + 839.0, + 503.0, + 839.0, + 537.0, + 295.0, + 537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 534.0, + 840.0, + 534.0, + 840.0, + 567.0, + 292.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 566.0, + 837.0, + 566.0, + 837.0, + 596.0, + 295.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 594.0, + 836.0, + 594.0, + 836.0, + 630.0, + 294.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 924.0, + 1175.0, + 924.0, + 1175.0, + 958.0, + 294.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 954.0, + 1134.0, + 954.0, + 1134.0, + 991.0, + 294.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 954.0, + 1175.0, + 954.0, + 1175.0, + 991.0, + 1172.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 986.0, + 1119.0, + 986.0, + 1119.0, + 1020.0, + 297.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 504.0, + 1405.0, + 504.0, + 1405.0, + 538.0, + 861.0, + 538.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 860.0, + 530.0, + 1409.0, + 530.0, + 1409.0, + 572.0, + 860.0, + 572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 861.0, + 566.0, + 1406.0, + 566.0, + 1406.0, + 599.0, + 861.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 862.0, + 596.0, + 1397.0, + 596.0, + 1397.0, + 631.0, + 862.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 924.0, + 1410.0, + 924.0, + 1410.0, + 959.0, + 1191.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 952.0, + 1406.0, + 952.0, + 1406.0, + 992.0, + 1190.0, + 992.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 985.0, + 1386.0, + 985.0, + 1386.0, + 1020.0, + 1191.0, + 1020.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1513.0, + 293.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1511.0, + 1405.0, + 1511.0, + 1405.0, + 1547.0, + 295.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1542.0, + 817.0, + 1542.0, + 817.0, + 1574.0, + 295.0, + 1574.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": [ + 293.0, + 1372.0, + 1194.0, + 1372.0, + 1194.0, + 1409.0, + 293.0, + 1409.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": [ + 1093.0, + 756.0, + 1120.0, + 756.0, + 1120.0, + 773.0, + 1093.0, + 773.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 524.0, + 823.0, + 538.0, + 823.0, + 538.0, + 865.0, + 524.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 817.0, + 665.0, + 817.0, + 665.0, + 866.0, + 542.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 943.0, + 850.0, + 958.0, + 850.0, + 958.0, + 865.0, + 943.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 962.0, + 817.0, + 1084.0, + 817.0, + 1084.0, + 866.0, + 962.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1199.0, + 832.0, + 1209.0, + 832.0, + 1209.0, + 856.0, + 1199.0, + 856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1214.0, + 826.0, + 1333.0, + 826.0, + 1333.0, + 861.0, + 1214.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1200.0, + 860.0, + 1209.0, + 860.0, + 1209.0, + 869.0, + 1200.0, + 869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1215.0, + 856.0, + 1287.0, + 856.0, + 1287.0, + 872.0, + 1215.0, + 872.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 538.0, + 888.0, + 652.0, + 888.0, + 652.0, + 900.0, + 538.0, + 900.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 886.0, + 1076.0, + 886.0, + 1076.0, + 902.0, + 958.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1210.0, + 889.0, + 1324.0, + 889.0, + 1324.0, + 901.0, + 1210.0, + 901.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1085.0, + 1405.0, + 1085.0, + 1405.0, + 1118.0, + 295.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1115.0, + 1405.0, + 1115.0, + 1405.0, + 1148.0, + 295.0, + 1148.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 373.0, + 1145.0, + 1080.0, + 1145.0, + 1080.0, + 1182.0, + 373.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1098.0, + 1145.0, + 1406.0, + 1145.0, + 1406.0, + 1182.0, + 1098.0, + 1182.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1177.0, + 1405.0, + 1177.0, + 1405.0, + 1211.0, + 294.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1207.0, + 1406.0, + 1207.0, + 1406.0, + 1241.0, + 291.0, + 1241.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1236.0, + 1406.0, + 1236.0, + 1406.0, + 1273.0, + 291.0, + 1273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1267.0, + 1079.0, + 1267.0, + 1079.0, + 1301.0, + 294.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1134.0, + 1267.0, + 1405.0, + 1267.0, + 1405.0, + 1301.0, + 1134.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1297.0, + 1356.0, + 1297.0, + 1356.0, + 1333.0, + 292.0, + 1333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1790.0, + 1405.0, + 1790.0, + 1405.0, + 1824.0, + 295.0, + 1824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1819.0, + 1406.0, + 1819.0, + 1406.0, + 1859.0, + 291.0, + 1859.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1850.0, + 1404.0, + 1850.0, + 1404.0, + 1885.0, + 294.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1883.0, + 1406.0, + 1883.0, + 1406.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1912.0, + 1406.0, + 1912.0, + 1406.0, + 1945.0, + 294.0, + 1945.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1943.0, + 1406.0, + 1943.0, + 1406.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1973.0, + 1405.0, + 1973.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2039.0, + 292.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1372.0, + 1194.0, + 1372.0, + 1194.0, + 1409.0, + 293.0, + 1409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1449.0, + 1405.0, + 1449.0, + 1405.0, + 1485.0, + 294.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1480.0, + 1405.0, + 1480.0, + 1405.0, + 1513.0, + 293.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1511.0, + 1405.0, + 1511.0, + 1405.0, + 1547.0, + 295.0, + 1547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1542.0, + 817.0, + 1542.0, + 817.0, + 1574.0, + 295.0, + 1574.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 409, + 1404, + 409, + 1404, + 866, + 298, + 866 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 295, + 230, + 1401, + 230, + 1401, + 293, + 295, + 293 + ], + "score": 0.947 + }, + { + "category_id": 1, + "poly": [ + 299, + 982, + 1397, + 982, + 1397, + 1044, + 299, + 1044 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 816, + 76, + 816, + 104, + 300, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 338, + 529, + 338, + 529, + 374, + 299, + 374 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 302, + 915, + 624, + 915, + 624, + 947, + 302, + 947 + ], + "score": 0.849 + }, + { + "category_id": 0, + "poly": [ + 300, + 1092, + 488, + 1092, + 488, + 1124, + 300, + 1124 + ], + "score": 0.82 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.816 + }, + { + "category_id": 1, + "poly": [ + 298, + 1972, + 1400, + 1972, + 1400, + 2033, + 298, + 2033 + ], + "score": 0.785 + }, + { + "category_id": 1, + "poly": [ + 296, + 1545, + 1402, + 1545, + 1402, + 1608, + 296, + 1608 + ], + "score": 0.724 + }, + { + "category_id": 1, + "poly": [ + 293, + 1629, + 1404, + 1629, + 1404, + 1696, + 293, + 1696 + ], + "score": 0.707 + }, + { + "category_id": 1, + "poly": [ + 295, + 1144, + 1405, + 1144, + 1405, + 1236, + 295, + 1236 + ], + "score": 0.699 + }, + { + "category_id": 1, + "poly": [ + 299, + 1801, + 1404, + 1801, + 1404, + 1894, + 299, + 1894 + ], + "score": 0.679 + }, + { + "category_id": 1, + "poly": [ + 297, + 1916, + 1150, + 1916, + 1150, + 1950, + 297, + 1950 + ], + "score": 0.668 + }, + { + "category_id": 1, + "poly": [ + 293, + 1714, + 1404, + 1714, + 1404, + 1780, + 293, + 1780 + ], + "score": 0.66 + }, + { + "category_id": 1, + "poly": [ + 295, + 1459, + 1403, + 1459, + 1403, + 1524, + 295, + 1524 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 297, + 1375, + 1400, + 1375, + 1400, + 1439, + 297, + 1439 + ], + "score": 0.63 + }, + { + "category_id": 1, + "poly": [ + 298, + 1258, + 1400, + 1258, + 1400, + 1353, + 298, + 1353 + ], + "score": 0.612 + }, + { + "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": [ + 292.0, + 336.0, + 536.0, + 336.0, + 536.0, + 380.0, + 292.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 912.0, + 630.0, + 912.0, + 630.0, + 955.0, + 298.0, + 955.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1092.0, + 490.0, + 1092.0, + 490.0, + 1128.0, + 296.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 407.0, + 1405.0, + 407.0, + 1405.0, + 442.0, + 296.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 440.0, + 1408.0, + 440.0, + 1408.0, + 475.0, + 294.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 467.0, + 1405.0, + 467.0, + 1405.0, + 504.0, + 295.0, + 504.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 501.0, + 1405.0, + 501.0, + 1405.0, + 536.0, + 294.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 531.0, + 1404.0, + 531.0, + 1404.0, + 565.0, + 293.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 562.0, + 1406.0, + 562.0, + 1406.0, + 596.0, + 294.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 589.0, + 1405.0, + 589.0, + 1405.0, + 629.0, + 292.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 620.0, + 1406.0, + 620.0, + 1406.0, + 660.0, + 292.0, + 660.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 652.0, + 1405.0, + 652.0, + 1405.0, + 687.0, + 294.0, + 687.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 681.0, + 1406.0, + 681.0, + 1406.0, + 718.0, + 293.0, + 718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 713.0, + 1405.0, + 713.0, + 1405.0, + 746.0, + 293.0, + 746.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 743.0, + 1405.0, + 743.0, + 1405.0, + 778.0, + 296.0, + 778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 774.0, + 1404.0, + 774.0, + 1404.0, + 809.0, + 294.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 805.0, + 1405.0, + 805.0, + 1405.0, + 840.0, + 294.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 1170.0, + 834.0, + 1170.0, + 871.0, + 293.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1403.0, + 228.0, + 1403.0, + 264.0, + 295.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 260.0, + 1288.0, + 260.0, + 1288.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 981.0, + 1402.0, + 981.0, + 1402.0, + 1021.0, + 294.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1012.0, + 964.0, + 1012.0, + 964.0, + 1050.0, + 294.0, + 1050.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 776.0, + 2003.0, + 776.0, + 2035.0, + 322.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1546.0, + 1404.0, + 1546.0, + 1404.0, + 1582.0, + 296.0, + 1582.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1577.0, + 610.0, + 1577.0, + 610.0, + 1607.0, + 323.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1630.0, + 1407.0, + 1630.0, + 1407.0, + 1666.0, + 296.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1661.0, + 1358.0, + 1661.0, + 1358.0, + 1698.0, + 322.0, + 1698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1408.0, + 1143.0, + 1408.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1174.0, + 1403.0, + 1174.0, + 1403.0, + 1210.0, + 322.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1204.0, + 521.0, + 1204.0, + 521.0, + 1239.0, + 322.0, + 1239.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1799.0, + 1405.0, + 1799.0, + 1405.0, + 1838.0, + 293.0, + 1838.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1831.0, + 1409.0, + 1831.0, + 1409.0, + 1869.0, + 321.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1863.0, + 575.0, + 1863.0, + 575.0, + 1893.0, + 320.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1914.0, + 1149.0, + 1914.0, + 1149.0, + 1954.0, + 296.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1711.0, + 1410.0, + 1711.0, + 1410.0, + 1755.0, + 292.0, + 1755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1746.0, + 1318.0, + 1746.0, + 1318.0, + 1781.0, + 321.0, + 1781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1458.0, + 1405.0, + 1458.0, + 1405.0, + 1497.0, + 294.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1492.0, + 1371.0, + 1492.0, + 1371.0, + 1525.0, + 322.0, + 1525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1375.0, + 1405.0, + 1375.0, + 1405.0, + 1411.0, + 295.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1406.0, + 1247.0, + 1406.0, + 1247.0, + 1442.0, + 322.0, + 1442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1257.0, + 1406.0, + 1257.0, + 1406.0, + 1296.0, + 294.0, + 1296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1291.0, + 1405.0, + 1291.0, + 1405.0, + 1325.0, + 323.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1321.0, + 793.0, + 1321.0, + 793.0, + 1355.0, + 321.0, + 1355.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 862, + 2088, + 862, + 2113, + 835, + 2113 + ], + "score": 0.832 + }, + { + "category_id": 1, + "poly": [ + 299, + 1637, + 1399, + 1637, + 1399, + 1704, + 299, + 1704 + ], + "score": 0.787 + }, + { + "category_id": 1, + "poly": [ + 298, + 739, + 1400, + 739, + 1400, + 803, + 298, + 803 + ], + "score": 0.78 + }, + { + "category_id": 1, + "poly": [ + 300, + 1554, + 1401, + 1554, + 1401, + 1621, + 300, + 1621 + ], + "score": 0.748 + }, + { + "category_id": 1, + "poly": [ + 301, + 1441, + 1401, + 1441, + 1401, + 1536, + 301, + 1536 + ], + "score": 0.725 + }, + { + "category_id": 1, + "poly": [ + 308, + 508, + 1402, + 508, + 1402, + 603, + 308, + 603 + ], + "score": 0.705 + }, + { + "category_id": 1, + "poly": [ + 300, + 229, + 1400, + 229, + 1400, + 323, + 300, + 323 + ], + "score": 0.686 + }, + { + "category_id": 1, + "poly": [ + 296, + 1048, + 1403, + 1048, + 1403, + 1114, + 296, + 1114 + ], + "score": 0.679 + }, + { + "category_id": 1, + "poly": [ + 297, + 623, + 1406, + 623, + 1406, + 719, + 297, + 719 + ], + "score": 0.674 + }, + { + "category_id": 1, + "poly": [ + 298, + 1327, + 1404, + 1327, + 1404, + 1424, + 298, + 1424 + ], + "score": 0.671 + }, + { + "category_id": 1, + "poly": [ + 298, + 1721, + 1406, + 1721, + 1406, + 1814, + 298, + 1814 + ], + "score": 0.668 + }, + { + "category_id": 1, + "poly": [ + 292, + 1131, + 1402, + 1131, + 1402, + 1196, + 292, + 1196 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 300, + 1214, + 1403, + 1214, + 1403, + 1308, + 300, + 1308 + ], + "score": 0.667 + }, + { + "category_id": 1, + "poly": [ + 296, + 934, + 1404, + 934, + 1404, + 1029, + 296, + 1029 + ], + "score": 0.665 + }, + { + "category_id": 1, + "poly": [ + 297, + 342, + 1401, + 342, + 1401, + 407, + 297, + 407 + ], + "score": 0.652 + }, + { + "category_id": 1, + "poly": [ + 295, + 425, + 1401, + 425, + 1401, + 490, + 295, + 490 + ], + "score": 0.647 + }, + { + "category_id": 1, + "poly": [ + 297, + 820, + 1405, + 820, + 1405, + 915, + 297, + 915 + ], + "score": 0.483 + }, + { + "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": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1633.0, + 1404.0, + 1633.0, + 1404.0, + 1678.0, + 293.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1669.0, + 796.0, + 1669.0, + 796.0, + 1704.0, + 321.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 775.0, + 296.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 770.0, + 1053.0, + 770.0, + 1053.0, + 804.0, + 323.0, + 804.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1555.0, + 1405.0, + 1555.0, + 1405.0, + 1591.0, + 296.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1586.0, + 1146.0, + 1586.0, + 1146.0, + 1621.0, + 320.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1441.0, + 1405.0, + 1441.0, + 1405.0, + 1479.0, + 293.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1473.0, + 1405.0, + 1473.0, + 1405.0, + 1507.0, + 322.0, + 1507.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1502.0, + 1032.0, + 1502.0, + 1032.0, + 1540.0, + 323.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 300.0, + 506.0, + 1407.0, + 506.0, + 1407.0, + 547.0, + 300.0, + 547.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 541.0, + 1406.0, + 541.0, + 1406.0, + 575.0, + 323.0, + 575.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 569.0, + 1293.0, + 569.0, + 1293.0, + 607.0, + 323.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 226.0, + 1404.0, + 226.0, + 1404.0, + 268.0, + 293.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 261.0, + 1404.0, + 261.0, + 1404.0, + 295.0, + 324.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 293.0, + 707.0, + 293.0, + 707.0, + 324.0, + 320.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1051.0, + 1408.0, + 1051.0, + 1408.0, + 1084.0, + 296.0, + 1084.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1080.0, + 1305.0, + 1080.0, + 1305.0, + 1115.0, + 321.0, + 1115.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 623.0, + 1407.0, + 623.0, + 1407.0, + 661.0, + 295.0, + 661.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 658.0, + 1404.0, + 658.0, + 1404.0, + 692.0, + 324.0, + 692.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 687.0, + 635.0, + 687.0, + 635.0, + 721.0, + 324.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1329.0, + 1406.0, + 1329.0, + 1406.0, + 1363.0, + 296.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1361.0, + 1405.0, + 1361.0, + 1405.0, + 1394.0, + 321.0, + 1394.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1390.0, + 1051.0, + 1390.0, + 1051.0, + 1425.0, + 325.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1720.0, + 1406.0, + 1720.0, + 1406.0, + 1758.0, + 293.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1751.0, + 1408.0, + 1751.0, + 1408.0, + 1789.0, + 320.0, + 1789.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1778.0, + 402.0, + 1778.0, + 402.0, + 1819.0, + 320.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1129.0, + 1405.0, + 1129.0, + 1405.0, + 1171.0, + 294.0, + 1171.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1162.0, + 1012.0, + 1162.0, + 1012.0, + 1197.0, + 323.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1214.0, + 1407.0, + 1214.0, + 1407.0, + 1251.0, + 295.0, + 1251.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1246.0, + 1407.0, + 1246.0, + 1407.0, + 1280.0, + 323.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1276.0, + 397.0, + 1276.0, + 397.0, + 1310.0, + 321.0, + 1310.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 934.0, + 1406.0, + 934.0, + 1406.0, + 972.0, + 295.0, + 972.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 964.0, + 1410.0, + 964.0, + 1410.0, + 1007.0, + 320.0, + 1007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 997.0, + 504.0, + 997.0, + 504.0, + 1029.0, + 323.0, + 1029.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 345.0, + 1403.0, + 345.0, + 1403.0, + 377.0, + 297.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 373.0, + 1204.0, + 373.0, + 1204.0, + 409.0, + 324.0, + 409.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 424.0, + 1403.0, + 424.0, + 1403.0, + 464.0, + 295.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 458.0, + 1178.0, + 458.0, + 1178.0, + 491.0, + 323.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 819.0, + 1405.0, + 819.0, + 1405.0, + 860.0, + 292.0, + 860.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 854.0, + 1403.0, + 854.0, + 1403.0, + 888.0, + 323.0, + 888.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 883.0, + 621.0, + 883.0, + 621.0, + 917.0, + 321.0, + 917.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1101, + 1405, + 1101, + 1405, + 1410, + 297, + 1410 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1608, + 1405, + 1608, + 1405, + 1763, + 298, + 1763 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 304, + 1405, + 304, + 1405, + 397, + 298, + 397 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 685, + 1951, + 1012, + 1951, + 1012, + 2028, + 685, + 2028 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 306, + 496, + 1398, + 496, + 1398, + 958, + 306, + 958 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 297, + 1810, + 1401, + 1810, + 1401, + 1876, + 297, + 1876 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 296, + 1888, + 830, + 1888, + 830, + 1921, + 296, + 1921 + ], + "score": 0.917 + }, + { + "category_id": 0, + "poly": [ + 301, + 1039, + 724, + 1039, + 724, + 1072, + 301, + 1072 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 301, + 1466, + 575, + 1466, + 575, + 1503, + 301, + 1503 + ], + "score": 0.867 + }, + { + "category_id": 0, + "poly": [ + 300, + 1544, + 1071, + 1544, + 1071, + 1578, + 300, + 1578 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.863 + }, + { + "category_id": 0, + "poly": [ + 301, + 227, + 555, + 227, + 555, + 261, + 301, + 261 + ], + "score": 0.858 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1975, + 1401, + 1975, + 1401, + 2004, + 1366, + 2004 + ], + "score": 0.854 + }, + { + "category_id": 6, + "poly": [ + 298, + 444, + 1134, + 444, + 1134, + 488, + 298, + 488 + ], + "score": 0.567 + }, + { + "category_id": 14, + "poly": [ + 683, + 1950, + 1013, + 1950, + 1013, + 2028, + 683, + 2028 + ], + "score": 0.94, + "latex": "\\delta _ { \\mathbf { s } _ { T } } ( \\mathbb { G } ) \\doteq { \\left\\{ \\begin{array} { l l } { 1 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\in \\mathbb { G } } \\\\ { 0 } & { { \\mathrm { i f ~ } } \\mathbf { s } _ { T } \\notin \\mathbb { G } , } \\end{array} \\right. }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1163, + 477, + 1163, + 477, + 1197, + 297, + 1197 + ], + "score": 0.93, + "latex": "\\mathbf { z } _ { 1 : T } \\sim \\mathcal { N } ( 0 , I )" + }, + { + "category_id": 13, + "poly": [ + 534, + 1841, + 725, + 1841, + 725, + 1875, + 534, + 1875 + ], + "score": 0.92, + "latex": "\\Sigma _ { t } \\doteq \\Sigma _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )" + }, + { + "category_id": 13, + "poly": [ + 370, + 1103, + 555, + 1103, + 555, + 1137, + 370, + 1137 + ], + "score": 0.92, + "latex": "\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1841, + 482, + 1841, + 482, + 1876, + 298, + 1876 + ], + "score": 0.92, + "latex": "\\mu _ { t } \\doteq \\mu _ { \\theta } \\bigl ( \\mathbf { s } _ { 1 : t - 1 } \\bigr )" + }, + { + "category_id": 13, + "poly": [ + 345, + 663, + 479, + 663, + 479, + 700, + 345, + 700 + ], + "score": 0.91, + "latex": "u _ { \\dot { s } } \\gets K _ { p } ^ { \\dot { s } } e _ { \\dot { s } }" + }, + { + "category_id": 13, + "poly": [ + 889, + 1842, + 1218, + 1842, + 1218, + 1875, + 889, + 1875 + ], + "score": 0.91, + "latex": "q ( \\mathbf { s } _ { t } | \\mathbf { s } _ { 1 : t - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { t } ; \\mu _ { t } , \\Sigma _ { t } \\right)" + }, + { + "category_id": 13, + "poly": [ + 365, + 1347, + 462, + 1347, + 462, + 1375, + 365, + 1375 + ], + "score": 0.89, + "latex": "M = 1 0" + }, + { + "category_id": 13, + "poly": [ + 1294, + 1225, + 1402, + 1225, + 1402, + 1253, + 1294, + 1253 + ], + "score": 0.89, + "latex": "N = 1 2 0" + }, + { + "category_id": 13, + "poly": [ + 779, + 1138, + 832, + 1138, + 832, + 1165, + 779, + 1165 + ], + "score": 0.88, + "latex": "\\mathbf { z } _ { 1 : T }" + }, + { + "category_id": 13, + "poly": [ + 426, + 697, + 772, + 697, + 772, + 730, + 426, + 730 + ], + "score": 0.88, + "latex": "\\iff \\mathbb { 1 } ( e > 0 ) \\cdot u + \\mathbb { 1 } ( e \\leq 0 ) \\cdot 0" + }, + { + "category_id": 13, + "poly": [ + 887, + 1105, + 908, + 1105, + 908, + 1136, + 887, + 1136 + ], + "score": 0.85, + "latex": "f" + }, + { + "category_id": 13, + "poly": [ + 1028, + 1813, + 1048, + 1813, + 1048, + 1843, + 1028, + 1843 + ], + "score": 0.84, + "latex": "\\phi" + }, + { + "category_id": 13, + "poly": [ + 431, + 858, + 547, + 858, + 547, + 893, + 431, + 893 + ], + "score": 0.82, + "latex": "\\ L _ { \\ S } K _ { p } ^ { \\alpha } e _ { \\alpha }" + }, + { + "category_id": 13, + "poly": [ + 297, + 1200, + 347, + 1200, + 347, + 1226, + 297, + 1226 + ], + "score": 0.81, + "latex": "\\mathbf { s } _ { 1 : T }" + }, + { + "category_id": 13, + "poly": [ + 346, + 794, + 836, + 794, + 836, + 832, + 346, + 832 + ], + "score": 0.8, + "latex": "\\alpha _ { \\mathrm { s e t p o i n t } } \\arctan ( \\mathbf { s } _ { i , y } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , y } , | \\mathbf { s } _ { i , x } ^ { \\mathcal { G } } - \\mathbf { s } _ { 0 , x } | ) _ { . }" + }, + { + "category_id": 13, + "poly": [ + 415, + 730, + 765, + 730, + 765, + 760, + 415, + 760 + ], + "score": 0.8, + "latex": " \\mathbb { 1 } ( e > 0 ) \\cdot 0 + \\mathbb { 1 } ( e \\leq 0 ) \\cdot u" + }, + { + "category_id": 13, + "poly": [ + 345, + 499, + 529, + 499, + 529, + 528, + 345, + 528 + ], + "score": 0.78, + "latex": "i T - H + h" + }, + { + "category_id": 13, + "poly": [ + 1209, + 1138, + 1228, + 1138, + 1228, + 1166, + 1209, + 1166 + ], + "score": 0.77, + "latex": "q" + }, + { + "category_id": 13, + "poly": [ + 473, + 530, + 674, + 530, + 674, + 562, + 473, + 562 + ], + "score": 0.74, + "latex": " ( \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )" + }, + { + "category_id": 13, + "poly": [ + 357, + 762, + 854, + 762, + 854, + 792, + 357, + 792 + ], + "score": 0.73, + "latex": "\\boldsymbol { \\iota } _ { \\mathrm { p r o c e s s } } \\gets \\arctan ( \\mathbf { s } _ { 0 , y } - \\mathbf { s } _ { - 1 , y } , \\mathbf { s } _ { 0 , x } - \\mathbf { s } _ { - 1 , x } )" + }, + { + "category_id": 13, + "poly": [ + 494, + 563, + 575, + 563, + 575, + 601, + 494, + 601 + ], + "score": 0.72, + "latex": " \\mathbf { s } _ { i , x } ^ { g }" + }, + { + "category_id": 14, + "poly": [ + 294, + 443, + 1137, + 443, + 1137, + 487, + 294, + 487 + ], + "score": 0.68, + "latex": "\\mathbf { A l g o r i t h m 3 } \\quad \\mathbf { P I D C O N T R O L L E R } ( \\phi = \\left\\{ \\mathbf { s } _ { 0 } , \\mathbf { s } _ { - 1 } , \\ldots \\right\\} , \\mathbf { s } _ { 1 : T } ^ { \\mathcal { G } } , h , H ; K _ { p } ^ { \\dot { s } } , K _ { p } ^ { \\alpha } )" + }, + { + "category_id": 13, + "poly": [ + 344, + 565, + 575, + 565, + 575, + 600, + 344, + 600 + ], + "score": 0.68, + "latex": "s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\mathbf { s } _ { i , x } ^ { \\mathcal { G } }" + }, + { + "category_id": 13, + "poly": [ + 346, + 603, + 637, + 603, + 637, + 631, + 346, + 631 + ], + "score": 0.65, + "latex": "\\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } s _ { \\mathrm { s e t p o i n t - p o s i t i o n } } \\Big / i" + }, + { + "category_id": 13, + "poly": [ + 344, + 891, + 402, + 891, + 402, + 920, + 344, + 920 + ], + "score": 0.64, + "latex": "u \\gets" + }, + { + "category_id": 13, + "poly": [ + 345, + 831, + 585, + 831, + 585, + 857, + 345, + 857 + ], + "score": 0.64, + "latex": "e _ { \\alpha } \\gets \\alpha _ { \\mathrm { s e t p o i n t } } - \\alpha _ { \\mathrm { p r o c } }" + }, + { + "category_id": 13, + "poly": [ + 397, + 1261, + 416, + 1261, + 416, + 1283, + 397, + 1283 + ], + "score": 0.6, + "latex": "\\mathbf { z }" + }, + { + "category_id": 13, + "poly": [ + 427, + 927, + 447, + 927, + 447, + 948, + 427, + 948 + ], + "score": 0.51, + "latex": "u" + }, + { + "category_id": 13, + "poly": [ + 345, + 633, + 633, + 633, + 633, + 660, + 345, + 660 + ], + "score": 0.37, + "latex": "e _ { \\dot { s } } \\gets \\dot { s } _ { \\mathrm { s e t p o i n t - s p e e d } } - \\dot { s } _ { \\mathrm { p r o c e } }" + }, + { + "category_id": 13, + "poly": [ + 899, + 570, + 916, + 570, + 916, + 593, + 899, + 593 + ], + "score": 0.28, + "latex": "\\mathbf { X }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1037.0, + 729.0, + 1037.0, + 729.0, + 1075.0, + 295.0, + 1075.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": [ + 291.0, + 1460.0, + 579.0, + 1460.0, + 579.0, + 1511.0, + 291.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1543.0, + 1074.0, + 1543.0, + 1074.0, + 1581.0, + 293.0, + 1581.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 225.0, + 559.0, + 225.0, + 559.0, + 268.0, + 294.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1101.0, + 369.0, + 1101.0, + 369.0, + 1140.0, + 295.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 556.0, + 1101.0, + 886.0, + 1101.0, + 886.0, + 1140.0, + 556.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 909.0, + 1101.0, + 1406.0, + 1101.0, + 1406.0, + 1140.0, + 909.0, + 1140.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1132.0, + 778.0, + 1132.0, + 778.0, + 1167.0, + 295.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1132.0, + 1208.0, + 1132.0, + 1208.0, + 1167.0, + 833.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1229.0, + 1132.0, + 1403.0, + 1132.0, + 1403.0, + 1167.0, + 1229.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1161.0, + 296.0, + 1161.0, + 296.0, + 1199.0, + 291.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1161.0, + 1408.0, + 1161.0, + 1408.0, + 1199.0, + 478.0, + 1199.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1192.0, + 296.0, + 1192.0, + 296.0, + 1233.0, + 291.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 1192.0, + 1407.0, + 1192.0, + 1407.0, + 1233.0, + 348.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1224.0, + 1293.0, + 1224.0, + 1293.0, + 1258.0, + 294.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1403.0, + 1224.0, + 1407.0, + 1224.0, + 1407.0, + 1258.0, + 1403.0, + 1258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1253.0, + 396.0, + 1253.0, + 396.0, + 1290.0, + 294.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 417.0, + 1253.0, + 1406.0, + 1253.0, + 1406.0, + 1290.0, + 417.0, + 1290.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1284.0, + 1406.0, + 1284.0, + 1406.0, + 1319.0, + 295.0, + 1319.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1314.0, + 1408.0, + 1314.0, + 1408.0, + 1354.0, + 292.0, + 1354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1346.0, + 364.0, + 1346.0, + 364.0, + 1382.0, + 294.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 463.0, + 1346.0, + 1407.0, + 1346.0, + 1407.0, + 1382.0, + 463.0, + 1382.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1377.0, + 742.0, + 1377.0, + 742.0, + 1413.0, + 295.0, + 1413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1608.0, + 1405.0, + 1608.0, + 1405.0, + 1646.0, + 296.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1638.0, + 1406.0, + 1638.0, + 1406.0, + 1674.0, + 293.0, + 1674.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1668.0, + 1408.0, + 1668.0, + 1408.0, + 1707.0, + 292.0, + 1707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1699.0, + 1406.0, + 1699.0, + 1406.0, + 1736.0, + 293.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1729.0, + 1107.0, + 1729.0, + 1107.0, + 1767.0, + 294.0, + 1767.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 303.0, + 1405.0, + 303.0, + 1405.0, + 340.0, + 293.0, + 340.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 331.0, + 1410.0, + 331.0, + 1410.0, + 373.0, + 292.0, + 373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 366.0, + 1347.0, + 366.0, + 1347.0, + 400.0, + 295.0, + 400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 495.0, + 344.0, + 495.0, + 344.0, + 534.0, + 308.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 495.0, + 1012.0, + 495.0, + 1012.0, + 534.0, + 530.0, + 534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 524.0, + 472.0, + 524.0, + 472.0, + 568.0, + 304.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 524.0, + 1351.0, + 524.0, + 1351.0, + 568.0, + 675.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 555.0, + 343.0, + 555.0, + 343.0, + 610.0, + 301.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 555.0, + 898.0, + 555.0, + 898.0, + 610.0, + 576.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 917.0, + 555.0, + 1218.0, + 555.0, + 1218.0, + 610.0, + 917.0, + 610.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 597.0, + 345.0, + 597.0, + 345.0, + 639.0, + 304.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 638.0, + 597.0, + 1052.0, + 597.0, + 1052.0, + 639.0, + 638.0, + 639.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 627.0, + 344.0, + 627.0, + 344.0, + 671.0, + 304.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 634.0, + 627.0, + 1104.0, + 627.0, + 1104.0, + 671.0, + 634.0, + 671.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 663.0, + 344.0, + 663.0, + 344.0, + 698.0, + 307.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 480.0, + 663.0, + 1243.0, + 663.0, + 1243.0, + 698.0, + 480.0, + 698.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 693.0, + 425.0, + 693.0, + 425.0, + 733.0, + 306.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 773.0, + 693.0, + 1396.0, + 693.0, + 1396.0, + 733.0, + 773.0, + 733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 726.0, + 414.0, + 726.0, + 414.0, + 765.0, + 304.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 766.0, + 726.0, + 1383.0, + 726.0, + 1383.0, + 765.0, + 766.0, + 765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 755.0, + 344.0, + 755.0, + 344.0, + 865.0, + 287.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 855.0, + 755.0, + 1239.0, + 755.0, + 1239.0, + 865.0, + 855.0, + 865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 301.0, + 854.0, + 430.0, + 854.0, + 430.0, + 893.0, + 301.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 854.0, + 1192.0, + 854.0, + 1192.0, + 893.0, + 548.0, + 893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 889.0, + 343.0, + 889.0, + 343.0, + 924.0, + 297.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 403.0, + 889.0, + 676.0, + 889.0, + 676.0, + 924.0, + 403.0, + 924.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 920.0, + 426.0, + 920.0, + 426.0, + 953.0, + 297.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 448.0, + 920.0, + 451.0, + 920.0, + 451.0, + 953.0, + 448.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1809.0, + 1027.0, + 1809.0, + 1027.0, + 1846.0, + 296.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1049.0, + 1809.0, + 1405.0, + 1809.0, + 1405.0, + 1846.0, + 1049.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1839.0, + 297.0, + 1839.0, + 297.0, + 1878.0, + 292.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 1839.0, + 533.0, + 1839.0, + 533.0, + 1878.0, + 483.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1839.0, + 888.0, + 1839.0, + 888.0, + 1878.0, + 726.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1839.0, + 1230.0, + 1839.0, + 1230.0, + 1878.0, + 1219.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1886.0, + 833.0, + 1886.0, + 833.0, + 1925.0, + 295.0, + 1925.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 1107, + 1404, + 1107, + 1404, + 1201, + 299, + 1201 + ], + "score": 0.965 + }, + { + "category_id": 8, + "poly": [ + 642, + 1690, + 1057, + 1690, + 1057, + 1833, + 642, + 1833 + ], + "score": 0.958 + }, + { + "category_id": 1, + "poly": [ + 292, + 227, + 1402, + 227, + 1402, + 294, + 292, + 294 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 299, + 1486, + 1403, + 1486, + 1403, + 1550, + 299, + 1550 + ], + "score": 0.955 + }, + { + "category_id": 8, + "poly": [ + 661, + 1032, + 1037, + 1032, + 1037, + 1090, + 661, + 1090 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 290, + 1849, + 1400, + 1849, + 1400, + 1913, + 290, + 1913 + ], + "score": 0.946 + }, + { + "category_id": 8, + "poly": [ + 469, + 309, + 1223, + 309, + 1223, + 949, + 469, + 949 + ], + "score": 0.937 + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1189, + 1638, + 1189, + 1674, + 298, + 1674 + ], + "score": 0.934 + }, + { + "category_id": 0, + "poly": [ + 298, + 1584, + 598, + 1584, + 598, + 1617, + 298, + 1617 + ], + "score": 0.927 + }, + { + "category_id": 8, + "poly": [ + 495, + 1222, + 1228, + 1222, + 1228, + 1310, + 495, + 1310 + ], + "score": 0.922 + }, + { + "category_id": 1, + "poly": [ + 301, + 980, + 1401, + 980, + 1401, + 1018, + 301, + 1018 + ], + "score": 0.92 + }, + { + "category_id": 8, + "poly": [ + 466, + 1318, + 1144, + 1318, + 1144, + 1453, + 466, + 1453 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 298, + 74, + 817, + 74, + 817, + 106, + 298, + 106 + ], + "score": 0.916 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1799, + 1399, + 1799, + 1399, + 1829, + 1352, + 1829 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1694, + 1400, + 1694, + 1400, + 1723, + 1365, + 1723 + ], + "score": 0.883 + }, + { + "category_id": 9, + "poly": [ + 1352, + 1937, + 1400, + 1937, + 1400, + 1968, + 1352, + 1968 + ], + "score": 0.881 + }, + { + "category_id": 9, + "poly": [ + 1365, + 887, + 1401, + 887, + 1401, + 918, + 1365, + 918 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1347, + 1401, + 1347, + 1401, + 1378, + 1365, + 1378 + ], + "score": 0.878 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2113, + 835, + 2113 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1982, + 1401, + 1982, + 1401, + 2013, + 1351, + 2013 + ], + "score": 0.875 + }, + { + "category_id": 9, + "poly": [ + 1365, + 1250, + 1401, + 1250, + 1401, + 1281, + 1365, + 1281 + ], + "score": 0.867 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1037, + 1400, + 1037, + 1400, + 1066, + 1366, + 1066 + ], + "score": 0.865 + }, + { + "category_id": 8, + "poly": [ + 628, + 1930, + 1066, + 1930, + 1066, + 2042, + 628, + 2042 + ], + "score": 0.819 + }, + { + "category_id": 8, + "poly": [ + 641, + 1931, + 879, + 1931, + 879, + 1972, + 641, + 1972 + ], + "score": 0.462 + }, + { + "category_id": 8, + "poly": [ + 631, + 1979, + 1066, + 1979, + 1066, + 2041, + 631, + 2041 + ], + "score": 0.191 + }, + { + "category_id": 14, + "poly": [ + 627, + 1927, + 1070, + 1927, + 1070, + 2043, + 627, + 2043 + ], + "score": 0.94, + "latex": "\\begin{array} { r c l } { \\displaystyle \\mathbb { G } _ { \\mathrm { p o i n t s } } } & { \\doteq } & { \\displaystyle \\{ \\mathbf { g } _ { T } ^ { k } \\} _ { k = 1 } ^ { K } , } \\\\ { \\displaystyle \\mathbf { s } _ { T , \\mathrm { p o i n t s } } ^ { * } } & { \\stackrel { \\cdot } { = } } & { \\arg \\operatorname* { m a x } _ { T } \\mathcal { N } \\left( \\mathbf { g } _ { T } ^ { k } ; \\boldsymbol { \\mu } _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 470, + 1216, + 1229, + 1216, + 1229, + 1411, + 470, + 1411 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { { \\bf s } _ { 1 : T } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } { \\bf s } _ { T } \\in \\mathbb { G } _ { \\mathrm { i n e - s e g m a x } } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } | { \\bf s } _ { 1 : T - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) } \\\\ & { { \\bf s } _ { 1 : T - 1 } ^ { * } = \\underset { { \\bf s } _ { 1 : T - 1 } \\in \\mathbb { R } ^ { 2 ( T - 1 ) } } { \\arg \\operatorname* { m a x } } q ( { \\bf s } _ { T } ^ { * } | { \\bf s } _ { 1 : t - 1 } ) \\prod _ { t = 1 } ^ { T - 1 } q ( { \\bf s } _ { t } | { \\bf s } _ { 1 : t - 1 } ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 641, + 1687, + 1057, + 1687, + 1057, + 1838, + 641, + 1838 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } { \\mathbb { G } _ { \\mathrm { p o i n t } } ~ \\doteq ~ \\{ \\mathbf { g } _ { T } \\} , } & { } \\\\ { \\mathbf { s } _ { T , \\mathrm { p o i n t } } ^ { * } ~ \\doteq ~ \\mathrm { a r g } \\operatorname* { m a x } \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\boldsymbol { \\Sigma } _ { T } \\right) } & { } \\\\ & { ~ \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { p o i n t } } } \\\\ { ~ } & { = ~ \\mathbf { g } _ { T } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 480, + 318, + 1238, + 318, + 1238, + 952, + 480, + 952 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } { \\mathbf { f } _ { \\perp \\perp } } & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\{ ( \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ) \\cdot \\boldsymbol { F } _ { \\perp \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { S } _ { \\parallel } \\cdot \\mathbf { u } _ { \\mathrm { L } } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\boldsymbol { F } _ { \\perp } ^ { \\perp } \\} } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } \\exp \\lambda _ { \\mathrm { R } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ [ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } ] \\cdot \\frac { \\boldsymbol { F } _ { \\perp } \\lambda _ { \\mathrm { R } } ^ { \\perp } } { \\lambda _ { \\mathrm { R } } ^ { \\perp } \\sin { \\mathrm { R } } } } \\\\ & { = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp \\perp } \\cdot \\boldsymbol { F } _ { \\perp } \\} } \\\\ & = \\frac { \\lambda _ { \\mathrm { R } } \\tau } { \\lambda _ { \\mathrm { R } } \\tau } \\exp \\lambda _ { \\mathrm { R } } \\{ \\mathbf { J } _ { \\perp } \\cdot \\mathbf { J } _ { \\perp } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 1109, + 230, + 1349, + 230, + 1349, + 265, + 1109, + 265 + ], + "score": 0.93, + "latex": "p ( \\mathcal { G } | \\mathbf { s } _ { 1 : T } ) \\gets \\delta _ { S _ { T } } ( \\mathbb { G } )" + }, + { + "category_id": 13, + "poly": [ + 981, + 1638, + 1071, + 1638, + 1071, + 1672, + 981, + 1672 + ], + "score": 0.92, + "latex": "g \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 589, + 982, + 955, + 982, + 955, + 1018, + 589, + 1018 + ], + "score": 0.91, + "latex": "q ( \\mathbf { s } _ { T } | \\mathbf { s } _ { 1 : T - 1 } ) = \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)" + }, + { + "category_id": 14, + "poly": [ + 661, + 1030, + 1038, + 1030, + 1038, + 1091, + 661, + 1091 + ], + "score": 0.89, + "latex": "\\mathbf { s } _ { T } ^ { * } \\ = \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right)" + }, + { + "category_id": 13, + "poly": [ + 364, + 1110, + 389, + 1110, + 389, + 1137, + 364, + 1137 + ], + "score": 0.78, + "latex": "\\mathbb { G }" + }, + { + "category_id": 13, + "poly": [ + 1019, + 1430, + 1086, + 1430, + 1086, + 1451, + 1019, + 1451 + ], + "score": 0.65, + "latex": "\\mathbf { s } _ { 1 : T - 1 }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1585.0, + 600.0, + 1585.0, + 600.0, + 1618.0, + 296.0, + 1618.0 + ], + "score": 1.0, + "text": "" + }, + { + "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": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1107.0, + 363.0, + 1107.0, + 363.0, + 1144.0, + 294.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 1107.0, + 1408.0, + 1107.0, + 1408.0, + 1144.0, + 390.0, + 1144.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1138.0, + 1404.0, + 1138.0, + 1404.0, + 1175.0, + 293.0, + 1175.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1169.0, + 1031.0, + 1169.0, + 1031.0, + 1202.0, + 294.0, + 1202.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 228.0, + 1108.0, + 228.0, + 1108.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1350.0, + 228.0, + 1405.0, + 228.0, + 1405.0, + 266.0, + 1350.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1137.0, + 261.0, + 1137.0, + 297.0, + 294.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1486.0, + 1404.0, + 1486.0, + 1404.0, + 1522.0, + 295.0, + 1522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1515.0, + 1218.0, + 1515.0, + 1218.0, + 1554.0, + 294.0, + 1554.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1845.0, + 1405.0, + 1845.0, + 1405.0, + 1889.0, + 293.0, + 1889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1880.0, + 1154.0, + 1880.0, + 1154.0, + 1916.0, + 295.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1632.0, + 980.0, + 1632.0, + 980.0, + 1680.0, + 291.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 1632.0, + 1193.0, + 1632.0, + 1193.0, + 1680.0, + 1072.0, + 1680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 979.0, + 588.0, + 979.0, + 588.0, + 1021.0, + 295.0, + 1021.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 956.0, + 979.0, + 1406.0, + 979.0, + 1406.0, + 1021.0, + 956.0, + 1021.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1906, + 1404, + 1906, + 1404, + 2036, + 297, + 2036 + ], + "score": 0.978 + }, + { + "category_id": 8, + "poly": [ + 544, + 764, + 1153, + 764, + 1153, + 915, + 544, + 915 + ], + "score": 0.971 + }, + { + "category_id": 8, + "poly": [ + 388, + 1222, + 1315, + 1222, + 1315, + 1571, + 388, + 1571 + ], + "score": 0.97 + }, + { + "category_id": 8, + "poly": [ + 406, + 1624, + 1291, + 1624, + 1291, + 1829, + 406, + 1829 + ], + "score": 0.969 + }, + { + "category_id": 1, + "poly": [ + 298, + 929, + 1404, + 929, + 1404, + 993, + 298, + 993 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 298, + 690, + 1402, + 690, + 1402, + 754, + 298, + 754 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 296, + 1579, + 471, + 1579, + 471, + 1611, + 296, + 1611 + ], + "score": 0.929 + }, + { + "category_id": 8, + "poly": [ + 674, + 1005, + 950, + 1005, + 950, + 1060, + 674, + 1060 + ], + "score": 0.928 + }, + { + "category_id": 1, + "poly": [ + 297, + 1177, + 541, + 1177, + 541, + 1210, + 297, + 1210 + ], + "score": 0.928 + }, + { + "category_id": 8, + "poly": [ + 555, + 536, + 1289, + 536, + 1289, + 618, + 555, + 618 + ], + "score": 0.926 + }, + { + "category_id": 1, + "poly": [ + 296, + 420, + 994, + 420, + 994, + 454, + 296, + 454 + ], + "score": 0.914 + }, + { + "category_id": 1, + "poly": [ + 296, + 280, + 1388, + 280, + 1388, + 317, + 296, + 317 + ], + "score": 0.913 + }, + { + "category_id": 2, + "poly": [ + 298, + 73, + 817, + 73, + 817, + 106, + 298, + 106 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 297, + 644, + 376, + 644, + 376, + 674, + 297, + 674 + ], + "score": 0.901 + }, + { + "category_id": 9, + "poly": [ + 1351, + 836, + 1400, + 836, + 1400, + 868, + 1351, + 868 + ], + "score": 0.896 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1512, + 1401, + 1512, + 1401, + 1544, + 1351, + 1544 + ], + "score": 0.887 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1008, + 1400, + 1008, + 1400, + 1039, + 1351, + 1039 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 299, + 1853, + 844, + 1853, + 844, + 1886, + 299, + 1886 + ], + "score": 0.885 + }, + { + "category_id": 9, + "poly": [ + 1351, + 468, + 1401, + 468, + 1401, + 499, + 1351, + 499 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1131, + 1401, + 1131, + 1401, + 1163, + 1351, + 1163 + ], + "score": 0.884 + }, + { + "category_id": 9, + "poly": [ + 1351, + 1772, + 1401, + 1772, + 1401, + 1803, + 1351, + 1803 + ], + "score": 0.878 + }, + { + "category_id": 9, + "poly": [ + 1351, + 331, + 1401, + 331, + 1401, + 362, + 1351, + 362 + ], + "score": 0.877 + }, + { + "category_id": 9, + "poly": [ + 1351, + 561, + 1401, + 561, + 1401, + 592, + 1351, + 592 + ], + "score": 0.872 + }, + { + "category_id": 8, + "poly": [ + 676, + 1066, + 1023, + 1066, + 1023, + 1168, + 676, + 1168 + ], + "score": 0.871 + }, + { + "category_id": 9, + "poly": [ + 1351, + 377, + 1401, + 377, + 1401, + 407, + 1351, + 407 + ], + "score": 0.87 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 864, + 2088, + 864, + 2113, + 835, + 2113 + ], + "score": 0.865 + }, + { + "category_id": 8, + "poly": [ + 666, + 328, + 1076, + 328, + 1076, + 364, + 666, + 364 + ], + "score": 0.858 + }, + { + "category_id": 0, + "poly": [ + 299, + 229, + 707, + 229, + 707, + 262, + 299, + 262 + ], + "score": 0.836 + }, + { + "category_id": 8, + "poly": [ + 624, + 372, + 1045, + 372, + 1045, + 413, + 624, + 413 + ], + "score": 0.808 + }, + { + "category_id": 8, + "poly": [ + 407, + 465, + 924, + 465, + 924, + 531, + 407, + 531 + ], + "score": 0.56 + }, + { + "category_id": 8, + "poly": [ + 406, + 464, + 1296, + 464, + 1296, + 619, + 406, + 619 + ], + "score": 0.15 + }, + { + "category_id": 8, + "poly": [ + 677, + 1066, + 941, + 1066, + 941, + 1123, + 677, + 1123 + ], + "score": 0.143 + }, + { + "category_id": 8, + "poly": [ + 618, + 328, + 1072, + 328, + 1072, + 412, + 618, + 412 + ], + "score": 0.092 + }, + { + "category_id": 14, + "poly": [ + 386, + 1220, + 1314, + 1220, + 1314, + 1578, + 386, + 1578 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } = u : 0 = \\frac { \\mathrm { d } \\mathcal { L } ( u ) } { \\mathrm { d } u } = \\frac { \\mathrm { d } \\left( \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) \\right) } { \\mathrm { d } u } } \\\\ & { \\phantom { \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot \\frac { \\mathrm { d } \\left( \\mathbf { a } + u \\cdot \\left( \\mathbf { b } - \\mathbf { a } \\right) - \\mu _ { T } \\right) ^ { \\top } } { \\mathrm { d } u } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } ) } \\\\ & { \\phantom { \\quad \\quad \\quad \\quad } = 2 \\cdot ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) - \\mu _ { T } \\right) , } \\\\ & { \\quad \\quad \\quad u _ { \\mathbb { R } } ^ { * } = \\frac { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mu _ { T } - \\mathbf { a } \\right) } { \\left( \\mathbf { b } - \\mathbf { a } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } \\left( \\mathbf { b } - \\mathbf { a } \\right) } , } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 405, + 1620, + 1293, + 1620, + 1293, + 1832, + 405, + 1832 + ], + "score": 0.95, + "latex": "\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ = \\ g _ { \\mathrm { l i n e } } ( u ^ { * } ) } \\\\ & { \\ = \\ \\mathbf { a } + u ^ { * } \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\big ( 1 , \\ \\operatorname* { m a x } \\big ( 0 , \\ u _ { \\mathtt { R } } ^ { * } \\big ) \\big ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) } \\\\ & { \\ = \\ \\mathbf { a } + \\operatorname* { m i n } \\bigg ( 1 , \\ \\operatorname* { m a x } \\bigg ( 0 , \\ \\frac { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { \\big ( \\mathbf { b } - \\mathbf { a } \\big ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\bigg ) \\bigg ) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 674, + 999, + 1025, + 999, + 1025, + 1170, + 674, + 1170 + ], + "score": 0.94, + "latex": "\\begin{array} { r l } & { u _ { \\mathbb { R } } ^ { * } \\doteq \\underset { u \\in \\mathbb { R } } { \\arg \\operatorname* { m a x } } \\mathcal { L } _ { u } ( u ) , } \\\\ & { u ^ { * } = \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\mathcal { L } _ { u } ( u ) } \\\\ & { \\quad = \\underset { \\quad \\operatorname* { m i n } \\big ( 1 , \\ : \\operatorname* { m a x } \\big ( 0 , \\ : u _ { \\mathbb { R } } ^ { * } \\big ) \\big ) . } { \\operatorname* { m i n } } } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 541, + 760, + 1156, + 760, + 1156, + 919, + 541, + 919 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { u ^ { * } \\ \\doteq \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m a x } } \\ \\mathcal { N } \\left( g _ { \\mathrm { l i n e } } ( u ) ; \\boldsymbol { \\mu } _ { T } , \\Sigma _ { T } \\right) ) } \\\\ & { \\quad = \\ \\underset { u \\in [ 0 , 1 ] } { \\arg \\operatorname* { m i n } } \\ \\underbrace { \\left( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } \\right) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( g _ { \\mathrm { l i n e } } ( u ) - \\boldsymbol { \\mu } _ { T } ) } _ { \\mathcal { L } _ { u } ( u ) } . } \\end{array}" + }, + { + "category_id": 14, + "poly": [ + 405, + 461, + 1293, + 461, + 1293, + 621, + 405, + 621 + ], + "score": 0.93, + "latex": "\\begin{array} { r l } & { \\mathbf { s } _ { T , \\mathrm { l i n e - s e g m e n t } } ^ { * } \\ \\doteq \\ \\underset { \\mathbf { s } _ { T } \\in \\mathbb { G } _ { \\mathrm { l i n e - s e m e n t } } ^ { \\mathrm { a v } } } { \\arg \\operatorname* { m a x } } \\ N \\left( \\mathbf { s } _ { T } ; \\mu _ { T } , \\Sigma _ { T } \\right) } \\\\ & { \\quad \\quad \\quad \\quad \\quad \\quad \\quad = \\ \\mathbf { a } + \\operatorname* { m i n } \\left( 1 , \\ \\operatorname* { m a x } \\left( 0 , \\ \\frac { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mu _ { T } - \\mathbf { a } ) } { ( \\mathbf { b } - \\mathbf { a } ) ^ { \\top } \\Sigma _ { T } ^ { - 1 } ( \\mathbf { b } - \\mathbf { a } ) } \\right) \\right) \\cdot ( \\mathbf { b } - \\mathbf { a } ) . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 939, + 691, + 1022, + 691, + 1022, + 725, + 939, + 725 + ], + "score": 0.92, + "latex": "g _ { \\mathrm { l i n e } } ( u )" + }, + { + "category_id": 13, + "poly": [ + 1324, + 931, + 1396, + 931, + 1396, + 964, + 1324, + 964 + ], + "score": 0.92, + "latex": "\\mathcal { L } _ { u } ( u )" + }, + { + "category_id": 13, + "poly": [ + 483, + 723, + 603, + 723, + 603, + 752, + 483, + 752 + ], + "score": 0.92, + "latex": "0 \\leq u \\leq 1" + }, + { + "category_id": 14, + "poly": [ + 622, + 325, + 1076, + 325, + 1076, + 415, + 622, + 415 + ], + "score": 0.92, + "latex": "\\begin{array} { r l } { g _ { \\mathrm { l i n e } } ( u ) } & { \\doteq \\mathbf { a } + u \\cdot ( \\mathbf { b } - \\mathbf { a } ) , ~ u \\in \\mathbb { R } , } \\\\ { \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } ^ { \\mathbf { a } \\to \\mathbf { b } } } & { \\doteq \\{ g _ { \\mathrm { l i n e } } ( u ) : u \\in [ 0 , 1 ] \\} . } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 412, + 962, + 531, + 962, + 531, + 991, + 412, + 991 + ], + "score": 0.91, + "latex": "0 \\leq u \\leq 1" + }, + { + "category_id": 13, + "poly": [ + 1155, + 691, + 1314, + 691, + 1314, + 725, + 1155, + 725 + ], + "score": 0.91, + "latex": "\\mathcal { N } ( \\cdot ; \\mu _ { T } , \\Sigma _ { T } )" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1938, + 1299, + 1938, + 1299, + 1972, + 1262, + 1972 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { u } ^ { i }" + }, + { + "category_id": 13, + "poly": [ + 368, + 931, + 404, + 931, + 404, + 961, + 368, + 961 + ], + "score": 0.91, + "latex": "\\mathcal { L } _ { u }" + }, + { + "category_id": 13, + "poly": [ + 1097, + 281, + 1188, + 281, + 1188, + 312, + 1097, + 312 + ], + "score": 0.91, + "latex": "\\mathbf { a } \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 1287, + 286, + 1379, + 286, + 1379, + 311, + 1287, + 311 + ], + "score": 0.91, + "latex": "\\mathbf { b } \\in \\mathbb { R } ^ { D }" + }, + { + "category_id": 13, + "poly": [ + 877, + 1939, + 1058, + 1939, + 1058, + 1972, + 877, + 1972 + ], + "score": 0.9, + "latex": "\\left( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } , . . . , \\mathbf { p } _ { N } \\right)" + }, + { + "category_id": 13, + "poly": [ + 731, + 1971, + 935, + 1971, + 935, + 2002, + 731, + 2002 + ], + "score": 0.9, + "latex": "i ^ { * } = \\arg \\operatorname* { m a x } _ { i } \\mathcal { L } _ { u } ^ { i }" + }, + { + "category_id": 13, + "poly": [ + 498, + 1180, + 531, + 1180, + 531, + 1212, + 498, + 1212 + ], + "score": 0.9, + "latex": "u _ { \\mathbb { R } } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 400, + 2005, + 433, + 2005, + 433, + 2037, + 400, + 2037 + ], + "score": 0.88, + "latex": "s _ { T } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 735, + 932, + 766, + 932, + 766, + 958, + 735, + 958 + ], + "score": 0.87, + "latex": "u ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1341, + 1970, + 1372, + 1970, + 1372, + 1996, + 1341, + 1996 + ], + "score": 0.86, + "latex": "u ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 1171, + 1970, + 1196, + 1970, + 1196, + 1996, + 1171, + 1996 + ], + "score": 0.82, + "latex": "i ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1966, + 422, + 1966, + 422, + 1999, + 298, + 1999 + ], + "score": 0.75, + "latex": "\\mathbb { G } _ { \\mathsf { l i n e - s e o m e n t } } ^ { \\mathbf { p } _ { i } \\to \\mathbf { p } _ { i + 1 } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 817.0, + 72.0, + 817.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 642.0, + 378.0, + 642.0, + 378.0, + 679.0, + 295.0, + 679.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1855.0, + 847.0, + 1855.0, + 847.0, + 1887.0, + 296.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 869.0, + 2085.0, + 869.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 709.0, + 230.0, + 709.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1905.0, + 1405.0, + 1905.0, + 1405.0, + 1941.0, + 292.0, + 1941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1935.0, + 297.0, + 1935.0, + 297.0, + 2037.0, + 281.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 434.0, + 1935.0, + 730.0, + 1935.0, + 730.0, + 2037.0, + 434.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1059.0, + 1935.0, + 1170.0, + 1935.0, + 1170.0, + 2037.0, + 1059.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1197.0, + 1935.0, + 1261.0, + 1935.0, + 1261.0, + 2037.0, + 1197.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 1935.0, + 1340.0, + 1935.0, + 1340.0, + 2037.0, + 1300.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1935.0, + 1418.0, + 1935.0, + 1418.0, + 2037.0, + 1373.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 923.0, + 367.0, + 923.0, + 367.0, + 970.0, + 292.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 405.0, + 923.0, + 734.0, + 923.0, + 734.0, + 970.0, + 405.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 923.0, + 1323.0, + 923.0, + 1323.0, + 970.0, + 767.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 923.0, + 1409.0, + 923.0, + 1409.0, + 970.0, + 1397.0, + 970.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 960.0, + 411.0, + 960.0, + 411.0, + 996.0, + 294.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 960.0, + 544.0, + 960.0, + 544.0, + 996.0, + 532.0, + 996.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 686.0, + 938.0, + 686.0, + 938.0, + 730.0, + 292.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1023.0, + 686.0, + 1154.0, + 686.0, + 1154.0, + 730.0, + 1023.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1315.0, + 686.0, + 1407.0, + 686.0, + 1407.0, + 730.0, + 1315.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 482.0, + 718.0, + 482.0, + 754.0, + 294.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 718.0, + 614.0, + 718.0, + 614.0, + 754.0, + 604.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1575.0, + 475.0, + 1575.0, + 475.0, + 1615.0, + 295.0, + 1615.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1169.0, + 497.0, + 1169.0, + 497.0, + 1218.0, + 294.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 532.0, + 1169.0, + 546.0, + 1169.0, + 546.0, + 1218.0, + 532.0, + 1218.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 415.0, + 996.0, + 415.0, + 996.0, + 460.0, + 293.0, + 460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 277.0, + 1096.0, + 277.0, + 1096.0, + 320.0, + 293.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1189.0, + 277.0, + 1286.0, + 277.0, + 1286.0, + 320.0, + 1189.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1380.0, + 277.0, + 1391.0, + 277.0, + 1391.0, + 320.0, + 1380.0, + 320.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1133, + 1405, + 1133, + 1405, + 1620, + 297, + 1620 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 700, + 1406, + 700, + 1406, + 1038, + 297, + 1038 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 284, + 1403, + 284, + 1403, + 471, + 298, + 471 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1637, + 1404, + 1637, + 1404, + 1760, + 298, + 1760 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 298, + 483, + 1404, + 483, + 1404, + 606, + 298, + 606 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1874, + 818, + 1874, + 818, + 1908, + 299, + 1908 + ], + "score": 0.904 + }, + { + "category_id": 0, + "poly": [ + 300, + 643, + 643, + 643, + 643, + 674, + 300, + 674 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 298, + 1805, + 943, + 1805, + 943, + 1841, + 298, + 1841 + ], + "score": 0.887 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 104, + 300, + 104 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 300, + 230, + 638, + 230, + 638, + 261, + 300, + 261 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 302, + 1075, + 705, + 1075, + 705, + 1107, + 302, + 1107 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 299, + 2002, + 933, + 2002, + 933, + 2035, + 299, + 2035 + ], + "score": 0.858 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.838 + }, + { + "category_id": 0, + "poly": [ + 299, + 1944, + 847, + 1944, + 847, + 1976, + 299, + 1976 + ], + "score": 0.8 + }, + { + "category_id": 13, + "poly": [ + 515, + 1875, + 593, + 1875, + 593, + 1909, + 515, + 1909 + ], + "score": 0.93, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 954, + 1253, + 1187, + 1253, + 1187, + 1290, + 954, + 1290 + ], + "score": 0.92, + "latex": "S _ { T } \\in \\mathbb { G } \\overset { \\cdot } { = } \\{ g _ { T } ^ { k } \\} _ { k = 1 } ^ { K }" + }, + { + "category_id": 13, + "poly": [ + 1227, + 514, + 1403, + 514, + 1403, + 548, + 1227, + 548 + ], + "score": 0.92, + "latex": "\\mathcal { N } ( \\mathbf { s } _ { T } ^ { * } ; \\mu _ { T } , \\boldsymbol { \\Sigma _ { T } } )" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1499, + 1335, + 1499, + 1335, + 1532, + 1191, + 1532 + ], + "score": 0.91, + "latex": "\\left( \\mathbf { v } _ { t - 1 } , \\mathbf { v } _ { t + 1 } \\right)" + }, + { + "category_id": 13, + "poly": [ + 807, + 374, + 1094, + 374, + 1094, + 409, + 807, + 409 + ], + "score": 0.91, + "latex": "( { \\bf p } _ { 0 } , { \\bf p } _ { 1 } , . . . , { \\bf p } _ { N } ) \\in \\bar { \\mathbb { R } } ^ { N \\times 2 }" + }, + { + "category_id": 13, + "poly": [ + 544, + 1378, + 638, + 1378, + 638, + 1406, + 544, + 1406 + ], + "score": 0.9, + "latex": "K = 1 0" + }, + { + "category_id": 13, + "poly": [ + 495, + 576, + 529, + 576, + 529, + 609, + 495, + 609 + ], + "score": 0.89, + "latex": "\\mathbf { s } _ { T } ^ { \\ast }" + }, + { + "category_id": 13, + "poly": [ + 394, + 436, + 811, + 436, + 811, + 471, + 394, + 471 + ], + "score": 0.88, + "latex": "\\big ( \\big ( \\mathbf { p } _ { 0 } , \\mathbf { p } _ { 1 } \\big ) , . . . , \\big ( \\mathbf { p } _ { N - 1 } , \\mathbf { p } _ { N } \\big ) , \\big ( \\mathbf { p } _ { N } , \\mathbf { p } _ { 0 } \\big ) \\big )" + }, + { + "category_id": 13, + "poly": [ + 1014, + 515, + 1047, + 515, + 1047, + 548, + 1014, + 548 + ], + "score": 0.88, + "latex": "\\mathbf { s } _ { T } ^ { * }" + }, + { + "category_id": 13, + "poly": [ + 418, + 517, + 456, + 517, + 456, + 546, + 418, + 546 + ], + "score": 0.87, + "latex": "\\mu _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1033, + 549, + 1071, + 549, + 1071, + 577, + 1033, + 577 + ], + "score": 0.87, + "latex": "\\mu _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1085, + 489, + 1122, + 489, + 1122, + 515, + 1085, + 515 + ], + "score": 0.86, + "latex": "\\mu _ { T }" + }, + { + "category_id": 13, + "poly": [ + 1061, + 1472, + 1092, + 1472, + 1092, + 1499, + 1061, + 1499 + ], + "score": 0.86, + "latex": "\\mathbf { v } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 404, + 549, + 441, + 549, + 441, + 577, + 404, + 577 + ], + "score": 0.85, + "latex": "\\mu _ { T }" + }, + { + "category_id": 13, + "poly": [ + 446, + 1503, + 477, + 1503, + 477, + 1530, + 446, + 1530 + ], + "score": 0.84, + "latex": "\\mathbf { v } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 542, + 1530, + 797, + 1530, + 797, + 1564, + 542, + 1564 + ], + "score": 0.83, + "latex": "\\mathbb { G } _ { \\mathrm { p o l y g o n } } \\supset \\mathbb { G } _ { \\mathrm { l i n e - s e g m e n t } } ." + }, + { + "category_id": 15, + "poly": [ + 293.0, + 639.0, + 647.0, + 639.0, + 647.0, + 680.0, + 293.0, + 680.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1801.0, + 945.0, + 1801.0, + 945.0, + 1846.0, + 294.0, + 1846.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": [ + 297.0, + 230.0, + 641.0, + 230.0, + 641.0, + 263.0, + 297.0, + 263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1072.0, + 710.0, + 1072.0, + 710.0, + 1112.0, + 293.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1944.0, + 847.0, + 1944.0, + 847.0, + 1980.0, + 296.0, + 1980.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1133.0, + 1406.0, + 1133.0, + 1406.0, + 1167.0, + 296.0, + 1167.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1164.0, + 1407.0, + 1164.0, + 1407.0, + 1200.0, + 292.0, + 1200.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1192.0, + 1406.0, + 1192.0, + 1406.0, + 1229.0, + 294.0, + 1229.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1222.0, + 1408.0, + 1222.0, + 1408.0, + 1259.0, + 294.0, + 1259.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 283.0, + 1238.0, + 953.0, + 1238.0, + 953.0, + 1320.0, + 283.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 1238.0, + 1417.0, + 1238.0, + 1417.0, + 1320.0, + 1188.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1317.0, + 1406.0, + 1317.0, + 1406.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1347.0, + 1407.0, + 1347.0, + 1407.0, + 1381.0, + 295.0, + 1381.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1378.0, + 543.0, + 1378.0, + 543.0, + 1412.0, + 295.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 1378.0, + 1407.0, + 1378.0, + 1407.0, + 1412.0, + 639.0, + 1412.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1406.0, + 1407.0, + 1406.0, + 1407.0, + 1444.0, + 292.0, + 1444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1435.0, + 1405.0, + 1435.0, + 1405.0, + 1474.0, + 294.0, + 1474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1467.0, + 1060.0, + 1467.0, + 1060.0, + 1502.0, + 292.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1467.0, + 1405.0, + 1467.0, + 1405.0, + 1502.0, + 1093.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1498.0, + 445.0, + 1498.0, + 445.0, + 1535.0, + 292.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 478.0, + 1498.0, + 1190.0, + 1498.0, + 1190.0, + 1535.0, + 478.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1336.0, + 1498.0, + 1406.0, + 1498.0, + 1406.0, + 1535.0, + 1336.0, + 1535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1526.0, + 541.0, + 1526.0, + 541.0, + 1571.0, + 291.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 1526.0, + 1407.0, + 1526.0, + 1407.0, + 1571.0, + 798.0, + 1571.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1556.0, + 1406.0, + 1556.0, + 1406.0, + 1595.0, + 292.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1592.0, + 500.0, + 1592.0, + 500.0, + 1621.0, + 293.0, + 1621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 699.0, + 1409.0, + 699.0, + 1409.0, + 738.0, + 292.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 730.0, + 1406.0, + 730.0, + 1406.0, + 771.0, + 292.0, + 771.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 761.0, + 1406.0, + 761.0, + 1406.0, + 797.0, + 292.0, + 797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 793.0, + 1407.0, + 793.0, + 1407.0, + 828.0, + 295.0, + 828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 823.0, + 1407.0, + 823.0, + 1407.0, + 858.0, + 291.0, + 858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 854.0, + 1404.0, + 854.0, + 1404.0, + 889.0, + 294.0, + 889.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 886.0, + 1403.0, + 886.0, + 1403.0, + 918.0, + 295.0, + 918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 915.0, + 1404.0, + 915.0, + 1404.0, + 950.0, + 295.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 946.0, + 1404.0, + 946.0, + 1404.0, + 981.0, + 294.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 975.0, + 1406.0, + 975.0, + 1406.0, + 1013.0, + 294.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1007.0, + 1121.0, + 1007.0, + 1121.0, + 1042.0, + 296.0, + 1042.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 284.0, + 1405.0, + 284.0, + 1405.0, + 320.0, + 294.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 313.0, + 1407.0, + 313.0, + 1407.0, + 352.0, + 292.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 344.0, + 1405.0, + 344.0, + 1405.0, + 380.0, + 294.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 370.0, + 806.0, + 370.0, + 806.0, + 415.0, + 288.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 370.0, + 1410.0, + 370.0, + 1410.0, + 415.0, + 1095.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 403.0, + 1405.0, + 403.0, + 1405.0, + 439.0, + 294.0, + 439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 434.0, + 393.0, + 434.0, + 393.0, + 474.0, + 293.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 812.0, + 434.0, + 1193.0, + 434.0, + 1193.0, + 474.0, + 812.0, + 474.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1637.0, + 1406.0, + 1637.0, + 1406.0, + 1669.0, + 294.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1667.0, + 1408.0, + 1667.0, + 1408.0, + 1700.0, + 294.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1698.0, + 1406.0, + 1698.0, + 1406.0, + 1731.0, + 294.0, + 1731.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1729.0, + 1273.0, + 1729.0, + 1273.0, + 1761.0, + 294.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 482.0, + 1084.0, + 482.0, + 1084.0, + 518.0, + 294.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1123.0, + 482.0, + 1408.0, + 482.0, + 1408.0, + 518.0, + 1123.0, + 518.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 513.0, + 417.0, + 513.0, + 417.0, + 549.0, + 293.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 513.0, + 1013.0, + 513.0, + 1013.0, + 549.0, + 457.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 513.0, + 1226.0, + 513.0, + 1226.0, + 549.0, + 1048.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 546.0, + 403.0, + 546.0, + 403.0, + 578.0, + 293.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 442.0, + 546.0, + 1032.0, + 546.0, + 1032.0, + 578.0, + 442.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 546.0, + 1404.0, + 546.0, + 1404.0, + 578.0, + 1072.0, + 578.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 575.0, + 494.0, + 575.0, + 494.0, + 607.0, + 294.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 575.0, + 1180.0, + 575.0, + 1180.0, + 607.0, + 530.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1873.0, + 514.0, + 1873.0, + 514.0, + 1910.0, + 296.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 594.0, + 1873.0, + 823.0, + 1873.0, + 823.0, + 1910.0, + 594.0, + 1910.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2000.0, + 935.0, + 2000.0, + 935.0, + 2039.0, + 296.0, + 2039.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1445, + 1404, + 1445, + 1404, + 1690, + 298, + 1690 + ], + "score": 0.983 + }, + { + "category_id": 5, + "poly": [ + 309, + 768, + 1390, + 768, + 1390, + 1096, + 309, + 1096 + ], + "score": 0.98, + "html": "
ComponentInput [dimensionality]Layer or OperationOutput [dimensionality]Details
Static featurizationofcontext:={x,s:A}.
MapFeatx[H,W,2]2D Convolution1x[H,W,32]3 ×3 stride 1,ReLu
MapFeat1-1x[H,W,32]2D Convolutionx[H,W,32]3 × 3 stride 1,ReLu,i∈[2,...,8]
MapFeat8x[H,W,32]2D Convolutionr[H,W,8]3 × 3 stride 1,ReLu
PastRNNS-T:0[T+1,D]RNN[32]GRU across time dimension
Dynamic generation via loop:fort∈{0,...,T-1}.
MapFeats[D]Interpolatet=F(st)[8]Differentiable interpolation
JointFeatt,S0,²n,s0²n田a入pt [D+50+32+1]Concatenate ()
FutureRNNpt[D+50+32+1]RNNpt[50]GRU
FutureMLP1pt[50]Affine (FC)2pt[200]Tanh activation
FutureMLP2pt[200]Affine (FC)mt [D],εt [D,D]Identity activation
MatrixExp[D,D]Tt[D,D]Differentiable Matrix Exponential Rhinehart et al. (2018)
VerletStepSt,St-1,mt,Ot,Zt2st-St-1+mt+OtZtSt+1[D]
" + }, + { + "category_id": 1, + "poly": [ + 299, + 1880, + 1403, + 1880, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1215, + 1407, + 1215, + 1407, + 1338, + 298, + 1338 + ], + "score": 0.975 + }, + { + "category_id": 3, + "poly": [ + 393, + 223, + 1320, + 223, + 1320, + 526, + 393, + 526 + ], + "score": 0.971 + }, + { + "category_id": 4, + "poly": [ + 298, + 549, + 1405, + 549, + 1405, + 642, + 298, + 642 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 299, + 1744, + 636, + 1744, + 636, + 1780, + 299, + 1780 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.89 + }, + { + "category_id": 0, + "poly": [ + 299, + 1159, + 961, + 1159, + 961, + 1190, + 299, + 1190 + ], + "score": 0.889 + }, + { + "category_id": 0, + "poly": [ + 299, + 1385, + 480, + 1385, + 480, + 1417, + 299, + 1417 + ], + "score": 0.88 + }, + { + "category_id": 6, + "poly": [ + 300, + 682, + 1398, + 682, + 1398, + 743, + 300, + 743 + ], + "score": 0.879 + }, + { + "category_id": 0, + "poly": [ + 298, + 1819, + 1045, + 1819, + 1045, + 1851, + 298, + 1851 + ], + "score": 0.873 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 13, + "poly": [ + 896, + 1247, + 1061, + 1247, + 1061, + 1280, + 896, + 1280 + ], + "score": 0.94, + "latex": "q ( \\mathbf { s } ^ { * } | \\boldsymbol { \\phi } ) \\approx 1 0 4" + }, + { + "category_id": 13, + "poly": [ + 474, + 1446, + 553, + 1446, + 553, + 1480, + 474, + 1480 + ], + "score": 0.92, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 831, + 682, + 1034, + 682, + 1034, + 716, + 831, + 716 + ], + "score": 0.92, + "latex": "\\mathbf { s } _ { 1 : T } = f ( \\mathbf { z } _ { 1 : T } , \\phi )" + }, + { + "category_id": 13, + "poly": [ + 1204, + 582, + 1259, + 582, + 1259, + 613, + 1204, + 613 + ], + "score": 0.92, + "latex": "\\mathbf { S } _ { 1 : T }" + }, + { + "category_id": 13, + "poly": [ + 950, + 549, + 1215, + 549, + 1215, + 583, + 950, + 583 + ], + "score": 0.91, + "latex": "q _ { \\theta } ( \\mathbf { S } | \\phi = \\{ \\chi , \\mathbf { s } _ { - \\tau : 0 } , \\lambda \\} )" + }, + { + "category_id": 13, + "poly": [ + 869, + 1215, + 1003, + 1215, + 1003, + 1245, + 869, + 1245 + ], + "score": 0.91, + "latex": "N \\approx 8 \\cdot 1 0 ^ { 3 }" + }, + { + "category_id": 13, + "poly": [ + 899, + 582, + 957, + 582, + 957, + 612, + 899, + 612 + ], + "score": 0.9, + "latex": "\\mathbf { Z } _ { 1 : T }" + }, + { + "category_id": 13, + "poly": [ + 461, + 585, + 526, + 585, + 526, + 613, + 461, + 613 + ], + "score": 0.89, + "latex": "{ \\bf s } _ { - \\tau : 0 }" + }, + { + "category_id": 13, + "poly": [ + 1170, + 1246, + 1399, + 1246, + 1399, + 1280, + 1170, + 1280 + ], + "score": 0.88, + "latex": "\\bar { \\log { p ( \\mathcal { G } | \\mathbf { s } ^ { * } , \\boldsymbol { \\phi } ) } } = - 4" + }, + { + "category_id": 13, + "poly": [ + 298, + 713, + 409, + 713, + 409, + 741, + 298, + 741 + ], + "score": 0.87, + "latex": "W = 2 0 0" + }, + { + "category_id": 13, + "poly": [ + 594, + 555, + 634, + 555, + 634, + 580, + 594, + 580 + ], + "score": 0.87, + "latex": "m _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 684, + 555, + 714, + 555, + 714, + 580, + 684, + 580 + ], + "score": 0.86, + "latex": "\\sigma _ { \\theta }" + }, + { + "category_id": 13, + "poly": [ + 1163, + 683, + 1251, + 683, + 1251, + 711, + 1163, + 711 + ], + "score": 0.8, + "latex": "T = 4 0" + }, + { + "category_id": 13, + "poly": [ + 1261, + 682, + 1406, + 682, + 1406, + 714, + 1261, + 714 + ], + "score": 0.77, + "latex": "D = 2 , H =" + }, + { + "category_id": 13, + "poly": [ + 560, + 921, + 695, + 921, + 695, + 942, + 560, + 942 + ], + "score": 0.76, + "latex": "t \\in \\{ 0 , \\ldots , T - 1 \\}" + }, + { + "category_id": 13, + "poly": [ + 297, + 586, + 318, + 586, + 318, + 613, + 297, + 613 + ], + "score": 0.71, + "latex": "\\chi" + }, + { + "category_id": 13, + "poly": [ + 665, + 582, + 688, + 582, + 688, + 608, + 665, + 608 + ], + "score": 0.69, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 555, + 1630, + 616, + 1630, + 616, + 1659, + 555, + 1659 + ], + "score": 0.63, + "latex": "1 0 \\mathrm { H z }" + }, + { + "category_id": 13, + "poly": [ + 538, + 806, + 646, + 806, + 646, + 828, + 538, + 828 + ], + "score": 0.41, + "latex": "\\phi = \\{ \\chi , \\mathbf { s } _ { - \\tau : 0 } ^ { 1 : A } \\}" + }, + { + "category_id": 13, + "poly": [ + 791, + 951, + 870, + 951, + 870, + 969, + 791, + 969 + ], + "score": 0.41, + "latex": "\\gamma _ { t } = \\mathbf { { T } } ( \\mathbf { { s } } _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 1120, + 330, + 1149, + 330, + 1149, + 348, + 1120, + 348 + ], + "score": 0.32, + "latex": "\\sigma _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 231.0, + 527.0, + 231.0, + 527.0, + 254.0, + 393.0, + 254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 227.0, + 1230.0, + 227.0, + 1230.0, + 253.0, + 1003.0, + 253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 411.0, + 252.0, + 514.0, + 252.0, + 514.0, + 281.0, + 411.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 244.0, + 1084.0, + 244.0, + 1084.0, + 278.0, + 1048.0, + 278.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1157.0, + 246.0, + 1193.0, + 246.0, + 1193.0, + 276.0, + 1157.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 241.0, + 1318.0, + 241.0, + 1318.0, + 281.0, + 1277.0, + 281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 984.0, + 264.0, + 1024.0, + 264.0, + 1024.0, + 305.0, + 984.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1137.0, + 267.0, + 1145.0, + 267.0, + 1145.0, + 276.0, + 1137.0, + 276.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 283.0, + 899.0, + 283.0, + 899.0, + 299.0, + 878.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1097.0, + 276.0, + 1253.0, + 276.0, + 1253.0, + 322.0, + 1097.0, + 322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 485.0, + 303.0, + 501.0, + 303.0, + 501.0, + 324.0, + 485.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 731.0, + 302.0, + 860.0, + 302.0, + 860.0, + 336.0, + 731.0, + 336.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 999.0, + 302.0, + 1012.0, + 302.0, + 1012.0, + 315.0, + 999.0, + 315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 809.0, + 315.0, + 942.0, + 315.0, + 942.0, + 354.0, + 809.0, + 354.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 959.0, + 317.0, + 1045.0, + 317.0, + 1045.0, + 356.0, + 959.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1070.0, + 320.0, + 1119.0, + 320.0, + 1119.0, + 356.0, + 1070.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 320.0, + 1156.0, + 320.0, + 1156.0, + 356.0, + 1150.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 321.0, + 1279.0, + 321.0, + 1279.0, + 352.0, + 1191.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 335.0, + 441.0, + 335.0, + 441.0, + 366.0, + 394.0, + 366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 368.0, + 615.0, + 368.0, + 615.0, + 377.0, + 602.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 352.0, + 934.0, + 352.0, + 934.0, + 401.0, + 854.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 957.0, + 356.0, + 1047.0, + 356.0, + 1047.0, + 408.0, + 957.0, + 408.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 719.0, + 372.0, + 865.0, + 372.0, + 865.0, + 410.0, + 719.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 936.0, + 382.0, + 944.0, + 382.0, + 944.0, + 389.0, + 936.0, + 389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 993.0, + 408.0, + 1012.0, + 408.0, + 1012.0, + 425.0, + 993.0, + 425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1107.0, + 411.0, + 1115.0, + 411.0, + 1115.0, + 419.0, + 1107.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 797.0, + 423.0, + 838.0, + 423.0, + 838.0, + 463.0, + 797.0, + 463.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 952.0, + 423.0, + 991.0, + 423.0, + 991.0, + 454.0, + 952.0, + 454.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 468.0, + 471.0, + 468.0, + 471.0, + 498.0, + 420.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 600.0, + 462.0, + 651.0, + 462.0, + 651.0, + 492.0, + 600.0, + 492.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 820.0, + 454.0, + 960.0, + 454.0, + 960.0, + 480.0, + 820.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 501.0, + 503.0, + 501.0, + 503.0, + 526.0, + 483.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 499.0, + 619.0, + 499.0, + 619.0, + 528.0, + 541.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 639.0, + 499.0, + 715.0, + 499.0, + 715.0, + 528.0, + 639.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 547.0, + 593.0, + 547.0, + 593.0, + 585.0, + 295.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 547.0, + 683.0, + 547.0, + 683.0, + 585.0, + 635.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 715.0, + 547.0, + 949.0, + 547.0, + 949.0, + 585.0, + 715.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1216.0, + 547.0, + 1405.0, + 547.0, + 1405.0, + 585.0, + 1216.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 580.0, + 296.0, + 580.0, + 296.0, + 616.0, + 292.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 580.0, + 460.0, + 580.0, + 460.0, + 616.0, + 319.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 527.0, + 580.0, + 664.0, + 580.0, + 664.0, + 616.0, + 527.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 689.0, + 580.0, + 898.0, + 580.0, + 898.0, + 616.0, + 689.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 958.0, + 580.0, + 1203.0, + 580.0, + 1203.0, + 616.0, + 958.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1260.0, + 580.0, + 1405.0, + 580.0, + 1405.0, + 616.0, + 1260.0, + 616.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 609.0, + 447.0, + 609.0, + 447.0, + 645.0, + 292.0, + 645.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1741.0, + 640.0, + 1741.0, + 640.0, + 1787.0, + 293.0, + 1787.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": [ + 294.0, + 1155.0, + 964.0, + 1155.0, + 964.0, + 1195.0, + 294.0, + 1195.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1380.0, + 485.0, + 1380.0, + 485.0, + 1423.0, + 294.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 677.0, + 830.0, + 677.0, + 830.0, + 719.0, + 292.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1035.0, + 677.0, + 1162.0, + 677.0, + 1162.0, + 719.0, + 1035.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1252.0, + 677.0, + 1260.0, + 677.0, + 1260.0, + 719.0, + 1252.0, + 719.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 709.0, + 297.0, + 709.0, + 297.0, + 745.0, + 294.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 410.0, + 709.0, + 422.0, + 709.0, + 422.0, + 745.0, + 410.0, + 745.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1816.0, + 1050.0, + 1816.0, + 1050.0, + 1858.0, + 293.0, + 1858.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1445.0, + 473.0, + 1445.0, + 473.0, + 1482.0, + 293.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 554.0, + 1445.0, + 1408.0, + 1445.0, + 1408.0, + 1482.0, + 554.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1478.0, + 1405.0, + 1478.0, + 1405.0, + 1511.0, + 293.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1508.0, + 1405.0, + 1508.0, + 1405.0, + 1540.0, + 293.0, + 1540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1538.0, + 1405.0, + 1538.0, + 1405.0, + 1572.0, + 291.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1569.0, + 1404.0, + 1569.0, + 1404.0, + 1602.0, + 294.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1597.0, + 1404.0, + 1597.0, + 1404.0, + 1633.0, + 293.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1627.0, + 554.0, + 1627.0, + 554.0, + 1666.0, + 291.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1627.0, + 1405.0, + 1627.0, + 1405.0, + 1666.0, + 617.0, + 1666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1660.0, + 548.0, + 1660.0, + 548.0, + 1691.0, + 293.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1880.0, + 1409.0, + 1880.0, + 1409.0, + 1915.0, + 294.0, + 1915.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1946.0, + 294.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1944.0, + 1404.0, + 1944.0, + 1404.0, + 1977.0, + 294.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1972.0, + 1405.0, + 1972.0, + 1405.0, + 2009.0, + 294.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2002.0, + 1403.0, + 2002.0, + 1403.0, + 2038.0, + 294.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1214.0, + 868.0, + 1214.0, + 868.0, + 1250.0, + 292.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1004.0, + 1214.0, + 1407.0, + 1214.0, + 1407.0, + 1250.0, + 1004.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1245.0, + 895.0, + 1245.0, + 895.0, + 1281.0, + 293.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1062.0, + 1245.0, + 1169.0, + 1245.0, + 1169.0, + 1281.0, + 1062.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1400.0, + 1245.0, + 1410.0, + 1245.0, + 1410.0, + 1281.0, + 1400.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1275.0, + 1405.0, + 1275.0, + 1405.0, + 1311.0, + 293.0, + 1311.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1306.0, + 1407.0, + 1306.0, + 1407.0, + 1340.0, + 293.0, + 1340.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 904, + 1404, + 904, + 1404, + 1218, + 297, + 1218 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1460, + 1405, + 1460, + 1405, + 1676, + 298, + 1676 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 1232, + 1404, + 1232, + 1404, + 1445, + 298, + 1445 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1403, + 1911, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 486, + 217, + 1211, + 217, + 1211, + 561, + 486, + 561 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 296, + 704, + 1401, + 704, + 1401, + 766, + 296, + 766 + ], + "score": 0.951 + }, + { + "category_id": 4, + "poly": [ + 292, + 582, + 1402, + 582, + 1402, + 617, + 292, + 617 + ], + "score": 0.911 + }, + { + "category_id": 0, + "poly": [ + 299, + 1752, + 544, + 1752, + 544, + 1787, + 299, + 1787 + ], + "score": 0.894 + }, + { + "category_id": 0, + "poly": [ + 300, + 1839, + 783, + 1839, + 783, + 1873, + 300, + 1873 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 816, + 76, + 816, + 104, + 299, + 104 + ], + "score": 0.888 + }, + { + "category_id": 0, + "poly": [ + 305, + 835, + 908, + 835, + 908, + 867, + 305, + 867 + ], + "score": 0.848 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.841 + }, + { + "category_id": 13, + "poly": [ + 742, + 582, + 821, + 582, + 821, + 618, + 742, + 618 + ], + "score": 0.92, + "latex": "q ( \\mathbf { S } | \\phi )" + }, + { + "category_id": 13, + "poly": [ + 297, + 966, + 528, + 966, + 528, + 1000, + 297, + 1000 + ], + "score": 0.92, + "latex": "\\mathbf { s } _ { t + 1 } = f ( \\mathbf { s } _ { t - 3 : t } , \\mathbf { a } _ { t } )" + }, + { + "category_id": 13, + "poly": [ + 298, + 1262, + 583, + 1262, + 583, + 1296, + 298, + 1296 + ], + "score": 0.91, + "latex": "\\{ - 0 . 3 , - 0 . 1 , 0 . , 0 . 1 , 0 . 3 \\}" + }, + { + "category_id": 13, + "poly": [ + 1032, + 1911, + 1200, + 1911, + 1200, + 1944, + 1032, + 1944 + ], + "score": 0.91, + "latex": "\\mathcal { N } ( 0 , \\sigma = 8 m )" + }, + { + "category_id": 13, + "poly": [ + 835, + 1119, + 1316, + 1119, + 1316, + 1159, + 835, + 1159 + ], + "score": 0.9, + "latex": "\\begin{array} { r } { C ( \\mathbf { s } _ { 1 : T } ; \\mathbf { g } _ { T } ) = | | \\mathbf { s } _ { T } - \\mathbf { g } _ { T } | | _ { 2 } + \\sum _ { t = 1 } ^ { T } c ( \\mathbf { s } _ { t } ) } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 296, + 1187, + 374, + 1187, + 374, + 1217, + 296, + 1217 + ], + "score": 0.89, + "latex": "\\mathbf { s } _ { t } < 2" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1262, + 1226, + 1262, + 1226, + 1296, + 1148, + 1296 + ], + "score": 0.89, + "latex": "[ - 1 , 1 ]" + }, + { + "category_id": 13, + "poly": [ + 800, + 1491, + 835, + 1491, + 835, + 1521, + 800, + 1521 + ], + "score": 0.87, + "latex": "\\mathbb { R } ^ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 695, + 1155, + 928, + 1155, + 928, + 1188, + 695, + 1188 + ], + "score": 0.86, + "latex": "c ( \\mathbf { s } _ { t } ) = 1 . 5 \\mathbb { 1 } ( \\mathbf { s } _ { t } < 1 " + }, + { + "category_id": 13, + "poly": [ + 848, + 971, + 876, + 971, + 876, + 997, + 848, + 997 + ], + "score": 0.81, + "latex": "\\cdot { a } _ { t }" + }, + { + "category_id": 13, + "poly": [ + 671, + 1188, + 725, + 1188, + 725, + 1217, + 671, + 1217 + ], + "score": 0.8, + "latex": "+ \\ddot { \\mathbf { s } _ { t } }" + }, + { + "category_id": 13, + "poly": [ + 349, + 1063, + 374, + 1063, + 374, + 1091, + 349, + 1091 + ], + "score": 0.78, + "latex": "x" + }, + { + "category_id": 13, + "poly": [ + 1226, + 1156, + 1405, + 1156, + 1405, + 1188, + 1226, + 1188 + ], + "score": 0.64, + "latex": "+ 0 . 7 5 \\mathbb { 1 } ( 1 < =" + }, + { + "category_id": 13, + "poly": [ + 1333, + 1156, + 1404, + 1156, + 1404, + 1186, + 1333, + 1186 + ], + "score": 0.45, + "latex": "1 < =" + }, + { + "category_id": 15, + "poly": [ + 1003.0, + 231.0, + 1032.0, + 231.0, + 1032.0, + 279.0, + 1003.0, + 279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1012.0, + 355.0, + 1020.0, + 355.0, + 1020.0, + 365.0, + 1012.0, + 365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 701.0, + 373.0, + 829.0, + 373.0, + 829.0, + 392.0, + 701.0, + 392.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 407.0, + 680.0, + 407.0, + 680.0, + 476.0, + 641.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1028.0, + 299.0, + 1137.0, + 299.0, + 1137.0, + 335.5, + 1028.0, + 335.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 714.0, + 351.0, + 787.0, + 351.0, + 787.0, + 371.0, + 714.0, + 371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 577.0, + 741.0, + 577.0, + 741.0, + 621.0, + 294.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 822.0, + 577.0, + 1400.0, + 577.0, + 1400.0, + 621.0, + 822.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1747.0, + 549.0, + 1747.0, + 549.0, + 1795.0, + 292.0, + 1795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1839.0, + 787.0, + 1839.0, + 787.0, + 1875.0, + 295.0, + 1875.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": [ + 298.0, + 833.0, + 914.0, + 833.0, + 914.0, + 871.0, + 298.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 903.0, + 1406.0, + 903.0, + 1406.0, + 941.0, + 294.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 937.0, + 1405.0, + 937.0, + 1405.0, + 969.0, + 294.0, + 969.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 967.0, + 296.0, + 967.0, + 296.0, + 1000.0, + 292.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 529.0, + 967.0, + 847.0, + 967.0, + 847.0, + 1000.0, + 529.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 877.0, + 967.0, + 1406.0, + 967.0, + 1406.0, + 1000.0, + 877.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 998.0, + 1405.0, + 998.0, + 1405.0, + 1030.0, + 295.0, + 1030.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1026.0, + 1404.0, + 1026.0, + 1404.0, + 1061.0, + 294.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1058.0, + 348.0, + 1058.0, + 348.0, + 1092.0, + 292.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1058.0, + 1404.0, + 1058.0, + 1404.0, + 1092.0, + 375.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 281.0, + 1086.0, + 694.0, + 1086.0, + 694.0, + 1192.0, + 281.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1406.0, + 1086.0, + 1416.0, + 1086.0, + 1416.0, + 1192.0, + 1406.0, + 1192.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1184.0, + 295.0, + 1184.0, + 295.0, + 1224.0, + 291.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1184.0, + 670.0, + 1184.0, + 670.0, + 1224.0, + 375.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 726.0, + 1184.0, + 739.0, + 1184.0, + 739.0, + 1224.0, + 726.0, + 1224.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1463.0, + 1402.0, + 1463.0, + 1402.0, + 1494.0, + 297.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1493.0, + 799.0, + 1493.0, + 799.0, + 1527.0, + 295.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 836.0, + 1493.0, + 1408.0, + 1493.0, + 1408.0, + 1527.0, + 836.0, + 1527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1522.0, + 1405.0, + 1522.0, + 1405.0, + 1557.0, + 295.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1553.0, + 1405.0, + 1553.0, + 1405.0, + 1588.0, + 292.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1580.0, + 1405.0, + 1580.0, + 1405.0, + 1620.0, + 293.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1615.0, + 1407.0, + 1615.0, + 1407.0, + 1649.0, + 295.0, + 1649.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1647.0, + 1375.0, + 1647.0, + 1375.0, + 1678.0, + 296.0, + 1678.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1269.0, + 293.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 584.0, + 1263.0, + 1147.0, + 1263.0, + 1147.0, + 1297.0, + 584.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1227.0, + 1263.0, + 1406.0, + 1263.0, + 1406.0, + 1297.0, + 1227.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1292.0, + 1404.0, + 1292.0, + 1404.0, + 1328.0, + 293.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1323.0, + 1404.0, + 1323.0, + 1404.0, + 1359.0, + 293.0, + 1359.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1354.0, + 1405.0, + 1354.0, + 1405.0, + 1389.0, + 294.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1383.0, + 1405.0, + 1383.0, + 1405.0, + 1423.0, + 291.0, + 1423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1413.0, + 543.0, + 1413.0, + 543.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1910.0, + 1031.0, + 1910.0, + 1031.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1910.0, + 1407.0, + 1910.0, + 1407.0, + 1946.0, + 1201.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1404.0, + 1942.0, + 1404.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1975.0, + 1405.0, + 1975.0, + 1405.0, + 2005.0, + 293.0, + 2005.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2002.0, + 984.0, + 2002.0, + 984.0, + 2036.0, + 293.0, + 2036.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 703.0, + 1403.0, + 703.0, + 1403.0, + 739.0, + 296.0, + 739.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 732.0, + 1179.0, + 732.0, + 1179.0, + 770.0, + 294.0, + 770.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1637, + 1404, + 1637, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 297, + 1198, + 1405, + 1198, + 1405, + 1534, + 297, + 1534 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 876, + 1403, + 876, + 1403, + 1183, + 298, + 1183 + ], + "score": 0.982 + }, + { + "category_id": 3, + "poly": [ + 424, + 222, + 1274, + 222, + 1274, + 636, + 424, + 636 + ], + "score": 0.975 + }, + { + "category_id": 4, + "poly": [ + 299, + 659, + 1405, + 659, + 1405, + 753, + 299, + 753 + ], + "score": 0.958 + }, + { + "category_id": 0, + "poly": [ + 302, + 1577, + 813, + 1577, + 813, + 1609, + 302, + 1609 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 815, + 76, + 815, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 302, + 817, + 755, + 817, + 755, + 848, + 302, + 848 + ], + "score": 0.867 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.852 + }, + { + "category_id": 13, + "poly": [ + 986, + 1120, + 1062, + 1120, + 1062, + 1151, + 986, + 1151 + ], + "score": 0.89, + "latex": "9 0 . { \\dot { 2 } } \\%" + }, + { + "category_id": 13, + "poly": [ + 794, + 1120, + 871, + 1120, + 871, + 1151, + 794, + 1151 + ], + "score": 0.88, + "latex": "9 \\bar { 7 } . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 733, + 1502, + 810, + 1502, + 810, + 1532, + 733, + 1532 + ], + "score": 0.88, + "latex": "9 \\hat { 7 } . 5 \\hat { \\% }" + }, + { + "category_id": 13, + "poly": [ + 928, + 1502, + 1004, + 1502, + 1004, + 1533, + 928, + 1533 + ], + "score": 0.87, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 904, + 1411, + 974, + 1411, + 974, + 1442, + 904, + 1442 + ], + "score": 0.86, + "latex": "( 2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1148, + 1381, + 1225, + 1381, + 1225, + 1412, + 1148, + 1412 + ], + "score": 0.83, + "latex": "7 3 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 822, + 1350, + 899, + 1350, + 899, + 1381, + 822, + 1381 + ], + "score": 0.81, + "latex": "8 9 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1166, + 690, + 1202, + 690, + 1202, + 724, + 1166, + 724 + ], + "score": 0.8, + "latex": "^ 1 / 2" + }, + { + "category_id": 13, + "poly": [ + 786, + 1352, + 810, + 1352, + 810, + 1379, + 786, + 1379 + ], + "score": 0.73, + "latex": "T" + }, + { + "category_id": 13, + "poly": [ + 668, + 1412, + 731, + 1412, + 731, + 1441, + 668, + 1441 + ], + "score": 0.61, + "latex": "2 . 5 \\mathrm { m }" + }, + { + "category_id": 13, + "poly": [ + 1163, + 1352, + 1218, + 1352, + 1218, + 1379, + 1163, + 1379 + ], + "score": 0.61, + "latex": "2 0 \\mathrm { m }" + }, + { + "category_id": 15, + "poly": [ + 780.0, + 420.0, + 800.0, + 420.0, + 800.0, + 427.0, + 780.0, + 427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 554.0, + 566.0, + 554.0, + 566.0, + 570.0, + 446.0, + 570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 569.0, + 522.0, + 569.0, + 522.0, + 585.0, + 446.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 444.0, + 583.0, + 517.0, + 583.0, + 517.0, + 599.0, + 444.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 436.0, + 623.0, + 557.0, + 623.0, + 557.0, + 636.0, + 436.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1155.25, + 460.0, + 1165.25, + 460.0, + 1165.25, + 477.5, + 1155.25, + 477.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 660.0, + 1405.0, + 660.0, + 1405.0, + 694.0, + 295.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 685.0, + 1165.0, + 685.0, + 1165.0, + 728.0, + 293.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 685.0, + 1409.0, + 685.0, + 1409.0, + 728.0, + 1203.0, + 728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 721.0, + 1107.0, + 721.0, + 1107.0, + 755.0, + 295.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1577.0, + 817.0, + 1577.0, + 817.0, + 1613.0, + 295.0, + 1613.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": [ + 296.0, + 816.0, + 761.0, + 816.0, + 761.0, + 851.0, + 296.0, + 851.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 832.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1672.0, + 294.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1669.0, + 1406.0, + 1669.0, + 1406.0, + 1703.0, + 294.0, + 1703.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1700.0, + 1405.0, + 1700.0, + 1405.0, + 1732.0, + 295.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1729.0, + 1405.0, + 1729.0, + 1405.0, + 1762.0, + 296.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1760.0, + 1405.0, + 1760.0, + 1405.0, + 1793.0, + 295.0, + 1793.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1788.0, + 1408.0, + 1788.0, + 1408.0, + 1826.0, + 292.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1817.0, + 1405.0, + 1817.0, + 1405.0, + 1856.0, + 294.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1848.0, + 1406.0, + 1848.0, + 1406.0, + 1887.0, + 294.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1879.0, + 1404.0, + 1879.0, + 1404.0, + 1918.0, + 292.0, + 1918.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1908.0, + 1405.0, + 1908.0, + 1405.0, + 1951.0, + 291.0, + 1951.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1940.0, + 1406.0, + 1940.0, + 1406.0, + 1979.0, + 292.0, + 1979.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1407.0, + 1971.0, + 1407.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 1407.0, + 2000.0, + 1407.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1195.0, + 1406.0, + 1195.0, + 1406.0, + 1236.0, + 292.0, + 1236.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1227.0, + 1403.0, + 1227.0, + 1403.0, + 1263.0, + 292.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1259.0, + 1405.0, + 1259.0, + 1405.0, + 1294.0, + 292.0, + 1294.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1288.0, + 1408.0, + 1288.0, + 1408.0, + 1325.0, + 292.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1318.0, + 1405.0, + 1318.0, + 1405.0, + 1356.0, + 294.0, + 1356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1351.0, + 785.0, + 1351.0, + 785.0, + 1386.0, + 295.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1351.0, + 821.0, + 1351.0, + 821.0, + 1386.0, + 811.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 900.0, + 1351.0, + 1162.0, + 1351.0, + 1162.0, + 1386.0, + 900.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1219.0, + 1351.0, + 1405.0, + 1351.0, + 1405.0, + 1386.0, + 1219.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1381.0, + 1147.0, + 1381.0, + 1147.0, + 1417.0, + 292.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 1381.0, + 1406.0, + 1381.0, + 1406.0, + 1417.0, + 1226.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1411.0, + 667.0, + 1411.0, + 667.0, + 1445.0, + 294.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 732.0, + 1411.0, + 903.0, + 1411.0, + 903.0, + 1445.0, + 732.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 1411.0, + 1406.0, + 1411.0, + 1406.0, + 1445.0, + 975.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1442.0, + 1405.0, + 1442.0, + 1405.0, + 1476.0, + 294.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1471.0, + 1410.0, + 1471.0, + 1410.0, + 1508.0, + 292.0, + 1508.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1501.0, + 732.0, + 1501.0, + 732.0, + 1536.0, + 295.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1501.0, + 927.0, + 1501.0, + 927.0, + 1536.0, + 811.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1501.0, + 1120.0, + 1501.0, + 1120.0, + 1536.0, + 1005.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 877.0, + 1405.0, + 877.0, + 1405.0, + 911.0, + 294.0, + 911.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 905.0, + 1407.0, + 905.0, + 1407.0, + 946.0, + 292.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 934.0, + 1407.0, + 934.0, + 1407.0, + 976.0, + 292.0, + 976.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 968.0, + 1405.0, + 968.0, + 1405.0, + 1004.0, + 294.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 998.0, + 1407.0, + 998.0, + 1407.0, + 1035.0, + 293.0, + 1035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 1407.0, + 1030.0, + 1407.0, + 1065.0, + 293.0, + 1065.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1060.0, + 1405.0, + 1060.0, + 1405.0, + 1096.0, + 293.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1088.0, + 1405.0, + 1088.0, + 1405.0, + 1126.0, + 292.0, + 1126.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1119.0, + 793.0, + 1119.0, + 793.0, + 1155.0, + 292.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 872.0, + 1119.0, + 985.0, + 1119.0, + 985.0, + 1155.0, + 872.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1063.0, + 1119.0, + 1405.0, + 1119.0, + 1405.0, + 1155.0, + 1063.0, + 1155.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1149.0, + 1099.0, + 1149.0, + 1099.0, + 1187.0, + 293.0, + 1187.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 494, + 1404, + 494, + 1404, + 801, + 298, + 801 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 297, + 1195, + 1405, + 1195, + 1405, + 1378, + 297, + 1378 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1638, + 1405, + 1638, + 1405, + 1884, + 298, + 1884 + ], + "score": 0.979 + }, + { + "category_id": 5, + "poly": [ + 302, + 948, + 1398, + 948, + 1398, + 1066, + 302, + 1066 + ], + "score": 0.977, + "html": "
Town02 Dynamic Navigation MethodSuccessRan Red LightWrong laneOff road
Region Final-St. Indicator S. (original)88%±3.32.57%±0.040.49%±0.322.6%±1.06
Region Final-St. Indicator S. (noisy λ)76%±5.034.8%± 2.40.15%±0.041.79% ±0.34
" + }, + { + "category_id": 1, + "poly": [ + 299, + 387, + 1404, + 387, + 1404, + 478, + 299, + 478 + ], + "score": 0.974 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1402, + 229, + 1402, + 293, + 297, + 293 + ], + "score": 0.95 + }, + { + "category_id": 1, + "poly": [ + 298, + 1492, + 912, + 1492, + 912, + 1524, + 298, + 1524 + ], + "score": 0.912 + }, + { + "category_id": 0, + "poly": [ + 300, + 1125, + 817, + 1125, + 817, + 1161, + 300, + 1161 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 300, + 329, + 643, + 329, + 643, + 362, + 300, + 362 + ], + "score": 0.903 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 816, + 75, + 816, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 6, + "poly": [ + 297, + 829, + 1405, + 829, + 1405, + 923, + 297, + 923 + ], + "score": 0.856 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 864, + 2089, + 864, + 2112, + 836, + 2112 + ], + "score": 0.846 + }, + { + "category_id": 0, + "poly": [ + 303, + 1424, + 756, + 1424, + 756, + 1459, + 303, + 1459 + ], + "score": 0.84 + }, + { + "category_id": 0, + "poly": [ + 300, + 1570, + 649, + 1570, + 649, + 1606, + 300, + 1606 + ], + "score": 0.829 + }, + { + "category_id": 1, + "poly": [ + 297, + 829, + 1405, + 829, + 1405, + 923, + 297, + 923 + ], + "score": 0.143 + }, + { + "category_id": 0, + "poly": [ + 300, + 1569, + 649, + 1569, + 649, + 1605, + 300, + 1605 + ], + "score": 0.129 + }, + { + "category_id": 13, + "poly": [ + 495, + 1349, + 566, + 1349, + 566, + 1375, + 495, + 1375 + ], + "score": 0.9, + "latex": "\\sigma = 1" + }, + { + "category_id": 13, + "poly": [ + 745, + 1733, + 828, + 1733, + 828, + 1761, + 745, + 1761 + ], + "score": 0.9, + "latex": "\\epsilon 5 \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1671, + 1366, + 1671, + 1366, + 1700, + 1261, + 1700 + ], + "score": 0.88, + "latex": "\\epsilon \\gets 0 . 2 \\epsilon" + }, + { + "category_id": 13, + "poly": [ + 635, + 1288, + 669, + 1288, + 669, + 1318, + 635, + 1318 + ], + "score": 0.88, + "latex": "{ \\mathcal { N } } _ { i }" + }, + { + "category_id": 13, + "poly": [ + 507, + 526, + 562, + 526, + 562, + 555, + 507, + 555 + ], + "score": 0.87, + "latex": "20 \\%" + }, + { + "category_id": 13, + "poly": [ + 1209, + 526, + 1263, + 526, + 1263, + 555, + 1209, + 555 + ], + "score": 0.86, + "latex": "80 \\%" + }, + { + "category_id": 13, + "poly": [ + 1014, + 1288, + 1050, + 1288, + 1050, + 1320, + 1014, + 1320 + ], + "score": 0.86, + "latex": "^ 1 / 3" + }, + { + "category_id": 13, + "poly": [ + 1217, + 1258, + 1283, + 1258, + 1283, + 1286, + 1217, + 1286 + ], + "score": 0.82, + "latex": "- 1 e 3" + }, + { + "category_id": 13, + "poly": [ + 1233, + 497, + 1253, + 497, + 1253, + 523, + 1233, + 523 + ], + "score": 0.79, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 531, + 771, + 551, + 771, + 551, + 797, + 531, + 797 + ], + "score": 0.75, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 680, + 1226, + 897, + 1226, + 897, + 1260, + 680, + 1260 + ], + "score": 0.69, + "latex": "\\mathcal { N } _ { i } ( \\mu { = } [ - 1 5 \\mathrm { m } , 0 \\mathrm { m } ]" + }, + { + "category_id": 13, + "poly": [ + 537, + 588, + 557, + 588, + 557, + 615, + 537, + 615 + ], + "score": 0.68, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 345, + 419, + 364, + 419, + 364, + 445, + 345, + 445 + ], + "score": 0.63, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 405, + 1229, + 418, + 1229, + 418, + 1254, + 405, + 1254 + ], + "score": 0.62, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 517, + 1645, + 534, + 1645, + 534, + 1667, + 517, + 1667 + ], + "score": 0.61, + "latex": "\\epsilon" + }, + { + "category_id": 13, + "poly": [ + 907, + 1226, + 1137, + 1226, + 1137, + 1260, + 907, + 1260 + ], + "score": 0.55, + "latex": "\\Sigma = \\mathrm { d i a g } ( [ 1 , 0 . 0 1 ] ) )" + }, + { + "category_id": 13, + "poly": [ + 567, + 1258, + 621, + 1258, + 621, + 1285, + 567, + 1285 + ], + "score": 0.53, + "latex": "1 5 \\mathrm { m }" + }, + { + "category_id": 13, + "poly": [ + 959, + 497, + 979, + 497, + 979, + 523, + 959, + 523 + ], + "score": 0.49, + "latex": "\\lambda" + }, + { + "category_id": 13, + "poly": [ + 985, + 831, + 1021, + 831, + 1021, + 860, + 985, + 860 + ], + "score": 0.46, + "latex": "( \\lambda )" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1124.0, + 822.0, + 1124.0, + 822.0, + 1164.0, + 294.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 330.0, + 645.0, + 330.0, + 645.0, + 363.0, + 295.0, + 363.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": [ + 291.0, + 824.0, + 984.0, + 824.0, + 984.0, + 866.0, + 291.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 824.0, + 1405.0, + 824.0, + 1405.0, + 866.0, + 1022.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 1403.0, + 859.0, + 1403.0, + 895.0, + 294.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 892.0, + 885.0, + 892.0, + 885.0, + 923.0, + 294.0, + 923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2086.0, + 868.0, + 2086.0, + 868.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1420.0, + 761.0, + 1420.0, + 761.0, + 1466.0, + 294.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 652.0, + 1570.0, + 652.0, + 1609.0, + 295.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1570.0, + 652.0, + 1570.0, + 652.0, + 1609.0, + 295.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 491.0, + 958.0, + 491.0, + 958.0, + 533.0, + 293.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 491.0, + 1232.0, + 491.0, + 1232.0, + 533.0, + 980.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1254.0, + 491.0, + 1403.0, + 491.0, + 1403.0, + 533.0, + 1254.0, + 533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 525.0, + 506.0, + 525.0, + 506.0, + 561.0, + 294.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 563.0, + 525.0, + 1208.0, + 525.0, + 1208.0, + 561.0, + 563.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1264.0, + 525.0, + 1405.0, + 525.0, + 1405.0, + 561.0, + 1264.0, + 561.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 557.0, + 1406.0, + 557.0, + 1406.0, + 590.0, + 293.0, + 590.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 583.0, + 536.0, + 583.0, + 536.0, + 623.0, + 291.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 558.0, + 583.0, + 1408.0, + 583.0, + 1408.0, + 623.0, + 558.0, + 623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 614.0, + 1406.0, + 614.0, + 1406.0, + 653.0, + 292.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 649.0, + 1404.0, + 649.0, + 1404.0, + 681.0, + 296.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 677.0, + 1405.0, + 677.0, + 1405.0, + 714.0, + 293.0, + 714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 703.0, + 1405.0, + 703.0, + 1405.0, + 747.0, + 292.0, + 747.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 739.0, + 1405.0, + 739.0, + 1405.0, + 775.0, + 294.0, + 775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 770.0, + 530.0, + 770.0, + 530.0, + 805.0, + 294.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 770.0, + 964.0, + 770.0, + 964.0, + 805.0, + 552.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1194.0, + 1405.0, + 1194.0, + 1405.0, + 1230.0, + 295.0, + 1230.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1226.0, + 404.0, + 1226.0, + 404.0, + 1260.0, + 294.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 419.0, + 1226.0, + 679.0, + 1226.0, + 679.0, + 1260.0, + 419.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 898.0, + 1226.0, + 906.0, + 1226.0, + 906.0, + 1260.0, + 898.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1138.0, + 1226.0, + 1405.0, + 1226.0, + 1405.0, + 1260.0, + 1138.0, + 1260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1256.0, + 566.0, + 1256.0, + 566.0, + 1292.0, + 295.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 622.0, + 1256.0, + 1216.0, + 1256.0, + 1216.0, + 1292.0, + 622.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1284.0, + 1256.0, + 1406.0, + 1256.0, + 1406.0, + 1292.0, + 1284.0, + 1292.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1287.0, + 634.0, + 1287.0, + 634.0, + 1322.0, + 294.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 670.0, + 1287.0, + 1013.0, + 1287.0, + 1013.0, + 1322.0, + 670.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1051.0, + 1287.0, + 1405.0, + 1287.0, + 1405.0, + 1322.0, + 1051.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1316.0, + 1405.0, + 1316.0, + 1405.0, + 1351.0, + 295.0, + 1351.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1350.0, + 494.0, + 1350.0, + 494.0, + 1377.0, + 297.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1350.0, + 832.0, + 1350.0, + 832.0, + 1377.0, + 567.0, + 1377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1635.0, + 516.0, + 1635.0, + 516.0, + 1677.0, + 292.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 1635.0, + 1406.0, + 1635.0, + 1406.0, + 1677.0, + 535.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1671.0, + 1260.0, + 1671.0, + 1260.0, + 1705.0, + 295.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1671.0, + 1405.0, + 1671.0, + 1405.0, + 1705.0, + 1367.0, + 1705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1702.0, + 1405.0, + 1702.0, + 1405.0, + 1736.0, + 295.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1732.0, + 744.0, + 1732.0, + 744.0, + 1766.0, + 295.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 1732.0, + 1406.0, + 1732.0, + 1406.0, + 1766.0, + 829.0, + 1766.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1759.0, + 1406.0, + 1759.0, + 1406.0, + 1797.0, + 292.0, + 1797.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1792.0, + 1405.0, + 1792.0, + 1405.0, + 1826.0, + 295.0, + 1826.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1822.0, + 1405.0, + 1822.0, + 1405.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1854.0, + 738.0, + 1854.0, + 738.0, + 1887.0, + 295.0, + 1887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 384.0, + 1404.0, + 384.0, + 1404.0, + 423.0, + 293.0, + 423.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 418.0, + 344.0, + 418.0, + 344.0, + 448.0, + 295.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 365.0, + 418.0, + 1401.0, + 418.0, + 1401.0, + 448.0, + 365.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 449.0, + 952.0, + 449.0, + 952.0, + 480.0, + 294.0, + 480.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 229.0, + 1404.0, + 229.0, + 1404.0, + 265.0, + 296.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 261.0, + 768.0, + 261.0, + 768.0, + 297.0, + 295.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1492.0, + 914.0, + 1492.0, + 914.0, + 1528.0, + 297.0, + 1528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 824.0, + 984.0, + 824.0, + 984.0, + 866.0, + 291.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1022.0, + 824.0, + 1405.0, + 824.0, + 1405.0, + 866.0, + 1022.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 859.0, + 1403.0, + 859.0, + 1403.0, + 895.0, + 294.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 892.0, + 885.0, + 892.0, + 885.0, + 923.0, + 294.0, + 923.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 491, + 857, + 1215, + 857, + 1215, + 1215, + 491, + 1215 + ], + "score": 0.968 + }, + { + "category_id": 4, + "poly": [ + 296, + 1236, + 1406, + 1236, + 1406, + 1392, + 296, + 1392 + ], + "score": 0.951 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 816, + 75, + 816, + 105, + 299, + 105 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.845 + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1021.0, + 686.0, + 1021.0, + 686.0, + 1055.0, + 659.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 925.0, + 1020.0, + 1001.0, + 1020.0, + 1001.0, + 1090.0, + 925.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1050.0, + 1045.0, + 1097.0, + 1045.0, + 1097.0, + 1112.0, + 1050.0, + 1112.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1139.0, + 1164.0, + 1148.0, + 1164.0, + 1148.0, + 1173.0, + 1139.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1238.0, + 1404.0, + 1238.0, + 1404.0, + 1271.0, + 295.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1269.0, + 1403.0, + 1269.0, + 1403.0, + 1302.0, + 296.0, + 1302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 1297.0, + 1407.0, + 1297.0, + 1407.0, + 1335.0, + 290.0, + 1335.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1327.0, + 1406.0, + 1327.0, + 1406.0, + 1366.0, + 291.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1355.0, + 647.0, + 1355.0, + 647.0, + 1398.0, + 294.0, + 1398.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": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/parse/train/XPZIaotutsD/XPZIaotutsD.md b/parse/train/XPZIaotutsD/XPZIaotutsD.md new file mode 100644 index 0000000000000000000000000000000000000000..60c50a0c78a95abac0d707eee2ce036d26249879 --- /dev/null +++ b/parse/train/XPZIaotutsD/XPZIaotutsD.md @@ -0,0 +1,454 @@ +# DEBERTA: DECODING-ENHANCED BERT WITH DISENTANGLED ATTENTION + +Pengcheng $\mathbf { H e } ^ { 1 }$ , Xiaodong $\mathbf { L i u ^ { 2 } }$ , Jianfeng $\mathbf { G a o ^ { 2 } }$ , Weizhu Chen1 1 Microsoft Dynamics 365 AI 2 Microsoft Research {penhe,xiaodl,jfgao,wzchen}@microsoft.com + +# ABSTRACT + +Recent progress in pre-trained neural language models has significantly improved the performance of many natural language processing (NLP) tasks. In this paper we propose a new model architecture DeBERTa (Decoding-enhanced BERT with disentangled attention) that improves the BERT and RoBERTa models using two novel techniques. The first is the disentangled attention mechanism, where each word is represented using two vectors that encode its content and position, respectively, and the attention weights among words are computed using disentangled matrices on their contents and relative positions, respectively. Second, an enhanced mask decoder is used to incorporate absolute positions in the decoding layer to predict the masked tokens in model pre-training. In addition, a new virtual adversarial training method is used for fine-tuning to improve models’ generalization. We show that these techniques significantly improve the efficiency of model pre-training and the performance of both natural language understand (NLU) and natural langauge generation (NLG) downstream tasks. Compared to RoBERTa-Large, a DeBERTa model trained on half of the training data performs consistently better on a wide range of NLP tasks, achieving improvements on MNLI by $+ 0 . 9 \%$ $9 0 . 2 \%$ vs. $9 1 . 1 \%$ , on SQuAD $\mathrm { v } 2 . 0$ by $+ 2 . 3 \%$ $8 8 . 4 \%$ vs. $9 0 . 7 \% )$ and RACE by $+ 3 . 6 \%$ ( $8 3 . 2 \%$ vs. $8 6 . 8 \%$ ). Notably, we scale up DeBERTa by training a larger version that consists of 48 Transform layers with 1.5 billion parameters. The significant performance boost makes the single DeBERTa model surpass the human performance on the SuperGLUE benchmark (Wang et al., 2019a) for the first time in terms of macro-average score (89.9 versus 89.8), and the ensemble DeBERTa model sits atop the SuperGLUE leaderboard as of January 6, 2021, outperforming the human baseline by a decent margin (90.3 versus 89.8). The pre-trained DeBERTa models and the source code were released at: https://github.com/microsoft/DeBERTa1. + +# 1 INTRODUCTION + +The Transformer has become the most effective neural network architecture for neural language modeling. Unlike recurrent neural networks (RNNs) that process text in sequence, Transformers apply self-attention to compute in parallel every word from the input text an attention weight that gauges the influence each word has on another, thus allowing for much more parallelization than RNNs for large-scale model training (Vaswani et al., 2017). Since 2018, we have seen the rise of a set of large-scale Transformer-based Pre-trained Language Models (PLMs), such as GPT (Radford et al., 2019; Brown et al., 2020), BERT (Devlin et al., 2019), RoBERTa (Liu et al., 2019c), XLNet (Yang et al., 2019), UniLM (Dong et al., 2019), ELECTRA (Clark et al., 2020), T5 (Raffel et al., 2020), ALUM (Liu et al., 2020), StructBERT (Wang et al., 2019c) and ERINE (Sun et al., 2019) . These PLMs have been fine-tuned using task-specific labels and created new state of the art in many downstream natural language processing (NLP) tasks (Liu et al., 2019b; Minaee et al., 2020; Jiang et al., 2020; He et al., 2019a;b; Shen et al., 2020). + +In this paper, we propose a new Transformer-based neural language model DeBERTa (Decodingenhanced BERT with disentangled attention), which improves previous state-of-the-art PLMs using two novel techniques: a disentangled attention mechanism, and an enhanced mask decoder. + +Disentangled attention. Unlike BERT where each word in the input layer is represented using a vector which is the sum of its word (content) embedding and position embedding, each word in DeBERTa is represented using two vectors that encode its content and position, respectively, and the attention weights among words are computed using disentangled matrices based on their contents and relative positions, respectively. This is motivated by the observation that the attention weight of a word pair depends on not only their contents but their relative positions. For example, the dependency between the words “deep” and “learning” is much stronger when they occur next to each other than when they occur in different sentences. + +Enhanced mask decoder. Like BERT, DeBERTa is pre-trained using masked language modeling (MLM). MLM is a fill-in-the-blank task, where a model is taught to use the words surrounding a mask token to predict what the masked word should be. DeBERTa uses the content and position information of the context words for MLM. The disentangled attention mechanism already considers the contents and relative positions of the context words, but not the absolute positions of these words, which in many cases are crucial for the prediction. Consider the sentence “a new store opened beside the new mall” with the italicized words “store” and “mall” masked for prediction. Although the local contexts of the two words are similar, they play different syntactic roles in the sentence. (Here, the subject of the sentence is “store” not “mall,” for example.) These syntactical nuances depend, to a large degree, upon the words’ absolute positions in the sentence, and so it is important to account for a word’s absolute position in the language modeling process. DeBERTa incorporates absolute word position embeddings right before the softmax layer where the model decodes the masked words based on the aggregated contextual embeddings of word contents and positions. + +In addition, we propose a new virtual adversarial training method for fine-tuning PLMs to downstream NLP tasks. The method is effective in improving models’ generalization. + +We show through a comprehensive empirical study that these techniques substantially improve the efficiency of pre-training and the performance of downstream tasks. In the NLU tasks, compared to RoBERTa-Large, a DeBERTa model trained on half the training data performs consistently better on a wide range of NLP tasks, achieving improvements on MNLI by $+ 0 . 9 \%$ $9 0 . 2 \%$ vs. $9 1 . 1 \%$ ), on SQuAD v2.0 by $+ 2 . 3 \% ( 8 8 . 4 \%$ vs. $9 0 . 7 \%$ ), and RACE by $+ 3 . 6 \%$ ( $8 3 . 2 \%$ vs. $8 6 . 8 \%$ ). In the NLG tasks, DeBERTa reduces the perplexity from 21.6 to 19.5 on the Wikitext-103 dataset. We further scale up DeBERTa by pre-training a larger model that consists of 48 Transformer layers with 1.5 billion parameters. The single 1.5B-parameter DeBERTa model substantially outperforms T5 with 11 billion parameters on the SuperGLUE benchmark (Wang et al., 2019a) by $0 . 6 \% ( 8 9 . 3 \%$ vs. $8 9 . 9 \%$ ), and surpasses the human baseline (89.9 vs. 89.8) for the first time. The ensemble DeBERTa model sits atop the SuperGLUE leaderboard as of January 6, 2021, outperforming the human baseline by a decent margin (90.3 versus 89.8). + +# 2 BACKGROUND + +# 2.1 TRANSFORMER + +A Transformer-based language model is composed of stacked Transformer blocks (Vaswani et al., 2017). Each block contains a multi-head self-attention layer followed by a fully connected positional feed-forward network. The standard self-attention mechanism lacks a natural way to encode word position information. Thus, existing approaches add a positional bias to each input word embedding so that each input word is represented by a vector whose value depends on its content and position. The positional bias can be implemented using absolute position embedding (Vaswani et al., 2017; Radford et al., 2019; Devlin et al., 2019) or relative position embedding (Huang et al., 2018; Yang et al., 2019). It has been shown that relative position representations are more effective for natural language understanding and generation tasks (Dai et al., 2019; Shaw et al., 2018). The proposed disentangled attention mechanism differs from all existing approaches in that we represent each input word using two separate vectors that encode a word’s content and position, respectively, and attention weights among words are computed using disentangled matrices on their contents and relative positions, respectively. + +# 2.2 MASKED LANGUAGE MODEL + +Large-scale Transformer-based PLMs are typically pre-trained on large amounts of text to learn contextual word representations using a self-supervision objective, known as Masked Language Model (MLM) (Devlin et al., 2019). Specifically, given a sequence $X \mathrm { ~ = ~ } \{ x _ { i } \}$ , we corrupt it into $\tilde { X }$ by masking $15 \%$ of its tokens at random and then train a language model parameterized by $\theta$ to reconstruct $\boldsymbol { X }$ by predicting the masked tokens $\tilde { x }$ conditioned on $\tilde { X }$ : + +$$ +\operatorname* { m a x } _ { \theta } \log p _ { \theta } ( X | \tilde { X } ) = \operatorname* { m a x } _ { \theta } \sum _ { i \in \mathcal { C } } \log p _ { \theta } \big ( \tilde { x } _ { i } = x _ { i } | \tilde { X } \big ) +$$ + +where $\mathcal { C }$ is the index set of the masked tokens in the sequence. The authors of BERT propose to keep $10 \%$ of the masked tokens unchanged, another $10 \%$ replaced with randomly picked tokens and the rest replaced with the [MASK] token. + +# 3 THE DEBERTA ARCHITECTURE + +3.1 DISENTANGLED ATTENTION: A TWO-VECTOR APPROACH TO CONTENT AND POSITIONEMBEDDING + +For a token at position $i$ in a sequence, we represent it using two vectors, $\left\{ H _ { i } \right\}$ and $\{ P _ { i \mid j } \}$ , which represent its content and relative position with the token at position $j$ , respectively. The calculation of the cross attention score between tokens $i$ and $j$ can be decomposed into four components as + +$$ +\begin{array} { r l } & { A _ { i , j } = \{ H _ { i } , P _ { i | j } \} \times \{ H _ { j } , P _ { j | i } \} ^ { \intercal } } \\ & { \qquad = H _ { i } H _ { j } ^ { \intercal } + H _ { i } P _ { j | i } ^ { \intercal } + P _ { i | j } H _ { j } ^ { \intercal } + P _ { i | j } P _ { j | i } ^ { \intercal } } \end{array} +$$ + +That is, the attention weight of a word pair can be computed as a sum of four attention scores using disentangled matrices on their contents and positions as content-to-content, content-to-position, position-to-content, and position-to-position 2. + +Existing approaches to relative position encoding use a separate embedding matrix to compute the relative position bias in computing attention weights (Shaw et al., 2018; Huang et al., 2018). This is equivalent to computing the attention weights using only the content-to-content and content-toposition terms in equation 2. We argue that the position-to-content term is also important since the attention weight of a word pair depends not only on their contents but on their relative positions, which can only be fully modeled using both the content-to-position and position-to-content terms. Since we use relative position embedding, the position-to-position term does not provide much additional information and is removed from equation 2 in our implementation. + +Taking single-head attention as an example, the standard self-attention operation (Vaswani et al., 2017) can be formulated as: + +$$ +\begin{array} { c } { { Q = H W _ { q } , K = H W _ { k } , V = H W _ { v } , A = \frac { Q K ^ { \intercal } } { \sqrt { d } } } } \\ { { H _ { o } = \mathrm { s o f t m a x } ( A ) V } } \end{array} +$$ + +where ${ \cal H } \in { \cal R } ^ { N \times d }$ represents the input hidden vectors, $H _ { o } \in R ^ { N \times d }$ the output of self-attention, $W _ { q } , W _ { k } , W _ { v } \in R ^ { d \times \hat { d } }$ the projection matrices, $\pmb { A } \in R ^ { N \times N }$ the attention matrix, $N$ the length of the input sequence, and $d$ the dimension of hidden states. + +Denote $k$ as the maximum relative distance, $\delta ( i , j ) \in [ 0 , 2 k )$ as the relative distance from token $i$ to token $j$ , which is defined as: + +$$ +\delta ( i , j ) = \left\{ \begin{array} { r l l } { { 0 } } & { { \mathrm { f o r } } } & { { i - j \leqslant - k } } \\ { { 2 k - 1 } } & { { \mathrm { f o r } } } & { { i - j \geqslant k } } \\ { { i - j + k } } & { { \mathrm { o t h e r s . } } } & { { } } \end{array} \right. +$$ + +We can represent the disentangled self-attention with relative position bias as equation 4, where $Q _ { c } , K _ { c }$ and $V _ { c }$ are the projected content vectors generated using projection matrices $W _ { q , c } , W _ { k , c } , W _ { v , c } \in R ^ { d \times d }$ respectively, $P \in { \cal R } ^ { 2 k \times d }$ represents the relative position embedding vectors shared across all layers (i.e., staying fixed during forward propagation), and $Q _ { r }$ and $K _ { r }$ are projected relative position vectors generated using projection matrices $W _ { q , r } , W _ { k , r } \in R ^ { d \times d }$ , respectively. + +$$ +\begin{array} { l } { { Q _ { c } = H W _ { q , c } , K _ { c } = H W _ { k , c } , V _ { c } = H W _ { v , c } , Q _ { r } = P W _ { q , r } , K _ { r } = P W _ { k , r } } } \\ { { \tilde { A } _ { i , j } = \underbrace { Q _ { i } ^ { c } K _ { j } ^ { c \top } } _ { \mathrm { ( a ) c o n t e n t - t o - c o n t e n t } } + \underbrace { Q _ { i } ^ { c } K _ { \delta ( i , j ) } ^ { r } } _ { \mathrm { ( b ) c o n t e n t - t o - p o s i i t i o n } } + \underbrace { K _ { j } ^ { c } Q _ { \delta ( j , i ) } ^ { r } } _ { \mathrm { ( c ) p o s i i t i o n - t o r t e n t } } } } \\ { { \tilde { H } _ { o } = \mathrm { s o f t m a x } ( \frac { \tilde { A } } { \sqrt { 3 d } } ) V _ { c } } } \end{array} +$$ + +$\tilde { A } _ { i , j }$ is the element of attention matrix $\tilde { A }$ , representing the attention score from token $i$ to token $j$ . $Q _ { i } ^ { c }$ is the $i$ -th row of $Q _ { c } . \ K _ { j } ^ { c }$ is the $j$ -th row of $K _ { c }$ . $K _ { \delta ( i , j ) } ^ { r }$ is the $\delta ( i , j )$ -th row of $K _ { r }$ with regarding to relative distance $\delta ( i , j )$ . $Q _ { \delta ( j , i ) } ^ { r }$ is the $\delta ( j , i )$ -th row of $Q _ { r }$ with regarding to relative distance $\delta ( j , i )$ . Note that we use $\delta ( j , i )$ rather than $\delta ( i , j )$ here. This is because for a given position $i$ , position-to-content computes the attention weight of the key content at $j$ with respect to the query position at $i$ , thus the relative distance is $\delta ( j , i )$ . The position-to-content term is calculated as $K _ { j } ^ { c } Q _ { \delta ( j , i ) } ^ { r } { } ^ { \intercal }$ . The content-to-position term is calculated in a similar way. + +Finally, we apply a scaling factor of $\frac { 1 } { \sqrt { 3 d } }$ on $\tilde { A }$ . The factor is important for stabilizing model training (Vaswani et al., 2017), especially for large-scale PLMs. + +# Algorithm 1 Disentangled Attention + +Input: Hidden state $\pmb { H }$ , relative distance embedding $_ { P }$ , relative distance matrix $\delta$ . Content projec +tion matrix $W _ { k , c }$ , $W _ { q , c }$ , $W _ { v , c }$ , position projection matrix $W _ { k , r }$ , $W _ { q , r }$ . +1: $K _ { c } = H W _ { k , c }$ , $Q _ { c } = H W _ { q , c }$ , $V _ { c } = H W _ { v , c }$ , $K _ { r } = P W _ { k , r }$ , $Q _ { r } \overset { = } { = } P W _ { q , r }$ +2: $A _ { c c } = Q _ { c } K _ { c } ^ { \intercal }$ +3: for $i = 0 , . . . , N - 1$ do +4: $\tilde { A } _ { c p } [ i , : ] = Q _ { c } [ i , : ] { \cal K } _ { r } ^ { \intercal }$ +5: end for +6: for $i = 0 , . . . , N - 1$ do +7: for $j = 0 , . . . , N - 1$ do +8: $A _ { c p } [ i , j ] = \tilde { A } _ { c p } [ i , \delta [ i , j ] ]$ +9: end for +10: end for +11: for $j = 0 , . . . , N - 1$ do +12: $\tilde { A } _ { p c } [ : , j ] = K _ { c } [ j , : ] Q _ { r } ^ { \intercal }$ +13: end for +14: for $j = 0 , . . . , N - 1$ do +15: for $i = 0 , . . . , N - 1$ do +16: $A _ { p c } [ i , j ] = \tilde { A } _ { p c } [ \delta [ j , i ] , j ]$ +17: end for +18: end for +19: $\tilde { A } = A _ { c c } + A _ { c p } + A _ { p c }$ +20: $H _ { o } = \operatorname { s o f t m a x } ( \frac { \tilde { A } } { \sqrt { 3 d } } ) V _ { c }$ +Output: Ho + +# 3.1.1 EFFICIENT IMPLEMENTATION + +For an input sequence of length $N$ , it requires a space complexity of $O ( N ^ { 2 } d )$ (Shaw et al., 2018; Huang et al., 2018; Dai et al., 2019) to store the relative position embedding for each token. However, taking content-to-position as an example, we note that since $\delta ( i , j ) \in [ 0 , 2 k )$ and the embeddings of all possible relative positions are always a subset of $K _ { r } \in R ^ { 2 k \times d }$ , then we can reuse $K _ { r }$ in the attention calculation for all the queries. + +In our experiments, we set the maximum relative distance $k$ to 512 for pre-training. The disentangled attention weights can be computed efficiently using Algorithm 1. Let $\delta$ be the relative position matrix according to equation 3, i.e., $\delta [ i , j ] = \delta ( \overset { . } { i } , j )$ . Instead of allocating a different relative position embedding matrix for each query, we multiply each query vector $Q _ { c } [ i , : ]$ by ${ K } _ { r } ^ { \tau } \in { R } ^ { d \times 2 k }$ , as in line $3 - 5$ . Then, we extract the attention weight using the relative position matrix $\delta$ as the index, as in line $6 - 1 0$ . To compute the position-to-content attention score, we calculate $\tilde { A } _ { p c } [ : , j ]$ , i.e., the column vector of the attention matrix $\tilde { A } _ { p c }$ , by multiplying each key vector $K _ { c } [ j , : ]$ by $Q _ { r } ^ { \intercal }$ , as in line $1 1 - 1 3$ . Finally, we extract the corresponding attention score via the relative position matrix $\pmb { \delta }$ as the index, as in line $1 4 - 1 8$ . In this way, we do not need to allocate memory to store a relative position embedding for each query and thus reduce the space complexity to $O ( k d )$ (for storing $K _ { r }$ and $Q _ { r }$ ). + +# 3.2 ENHANCED MASK DECODER ACCOUNTS FOR ABSOLUTE WORD POSITIONS + +DeBERTa is pretrained using MLM, where a model is trained to use the words surrounding a mask token to predict what the masked word should be. DeBERTa uses the content and position information of the context words for MLM. The disentangled attention mechanism already considers the contents and relative positions of the context words, but not the absolute positions of these words, which in many cases are crucial for the prediction. + +Given a sentence “a new store opened beside the new mall” with the words “store” and “mall” masked for prediction. Using only the local context (e.g., relative positions and surrounding words) is insufficient for the model to distinguish store and mall in this sentence, since both follow the word new with the same relative positions. To address this limitation, the model needs to take into account absolute positions, as complement information to the relative positions. For example, the subject of the sentence is “store” not “mall”. These syntactical nuances depend, to a large degree, upon the words’ absolute positions in the sentence. + +There are two methods of incorporating absolute positions. The BERT model incorporates absolute positions in the input layer. In DeBERTa, we incorporate them right after all the Transformer layers but before the softmax layer for masked token prediction, as shown in Figure 2. In this way, DeBERTa captures the relative positions in all the Transformer layers and only uses absolute positions as complementary information when decoding the masked words. Thus, we call DeBERTa’s decoding component an Enhanced Mask Decoder (EMD). In the empirical study, we compare these two methods of incorporating absolute positions and observe that EMD works much better. We conjecture that the early incorporation of absolute positions used by BERT might undesirably hamper the model from learning sufficient information of relative positions. In addition, EMD also enables us to introduce other useful information, in addition to positions, for pre-training. We leave it to future work. + +# 4 SCALE INVARIANT FINE-TUNING + +This section presents a new virtual adversarial training algorithm, Scale-invariant-Fine-Tuning (SiFT), a variant to the algorithm described in Miyato et al. (2018); Jiang et al. (2020), for fine-tuning. + +Virtual adversarial training is a regularization method for improving models’ generalization. It does so by improving a model’s robustness to adversarial examples, which are created by making small perturbations to the input. The model is regularized so that when given a task-specific example, the model produces the same output distribution as it produces on an adversarial perturbation of that example. + +For NLP tasks, the perturbation is applied to the word embedding instead of the original word sequence. However, the value ranges (norms) of the embedding vectors vary among different words and models. The variance gets larger for bigger models with billions of parameters, leading to some instability of adversarial training. + +Inspired by layer normalization (Ba et al., 2016), we propose the SiFT algorithm that improves the training stability by applying the perturbations to the normalized word embeddings. Specifically, when fine-tuning DeBERTa to a downstream NLP task in our experiments, SiFT first normalizes the word embedding vectors into stochastic vectors, and then applies the perturbation to the normalized embedding vectors. We find that the normalization substantially improves the performance of the fine-tuned models. The improvement is more prominent for larger DeBERTa models. Note that we only apply SiFT to $\mathrm { D e B E R T a } _ { 1 . 5 B }$ on SuperGLUE tasks in our experiments and we will provide a more comprehensive study of SiFT in our future work. + +# 5 EXPERIMENT + +This section reports DeBERTa results on various NLU tasks. + +# 5.1 MAIN RESULTS ON NLU TASKS + +Following previous studies of PLMs, we report results using large and base models. + +5.1.1 PERFORMANCE ON LARGE MODELS +Table 1: Comparison results on the GLUE development set. + +
ModelCoLAMcc|QQPAccMNLI-m/mmAccSST-2|AccSTS-BCorrQNLI|AccRTEAccMRPCAccAvg.
BERTlarge60.691.386.6/-93.290.092.370.488.084.05
RoBERTalarge68.092.290.2/90.296.492.493.986.690.988.82
XLNetlarge69.092.390.8/90.897.092.594.985.990.889.15
ELECTRAlarge69.192.490.9/-96.992.695.088.090.889.46
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
+ +We pre-train our large models following the setting of BERT (Devlin et al., 2019), except that we use the BPE vocabulary of Radford et al. (2019); Liu et al. (2019c). For training data, we use Wikipedia (English Wikipedia dump3; 12GB), BookCorpus (Zhu et al., 2015) (6GB), OPENWEBTEXT (public Reddit content (Gokaslan & Cohen, 2019); 38GB), and STORIES (a subset of CommonCrawl (Trinh & Le, 2018); 31GB). The total data size after data deduplication (Shoeybi et al., 2019) is about 78G. Refer to Appendix A.2 for a detailed description of the pre-training dataset. + +We use 6 DGX-2 machines (96 V100 GPUs) to train the models. A single model trained with 2K batch size and 1M steps takes about 20 days. Refer to Appendix A for the detailed hyperparamters. + +We summarize the results on eight NLU tasks of GLUE (Wang et al., 2019b) in Table 1, where DeBERTa is compared DeBERTa with previous Transform-based PLMs of similar structures (i.e. 24 layers with hidden size of 1024) including BERT, RoBERTa, XLNet, ALBERT and ELECTRA. Note that RoBERTa, XLNet and ELECTRA are pre-trained on 160G training data while DeBERTa is pretrained on 78G training data. RoBERTa and XLNet are pre-trained for 500K steps with 8K samples in a step, which amounts to four billion training samples. DeBERTa is pre-trained for one million steps with 2K samples in each step. This amounts to two billion training samples, approximately half of either RoBERTa or XLNet. Table 1 shows that compared to BERT and RoBERTa, DeBERTa performs consistently better across all the tasks. Meanwhile, DeBERTa outperforms XLNet in six out of eight tasks. Particularly, the improvements on MRPC ( $1 . 1 \%$ over XLNet and $1 . 0 \%$ over RoBERTa), RTE $2 . 4 \%$ over XLNet and $1 . 7 \%$ over RoBERTa) and CoLA ( $1 . 5 \%$ over XLNet and $2 . 5 \%$ over RoBERTa) are significant. DeBERTa also outperforms other SOTA PLMs, i.e., ELECTRAlarge and $\mathbf { X L N e t } _ { \mathrm { l a r g e } }$ , in terms of average GLUE score. + +Among all GLUE tasks, MNLI is most often used as an indicative task to monitor the research progress of PLMs. DeBERTa significantly outperforms all existing PLMs of similar size on MNLI and creates a new state of the art. + +Table 2: Results on MNLI in/out-domain, SQuAD v1.1, SQuAD v2.0, RACE, ReCoRD, SWAG, CoNLL 2003 NER development set. Note that missing results in literature are signified by “-”. + +
ModelMNLI-m/mm|SQuAD v1.1 SQuAD v2.0|RACE|Acc F1/EM F1/EMAccReCoRDF1/EM|SWAGNERAcc F1
BERTlarge86.6/-90.9/84.1 81.8/79.072.0186.692.8
ALBERTtarge86.5/-91.8/85.2 84.9/81.875.211-
RoBERTalarge90.2/90.294.6/88.9 89.4/86.583.290.6/90.089.993.4
XLNetlarge90.8/90.895.1/89.7 90.6/87.985.4---
Megatron336M89.7/90.094.2/88.0 88.1/84.883.0111
DeBERTalarge91.1/91.195.5/90.1 90.7/88.086.891.4/91.090.893.8
ALBERTxxlarge90.8/-94.8/89.3 90.2/87.486.51-
Megatron1.3B90.9/91.094.9/89.1 90.2/87.187.3-1-
Megatron3.9B91.4/91.495.5/90.0 91.2/88.589.5111
+ +In addition to GLUE, DeBERTa is evaluated on three categories of NLU benchmarks: (1) Question Answering: SQuAD v1.1 (Rajpurkar et al., 2016), SQuAD v2.0 (Rajpurkar et al., 2018), RACE (Lai et al., 2017), ReCoRD (Zhang et al., 2018) and SWAG (Zellers et al., 2018); (2) Natural Language Inference: MNLI (Williams et al., 2018); and (3) NER: CoNLL-2003. For comparison, we include ALBERTxxlarge (Lan et al., 2019) 4 and Megatron (Shoeybi et al., 2019) with three different model sizes, denoted as Megatron336M, Megatron $\cdot 1 . 3 \mathrm { B }$ and Megatron3.9B, respectively, which are trained using the same dataset as RoBERTa. Note that Megatron336M has a similar model size as other models mentioned above5. + +We summarize the results in Table 2. Compared to the previous SOTA PLMs with a similar model size (i.e., BERT, RoBERTa, XLNet, ALBERTlarge, and Megatron336M), DeBERTa shows superior performance in all seven tasks. Taking the RACE benchmark as an example, DeBERTa significantly outperforms XLNet by $+ 1 . 4 \%$ $8 6 . 8 \%$ vs. $8 5 . 4 \%$ ). Although Megatron $1 . 3 \mathrm { B }$ is three times larger than DeBERTa, DeBERTa outperforms it in three of the four benchmarks. We further report DeBERTa on text generation tasks in Appendix A.4. + +# 5.1.2 PERFORMANCE ON BASE MODELS + +Our setting for base model pre-training is similar to that for large models. The base model structure follows that of the BERT base model, i.e., $L = 1 2 , H = 7 6 8 , A = 1 2$ . We use 4 DGX-2 with 64 V100 GPUs to train the base model. It takes 10 days to finish a single pre-training of 1M training steps with batch size 2048. We train DeBERTa using the same 78G dataset, and compare it to RoBERTa and XLNet trained on 160G text data. + +We summarize the base model results in Table 3. Across all three tasks, DeBERTa consistently outperforms RoBERTa and XLNet by a larger margin than that in large models. For example, on MNLI-m, $\mathrm { D e B E R T a _ { b a s e } }$ obtains $+ 1 . 2 \%$ $8 8 . 8 \%$ vs. $8 7 . 6 \%$ ) over $\mathrm { R o B E R T a _ { b a s e } }$ , and $+ 2 \%$ $8 8 . 8 \%$ vs. $8 6 . 8 \%$ ) over $\mathbf { X L N e t } _ { \mathrm { b a s e } }$ . + +Table 3: Results on MNLI in/out-domain $\left( \mathrm { m } / \mathrm { m m } \right)$ ), SQuAD v1.1 and $\mathrm { v } 2 . 0$ development set. + +
ModelMNLI-m/mm (Acc)SQuAD v1.1 (F1/EM)SQuAD v2.0 (F1/EM)
RoBERTabase87.6/-91.5/84.683.7/80.5
XLNetbase86.8/---/80.2
DeBERTabase88.8/88.593.1/87.286.2/83.1
+ +# 5.2 MODEL ANALYSIS + +In this section, we first present an ablation study to quantify the relative contributions of different components introduced in DeBERTa. Then, we study the convergence property to characterize the model training efficiency. We run experiments for analysis using the base model setting: a model is pre-trained using the Wikipedia $^ +$ Bookcorpus dataset for 1M steps with batch size 256 in 7 days on a DGX-2 machine with 16 V-100 GPUs. Due to space limit, we visualize the different attention patterns of DeBERTa and RoBERTa in Appendix A.7. + +# 5.2.1 ABLATION STUDY + +To verify our experimental setting, we pre-train the RoBERTa base model from scratch. The re-pretrained RoBERTa model is denoted as RoBERTa-ReImpbase. To investigate the relative contributions of different components in DeBERTa, we develop three variations: + +• -EMD is the DeBERTa base model without EMD. • -C2P is the DeBERTa base model without the content-to-position term ((c) in Eq. 4). • -P2C is the DeBERTa base model without the position-to-content term ((b) in Eq. 4). As XLNet also uses the relative position bias, this model is close to XLNet plus EMD. + +Table 4: Ablation study of the DeBERTa base model. + +
ModelMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EMRACE Acc
BERTbase Devlin et al. (2019) RoBERTabase Liu et al. (2019c)84.3/84.7 84.7/-88.5/81.0 90.6/-76.3/73.7 79.7/-65.0 65.6
XLNetbase Yang et al. (2019) RoBERTa-ReImpbase85.8/85.4 84.9/85.1-/- 91.1/84.881.3/78.5 79.5/76.066.7 66.8
DeBERTabase86.3/86.2 86.1/86.192.1/86.182.5/79.371.7
-EMD -C2P85.9/85.791.8/85.8 91.6/85.881.3/78.0 81.3/78.370.3 69.3
-P2C86.0/85.891.7/85.780.8/77.669.6
-(EMD+C2P)85.8/85.991.5/85.380.3/77.268.1
-(EMD+P2C)85.8/85.891.3/85.180.2/77.168.5
+ +Table 4 summarizes the results on four benchmark datasets. First, RoBERTa-ReImp performs similarly to RoBERTa across all benchmark datasets, verfiying that our setting is reasonable. Second, we see that removing any one component in DeBERTa results in a sheer performance drop. For instance, removing EMD (-EMD) results in a loss of $1 . 4 \%$ $7 1 . 7 \%$ vs. $7 0 . 3 \%$ ) on RACE, $0 . 3 \%$ $( 9 2 . 1 \%$ vs. $9 1 . 8 \%$ ) on SQuAD v1.1, $1 . 2 \%$ $8 2 . 5 \%$ vs. $8 1 . 3 \%$ ) on $\mathrm { S Q u A D ~ v } 2 . 0$ , $0 . 2 \%$ ( $8 6 . 3 \%$ vs. $8 6 . 1 \% )$ and $0 . 1 \%$ $8 6 . 2 \%$ vs. $8 6 . 1 \%$ ) on MNLI- $\cdot \mathrm { m } / \mathrm { m m }$ , respectively. Similarly, removing either content-to-position or position-to-content leads to inferior performance in all the benchmarks. As expected, removing two components results in even more substantial loss in performance. + +# 5.3 SCALE UP TO 1.5 BILLION PARAMETERS + +Larger pre-trained models have shown better generalization results (Raffel et al., 2020; Brown et al., 2020; Shoeybi et al., 2019). Thus, we have built a larger version of DeBERTa with 1.5 billion parameters, denoted as $\mathrm { D e B E R T a } _ { 1 . 5 B }$ . The model consists of 48 layers with a hidden size of 1,536 and 24 attention heads 6. DeBERTa $_ { 1 . 5 B }$ is trained on a pre-training dataset amounting to 160G, similar to that in Liu et al. (2019c), with a new vocabulary of size 128K constructed using the dataset. + +To train $\mathrm { D e B E R T a } _ { 1 . 5 B }$ , we optimize the model architecture as follows. First, we share the projection matrices of relative position embedding $W _ { k , r } , W _ { q , r }$ with $W _ { k , c } , W _ { q , c }$ , respectively, in all attention layers to reduce the number of model parameters. Our ablation study in Table 13 on base models shows that the projection matrix sharing reduces the model size while retaining the model performance. + +Second, a convolution layer is added aside the first Transformer layer to induce n-gram knowledge of sub-word encodings and their outputs are summed up before feeding to the next Transformer layer 7. + +Table 5 reports the test results of SuperGLUE (Wang et al., 2019a) which is one of the most popular NLU benchmarks. SuperGLUE consists of a wide of NLU tasks, including Question Answering (Clark et al., 2019; Khashabi et al., 2018; Zhang et al., 2018), Natural Language Inference (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009), Word Sense Disambiguation (Pilehvar & Camacho-Collados, 2019), and Reasoning (Levesque et al., 2011; Roemmele et al., 2011). Since its release in 2019, top research teams around the world have been developing large-scale PLMs that have driven striking performance improvement on SuperGLUE. + +The significant performance boost due to scaling DeBERTa to a larger model makes the single DeBERTa1.5B surpass the human performance on SuperGLUE for the first time in terms of macroaverage score (89.9 versus 89.8) as of December 29, 2020, and the ensemble DeBERTa model $( \mathrm { D e B E R T a } _ { E n s e m b l e } )$ sits atop the SuperGLUE benchmark rankings as of January 6, 2021, outperforming the human baseline by a decent margin (90.3 versus 89.8). Compared to T5, which consists of 11 billion parameters, the 1.5-billion-parameter DeBERTa is much more energy efficient to train and maintain, and it is easier to compress and deploy to apps of various settings. + +Table 5: SuperGLUE test set results scored using the SuperGLUE evaluation server. All the results are obtained from https://super.gluebenchmark.com on January 6, 2021. + +
ModelBoolQAccCBF1/Acc|COPA|AccMultiRCF1a/EMReCoRDF1/EMRTEAccWiCAccAccWSC|AverageScore
RoBERTalarge87.1[90.5/95.290.684.4/52.590.6/90.088.269.989.084.6
NEXHA-Plus87.894.4/96.093.684.6/55.190.1/89.689.174.693.286.7
T511B91.293.9/96.894.888.1/63.394.1/93.492.576.993.889.3
T511B+Meena91.395.8/97.697.488.3/63.094.2/93.592.777.995.990.2
Human89.095.8/98.9100.081.8/51.991.7/91.393.680.0100.089.8
DeBERTa1.5B+SiFTDeBERTaEnsemble90.490.494.9/97.295.7/97.696.898.488.2/63.788.2/63.794.5/94.194.5/94.193.293.276.495.995.989.990.3
77.5
+ +# 6 CONCLUSIONS + +This paper presents a new model architecture DeBERTa (Decoding-enhanced BERT with disentangled attention) that improves the BERT and RoBERTa models using two novel techniques. The first is the disentangled attention mechanism, where each word is represented using two vectors that encode its content and position, respectively, and the attention weights among words are computed using disentangled matrices on their contents and relative positions, respectively. The second is an enhanced mask decoder which incorporates absolute positions in the decoding layer to predict the masked tokens in model pre-training. In addition, a new virtual adversarial training method is used for fine-tuning to improve model’s generalization on downstream tasks. + +We show through a comprehensive empirical study that these techniques significantly improve the efficiency of model pre-training and the performance of downstream tasks. The DeBERTa model with 1.5 billion parameters surpasses the human performance on the SuperGLUE benchmark for the first time in terms of macro-average score. + +DeBERTa surpassing human performance on SuperGLUE marks an important milestone toward general AI. Despite its promising results on SuperGLUE, the model is by no means reaching the human-level intelligence of NLU. Humans are extremely good at leveraging the knowledge learned from different tasks to solve a new task with no or little task-specific demonstration. This is referred to as compositional generalization, the ability to generalize to novel compositions (new tasks) of familiar constituents (subtasks or basic problem-solving skills). Moving forward, it is worth exploring how to make DeBERTa incorporate compositional structures in a more explicit manner, which could allow combining neural and symbolic computation of natural language similar to what humans do. + +# 7 ACKNOWLEDGMENTS + +We thank Jade Huang and Nikos Karampatziakis for proofreading the paper and providing insightful comments. We thank Yoyo Liang, Saksham Singhal, Xia Song, and Saurabh Tiwary for their help with large-scale model training. We also thank the anonymous reviewers for valuable discussions. + +# REFERENCES + +Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint arXiv:1607.06450, 2016. + +Roy Bar-Haim, Ido Dagan, Bill Dolan, Lisa Ferro, and Danilo Giampiccolo. The second PASCAL recognising textual entailment challenge. In Proceedings of the Second PASCAL Challenges Workshop on Recognising Textual Entailment, 01 2006. + +Iz Beltagy, Matthew E Peters, and Arman Cohan. Longformer: The long-document transformer. arXiv preprint arXiv:2004.05150, 2020. + +Luisa Bentivogli, Ido Dagan, Hoa Trang Dang, Danilo Giampiccolo, and Bernardo Magnini. The fifth pascal recognizing textual entailment challenge. In In Proc Text Analysis Conference (TAC’09, 2009. + +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. + +Daniel Cer, Mona Diab, Eneko Agirre, Inigo Lopez-Gazpio, and Lucia Specia. Semeval-2017 task 1: Semantic textual similarity-multilingual and cross-lingual focused evaluation. arXiv preprint arXiv:1708.00055, 2017. + +Kezhen Chen, Qiuyuan Huang, Hamid Palangi, Paul Smolensky, Kenneth D Forbus, and Jianfeng Gao. Natural-to formal-language generation using tensor product representations. arXiv preprint arXiv:1910.02339, 2019. + +Rewon Child, Scott Gray, Alec Radford, and Ilya Sutskever. Generating long sequences with sparse transformers. arXiv preprint arXiv:1904.10509, 2019. + +Christopher Clark, Kenton Lee, Ming-Wei Chang, Tom Kwiatkowski, Michael Collins, and Kristina Toutanova. BoolQ: Exploring the surprising difficulty of natural yes/no questions. In Proceedings of NAACL-HLT 2019, 2019. + +Kevin Clark, Minh-Thang Luong, Quoc V. Le, and Christopher D. Manning. ELECTRA: Pre-training text encoders as discriminators rather than generators. In ICLR, 2020. + +Ido Dagan, Oren Glickman, and Bernardo Magnini. The pascal recognising textual entailment challenge. In Proceedings of the First International Conference on Machine Learning Challenges: Evaluating Predictive Uncertainty Visual Object Classification, and Recognizing Textual Entailment, MLCW’05, Berlin, Heidelberg, 2006. + +Zihang Dai, Zhilin Yang, Yiming Yang, Jaime G Carbonell, Quoc Le, and Ruslan Salakhutdinov. Transformer-xl: Attentive language models beyond a fixed-length context. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pp. 2978–2988, 2019. + +Marie-Catherine De Marneffe, Mandy Simons, and Judith Tonhauser. The commitmentbank: Investigating projection in naturally occurring discourse. In proceedings of Sinn und Bedeutung, volume 23, pp. 107–124, 2019. + +Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pp. 4171–4186, 2019. + +William B Dolan and Chris Brockett. Automatically constructing a corpus of sentential paraphrases. In Proceedings of the Third International Workshop on Paraphrasing (IWP2005), 2005. + +Li Dong, Nan Yang, Wenhui Wang, Furu Wei, Xiaodong Liu, Yu Wang, Jianfeng Gao, Ming Zhou, and Hsiao-Wuen Hon. Unified language model pre-training for natural language understanding and generation. In Advances in Neural Information Processing Systems, pp. 13042–13054, 2019. + +Danilo Giampiccolo, Bernardo Magnini, Ido Dagan, and Bill Dolan. The third PASCAL recognizing textual entailment challenge. In Proceedings of the ACL-PASCAL Workshop on Textual Entailment and Paraphrasing, pp. 1–9, Prague, June 2007. Association for Computational Linguistics. URL https://www.aclweb.org/anthology/W07-1401. + +Aaron Gokaslan and Vanya Cohen. Openwebtext corpus. http://Skylion007.github.io, 2019. + +Pengcheng He, Xiaodong Liu, Weizhu Chen, and Jianfeng Gao. A hybrid neural network model for commonsense reasoning. arXiv preprint arXiv:1907.11983, 2019a. + +Pengcheng He, Yi Mao, Kaushik Chakrabarti, and Weizhu Chen. X-sql: reinforce schema representation with context. arXiv preprint arXiv:1908.08113, 2019b. + +Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Ian Simon, Curtis Hawthorne, Noam Shazeer, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music transformer: Generating music with long-term structure. 2018. + +Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Tuo Zhao. SMART: Robust and efficient fine-tuning for pre-trained natural language models through principled regularized optimization. In ACL, July 2020. doi: 10.18653/v1/2020.acl-main.197. + +Mandar Joshi, Danqi Chen, Yinhan Liu, Daniel S Weld, Luke Zettlemoyer, and Omer Levy. Spanbert: Improving pre-training by representing and predicting spans. Transactions of the Association for Computational Linguistics, 8:64–77, 2020. + +Daniel Khashabi, Snigdha Chaturvedi, Michael Roth, Shyam Upadhyay, and Dan Roth. Looking beyond the surface: A challenge set for reading comprehension over multiple sentences. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers), pp. 252–262, 2018. + +Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. + +Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. In International Conference on Learning Representations, 2019. + +Guokun Lai, Qizhe Xie, Hanxiao Liu, Yiming Yang, and Eduard Hovy. Race: Large-scale reading comprehension dataset from examinations. In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, pp. 785–794, 2017. + +Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Soricut. Albert: A lite bert for self-supervised learning of language representations. In International Conference on Learning Representations, 2019. + +Hector Levesque, Ernest Davis, and Leora Morgenstern. The winograd schema challenge. In Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning, 2012. + +Hector J Levesque, Ernest Davis, and Leora Morgenstern. The Winograd schema challenge. In AAAI Spring Symposium: Logical Formalizations of Commonsense Reasoning, volume 46, pp. 47, 2011. + +Liyuan Liu, Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Jiawei Han. On the variance of the adaptive learning rate and beyond. In International Conference on Learning Representations, 2019a. + +Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-task deep neural networks for natural language understanding. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pp. 4487–4496, Florence, Italy, July 2019b. Association for Computational Linguistics. URL https://www.aclweb.org/anthology/P19-1441. + +Xiaodong Liu, Hao Cheng, Pengcheng He, Weizhu Chen, Yu Wang, Hoifung Poon, and Jianfeng Gao. Adversarial training for large neural language models. arXiv preprint arXiv:2004.08994, 2020. + +Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:1907.11692, 2019c. + +Ilya Loshchilov and Frank Hutter. Fixing weight decay regularization in adam. 2018. + +Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture models. arXiv, pp. arXiv–1609, 2016. + +Shervin Minaee, Nal Kalchbrenner, Erik Cambria, Narjes Nikzad, Meysam Chenaghlu, and Jianfeng Gao. Deep learning based text classification: A comprehensive review. arXiv preprint arXiv:2004.03705, 2020. + +Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. IEEE transactions on pattern analysis and machine intelligence, 41(8):1979–1993, 2018. + +Mohammad Taher Pilehvar and Jose Camacho-Collados. Wic: the word-in-context dataset for evaluating context-sensitive meaning representations. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pp. 1267–1273, 2019. + +Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. OpenAI Blog, 1(8), 2019. + +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. Journal of Machine Learning Research, 21(140):1–67, 2020. URL http://jmlr.org/papers/v21/20-074.html. + +Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. SQuAD: $^ { 1 0 0 , 0 0 0 + }$ questions for machine comprehension of text. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, November 2016. + +Pranav Rajpurkar, Robin Jia, and Percy Liang. Know what you don’t know: Unanswerable questions for squad. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), pp. 784–789, 2018. + +Melissa Roemmele, Cosmin Adrian Bejan, and Andrew S. Gordon. Choice of plausible alternatives: An evaluation of commonsense causal reasoning. In 2011 AAAI Spring Symposium Series, 2011. + +Imanol Schlag, Paul Smolensky, Roland Fernandez, Nebojsa Jojic, Jürgen Schmidhuber, and Jianfeng Gao. Enhancing the transformer with explicit relational encoding for math problem solving. arXiv preprint arXiv:1910.06611, 2019. + +Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), pp. 464–468, 2018. + +Tao Shen, Yi Mao, Pengcheng He, Guodong Long, Adam Trischler, and Weizhu Chen. Exploiting structured knowledge in text via graph-guided representation learning. arXiv preprint arXiv:2004.14224, 2020. + +Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catanzaro. Megatron-lm: Training multi-billion parameter language models using gpu model parallelism. arXiv preprint arXiv:1909.08053, 2019. + +Paul Smolensky. Tensor product variable binding and the representation of symbolic structures in connectionist systems. Artificial intelligence, 46(1-2):159–216, 1990. + +Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher D Manning, Andrew $\mathrm { N g }$ , and Christopher Potts. Recursive deep models for semantic compositionality over a sentiment treebank. In Proceedings of the 2013 conference on empirical methods in natural language processing, pp. 1631–1642, 2013. + +Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu, Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration. arXiv preprint arXiv:1904.09223, 2019. + +Trieu H Trinh and Quoc V Le. A simple method for commonsense reasoning. arXiv preprint arXiv:1806.02847, 2018. + +Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information processing systems, pp. 5998–6008, 2017. + +Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Superglue: A stickier benchmark for general-purpose language understanding systems. In Advances in neural information processing systems, pp. 3266–3280, 2019a. + +Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Glue: A multi-task benchmark and analysis platform for natural language understanding. In 7th International Conference on Learning Representations, ICLR 2019, 2019b. + +Wei Wang, Bin Bi, Ming Yan, Chen Wu, Zuyi Bao, Liwei Peng, and Luo Si. Structbert: Incorporating language structures into pre-training for deep language understanding. arXiv preprint arXiv:1908.04577, 2019c. + +Alex Warstadt, Amanpreet Singh, and Samuel R Bowman. Neural network acceptability judgments. arXiv preprint arXiv:1805.12471, 2018. + +Adina Williams, Nikita Nangia, and Samuel Bowman. A broad-coverage challenge corpus for sentence understanding through inference. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers), pp. 1112–1122. Association for Computational Linguistics, 2018. URL http://aclweb.org/anthology/N18-1101. + +Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le. Xlnet: Generalized autoregressive pretraining for language understanding. In Advances in neural information processing systems, pp. 5754–5764, 2019. + +Rowan Zellers, Yonatan Bisk, Roy Schwartz, and Yejin Choi. Swag: A large-scale adversarial dataset for grounded commonsense inference. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pp. 93–104, 2018. + +Sheng Zhang, Xiaodong Liu, Jingjing Liu, Jianfeng Gao, Kevin Duh, and Benjamin Van Durme. ReCoRD: Bridging the gap between human and machine commonsense reading comprehension. arXiv preprint 1810.12885, 2018. + +Yukun Zhu, Ryan Kiros, Rich Zemel, Ruslan Salakhutdinov, Raquel Urtasun, Antonio Torralba, and Sanja Fidler. Aligning books and movies: Towards story-like visual explanations by watching movies and reading books. In Proceedings of the IEEE international conference on computer vision, pp. 19–27, 2015. + +# A APPENDIX + +A.1 DATASET +Table 6: Summary information of the NLP application benchmarks. + +
CorpusTask#Train #Dev#Test #Label Metrics
General Language Understanding Evaluation (GLUE)
CoLAAcceptability8.5k1k1k2Matthews corr
SSTSentiment67k8721.8k2Accuracy
MNLINLI393k20k20k3Accuracy
RTENLI2.5k2763k2Accuracy
WNLINLI634711462Accuracy
QQPParaphrase364k40k391k2Accuracy/F1
MRPCParaphrase3.7k4081.7k2Accuracy/F1
QNLIQA/NLI108k5.7k5.7k2Accuracy
STS-BSimilarity7k1.5k1.4k1Pearson/Spearman corr
SuperGLUE
WSCCoreference554k1041462Accuracy
BoolQQA9,4273,2703,2452Accuracy
COPAQA400k1005002Accuracy
CBNLI250572503Accuracy/F1
RTENLI2.5k2763k2Accuracy
WiCWSD2.5k2763k2Accuracy
ReCoRDMRC101k10k10k-Exact Match (EM)/F1
MultiRCMultiple choice5,1009531,800Exact Match (EM)/F1
Question Answering
SQuAD v1.1MRC87.6k10.5k9.5kExact Match (EM)/F1
SQuAD v2.0MRC130.3k11.9k8.9k-ExactMatch (EM)/F1
RACEMRC87,8664,8874,9344Accuracy
SWAGMultiple choice73.5k20k20k4Accuracy
Token Classification
CoNLL 2003NER14,9873,4663,6848F1
+ +‚ GLUE. The General Language Understanding Evaluation (GLUE) benchmark is a collection of nine natural language understanding (NLU) tasks. As shown in Table 6, it includes question answering (Rajpurkar et al., 2016), linguistic acceptability (Warstadt et al., 2018), sentiment analysis (Socher et al., 2013), text similarity (Cer et al., 2017), paraphrase detection (Dolan & Brockett, 2005), and natural language inference (NLI) (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009; Levesque et al., 2012; Williams et al., 2018). The diversity of the tasks makes GLUE very suitable for evaluating the generalization and robustness of NLU models. + +‚ SuperGLUE. SuperGLUE is an extension of the GLUE benchmark, but more difficult, which is a collection of eight NLU tasks. It covers a various of tasks including question answering (Zhang et al., 2018; Clark et al., 2019; Khashabi et al., 2018), natural language inference (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009; De Marneffe et al., 2019), coreference resolution (Levesque et al., 2012) and word sense disambiguation (Pilehvar & Camacho-Collados, 2019). + +‚ RACE is a large-scale machine reading comprehension dataset, collected from English examinations in China, which are designed for middle school and high school students (Lai et al., 2017). + +‚ SQuAD v1.1/v2.0 is the Stanford Question Answering Dataset (SQuAD) v1.1 and v2.0 (Rajpurkar et al., 2016; 2018) are popular machine reading comprehension benchmarks. Their passages come from approximately 500 Wikipedia articles and the questions and answers are obtained by crowdsourcing. The SQuAD $\mathrm { v } 2 . 0$ dataset includes unanswerable questions about the same paragraphs. + +‚ SWAG is a large-scale adversarial dataset for the task of grounded commonsense inference, which unifies natural language inference and physically grounded reasoning (Zellers et al., 2018). SWAG consists of $1 1 3 \mathrm { k }$ multiple choice questions about grounded situations. + +‚ CoNLL 2003 is an English dataset consisting of text from a wide variety of sources. It has 4 types of named entity. + +# A.2 PRE-TRAINING DATASET + +For DeBERTa pre-training, we use Wikipedia (English Wikipedia dump8; 12GB), BookCorpus (Zhu et al., 2015) 9 (6GB), OPENWEBTEXT (public Reddit content (Gokaslan & Cohen, 2019); 38GB) and STORIES10 (a subset of CommonCrawl (Trinh & Le, 2018); 31GB). The total data size after data deduplication(Shoeybi et al., 2019) is about 78GB. For pre-training, we also sample $5 \%$ training data as the validation set to monitor the training process. Table 7 compares datasets used in different pre-trained models. + +Table 7: Comparison of the pre-training data. + +
ModelWiki+Book16GBOpenWebText38GBStories31GBCC-News76GBGiga516GBClueWeb19GBCommon Crawl110GB
BERT
XLNet(24号
RoBERTa
DeBERTaDeBERTa1.5B√√广
+ +# A.3 IMPLEMENTATION DETAILS + +Following RoBERTa (Liu et al., 2019c), we adopt dynamic data batching. We also include span masking (Joshi et al., 2020) as an additional masking strategy with the span size up to three. We list the detailed hyperparameters of pre-training in Table 8. For pre-training, we use Adam (Kingma & Ba, 2014) as the optimizer with weight decay (Loshchilov & Hutter, 2018). For fine-tuning, even though we can get better and robust results with RAdam(Liu et al., 2019a) on some tasks, e.g. CoLA, RTE and RACE, we use Adam(Kingma & Ba, 2014) as the optimizer for a fair comparison. For fine-tuning, we train each task with a hyper-parameter search procedure, each run takes about 1-2 hours on a DGX-2 node. All the hyper-parameters are presented in Table 9. The model selection is based on the performance on the task-specific development sets. + +Our code is implemented based on Huggingface Transformers11, FairSeq12 and Megatron (Shoeybi et al., 2019)13. + +# A.3.1 PRE-TRAINING EFFICIENCY + +To investigate the efficiency of model pre-training, we plot the performance of the fine-tuned model on downstream tasks as a function of the number of pre-training steps. As shown in Figure 1, for RoBERTa-ReImpbase and $\mathrm { D e B E R T a } _ { b a s e }$ , we dump a checkpoint every 150K pre-training steps, and then fine-tune the checkpoint on two representative downstream tasks, MNLI and SQuAD v2.0, and then report the accuracy and F1 score, respectively. As a reference, we also report the final model performance of both the original $\mathrm { R o B E R T a } _ { b a s e }$ (Liu et al., 2019c) and $\mathtt { X L N e t } _ { b a s e }$ (Yang et al., 2019). The results show that $\mathrm { D e B E R T a } _ { b a s e }$ consistently outperforms RoBERTa-ReImpbase during the course of pre-training. + +Table 8: Hyper-parameters for pre-training DeBERTa. + +
Hyper-parameter|DeBERTa1.5BDeBERTalargeDeBERTabaseDeBERTabase-ablation
Number of Layers48241212
Hidden size15361024768768
FNN inner hidden size6144409630723072
Attention Heads24161212
Attention Head size64646464
Dropout0.10.10.10.1
Warmup Steps10k10k10k10k
Learning Rates1.5e-42e-42e-41e-4
Batch Size2k2k2k256
Weight Decay0.010.010.010.01
Max Steps1M1M1M1M
Learning Rate DecayLinearLinearLinearLinear
Adam ∈1e-61e-61e-61e-6
Adam β10.90.90.90.9
Adam β20.9990.9990.9990.999
Gradient Clipping1.01.01.0
Number ofDGX-2 nodes1661.0
Training Time30 days20 days4 10 days1 7 days
+ +Table 9: Hyper-parameters for fine-tuning DeBERTa on down-streaming tasks. + +
Hyper-parameterDeBERTa1.5BDeBERTalargeDeBERTabase
Dropout of task layer Warmup Steps Learning Rates Batch Size Weight Decay Maximun Training Epochs Learning Rate Decay Adam ∈ Adam β1{0,0.15,0.3} {50,100,500,1000] {1e-6,3e-6, 5e-6} {16,32,64} 0.01 10 Linear 1e-6 0.9{0,0.1,0.15} {50,100,500,1000} {5e-6,8e-6, 9e-6, 1e-5} {16,32,48,64} 0.01 10 Linear 1e-6{0,0.1,0.15} {50,100,500,1000] {1.5e-5,2e-5, 3e-5,4e-5} {16,32,48,64} 10 Linear
+ +![](images/652fd2471aba260e4c3ad959ea124f7fa7de8dae5e26aa624be3a8a5b2263b86.jpg) +Figure 1: Pre-training performance curve between DeBERTa and its counterparts on the MNLI and SQuAD v2.0 development set. + +# A.4 MAIN RESULTS ON GENERATION TASKS + +In addition to NLU tasks, DeBERTa can also be extended to handle NLG tasks. To allow DeBERTa operating like an auto-regressive model for text generation, we use a triangular matrix for selfattention and set the upper triangular part of the self-attention mask to $- \infty$ , following Dong et al. (2019). + +We evaluate DeBERTa on the task of auto-regressive language model (ARLM) using Wikitext103 (Merity et al., 2016). To do so, we train a new version of DeBERTa, denoted as DeBERTa-MT. It is jointly pre-trained using the MLM and ARLM tasks as in UniLM (Dong et al., 2019). The pre-training hyper-parameters follows that of $\mathrm { D e B E R T a } _ { b a s e }$ except that we use fewer training steps (200k). For comparison, we use RoBERTa as baseline, and include GPT-2 and Transformer-XL as additional references. DeBERTa-AP is a variant of DeBERTa where absolute position embeddings are incorporated in the input layer as RoBERTa. For a fair comparison, all these models are base models pre-trained in a similar setting. + +Table 10: Language model results in perplexity (lower is better) on Wikitext-103 . + +
Model |RoBERTa|DeBERTa-AP|DeBERTa|DeBERTa-MT|GPT-2|Transformer-XL
Dev PPL21.620.720.519.5123.1
Test PPL21.620.019.919.537.5024
+ +Table 10 summarizes the results on Wikitext-103. We see that $\mathrm { D e B E R T a _ { b a s e } }$ obtains lower perplexities on both dev and test data, and joint training using MLM and ARLM reduces perplexity further. That DeBERTa-AP is inferior to DeBERTa indicates that it is more effective to incorporate absolute position embeddings of words in the decoding layer as the EMD in DeBERTa than in the input layer as RoBERTa. + +# A.5 HANDLING LONG SEQUENCE INPUT + +With relative position bias, we choose to truncate the maximum relative distance to $k$ as in equation 3. Thus in each layer, each token can attend directly to at most $2 ( k - 1 )$ tokens and itself. By stacking Transformer layers, each token in the l´th layer can attend to at most $( 2 k - 1 ) l$ tokens implicitly. Taking $\mathrm { D e B E R T a } _ { l a r g e }$ as an example, where $k = 5 1 2 , L = 2 4$ , in theory, the maximum sequence length that can be handled is 24,528. This is a byproduct benefit of our design choice and we find it beneficial for the RACE task. A comparison of long sequence effect on the RACE task is shown in Table 11. + +Table 11: The effect of handling long sequence input for RACE task with DeBERTa + +
Sequence length |Middle|High| AMiddleHigh|Accuracy
51276888.885.086.3
88.786.386.8
+ +Long sequence handling is an active research area. There have been a lot of studies where the Transformer architecture is extended for long sequence handling(Beltagy et al., 2020; Kitaev et al., 2019; Child et al., 2019; Dai et al., 2019). One of our future research directions is to extend DeBERTa to deal with extremely long sequences. + +# A.6 PERFORMANCE IMPROVEMENTS OF DIFFERENT MODEL SCALES + +In this subsection, we study the effect of different model sizes applied to large models on GLUE. Table 12 summarizes the results, showing that larger models can obtain a better result and SiFT also improves the model performance consistently. + +Table 12: Comparison results of DeBERTa models with different sizes on the GLUE development set. + +
ModelCoLA| Mcc|QQP AccMNLI-m/mml AccSST-2| AccSTS-B CorrQNLI AccRTE AccMRPC| AccAvg.
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
DeBERTa900M71.192.391.7/91.697.592.095.893.593.190.86
DeBERTa1.5B72.092.791.7/91.997.292.996.093.992.091.17
DeBERTa1.5B+SiFT73.593.092.0/92.197.593.296.596.593.291.93
+ +
ModelParametersMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EM
RoBERTa-ReImpbase120M84.9/85.191.1/84.879.5/76.0
DeBERTabase134M86.3/86.292.1/86.182.5/79.3
+ ShareProjection120M86.3/86.392.2/86.282.3/79.5
+ Conv122M86.3/86.592.5/86.482.5/79.7
+ 128k Vocab190M86.7/86.993.1/86.883.0/80.1
+ +Table 13: Ablation study of the additional modifications in $\mathrm { D e B E R T a } _ { 1 . 5 B }$ and $\mathrm { D e B E R T a _ { 9 0 0 M } }$ models. Note that we progressively add each component on the top of DeBE $\mathrm { R T a } _ { \mathrm { b a s e } }$ . + +# A.7 MODEL COMPLEXITY + +With the disentangled attention mechanism, we introduce three additional sets of parameters $W _ { q , r } , W _ { k , r } \in R ^ { d \times d }$ and $P \in R ^ { 2 k \times d }$ . The total increase in model parameters is $2 L \times d ^ { \bar { 2 } } + 2 k \times d$ For the large model $( d = 1 0 2 4 , L = 2 4 , k = 5 1 2 )$ q, this amounts to about $4 9 M$ additional parameters, an increase of $1 3 \%$ . For the base model $( d = 7 6 8 , L = 1 2 , k = 5 1 2 )$ , this amounts to $1 4 M$ additional parameters, an increase of $1 2 \%$ . However, by sharing the projection matrix between content and position embedding, i.e. $W _ { q , r } = W _ { q , c } , W _ { k , r } = W _ { k , c }$ , the number of parameters of DeBERTa is the same as RoBERTa. Our experiment on base model shows that the results are almost the same, as in Table 13. + +The additional computational complexity is $O ( N k d )$ due to the calculation of the additional positionto-content and content-to-position attention scores. Compared with BERT or RoBERTa, this increases the computational cost by $3 0 \%$ . Compared with XLNet which also uses relative position embedding, the increase of computational cost is about $1 5 \%$ . A further optimization by fusing the attention computation kernel can significantly reduce this additional cost. For $E M D$ , since the decoder in pre-training only reconstructs the masked tokens, it does not introduce additional computational cost for unmasked tokens. In the situation where $1 5 \%$ tokens are masked and we use only two decoder layers, the additional cost is $0 . 1 5 \times 2 / L$ which results in an additional computational cost of only $3 \%$ for base model( $L = 1 2$ ) and $2 \%$ for large model( $L = 2 4$ ) in EMD. + +# A.8 ADDITIONAL DETAILS OF ENHANCED MASK DECODER + +The structure of EMD is shown in Figure 2b. There are two inputs for EMD, (i.e., $I , H )$ . $H$ denotes the hidden states from the previous Transformer layer, and $I$ can be any necessary information for decoding, e.g., $H$ , absolute position embedding or output from previous EMD layer. $n$ denotes $n$ stacked layers of EMD where the output of each EMD layer will be the input $I$ for next EMD layer and the output of last EMD layer will be fed to the language model head directly. The $n$ layers can share the same weight. In our experiment we share the same weight for $n = 2$ layers to reduce the number of parameters and use absolute position embedding as $I$ of the first EMD layer. When $I = H$ and $n = 1$ , EMD is the same as the BERT decoder layer. However, EMD is more general and flexible as it can take various types of input information for decoding. + +# A.9 ATTENTION PATTERNS + +To visualize how DeBERTa operates differently from RoBERTa, we present in Figure 3 the attention patterns (taken in the last self-attention layers) of RoBERTa, DeBERTa and three DeBERTa variants. + +![](images/e717fa563f752c2273db2b0c80b1badbd8f6ac907edf9ffd947fbda30948455a.jpg) +Figure 2: Comparison of the decoding layer. + +![](images/8ae0415bd238e46819832892f3f63332c3206c7e1eda47022b508832813f8d77.jpg) +Figure 3: Comparison of attention patterns of the last layer among DeBERTa, RoBERTa and DeBERTa variants (i.e., DeBERTa without EMD, C2P and P2C respectively). + +We observe two differences. First, RoBERTa has a clear diagonal line effect for a token attending to itself. But this effect is not very visible in DeBERTa. This can be attributed to the use of EMD, in which the absolute position embedding is added to the hidden state of content as the query vector, as verified by the attention pattern of DeBERTa-EMD where the diagonal line effect is more visible than that of the original DeBERTa. Second, we observe vertical strips in the attention patterns of RoBERTa, which are mainly caused by high-frequent functional words or tokens (e.g., “a”, “the”, and punctuation). For DeBERTa, the strip only appears in the first column, which represents the [CLS] token. We conjecture that a dominant emphasis on [CLS] is desirable since the feature vector of [CLS] is often used as a contextual representation of the entire input sequence in downstream tasks. We also observe that the vertical strip effect is quite obvious in the patterns of the three DeBERTa variants. + +We present three additional examples to illustrate the different attention patterns of DeBERTa and RoBERTa in Figures 4 and 5. + +![](images/4ded61fc2789380f8e48a344e2832f08e141cde3be4b1e729272294ee12539bd.jpg) +Figure 4: Comparison on attention patterns of the last layer between DeBERTa and RoBERTa. + +![](images/797e974d1df596acf89f11dd99e90820f599208dca3b930e0dc2054ac2ea74aa.jpg) +Figure 5: Comparison on attention patterns of last layer between DeBERTa and its variants (i.e. DeBERTa without EMD, C2P and P2C respectively). + +# A.10 ACCOUNT FOR THE VARIANCE IN FINE-TUNING + +Accounting for the variance of different runs of fine-tuning, in our experiments, we always follow Liu et al. (2019c) to report the results on downstream tasks by averaging over five runs with different random initialization seeds, and perform significance test when comparing results. As the examples shown in Table 14, $\mathrm { D e B E R T a } _ { b a s e }$ significantly outperforms $\mathrm { R o B E R T a } _ { b a s e }$ $\dot { p }$ -value $< 0 . 0 5$ ). + +Table 14: Comparison of DeBERTa and RoBERTa on MNLI-matched and SQuAD v1.1. + +
Model MNLI-matched (Min/Max/Avg)SQuAD v1.1 (Min/Max/Avg)p-value
RoBERTabase84.7/85.0/84.990.8/91.3/91.10.02
DeBERTabase86.1/86.5/86.391.8/92.2/92.10.01
\ No newline at end of file diff --git a/parse/train/XPZIaotutsD/XPZIaotutsD_content_list.json b/parse/train/XPZIaotutsD/XPZIaotutsD_content_list.json new file mode 100644 index 0000000000000000000000000000000000000000..621de689dab34292b66b5ee37775e90555fc86cf --- /dev/null +++ b/parse/train/XPZIaotutsD/XPZIaotutsD_content_list.json @@ -0,0 +1,2291 @@ +[ + { + "type": "text", + "text": "DEBERTA: DECODING-ENHANCED BERT WITH DISENTANGLED ATTENTION ", + "text_level": 1, + "bbox": [ + 174, + 98, + 825, + 146 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Pengcheng $\\mathbf { H e } ^ { 1 }$ , Xiaodong $\\mathbf { L i u ^ { 2 } }$ , Jianfeng $\\mathbf { G a o ^ { 2 } }$ , Weizhu Chen1 1 Microsoft Dynamics 365 AI 2 Microsoft Research {penhe,xiaodl,jfgao,wzchen}@microsoft.com ", + "bbox": [ + 183, + 169, + 617, + 212 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "ABSTRACT ", + "text_level": 1, + "bbox": [ + 454, + 250, + 544, + 265 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "Recent progress in pre-trained neural language models has significantly improved the performance of many natural language processing (NLP) tasks. In this paper we propose a new model architecture DeBERTa (Decoding-enhanced BERT with disentangled attention) that improves the BERT and RoBERTa models using two novel techniques. The first is the disentangled attention mechanism, where each word is represented using two vectors that encode its content and position, respectively, and the attention weights among words are computed using disentangled matrices on their contents and relative positions, respectively. Second, an enhanced mask decoder is used to incorporate absolute positions in the decoding layer to predict the masked tokens in model pre-training. In addition, a new virtual adversarial training method is used for fine-tuning to improve models’ generalization. We show that these techniques significantly improve the efficiency of model pre-training and the performance of both natural language understand (NLU) and natural langauge generation (NLG) downstream tasks. Compared to RoBERTa-Large, a DeBERTa model trained on half of the training data performs consistently better on a wide range of NLP tasks, achieving improvements on MNLI by $+ 0 . 9 \\%$ $9 0 . 2 \\%$ vs. $9 1 . 1 \\%$ , on SQuAD $\\mathrm { v } 2 . 0$ by $+ 2 . 3 \\%$ $8 8 . 4 \\%$ vs. $9 0 . 7 \\% )$ and RACE by $+ 3 . 6 \\%$ ( $8 3 . 2 \\%$ vs. $8 6 . 8 \\%$ ). Notably, we scale up DeBERTa by training a larger version that consists of 48 Transform layers with 1.5 billion parameters. The significant performance boost makes the single DeBERTa model surpass the human performance on the SuperGLUE benchmark (Wang et al., 2019a) for the first time in terms of macro-average score (89.9 versus 89.8), and the ensemble DeBERTa model sits atop the SuperGLUE leaderboard as of January 6, 2021, outperforming the human baseline by a decent margin (90.3 versus 89.8). The pre-trained DeBERTa models and the source code were released at: https://github.com/microsoft/DeBERTa1. ", + "bbox": [ + 232, + 285, + 766, + 643 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "1 INTRODUCTION ", + "text_level": 1, + "bbox": [ + 176, + 679, + 336, + 694 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "The Transformer has become the most effective neural network architecture for neural language modeling. Unlike recurrent neural networks (RNNs) that process text in sequence, Transformers apply self-attention to compute in parallel every word from the input text an attention weight that gauges the influence each word has on another, thus allowing for much more parallelization than RNNs for large-scale model training (Vaswani et al., 2017). Since 2018, we have seen the rise of a set of large-scale Transformer-based Pre-trained Language Models (PLMs), such as GPT (Radford et al., 2019; Brown et al., 2020), BERT (Devlin et al., 2019), RoBERTa (Liu et al., 2019c), XLNet (Yang et al., 2019), UniLM (Dong et al., 2019), ELECTRA (Clark et al., 2020), T5 (Raffel et al., 2020), ALUM (Liu et al., 2020), StructBERT (Wang et al., 2019c) and ERINE (Sun et al., 2019) . These PLMs have been fine-tuned using task-specific labels and created new state of the art in many downstream natural language processing (NLP) tasks (Liu et al., 2019b; Minaee et al., 2020; Jiang et al., 2020; He et al., 2019a;b; Shen et al., 2020). ", + "bbox": [ + 174, + 713, + 825, + 878 + ], + "page_idx": 0 + }, + { + "type": "text", + "text": "In this paper, we propose a new Transformer-based neural language model DeBERTa (Decodingenhanced BERT with disentangled attention), which improves previous state-of-the-art PLMs using two novel techniques: a disentangled attention mechanism, and an enhanced mask decoder. ", + "bbox": [ + 174, + 103, + 823, + 146 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Disentangled attention. Unlike BERT where each word in the input layer is represented using a vector which is the sum of its word (content) embedding and position embedding, each word in DeBERTa is represented using two vectors that encode its content and position, respectively, and the attention weights among words are computed using disentangled matrices based on their contents and relative positions, respectively. This is motivated by the observation that the attention weight of a word pair depends on not only their contents but their relative positions. For example, the dependency between the words “deep” and “learning” is much stronger when they occur next to each other than when they occur in different sentences. ", + "bbox": [ + 174, + 165, + 825, + 276 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "Enhanced mask decoder. Like BERT, DeBERTa is pre-trained using masked language modeling (MLM). MLM is a fill-in-the-blank task, where a model is taught to use the words surrounding a mask token to predict what the masked word should be. DeBERTa uses the content and position information of the context words for MLM. The disentangled attention mechanism already considers the contents and relative positions of the context words, but not the absolute positions of these words, which in many cases are crucial for the prediction. Consider the sentence “a new store opened beside the new mall” with the italicized words “store” and “mall” masked for prediction. Although the local contexts of the two words are similar, they play different syntactic roles in the sentence. (Here, the subject of the sentence is “store” not “mall,” for example.) These syntactical nuances depend, to a large degree, upon the words’ absolute positions in the sentence, and so it is important to account for a word’s absolute position in the language modeling process. DeBERTa incorporates absolute word position embeddings right before the softmax layer where the model decodes the masked words based on the aggregated contextual embeddings of word contents and positions. ", + "bbox": [ + 174, + 295, + 825, + 476 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "In addition, we propose a new virtual adversarial training method for fine-tuning PLMs to downstream NLP tasks. The method is effective in improving models’ generalization. ", + "bbox": [ + 176, + 483, + 820, + 512 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "We show through a comprehensive empirical study that these techniques substantially improve the efficiency of pre-training and the performance of downstream tasks. In the NLU tasks, compared to RoBERTa-Large, a DeBERTa model trained on half the training data performs consistently better on a wide range of NLP tasks, achieving improvements on MNLI by $+ 0 . 9 \\%$ $9 0 . 2 \\%$ vs. $9 1 . 1 \\%$ ), on SQuAD v2.0 by $+ 2 . 3 \\% ( 8 8 . 4 \\%$ vs. $9 0 . 7 \\%$ ), and RACE by $+ 3 . 6 \\%$ ( $8 3 . 2 \\%$ vs. $8 6 . 8 \\%$ ). In the NLG tasks, DeBERTa reduces the perplexity from 21.6 to 19.5 on the Wikitext-103 dataset. We further scale up DeBERTa by pre-training a larger model that consists of 48 Transformer layers with 1.5 billion parameters. The single 1.5B-parameter DeBERTa model substantially outperforms T5 with 11 billion parameters on the SuperGLUE benchmark (Wang et al., 2019a) by $0 . 6 \\% ( 8 9 . 3 \\%$ vs. $8 9 . 9 \\%$ ), and surpasses the human baseline (89.9 vs. 89.8) for the first time. The ensemble DeBERTa model sits atop the SuperGLUE leaderboard as of January 6, 2021, outperforming the human baseline by a decent margin (90.3 versus 89.8). ", + "bbox": [ + 174, + 518, + 825, + 685 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2 BACKGROUND ", + "text_level": 1, + "bbox": [ + 176, + 709, + 326, + 726 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "2.1 TRANSFORMER ", + "text_level": 1, + "bbox": [ + 176, + 742, + 321, + 757 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "A Transformer-based language model is composed of stacked Transformer blocks (Vaswani et al., 2017). Each block contains a multi-head self-attention layer followed by a fully connected positional feed-forward network. The standard self-attention mechanism lacks a natural way to encode word position information. Thus, existing approaches add a positional bias to each input word embedding so that each input word is represented by a vector whose value depends on its content and position. The positional bias can be implemented using absolute position embedding (Vaswani et al., 2017; Radford et al., 2019; Devlin et al., 2019) or relative position embedding (Huang et al., 2018; Yang et al., 2019). It has been shown that relative position representations are more effective for natural language understanding and generation tasks (Dai et al., 2019; Shaw et al., 2018). The proposed disentangled attention mechanism differs from all existing approaches in that we represent each input word using two separate vectors that encode a word’s content and position, respectively, and attention weights among words are computed using disentangled matrices on their contents and relative positions, respectively. ", + "bbox": [ + 174, + 770, + 825, + 924 + ], + "page_idx": 1 + }, + { + "type": "text", + "text": "", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "2.2 MASKED LANGUAGE MODEL ", + "text_level": 1, + "bbox": [ + 176, + 147, + 418, + 162 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Large-scale Transformer-based PLMs are typically pre-trained on large amounts of text to learn contextual word representations using a self-supervision objective, known as Masked Language Model (MLM) (Devlin et al., 2019). Specifically, given a sequence $X \\mathrm { ~ = ~ } \\{ x _ { i } \\}$ , we corrupt it into $\\tilde { X }$ by masking $15 \\%$ of its tokens at random and then train a language model parameterized by $\\theta$ to reconstruct $\\boldsymbol { X }$ by predicting the masked tokens $\\tilde { x }$ conditioned on $\\tilde { X }$ : ", + "bbox": [ + 173, + 172, + 825, + 248 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/c75783567dea8d28c4341b4d75a15451e33b5cc71af1d4ae92db7c13675aba4d.jpg", + "text": "$$\n\\operatorname* { m a x } _ { \\theta } \\log p _ { \\theta } ( X | \\tilde { X } ) = \\operatorname* { m a x } _ { \\theta } \\sum _ { i \\in \\mathcal { C } } \\log p _ { \\theta } \\big ( \\tilde { x } _ { i } = x _ { i } | \\tilde { X } \\big )\n$$", + "text_format": "latex", + "bbox": [ + 331, + 250, + 665, + 282 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where $\\mathcal { C }$ is the index set of the masked tokens in the sequence. The authors of BERT propose to keep $10 \\%$ of the masked tokens unchanged, another $10 \\%$ replaced with randomly picked tokens and the rest replaced with the [MASK] token. ", + "bbox": [ + 174, + 284, + 825, + 327 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3 THE DEBERTA ARCHITECTURE ", + "text_level": 1, + "bbox": [ + 176, + 344, + 473, + 361 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "3.1 DISENTANGLED ATTENTION: A TWO-VECTOR APPROACH TO CONTENT AND POSITIONEMBEDDING", + "bbox": [ + 173, + 375, + 821, + 404 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "For a token at position $i$ in a sequence, we represent it using two vectors, $\\left\\{ H _ { i } \\right\\}$ and $\\{ P _ { i \\mid j } \\}$ , which represent its content and relative position with the token at position $j$ , respectively. The calculation of the cross attention score between tokens $i$ and $j$ can be decomposed into four components as ", + "bbox": [ + 174, + 415, + 825, + 458 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/dd2f5d25084710d650cd272c64c7c6df5f14709f93f04842d9c63eef20986390.jpg", + "text": "$$\n\\begin{array} { r l } & { A _ { i , j } = \\{ H _ { i } , P _ { i | j } \\} \\times \\{ H _ { j } , P _ { j | i } \\} ^ { \\intercal } } \\\\ & { \\qquad = H _ { i } H _ { j } ^ { \\intercal } + H _ { i } P _ { j | i } ^ { \\intercal } + P _ { i | j } H _ { j } ^ { \\intercal } + P _ { i | j } P _ { j | i } ^ { \\intercal } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 338, + 459, + 658, + 501 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "That is, the attention weight of a word pair can be computed as a sum of four attention scores using disentangled matrices on their contents and positions as content-to-content, content-to-position, position-to-content, and position-to-position 2. ", + "bbox": [ + 176, + 501, + 820, + 542 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Existing approaches to relative position encoding use a separate embedding matrix to compute the relative position bias in computing attention weights (Shaw et al., 2018; Huang et al., 2018). This is equivalent to computing the attention weights using only the content-to-content and content-toposition terms in equation 2. We argue that the position-to-content term is also important since the attention weight of a word pair depends not only on their contents but on their relative positions, which can only be fully modeled using both the content-to-position and position-to-content terms. Since we use relative position embedding, the position-to-position term does not provide much additional information and is removed from equation 2 in our implementation. ", + "bbox": [ + 173, + 549, + 826, + 662 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Taking single-head attention as an example, the standard self-attention operation (Vaswani et al., 2017) can be formulated as: ", + "bbox": [ + 176, + 667, + 823, + 695 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/2c218bb3bf3bd90c6d025221c1aa2ebcfcea7e30ca352257bdfd26535ac9e3c1.jpg", + "text": "$$\n\\begin{array} { c } { { Q = H W _ { q } , K = H W _ { k } , V = H W _ { v } , A = \\frac { Q K ^ { \\intercal } } { \\sqrt { d } } } } \\\\ { { H _ { o } = \\mathrm { s o f t m a x } ( A ) V } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 325, + 696, + 673, + 748 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "where ${ \\cal H } \\in { \\cal R } ^ { N \\times d }$ represents the input hidden vectors, $H _ { o } \\in R ^ { N \\times d }$ the output of self-attention, $W _ { q } , W _ { k } , W _ { v } \\in R ^ { d \\times \\hat { d } }$ the projection matrices, $\\pmb { A } \\in R ^ { N \\times N }$ the attention matrix, $N$ the length of the input sequence, and $d$ the dimension of hidden states. ", + "bbox": [ + 174, + 752, + 823, + 795 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "Denote $k$ as the maximum relative distance, $\\delta ( i , j ) \\in [ 0 , 2 k )$ as the relative distance from token $i$ to token $j$ , which is defined as: ", + "bbox": [ + 171, + 801, + 823, + 829 + ], + "page_idx": 2 + }, + { + "type": "equation", + "img_path": "images/11153877a602b115449e9fc549ce130ddc2b3ec3e12c985141a952a72277c6ca.jpg", + "text": "$$\n\\delta ( i , j ) = \\left\\{ \\begin{array} { r l l } { { 0 } } & { { \\mathrm { f o r } } } & { { i - j \\leqslant - k } } \\\\ { { 2 k - 1 } } & { { \\mathrm { f o r } } } & { { i - j \\geqslant k } } \\\\ { { i - j + k } } & { { \\mathrm { o t h e r s . } } } & { { } } \\end{array} \\right.\n$$", + "text_format": "latex", + "bbox": [ + 341, + 832, + 647, + 876 + ], + "page_idx": 2 + }, + { + "type": "text", + "text": "We can represent the disentangled self-attention with relative position bias as equation 4, where $Q _ { c } , K _ { c }$ and $V _ { c }$ are the projected content vectors generated using projection matrices $W _ { q , c } , W _ { k , c } , W _ { v , c } \\in R ^ { d \\times d }$ respectively, $P \\in { \\cal R } ^ { 2 k \\times d }$ represents the relative position embedding vectors shared across all layers (i.e., staying fixed during forward propagation), and $Q _ { r }$ and $K _ { r }$ are projected relative position vectors generated using projection matrices $W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }$ , respectively. ", + "bbox": [ + 173, + 103, + 826, + 188 + ], + "page_idx": 3 + }, + { + "type": "equation", + "img_path": "images/1fe700ac832ddde91c4872b71b79ace00ff441fe0e86d9c781a70dbb14e0f374.jpg", + "text": "$$\n\\begin{array} { l } { { Q _ { c } = H W _ { q , c } , K _ { c } = H W _ { k , c } , V _ { c } = H W _ { v , c } , Q _ { r } = P W _ { q , r } , K _ { r } = P W _ { k , r } } } \\\\ { { \\tilde { A } _ { i , j } = \\underbrace { Q _ { i } ^ { c } K _ { j } ^ { c \\top } } _ { \\mathrm { ( a ) c o n t e n t - t o - c o n t e n t } } + \\underbrace { Q _ { i } ^ { c } K _ { \\delta ( i , j ) } ^ { r } } _ { \\mathrm { ( b ) c o n t e n t - t o - p o s i i t i o n } } + \\underbrace { K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } } _ { \\mathrm { ( c ) p o s i i t i o n - t o r t e n t } } } } \\\\ { { \\tilde { H } _ { o } = \\mathrm { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c } } } \\end{array}\n$$", + "text_format": "latex", + "bbox": [ + 238, + 207, + 758, + 308 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "$\\tilde { A } _ { i , j }$ is the element of attention matrix $\\tilde { A }$ , representing the attention score from token $i$ to token $j$ . $Q _ { i } ^ { c }$ is the $i$ -th row of $Q _ { c } . \\ K _ { j } ^ { c }$ is the $j$ -th row of $K _ { c }$ . $K _ { \\delta ( i , j ) } ^ { r }$ is the $\\delta ( i , j )$ -th row of $K _ { r }$ with regarding to relative distance $\\delta ( i , j )$ . $Q _ { \\delta ( j , i ) } ^ { r }$ is the $\\delta ( j , i )$ -th row of $Q _ { r }$ with regarding to relative distance $\\delta ( j , i )$ . Note that we use $\\delta ( j , i )$ rather than $\\delta ( i , j )$ here. This is because for a given position $i$ , position-to-content computes the attention weight of the key content at $j$ with respect to the query position at $i$ , thus the relative distance is $\\delta ( j , i )$ . The position-to-content term is calculated as $K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } { } ^ { \\intercal }$ . The content-to-position term is calculated in a similar way. ", + "bbox": [ + 173, + 311, + 825, + 419 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Finally, we apply a scaling factor of $\\frac { 1 } { \\sqrt { 3 d } }$ on $\\tilde { A }$ . The factor is important for stabilizing model training (Vaswani et al., 2017), especially for large-scale PLMs. ", + "bbox": [ + 174, + 428, + 820, + 462 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Algorithm 1 Disentangled Attention ", + "text_level": 1, + "bbox": [ + 174, + 477, + 415, + 491 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "Input: Hidden state $\\pmb { H }$ , relative distance embedding $_ { P }$ , relative distance matrix $\\delta$ . Content projec \ntion matrix $W _ { k , c }$ , $W _ { q , c }$ , $W _ { v , c }$ , position projection matrix $W _ { k , r }$ , $W _ { q , r }$ . \n1: $K _ { c } = H W _ { k , c }$ , $Q _ { c } = H W _ { q , c }$ , $V _ { c } = H W _ { v , c }$ , $K _ { r } = P W _ { k , r }$ , $Q _ { r } \\overset { = } { = } P W _ { q , r }$ \n2: $A _ { c c } = Q _ { c } K _ { c } ^ { \\intercal }$ \n3: for $i = 0 , . . . , N - 1$ do \n4: $\\tilde { A } _ { c p } [ i , : ] = Q _ { c } [ i , : ] { \\cal K } _ { r } ^ { \\intercal }$ \n5: end for \n6: for $i = 0 , . . . , N - 1$ do \n7: for $j = 0 , . . . , N - 1$ do \n8: $A _ { c p } [ i , j ] = \\tilde { A } _ { c p } [ i , \\delta [ i , j ] ]$ \n9: end for \n10: end for \n11: for $j = 0 , . . . , N - 1$ do \n12: $\\tilde { A } _ { p c } [ : , j ] = K _ { c } [ j , : ] Q _ { r } ^ { \\intercal }$ \n13: end for \n14: for $j = 0 , . . . , N - 1$ do \n15: for $i = 0 , . . . , N - 1$ do \n16: $A _ { p c } [ i , j ] = \\tilde { A } _ { p c } [ \\delta [ j , i ] , j ]$ \n17: end for \n18: end for \n19: $\\tilde { A } = A _ { c c } + A _ { c p } + A _ { p c }$ \n20: $H _ { o } = \\operatorname { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c }$ \nOutput: Ho ", + "bbox": [ + 174, + 494, + 826, + 832 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "3.1.1 EFFICIENT IMPLEMENTATION ", + "text_level": 1, + "bbox": [ + 176, + 857, + 431, + 871 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "For an input sequence of length $N$ , it requires a space complexity of $O ( N ^ { 2 } d )$ (Shaw et al., 2018; Huang et al., 2018; Dai et al., 2019) to store the relative position embedding for each token. However, taking content-to-position as an example, we note that since $\\delta ( i , j ) \\in [ 0 , 2 k )$ and the embeddings of all possible relative positions are always a subset of $K _ { r } \\in R ^ { 2 k \\times d }$ , then we can reuse $K _ { r }$ in the attention calculation for all the queries. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 3 + }, + { + "type": "text", + "text": "", + "bbox": [ + 173, + 102, + 823, + 132 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "In our experiments, we set the maximum relative distance $k$ to 512 for pre-training. The disentangled attention weights can be computed efficiently using Algorithm 1. Let $\\delta$ be the relative position matrix according to equation 3, i.e., $\\delta [ i , j ] = \\delta ( \\overset { . } { i } , j )$ . Instead of allocating a different relative position embedding matrix for each query, we multiply each query vector $Q _ { c } [ i , : ]$ by ${ K } _ { r } ^ { \\tau } \\in { R } ^ { d \\times 2 k }$ , as in line $3 - 5$ . Then, we extract the attention weight using the relative position matrix $\\delta$ as the index, as in line $6 - 1 0$ . To compute the position-to-content attention score, we calculate $\\tilde { A } _ { p c } [ : , j ]$ , i.e., the column vector of the attention matrix $\\tilde { A } _ { p c }$ , by multiplying each key vector $K _ { c } [ j , : ]$ by $Q _ { r } ^ { \\intercal }$ , as in line $1 1 - 1 3$ . Finally, we extract the corresponding attention score via the relative position matrix $\\pmb { \\delta }$ as the index, as in line $1 4 - 1 8$ . In this way, we do not need to allocate memory to store a relative position embedding for each query and thus reduce the space complexity to $O ( k d )$ (for storing $K _ { r }$ and $Q _ { r }$ ). ", + "bbox": [ + 174, + 138, + 825, + 296 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "3.2 ENHANCED MASK DECODER ACCOUNTS FOR ABSOLUTE WORD POSITIONS ", + "text_level": 1, + "bbox": [ + 176, + 323, + 740, + 338 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "DeBERTa is pretrained using MLM, where a model is trained to use the words surrounding a mask token to predict what the masked word should be. DeBERTa uses the content and position information of the context words for MLM. The disentangled attention mechanism already considers the contents and relative positions of the context words, but not the absolute positions of these words, which in many cases are crucial for the prediction. ", + "bbox": [ + 174, + 353, + 825, + 422 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Given a sentence “a new store opened beside the new mall” with the words “store” and “mall” masked for prediction. Using only the local context (e.g., relative positions and surrounding words) is insufficient for the model to distinguish store and mall in this sentence, since both follow the word new with the same relative positions. To address this limitation, the model needs to take into account absolute positions, as complement information to the relative positions. For example, the subject of the sentence is “store” not “mall”. These syntactical nuances depend, to a large degree, upon the words’ absolute positions in the sentence. ", + "bbox": [ + 174, + 430, + 825, + 527 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "There are two methods of incorporating absolute positions. The BERT model incorporates absolute positions in the input layer. In DeBERTa, we incorporate them right after all the Transformer layers but before the softmax layer for masked token prediction, as shown in Figure 2. In this way, DeBERTa captures the relative positions in all the Transformer layers and only uses absolute positions as complementary information when decoding the masked words. Thus, we call DeBERTa’s decoding component an Enhanced Mask Decoder (EMD). In the empirical study, we compare these two methods of incorporating absolute positions and observe that EMD works much better. We conjecture that the early incorporation of absolute positions used by BERT might undesirably hamper the model from learning sufficient information of relative positions. In addition, EMD also enables us to introduce other useful information, in addition to positions, for pre-training. We leave it to future work. ", + "bbox": [ + 174, + 535, + 825, + 688 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "4 SCALE INVARIANT FINE-TUNING ", + "text_level": 1, + "bbox": [ + 176, + 718, + 482, + 734 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "This section presents a new virtual adversarial training algorithm, Scale-invariant-Fine-Tuning (SiFT), a variant to the algorithm described in Miyato et al. (2018); Jiang et al. (2020), for fine-tuning. ", + "bbox": [ + 173, + 756, + 825, + 784 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Virtual adversarial training is a regularization method for improving models’ generalization. It does so by improving a model’s robustness to adversarial examples, which are created by making small perturbations to the input. The model is regularized so that when given a task-specific example, the model produces the same output distribution as it produces on an adversarial perturbation of that example. ", + "bbox": [ + 174, + 791, + 825, + 861 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "For NLP tasks, the perturbation is applied to the word embedding instead of the original word sequence. However, the value ranges (norms) of the embedding vectors vary among different words and models. The variance gets larger for bigger models with billions of parameters, leading to some instability of adversarial training. ", + "bbox": [ + 174, + 867, + 823, + 924 + ], + "page_idx": 4 + }, + { + "type": "text", + "text": "Inspired by layer normalization (Ba et al., 2016), we propose the SiFT algorithm that improves the training stability by applying the perturbations to the normalized word embeddings. Specifically, when fine-tuning DeBERTa to a downstream NLP task in our experiments, SiFT first normalizes the word embedding vectors into stochastic vectors, and then applies the perturbation to the normalized embedding vectors. We find that the normalization substantially improves the performance of the fine-tuned models. The improvement is more prominent for larger DeBERTa models. Note that we only apply SiFT to $\\mathrm { D e B E R T a } _ { 1 . 5 B }$ on SuperGLUE tasks in our experiments and we will provide a more comprehensive study of SiFT in our future work. ", + "bbox": [ + 173, + 103, + 825, + 215 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5 EXPERIMENT ", + "text_level": 1, + "bbox": [ + 176, + 237, + 316, + 252 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "This section reports DeBERTa results on various NLU tasks. ", + "bbox": [ + 174, + 268, + 570, + 284 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "5.1 MAIN RESULTS ON NLU TASKS ", + "text_level": 1, + "bbox": [ + 176, + 303, + 436, + 316 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Following previous studies of PLMs, we report results using large and base models. ", + "bbox": [ + 176, + 329, + 720, + 344 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/162fbf5d04563eb804ba5992027194b06424801edc8ce19891d8cd8f4a7debb3.jpg", + "table_caption": [ + "5.1.1 PERFORMANCE ON LARGE MODELS ", + "Table 1: Comparison results on the GLUE development set. " + ], + "table_footnote": [], + "table_body": "
ModelCoLAMcc|QQPAccMNLI-m/mmAccSST-2|AccSTS-BCorrQNLI|AccRTEAccMRPCAccAvg.
BERTlarge60.691.386.6/-93.290.092.370.488.084.05
RoBERTalarge68.092.290.2/90.296.492.493.986.690.988.82
XLNetlarge69.092.390.8/90.897.092.594.985.990.889.15
ELECTRAlarge69.192.490.9/-96.992.695.088.090.889.46
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
", + "bbox": [ + 189, + 391, + 807, + 506 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We pre-train our large models following the setting of BERT (Devlin et al., 2019), except that we use the BPE vocabulary of Radford et al. (2019); Liu et al. (2019c). For training data, we use Wikipedia (English Wikipedia dump3; 12GB), BookCorpus (Zhu et al., 2015) (6GB), OPENWEBTEXT (public Reddit content (Gokaslan & Cohen, 2019); 38GB), and STORIES (a subset of CommonCrawl (Trinh & Le, 2018); 31GB). The total data size after data deduplication (Shoeybi et al., 2019) is about 78G. Refer to Appendix A.2 for a detailed description of the pre-training dataset. ", + "bbox": [ + 173, + 544, + 825, + 627 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We use 6 DGX-2 machines (96 V100 GPUs) to train the models. A single model trained with 2K batch size and 1M steps takes about 20 days. Refer to Appendix A for the detailed hyperparamters. ", + "bbox": [ + 176, + 633, + 821, + 662 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "We summarize the results on eight NLU tasks of GLUE (Wang et al., 2019b) in Table 1, where DeBERTa is compared DeBERTa with previous Transform-based PLMs of similar structures (i.e. 24 layers with hidden size of 1024) including BERT, RoBERTa, XLNet, ALBERT and ELECTRA. Note that RoBERTa, XLNet and ELECTRA are pre-trained on 160G training data while DeBERTa is pretrained on 78G training data. RoBERTa and XLNet are pre-trained for 500K steps with 8K samples in a step, which amounts to four billion training samples. DeBERTa is pre-trained for one million steps with 2K samples in each step. This amounts to two billion training samples, approximately half of either RoBERTa or XLNet. Table 1 shows that compared to BERT and RoBERTa, DeBERTa performs consistently better across all the tasks. Meanwhile, DeBERTa outperforms XLNet in six out of eight tasks. Particularly, the improvements on MRPC ( $1 . 1 \\%$ over XLNet and $1 . 0 \\%$ over RoBERTa), RTE $2 . 4 \\%$ over XLNet and $1 . 7 \\%$ over RoBERTa) and CoLA ( $1 . 5 \\%$ over XLNet and $2 . 5 \\%$ over RoBERTa) are significant. DeBERTa also outperforms other SOTA PLMs, i.e., ELECTRAlarge and $\\mathbf { X L N e t } _ { \\mathrm { l a r g e } }$ , in terms of average GLUE score. ", + "bbox": [ + 174, + 669, + 825, + 849 + ], + "page_idx": 5 + }, + { + "type": "text", + "text": "Among all GLUE tasks, MNLI is most often used as an indicative task to monitor the research progress of PLMs. DeBERTa significantly outperforms all existing PLMs of similar size on MNLI and creates a new state of the art. ", + "bbox": [ + 176, + 857, + 823, + 898 + ], + "page_idx": 5 + }, + { + "type": "table", + "img_path": "images/1d2ecd7dc1b3b86dd304fab22afda258c1bbd0f17e788f90aade6c4d31e4a92b.jpg", + "table_caption": [ + "Table 2: Results on MNLI in/out-domain, SQuAD v1.1, SQuAD v2.0, RACE, ReCoRD, SWAG, CoNLL 2003 NER development set. Note that missing results in literature are signified by “-”. " + ], + "table_footnote": [], + "table_body": "
ModelMNLI-m/mm|SQuAD v1.1 SQuAD v2.0|RACE|Acc F1/EM F1/EMAccReCoRDF1/EM|SWAGNERAcc F1
BERTlarge86.6/-90.9/84.1 81.8/79.072.0186.692.8
ALBERTtarge86.5/-91.8/85.2 84.9/81.875.211-
RoBERTalarge90.2/90.294.6/88.9 89.4/86.583.290.6/90.089.993.4
XLNetlarge90.8/90.895.1/89.7 90.6/87.985.4---
Megatron336M89.7/90.094.2/88.0 88.1/84.883.0111
DeBERTalarge91.1/91.195.5/90.1 90.7/88.086.891.4/91.090.893.8
ALBERTxxlarge90.8/-94.8/89.3 90.2/87.486.51-
Megatron1.3B90.9/91.094.9/89.1 90.2/87.187.3-1-
Megatron3.9B91.4/91.495.5/90.0 91.2/88.589.5111
", + "bbox": [ + 186, + 102, + 812, + 276 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "In addition to GLUE, DeBERTa is evaluated on three categories of NLU benchmarks: (1) Question Answering: SQuAD v1.1 (Rajpurkar et al., 2016), SQuAD v2.0 (Rajpurkar et al., 2018), RACE (Lai et al., 2017), ReCoRD (Zhang et al., 2018) and SWAG (Zellers et al., 2018); (2) Natural Language Inference: MNLI (Williams et al., 2018); and (3) NER: CoNLL-2003. For comparison, we include ALBERTxxlarge (Lan et al., 2019) 4 and Megatron (Shoeybi et al., 2019) with three different model sizes, denoted as Megatron336M, Megatron $\\cdot 1 . 3 \\mathrm { B }$ and Megatron3.9B, respectively, which are trained using the same dataset as RoBERTa. Note that Megatron336M has a similar model size as other models mentioned above5. ", + "bbox": [ + 173, + 334, + 825, + 445 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We summarize the results in Table 2. Compared to the previous SOTA PLMs with a similar model size (i.e., BERT, RoBERTa, XLNet, ALBERTlarge, and Megatron336M), DeBERTa shows superior performance in all seven tasks. Taking the RACE benchmark as an example, DeBERTa significantly outperforms XLNet by $+ 1 . 4 \\%$ $8 6 . 8 \\%$ vs. $8 5 . 4 \\%$ ). Although Megatron $1 . 3 \\mathrm { B }$ is three times larger than DeBERTa, DeBERTa outperforms it in three of the four benchmarks. We further report DeBERTa on text generation tasks in Appendix A.4. ", + "bbox": [ + 174, + 452, + 825, + 536 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.1.2 PERFORMANCE ON BASE MODELS ", + "text_level": 1, + "bbox": [ + 176, + 559, + 467, + 573 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "Our setting for base model pre-training is similar to that for large models. The base model structure follows that of the BERT base model, i.e., $L = 1 2 , H = 7 6 8 , A = 1 2$ . We use 4 DGX-2 with 64 V100 GPUs to train the base model. It takes 10 days to finish a single pre-training of 1M training steps with batch size 2048. We train DeBERTa using the same 78G dataset, and compare it to RoBERTa and XLNet trained on 160G text data. ", + "bbox": [ + 174, + 585, + 825, + 656 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "We summarize the base model results in Table 3. Across all three tasks, DeBERTa consistently outperforms RoBERTa and XLNet by a larger margin than that in large models. For example, on MNLI-m, $\\mathrm { D e B E R T a _ { b a s e } }$ obtains $+ 1 . 2 \\%$ $8 8 . 8 \\%$ vs. $8 7 . 6 \\%$ ) over $\\mathrm { R o B E R T a _ { b a s e } }$ , and $+ 2 \\%$ $8 8 . 8 \\%$ vs. $8 6 . 8 \\%$ ) over $\\mathbf { X L N e t } _ { \\mathrm { b a s e } }$ . ", + "bbox": [ + 174, + 662, + 825, + 719 + ], + "page_idx": 6 + }, + { + "type": "table", + "img_path": "images/bb6aaa7758904bc09aff2a8befb3cbcb78be3fb6d2c2f8bd68f7a3ccd234a652.jpg", + "table_caption": [ + "Table 3: Results on MNLI in/out-domain $\\left( \\mathrm { m } / \\mathrm { m m } \\right)$ ), SQuAD v1.1 and $\\mathrm { v } 2 . 0$ development set. " + ], + "table_footnote": [], + "table_body": "
ModelMNLI-m/mm (Acc)SQuAD v1.1 (F1/EM)SQuAD v2.0 (F1/EM)
RoBERTabase87.6/-91.5/84.683.7/80.5
XLNetbase86.8/---/80.2
DeBERTabase88.8/88.593.1/87.286.2/83.1
", + "bbox": [ + 205, + 738, + 792, + 810 + ], + "page_idx": 6 + }, + { + "type": "text", + "text": "5.2 MODEL ANALYSIS ", + "text_level": 1, + "bbox": [ + 176, + 103, + 343, + 117 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "In this section, we first present an ablation study to quantify the relative contributions of different components introduced in DeBERTa. Then, we study the convergence property to characterize the model training efficiency. We run experiments for analysis using the base model setting: a model is pre-trained using the Wikipedia $^ +$ Bookcorpus dataset for 1M steps with batch size 256 in 7 days on a DGX-2 machine with 16 V-100 GPUs. Due to space limit, we visualize the different attention patterns of DeBERTa and RoBERTa in Appendix A.7. ", + "bbox": [ + 174, + 128, + 825, + 213 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.2.1 ABLATION STUDY ", + "text_level": 1, + "bbox": [ + 176, + 228, + 352, + 242 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To verify our experimental setting, we pre-train the RoBERTa base model from scratch. The re-pretrained RoBERTa model is denoted as RoBERTa-ReImpbase. To investigate the relative contributions of different components in DeBERTa, we develop three variations: ", + "bbox": [ + 176, + 252, + 823, + 295 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "• -EMD is the DeBERTa base model without EMD. • -C2P is the DeBERTa base model without the content-to-position term ((c) in Eq. 4). • -P2C is the DeBERTa base model without the position-to-content term ((b) in Eq. 4). As XLNet also uses the relative position bias, this model is close to XLNet plus EMD. ", + "bbox": [ + 215, + 306, + 825, + 372 + ], + "page_idx": 7 + }, + { + "type": "table", + "img_path": "images/6a63e6083c2b3488ae04801108159c0f0416bdbaa5ad76734580966028276a02.jpg", + "table_caption": [ + "Table 4: Ablation study of the DeBERTa base model. " + ], + "table_footnote": [], + "table_body": "
ModelMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EMRACE Acc
BERTbase Devlin et al. (2019) RoBERTabase Liu et al. (2019c)84.3/84.7 84.7/-88.5/81.0 90.6/-76.3/73.7 79.7/-65.0 65.6
XLNetbase Yang et al. (2019) RoBERTa-ReImpbase85.8/85.4 84.9/85.1-/- 91.1/84.881.3/78.5 79.5/76.066.7 66.8
DeBERTabase86.3/86.2 86.1/86.192.1/86.182.5/79.371.7
-EMD -C2P85.9/85.791.8/85.8 91.6/85.881.3/78.0 81.3/78.370.3 69.3
-P2C86.0/85.891.7/85.780.8/77.669.6
-(EMD+C2P)85.8/85.991.5/85.380.3/77.268.1
-(EMD+P2C)85.8/85.891.3/85.180.2/77.168.5
", + "bbox": [ + 199, + 390, + 799, + 573 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Table 4 summarizes the results on four benchmark datasets. First, RoBERTa-ReImp performs similarly to RoBERTa across all benchmark datasets, verfiying that our setting is reasonable. Second, we see that removing any one component in DeBERTa results in a sheer performance drop. For instance, removing EMD (-EMD) results in a loss of $1 . 4 \\%$ $7 1 . 7 \\%$ vs. $7 0 . 3 \\%$ ) on RACE, $0 . 3 \\%$ $( 9 2 . 1 \\%$ vs. $9 1 . 8 \\%$ ) on SQuAD v1.1, $1 . 2 \\%$ $8 2 . 5 \\%$ vs. $8 1 . 3 \\%$ ) on $\\mathrm { S Q u A D ~ v } 2 . 0$ , $0 . 2 \\%$ ( $8 6 . 3 \\%$ vs. $8 6 . 1 \\% )$ and $0 . 1 \\%$ $8 6 . 2 \\%$ vs. $8 6 . 1 \\%$ ) on MNLI- $\\cdot \\mathrm { m } / \\mathrm { m m }$ , respectively. Similarly, removing either content-to-position or position-to-content leads to inferior performance in all the benchmarks. As expected, removing two components results in even more substantial loss in performance. ", + "bbox": [ + 173, + 613, + 826, + 724 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "5.3 SCALE UP TO 1.5 BILLION PARAMETERS ", + "text_level": 1, + "bbox": [ + 176, + 741, + 493, + 756 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Larger pre-trained models have shown better generalization results (Raffel et al., 2020; Brown et al., 2020; Shoeybi et al., 2019). Thus, we have built a larger version of DeBERTa with 1.5 billion parameters, denoted as $\\mathrm { D e B E R T a } _ { 1 . 5 B }$ . The model consists of 48 layers with a hidden size of 1,536 and 24 attention heads 6. DeBERTa $_ { 1 . 5 B }$ is trained on a pre-training dataset amounting to 160G, similar to that in Liu et al. (2019c), with a new vocabulary of size 128K constructed using the dataset. ", + "bbox": [ + 174, + 767, + 825, + 837 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "To train $\\mathrm { D e B E R T a } _ { 1 . 5 B }$ , we optimize the model architecture as follows. First, we share the projection matrices of relative position embedding $W _ { k , r } , W _ { q , r }$ with $W _ { k , c } , W _ { q , c }$ , respectively, in all attention layers to reduce the number of model parameters. Our ablation study in Table 13 on base models shows that the projection matrix sharing reduces the model size while retaining the model performance. ", + "bbox": [ + 174, + 844, + 825, + 900 + ], + "page_idx": 7 + }, + { + "type": "text", + "text": "Second, a convolution layer is added aside the first Transformer layer to induce n-gram knowledge of sub-word encodings and their outputs are summed up before feeding to the next Transformer layer 7. ", + "bbox": [ + 174, + 103, + 825, + 132 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "Table 5 reports the test results of SuperGLUE (Wang et al., 2019a) which is one of the most popular NLU benchmarks. SuperGLUE consists of a wide of NLU tasks, including Question Answering (Clark et al., 2019; Khashabi et al., 2018; Zhang et al., 2018), Natural Language Inference (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009), Word Sense Disambiguation (Pilehvar & Camacho-Collados, 2019), and Reasoning (Levesque et al., 2011; Roemmele et al., 2011). Since its release in 2019, top research teams around the world have been developing large-scale PLMs that have driven striking performance improvement on SuperGLUE. ", + "bbox": [ + 174, + 138, + 825, + 236 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "The significant performance boost due to scaling DeBERTa to a larger model makes the single DeBERTa1.5B surpass the human performance on SuperGLUE for the first time in terms of macroaverage score (89.9 versus 89.8) as of December 29, 2020, and the ensemble DeBERTa model $( \\mathrm { D e B E R T a } _ { E n s e m b l e } )$ sits atop the SuperGLUE benchmark rankings as of January 6, 2021, outperforming the human baseline by a decent margin (90.3 versus 89.8). Compared to T5, which consists of 11 billion parameters, the 1.5-billion-parameter DeBERTa is much more energy efficient to train and maintain, and it is easier to compress and deploy to apps of various settings. ", + "bbox": [ + 173, + 242, + 825, + 342 + ], + "page_idx": 8 + }, + { + "type": "table", + "img_path": "images/4d73de04653c441ab9831ab76d3e27f2b8f4a6818f3d2eb13e49db34f1051d39.jpg", + "table_caption": [ + "Table 5: SuperGLUE test set results scored using the SuperGLUE evaluation server. All the results are obtained from https://super.gluebenchmark.com on January 6, 2021. " + ], + "table_footnote": [], + "table_body": "
ModelBoolQAccCBF1/Acc|COPA|AccMultiRCF1a/EMReCoRDF1/EMRTEAccWiCAccAccWSC|AverageScore
RoBERTalarge87.1[90.5/95.290.684.4/52.590.6/90.088.269.989.084.6
NEXHA-Plus87.894.4/96.093.684.6/55.190.1/89.689.174.693.286.7
T511B91.293.9/96.894.888.1/63.394.1/93.492.576.993.889.3
T511B+Meena91.395.8/97.697.488.3/63.094.2/93.592.777.995.990.2
Human89.095.8/98.9100.081.8/51.991.7/91.393.680.0100.089.8
DeBERTa1.5B+SiFTDeBERTaEnsemble90.490.494.9/97.295.7/97.696.898.488.2/63.788.2/63.794.5/94.194.5/94.193.293.276.495.995.989.990.3
77.5
", + "bbox": [ + 173, + 352, + 825, + 501 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "6 CONCLUSIONS ", + "text_level": 1, + "bbox": [ + 176, + 565, + 328, + 582 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "This paper presents a new model architecture DeBERTa (Decoding-enhanced BERT with disentangled attention) that improves the BERT and RoBERTa models using two novel techniques. The first is the disentangled attention mechanism, where each word is represented using two vectors that encode its content and position, respectively, and the attention weights among words are computed using disentangled matrices on their contents and relative positions, respectively. The second is an enhanced mask decoder which incorporates absolute positions in the decoding layer to predict the masked tokens in model pre-training. In addition, a new virtual adversarial training method is used for fine-tuning to improve model’s generalization on downstream tasks. ", + "bbox": [ + 174, + 597, + 825, + 708 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "We show through a comprehensive empirical study that these techniques significantly improve the efficiency of model pre-training and the performance of downstream tasks. The DeBERTa model with 1.5 billion parameters surpasses the human performance on the SuperGLUE benchmark for the first time in terms of macro-average score. ", + "bbox": [ + 174, + 715, + 825, + 771 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "DeBERTa surpassing human performance on SuperGLUE marks an important milestone toward general AI. Despite its promising results on SuperGLUE, the model is by no means reaching the human-level intelligence of NLU. Humans are extremely good at leveraging the knowledge learned from different tasks to solve a new task with no or little task-specific demonstration. This is referred to as compositional generalization, the ability to generalize to novel compositions (new tasks) of familiar constituents (subtasks or basic problem-solving skills). Moving forward, it is worth exploring how to make DeBERTa incorporate compositional structures in a more explicit manner, which could allow combining neural and symbolic computation of natural language similar to what humans do. ", + "bbox": [ + 173, + 777, + 825, + 890 + ], + "page_idx": 8 + }, + { + "type": "text", + "text": "7 ACKNOWLEDGMENTS ", + "text_level": 1, + "bbox": [ + 176, + 102, + 387, + 117 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "We thank Jade Huang and Nikos Karampatziakis for proofreading the paper and providing insightful comments. We thank Yoyo Liang, Saksham Singhal, Xia Song, and Saurabh Tiwary for their help with large-scale model training. We also thank the anonymous reviewers for valuable discussions. ", + "bbox": [ + 174, + 133, + 825, + 176 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "REFERENCES ", + "text_level": 1, + "bbox": [ + 174, + 198, + 287, + 213 + ], + "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, + 222, + 823, + 250 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Roy Bar-Haim, Ido Dagan, Bill Dolan, Lisa Ferro, and Danilo Giampiccolo. The second PASCAL recognising textual entailment challenge. In Proceedings of the Second PASCAL Challenges Workshop on Recognising Textual Entailment, 01 2006. ", + "bbox": [ + 173, + 260, + 826, + 303 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Iz Beltagy, Matthew E Peters, and Arman Cohan. Longformer: The long-document transformer. arXiv preprint arXiv:2004.05150, 2020. ", + "bbox": [ + 174, + 313, + 823, + 342 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Luisa Bentivogli, Ido Dagan, Hoa Trang Dang, Danilo Giampiccolo, and Bernardo Magnini. The fifth pascal recognizing textual entailment challenge. In In Proc Text Analysis Conference (TAC’09, 2009. ", + "bbox": [ + 176, + 352, + 823, + 395 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "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. ", + "bbox": [ + 174, + 405, + 823, + 448 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Daniel Cer, Mona Diab, Eneko Agirre, Inigo Lopez-Gazpio, and Lucia Specia. Semeval-2017 task 1: Semantic textual similarity-multilingual and cross-lingual focused evaluation. arXiv preprint arXiv:1708.00055, 2017. ", + "bbox": [ + 173, + 458, + 826, + 501 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kezhen Chen, Qiuyuan Huang, Hamid Palangi, Paul Smolensky, Kenneth D Forbus, and Jianfeng Gao. Natural-to formal-language generation using tensor product representations. arXiv preprint arXiv:1910.02339, 2019. ", + "bbox": [ + 174, + 511, + 826, + 554 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Rewon Child, Scott Gray, Alec Radford, and Ilya Sutskever. Generating long sequences with sparse transformers. arXiv preprint arXiv:1904.10509, 2019. ", + "bbox": [ + 169, + 563, + 825, + 593 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Christopher Clark, Kenton Lee, Ming-Wei Chang, Tom Kwiatkowski, Michael Collins, and Kristina Toutanova. BoolQ: Exploring the surprising difficulty of natural yes/no questions. In Proceedings of NAACL-HLT 2019, 2019. ", + "bbox": [ + 174, + 602, + 825, + 645 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Kevin Clark, Minh-Thang Luong, Quoc V. Le, and Christopher D. Manning. ELECTRA: Pre-training text encoders as discriminators rather than generators. In ICLR, 2020. ", + "bbox": [ + 169, + 655, + 823, + 685 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Ido Dagan, Oren Glickman, and Bernardo Magnini. The pascal recognising textual entailment challenge. In Proceedings of the First International Conference on Machine Learning Challenges: Evaluating Predictive Uncertainty Visual Object Classification, and Recognizing Textual Entailment, MLCW’05, Berlin, Heidelberg, 2006. ", + "bbox": [ + 173, + 694, + 825, + 752 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Zihang Dai, Zhilin Yang, Yiming Yang, Jaime G Carbonell, Quoc Le, and Ruslan Salakhutdinov. Transformer-xl: Attentive language models beyond a fixed-length context. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pp. 2978–2988, 2019. ", + "bbox": [ + 173, + 761, + 826, + 804 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Marie-Catherine De Marneffe, Mandy Simons, and Judith Tonhauser. The commitmentbank: Investigating projection in naturally occurring discourse. In proceedings of Sinn und Bedeutung, volume 23, pp. 107–124, 2019. ", + "bbox": [ + 173, + 814, + 825, + 857 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pp. 4171–4186, 2019. ", + "bbox": [ + 174, + 867, + 826, + 924 + ], + "page_idx": 9 + }, + { + "type": "text", + "text": "William B Dolan and Chris Brockett. Automatically constructing a corpus of sentential paraphrases. In Proceedings of the Third International Workshop on Paraphrasing (IWP2005), 2005. ", + "bbox": [ + 171, + 103, + 825, + 132 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Li Dong, Nan Yang, Wenhui Wang, Furu Wei, Xiaodong Liu, Yu Wang, Jianfeng Gao, Ming Zhou, and Hsiao-Wuen Hon. Unified language model pre-training for natural language understanding and generation. In Advances in Neural Information Processing Systems, pp. 13042–13054, 2019. ", + "bbox": [ + 176, + 142, + 825, + 185 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Danilo Giampiccolo, Bernardo Magnini, Ido Dagan, and Bill Dolan. The third PASCAL recognizing textual entailment challenge. In Proceedings of the ACL-PASCAL Workshop on Textual Entailment and Paraphrasing, pp. 1–9, Prague, June 2007. Association for Computational Linguistics. URL https://www.aclweb.org/anthology/W07-1401. ", + "bbox": [ + 173, + 195, + 825, + 252 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Aaron Gokaslan and Vanya Cohen. Openwebtext corpus. http://Skylion007.github.io, 2019. ", + "bbox": [ + 173, + 262, + 776, + 277 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Pengcheng He, Xiaodong Liu, Weizhu Chen, and Jianfeng Gao. A hybrid neural network model for commonsense reasoning. arXiv preprint arXiv:1907.11983, 2019a. ", + "bbox": [ + 174, + 286, + 825, + 316 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Pengcheng He, Yi Mao, Kaushik Chakrabarti, and Weizhu Chen. X-sql: reinforce schema representation with context. arXiv preprint arXiv:1908.08113, 2019b. ", + "bbox": [ + 171, + 325, + 825, + 356 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Ian Simon, Curtis Hawthorne, Noam Shazeer, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music transformer: Generating music with long-term structure. 2018. ", + "bbox": [ + 176, + 364, + 823, + 409 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Tuo Zhao. SMART: Robust and efficient fine-tuning for pre-trained natural language models through principled regularized optimization. In ACL, July 2020. doi: 10.18653/v1/2020.acl-main.197. ", + "bbox": [ + 174, + 417, + 826, + 462 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Mandar Joshi, Danqi Chen, Yinhan Liu, Daniel S Weld, Luke Zettlemoyer, and Omer Levy. Spanbert: Improving pre-training by representing and predicting spans. Transactions of the Association for Computational Linguistics, 8:64–77, 2020. ", + "bbox": [ + 174, + 470, + 825, + 513 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Daniel Khashabi, Snigdha Chaturvedi, Michael Roth, Shyam Upadhyay, and Dan Roth. Looking beyond the surface: A challenge set for reading comprehension over multiple sentences. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers), pp. 252–262, 2018. ", + "bbox": [ + 173, + 523, + 825, + 594 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint arXiv:1412.6980, 2014. ", + "bbox": [ + 173, + 604, + 823, + 633 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 173, + 643, + 823, + 672 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Guokun Lai, Qizhe Xie, Hanxiao Liu, Yiming Yang, and Eduard Hovy. Race: Large-scale reading comprehension dataset from examinations. In Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing, pp. 785–794, 2017. ", + "bbox": [ + 173, + 683, + 825, + 727 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Soricut. Albert: A lite bert for self-supervised learning of language representations. In International Conference on Learning Representations, 2019. ", + "bbox": [ + 173, + 736, + 826, + 779 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hector Levesque, Ernest Davis, and Leora Morgenstern. The winograd schema challenge. In Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning, 2012. ", + "bbox": [ + 174, + 789, + 825, + 832 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Hector J Levesque, Ernest Davis, and Leora Morgenstern. The Winograd schema challenge. In AAAI Spring Symposium: Logical Formalizations of Commonsense Reasoning, volume 46, pp. 47, 2011. ", + "bbox": [ + 171, + 842, + 826, + 871 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Liyuan Liu, Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Jiawei Han. On the variance of the adaptive learning rate and beyond. In International Conference on Learning Representations, 2019a. ", + "bbox": [ + 174, + 881, + 825, + 924 + ], + "page_idx": 10 + }, + { + "type": "text", + "text": "Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-task deep neural networks for natural language understanding. In Proceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pp. 4487–4496, Florence, Italy, July 2019b. Association for Computational Linguistics. URL https://www.aclweb.org/anthology/P19-1441. ", + "bbox": [ + 174, + 103, + 825, + 160 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Xiaodong Liu, Hao Cheng, Pengcheng He, Weizhu Chen, Yu Wang, Hoifung Poon, and Jianfeng Gao. Adversarial training for large neural language models. arXiv preprint arXiv:2004.08994, 2020. ", + "bbox": [ + 176, + 171, + 823, + 200 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike Lewis, Luke Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining approach. arXiv preprint arXiv:1907.11692, 2019c. ", + "bbox": [ + 174, + 210, + 826, + 253 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Ilya Loshchilov and Frank Hutter. Fixing weight decay regularization in adam. 2018. ", + "bbox": [ + 174, + 265, + 732, + 280 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture models. arXiv, pp. arXiv–1609, 2016. ", + "bbox": [ + 171, + 290, + 823, + 319 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Shervin Minaee, Nal Kalchbrenner, Erik Cambria, Narjes Nikzad, Meysam Chenaghlu, and Jianfeng Gao. Deep learning based text classification: A comprehensive review. arXiv preprint arXiv:2004.03705, 2020. ", + "bbox": [ + 174, + 330, + 825, + 372 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a regularization method for supervised and semi-supervised learning. IEEE transactions on pattern analysis and machine intelligence, 41(8):1979–1993, 2018. ", + "bbox": [ + 174, + 383, + 825, + 426 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mohammad Taher Pilehvar and Jose Camacho-Collados. Wic: the word-in-context dataset for evaluating context-sensitive meaning representations. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers), pp. 1267–1273, 2019. ", + "bbox": [ + 174, + 438, + 826, + 494 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners. OpenAI Blog, 1(8), 2019. ", + "bbox": [ + 171, + 505, + 823, + 535 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "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. Journal of Machine Learning Research, 21(140):1–67, 2020. URL http://jmlr.org/papers/v21/20-074.html. ", + "bbox": [ + 174, + 545, + 826, + 602 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. SQuAD: $^ { 1 0 0 , 0 0 0 + }$ questions for machine comprehension of text. In Proceedings of the 2016 Conference on Empirical Methods in Natural Language Processing, November 2016. ", + "bbox": [ + 173, + 613, + 825, + 656 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Pranav Rajpurkar, Robin Jia, and Percy Liang. Know what you don’t know: Unanswerable questions for squad. In Proceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 2: Short Papers), pp. 784–789, 2018. ", + "bbox": [ + 174, + 666, + 825, + 710 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Melissa Roemmele, Cosmin Adrian Bejan, and Andrew S. Gordon. Choice of plausible alternatives: An evaluation of commonsense causal reasoning. In 2011 AAAI Spring Symposium Series, 2011. ", + "bbox": [ + 173, + 719, + 825, + 750 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Imanol Schlag, Paul Smolensky, Roland Fernandez, Nebojsa Jojic, Jürgen Schmidhuber, and Jianfeng Gao. Enhancing the transformer with explicit relational encoding for math problem solving. arXiv preprint arXiv:1910.06611, 2019. ", + "bbox": [ + 174, + 760, + 825, + 803 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), pp. 464–468, 2018. ", + "bbox": [ + 174, + 814, + 826, + 869 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Tao Shen, Yi Mao, Pengcheng He, Guodong Long, Adam Trischler, and Weizhu Chen. Exploiting structured knowledge in text via graph-guided representation learning. arXiv preprint arXiv:2004.14224, 2020. ", + "bbox": [ + 176, + 882, + 825, + 924 + ], + "page_idx": 11 + }, + { + "type": "text", + "text": "Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan Catanzaro. Megatron-lm: Training multi-billion parameter language models using gpu model parallelism. arXiv preprint arXiv:1909.08053, 2019. ", + "bbox": [ + 178, + 103, + 823, + 146 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Paul Smolensky. Tensor product variable binding and the representation of symbolic structures in connectionist systems. Artificial intelligence, 46(1-2):159–216, 1990. ", + "bbox": [ + 173, + 155, + 825, + 184 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher D Manning, Andrew $\\mathrm { N g }$ , and Christopher Potts. Recursive deep models for semantic compositionality over a sentiment treebank. In Proceedings of the 2013 conference on empirical methods in natural language processing, pp. 1631–1642, 2013. ", + "bbox": [ + 174, + 193, + 826, + 248 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu, Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration. arXiv preprint arXiv:1904.09223, 2019. ", + "bbox": [ + 174, + 257, + 826, + 301 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Trieu H Trinh and Quoc V Le. A simple method for commonsense reasoning. arXiv preprint arXiv:1806.02847, 2018. ", + "bbox": [ + 173, + 309, + 823, + 338 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information processing systems, pp. 5998–6008, 2017. ", + "bbox": [ + 174, + 347, + 825, + 390 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Superglue: A stickier benchmark for general-purpose language understanding systems. In Advances in neural information processing systems, pp. 3266–3280, 2019a. ", + "bbox": [ + 173, + 398, + 826, + 455 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Glue: A multi-task benchmark and analysis platform for natural language understanding. In 7th International Conference on Learning Representations, ICLR 2019, 2019b. ", + "bbox": [ + 176, + 463, + 825, + 507 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Wei Wang, Bin Bi, Ming Yan, Chen Wu, Zuyi Bao, Liwei Peng, and Luo Si. Structbert: Incorporating language structures into pre-training for deep language understanding. arXiv preprint arXiv:1908.04577, 2019c. ", + "bbox": [ + 173, + 515, + 823, + 558 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Alex Warstadt, Amanpreet Singh, and Samuel R Bowman. Neural network acceptability judgments. arXiv preprint arXiv:1805.12471, 2018. ", + "bbox": [ + 169, + 566, + 825, + 597 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Adina Williams, Nikita Nangia, and Samuel Bowman. A broad-coverage challenge corpus for sentence understanding through inference. In Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long Papers), pp. 1112–1122. Association for Computational Linguistics, 2018. URL http://aclweb.org/anthology/N18-1101. ", + "bbox": [ + 174, + 604, + 826, + 676 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le. Xlnet: Generalized autoregressive pretraining for language understanding. In Advances in neural information processing systems, pp. 5754–5764, 2019. ", + "bbox": [ + 174, + 684, + 826, + 728 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Rowan Zellers, Yonatan Bisk, Roy Schwartz, and Yejin Choi. Swag: A large-scale adversarial dataset for grounded commonsense inference. In Proceedings of the 2018 Conference on Empirical Methods in Natural Language Processing, pp. 93–104, 2018. ", + "bbox": [ + 173, + 736, + 826, + 780 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Sheng Zhang, Xiaodong Liu, Jingjing Liu, Jianfeng Gao, Kevin Duh, and Benjamin Van Durme. ReCoRD: Bridging the gap between human and machine commonsense reading comprehension. arXiv preprint 1810.12885, 2018. ", + "bbox": [ + 176, + 787, + 825, + 830 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "Yukun Zhu, Ryan Kiros, Rich Zemel, Ruslan Salakhutdinov, Raquel Urtasun, Antonio Torralba, and Sanja Fidler. Aligning books and movies: Towards story-like visual explanations by watching movies and reading books. In Proceedings of the IEEE international conference on computer vision, pp. 19–27, 2015. ", + "bbox": [ + 176, + 839, + 825, + 895 + ], + "page_idx": 12 + }, + { + "type": "text", + "text": "A APPENDIX ", + "text_level": 1, + "bbox": [ + 176, + 102, + 299, + 117 + ], + "page_idx": 13 + }, + { + "type": "table", + "img_path": "images/49dd89986597a438a7965c1e4de95f9b6a6c0d1c23192ad3b8b90aceb716076d.jpg", + "table_caption": [ + "A.1 DATASET ", + "Table 6: Summary information of the NLP application benchmarks. " + ], + "table_footnote": [], + "table_body": "
CorpusTask#Train #Dev#Test #Label Metrics
General Language Understanding Evaluation (GLUE)
CoLAAcceptability8.5k1k1k2Matthews corr
SSTSentiment67k8721.8k2Accuracy
MNLINLI393k20k20k3Accuracy
RTENLI2.5k2763k2Accuracy
WNLINLI634711462Accuracy
QQPParaphrase364k40k391k2Accuracy/F1
MRPCParaphrase3.7k4081.7k2Accuracy/F1
QNLIQA/NLI108k5.7k5.7k2Accuracy
STS-BSimilarity7k1.5k1.4k1Pearson/Spearman corr
SuperGLUE
WSCCoreference554k1041462Accuracy
BoolQQA9,4273,2703,2452Accuracy
COPAQA400k1005002Accuracy
CBNLI250572503Accuracy/F1
RTENLI2.5k2763k2Accuracy
WiCWSD2.5k2763k2Accuracy
ReCoRDMRC101k10k10k-Exact Match (EM)/F1
MultiRCMultiple choice5,1009531,800Exact Match (EM)/F1
Question Answering
SQuAD v1.1MRC87.6k10.5k9.5kExact Match (EM)/F1
SQuAD v2.0MRC130.3k11.9k8.9k-ExactMatch (EM)/F1
RACEMRC87,8664,8874,9344Accuracy
SWAGMultiple choice73.5k20k20k4Accuracy
Token Classification
CoNLL 2003NER14,9873,4663,6848F1
", + "bbox": [ + 173, + 174, + 825, + 583 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "‚ GLUE. The General Language Understanding Evaluation (GLUE) benchmark is a collection of nine natural language understanding (NLU) tasks. As shown in Table 6, it includes question answering (Rajpurkar et al., 2016), linguistic acceptability (Warstadt et al., 2018), sentiment analysis (Socher et al., 2013), text similarity (Cer et al., 2017), paraphrase detection (Dolan & Brockett, 2005), and natural language inference (NLI) (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009; Levesque et al., 2012; Williams et al., 2018). The diversity of the tasks makes GLUE very suitable for evaluating the generalization and robustness of NLU models. ", + "bbox": [ + 173, + 637, + 826, + 734 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "‚ SuperGLUE. SuperGLUE is an extension of the GLUE benchmark, but more difficult, which is a collection of eight NLU tasks. It covers a various of tasks including question answering (Zhang et al., 2018; Clark et al., 2019; Khashabi et al., 2018), natural language inference (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009; De Marneffe et al., 2019), coreference resolution (Levesque et al., 2012) and word sense disambiguation (Pilehvar & Camacho-Collados, 2019). ", + "bbox": [ + 173, + 741, + 825, + 825 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "‚ RACE is a large-scale machine reading comprehension dataset, collected from English examinations in China, which are designed for middle school and high school students (Lai et al., 2017). ", + "bbox": [ + 173, + 833, + 820, + 861 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "‚ SQuAD v1.1/v2.0 is the Stanford Question Answering Dataset (SQuAD) v1.1 and v2.0 (Rajpurkar et al., 2016; 2018) are popular machine reading comprehension benchmarks. Their passages come from approximately 500 Wikipedia articles and the questions and answers are obtained by crowdsourcing. The SQuAD $\\mathrm { v } 2 . 0$ dataset includes unanswerable questions about the same paragraphs. ", + "bbox": [ + 174, + 867, + 825, + 924 + ], + "page_idx": 13 + }, + { + "type": "text", + "text": "‚ SWAG is a large-scale adversarial dataset for the task of grounded commonsense inference, which unifies natural language inference and physically grounded reasoning (Zellers et al., 2018). SWAG consists of $1 1 3 \\mathrm { k }$ multiple choice questions about grounded situations. ", + "bbox": [ + 173, + 103, + 823, + 146 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "‚ CoNLL 2003 is an English dataset consisting of text from a wide variety of sources. It has 4 types of named entity. ", + "bbox": [ + 173, + 152, + 823, + 181 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.2 PRE-TRAINING DATASET ", + "text_level": 1, + "bbox": [ + 176, + 199, + 390, + 214 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "For DeBERTa pre-training, we use Wikipedia (English Wikipedia dump8; 12GB), BookCorpus (Zhu et al., 2015) 9 (6GB), OPENWEBTEXT (public Reddit content (Gokaslan & Cohen, 2019); 38GB) and STORIES10 (a subset of CommonCrawl (Trinh & Le, 2018); 31GB). The total data size after data deduplication(Shoeybi et al., 2019) is about 78GB. For pre-training, we also sample $5 \\%$ training data as the validation set to monitor the training process. Table 7 compares datasets used in different pre-trained models. ", + "bbox": [ + 173, + 226, + 826, + 310 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/82d65ddb5bef045b250a155352d885f78422f0b70c2040a4e92b41c803606f34.jpg", + "table_caption": [ + "Table 7: Comparison of the pre-training data. " + ], + "table_footnote": [], + "table_body": "
ModelWiki+Book16GBOpenWebText38GBStories31GBCC-News76GBGiga516GBClueWeb19GBCommon Crawl110GB
BERT
XLNet(24号
RoBERTa
DeBERTaDeBERTa1.5B√√广
", + "bbox": [ + 173, + 324, + 831, + 434 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.3 IMPLEMENTATION DETAILS ", + "text_level": 1, + "bbox": [ + 176, + 487, + 410, + 502 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Following RoBERTa (Liu et al., 2019c), we adopt dynamic data batching. We also include span masking (Joshi et al., 2020) as an additional masking strategy with the span size up to three. We list the detailed hyperparameters of pre-training in Table 8. For pre-training, we use Adam (Kingma & Ba, 2014) as the optimizer with weight decay (Loshchilov & Hutter, 2018). For fine-tuning, even though we can get better and robust results with RAdam(Liu et al., 2019a) on some tasks, e.g. CoLA, RTE and RACE, we use Adam(Kingma & Ba, 2014) as the optimizer for a fair comparison. For fine-tuning, we train each task with a hyper-parameter search procedure, each run takes about 1-2 hours on a DGX-2 node. All the hyper-parameters are presented in Table 9. The model selection is based on the performance on the task-specific development sets. ", + "bbox": [ + 173, + 513, + 826, + 640 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "Our code is implemented based on Huggingface Transformers11, FairSeq12 and Megatron (Shoeybi et al., 2019)13. ", + "bbox": [ + 176, + 645, + 821, + 674 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "A.3.1 PRE-TRAINING EFFICIENCY ", + "text_level": 1, + "bbox": [ + 176, + 690, + 423, + 705 + ], + "page_idx": 14 + }, + { + "type": "text", + "text": "To investigate the efficiency of model pre-training, we plot the performance of the fine-tuned model on downstream tasks as a function of the number of pre-training steps. As shown in Figure 1, for RoBERTa-ReImpbase and $\\mathrm { D e B E R T a } _ { b a s e }$ , we dump a checkpoint every 150K pre-training steps, and then fine-tune the checkpoint on two representative downstream tasks, MNLI and SQuAD v2.0, and then report the accuracy and F1 score, respectively. As a reference, we also report the final model performance of both the original $\\mathrm { R o B E R T a } _ { b a s e }$ (Liu et al., 2019c) and $\\mathtt { X L N e t } _ { b a s e }$ (Yang et al., 2019). The results show that $\\mathrm { D e B E R T a } _ { b a s e }$ consistently outperforms RoBERTa-ReImpbase during the course of pre-training. ", + "bbox": [ + 173, + 717, + 826, + 829 + ], + "page_idx": 14 + }, + { + "type": "table", + "img_path": "images/bb786f1d889e31a5a9d67f5e7ffae840a8e2dbe9a15dc43ed1e37b3109530052.jpg", + "table_caption": [ + "Table 8: Hyper-parameters for pre-training DeBERTa. " + ], + "table_footnote": [], + "table_body": "
Hyper-parameter|DeBERTa1.5BDeBERTalargeDeBERTabaseDeBERTabase-ablation
Number of Layers48241212
Hidden size15361024768768
FNN inner hidden size6144409630723072
Attention Heads24161212
Attention Head size64646464
Dropout0.10.10.10.1
Warmup Steps10k10k10k10k
Learning Rates1.5e-42e-42e-41e-4
Batch Size2k2k2k256
Weight Decay0.010.010.010.01
Max Steps1M1M1M1M
Learning Rate DecayLinearLinearLinearLinear
Adam ∈1e-61e-61e-61e-6
Adam β10.90.90.90.9
Adam β20.9990.9990.9990.999
Gradient Clipping1.01.01.0
Number ofDGX-2 nodes1661.0
Training Time30 days20 days4 10 days1 7 days
", + "bbox": [ + 179, + 101, + 816, + 381 + ], + "page_idx": 15 + }, + { + "type": "table", + "img_path": "images/2d79d791848d405350189071ede4f1911d4f2a40ecc12fc5494caa9f1897d748.jpg", + "table_caption": [ + "Table 9: Hyper-parameters for fine-tuning DeBERTa on down-streaming tasks. " + ], + "table_footnote": [], + "table_body": "
Hyper-parameterDeBERTa1.5BDeBERTalargeDeBERTabase
Dropout of task layer Warmup Steps Learning Rates Batch Size Weight Decay Maximun Training Epochs Learning Rate Decay Adam ∈ Adam β1{0,0.15,0.3} {50,100,500,1000] {1e-6,3e-6, 5e-6} {16,32,64} 0.01 10 Linear 1e-6 0.9{0,0.1,0.15} {50,100,500,1000} {5e-6,8e-6, 9e-6, 1e-5} {16,32,48,64} 0.01 10 Linear 1e-6{0,0.1,0.15} {50,100,500,1000] {1.5e-5,2e-5, 3e-5,4e-5} {16,32,48,64} 10 Linear
", + "bbox": [ + 174, + 429, + 826, + 611 + ], + "page_idx": 15 + }, + { + "type": "image", + "img_path": "images/652fd2471aba260e4c3ad959ea124f7fa7de8dae5e26aa624be3a8a5b2263b86.jpg", + "image_caption": [ + "Figure 1: Pre-training performance curve between DeBERTa and its counterparts on the MNLI and SQuAD v2.0 development set. " + ], + "image_footnote": [], + "bbox": [ + 181, + 672, + 820, + 847 + ], + "page_idx": 15 + }, + { + "type": "text", + "text": "A.4 MAIN RESULTS ON GENERATION TASKS ", + "text_level": 1, + "bbox": [ + 176, + 103, + 496, + 118 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In addition to NLU tasks, DeBERTa can also be extended to handle NLG tasks. To allow DeBERTa operating like an auto-regressive model for text generation, we use a triangular matrix for selfattention and set the upper triangular part of the self-attention mask to $- \\infty$ , following Dong et al. (2019). ", + "bbox": [ + 174, + 132, + 826, + 188 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "We evaluate DeBERTa on the task of auto-regressive language model (ARLM) using Wikitext103 (Merity et al., 2016). To do so, we train a new version of DeBERTa, denoted as DeBERTa-MT. It is jointly pre-trained using the MLM and ARLM tasks as in UniLM (Dong et al., 2019). The pre-training hyper-parameters follows that of $\\mathrm { D e B E R T a } _ { b a s e }$ except that we use fewer training steps (200k). For comparison, we use RoBERTa as baseline, and include GPT-2 and Transformer-XL as additional references. DeBERTa-AP is a variant of DeBERTa where absolute position embeddings are incorporated in the input layer as RoBERTa. For a fair comparison, all these models are base models pre-trained in a similar setting. ", + "bbox": [ + 173, + 194, + 826, + 306 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/6031fdb09fda409092948313be8fe1ad4b53433dd305e85cf4c60ef53cdcc419.jpg", + "table_caption": [ + "Table 10: Language model results in perplexity (lower is better) on Wikitext-103 . " + ], + "table_footnote": [], + "table_body": "
Model |RoBERTa|DeBERTa-AP|DeBERTa|DeBERTa-MT|GPT-2|Transformer-XL
Dev PPL21.620.720.519.5123.1
Test PPL21.620.019.919.537.5024
", + "bbox": [ + 200, + 325, + 795, + 383 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Table 10 summarizes the results on Wikitext-103. We see that $\\mathrm { D e B E R T a _ { b a s e } }$ obtains lower perplexities on both dev and test data, and joint training using MLM and ARLM reduces perplexity further. That DeBERTa-AP is inferior to DeBERTa indicates that it is more effective to incorporate absolute position embeddings of words in the decoding layer as the EMD in DeBERTa than in the input layer as RoBERTa. ", + "bbox": [ + 173, + 430, + 825, + 500 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "A.5 HANDLING LONG SEQUENCE INPUT ", + "text_level": 1, + "bbox": [ + 176, + 523, + 464, + 539 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "With relative position bias, we choose to truncate the maximum relative distance to $k$ as in equation 3. Thus in each layer, each token can attend directly to at most $2 ( k - 1 )$ tokens and itself. By stacking Transformer layers, each token in the l´th layer can attend to at most $( 2 k - 1 ) l$ tokens implicitly. Taking $\\mathrm { D e B E R T a } _ { l a r g e }$ as an example, where $k = 5 1 2 , L = 2 4$ , in theory, the maximum sequence length that can be handled is 24,528. This is a byproduct benefit of our design choice and we find it beneficial for the RACE task. A comparison of long sequence effect on the RACE task is shown in Table 11. ", + "bbox": [ + 173, + 551, + 826, + 650 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/fd0fe1cffbdf5810d6b7f6baeffa94fe153d07735f16e597b0fc012fc5fd59e7.jpg", + "table_caption": [ + "Table 11: The effect of handling long sequence input for RACE task with DeBERTa " + ], + "table_footnote": [], + "table_body": "
Sequence length |Middle|High| AMiddleHigh|Accuracy
51276888.885.086.3
88.786.386.8
", + "bbox": [ + 357, + 666, + 640, + 724 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "Long sequence handling is an active research area. There have been a lot of studies where the Transformer architecture is extended for long sequence handling(Beltagy et al., 2020; Kitaev et al., 2019; Child et al., 2019; Dai et al., 2019). One of our future research directions is to extend DeBERTa to deal with extremely long sequences. ", + "bbox": [ + 173, + 772, + 826, + 830 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "A.6 PERFORMANCE IMPROVEMENTS OF DIFFERENT MODEL SCALES ", + "text_level": 1, + "bbox": [ + 174, + 853, + 656, + 867 + ], + "page_idx": 16 + }, + { + "type": "text", + "text": "In this subsection, we study the effect of different model sizes applied to large models on GLUE. Table 12 summarizes the results, showing that larger models can obtain a better result and SiFT also improves the model performance consistently. ", + "bbox": [ + 176, + 881, + 825, + 924 + ], + "page_idx": 16 + }, + { + "type": "table", + "img_path": "images/c843123153d1308665dbbd02a17f298ad9c068ccca227b57a9e71c6b8b2dab44.jpg", + "table_caption": [ + "Table 12: Comparison results of DeBERTa models with different sizes on the GLUE development set. " + ], + "table_footnote": [], + "table_body": "
ModelCoLA| Mcc|QQP AccMNLI-m/mml AccSST-2| AccSTS-B CorrQNLI AccRTE AccMRPC| AccAvg.
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
DeBERTa900M71.192.391.7/91.697.592.095.893.593.190.86
DeBERTa1.5B72.092.791.7/91.997.292.996.093.992.091.17
DeBERTa1.5B+SiFT73.593.092.0/92.197.593.296.596.593.291.93
", + "bbox": [ + 174, + 102, + 826, + 200 + ], + "page_idx": 17 + }, + { + "type": "table", + "img_path": "images/c779afcba8f6c44b25d6735a945f329c3402a8aae15b049f855c33918933d296.jpg", + "table_caption": [], + "table_footnote": [ + "Table 13: Ablation study of the additional modifications in $\\mathrm { D e B E R T a } _ { 1 . 5 B }$ and $\\mathrm { D e B E R T a _ { 9 0 0 M } }$ models. Note that we progressively add each component on the top of DeBE $\\mathrm { R T a } _ { \\mathrm { b a s e } }$ . " + ], + "table_body": "
ModelParametersMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EM
RoBERTa-ReImpbase120M84.9/85.191.1/84.879.5/76.0
DeBERTabase134M86.3/86.292.1/86.182.5/79.3
+ ShareProjection120M86.3/86.392.2/86.282.3/79.5
+ Conv122M86.3/86.592.5/86.482.5/79.7
+ 128k Vocab190M86.7/86.993.1/86.883.0/80.1
", + "bbox": [ + 214, + 239, + 784, + 348 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "A.7 MODEL COMPLEXITY ", + "text_level": 1, + "bbox": [ + 176, + 414, + 367, + 428 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "With the disentangled attention mechanism, we introduce three additional sets of parameters $W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }$ and $P \\in R ^ { 2 k \\times d }$ . The total increase in model parameters is $2 L \\times d ^ { \\bar { 2 } } + 2 k \\times d$ For the large model $( d = 1 0 2 4 , L = 2 4 , k = 5 1 2 )$ q, this amounts to about $4 9 M$ additional parameters, an increase of $1 3 \\%$ . For the base model $( d = 7 6 8 , L = 1 2 , k = 5 1 2 )$ , this amounts to $1 4 M$ additional parameters, an increase of $1 2 \\%$ . However, by sharing the projection matrix between content and position embedding, i.e. $W _ { q , r } = W _ { q , c } , W _ { k , r } = W _ { k , c }$ , the number of parameters of DeBERTa is the same as RoBERTa. Our experiment on base model shows that the results are almost the same, as in Table 13. ", + "bbox": [ + 174, + 440, + 825, + 551 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "The additional computational complexity is $O ( N k d )$ due to the calculation of the additional positionto-content and content-to-position attention scores. Compared with BERT or RoBERTa, this increases the computational cost by $3 0 \\%$ . Compared with XLNet which also uses relative position embedding, the increase of computational cost is about $1 5 \\%$ . A further optimization by fusing the attention computation kernel can significantly reduce this additional cost. For $E M D$ , since the decoder in pre-training only reconstructs the masked tokens, it does not introduce additional computational cost for unmasked tokens. In the situation where $1 5 \\%$ tokens are masked and we use only two decoder layers, the additional cost is $0 . 1 5 \\times 2 / L$ which results in an additional computational cost of only $3 \\%$ for base model( $L = 1 2$ ) and $2 \\%$ for large model( $L = 2 4$ ) in EMD. ", + "bbox": [ + 174, + 558, + 825, + 683 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "A.8 ADDITIONAL DETAILS OF ENHANCED MASK DECODER ", + "text_level": 1, + "bbox": [ + 174, + 700, + 602, + 715 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "The structure of EMD is shown in Figure 2b. There are two inputs for EMD, (i.e., $I , H )$ . $H$ denotes the hidden states from the previous Transformer layer, and $I$ can be any necessary information for decoding, e.g., $H$ , absolute position embedding or output from previous EMD layer. $n$ denotes $n$ stacked layers of EMD where the output of each EMD layer will be the input $I$ for next EMD layer and the output of last EMD layer will be fed to the language model head directly. The $n$ layers can share the same weight. In our experiment we share the same weight for $n = 2$ layers to reduce the number of parameters and use absolute position embedding as $I$ of the first EMD layer. When $I = H$ and $n = 1$ , EMD is the same as the BERT decoder layer. However, EMD is more general and flexible as it can take various types of input information for decoding. ", + "bbox": [ + 174, + 727, + 825, + 852 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "A.9 ATTENTION PATTERNS ", + "text_level": 1, + "bbox": [ + 176, + 869, + 375, + 883 + ], + "page_idx": 17 + }, + { + "type": "text", + "text": "To visualize how DeBERTa operates differently from RoBERTa, we present in Figure 3 the attention patterns (taken in the last self-attention layers) of RoBERTa, DeBERTa and three DeBERTa variants. ", + "bbox": [ + 174, + 895, + 825, + 924 + ], + "page_idx": 17 + }, + { + "type": "image", + "img_path": "images/e717fa563f752c2273db2b0c80b1badbd8f6ac907edf9ffd947fbda30948455a.jpg", + "image_caption": [ + "Figure 2: Comparison of the decoding layer. " + ], + "image_footnote": [], + "bbox": [ + 176, + 109, + 825, + 400 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/8ae0415bd238e46819832892f3f63332c3206c7e1eda47022b508832813f8d77.jpg", + "image_caption": [ + "Figure 3: Comparison of attention patterns of the last layer among DeBERTa, RoBERTa and DeBERTa variants (i.e., DeBERTa without EMD, C2P and P2C respectively). " + ], + "image_footnote": [], + "bbox": [ + 174, + 439, + 826, + 547 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We observe two differences. First, RoBERTa has a clear diagonal line effect for a token attending to itself. But this effect is not very visible in DeBERTa. This can be attributed to the use of EMD, in which the absolute position embedding is added to the hidden state of content as the query vector, as verified by the attention pattern of DeBERTa-EMD where the diagonal line effect is more visible than that of the original DeBERTa. Second, we observe vertical strips in the attention patterns of RoBERTa, which are mainly caused by high-frequent functional words or tokens (e.g., “a”, “the”, and punctuation). For DeBERTa, the strip only appears in the first column, which represents the [CLS] token. We conjecture that a dominant emphasis on [CLS] is desirable since the feature vector of [CLS] is often used as a contextual representation of the entire input sequence in downstream tasks. We also observe that the vertical strip effect is quite obvious in the patterns of the three DeBERTa variants. ", + "bbox": [ + 173, + 614, + 826, + 767 + ], + "page_idx": 18 + }, + { + "type": "text", + "text": "We present three additional examples to illustrate the different attention patterns of DeBERTa and RoBERTa in Figures 4 and 5. ", + "bbox": [ + 174, + 775, + 823, + 804 + ], + "page_idx": 18 + }, + { + "type": "image", + "img_path": "images/4ded61fc2789380f8e48a344e2832f08e141cde3be4b1e729272294ee12539bd.jpg", + "image_caption": [ + "Figure 4: Comparison on attention patterns of the last layer between DeBERTa and RoBERTa. " + ], + "image_footnote": [], + "bbox": [ + 287, + 252, + 714, + 737 + ], + "page_idx": 19 + }, + { + "type": "image", + "img_path": "images/797e974d1df596acf89f11dd99e90820f599208dca3b930e0dc2054ac2ea74aa.jpg", + "image_caption": [ + "Figure 5: Comparison on attention patterns of last layer between DeBERTa and its variants (i.e. DeBERTa without EMD, C2P and P2C respectively). " + ], + "image_footnote": [], + "bbox": [ + 178, + 93, + 821, + 563 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "A.10 ACCOUNT FOR THE VARIANCE IN FINE-TUNING ", + "text_level": 1, + "bbox": [ + 174, + 631, + 562, + 645 + ], + "page_idx": 20 + }, + { + "type": "text", + "text": "Accounting for the variance of different runs of fine-tuning, in our experiments, we always follow Liu et al. (2019c) to report the results on downstream tasks by averaging over five runs with different random initialization seeds, and perform significance test when comparing results. As the examples shown in Table 14, $\\mathrm { D e B E R T a } _ { b a s e }$ significantly outperforms $\\mathrm { R o B E R T a } _ { b a s e }$ $\\dot { p }$ -value $< 0 . 0 5$ ). ", + "bbox": [ + 174, + 656, + 825, + 713 + ], + "page_idx": 20 + }, + { + "type": "table", + "img_path": "images/7eb07f93a7a34246d91924c9c9593cc42c94ae69031c65b08e9ebabf5b5a4aa3.jpg", + "table_caption": [ + "Table 14: Comparison of DeBERTa and RoBERTa on MNLI-matched and SQuAD v1.1. " + ], + "table_footnote": [], + "table_body": "
Model MNLI-matched (Min/Max/Avg)SQuAD v1.1 (Min/Max/Avg)p-value
RoBERTabase84.7/85.0/84.990.8/91.3/91.10.02
DeBERTabase86.1/86.5/86.391.8/92.2/92.10.01
", + "bbox": [ + 186, + 727, + 813, + 779 + ], + "page_idx": 20 + } +] \ No newline at end of file diff --git a/parse/train/XPZIaotutsD/XPZIaotutsD_middle.json b/parse/train/XPZIaotutsD/XPZIaotutsD_middle.json new file mode 100644 index 0000000000000000000000000000000000000000..322c139ac12d21dc09d46255e0935cb5beb9feff --- /dev/null +++ b/parse/train/XPZIaotutsD/XPZIaotutsD_middle.json @@ -0,0 +1,52323 @@ +{ + "pdf_info": [ + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 507, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 507, + 98 + ], + "score": 1.0, + "content": "DEBERTA: DECODING-ENHANCED BERT WITH DIS-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 100, + 290, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 290, + 117 + ], + "score": 1.0, + "content": "ENTANGLED ATTENTION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 134, + 378, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 379, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 160, + 147 + ], + "score": 1.0, + "content": "Pengcheng", + "type": "text" + }, + { + "bbox": [ + 160, + 134, + 178, + 146 + ], + "score": 0.79, + "content": "\\mathbf { H e } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 134, + 225, + 147 + ], + "score": 1.0, + "content": ", Xiaodong", + "type": "text" + }, + { + "bbox": [ + 225, + 134, + 246, + 146 + ], + "score": 0.69, + "content": "\\mathbf { L i u ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 134, + 289, + 147 + ], + "score": 1.0, + "content": ", Jianfeng", + "type": "text" + }, + { + "bbox": [ + 289, + 134, + 312, + 146 + ], + "score": 0.36, + "content": "\\mathbf { G a o ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 134, + 379, + 147 + ], + "score": 1.0, + "content": ", Weizhu Chen1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 345, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 236, + 159 + ], + "score": 1.0, + "content": "1 Microsoft Dynamics 365 AI", + "type": "text" + }, + { + "bbox": [ + 255, + 145, + 345, + 159 + ], + "score": 1.0, + "content": "2 Microsoft Research", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 157, + 360, + 170 + ], + "spans": [ + { + "bbox": [ + 113, + 157, + 360, + 170 + ], + "score": 1.0, + "content": "{penhe,xiaodl,jfgao,wzchen}@microsoft.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 142, + 226, + 469, + 510 + ], + "lines": [ + { + "bbox": [ + 141, + 225, + 469, + 238 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 469, + 238 + ], + "score": 1.0, + "content": "Recent progress in pre-trained neural language models has significantly improved", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 236, + 470, + 249 + ], + "spans": [ + { + "bbox": [ + 141, + 236, + 470, + 249 + ], + "score": 1.0, + "content": "the performance of many natural language processing (NLP) tasks. In this pa-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 248, + 470, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 470, + 259 + ], + "score": 1.0, + "content": "per we propose a new model architecture DeBERTa (Decoding-enhanced BERT", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 271 + ], + "score": 1.0, + "content": "with disentangled attention) that improves the BERT and RoBERTa models using", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 469, + 281 + ], + "score": 1.0, + "content": "two novel techniques. The first is the disentangled attention mechanism, where", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 280, + 470, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 293 + ], + "score": 1.0, + "content": "each word is represented using two vectors that encode its content and position,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 470, + 303 + ], + "score": 1.0, + "content": "respectively, and the attention weights among words are computed using disen-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 302, + 470, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 314 + ], + "score": 1.0, + "content": "tangled matrices on their contents and relative positions, respectively. Second,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "an enhanced mask decoder is used to incorporate absolute positions in the de-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 470, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 337 + ], + "score": 1.0, + "content": "coding layer to predict the masked tokens in model pre-training. In addition, a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "score": 1.0, + "content": "new virtual adversarial training method is used for fine-tuning to improve models’", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 360 + ], + "score": 1.0, + "content": "generalization. We show that these techniques significantly improve the efficiency", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "spans": [ + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "score": 1.0, + "content": "of model pre-training and the performance of both natural language understand", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 367, + 470, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 470, + 381 + ], + "score": 1.0, + "content": "(NLU) and natural langauge generation (NLG) downstream tasks. Compared", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 470, + 392 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 392 + ], + "score": 1.0, + "content": "to RoBERTa-Large, a DeBERTa model trained on half of the training data per-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 389, + 469, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 469, + 402 + ], + "score": 1.0, + "content": "forms consistently better on a wide range of NLP tasks, achieving improvements", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 400, + 471, + 414 + ], + "spans": [ + { + "bbox": [ + 141, + 400, + 197, + 414 + ], + "score": 1.0, + "content": "on MNLI by", + "type": "text" + }, + { + "bbox": [ + 198, + 401, + 226, + 411 + ], + "score": 0.88, + "content": "+ 0 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 401, + 258, + 411 + ], + "score": 0.83, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 400, + 276, + 414 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 276, + 401, + 305, + 411 + ], + "score": 0.83, + "content": "9 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 400, + 360, + 414 + ], + "score": 1.0, + "content": ", on SQuAD", + "type": "text" + }, + { + "bbox": [ + 360, + 401, + 380, + 412 + ], + "score": 0.29, + "content": "\\mathrm { v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 400, + 394, + 414 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 394, + 401, + 423, + 412 + ], + "score": 0.92, + "content": "+ 2 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 400, + 427, + 414 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 427, + 401, + 455, + 411 + ], + "score": 0.82, + "content": "8 8 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 400, + 471, + 414 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 412, + 469, + 424 + ], + "spans": [ + { + "bbox": [ + 142, + 412, + 172, + 423 + ], + "score": 0.83, + "content": "9 0 . 7 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 412, + 231, + 424 + ], + "score": 1.0, + "content": "and RACE by", + "type": "text" + }, + { + "bbox": [ + 232, + 412, + 260, + 423 + ], + "score": 0.88, + "content": "+ 3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 412, + 264, + 424 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 264, + 412, + 291, + 423 + ], + "score": 0.83, + "content": "8 3 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 412, + 306, + 424 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 307, + 412, + 334, + 423 + ], + "score": 0.84, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 412, + 469, + 424 + ], + "score": 1.0, + "content": "). Notably, we scale up DeBERTa", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 423, + 471, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 471, + 435 + ], + "score": 1.0, + "content": "by training a larger version that consists of 48 Transform layers with 1.5 bil-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 434, + 470, + 445 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 470, + 445 + ], + "score": 1.0, + "content": "lion parameters. The significant performance boost makes the single DeBERTa", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 444, + 471, + 457 + ], + "spans": [ + { + "bbox": [ + 141, + 444, + 471, + 457 + ], + "score": 1.0, + "content": "model surpass the human performance on the SuperGLUE benchmark (Wang et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 455, + 470, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 455, + 470, + 468 + ], + "score": 1.0, + "content": "2019a) for the first time in terms of macro-average score (89.9 versus 89.8), and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 466, + 470, + 479 + ], + "spans": [ + { + "bbox": [ + 141, + 466, + 470, + 479 + ], + "score": 1.0, + "content": "the ensemble DeBERTa model sits atop the SuperGLUE leaderboard as of Jan-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 477, + 470, + 490 + ], + "spans": [ + { + "bbox": [ + 141, + 477, + 470, + 490 + ], + "score": 1.0, + "content": "uary 6, 2021, outperforming the human baseline by a decent margin (90.3 versus", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 142, + 489, + 470, + 500 + ], + "spans": [ + { + "bbox": [ + 142, + 489, + 470, + 500 + ], + "score": 1.0, + "content": "89.8). The pre-trained DeBERTa models and the source code were released at:", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 500, + 367, + 511 + ], + "spans": [ + { + "bbox": [ + 141, + 500, + 367, + 511 + ], + "score": 1.0, + "content": "https://github.com/microsoft/DeBERTa1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 18.5 + }, + { + "type": "title", + "bbox": [ + 108, + 538, + 206, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 208, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 208, + 554 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 579 + ], + "score": 1.0, + "content": "The Transformer has become the most effective neural network architecture for neural language", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 577, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 504, + 587 + ], + "score": 1.0, + "content": "modeling. Unlike recurrent neural networks (RNNs) that process text in sequence, Transformers", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "apply self-attention to compute in parallel every word from the input text an attention weight that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "gauges the influence each word has on another, thus allowing for much more parallelization than", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "RNNs for large-scale model training (Vaswani et al., 2017). Since 2018, we have seen the rise of a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "set of large-scale Transformer-based Pre-trained Language Models (PLMs), such as GPT (Radford", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 631, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 506, + 643 + ], + "score": 1.0, + "content": "et al., 2019; Brown et al., 2020), BERT (Devlin et al., 2019), RoBERTa (Liu et al., 2019c), XLNet", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 641, + 507, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 507, + 655 + ], + "score": 1.0, + "content": "(Yang et al., 2019), UniLM (Dong et al., 2019), ELECTRA (Clark et al., 2020), T5 (Raffel et al.,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "2020), ALUM (Liu et al., 2020), StructBERT (Wang et al., 2019c) and ERINE (Sun et al., 2019) .", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 663, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 505, + 677 + ], + "score": 1.0, + "content": "These PLMs have been fine-tuned using task-specific labels and created new state of the art in many", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 674, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 506, + 688 + ], + "score": 1.0, + "content": "downstream natural language processing (NLP) tasks (Liu et al., 2019b; Minaee et al., 2020; Jiang", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 686, + 307, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 307, + 698 + ], + "score": 1.0, + "content": "et al., 2020; He et al., 2019a;b; Shen et al., 2020).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 38.5 + } + ], + "page_idx": 0, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 712, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 710, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 119, + 710, + 506, + 723 + ], + "score": 1.0, + "content": "1Our code and models are also available at HuggingFace Transformers: https://github.com/", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 479, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 434, + 732 + ], + "score": 1.0, + "content": "huggingface/transformers, https://huggingface.co/models?filter", + "type": "text" + }, + { + "bbox": [ + 434, + 723, + 441, + 730 + ], + "score": 0.51, + "content": "=", + "type": "inline_equation" + }, + { + "bbox": [ + 441, + 721, + 479, + 732 + ], + "score": 1.0, + "content": "deberta", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 308, + 761 + ], + "score": 1.0, + "content": "1", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 107, + 78, + 505, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 78, + 507, + 98 + ], + "spans": [ + { + "bbox": [ + 105, + 78, + 507, + 98 + ], + "score": 1.0, + "content": "DEBERTA: DECODING-ENHANCED BERT WITH DIS-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 100, + 290, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 100, + 290, + 117 + ], + "score": 1.0, + "content": "ENTANGLED ATTENTION", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 112, + 134, + 378, + 168 + ], + "lines": [ + { + "bbox": [ + 111, + 134, + 379, + 147 + ], + "spans": [ + { + "bbox": [ + 111, + 134, + 160, + 147 + ], + "score": 1.0, + "content": "Pengcheng", + "type": "text" + }, + { + "bbox": [ + 160, + 134, + 178, + 146 + ], + "score": 0.79, + "content": "\\mathbf { H e } ^ { 1 }", + "type": "inline_equation" + }, + { + "bbox": [ + 178, + 134, + 225, + 147 + ], + "score": 1.0, + "content": ", Xiaodong", + "type": "text" + }, + { + "bbox": [ + 225, + 134, + 246, + 146 + ], + "score": 0.69, + "content": "\\mathbf { L i u ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 134, + 289, + 147 + ], + "score": 1.0, + "content": ", Jianfeng", + "type": "text" + }, + { + "bbox": [ + 289, + 134, + 312, + 146 + ], + "score": 0.36, + "content": "\\mathbf { G a o ^ { 2 } }", + "type": "inline_equation" + }, + { + "bbox": [ + 313, + 134, + 379, + 147 + ], + "score": 1.0, + "content": ", Weizhu Chen1", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 112, + 145, + 345, + 159 + ], + "spans": [ + { + "bbox": [ + 112, + 145, + 236, + 159 + ], + "score": 1.0, + "content": "1 Microsoft Dynamics 365 AI", + "type": "text" + }, + { + "bbox": [ + 255, + 145, + 345, + 159 + ], + "score": 1.0, + "content": "2 Microsoft Research", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 113, + 157, + 360, + 170 + ], + "spans": [ + { + "bbox": [ + 113, + 157, + 360, + 170 + ], + "score": 1.0, + "content": "{penhe,xiaodl,jfgao,wzchen}@microsoft.com", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 111, + 134, + 379, + 170 + ] + }, + { + "type": "title", + "bbox": [ + 278, + 198, + 333, + 210 + ], + "lines": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "spans": [ + { + "bbox": [ + 276, + 197, + 335, + 211 + ], + "score": 1.0, + "content": "ABSTRACT", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 142, + 226, + 469, + 510 + ], + "lines": [ + { + "bbox": [ + 141, + 225, + 469, + 238 + ], + "spans": [ + { + "bbox": [ + 141, + 225, + 469, + 238 + ], + "score": 1.0, + "content": "Recent progress in pre-trained neural language models has significantly improved", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 141, + 236, + 470, + 249 + ], + "spans": [ + { + "bbox": [ + 141, + 236, + 470, + 249 + ], + "score": 1.0, + "content": "the performance of many natural language processing (NLP) tasks. In this pa-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 141, + 248, + 470, + 259 + ], + "spans": [ + { + "bbox": [ + 141, + 248, + 470, + 259 + ], + "score": 1.0, + "content": "per we propose a new model architecture DeBERTa (Decoding-enhanced BERT", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 141, + 257, + 469, + 271 + ], + "spans": [ + { + "bbox": [ + 141, + 257, + 469, + 271 + ], + "score": 1.0, + "content": "with disentangled attention) that improves the BERT and RoBERTa models using", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 141, + 270, + 469, + 281 + ], + "spans": [ + { + "bbox": [ + 141, + 270, + 469, + 281 + ], + "score": 1.0, + "content": "two novel techniques. The first is the disentangled attention mechanism, where", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 141, + 280, + 470, + 293 + ], + "spans": [ + { + "bbox": [ + 141, + 280, + 470, + 293 + ], + "score": 1.0, + "content": "each word is represented using two vectors that encode its content and position,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 141, + 291, + 470, + 303 + ], + "spans": [ + { + "bbox": [ + 141, + 291, + 470, + 303 + ], + "score": 1.0, + "content": "respectively, and the attention weights among words are computed using disen-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 141, + 302, + 470, + 314 + ], + "spans": [ + { + "bbox": [ + 141, + 302, + 470, + 314 + ], + "score": 1.0, + "content": "tangled matrices on their contents and relative positions, respectively. Second,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "spans": [ + { + "bbox": [ + 141, + 313, + 470, + 325 + ], + "score": 1.0, + "content": "an enhanced mask decoder is used to incorporate absolute positions in the de-", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 141, + 324, + 470, + 337 + ], + "spans": [ + { + "bbox": [ + 141, + 324, + 470, + 337 + ], + "score": 1.0, + "content": "coding layer to predict the masked tokens in model pre-training. In addition, a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "spans": [ + { + "bbox": [ + 141, + 335, + 470, + 347 + ], + "score": 1.0, + "content": "new virtual adversarial training method is used for fine-tuning to improve models’", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 141, + 345, + 470, + 360 + ], + "spans": [ + { + "bbox": [ + 141, + 345, + 470, + 360 + ], + "score": 1.0, + "content": "generalization. We show that these techniques significantly improve the efficiency", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "spans": [ + { + "bbox": [ + 142, + 357, + 469, + 369 + ], + "score": 1.0, + "content": "of model pre-training and the performance of both natural language understand", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 141, + 367, + 470, + 381 + ], + "spans": [ + { + "bbox": [ + 141, + 367, + 470, + 381 + ], + "score": 1.0, + "content": "(NLU) and natural langauge generation (NLG) downstream tasks. Compared", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 141, + 378, + 470, + 392 + ], + "spans": [ + { + "bbox": [ + 141, + 378, + 470, + 392 + ], + "score": 1.0, + "content": "to RoBERTa-Large, a DeBERTa model trained on half of the training data per-", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 141, + 389, + 469, + 402 + ], + "spans": [ + { + "bbox": [ + 141, + 389, + 469, + 402 + ], + "score": 1.0, + "content": "forms consistently better on a wide range of NLP tasks, achieving improvements", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 141, + 400, + 471, + 414 + ], + "spans": [ + { + "bbox": [ + 141, + 400, + 197, + 414 + ], + "score": 1.0, + "content": "on MNLI by", + "type": "text" + }, + { + "bbox": [ + 198, + 401, + 226, + 411 + ], + "score": 0.88, + "content": "+ 0 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 401, + 258, + 411 + ], + "score": 0.83, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 400, + 276, + 414 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 276, + 401, + 305, + 411 + ], + "score": 0.83, + "content": "9 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 306, + 400, + 360, + 414 + ], + "score": 1.0, + "content": ", on SQuAD", + "type": "text" + }, + { + "bbox": [ + 360, + 401, + 380, + 412 + ], + "score": 0.29, + "content": "\\mathrm { v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 380, + 400, + 394, + 414 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 394, + 401, + 423, + 412 + ], + "score": 0.92, + "content": "+ 2 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 400, + 427, + 414 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 427, + 401, + 455, + 411 + ], + "score": 0.82, + "content": "8 8 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 400, + 471, + 414 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 142, + 412, + 469, + 424 + ], + "spans": [ + { + "bbox": [ + 142, + 412, + 172, + 423 + ], + "score": 0.83, + "content": "9 0 . 7 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 172, + 412, + 231, + 424 + ], + "score": 1.0, + "content": "and RACE by", + "type": "text" + }, + { + "bbox": [ + 232, + 412, + 260, + 423 + ], + "score": 0.88, + "content": "+ 3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 412, + 264, + 424 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 264, + 412, + 291, + 423 + ], + "score": 0.83, + "content": "8 3 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 291, + 412, + 306, + 424 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 307, + 412, + 334, + 423 + ], + "score": 0.84, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 335, + 412, + 469, + 424 + ], + "score": 1.0, + "content": "). Notably, we scale up DeBERTa", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 141, + 423, + 471, + 435 + ], + "spans": [ + { + "bbox": [ + 141, + 423, + 471, + 435 + ], + "score": 1.0, + "content": "by training a larger version that consists of 48 Transform layers with 1.5 bil-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 141, + 434, + 470, + 445 + ], + "spans": [ + { + "bbox": [ + 141, + 434, + 470, + 445 + ], + "score": 1.0, + "content": "lion parameters. The significant performance boost makes the single DeBERTa", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 141, + 444, + 471, + 457 + ], + "spans": [ + { + "bbox": [ + 141, + 444, + 471, + 457 + ], + "score": 1.0, + "content": "model surpass the human performance on the SuperGLUE benchmark (Wang et al.,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 141, + 455, + 470, + 468 + ], + "spans": [ + { + "bbox": [ + 141, + 455, + 470, + 468 + ], + "score": 1.0, + "content": "2019a) for the first time in terms of macro-average score (89.9 versus 89.8), and", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 141, + 466, + 470, + 479 + ], + "spans": [ + { + "bbox": [ + 141, + 466, + 470, + 479 + ], + "score": 1.0, + "content": "the ensemble DeBERTa model sits atop the SuperGLUE leaderboard as of Jan-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 141, + 477, + 470, + 490 + ], + "spans": [ + { + "bbox": [ + 141, + 477, + 470, + 490 + ], + "score": 1.0, + "content": "uary 6, 2021, outperforming the human baseline by a decent margin (90.3 versus", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 142, + 489, + 470, + 500 + ], + "spans": [ + { + "bbox": [ + 142, + 489, + 470, + 500 + ], + "score": 1.0, + "content": "89.8). The pre-trained DeBERTa models and the source code were released at:", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 141, + 500, + 367, + 511 + ], + "spans": [ + { + "bbox": [ + 141, + 500, + 367, + 511 + ], + "score": 1.0, + "content": "https://github.com/microsoft/DeBERTa1.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 18.5, + "bbox_fs": [ + 141, + 225, + 471, + 511 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 538, + 206, + 550 + ], + "lines": [ + { + "bbox": [ + 105, + 537, + 208, + 554 + ], + "spans": [ + { + "bbox": [ + 105, + 537, + 208, + 554 + ], + "score": 1.0, + "content": "1 INTRODUCTION", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 107, + 565, + 505, + 696 + ], + "lines": [ + { + "bbox": [ + 105, + 563, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 505, + 579 + ], + "score": 1.0, + "content": "The Transformer has become the most effective neural network architecture for neural language", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 577, + 504, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 577, + 504, + 587 + ], + "score": 1.0, + "content": "modeling. Unlike recurrent neural networks (RNNs) that process text in sequence, Transformers", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 506, + 600 + ], + "score": 1.0, + "content": "apply self-attention to compute in parallel every word from the input text an attention weight that", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 104, + 597, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 104, + 597, + 506, + 612 + ], + "score": 1.0, + "content": "gauges the influence each word has on another, thus allowing for much more parallelization than", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "RNNs for large-scale model training (Vaswani et al., 2017). Since 2018, we have seen the rise of a", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 506, + 632 + ], + "score": 1.0, + "content": "set of large-scale Transformer-based Pre-trained Language Models (PLMs), such as GPT (Radford", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 631, + 506, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 506, + 643 + ], + "score": 1.0, + "content": "et al., 2019; Brown et al., 2020), BERT (Devlin et al., 2019), RoBERTa (Liu et al., 2019c), XLNet", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 641, + 507, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 507, + 655 + ], + "score": 1.0, + "content": "(Yang et al., 2019), UniLM (Dong et al., 2019), ELECTRA (Clark et al., 2020), T5 (Raffel et al.,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 506, + 665 + ], + "score": 1.0, + "content": "2020), ALUM (Liu et al., 2020), StructBERT (Wang et al., 2019c) and ERINE (Sun et al., 2019) .", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 663, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 505, + 677 + ], + "score": 1.0, + "content": "These PLMs have been fine-tuned using task-specific labels and created new state of the art in many", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 674, + 506, + 688 + ], + "spans": [ + { + "bbox": [ + 105, + 674, + 506, + 688 + ], + "score": 1.0, + "content": "downstream natural language processing (NLP) tasks (Liu et al., 2019b; Minaee et al., 2020; Jiang", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 106, + 686, + 307, + 698 + ], + "spans": [ + { + "bbox": [ + 106, + 686, + 307, + 698 + ], + "score": 1.0, + "content": "et al., 2020; He et al., 2019a;b; Shen et al., 2020).", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 38.5, + "bbox_fs": [ + 104, + 563, + 507, + 698 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "In this paper, we propose a new Transformer-based neural language model DeBERTa (Decoding-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "enhanced BERT with disentangled attention), which improves previous state-of-the-art PLMs using", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 473, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 473, + 117 + ], + "score": 1.0, + "content": "two novel techniques: a disentangled attention mechanism, and an enhanced mask decoder.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 505, + 144 + ], + "score": 1.0, + "content": "Disentangled attention. Unlike BERT where each word in the input layer is represented using", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 104, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "a vector which is the sum of its word (content) embedding and position embedding, each word in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 165 + ], + "score": 1.0, + "content": "DeBERTa is represented using two vectors that encode its content and position, respectively, and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "attention weights among words are computed using disentangled matrices based on their contents", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 175, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 187 + ], + "score": 1.0, + "content": "and relative positions, respectively. This is motivated by the observation that the attention weight of a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "score": 1.0, + "content": "word pair depends on not only their contents but their relative positions. For example, the dependency", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 505, + 210 + ], + "score": 1.0, + "content": "between the words “deep” and “learning” is much stronger when they occur next to each other than", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 208, + 264, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 264, + 221 + ], + "score": 1.0, + "content": "when they occur in different sentences.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "score": 1.0, + "content": "Enhanced mask decoder. Like BERT, DeBERTa is pre-trained using masked language modeling", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 259 + ], + "score": 1.0, + "content": "(MLM). MLM is a fill-in-the-blank task, where a model is taught to use the words surrounding a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "mask token to predict what the masked word should be. DeBERTa uses the content and position", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "information of the context words for MLM. The disentangled attention mechanism already considers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "the contents and relative positions of the context words, but not the absolute positions of these words,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "which in many cases are crucial for the prediction. Consider the sentence “a new store opened beside", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "the new mall” with the italicized words “store” and “mall” masked for prediction. Although the local", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "contexts of the two words are similar, they play different syntactic roles in the sentence. (Here, the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 322, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 506, + 335 + ], + "score": 1.0, + "content": "subject of the sentence is “store” not “mall,” for example.) These syntactical nuances depend, to a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 506, + 346 + ], + "score": 1.0, + "content": "large degree, upon the words’ absolute positions in the sentence, and so it is important to account", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "for a word’s absolute position in the language modeling process. DeBERTa incorporates absolute", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 355, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 368 + ], + "score": 1.0, + "content": "word position embeddings right before the softmax layer where the model decodes the masked words", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 366, + 426, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 426, + 379 + ], + "score": 1.0, + "content": "based on the aggregated contextual embeddings of word contents and positions.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17 + }, + { + "type": "text", + "bbox": [ + 108, + 383, + 502, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 504, + 397 + ], + "score": 1.0, + "content": "In addition, we propose a new virtual adversarial training method for fine-tuning PLMs to downstream", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 393, + 399, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 399, + 407 + ], + "score": 1.0, + "content": "NLP tasks. The method is effective in improving models’ generalization.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "We show through a comprehensive empirical study that these techniques substantially improve the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 422, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 506, + 435 + ], + "score": 1.0, + "content": "efficiency of pre-training and the performance of downstream tasks. In the NLU tasks, compared to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "score": 1.0, + "content": "RoBERTa-Large, a DeBERTa model trained on half the training data performs consistently better", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 383, + 457 + ], + "score": 1.0, + "content": "on a wide range of NLP tasks, achieving improvements on MNLI by", + "type": "text" + }, + { + "bbox": [ + 383, + 444, + 411, + 455 + ], + "score": 0.89, + "content": "+ 0 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 444, + 415, + 457 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 416, + 444, + 443, + 455 + ], + "score": 0.84, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 444, + 458, + 457 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 459, + 444, + 487, + 455 + ], + "score": 0.81, + "content": "9 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "), on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 174, + 467 + ], + "score": 1.0, + "content": "SQuAD v2.0 by", + "type": "text" + }, + { + "bbox": [ + 174, + 455, + 233, + 466 + ], + "score": 0.9, + "content": "+ 2 . 3 \\% ( 8 8 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 455, + 248, + 467 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 249, + 455, + 278, + 466 + ], + "score": 0.84, + "content": "9 0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 455, + 343, + 467 + ], + "score": 1.0, + "content": "), and RACE by", + "type": "text" + }, + { + "bbox": [ + 343, + 455, + 371, + 465 + ], + "score": 0.88, + "content": "+ 3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 455, + 376, + 467 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 376, + 455, + 404, + 465 + ], + "score": 0.82, + "content": "8 3 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 455, + 420, + 467 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 420, + 455, + 449, + 466 + ], + "score": 0.83, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "). In the NLG", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "tasks, DeBERTa reduces the perplexity from 21.6 to 19.5 on the Wikitext-103 dataset. We further", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 477, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 489 + ], + "score": 1.0, + "content": "scale up DeBERTa by pre-training a larger model that consists of 48 Transformer layers with 1.5", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "billion parameters. The single 1.5B-parameter DeBERTa model substantially outperforms T5 with 11", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 405, + 511 + ], + "score": 1.0, + "content": "billion parameters on the SuperGLUE benchmark (Wang et al., 2019a) by", + "type": "text" + }, + { + "bbox": [ + 405, + 499, + 456, + 510 + ], + "score": 0.89, + "content": "0 . 6 \\% ( 8 9 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 498, + 472, + 511 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 472, + 499, + 500, + 510 + ], + "score": 0.85, + "content": "8 9 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "and surpasses the human baseline (89.9 vs. 89.8) for the first time. The ensemble DeBERTa model", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "sits atop the SuperGLUE leaderboard as of January 6, 2021, outperforming the human baseline by a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 532, + 242, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 242, + 544 + ], + "score": 1.0, + "content": "decent margin (90.3 versus 89.8).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5 + }, + { + "type": "title", + "bbox": [ + 108, + 562, + 200, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 560, + 202, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 202, + 578 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 588, + 197, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 199, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 199, + 601 + ], + "score": 1.0, + "content": "2.1 TRANSFORMER", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "A Transformer-based language model is composed of stacked Transformer blocks (Vaswani et al.,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 1.0, + "content": "2017). Each block contains a multi-head self-attention layer followed by a fully connected positional", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "feed-forward network. The standard self-attention mechanism lacks a natural way to encode word", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 643, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 658 + ], + "score": 1.0, + "content": "position information. Thus, existing approaches add a positional bias to each input word embedding", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "so that each input word is represented by a vector whose value depends on its content and position.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "The positional bias can be implemented using absolute position embedding (Vaswani et al., 2017;", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "Radford et al., 2019; Devlin et al., 2019) or relative position embedding (Huang et al., 2018; Yang", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al., 2019). It has been shown that relative position representations are more effective for natural", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "language understanding and generation tasks (Dai et al., 2019; Shaw et al., 2018). The proposed", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "disentangled attention mechanism differs from all existing approaches in that we represent each", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "input word using two separate vectors that encode a word’s content and position, respectively, and", + "type": "text" + } + ], + "index": 50 + } + ], + "index": 45 + } + ], + "page_idx": 1, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 763 + ], + "score": 1.0, + "content": "2", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 506, + 96 + ], + "score": 1.0, + "content": "In this paper, we propose a new Transformer-based neural language model DeBERTa (Decoding-", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "enhanced BERT with disentangled attention), which improves previous state-of-the-art PLMs using", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 104, + 473, + 117 + ], + "spans": [ + { + "bbox": [ + 105, + 104, + 473, + 117 + ], + "score": 1.0, + "content": "two novel techniques: a disentangled attention mechanism, and an enhanced mask decoder.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 105, + 81, + 506, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 131, + 505, + 219 + ], + "lines": [ + { + "bbox": [ + 106, + 130, + 505, + 144 + ], + "spans": [ + { + "bbox": [ + 106, + 130, + 505, + 144 + ], + "score": 1.0, + "content": "Disentangled attention. Unlike BERT where each word in the input layer is represented using", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 142, + 506, + 155 + ], + "spans": [ + { + "bbox": [ + 104, + 142, + 506, + 155 + ], + "score": 1.0, + "content": "a vector which is the sum of its word (content) embedding and position embedding, each word in", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 154, + 505, + 165 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 505, + 165 + ], + "score": 1.0, + "content": "DeBERTa is represented using two vectors that encode its content and position, respectively, and the", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "spans": [ + { + "bbox": [ + 105, + 164, + 505, + 176 + ], + "score": 1.0, + "content": "attention weights among words are computed using disentangled matrices based on their contents", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 175, + 506, + 187 + ], + "spans": [ + { + "bbox": [ + 105, + 175, + 506, + 187 + ], + "score": 1.0, + "content": "and relative positions, respectively. This is motivated by the observation that the attention weight of a", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 506, + 200 + ], + "score": 1.0, + "content": "word pair depends on not only their contents but their relative positions. For example, the dependency", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 196, + 505, + 210 + ], + "spans": [ + { + "bbox": [ + 105, + 196, + 505, + 210 + ], + "score": 1.0, + "content": "between the words “deep” and “learning” is much stronger when they occur next to each other than", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 208, + 264, + 221 + ], + "spans": [ + { + "bbox": [ + 106, + 208, + 264, + 221 + ], + "score": 1.0, + "content": "when they occur in different sentences.", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 130, + 506, + 221 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 234, + 505, + 377 + ], + "lines": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 105, + 234, + 505, + 248 + ], + "score": 1.0, + "content": "Enhanced mask decoder. Like BERT, DeBERTa is pre-trained using masked language modeling", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 245, + 506, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 506, + 259 + ], + "score": 1.0, + "content": "(MLM). MLM is a fill-in-the-blank task, where a model is taught to use the words surrounding a", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 256, + 505, + 270 + ], + "score": 1.0, + "content": "mask token to predict what the masked word should be. DeBERTa uses the content and position", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "spans": [ + { + "bbox": [ + 105, + 267, + 505, + 280 + ], + "score": 1.0, + "content": "information of the context words for MLM. The disentangled attention mechanism already considers", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 506, + 291 + ], + "score": 1.0, + "content": "the contents and relative positions of the context words, but not the absolute positions of these words,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "spans": [ + { + "bbox": [ + 105, + 289, + 505, + 302 + ], + "score": 1.0, + "content": "which in many cases are crucial for the prediction. Consider the sentence “a new store opened beside", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 300, + 506, + 313 + ], + "spans": [ + { + "bbox": [ + 105, + 300, + 506, + 313 + ], + "score": 1.0, + "content": "the new mall” with the italicized words “store” and “mall” masked for prediction. Although the local", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 311, + 505, + 324 + ], + "spans": [ + { + "bbox": [ + 105, + 311, + 505, + 324 + ], + "score": 1.0, + "content": "contexts of the two words are similar, they play different syntactic roles in the sentence. (Here, the", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 322, + 506, + 335 + ], + "spans": [ + { + "bbox": [ + 106, + 322, + 506, + 335 + ], + "score": 1.0, + "content": "subject of the sentence is “store” not “mall,” for example.) These syntactical nuances depend, to a", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 333, + 506, + 346 + ], + "spans": [ + { + "bbox": [ + 106, + 333, + 506, + 346 + ], + "score": 1.0, + "content": "large degree, upon the words’ absolute positions in the sentence, and so it is important to account", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "spans": [ + { + "bbox": [ + 106, + 344, + 505, + 357 + ], + "score": 1.0, + "content": "for a word’s absolute position in the language modeling process. DeBERTa incorporates absolute", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 355, + 505, + 368 + ], + "spans": [ + { + "bbox": [ + 106, + 355, + 505, + 368 + ], + "score": 1.0, + "content": "word position embeddings right before the softmax layer where the model decodes the masked words", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 366, + 426, + 379 + ], + "spans": [ + { + "bbox": [ + 106, + 366, + 426, + 379 + ], + "score": 1.0, + "content": "based on the aggregated contextual embeddings of word contents and positions.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 17, + "bbox_fs": [ + 105, + 234, + 506, + 379 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 383, + 502, + 406 + ], + "lines": [ + { + "bbox": [ + 105, + 381, + 504, + 397 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 504, + 397 + ], + "score": 1.0, + "content": "In addition, we propose a new virtual adversarial training method for fine-tuning PLMs to downstream", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 393, + 399, + 407 + ], + "spans": [ + { + "bbox": [ + 106, + 393, + 399, + 407 + ], + "score": 1.0, + "content": "NLP tasks. The method is effective in improving models’ generalization.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 381, + 504, + 407 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 411, + 505, + 543 + ], + "lines": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "spans": [ + { + "bbox": [ + 106, + 411, + 505, + 424 + ], + "score": 1.0, + "content": "We show through a comprehensive empirical study that these techniques substantially improve the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 422, + 506, + 435 + ], + "spans": [ + { + "bbox": [ + 105, + 422, + 506, + 435 + ], + "score": 1.0, + "content": "efficiency of pre-training and the performance of downstream tasks. In the NLU tasks, compared to", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "spans": [ + { + "bbox": [ + 105, + 433, + 506, + 446 + ], + "score": 1.0, + "content": "RoBERTa-Large, a DeBERTa model trained on half the training data performs consistently better", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 444, + 506, + 457 + ], + "spans": [ + { + "bbox": [ + 105, + 444, + 383, + 457 + ], + "score": 1.0, + "content": "on a wide range of NLP tasks, achieving improvements on MNLI by", + "type": "text" + }, + { + "bbox": [ + 383, + 444, + 411, + 455 + ], + "score": 0.89, + "content": "+ 0 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 411, + 444, + 415, + 457 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 416, + 444, + 443, + 455 + ], + "score": 0.84, + "content": "9 0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 443, + 444, + 458, + 457 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 459, + 444, + 487, + 455 + ], + "score": 0.81, + "content": "9 1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 487, + 444, + 506, + 457 + ], + "score": 1.0, + "content": "), on", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 455, + 505, + 467 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 174, + 467 + ], + "score": 1.0, + "content": "SQuAD v2.0 by", + "type": "text" + }, + { + "bbox": [ + 174, + 455, + 233, + 466 + ], + "score": 0.9, + "content": "+ 2 . 3 \\% ( 8 8 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 455, + 248, + 467 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 249, + 455, + 278, + 466 + ], + "score": 0.84, + "content": "9 0 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 278, + 455, + 343, + 467 + ], + "score": 1.0, + "content": "), and RACE by", + "type": "text" + }, + { + "bbox": [ + 343, + 455, + 371, + 465 + ], + "score": 0.88, + "content": "+ 3 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 372, + 455, + 376, + 467 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 376, + 455, + 404, + 465 + ], + "score": 0.82, + "content": "8 3 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 404, + 455, + 420, + 467 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 420, + 455, + 449, + 466 + ], + "score": 0.83, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 449, + 455, + 505, + 467 + ], + "score": 1.0, + "content": "). In the NLG", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 106, + 466, + 506, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 466, + 506, + 478 + ], + "score": 1.0, + "content": "tasks, DeBERTa reduces the perplexity from 21.6 to 19.5 on the Wikitext-103 dataset. We further", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 477, + 506, + 489 + ], + "spans": [ + { + "bbox": [ + 105, + 477, + 506, + 489 + ], + "score": 1.0, + "content": "scale up DeBERTa by pre-training a larger model that consists of 48 Transformer layers with 1.5", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "spans": [ + { + "bbox": [ + 105, + 487, + 506, + 501 + ], + "score": 1.0, + "content": "billion parameters. The single 1.5B-parameter DeBERTa model substantially outperforms T5 with 11", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 498, + 506, + 511 + ], + "spans": [ + { + "bbox": [ + 105, + 498, + 405, + 511 + ], + "score": 1.0, + "content": "billion parameters on the SuperGLUE benchmark (Wang et al., 2019a) by", + "type": "text" + }, + { + "bbox": [ + 405, + 499, + 456, + 510 + ], + "score": 0.89, + "content": "0 . 6 \\% ( 8 9 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 457, + 498, + 472, + 511 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 472, + 499, + 500, + 510 + ], + "score": 0.85, + "content": "8 9 . 9 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 500, + 498, + 506, + 511 + ], + "score": 1.0, + "content": "),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 522 + ], + "score": 1.0, + "content": "and surpasses the human baseline (89.9 vs. 89.8) for the first time. The ensemble DeBERTa model", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 520, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 534 + ], + "score": 1.0, + "content": "sits atop the SuperGLUE leaderboard as of January 6, 2021, outperforming the human baseline by a", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 532, + 242, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 242, + 544 + ], + "score": 1.0, + "content": "decent margin (90.3 versus 89.8).", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 411, + 506, + 544 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 562, + 200, + 575 + ], + "lines": [ + { + "bbox": [ + 104, + 560, + 202, + 578 + ], + "spans": [ + { + "bbox": [ + 104, + 560, + 202, + 578 + ], + "score": 1.0, + "content": "2 BACKGROUND", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "title", + "bbox": [ + 108, + 588, + 197, + 600 + ], + "lines": [ + { + "bbox": [ + 106, + 588, + 199, + 601 + ], + "spans": [ + { + "bbox": [ + 106, + 588, + 199, + 601 + ], + "score": 1.0, + "content": "2.1 TRANSFORMER", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 610, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 611, + 506, + 623 + ], + "score": 1.0, + "content": "A Transformer-based language model is composed of stacked Transformer blocks (Vaswani et al.,", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 635 + ], + "score": 1.0, + "content": "2017). Each block contains a multi-head self-attention layer followed by a fully connected positional", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 505, + 645 + ], + "score": 1.0, + "content": "feed-forward network. The standard self-attention mechanism lacks a natural way to encode word", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 643, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 506, + 658 + ], + "score": 1.0, + "content": "position information. Thus, existing approaches add a positional bias to each input word embedding", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 105, + 655, + 506, + 668 + ], + "score": 1.0, + "content": "so that each input word is represented by a vector whose value depends on its content and position.", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "spans": [ + { + "bbox": [ + 106, + 665, + 506, + 678 + ], + "score": 1.0, + "content": "The positional bias can be implemented using absolute position embedding (Vaswani et al., 2017;", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "spans": [ + { + "bbox": [ + 104, + 676, + 506, + 690 + ], + "score": 1.0, + "content": "Radford et al., 2019; Devlin et al., 2019) or relative position embedding (Huang et al., 2018; Yang", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "et al., 2019). It has been shown that relative position representations are more effective for natural", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "language understanding and generation tasks (Dai et al., 2019; Shaw et al., 2018). The proposed", + "type": "text" + } + ], + "index": 48 + }, + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 106, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "disentangled attention mechanism differs from all existing approaches in that we represent each", + "type": "text" + } + ], + "index": 49 + }, + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 505, + 733 + ], + "score": 1.0, + "content": "input word using two separate vectors that encode a word’s content and position, respectively, and", + "type": "text" + } + ], + "index": 50 + }, + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "attention weights among words are computed using disentangled matrices on their contents and", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 231, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 231, + 107 + ], + "score": 1.0, + "content": "relative positions, respectively.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 45, + "bbox_fs": [ + 104, + 611, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "attention weights among words are computed using disentangled matrices on their contents and", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 231, + 107 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 231, + 107 + ], + "score": 1.0, + "content": "relative positions, respectively.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "title", + "bbox": [ + 108, + 117, + 256, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 117, + 258, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 258, + 130 + ], + "score": 1.0, + "content": "2.2 MASKED LANGUAGE MODEL", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 197 + ], + "lines": [ + { + "bbox": [ + 104, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Large-scale Transformer-based PLMs are typically pre-trained on large amounts of text to learn", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "score": 1.0, + "content": "contextual word representations using a self-supervision objective, known as Masked Language", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 384, + 173 + ], + "score": 1.0, + "content": "Model (MLM) (Devlin et al., 2019). Specifically, given a sequence", + "type": "text" + }, + { + "bbox": [ + 384, + 160, + 427, + 172 + ], + "score": 0.93, + "content": "X \\mathrm { ~ = ~ } \\{ x _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 159, + 506, + 173 + ], + "score": 1.0, + "content": ", we corrupt it into", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 118, + 183 + ], + "score": 0.82, + "content": "\\tilde { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 172, + 168, + 185 + ], + "score": 1.0, + "content": "by masking", + "type": "text" + }, + { + "bbox": [ + 169, + 173, + 188, + 184 + ], + "score": 0.87, + "content": "15 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 172, + 487, + 185 + ], + "score": 1.0, + "content": "of its tokens at random and then train a language model parameterized by", + "type": "text" + }, + { + "bbox": [ + 488, + 174, + 493, + 183 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 184, + 384, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 153, + 197 + ], + "score": 1.0, + "content": "reconstruct", + "type": "text" + }, + { + "bbox": [ + 154, + 186, + 164, + 195 + ], + "score": 0.78, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 185, + 297, + 197 + ], + "score": 1.0, + "content": "by predicting the masked tokens", + "type": "text" + }, + { + "bbox": [ + 297, + 186, + 304, + 195 + ], + "score": 0.8, + "content": "\\tilde { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 185, + 367, + 197 + ], + "score": 1.0, + "content": "conditioned on", + "type": "text" + }, + { + "bbox": [ + 368, + 184, + 378, + 195 + ], + "score": 0.86, + "content": "\\tilde { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 185, + 384, + 197 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5 + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 198, + 407, + 224 + ], + "lines": [ + { + "bbox": [ + 203, + 198, + 407, + 224 + ], + "spans": [ + { + "bbox": [ + 203, + 198, + 407, + 224 + ], + "score": 0.91, + "content": "\\operatorname* { m a x } _ { \\theta } \\log p _ { \\theta } ( X | \\tilde { X } ) = \\operatorname* { m a x } _ { \\theta } \\sum _ { i \\in \\mathcal { C } } \\log p _ { \\theta } \\big ( \\tilde { x } _ { i } = x _ { i } | \\tilde { X } \\big )", + "type": "interline_equation", + "image_path": "c75783567dea8d28c4341b4d75a15451e33b5cc71af1d4ae92db7c13675aba4d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 203, + 198, + 407, + 224 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 132, + 239 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 226, + 140, + 235 + ], + "score": 0.79, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 223, + 505, + 239 + ], + "score": 1.0, + "content": "is the index set of the masked tokens in the sequence. The authors of BERT propose to keep", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 126, + 247 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 236, + 296, + 248 + ], + "score": 1.0, + "content": "of the masked tokens unchanged, another", + "type": "text" + }, + { + "bbox": [ + 296, + 236, + 316, + 247 + ], + "score": 0.85, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "replaced with randomly picked tokens and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 247, + 260, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 260, + 259 + ], + "score": 1.0, + "content": "rest replaced with the [MASK] token.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "title", + "bbox": [ + 108, + 273, + 290, + 286 + ], + "lines": [ + { + "bbox": [ + 104, + 272, + 292, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 272, + 292, + 288 + ], + "score": 1.0, + "content": "3 THE DEBERTA ARCHITECTURE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 503, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 503, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 503, + 310 + ], + "score": 1.0, + "content": "3.1 DISENTANGLED ATTENTION: A TWO-VECTOR APPROACH TO CONTENT AND POSITION", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 129, + 308, + 187, + 321 + ], + "spans": [ + { + "bbox": [ + 129, + 308, + 187, + 321 + ], + "score": 1.0, + "content": "EMBEDDING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 329, + 505, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 200, + 343 + ], + "score": 1.0, + "content": "For a token at position", + "type": "text" + }, + { + "bbox": [ + 200, + 331, + 205, + 340 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 329, + 405, + 343 + ], + "score": 1.0, + "content": "in a sequence, we represent it using two vectors,", + "type": "text" + }, + { + "bbox": [ + 405, + 330, + 428, + 342 + ], + "score": 0.92, + "content": "\\left\\{ H _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 329, + 447, + 343 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 447, + 330, + 473, + 343 + ], + "score": 0.92, + "content": "\\{ P _ { i \\mid j } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 329, + 505, + 343 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 370, + 353 + ], + "score": 1.0, + "content": "represent its content and relative position with the token at position", + "type": "text" + }, + { + "bbox": [ + 370, + 342, + 376, + 352 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 340, + 506, + 353 + ], + "score": 1.0, + "content": ", respectively. The calculation of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 478, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 269, + 365 + ], + "score": 1.0, + "content": "the cross attention score between tokens", + "type": "text" + }, + { + "bbox": [ + 269, + 353, + 273, + 362 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 351, + 291, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 352, + 298, + 363 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 351, + 478, + 365 + ], + "score": 1.0, + "content": "can be decomposed into four components as", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 364, + 403, + 397 + ], + "lines": [ + { + "bbox": [ + 207, + 364, + 403, + 397 + ], + "spans": [ + { + "bbox": [ + 207, + 364, + 403, + 397 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { A _ { i , j } = \\{ H _ { i } , P _ { i | j } \\} \\times \\{ H _ { j } , P _ { j | i } \\} ^ { \\intercal } } \\\\ & { \\qquad = H _ { i } H _ { j } ^ { \\intercal } + H _ { i } P _ { j | i } ^ { \\intercal } + P _ { i | j } H _ { j } ^ { \\intercal } + P _ { i | j } P _ { j | i } ^ { \\intercal } } \\end{array}", + "type": "interline_equation", + "image_path": "dd2f5d25084710d650cd272c64c7c6df5f14709f93f04842d9c63eef20986390.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 364, + 403, + 380.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 207, + 380.5, + 403, + 397.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 397, + 502, + 430 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 504, + 410 + ], + "score": 1.0, + "content": "That is, the attention weight of a word pair can be computed as a sum of four attention scores", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 408, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 107, + 408, + 504, + 420 + ], + "score": 1.0, + "content": "using disentangled matrices on their contents and positions as content-to-content, content-to-position,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 419, + 294, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 294, + 430 + ], + "score": 1.0, + "content": "position-to-content, and position-to-position 2.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 506, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "Existing approaches to relative position encoding use a separate embedding matrix to compute the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "relative position bias in computing attention weights (Shaw et al., 2018; Huang et al., 2018). This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 459, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 506, + 470 + ], + "score": 1.0, + "content": "is equivalent to computing the attention weights using only the content-to-content and content-to-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 481 + ], + "score": 1.0, + "content": "position terms in equation 2. We argue that the position-to-content term is also important since the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 479, + 507, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 507, + 493 + ], + "score": 1.0, + "content": "attention weight of a word pair depends not only on their contents but on their relative positions,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "score": 1.0, + "content": "which can only be fully modeled using both the content-to-position and position-to-content terms.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "Since we use relative position embedding, the position-to-position term does not provide much", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 512, + 421, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 421, + 525 + ], + "score": 1.0, + "content": "additional information and is removed from equation 2 in our implementation.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5 + }, + { + "type": "text", + "bbox": [ + 108, + 529, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 543 + ], + "score": 1.0, + "content": "Taking single-head attention as an example, the standard self-attention operation (Vaswani et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 539, + 221, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 221, + 553 + ], + "score": 1.0, + "content": "2017) can be formulated as:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5 + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 552, + 412, + 593 + ], + "lines": [ + { + "bbox": [ + 199, + 552, + 412, + 593 + ], + "spans": [ + { + "bbox": [ + 199, + 552, + 412, + 593 + ], + "score": 0.81, + "content": "\\begin{array} { c } { { Q = H W _ { q } , K = H W _ { k } , V = H W _ { v } , A = \\frac { Q K ^ { \\intercal } } { \\sqrt { d } } } } \\\\ { { H _ { o } = \\mathrm { s o f t m a x } ( A ) V } } \\end{array}", + "type": "interline_equation", + "image_path": "2c218bb3bf3bd90c6d025221c1aa2ebcfcea7e30ca352257bdfd26535ac9e3c1.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 199, + 552, + 412, + 565.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 199, + 565.6666666666666, + 412, + 579.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 199, + 579.3333333333333, + 412, + 592.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 104, + 593, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 134, + 610 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 596, + 184, + 607 + ], + "score": 0.91, + "content": "{ \\cal H } \\in { \\cal R } ^ { N \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 593, + 335, + 610 + ], + "score": 1.0, + "content": "represents the input hidden vectors,", + "type": "text" + }, + { + "bbox": [ + 335, + 596, + 390, + 608 + ], + "score": 0.95, + "content": "H _ { o } \\in R ^ { N \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 593, + 506, + 610 + ], + "score": 1.0, + "content": "the output of self-attention,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 604, + 507, + 621 + ], + "spans": [ + { + "bbox": [ + 107, + 606, + 198, + 620 + ], + "score": 0.67, + "content": "W _ { q } , W _ { k } , W _ { v } \\in R ^ { d \\times \\hat { d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 604, + 294, + 621 + ], + "score": 1.0, + "content": "the projection matrices,", + "type": "text" + }, + { + "bbox": [ + 295, + 607, + 343, + 618 + ], + "score": 0.92, + "content": "\\pmb { A } \\in R ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 604, + 426, + 621 + ], + "score": 1.0, + "content": "the attention matrix,", + "type": "text" + }, + { + "bbox": [ + 427, + 608, + 437, + 618 + ], + "score": 0.84, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 604, + 507, + 621 + ], + "score": 1.0, + "content": "the length of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 322, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 187, + 631 + ], + "score": 1.0, + "content": "input sequence, and", + "type": "text" + }, + { + "bbox": [ + 188, + 619, + 194, + 628 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 618, + 322, + 631 + ], + "score": 1.0, + "content": "the dimension of hidden states.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 105, + 635, + 504, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 137, + 648 + ], + "score": 1.0, + "content": "Denote", + "type": "text" + }, + { + "bbox": [ + 138, + 636, + 145, + 645 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 635, + 284, + 648 + ], + "score": 1.0, + "content": "as the maximum relative distance,", + "type": "text" + }, + { + "bbox": [ + 284, + 635, + 348, + 648 + ], + "score": 0.93, + "content": "\\delta ( i , j ) \\in [ 0 , 2 k )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 635, + 489, + 648 + ], + "score": 1.0, + "content": "as the relative distance from token", + "type": "text" + }, + { + "bbox": [ + 489, + 637, + 493, + 645 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 646, + 222, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 131, + 658 + ], + "score": 1.0, + "content": "token", + "type": "text" + }, + { + "bbox": [ + 131, + 647, + 137, + 658 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 646, + 222, + 658 + ], + "score": 1.0, + "content": ", which is defined as:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5 + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 659, + 396, + 694 + ], + "lines": [ + { + "bbox": [ + 209, + 659, + 396, + 694 + ], + "spans": [ + { + "bbox": [ + 209, + 659, + 396, + 694 + ], + "score": 0.93, + "content": "\\delta ( i , j ) = \\left\\{ \\begin{array} { r l l } { { 0 } } & { { \\mathrm { f o r } } } & { { i - j \\leqslant - k } } \\\\ { { 2 k - 1 } } & { { \\mathrm { f o r } } } & { { i - j \\geqslant k } } \\\\ { { i - j + k } } & { { \\mathrm { o t h e r s . } } } & { { } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "11153877a602b115449e9fc549ce130ddc2b3ec3e12c985141a952a72277c6ca.jpg" + } + ] + } + ], + "index": 41.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 659, + 396, + 676.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 209, + 676.5, + 396, + 694.0 + ], + "spans": [], + "index": 42 + } + ] + } + ], + "page_idx": 2, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 106, + 701, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 699, + 505, + 714 + ], + "spans": [ + { + "bbox": [ + 118, + 699, + 505, + 714 + ], + "score": 1.0, + "content": "2In this sense, our model shares some similarity to Tensor Product Representation (Smolensky, 1990; Schlag", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 711, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 711, + 505, + 722 + ], + "score": 1.0, + "content": "et al., 2019; Chen et al., 2019) where a word is represented using a tensor product of its filler (content) vector", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 721, + 212, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 721, + 212, + 733 + ], + "score": 1.0, + "content": "and its role (position) vector.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 107, + 26, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": [ + 105, + 82, + 505, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 505, + 107 + ], + "lines_deleted": true + }, + { + "type": "title", + "bbox": [ + 108, + 117, + 256, + 129 + ], + "lines": [ + { + "bbox": [ + 106, + 117, + 258, + 130 + ], + "spans": [ + { + "bbox": [ + 106, + 117, + 258, + 130 + ], + "score": 1.0, + "content": "2.2 MASKED LANGUAGE MODEL", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 2 + }, + { + "type": "text", + "bbox": [ + 106, + 137, + 505, + 197 + ], + "lines": [ + { + "bbox": [ + 104, + 137, + 506, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 137, + 506, + 151 + ], + "score": 1.0, + "content": "Large-scale Transformer-based PLMs are typically pre-trained on large amounts of text to learn", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "spans": [ + { + "bbox": [ + 105, + 148, + 505, + 162 + ], + "score": 1.0, + "content": "contextual word representations using a self-supervision objective, known as Masked Language", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 159, + 506, + 173 + ], + "spans": [ + { + "bbox": [ + 104, + 159, + 384, + 173 + ], + "score": 1.0, + "content": "Model (MLM) (Devlin et al., 2019). Specifically, given a sequence", + "type": "text" + }, + { + "bbox": [ + 384, + 160, + 427, + 172 + ], + "score": 0.93, + "content": "X \\mathrm { ~ = ~ } \\{ x _ { i } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 427, + 159, + 506, + 173 + ], + "score": 1.0, + "content": ", we corrupt it into", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 171, + 505, + 185 + ], + "spans": [ + { + "bbox": [ + 106, + 171, + 118, + 183 + ], + "score": 0.82, + "content": "\\tilde { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 118, + 172, + 168, + 185 + ], + "score": 1.0, + "content": "by masking", + "type": "text" + }, + { + "bbox": [ + 169, + 173, + 188, + 184 + ], + "score": 0.87, + "content": "15 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 189, + 172, + 487, + 185 + ], + "score": 1.0, + "content": "of its tokens at random and then train a language model parameterized by", + "type": "text" + }, + { + "bbox": [ + 488, + 174, + 493, + 183 + ], + "score": 0.78, + "content": "\\theta", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 172, + 505, + 185 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 184, + 384, + 197 + ], + "spans": [ + { + "bbox": [ + 105, + 185, + 153, + 197 + ], + "score": 1.0, + "content": "reconstruct", + "type": "text" + }, + { + "bbox": [ + 154, + 186, + 164, + 195 + ], + "score": 0.78, + "content": "\\boldsymbol { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 165, + 185, + 297, + 197 + ], + "score": 1.0, + "content": "by predicting the masked tokens", + "type": "text" + }, + { + "bbox": [ + 297, + 186, + 304, + 195 + ], + "score": 0.8, + "content": "\\tilde { x }", + "type": "inline_equation" + }, + { + "bbox": [ + 304, + 185, + 367, + 197 + ], + "score": 1.0, + "content": "conditioned on", + "type": "text" + }, + { + "bbox": [ + 368, + 184, + 378, + 195 + ], + "score": 0.86, + "content": "\\tilde { X }", + "type": "inline_equation" + }, + { + "bbox": [ + 379, + 185, + 384, + 197 + ], + "score": 1.0, + "content": ":", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 137, + 506, + 197 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 203, + 198, + 407, + 224 + ], + "lines": [ + { + "bbox": [ + 203, + 198, + 407, + 224 + ], + "spans": [ + { + "bbox": [ + 203, + 198, + 407, + 224 + ], + "score": 0.91, + "content": "\\operatorname* { m a x } _ { \\theta } \\log p _ { \\theta } ( X | \\tilde { X } ) = \\operatorname* { m a x } _ { \\theta } \\sum _ { i \\in \\mathcal { C } } \\log p _ { \\theta } \\big ( \\tilde { x } _ { i } = x _ { i } | \\tilde { X } \\big )", + "type": "interline_equation", + "image_path": "c75783567dea8d28c4341b4d75a15451e33b5cc71af1d4ae92db7c13675aba4d.jpg" + } + ] + } + ], + "index": 8, + "virtual_lines": [ + { + "bbox": [ + 203, + 198, + 407, + 224 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 225, + 505, + 259 + ], + "lines": [ + { + "bbox": [ + 105, + 223, + 505, + 239 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 132, + 239 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 133, + 226, + 140, + 235 + ], + "score": 0.79, + "content": "\\mathcal { C }", + "type": "inline_equation" + }, + { + "bbox": [ + 140, + 223, + 505, + 239 + ], + "score": 1.0, + "content": "is the index set of the masked tokens in the sequence. The authors of BERT propose to keep", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 236, + 505, + 248 + ], + "spans": [ + { + "bbox": [ + 106, + 236, + 126, + 247 + ], + "score": 0.86, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 126, + 236, + 296, + 248 + ], + "score": 1.0, + "content": "of the masked tokens unchanged, another", + "type": "text" + }, + { + "bbox": [ + 296, + 236, + 316, + 247 + ], + "score": 0.85, + "content": "10 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 236, + 505, + 248 + ], + "score": 1.0, + "content": "replaced with randomly picked tokens and the", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 247, + 260, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 260, + 259 + ], + "score": 1.0, + "content": "rest replaced with the [MASK] token.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 105, + 223, + 505, + 259 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 273, + 290, + 286 + ], + "lines": [ + { + "bbox": [ + 104, + 272, + 292, + 288 + ], + "spans": [ + { + "bbox": [ + 104, + 272, + 292, + 288 + ], + "score": 1.0, + "content": "3 THE DEBERTA ARCHITECTURE", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 106, + 297, + 503, + 320 + ], + "lines": [ + { + "bbox": [ + 106, + 297, + 503, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 297, + 503, + 310 + ], + "score": 1.0, + "content": "3.1 DISENTANGLED ATTENTION: A TWO-VECTOR APPROACH TO CONTENT AND POSITION", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 129, + 308, + 187, + 321 + ], + "spans": [ + { + "bbox": [ + 129, + 308, + 187, + 321 + ], + "score": 1.0, + "content": "EMBEDDING", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13.5, + "bbox_fs": [ + 106, + 297, + 503, + 321 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 329, + 505, + 363 + ], + "lines": [ + { + "bbox": [ + 105, + 329, + 505, + 343 + ], + "spans": [ + { + "bbox": [ + 105, + 329, + 200, + 343 + ], + "score": 1.0, + "content": "For a token at position", + "type": "text" + }, + { + "bbox": [ + 200, + 331, + 205, + 340 + ], + "score": 0.75, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 329, + 405, + 343 + ], + "score": 1.0, + "content": "in a sequence, we represent it using two vectors,", + "type": "text" + }, + { + "bbox": [ + 405, + 330, + 428, + 342 + ], + "score": 0.92, + "content": "\\left\\{ H _ { i } \\right\\}", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 329, + 447, + 343 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 447, + 330, + 473, + 343 + ], + "score": 0.92, + "content": "\\{ P _ { i \\mid j } \\}", + "type": "inline_equation" + }, + { + "bbox": [ + 474, + 329, + 505, + 343 + ], + "score": 1.0, + "content": ", which", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 340, + 506, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 370, + 353 + ], + "score": 1.0, + "content": "represent its content and relative position with the token at position", + "type": "text" + }, + { + "bbox": [ + 370, + 342, + 376, + 352 + ], + "score": 0.8, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 377, + 340, + 506, + 353 + ], + "score": 1.0, + "content": ", respectively. The calculation of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 351, + 478, + 365 + ], + "spans": [ + { + "bbox": [ + 105, + 351, + 269, + 365 + ], + "score": 1.0, + "content": "the cross attention score between tokens", + "type": "text" + }, + { + "bbox": [ + 269, + 353, + 273, + 362 + ], + "score": 0.79, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 351, + 291, + 365 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 292, + 352, + 298, + 363 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 298, + 351, + 478, + 365 + ], + "score": 1.0, + "content": "can be decomposed into four components as", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 329, + 506, + 365 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 207, + 364, + 403, + 397 + ], + "lines": [ + { + "bbox": [ + 207, + 364, + 403, + 397 + ], + "spans": [ + { + "bbox": [ + 207, + 364, + 403, + 397 + ], + "score": 0.9, + "content": "\\begin{array} { r l } & { A _ { i , j } = \\{ H _ { i } , P _ { i | j } \\} \\times \\{ H _ { j } , P _ { j | i } \\} ^ { \\intercal } } \\\\ & { \\qquad = H _ { i } H _ { j } ^ { \\intercal } + H _ { i } P _ { j | i } ^ { \\intercal } + P _ { i | j } H _ { j } ^ { \\intercal } + P _ { i | j } P _ { j | i } ^ { \\intercal } } \\end{array}", + "type": "interline_equation", + "image_path": "dd2f5d25084710d650cd272c64c7c6df5f14709f93f04842d9c63eef20986390.jpg" + } + ] + } + ], + "index": 18.5, + "virtual_lines": [ + { + "bbox": [ + 207, + 364, + 403, + 380.5 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 207, + 380.5, + 403, + 397.0 + ], + "spans": [], + "index": 19 + } + ] + }, + { + "type": "text", + "bbox": [ + 108, + 397, + 502, + 430 + ], + "lines": [ + { + "bbox": [ + 106, + 397, + 504, + 410 + ], + "spans": [ + { + "bbox": [ + 106, + 397, + 504, + 410 + ], + "score": 1.0, + "content": "That is, the attention weight of a word pair can be computed as a sum of four attention scores", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 107, + 408, + 504, + 420 + ], + "spans": [ + { + "bbox": [ + 107, + 408, + 504, + 420 + ], + "score": 1.0, + "content": "using disentangled matrices on their contents and positions as content-to-content, content-to-position,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 419, + 294, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 419, + 294, + 430 + ], + "score": 1.0, + "content": "position-to-content, and position-to-position 2.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 397, + 504, + 430 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 435, + 506, + 525 + ], + "lines": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "spans": [ + { + "bbox": [ + 105, + 435, + 506, + 449 + ], + "score": 1.0, + "content": "Existing approaches to relative position encoding use a separate embedding matrix to compute the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "spans": [ + { + "bbox": [ + 105, + 447, + 506, + 460 + ], + "score": 1.0, + "content": "relative position bias in computing attention weights (Shaw et al., 2018; Huang et al., 2018). This", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 459, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 106, + 459, + 506, + 470 + ], + "score": 1.0, + "content": "is equivalent to computing the attention weights using only the content-to-content and content-to-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 469, + 506, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 469, + 506, + 481 + ], + "score": 1.0, + "content": "position terms in equation 2. We argue that the position-to-content term is also important since the", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 104, + 479, + 507, + 493 + ], + "spans": [ + { + "bbox": [ + 104, + 479, + 507, + 493 + ], + "score": 1.0, + "content": "attention weight of a word pair depends not only on their contents but on their relative positions,", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "spans": [ + { + "bbox": [ + 105, + 490, + 507, + 504 + ], + "score": 1.0, + "content": "which can only be fully modeled using both the content-to-position and position-to-content terms.", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 506, + 514 + ], + "score": 1.0, + "content": "Since we use relative position embedding, the position-to-position term does not provide much", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 512, + 421, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 512, + 421, + 525 + ], + "score": 1.0, + "content": "additional information and is removed from equation 2 in our implementation.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 26.5, + "bbox_fs": [ + 104, + 435, + 507, + 525 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 529, + 504, + 551 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 506, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 543 + ], + "score": 1.0, + "content": "Taking single-head attention as an example, the standard self-attention operation (Vaswani et al.,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 539, + 221, + 553 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 221, + 553 + ], + "score": 1.0, + "content": "2017) can be formulated as:", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 528, + 506, + 553 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 199, + 552, + 412, + 593 + ], + "lines": [ + { + "bbox": [ + 199, + 552, + 412, + 593 + ], + "spans": [ + { + "bbox": [ + 199, + 552, + 412, + 593 + ], + "score": 0.81, + "content": "\\begin{array} { c } { { Q = H W _ { q } , K = H W _ { k } , V = H W _ { v } , A = \\frac { Q K ^ { \\intercal } } { \\sqrt { d } } } } \\\\ { { H _ { o } = \\mathrm { s o f t m a x } ( A ) V } } \\end{array}", + "type": "interline_equation", + "image_path": "2c218bb3bf3bd90c6d025221c1aa2ebcfcea7e30ca352257bdfd26535ac9e3c1.jpg" + } + ] + } + ], + "index": 34, + "virtual_lines": [ + { + "bbox": [ + 199, + 552, + 412, + 565.6666666666666 + ], + "spans": [], + "index": 33 + }, + { + "bbox": [ + 199, + 565.6666666666666, + 412, + 579.3333333333333 + ], + "spans": [], + "index": 34 + }, + { + "bbox": [ + 199, + 579.3333333333333, + 412, + 592.9999999999999 + ], + "spans": [], + "index": 35 + } + ] + }, + { + "type": "text", + "bbox": [ + 107, + 596, + 504, + 630 + ], + "lines": [ + { + "bbox": [ + 104, + 593, + 506, + 610 + ], + "spans": [ + { + "bbox": [ + 104, + 593, + 134, + 610 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 134, + 596, + 184, + 607 + ], + "score": 0.91, + "content": "{ \\cal H } \\in { \\cal R } ^ { N \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 185, + 593, + 335, + 610 + ], + "score": 1.0, + "content": "represents the input hidden vectors,", + "type": "text" + }, + { + "bbox": [ + 335, + 596, + 390, + 608 + ], + "score": 0.95, + "content": "H _ { o } \\in R ^ { N \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 593, + 506, + 610 + ], + "score": 1.0, + "content": "the output of self-attention,", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 107, + 604, + 507, + 621 + ], + "spans": [ + { + "bbox": [ + 107, + 606, + 198, + 620 + ], + "score": 0.67, + "content": "W _ { q } , W _ { k } , W _ { v } \\in R ^ { d \\times \\hat { d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 199, + 604, + 294, + 621 + ], + "score": 1.0, + "content": "the projection matrices,", + "type": "text" + }, + { + "bbox": [ + 295, + 607, + 343, + 618 + ], + "score": 0.92, + "content": "\\pmb { A } \\in R ^ { N \\times N }", + "type": "inline_equation" + }, + { + "bbox": [ + 343, + 604, + 426, + 621 + ], + "score": 1.0, + "content": "the attention matrix,", + "type": "text" + }, + { + "bbox": [ + 427, + 608, + 437, + 618 + ], + "score": 0.84, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 604, + 507, + 621 + ], + "score": 1.0, + "content": "the length of the", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 618, + 322, + 631 + ], + "spans": [ + { + "bbox": [ + 105, + 618, + 187, + 631 + ], + "score": 1.0, + "content": "input sequence, and", + "type": "text" + }, + { + "bbox": [ + 188, + 619, + 194, + 628 + ], + "score": 0.81, + "content": "d", + "type": "inline_equation" + }, + { + "bbox": [ + 195, + 618, + 322, + 631 + ], + "score": 1.0, + "content": "the dimension of hidden states.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 104, + 593, + 507, + 631 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 635, + 504, + 657 + ], + "lines": [ + { + "bbox": [ + 106, + 635, + 505, + 648 + ], + "spans": [ + { + "bbox": [ + 106, + 635, + 137, + 648 + ], + "score": 1.0, + "content": "Denote", + "type": "text" + }, + { + "bbox": [ + 138, + 636, + 145, + 645 + ], + "score": 0.83, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 145, + 635, + 284, + 648 + ], + "score": 1.0, + "content": "as the maximum relative distance,", + "type": "text" + }, + { + "bbox": [ + 284, + 635, + 348, + 648 + ], + "score": 0.93, + "content": "\\delta ( i , j ) \\in [ 0 , 2 k )", + "type": "inline_equation" + }, + { + "bbox": [ + 348, + 635, + 489, + 648 + ], + "score": 1.0, + "content": "as the relative distance from token", + "type": "text" + }, + { + "bbox": [ + 489, + 637, + 493, + 645 + ], + "score": 0.77, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 494, + 635, + 505, + 648 + ], + "score": 1.0, + "content": "to", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 646, + 222, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 646, + 131, + 658 + ], + "score": 1.0, + "content": "token", + "type": "text" + }, + { + "bbox": [ + 131, + 647, + 137, + 658 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 646, + 222, + 658 + ], + "score": 1.0, + "content": ", which is defined as:", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39.5, + "bbox_fs": [ + 106, + 635, + 505, + 658 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 209, + 659, + 396, + 694 + ], + "lines": [ + { + "bbox": [ + 209, + 659, + 396, + 694 + ], + "spans": [ + { + "bbox": [ + 209, + 659, + 396, + 694 + ], + "score": 0.93, + "content": "\\delta ( i , j ) = \\left\\{ \\begin{array} { r l l } { { 0 } } & { { \\mathrm { f o r } } } & { { i - j \\leqslant - k } } \\\\ { { 2 k - 1 } } & { { \\mathrm { f o r } } } & { { i - j \\geqslant k } } \\\\ { { i - j + k } } & { { \\mathrm { o t h e r s . } } } & { { } } \\end{array} \\right.", + "type": "interline_equation", + "image_path": "11153877a602b115449e9fc549ce130ddc2b3ec3e12c985141a952a72277c6ca.jpg" + } + ] + } + ], + "index": 41.5, + "virtual_lines": [ + { + "bbox": [ + 209, + 659, + 396, + 676.5 + ], + "spans": [], + "index": 41 + }, + { + "bbox": [ + 209, + 676.5, + 396, + 694.0 + ], + "spans": [], + "index": 42 + } + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 507, + 95 + ], + "score": 1.0, + "content": "We can represent the disentangled self-attention with relative position bias as equation 4,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 135, + 108 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 94, + 169, + 105 + ], + "score": 0.88, + "content": "Q _ { c } , K _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 92, + 191, + 108 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 94, + 204, + 104 + ], + "score": 0.84, + "content": "V _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "are the projected content vectors generated using projection matrices", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 101, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 221, + 117 + ], + "score": 0.86, + "content": "W _ { q , c } , W _ { k , c } , W _ { v , c } \\in R ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 101, + 276, + 119 + ], + "score": 1.0, + "content": "respectively,", + "type": "text" + }, + { + "bbox": [ + 277, + 104, + 327, + 115 + ], + "score": 0.92, + "content": "P \\in { \\cal R } ^ { 2 k \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 101, + 507, + 119 + ], + "score": 1.0, + "content": "represents the relative position embedding", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 503, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 453, + 128 + ], + "score": 1.0, + "content": "vectors shared across all layers (i.e., staying fixed during forward propagation), and", + "type": "text" + }, + { + "bbox": [ + 453, + 115, + 468, + 127 + ], + "score": 0.86, + "content": "Q _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 115, + 488, + 128 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 488, + 115, + 503, + 126 + ], + "score": 0.85, + "content": "K _ { r }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 124, + 507, + 140 + ], + "spans": [ + { + "bbox": [ + 103, + 124, + 415, + 140 + ], + "score": 1.0, + "content": "are projected relative position vectors generated using projection matrices", + "type": "text" + }, + { + "bbox": [ + 415, + 126, + 502, + 139 + ], + "score": 0.93, + "content": "W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 124, + 507, + 140 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 159, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 159, + 151 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5 + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 164, + 464, + 244 + ], + "lines": [ + { + "bbox": [ + 146, + 164, + 464, + 244 + ], + "spans": [ + { + "bbox": [ + 146, + 164, + 464, + 244 + ], + "score": 0.92, + "content": "\\begin{array} { l } { { Q _ { c } = H W _ { q , c } , K _ { c } = H W _ { k , c } , V _ { c } = H W _ { v , c } , Q _ { r } = P W _ { q , r } , K _ { r } = P W _ { k , r } } } \\\\ { { \\tilde { A } _ { i , j } = \\underbrace { Q _ { i } ^ { c } K _ { j } ^ { c \\top } } _ { \\mathrm { ( a ) c o n t e n t - t o - c o n t e n t } } + \\underbrace { Q _ { i } ^ { c } K _ { \\delta ( i , j ) } ^ { r } } _ { \\mathrm { ( b ) c o n t e n t - t o - p o s i i t i o n } } + \\underbrace { K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } } _ { \\mathrm { ( c ) p o s i i t i o n - t o r t e n t } } } } \\\\ { { \\tilde { H } _ { o } = \\mathrm { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c } } } \\end{array}", + "type": "interline_equation", + "image_path": "1fe700ac832ddde91c4872b71b79ace00ff441fe0e86d9c781a70dbb14e0f374.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 146, + 164, + 464, + 190.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 146, + 190.66666666666666, + 464, + 217.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 146, + 217.33333333333331, + 464, + 243.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 107, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 107, + 247, + 124, + 261 + ], + "score": 0.91, + "content": "\\tilde { A } _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 246, + 267, + 262 + ], + "score": 1.0, + "content": "is the element of attention matrix", + "type": "text" + }, + { + "bbox": [ + 268, + 247, + 277, + 259 + ], + "score": 0.84, + "content": "\\tilde { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 246, + 462, + 262 + ], + "score": 1.0, + "content": ", representing the attention score from token", + "type": "text" + }, + { + "bbox": [ + 462, + 250, + 467, + 259 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 246, + 506, + 262 + ], + "score": 1.0, + "content": "to token", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 257, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 107, + 261, + 112, + 271 + ], + "score": 0.47, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 257, + 118, + 277 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 118, + 261, + 132, + 272 + ], + "score": 0.8, + "content": "Q _ { i } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 257, + 159, + 277 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 159, + 261, + 164, + 270 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 257, + 207, + 277 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 207, + 260, + 243, + 273 + ], + "score": 0.29, + "content": "Q _ { c } . \\ K _ { j } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 257, + 269, + 277 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 270, + 261, + 275, + 271 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 257, + 318, + 277 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 318, + 260, + 334, + 271 + ], + "score": 0.75, + "content": "K _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 257, + 339, + 277 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 339, + 260, + 371, + 274 + ], + "score": 0.89, + "content": "K _ { \\delta ( i , j ) } ^ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 257, + 398, + 277 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 398, + 260, + 424, + 272 + ], + "score": 0.93, + "content": "\\delta ( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 257, + 467, + 277 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 467, + 260, + 483, + 271 + ], + "score": 0.89, + "content": "K _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 257, + 507, + 277 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 271, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 227, + 289 + ], + "score": 1.0, + "content": "regarding to relative distance", + "type": "text" + }, + { + "bbox": [ + 227, + 273, + 253, + 285 + ], + "score": 0.78, + "content": "\\delta ( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 271, + 258, + 289 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 258, + 273, + 289, + 288 + ], + "score": 0.7, + "content": "Q _ { \\delta ( j , i ) } ^ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 271, + 315, + 289 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 315, + 273, + 341, + 285 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 271, + 383, + 289 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 383, + 273, + 398, + 285 + ], + "score": 0.89, + "content": "Q _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 271, + 506, + 289 + ], + "score": 1.0, + "content": "with regarding to relative", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 141, + 300 + ], + "score": 1.0, + "content": "distance", + "type": "text" + }, + { + "bbox": [ + 141, + 286, + 167, + 299 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 285, + 240, + 300 + ], + "score": 1.0, + "content": ". Note that we use", + "type": "text" + }, + { + "bbox": [ + 241, + 287, + 266, + 299 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 285, + 312, + 300 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 313, + 286, + 338, + 298 + ], + "score": 0.92, + "content": "\\delta ( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 285, + 506, + 300 + ], + "score": 1.0, + "content": "here. This is because for a given position", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 111, + 308 + ], + "score": 0.68, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 297, + 416, + 310 + ], + "score": 1.0, + "content": ", position-to-content computes the attention weight of the key content at", + "type": "text" + }, + { + "bbox": [ + 416, + 298, + 423, + 309 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "with respect to the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 176, + 322 + ], + "score": 1.0, + "content": "query position at", + "type": "text" + }, + { + "bbox": [ + 176, + 309, + 181, + 318 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 308, + 294, + 322 + ], + "score": 1.0, + "content": ", thus the relative distance is", + "type": "text" + }, + { + "bbox": [ + 295, + 308, + 320, + 321 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 308, + 506, + 322 + ], + "score": 1.0, + "content": ". The position-to-content term is calculated as", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 316, + 401, + 338 + ], + "spans": [ + { + "bbox": [ + 107, + 320, + 156, + 334 + ], + "score": 0.93, + "content": "K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } { } ^ { \\intercal }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 316, + 401, + 338 + ], + "score": 1.0, + "content": ". The content-to-position term is calculated in a similar way.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 502, + 366 + ], + "lines": [ + { + "bbox": [ + 102, + 335, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 102, + 335, + 263, + 360 + ], + "score": 1.0, + "content": "Finally, we apply a scaling factor of", + "type": "text" + }, + { + "bbox": [ + 263, + 340, + 281, + 356 + ], + "score": 0.92, + "content": "\\frac { 1 } { \\sqrt { 3 d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 335, + 297, + 360 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 298, + 339, + 307, + 351 + ], + "score": 0.82, + "content": "\\tilde { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 335, + 507, + 360 + ], + "score": 1.0, + "content": ". The factor is important for stabilizing model", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 363, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 363, + 366 + ], + "score": 1.0, + "content": "training (Vaswani et al., 2017), especially for large-scale PLMs.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5 + }, + { + "type": "title", + "bbox": [ + 107, + 378, + 254, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 256, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 256, + 392 + ], + "score": 1.0, + "content": "Algorithm 1 Disentangled Attention", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 392, + 506, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 191, + 406 + ], + "score": 1.0, + "content": "Input: Hidden state", + "type": "text" + }, + { + "bbox": [ + 191, + 393, + 203, + 403 + ], + "score": 0.73, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 391, + 321, + 406 + ], + "score": 1.0, + "content": ", relative distance embedding", + "type": "text" + }, + { + "bbox": [ + 321, + 394, + 331, + 403 + ], + "score": 0.79, + "content": "_ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 391, + 430, + 406 + ], + "score": 1.0, + "content": ", relative distance matrix", + "type": "text" + }, + { + "bbox": [ + 431, + 394, + 437, + 403 + ], + "score": 0.57, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 391, + 506, + 406 + ], + "score": 1.0, + "content": ". Content projec-", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 120, + 399, + 418, + 421 + ], + "spans": [ + { + "bbox": [ + 120, + 399, + 170, + 421 + ], + "score": 1.0, + "content": "tion matrix", + "type": "text" + }, + { + "bbox": [ + 170, + 404, + 194, + 416 + ], + "score": 0.88, + "content": "W _ { k , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 399, + 198, + 421 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 198, + 404, + 221, + 416 + ], + "score": 0.63, + "content": "W _ { q , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 399, + 225, + 421 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 226, + 404, + 249, + 416 + ], + "score": 0.81, + "content": "W _ { v , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 399, + 359, + 421 + ], + "score": 1.0, + "content": ", position projection matrix", + "type": "text" + }, + { + "bbox": [ + 360, + 404, + 383, + 416 + ], + "score": 0.83, + "content": "W _ { k , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 399, + 388, + 421 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 388, + 404, + 411, + 416 + ], + "score": 0.78, + "content": "W _ { q , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 399, + 418, + 421 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 109, + 411, + 442, + 430 + ], + "spans": [ + { + "bbox": [ + 109, + 411, + 124, + 430 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 124, + 415, + 185, + 426 + ], + "score": 0.87, + "content": "K _ { c } = H W _ { k , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 411, + 190, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 190, + 416, + 251, + 428 + ], + "score": 0.77, + "content": "Q _ { c } = H W _ { q , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 411, + 254, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 254, + 415, + 313, + 428 + ], + "score": 0.88, + "content": "V _ { c } = H W _ { v , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 411, + 317, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 317, + 415, + 378, + 427 + ], + "score": 0.85, + "content": "K _ { r } = P W _ { k , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 411, + 382, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 382, + 416, + 442, + 428 + ], + "score": 0.79, + "content": "Q _ { r } \\overset { = } { = } P W _ { q , r }", + "type": "inline_equation" + } + ], + "index": 21 + }, + { + "bbox": [ + 110, + 424, + 191, + 441 + ], + "spans": [ + { + "bbox": [ + 110, + 424, + 124, + 441 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 124, + 427, + 191, + 438 + ], + "score": 0.87, + "content": "A _ { c c } = Q _ { c } K _ { c } ^ { \\intercal }", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 110, + 436, + 219, + 450 + ], + "spans": [ + { + "bbox": [ + 110, + 436, + 138, + 450 + ], + "score": 1.0, + "content": "3: for", + "type": "text" + }, + { + "bbox": [ + 138, + 438, + 205, + 448 + ], + "score": 0.8, + "content": "i = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 436, + 219, + 450 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 110, + 448, + 242, + 462 + ], + "spans": [ + { + "bbox": [ + 110, + 449, + 122, + 460 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 138, + 448, + 242, + 462 + ], + "score": 0.88, + "content": "\\tilde { A } _ { c p } [ i , : ] = Q _ { c } [ i , : ] { \\cal K } _ { r } ^ { \\intercal }", + "type": "inline_equation" + } + ], + "index": 24 + }, + { + "bbox": [ + 109, + 459, + 158, + 473 + ], + "spans": [ + { + "bbox": [ + 109, + 459, + 158, + 473 + ], + "score": 1.0, + "content": "5: end for", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 109, + 470, + 219, + 483 + ], + "spans": [ + { + "bbox": [ + 109, + 470, + 138, + 483 + ], + "score": 1.0, + "content": "6: for", + "type": "text" + }, + { + "bbox": [ + 138, + 471, + 205, + 482 + ], + "score": 0.85, + "content": "i = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 470, + 219, + 483 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 110, + 482, + 236, + 495 + ], + "spans": [ + { + "bbox": [ + 110, + 482, + 122, + 495 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 137, + 482, + 153, + 494 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 153, + 483, + 222, + 493 + ], + "score": 0.72, + "content": "j = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 482, + 236, + 494 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 110, + 493, + 279, + 507 + ], + "spans": [ + { + "bbox": [ + 110, + 494, + 122, + 506 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 153, + 493, + 279, + 507 + ], + "score": 0.59, + "content": "A _ { c p } [ i , j ] = \\tilde { A } _ { c p } [ i , \\delta [ i , j ] ]", + "type": "inline_equation" + } + ], + "index": 28 + }, + { + "bbox": [ + 109, + 504, + 173, + 518 + ], + "spans": [ + { + "bbox": [ + 109, + 505, + 122, + 518 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 137, + 504, + 173, + 518 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 107, + 516, + 157, + 528 + ], + "spans": [ + { + "bbox": [ + 107, + 516, + 157, + 528 + ], + "score": 1.0, + "content": "10: end for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 107, + 527, + 221, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 121, + 538 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 122, + 527, + 138, + 540 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 138, + 528, + 207, + 538 + ], + "score": 0.79, + "content": "j = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 527, + 221, + 540 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 539, + 244, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 122, + 551 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 138, + 539, + 244, + 552 + ], + "score": 0.79, + "content": "\\tilde { A } _ { p c } [ : , j ] = K _ { c } [ j , : ] Q _ { r } ^ { \\intercal }", + "type": "inline_equation" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 550, + 157, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 157, + 562 + ], + "score": 1.0, + "content": "13: end for", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 561, + 221, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 138, + 574 + ], + "score": 1.0, + "content": "14: for", + "type": "text" + }, + { + "bbox": [ + 139, + 562, + 207, + 573 + ], + "score": 0.84, + "content": "j = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 561, + 221, + 574 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 572, + 235, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 122, + 585 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 137, + 572, + 153, + 585 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 153, + 573, + 221, + 584 + ], + "score": 0.69, + "content": "i = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 572, + 235, + 585 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 583, + 279, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 122, + 597 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 153, + 583, + 279, + 597 + ], + "score": 0.65, + "content": "A _ { p c } [ i , j ] = \\tilde { A } _ { p c } [ \\delta [ j , i ] , j ]", + "type": "inline_equation" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 594, + 172, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 122, + 608 + ], + "score": 1.0, + "content": "17:", + "type": "text" + }, + { + "bbox": [ + 137, + 594, + 172, + 608 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 105, + 606, + 158, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 158, + 619 + ], + "score": 1.0, + "content": "18: end for", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 614, + 249, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 123, + 632 + ], + "score": 1.0, + "content": "19:", + "type": "text" + }, + { + "bbox": [ + 124, + 616, + 249, + 629 + ], + "score": 0.58, + "content": "\\tilde { A } = A _ { c c } + A _ { c p } + A _ { p c }", + "type": "inline_equation" + } + ], + "index": 39 + }, + { + "bbox": [ + 103, + 628, + 227, + 651 + ], + "spans": [ + { + "bbox": [ + 103, + 628, + 123, + 651 + ], + "score": 1.0, + "content": "20:", + "type": "text" + }, + { + "bbox": [ + 123, + 630, + 227, + 647 + ], + "score": 0.72, + "content": "H _ { o } = \\operatorname { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c }", + "type": "inline_equation" + } + ], + "index": 40 + }, + { + "bbox": [ + 105, + 643, + 164, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 164, + 659 + ], + "score": 1.0, + "content": "Output: Ho", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 30 + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 264, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 265, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 265, + 692 + ], + "score": 1.0, + "content": "3.1.1 EFFICIENT IMPLEMENTATION", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 238, + 712 + ], + "score": 1.0, + "content": "For an input sequence of length", + "type": "text" + }, + { + "bbox": [ + 239, + 699, + 249, + 709 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 698, + 389, + 712 + ], + "score": 1.0, + "content": ", it requires a space complexity of", + "type": "text" + }, + { + "bbox": [ + 389, + 698, + 425, + 711 + ], + "score": 0.93, + "content": "O ( N ^ { 2 } d )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 698, + 507, + 712 + ], + "score": 1.0, + "content": "(Shaw et al., 2018;", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "Huang et al., 2018; Dai et al., 2019) to store the relative position embedding for each token. However,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 354, + 734 + ], + "score": 1.0, + "content": "taking content-to-position as an example, we note that since", + "type": "text" + }, + { + "bbox": [ + 355, + 720, + 419, + 732 + ], + "score": 0.93, + "content": "\\delta ( i , j ) \\in [ 0 , 2 k )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "and the embeddings", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 3, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 309, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 8 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 507, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 507, + 95 + ], + "score": 1.0, + "content": "We can represent the disentangled self-attention with relative position bias as equation 4,", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 506, + 108 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 135, + 108 + ], + "score": 1.0, + "content": "where", + "type": "text" + }, + { + "bbox": [ + 135, + 94, + 169, + 105 + ], + "score": 0.88, + "content": "Q _ { c } , K _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 169, + 92, + 191, + 108 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 191, + 94, + 204, + 104 + ], + "score": 0.84, + "content": "V _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 92, + 506, + 108 + ], + "score": 1.0, + "content": "are the projected content vectors generated using projection matrices", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 107, + 101, + 507, + 119 + ], + "spans": [ + { + "bbox": [ + 107, + 105, + 221, + 117 + ], + "score": 0.86, + "content": "W _ { q , c } , W _ { k , c } , W _ { v , c } \\in R ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 101, + 276, + 119 + ], + "score": 1.0, + "content": "respectively,", + "type": "text" + }, + { + "bbox": [ + 277, + 104, + 327, + 115 + ], + "score": 0.92, + "content": "P \\in { \\cal R } ^ { 2 k \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 327, + 101, + 507, + 119 + ], + "score": 1.0, + "content": "represents the relative position embedding", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 503, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 453, + 128 + ], + "score": 1.0, + "content": "vectors shared across all layers (i.e., staying fixed during forward propagation), and", + "type": "text" + }, + { + "bbox": [ + 453, + 115, + 468, + 127 + ], + "score": 0.86, + "content": "Q _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 115, + 488, + 128 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 488, + 115, + 503, + 126 + ], + "score": 0.85, + "content": "K _ { r }", + "type": "inline_equation" + } + ], + "index": 3 + }, + { + "bbox": [ + 103, + 124, + 507, + 140 + ], + "spans": [ + { + "bbox": [ + 103, + 124, + 415, + 140 + ], + "score": 1.0, + "content": "are projected relative position vectors generated using projection matrices", + "type": "text" + }, + { + "bbox": [ + 415, + 126, + 502, + 139 + ], + "score": 0.93, + "content": "W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 502, + 124, + 507, + 140 + ], + "score": 1.0, + "content": ",", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 136, + 159, + 151 + ], + "spans": [ + { + "bbox": [ + 104, + 136, + 159, + 151 + ], + "score": 1.0, + "content": "respectively.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 2.5, + "bbox_fs": [ + 103, + 81, + 507, + 151 + ] + }, + { + "type": "interline_equation", + "bbox": [ + 146, + 164, + 464, + 244 + ], + "lines": [ + { + "bbox": [ + 146, + 164, + 464, + 244 + ], + "spans": [ + { + "bbox": [ + 146, + 164, + 464, + 244 + ], + "score": 0.92, + "content": "\\begin{array} { l } { { Q _ { c } = H W _ { q , c } , K _ { c } = H W _ { k , c } , V _ { c } = H W _ { v , c } , Q _ { r } = P W _ { q , r } , K _ { r } = P W _ { k , r } } } \\\\ { { \\tilde { A } _ { i , j } = \\underbrace { Q _ { i } ^ { c } K _ { j } ^ { c \\top } } _ { \\mathrm { ( a ) c o n t e n t - t o - c o n t e n t } } + \\underbrace { Q _ { i } ^ { c } K _ { \\delta ( i , j ) } ^ { r } } _ { \\mathrm { ( b ) c o n t e n t - t o - p o s i i t i o n } } + \\underbrace { K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } } _ { \\mathrm { ( c ) p o s i i t i o n - t o r t e n t } } } } \\\\ { { \\tilde { H } _ { o } = \\mathrm { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c } } } \\end{array}", + "type": "interline_equation", + "image_path": "1fe700ac832ddde91c4872b71b79ace00ff441fe0e86d9c781a70dbb14e0f374.jpg" + } + ] + } + ], + "index": 7, + "virtual_lines": [ + { + "bbox": [ + 146, + 164, + 464, + 190.66666666666666 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 146, + 190.66666666666666, + 464, + 217.33333333333331 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 146, + 217.33333333333331, + 464, + 243.99999999999997 + ], + "spans": [], + "index": 8 + } + ] + }, + { + "type": "text", + "bbox": [ + 106, + 247, + 505, + 332 + ], + "lines": [ + { + "bbox": [ + 107, + 246, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 107, + 247, + 124, + 261 + ], + "score": 0.91, + "content": "\\tilde { A } _ { i , j }", + "type": "inline_equation" + }, + { + "bbox": [ + 125, + 246, + 267, + 262 + ], + "score": 1.0, + "content": "is the element of attention matrix", + "type": "text" + }, + { + "bbox": [ + 268, + 247, + 277, + 259 + ], + "score": 0.84, + "content": "\\tilde { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 277, + 246, + 462, + 262 + ], + "score": 1.0, + "content": ", representing the attention score from token", + "type": "text" + }, + { + "bbox": [ + 462, + 250, + 467, + 259 + ], + "score": 0.7, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 468, + 246, + 506, + 262 + ], + "score": 1.0, + "content": "to token", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 107, + 257, + 507, + 277 + ], + "spans": [ + { + "bbox": [ + 107, + 261, + 112, + 271 + ], + "score": 0.47, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 113, + 257, + 118, + 277 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 118, + 261, + 132, + 272 + ], + "score": 0.8, + "content": "Q _ { i } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 133, + 257, + 159, + 277 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 159, + 261, + 164, + 270 + ], + "score": 0.72, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 164, + 257, + 207, + 277 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 207, + 260, + 243, + 273 + ], + "score": 0.29, + "content": "Q _ { c } . \\ K _ { j } ^ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 243, + 257, + 269, + 277 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 270, + 261, + 275, + 271 + ], + "score": 0.82, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 276, + 257, + 318, + 277 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 318, + 260, + 334, + 271 + ], + "score": 0.75, + "content": "K _ { c }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 257, + 339, + 277 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 339, + 260, + 371, + 274 + ], + "score": 0.89, + "content": "K _ { \\delta ( i , j ) } ^ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 371, + 257, + 398, + 277 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 398, + 260, + 424, + 272 + ], + "score": 0.93, + "content": "\\delta ( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 257, + 467, + 277 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 467, + 260, + 483, + 271 + ], + "score": 0.89, + "content": "K _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 483, + 257, + 507, + 277 + ], + "score": 1.0, + "content": "with", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 271, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 104, + 271, + 227, + 289 + ], + "score": 1.0, + "content": "regarding to relative distance", + "type": "text" + }, + { + "bbox": [ + 227, + 273, + 253, + 285 + ], + "score": 0.78, + "content": "\\delta ( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 254, + 271, + 258, + 289 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 258, + 273, + 289, + 288 + ], + "score": 0.7, + "content": "Q _ { \\delta ( j , i ) } ^ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 289, + 271, + 315, + 289 + ], + "score": 1.0, + "content": "is the", + "type": "text" + }, + { + "bbox": [ + 315, + 273, + 341, + 285 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 341, + 271, + 383, + 289 + ], + "score": 1.0, + "content": "-th row of", + "type": "text" + }, + { + "bbox": [ + 383, + 273, + 398, + 285 + ], + "score": 0.89, + "content": "Q _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 398, + 271, + 506, + 289 + ], + "score": 1.0, + "content": "with regarding to relative", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 285, + 506, + 300 + ], + "spans": [ + { + "bbox": [ + 105, + 285, + 141, + 300 + ], + "score": 1.0, + "content": "distance", + "type": "text" + }, + { + "bbox": [ + 141, + 286, + 167, + 299 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 167, + 285, + 240, + 300 + ], + "score": 1.0, + "content": ". Note that we use", + "type": "text" + }, + { + "bbox": [ + 241, + 287, + 266, + 299 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 266, + 285, + 312, + 300 + ], + "score": 1.0, + "content": "rather than", + "type": "text" + }, + { + "bbox": [ + 313, + 286, + 338, + 298 + ], + "score": 0.92, + "content": "\\delta ( i , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 339, + 285, + 506, + 300 + ], + "score": 1.0, + "content": "here. This is because for a given position", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 297, + 505, + 310 + ], + "spans": [ + { + "bbox": [ + 106, + 298, + 111, + 308 + ], + "score": 0.68, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 111, + 297, + 416, + 310 + ], + "score": 1.0, + "content": ", position-to-content computes the attention weight of the key content at", + "type": "text" + }, + { + "bbox": [ + 416, + 298, + 423, + 309 + ], + "score": 0.84, + "content": "j", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 297, + 505, + 310 + ], + "score": 1.0, + "content": "with respect to the", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 308, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 308, + 176, + 322 + ], + "score": 1.0, + "content": "query position at", + "type": "text" + }, + { + "bbox": [ + 176, + 309, + 181, + 318 + ], + "score": 0.71, + "content": "i", + "type": "inline_equation" + }, + { + "bbox": [ + 181, + 308, + 294, + 322 + ], + "score": 1.0, + "content": ", thus the relative distance is", + "type": "text" + }, + { + "bbox": [ + 295, + 308, + 320, + 321 + ], + "score": 0.92, + "content": "\\delta ( j , i )", + "type": "inline_equation" + }, + { + "bbox": [ + 320, + 308, + 506, + 322 + ], + "score": 1.0, + "content": ". The position-to-content term is calculated as", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 107, + 316, + 401, + 338 + ], + "spans": [ + { + "bbox": [ + 107, + 320, + 156, + 334 + ], + "score": 0.93, + "content": "K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } { } ^ { \\intercal }", + "type": "inline_equation" + }, + { + "bbox": [ + 157, + 316, + 401, + 338 + ], + "score": 1.0, + "content": ". The content-to-position term is calculated in a similar way.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 104, + 246, + 507, + 338 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 339, + 502, + 366 + ], + "lines": [ + { + "bbox": [ + 102, + 335, + 507, + 360 + ], + "spans": [ + { + "bbox": [ + 102, + 335, + 263, + 360 + ], + "score": 1.0, + "content": "Finally, we apply a scaling factor of", + "type": "text" + }, + { + "bbox": [ + 263, + 340, + 281, + 356 + ], + "score": 0.92, + "content": "\\frac { 1 } { \\sqrt { 3 d } }", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 335, + 297, + 360 + ], + "score": 1.0, + "content": "on", + "type": "text" + }, + { + "bbox": [ + 298, + 339, + 307, + 351 + ], + "score": 0.82, + "content": "\\tilde { A }", + "type": "inline_equation" + }, + { + "bbox": [ + 308, + 335, + 507, + 360 + ], + "score": 1.0, + "content": ". The factor is important for stabilizing model", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 353, + 363, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 353, + 363, + 366 + ], + "score": 1.0, + "content": "training (Vaswani et al., 2017), especially for large-scale PLMs.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16.5, + "bbox_fs": [ + 102, + 335, + 507, + 366 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 378, + 254, + 389 + ], + "lines": [ + { + "bbox": [ + 105, + 375, + 256, + 392 + ], + "spans": [ + { + "bbox": [ + 105, + 375, + 256, + 392 + ], + "score": 1.0, + "content": "Algorithm 1 Disentangled Attention", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + }, + { + "type": "index", + "bbox": [ + 107, + 392, + 506, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 391, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 191, + 406 + ], + "score": 1.0, + "content": "Input: Hidden state", + "type": "text" + }, + { + "bbox": [ + 191, + 393, + 203, + 403 + ], + "score": 0.73, + "content": "\\pmb { H }", + "type": "inline_equation" + }, + { + "bbox": [ + 203, + 391, + 321, + 406 + ], + "score": 1.0, + "content": ", relative distance embedding", + "type": "text" + }, + { + "bbox": [ + 321, + 394, + 331, + 403 + ], + "score": 0.79, + "content": "_ { P }", + "type": "inline_equation" + }, + { + "bbox": [ + 331, + 391, + 430, + 406 + ], + "score": 1.0, + "content": ", relative distance matrix", + "type": "text" + }, + { + "bbox": [ + 431, + 394, + 437, + 403 + ], + "score": 0.57, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 438, + 391, + 506, + 406 + ], + "score": 1.0, + "content": ". Content projec-", + "type": "text" + } + ], + "index": 19, + "is_list_start_line": true + }, + { + "bbox": [ + 120, + 399, + 418, + 421 + ], + "spans": [ + { + "bbox": [ + 120, + 399, + 170, + 421 + ], + "score": 1.0, + "content": "tion matrix", + "type": "text" + }, + { + "bbox": [ + 170, + 404, + 194, + 416 + ], + "score": 0.88, + "content": "W _ { k , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 194, + 399, + 198, + 421 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 198, + 404, + 221, + 416 + ], + "score": 0.63, + "content": "W _ { q , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 399, + 225, + 421 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 226, + 404, + 249, + 416 + ], + "score": 0.81, + "content": "W _ { v , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 250, + 399, + 359, + 421 + ], + "score": 1.0, + "content": ", position projection matrix", + "type": "text" + }, + { + "bbox": [ + 360, + 404, + 383, + 416 + ], + "score": 0.83, + "content": "W _ { k , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 384, + 399, + 388, + 421 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 388, + 404, + 411, + 416 + ], + "score": 0.78, + "content": "W _ { q , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 412, + 399, + 418, + 421 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 20, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 411, + 442, + 430 + ], + "spans": [ + { + "bbox": [ + 109, + 411, + 124, + 430 + ], + "score": 1.0, + "content": "1:", + "type": "text" + }, + { + "bbox": [ + 124, + 415, + 185, + 426 + ], + "score": 0.87, + "content": "K _ { c } = H W _ { k , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 186, + 411, + 190, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 190, + 416, + 251, + 428 + ], + "score": 0.77, + "content": "Q _ { c } = H W _ { q , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 251, + 411, + 254, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 254, + 415, + 313, + 428 + ], + "score": 0.88, + "content": "V _ { c } = H W _ { v , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 314, + 411, + 317, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 317, + 415, + 378, + 427 + ], + "score": 0.85, + "content": "K _ { r } = P W _ { k , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 378, + 411, + 382, + 430 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 382, + 416, + 442, + 428 + ], + "score": 0.79, + "content": "Q _ { r } \\overset { = } { = } P W _ { q , r }", + "type": "inline_equation" + } + ], + "index": 21, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 424, + 191, + 441 + ], + "spans": [ + { + "bbox": [ + 110, + 424, + 124, + 441 + ], + "score": 1.0, + "content": "2:", + "type": "text" + }, + { + "bbox": [ + 124, + 427, + 191, + 438 + ], + "score": 0.87, + "content": "A _ { c c } = Q _ { c } K _ { c } ^ { \\intercal }", + "type": "inline_equation" + } + ], + "index": 22, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 436, + 219, + 450 + ], + "spans": [ + { + "bbox": [ + 110, + 436, + 138, + 450 + ], + "score": 1.0, + "content": "3: for", + "type": "text" + }, + { + "bbox": [ + 138, + 438, + 205, + 448 + ], + "score": 0.8, + "content": "i = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 436, + 219, + 450 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 23, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 448, + 242, + 462 + ], + "spans": [ + { + "bbox": [ + 110, + 449, + 122, + 460 + ], + "score": 1.0, + "content": "4:", + "type": "text" + }, + { + "bbox": [ + 138, + 448, + 242, + 462 + ], + "score": 0.88, + "content": "\\tilde { A } _ { c p } [ i , : ] = Q _ { c } [ i , : ] { \\cal K } _ { r } ^ { \\intercal }", + "type": "inline_equation" + } + ], + "index": 24, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 459, + 158, + 473 + ], + "spans": [ + { + "bbox": [ + 109, + 459, + 158, + 473 + ], + "score": 1.0, + "content": "5: end for", + "type": "text" + } + ], + "index": 25, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 470, + 219, + 483 + ], + "spans": [ + { + "bbox": [ + 109, + 470, + 138, + 483 + ], + "score": 1.0, + "content": "6: for", + "type": "text" + }, + { + "bbox": [ + 138, + 471, + 205, + 482 + ], + "score": 0.85, + "content": "i = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 205, + 470, + 219, + 483 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 26, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 482, + 236, + 495 + ], + "spans": [ + { + "bbox": [ + 110, + 482, + 122, + 495 + ], + "score": 1.0, + "content": "7:", + "type": "text" + }, + { + "bbox": [ + 137, + 482, + 153, + 494 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 153, + 483, + 222, + 493 + ], + "score": 0.72, + "content": "j = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 222, + 482, + 236, + 494 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 27, + "is_list_start_line": true + }, + { + "bbox": [ + 110, + 493, + 279, + 507 + ], + "spans": [ + { + "bbox": [ + 110, + 494, + 122, + 506 + ], + "score": 1.0, + "content": "8:", + "type": "text" + }, + { + "bbox": [ + 153, + 493, + 279, + 507 + ], + "score": 0.59, + "content": "A _ { c p } [ i , j ] = \\tilde { A } _ { c p } [ i , \\delta [ i , j ] ]", + "type": "inline_equation" + } + ], + "index": 28, + "is_list_start_line": true + }, + { + "bbox": [ + 109, + 504, + 173, + 518 + ], + "spans": [ + { + "bbox": [ + 109, + 505, + 122, + 518 + ], + "score": 1.0, + "content": "9:", + "type": "text" + }, + { + "bbox": [ + 137, + 504, + 173, + 518 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 29, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 516, + 157, + 528 + ], + "spans": [ + { + "bbox": [ + 107, + 516, + 157, + 528 + ], + "score": 1.0, + "content": "10: end for", + "type": "text" + } + ], + "index": 30, + "is_list_start_line": true + }, + { + "bbox": [ + 107, + 527, + 221, + 540 + ], + "spans": [ + { + "bbox": [ + 107, + 528, + 121, + 538 + ], + "score": 1.0, + "content": "11:", + "type": "text" + }, + { + "bbox": [ + 122, + 527, + 138, + 540 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 138, + 528, + 207, + 538 + ], + "score": 0.79, + "content": "j = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 527, + 221, + 540 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 31, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 539, + 244, + 552 + ], + "spans": [ + { + "bbox": [ + 106, + 539, + 122, + 551 + ], + "score": 1.0, + "content": "12:", + "type": "text" + }, + { + "bbox": [ + 138, + 539, + 244, + 552 + ], + "score": 0.79, + "content": "\\tilde { A } _ { p c } [ : , j ] = K _ { c } [ j , : ] Q _ { r } ^ { \\intercal }", + "type": "inline_equation" + } + ], + "index": 32, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 550, + 157, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 157, + 562 + ], + "score": 1.0, + "content": "13: end for", + "type": "text" + } + ], + "index": 33, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 561, + 221, + 574 + ], + "spans": [ + { + "bbox": [ + 106, + 561, + 138, + 574 + ], + "score": 1.0, + "content": "14: for", + "type": "text" + }, + { + "bbox": [ + 139, + 562, + 207, + 573 + ], + "score": 0.84, + "content": "j = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 207, + 561, + 221, + 574 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 34, + "is_list_start_line": true + }, + { + "bbox": [ + 106, + 572, + 235, + 585 + ], + "spans": [ + { + "bbox": [ + 106, + 572, + 122, + 585 + ], + "score": 1.0, + "content": "15:", + "type": "text" + }, + { + "bbox": [ + 137, + 572, + 153, + 585 + ], + "score": 1.0, + "content": "for", + "type": "text" + }, + { + "bbox": [ + 153, + 573, + 221, + 584 + ], + "score": 0.69, + "content": "i = 0 , . . . , N - 1", + "type": "inline_equation" + }, + { + "bbox": [ + 221, + 572, + 235, + 585 + ], + "score": 1.0, + "content": "do", + "type": "text" + } + ], + "index": 35, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 583, + 279, + 597 + ], + "spans": [ + { + "bbox": [ + 105, + 585, + 122, + 597 + ], + "score": 1.0, + "content": "16:", + "type": "text" + }, + { + "bbox": [ + 153, + 583, + 279, + 597 + ], + "score": 0.65, + "content": "A _ { p c } [ i , j ] = \\tilde { A } _ { p c } [ \\delta [ j , i ] , j ]", + "type": "inline_equation" + } + ], + "index": 36, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 594, + 172, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 595, + 122, + 608 + ], + "score": 1.0, + "content": "17:", + "type": "text" + }, + { + "bbox": [ + 137, + 594, + 172, + 608 + ], + "score": 1.0, + "content": "end for", + "type": "text" + } + ], + "index": 37, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 606, + 158, + 619 + ], + "spans": [ + { + "bbox": [ + 105, + 606, + 158, + 619 + ], + "score": 1.0, + "content": "18: end for", + "type": "text" + } + ], + "index": 38, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 614, + 249, + 632 + ], + "spans": [ + { + "bbox": [ + 105, + 614, + 123, + 632 + ], + "score": 1.0, + "content": "19:", + "type": "text" + }, + { + "bbox": [ + 124, + 616, + 249, + 629 + ], + "score": 0.58, + "content": "\\tilde { A } = A _ { c c } + A _ { c p } + A _ { p c }", + "type": "inline_equation" + } + ], + "index": 39, + "is_list_start_line": true + }, + { + "bbox": [ + 103, + 628, + 227, + 651 + ], + "spans": [ + { + "bbox": [ + 103, + 628, + 123, + 651 + ], + "score": 1.0, + "content": "20:", + "type": "text" + }, + { + "bbox": [ + 123, + 630, + 227, + 647 + ], + "score": 0.72, + "content": "H _ { o } = \\operatorname { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c }", + "type": "inline_equation" + } + ], + "index": 40, + "is_list_start_line": true + }, + { + "bbox": [ + 105, + 643, + 164, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 643, + 164, + 659 + ], + "score": 1.0, + "content": "Output: Ho", + "type": "text" + } + ], + "index": 41, + "is_list_start_line": true + } + ], + "index": 30, + "bbox_fs": [ + 103, + 391, + 506, + 659 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 679, + 264, + 690 + ], + "lines": [ + { + "bbox": [ + 105, + 678, + 265, + 692 + ], + "spans": [ + { + "bbox": [ + 105, + 678, + 265, + 692 + ], + "score": 1.0, + "content": "3.1.1 EFFICIENT IMPLEMENTATION", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 507, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 238, + 712 + ], + "score": 1.0, + "content": "For an input sequence of length", + "type": "text" + }, + { + "bbox": [ + 239, + 699, + 249, + 709 + ], + "score": 0.8, + "content": "N", + "type": "inline_equation" + }, + { + "bbox": [ + 249, + 698, + 389, + 712 + ], + "score": 1.0, + "content": ", it requires a space complexity of", + "type": "text" + }, + { + "bbox": [ + 389, + 698, + 425, + 711 + ], + "score": 0.93, + "content": "O ( N ^ { 2 } d )", + "type": "inline_equation" + }, + { + "bbox": [ + 425, + 698, + 507, + 712 + ], + "score": 1.0, + "content": "(Shaw et al., 2018;", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "Huang et al., 2018; Dai et al., 2019) to store the relative position embedding for each token. However,", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 105, + 720, + 505, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 354, + 734 + ], + "score": 1.0, + "content": "taking content-to-position as an example, we note that since", + "type": "text" + }, + { + "bbox": [ + 355, + 720, + 419, + 732 + ], + "score": 0.93, + "content": "\\delta ( i , j ) \\in [ 0 , 2 k )", + "type": "inline_equation" + }, + { + "bbox": [ + 420, + 720, + 505, + 734 + ], + "score": 1.0, + "content": "and the embeddings", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 104, + 79, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 330, + 97 + ], + "score": 1.0, + "content": "of all possible relative positions are always a subset of", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 330, + 81, + 383, + 93 + ], + "score": 0.93, + "content": "K _ { r } \\in R ^ { 2 k \\times d }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 383, + 79, + 462, + 97 + ], + "score": 1.0, + "content": ", then we can reuse", + "type": "text", + "cross_page": true + }, + { + "bbox": [ + 462, + 83, + 478, + 93 + ], + "score": 0.88, + "content": "K _ { r }", + "type": "inline_equation", + "cross_page": true + }, + { + "bbox": [ + 478, + 79, + 506, + 97 + ], + "score": 1.0, + "content": "in the", + "type": "text", + "cross_page": true + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 264, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 264, + 105 + ], + "score": 1.0, + "content": "attention calculation for all the queries.", + "type": "text", + "cross_page": true + } + ], + "index": 1 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 698, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 81, + 504, + 105 + ], + "lines": [ + { + "bbox": [ + 104, + 79, + 506, + 97 + ], + "spans": [ + { + "bbox": [ + 104, + 79, + 330, + 97 + ], + "score": 1.0, + "content": "of all possible relative positions are always a subset of", + "type": "text" + }, + { + "bbox": [ + 330, + 81, + 383, + 93 + ], + "score": 0.93, + "content": "K _ { r } \\in R ^ { 2 k \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 79, + 462, + 97 + ], + "score": 1.0, + "content": ", then we can reuse", + "type": "text" + }, + { + "bbox": [ + 462, + 83, + 478, + 93 + ], + "score": 0.88, + "content": "K _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 478, + 79, + 506, + 97 + ], + "score": 1.0, + "content": "in the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 264, + 105 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 264, + 105 + ], + "score": 1.0, + "content": "attention calculation for all the queries.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 504, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 334, + 122 + ], + "score": 1.0, + "content": "In our experiments, we set the maximum relative distance", + "type": "text" + }, + { + "bbox": [ + 335, + 111, + 342, + 120 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 110, + 504, + 122 + ], + "score": 1.0, + "content": "to 512 for pre-training. The disentangled", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 378, + 134 + ], + "score": 1.0, + "content": "attention weights can be computed efficiently using Algorithm 1. Let", + "type": "text" + }, + { + "bbox": [ + 379, + 122, + 385, + 132 + ], + "score": 0.69, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "be the relative position matrix", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 229, + 145 + ], + "score": 1.0, + "content": "according to equation 3, i.e.,", + "type": "text" + }, + { + "bbox": [ + 229, + 132, + 296, + 144 + ], + "score": 0.93, + "content": "\\delta [ i , j ] = \\delta ( \\overset { . } { i } , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 131, + 506, + 145 + ], + "score": 1.0, + "content": ". Instead of allocating a different relative position", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 104, + 142, + 364, + 156 + ], + "score": 1.0, + "content": "embedding matrix for each query, we multiply each query vector", + "type": "text" + }, + { + "bbox": [ + 365, + 143, + 396, + 155 + ], + "score": 0.92, + "content": "Q _ { c } [ i , : ]", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 142, + 410, + 156 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 410, + 142, + 464, + 155 + ], + "score": 0.93, + "content": "{ K } _ { r } ^ { \\tau } \\in { R } ^ { d \\times 2 k }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 142, + 506, + 156 + ], + "score": 1.0, + "content": ", as in line", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 130, + 165 + ], + "score": 0.49, + "content": "3 - 5", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 153, + 422, + 167 + ], + "score": 1.0, + "content": ". Then, we extract the attention weight using the relative position matrix", + "type": "text" + }, + { + "bbox": [ + 423, + 155, + 429, + 164 + ], + "score": 0.73, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "as the index, as in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 124, + 180 + ], + "score": 1.0, + "content": "line", + "type": "text" + }, + { + "bbox": [ + 124, + 167, + 153, + 178 + ], + "score": 0.34, + "content": "6 - 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 166, + 423, + 180 + ], + "score": 1.0, + "content": ". To compute the position-to-content attention score, we calculate", + "type": "text" + }, + { + "bbox": [ + 423, + 165, + 469, + 179 + ], + "score": 0.93, + "content": "\\tilde { A } _ { p c } [ : , j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 166, + 506, + 180 + ], + "score": 1.0, + "content": ", i.e., the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 178, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 258, + 194 + ], + "score": 1.0, + "content": "column vector of the attention matrix", + "type": "text" + }, + { + "bbox": [ + 259, + 178, + 286, + 192 + ], + "score": 0.93, + "content": "\\tilde { A } _ { p c }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 179, + 418, + 194 + ], + "score": 1.0, + "content": ", by multiplying each key vector", + "type": "text" + }, + { + "bbox": [ + 418, + 180, + 451, + 192 + ], + "score": 0.92, + "content": "K _ { c } [ j , : ]", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 179, + 465, + 194 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 465, + 180, + 480, + 192 + ], + "score": 0.87, + "content": "Q _ { r } ^ { \\intercal }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 179, + 505, + 194 + ], + "score": 1.0, + "content": ", as in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 504, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 124, + 204 + ], + "score": 1.0, + "content": "line", + "type": "text" + }, + { + "bbox": [ + 124, + 191, + 157, + 201 + ], + "score": 0.62, + "content": "1 1 - 1 3", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 191, + 497, + 204 + ], + "score": 1.0, + "content": ". Finally, we extract the corresponding attention score via the relative position matrix", + "type": "text" + }, + { + "bbox": [ + 497, + 191, + 504, + 201 + ], + "score": 0.74, + "content": "\\pmb { \\delta }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 202, + 504, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 199, + 214 + ], + "score": 1.0, + "content": "as the index, as in line", + "type": "text" + }, + { + "bbox": [ + 200, + 202, + 233, + 212 + ], + "score": 0.44, + "content": "1 4 - 1 8", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 202, + 504, + 214 + ], + "score": 1.0, + "content": ". In this way, we do not need to allocate memory to store a relative", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 212, + 504, + 226 + ], + "spans": [ + { + "bbox": [ + 104, + 212, + 411, + 226 + ], + "score": 1.0, + "content": "position embedding for each query and thus reduce the space complexity to", + "type": "text" + }, + { + "bbox": [ + 411, + 213, + 439, + 225 + ], + "score": 0.93, + "content": "O ( k d )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 212, + 488, + 226 + ], + "score": 1.0, + "content": "(for storing", + "type": "text" + }, + { + "bbox": [ + 488, + 213, + 504, + 224 + ], + "score": 0.87, + "content": "K _ { r }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 223, + 146, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 123, + 236 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 224, + 138, + 235 + ], + "score": 0.85, + "content": "Q _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 223, + 146, + 236 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7 + }, + { + "type": "title", + "bbox": [ + 108, + 256, + 453, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 255, + 455, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 455, + 270 + ], + "score": 1.0, + "content": "3.2 ENHANCED MASK DECODER ACCOUNTS FOR ABSOLUTE WORD POSITIONS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "DeBERTa is pretrained using MLM, where a model is trained to use the words surrounding a mask", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "token to predict what the masked word should be. DeBERTa uses the content and position information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "of the context words for MLM. The disentangled attention mechanism already considers the contents", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "and relative positions of the context words, but not the absolute positions of these words, which in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 325, + 272, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 272, + 337 + ], + "score": 1.0, + "content": "many cases are crucial for the prediction.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 507, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 507, + 354 + ], + "score": 1.0, + "content": "Given a sentence “a new store opened beside the new mall” with the words “store” and “mall”", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "score": 1.0, + "content": "masked for prediction. Using only the local context (e.g., relative positions and surrounding words)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "score": 1.0, + "content": "is insufficient for the model to distinguish store and mall in this sentence, since both follow the word", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 375, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 505, + 386 + ], + "score": 1.0, + "content": "new with the same relative positions. To address this limitation, the model needs to take into account", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "absolute positions, as complement information to the relative positions. For example, the subject of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "the sentence is “store” not “mall”. These syntactical nuances depend, to a large degree, upon the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 407, + 275, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 275, + 420 + ], + "score": 1.0, + "content": "words’ absolute positions in the sentence.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "There are two methods of incorporating absolute positions. The BERT model incorporates absolute", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "positions in the input layer. In DeBERTa, we incorporate them right after all the Transformer layers", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "but before the softmax layer for masked token prediction, as shown in Figure 2. In this way, DeBERTa", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "captures the relative positions in all the Transformer layers and only uses absolute positions as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "complementary information when decoding the masked words. Thus, we call DeBERTa’s decoding", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "component an Enhanced Mask Decoder (EMD). In the empirical study, we compare these two", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "score": 1.0, + "content": "methods of incorporating absolute positions and observe that EMD works much better. We conjecture", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "that the early incorporation of absolute positions used by BERT might undesirably hamper the model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "from learning sufficient information of relative positions. In addition, EMD also enables us to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "score": 1.0, + "content": "introduce other useful information, in addition to positions, for pre-training. We leave it to future", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 534, + 131, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 131, + 545 + ], + "score": 1.0, + "content": "work.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31 + }, + { + "type": "title", + "bbox": [ + 108, + 569, + 295, + 582 + ], + "lines": [ + { + "bbox": [ + 104, + 568, + 298, + 584 + ], + "spans": [ + { + "bbox": [ + 104, + 568, + 298, + 584 + ], + "score": 1.0, + "content": "4 SCALE INVARIANT FINE-TUNING", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "This section presents a new virtual adversarial training algorithm, Scale-invariant-Fine-Tuning (SiFT),", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 609, + 486, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 486, + 624 + ], + "score": 1.0, + "content": "a variant to the algorithm described in Miyato et al. (2018); Jiang et al. (2020), for fine-tuning.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Virtual adversarial training is a regularization method for improving models’ generalization. It does", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "so by improving a model’s robustness to adversarial examples, which are created by making small", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "perturbations to the input. The model is regularized so that when given a task-specific example, the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "model produces the same output distribution as it produces on an adversarial perturbation of that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 671, + 145, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 145, + 684 + ], + "score": 1.0, + "content": "example.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "For NLP tasks, the perturbation is applied to the word embedding instead of the original word", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "sequence. However, the value ranges (norms) of the embedding vectors vary among different words", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and models. The variance gets larger for bigger models with billions of parameters, leading to some", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 242, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 242, + 734 + ], + "score": 1.0, + "content": "instability of adversarial training.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5 + } + ], + "page_idx": 4, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 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": [ + 106, + 81, + 504, + 105 + ], + "lines": [], + "index": 0.5, + "bbox_fs": [ + 104, + 79, + 506, + 105 + ], + "lines_deleted": true + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 235 + ], + "lines": [ + { + "bbox": [ + 106, + 110, + 504, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 110, + 334, + 122 + ], + "score": 1.0, + "content": "In our experiments, we set the maximum relative distance", + "type": "text" + }, + { + "bbox": [ + 335, + 111, + 342, + 120 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 342, + 110, + 504, + 122 + ], + "score": 1.0, + "content": "to 512 for pre-training. The disentangled", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 121, + 506, + 134 + ], + "spans": [ + { + "bbox": [ + 105, + 121, + 378, + 134 + ], + "score": 1.0, + "content": "attention weights can be computed efficiently using Algorithm 1. Let", + "type": "text" + }, + { + "bbox": [ + 379, + 122, + 385, + 132 + ], + "score": 0.69, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 121, + 506, + 134 + ], + "score": 1.0, + "content": "be the relative position matrix", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 506, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 229, + 145 + ], + "score": 1.0, + "content": "according to equation 3, i.e.,", + "type": "text" + }, + { + "bbox": [ + 229, + 132, + 296, + 144 + ], + "score": 0.93, + "content": "\\delta [ i , j ] = \\delta ( \\overset { . } { i } , j )", + "type": "inline_equation" + }, + { + "bbox": [ + 296, + 131, + 506, + 145 + ], + "score": 1.0, + "content": ". Instead of allocating a different relative position", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 104, + 142, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 104, + 142, + 364, + 156 + ], + "score": 1.0, + "content": "embedding matrix for each query, we multiply each query vector", + "type": "text" + }, + { + "bbox": [ + 365, + 143, + 396, + 155 + ], + "score": 0.92, + "content": "Q _ { c } [ i , : ]", + "type": "inline_equation" + }, + { + "bbox": [ + 397, + 142, + 410, + 156 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 410, + 142, + 464, + 155 + ], + "score": 0.93, + "content": "{ K } _ { r } ^ { \\tau } \\in { R } ^ { d \\times 2 k }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 142, + 506, + 156 + ], + "score": 1.0, + "content": ", as in line", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 153, + 505, + 167 + ], + "spans": [ + { + "bbox": [ + 106, + 154, + 130, + 165 + ], + "score": 0.49, + "content": "3 - 5", + "type": "inline_equation" + }, + { + "bbox": [ + 130, + 153, + 422, + 167 + ], + "score": 1.0, + "content": ". Then, we extract the attention weight using the relative position matrix", + "type": "text" + }, + { + "bbox": [ + 423, + 155, + 429, + 164 + ], + "score": 0.73, + "content": "\\delta", + "type": "inline_equation" + }, + { + "bbox": [ + 430, + 153, + 505, + 167 + ], + "score": 1.0, + "content": "as the index, as in", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 506, + 180 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 124, + 180 + ], + "score": 1.0, + "content": "line", + "type": "text" + }, + { + "bbox": [ + 124, + 167, + 153, + 178 + ], + "score": 0.34, + "content": "6 - 1 0", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 166, + 423, + 180 + ], + "score": 1.0, + "content": ". To compute the position-to-content attention score, we calculate", + "type": "text" + }, + { + "bbox": [ + 423, + 165, + 469, + 179 + ], + "score": 0.93, + "content": "\\tilde { A } _ { p c } [ : , j ]", + "type": "inline_equation" + }, + { + "bbox": [ + 469, + 166, + 506, + 180 + ], + "score": 1.0, + "content": ", i.e., the", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 178, + 505, + 194 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 258, + 194 + ], + "score": 1.0, + "content": "column vector of the attention matrix", + "type": "text" + }, + { + "bbox": [ + 259, + 178, + 286, + 192 + ], + "score": 0.93, + "content": "\\tilde { A } _ { p c }", + "type": "inline_equation" + }, + { + "bbox": [ + 286, + 179, + 418, + 194 + ], + "score": 1.0, + "content": ", by multiplying each key vector", + "type": "text" + }, + { + "bbox": [ + 418, + 180, + 451, + 192 + ], + "score": 0.92, + "content": "K _ { c } [ j , : ]", + "type": "inline_equation" + }, + { + "bbox": [ + 452, + 179, + 465, + 194 + ], + "score": 1.0, + "content": "by", + "type": "text" + }, + { + "bbox": [ + 465, + 180, + 480, + 192 + ], + "score": 0.87, + "content": "Q _ { r } ^ { \\intercal }", + "type": "inline_equation" + }, + { + "bbox": [ + 480, + 179, + 505, + 194 + ], + "score": 1.0, + "content": ", as in", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 191, + 504, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 191, + 124, + 204 + ], + "score": 1.0, + "content": "line", + "type": "text" + }, + { + "bbox": [ + 124, + 191, + 157, + 201 + ], + "score": 0.62, + "content": "1 1 - 1 3", + "type": "inline_equation" + }, + { + "bbox": [ + 158, + 191, + 497, + 204 + ], + "score": 1.0, + "content": ". Finally, we extract the corresponding attention score via the relative position matrix", + "type": "text" + }, + { + "bbox": [ + 497, + 191, + 504, + 201 + ], + "score": 0.74, + "content": "\\pmb { \\delta }", + "type": "inline_equation" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 202, + 504, + 214 + ], + "spans": [ + { + "bbox": [ + 106, + 202, + 199, + 214 + ], + "score": 1.0, + "content": "as the index, as in line", + "type": "text" + }, + { + "bbox": [ + 200, + 202, + 233, + 212 + ], + "score": 0.44, + "content": "1 4 - 1 8", + "type": "inline_equation" + }, + { + "bbox": [ + 233, + 202, + 504, + 214 + ], + "score": 1.0, + "content": ". In this way, we do not need to allocate memory to store a relative", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 104, + 212, + 504, + 226 + ], + "spans": [ + { + "bbox": [ + 104, + 212, + 411, + 226 + ], + "score": 1.0, + "content": "position embedding for each query and thus reduce the space complexity to", + "type": "text" + }, + { + "bbox": [ + 411, + 213, + 439, + 225 + ], + "score": 0.93, + "content": "O ( k d )", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 212, + 488, + 226 + ], + "score": 1.0, + "content": "(for storing", + "type": "text" + }, + { + "bbox": [ + 488, + 213, + 504, + 224 + ], + "score": 0.87, + "content": "K _ { r }", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 223, + 146, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 123, + 236 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 224, + 138, + 235 + ], + "score": 0.85, + "content": "Q _ { r }", + "type": "inline_equation" + }, + { + "bbox": [ + 138, + 223, + 146, + 236 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 7, + "bbox_fs": [ + 104, + 110, + 506, + 236 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 256, + 453, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 255, + 455, + 270 + ], + "spans": [ + { + "bbox": [ + 105, + 255, + 455, + 270 + ], + "score": 1.0, + "content": "3.2 ENHANCED MASK DECODER ACCOUNTS FOR ABSOLUTE WORD POSITIONS", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 280, + 505, + 335 + ], + "lines": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "spans": [ + { + "bbox": [ + 106, + 281, + 505, + 293 + ], + "score": 1.0, + "content": "DeBERTa is pretrained using MLM, where a model is trained to use the words surrounding a mask", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "spans": [ + { + "bbox": [ + 105, + 291, + 505, + 304 + ], + "score": 1.0, + "content": "token to predict what the masked word should be. DeBERTa uses the content and position information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "spans": [ + { + "bbox": [ + 105, + 302, + 505, + 315 + ], + "score": 1.0, + "content": "of the context words for MLM. The disentangled attention mechanism already considers the contents", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "spans": [ + { + "bbox": [ + 106, + 313, + 505, + 325 + ], + "score": 1.0, + "content": "and relative positions of the context words, but not the absolute positions of these words, which in", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 325, + 272, + 337 + ], + "spans": [ + { + "bbox": [ + 105, + 325, + 272, + 337 + ], + "score": 1.0, + "content": "many cases are crucial for the prediction.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 281, + 505, + 337 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 341, + 505, + 418 + ], + "lines": [ + { + "bbox": [ + 105, + 340, + 507, + 354 + ], + "spans": [ + { + "bbox": [ + 105, + 340, + 507, + 354 + ], + "score": 1.0, + "content": "Given a sentence “a new store opened beside the new mall” with the words “store” and “mall”", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "spans": [ + { + "bbox": [ + 105, + 352, + 506, + 366 + ], + "score": 1.0, + "content": "masked for prediction. Using only the local context (e.g., relative positions and surrounding words)", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 364, + 505, + 375 + ], + "score": 1.0, + "content": "is insufficient for the model to distinguish store and mall in this sentence, since both follow the word", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 375, + 505, + 386 + ], + "spans": [ + { + "bbox": [ + 106, + 375, + 505, + 386 + ], + "score": 1.0, + "content": "new with the same relative positions. To address this limitation, the model needs to take into account", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 505, + 397 + ], + "score": 1.0, + "content": "absolute positions, as complement information to the relative positions. For example, the subject of", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "spans": [ + { + "bbox": [ + 105, + 396, + 505, + 409 + ], + "score": 1.0, + "content": "the sentence is “store” not “mall”. These syntactical nuances depend, to a large degree, upon the", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 407, + 275, + 420 + ], + "spans": [ + { + "bbox": [ + 105, + 407, + 275, + 420 + ], + "score": 1.0, + "content": "words’ absolute positions in the sentence.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 340, + 507, + 420 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 424, + 505, + 545 + ], + "lines": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "spans": [ + { + "bbox": [ + 105, + 424, + 505, + 437 + ], + "score": 1.0, + "content": "There are two methods of incorporating absolute positions. The BERT model incorporates absolute", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "spans": [ + { + "bbox": [ + 105, + 434, + 505, + 448 + ], + "score": 1.0, + "content": "positions in the input layer. In DeBERTa, we incorporate them right after all the Transformer layers", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 458 + ], + "score": 1.0, + "content": "but before the softmax layer for masked token prediction, as shown in Figure 2. In this way, DeBERTa", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "spans": [ + { + "bbox": [ + 105, + 457, + 506, + 470 + ], + "score": 1.0, + "content": "captures the relative positions in all the Transformer layers and only uses absolute positions as", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "spans": [ + { + "bbox": [ + 105, + 468, + 505, + 481 + ], + "score": 1.0, + "content": "complementary information when decoding the masked words. Thus, we call DeBERTa’s decoding", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "spans": [ + { + "bbox": [ + 105, + 479, + 506, + 491 + ], + "score": 1.0, + "content": "component an Enhanced Mask Decoder (EMD). In the empirical study, we compare these two", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "spans": [ + { + "bbox": [ + 105, + 489, + 506, + 503 + ], + "score": 1.0, + "content": "methods of incorporating absolute positions and observe that EMD works much better. We conjecture", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "spans": [ + { + "bbox": [ + 105, + 501, + 505, + 513 + ], + "score": 1.0, + "content": "that the early incorporation of absolute positions used by BERT might undesirably hamper the model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "spans": [ + { + "bbox": [ + 105, + 511, + 506, + 524 + ], + "score": 1.0, + "content": "from learning sufficient information of relative positions. In addition, EMD also enables us to", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 505, + 536 + ], + "score": 1.0, + "content": "introduce other useful information, in addition to positions, for pre-training. We leave it to future", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 534, + 131, + 545 + ], + "spans": [ + { + "bbox": [ + 105, + 534, + 131, + 545 + ], + "score": 1.0, + "content": "work.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 31, + "bbox_fs": [ + 105, + 424, + 506, + 545 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 569, + 295, + 582 + ], + "lines": [ + { + "bbox": [ + 104, + 568, + 298, + 584 + ], + "spans": [ + { + "bbox": [ + 104, + 568, + 298, + 584 + ], + "score": 1.0, + "content": "4 SCALE INVARIANT FINE-TUNING", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 106, + 599, + 505, + 621 + ], + "lines": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 506, + 612 + ], + "score": 1.0, + "content": "This section presents a new virtual adversarial training algorithm, Scale-invariant-Fine-Tuning (SiFT),", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 609, + 486, + 624 + ], + "spans": [ + { + "bbox": [ + 104, + 609, + 486, + 624 + ], + "score": 1.0, + "content": "a variant to the algorithm described in Miyato et al. (2018); Jiang et al. (2020), for fine-tuning.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 104, + 598, + 506, + 624 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 627, + 505, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "spans": [ + { + "bbox": [ + 106, + 626, + 505, + 640 + ], + "score": 1.0, + "content": "Virtual adversarial training is a regularization method for improving models’ generalization. It does", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "spans": [ + { + "bbox": [ + 106, + 638, + 505, + 650 + ], + "score": 1.0, + "content": "so by improving a model’s robustness to adversarial examples, which are created by making small", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "spans": [ + { + "bbox": [ + 105, + 648, + 505, + 662 + ], + "score": 1.0, + "content": "perturbations to the input. The model is regularized so that when given a task-specific example, the", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "spans": [ + { + "bbox": [ + 105, + 660, + 505, + 673 + ], + "score": 1.0, + "content": "model produces the same output distribution as it produces on an adversarial perturbation of that", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 105, + 671, + 145, + 684 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 145, + 684 + ], + "score": 1.0, + "content": "example.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42, + "bbox_fs": [ + 105, + 626, + 505, + 684 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 504, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 506, + 700 + ], + "score": 1.0, + "content": "For NLP tasks, the perturbation is applied to the word embedding instead of the original word", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 712 + ], + "score": 1.0, + "content": "sequence. However, the value ranges (norms) of the embedding vectors vary among different words", + "type": "text" + } + ], + "index": 46 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "and models. The variance gets larger for bigger models with billions of parameters, leading to some", + "type": "text" + } + ], + "index": 47 + }, + { + "bbox": [ + 105, + 720, + 242, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 242, + 734 + ], + "score": 1.0, + "content": "instability of adversarial training.", + "type": "text" + } + ], + "index": 48 + } + ], + "index": 46.5, + "bbox_fs": [ + 105, + 687, + 506, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Inspired by layer normalization (Ba et al., 2016), we propose the SiFT algorithm that improves the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "training stability by applying the perturbations to the normalized word embeddings. Specifically,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "when fine-tuning DeBERTa to a downstream NLP task in our experiments, SiFT first normalizes the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "word embedding vectors into stochastic vectors, and then applies the perturbation to the normalized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "embedding vectors. We find that the normalization substantially improves the performance of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "fine-tuned models. The improvement is more prominent for larger DeBERTa models. Note that we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 186, + 161 + ], + "score": 1.0, + "content": "only apply SiFT to", + "type": "text" + }, + { + "bbox": [ + 186, + 149, + 245, + 159 + ], + "score": 0.63, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "on SuperGLUE tasks in our experiments and we will provide a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 160, + 327, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 327, + 171 + ], + "score": 1.0, + "content": "more comprehensive study of SiFT in our future work.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 108, + 188, + 194, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 188, + 195, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 195, + 202 + ], + "score": 1.0, + "content": "5 EXPERIMENT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 349, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 350, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 350, + 226 + ], + "score": 1.0, + "content": "This section reports DeBERTa results on various NLU tasks.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "title", + "bbox": [ + 108, + 240, + 267, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 268, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 268, + 253 + ], + "score": 1.0, + "content": "5.1 MAIN RESULTS ON NLU TASKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 261, + 441, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 442, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 442, + 275 + ], + "score": 1.0, + "content": "Following previous studies of PLMs, we report results using large and base models.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11 + }, + { + "type": "table", + "bbox": [ + 116, + 310, + 494, + 401 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 286, + 293, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 286, + 294, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 294, + 299 + ], + "score": 1.0, + "content": "5.1.1 PERFORMANCE ON LARGE MODELS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "table_body", + "bbox": [ + 116, + 310, + 494, + 401 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 310, + 494, + 401 + ], + "spans": [ + { + "bbox": [ + 116, + 310, + 494, + 401 + ], + "score": 0.982, + "html": "
ModelCoLAMcc|QQPAccMNLI-m/mmAccSST-2|AccSTS-BCorrQNLI|AccRTEAccMRPCAccAvg.
BERTlarge60.691.386.6/-93.290.092.370.488.084.05
RoBERTalarge68.092.290.2/90.296.492.493.986.690.988.82
XLNetlarge69.092.390.8/90.897.092.594.985.990.889.15
ELECTRAlarge69.192.490.9/-96.992.695.088.090.889.46
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
", + "type": "table", + "image_path": "162fbf5d04563eb804ba5992027194b06424801edc8ce19891d8cd8f4a7debb3.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 116, + 310, + 494, + 340.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 116, + 340.3333333333333, + 494, + 370.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 116, + 370.66666666666663, + 494, + 400.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 185, + 409, + 422, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 408, + 424, + 423 + ], + "spans": [ + { + "bbox": [ + 184, + 408, + 424, + 423 + ], + "score": 1.0, + "content": "Table 1: Comparison results on the GLUE development set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "We pre-train our large models following the setting of BERT (Devlin et al., 2019), except that we use", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "the BPE vocabulary of Radford et al. (2019); Liu et al. (2019c). For training data, we use Wikipedia", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "(English Wikipedia dump3; 12GB), BookCorpus (Zhu et al., 2015) (6GB), OPENWEBTEXT (public", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Reddit content (Gokaslan & Cohen, 2019); 38GB), and STORIES (a subset of CommonCrawl (Trinh", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 474, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 488 + ], + "score": 1.0, + "content": "& Le, 2018); 31GB). The total data size after data deduplication (Shoeybi et al., 2019) is about 78G.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 486, + 409, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 409, + 498 + ], + "score": 1.0, + "content": "Refer to Appendix A.2 for a detailed description of the pre-training dataset.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 108, + 502, + 503, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "We use 6 DGX-2 machines (96 V100 GPUs) to train the models. A single model trained with 2K", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "batch size and 1M steps takes about 20 days. Refer to Appendix A for the detailed hyperparamters.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5 + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "We summarize the results on eight NLU tasks of GLUE (Wang et al., 2019b) in Table 1, where", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "DeBERTa is compared DeBERTa with previous Transform-based PLMs of similar structures (i.e. 24", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "score": 1.0, + "content": "layers with hidden size of 1024) including BERT, RoBERTa, XLNet, ALBERT and ELECTRA. Note", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "score": 1.0, + "content": "that RoBERTa, XLNet and ELECTRA are pre-trained on 160G training data while DeBERTa is pre-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "score": 1.0, + "content": "trained on 78G training data. RoBERTa and XLNet are pre-trained for 500K steps with 8K samples", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "in a step, which amounts to four billion training samples. DeBERTa is pre-trained for one million", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "score": 1.0, + "content": "steps with 2K samples in each step. This amounts to two billion training samples, approximately", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "half of either RoBERTa or XLNet. Table 1 shows that compared to BERT and RoBERTa, DeBERTa", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "performs consistently better across all the tasks. Meanwhile, DeBERTa outperforms XLNet in six out", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 330, + 642 + ], + "score": 1.0, + "content": "of eight tasks. Particularly, the improvements on MRPC (", + "type": "text" + }, + { + "bbox": [ + 330, + 630, + 351, + 640 + ], + "score": 0.85, + "content": "1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 629, + 417, + 642 + ], + "score": 1.0, + "content": "over XLNet and", + "type": "text" + }, + { + "bbox": [ + 417, + 630, + 439, + 640 + ], + "score": 0.86, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "over RoBERTa),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 641, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 131, + 652 + ], + "score": 1.0, + "content": "RTE", + "type": "text" + }, + { + "bbox": [ + 132, + 641, + 154, + 651 + ], + "score": 0.85, + "content": "2 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 641, + 225, + 652 + ], + "score": 1.0, + "content": "over XLNet and", + "type": "text" + }, + { + "bbox": [ + 226, + 641, + 248, + 651 + ], + "score": 0.86, + "content": "1 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 641, + 367, + 652 + ], + "score": 1.0, + "content": "over RoBERTa) and CoLA (", + "type": "text" + }, + { + "bbox": [ + 367, + 641, + 389, + 651 + ], + "score": 0.86, + "content": "1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 641, + 460, + 652 + ], + "score": 1.0, + "content": "over XLNet and", + "type": "text" + }, + { + "bbox": [ + 461, + 641, + 483, + 651 + ], + "score": 0.86, + "content": "2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 641, + 506, + 652 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "RoBERTa) are significant. DeBERTa also outperforms other SOTA PLMs, i.e., ELECTRAlarge and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 663, + 287, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 149, + 675 + ], + "score": 0.65, + "content": "\\mathbf { X L N e t } _ { \\mathrm { l a r g e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 663, + 287, + 676 + ], + "score": 1.0, + "content": ", in terms of average GLUE score.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 504, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "Among all GLUE tasks, MNLI is most often used as an indicative task to monitor the research", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "score": 1.0, + "content": "progress of PLMs. DeBERTa significantly outperforms all existing PLMs of similar size on MNLI", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 702, + 241, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 241, + 713 + ], + "score": 1.0, + "content": "and creates a new state of the art.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + } + ], + "page_idx": 5, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 721, + 257, + 731 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 258, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 258, + 734 + ], + "score": 1.0, + "content": "3https://dumps.wikimedia.org/enwiki/", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "spans": [ + { + "bbox": [ + 105, + 25, + 293, + 39 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "6", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 505, + 171 + ], + "lines": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 83, + 505, + 95 + ], + "score": 1.0, + "content": "Inspired by layer normalization (Ba et al., 2016), we propose the SiFT algorithm that improves the", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "spans": [ + { + "bbox": [ + 105, + 93, + 506, + 107 + ], + "score": 1.0, + "content": "training stability by applying the perturbations to the normalized word embeddings. Specifically,", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 117 + ], + "score": 1.0, + "content": "when fine-tuning DeBERTa to a downstream NLP task in our experiments, SiFT first normalizes the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 115, + 505, + 128 + ], + "score": 1.0, + "content": "word embedding vectors into stochastic vectors, and then applies the perturbation to the normalized", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 126, + 505, + 139 + ], + "score": 1.0, + "content": "embedding vectors. We find that the normalization substantially improves the performance of the", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 136, + 506, + 150 + ], + "score": 1.0, + "content": "fine-tuned models. The improvement is more prominent for larger DeBERTa models. Note that we", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 106, + 149, + 506, + 161 + ], + "spans": [ + { + "bbox": [ + 106, + 149, + 186, + 161 + ], + "score": 1.0, + "content": "only apply SiFT to", + "type": "text" + }, + { + "bbox": [ + 186, + 149, + 245, + 159 + ], + "score": 0.63, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 149, + 506, + 161 + ], + "score": 1.0, + "content": "on SuperGLUE tasks in our experiments and we will provide a", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 160, + 327, + 171 + ], + "spans": [ + { + "bbox": [ + 105, + 160, + 327, + 171 + ], + "score": 1.0, + "content": "more comprehensive study of SiFT in our future work.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 83, + 506, + 171 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 188, + 194, + 200 + ], + "lines": [ + { + "bbox": [ + 105, + 188, + 195, + 202 + ], + "spans": [ + { + "bbox": [ + 105, + 188, + 195, + 202 + ], + "score": 1.0, + "content": "5 EXPERIMENT", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 213, + 349, + 225 + ], + "lines": [ + { + "bbox": [ + 106, + 213, + 350, + 226 + ], + "spans": [ + { + "bbox": [ + 106, + 213, + 350, + 226 + ], + "score": 1.0, + "content": "This section reports DeBERTa results on various NLU tasks.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 106, + 213, + 350, + 226 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 240, + 267, + 251 + ], + "lines": [ + { + "bbox": [ + 105, + 238, + 268, + 253 + ], + "spans": [ + { + "bbox": [ + 105, + 238, + 268, + 253 + ], + "score": 1.0, + "content": "5.1 MAIN RESULTS ON NLU TASKS", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 108, + 261, + 441, + 273 + ], + "lines": [ + { + "bbox": [ + 105, + 261, + 442, + 275 + ], + "spans": [ + { + "bbox": [ + 105, + 261, + 442, + 275 + ], + "score": 1.0, + "content": "Following previous studies of PLMs, we report results using large and base models.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 11, + "bbox_fs": [ + 105, + 261, + 442, + 275 + ] + }, + { + "type": "table", + "bbox": [ + 116, + 310, + 494, + 401 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 286, + 293, + 298 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 286, + 294, + 299 + ], + "spans": [ + { + "bbox": [ + 105, + 286, + 294, + 299 + ], + "score": 1.0, + "content": "5.1.1 PERFORMANCE ON LARGE MODELS", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 12 + }, + { + "type": "table_body", + "bbox": [ + 116, + 310, + 494, + 401 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 116, + 310, + 494, + 401 + ], + "spans": [ + { + "bbox": [ + 116, + 310, + 494, + 401 + ], + "score": 0.982, + "html": "
ModelCoLAMcc|QQPAccMNLI-m/mmAccSST-2|AccSTS-BCorrQNLI|AccRTEAccMRPCAccAvg.
BERTlarge60.691.386.6/-93.290.092.370.488.084.05
RoBERTalarge68.092.290.2/90.296.492.493.986.690.988.82
XLNetlarge69.092.390.8/90.897.092.594.985.990.889.15
ELECTRAlarge69.192.490.9/-96.992.695.088.090.889.46
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
", + "type": "table", + "image_path": "162fbf5d04563eb804ba5992027194b06424801edc8ce19891d8cd8f4a7debb3.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 116, + 310, + 494, + 340.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 116, + 340.3333333333333, + 494, + 370.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 116, + 370.66666666666663, + 494, + 400.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 185, + 409, + 422, + 421 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 184, + 408, + 424, + 423 + ], + "spans": [ + { + "bbox": [ + 184, + 408, + 424, + 423 + ], + "score": 1.0, + "content": "Table 1: Comparison results on the GLUE development set.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 106, + 431, + 505, + 497 + ], + "lines": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "spans": [ + { + "bbox": [ + 105, + 430, + 505, + 444 + ], + "score": 1.0, + "content": "We pre-train our large models following the setting of BERT (Devlin et al., 2019), except that we use", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 442, + 505, + 455 + ], + "score": 1.0, + "content": "the BPE vocabulary of Radford et al. (2019); Liu et al. (2019c). For training data, we use Wikipedia", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 505, + 466 + ], + "score": 1.0, + "content": "(English Wikipedia dump3; 12GB), BookCorpus (Zhu et al., 2015) (6GB), OPENWEBTEXT (public", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 105, + 464, + 505, + 477 + ], + "score": 1.0, + "content": "Reddit content (Gokaslan & Cohen, 2019); 38GB), and STORIES (a subset of CommonCrawl (Trinh", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 474, + 506, + 488 + ], + "spans": [ + { + "bbox": [ + 105, + 474, + 506, + 488 + ], + "score": 1.0, + "content": "& Le, 2018); 31GB). The total data size after data deduplication (Shoeybi et al., 2019) is about 78G.", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 486, + 409, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 409, + 498 + ], + "score": 1.0, + "content": "Refer to Appendix A.2 for a detailed description of the pre-training dataset.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 430, + 506, + 498 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 502, + 503, + 525 + ], + "lines": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "spans": [ + { + "bbox": [ + 106, + 502, + 505, + 515 + ], + "score": 1.0, + "content": "We use 6 DGX-2 machines (96 V100 GPUs) to train the models. A single model trained with 2K", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "spans": [ + { + "bbox": [ + 106, + 513, + 505, + 527 + ], + "score": 1.0, + "content": "batch size and 1M steps takes about 20 days. Refer to Appendix A for the detailed hyperparamters.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 23.5, + "bbox_fs": [ + 106, + 502, + 505, + 527 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 530, + 505, + 673 + ], + "lines": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "spans": [ + { + "bbox": [ + 106, + 531, + 505, + 543 + ], + "score": 1.0, + "content": "We summarize the results on eight NLU tasks of GLUE (Wang et al., 2019b) in Table 1, where", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 542, + 505, + 554 + ], + "score": 1.0, + "content": "DeBERTa is compared DeBERTa with previous Transform-based PLMs of similar structures (i.e. 24", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "spans": [ + { + "bbox": [ + 106, + 553, + 505, + 564 + ], + "score": 1.0, + "content": "layers with hidden size of 1024) including BERT, RoBERTa, XLNet, ALBERT and ELECTRA. Note", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 506, + 577 + ], + "score": 1.0, + "content": "that RoBERTa, XLNet and ELECTRA are pre-trained on 160G training data while DeBERTa is pre-", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 505, + 587 + ], + "score": 1.0, + "content": "trained on 78G training data. RoBERTa and XLNet are pre-trained for 500K steps with 8K samples", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 586, + 505, + 598 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 505, + 598 + ], + "score": 1.0, + "content": "in a step, which amounts to four billion training samples. DeBERTa is pre-trained for one million", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "spans": [ + { + "bbox": [ + 105, + 596, + 505, + 610 + ], + "score": 1.0, + "content": "steps with 2K samples in each step. This amounts to two billion training samples, approximately", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "spans": [ + { + "bbox": [ + 105, + 607, + 506, + 620 + ], + "score": 1.0, + "content": "half of either RoBERTa or XLNet. Table 1 shows that compared to BERT and RoBERTa, DeBERTa", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 104, + 618, + 506, + 632 + ], + "spans": [ + { + "bbox": [ + 104, + 618, + 506, + 632 + ], + "score": 1.0, + "content": "performs consistently better across all the tasks. Meanwhile, DeBERTa outperforms XLNet in six out", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 106, + 629, + 506, + 642 + ], + "spans": [ + { + "bbox": [ + 106, + 629, + 330, + 642 + ], + "score": 1.0, + "content": "of eight tasks. Particularly, the improvements on MRPC (", + "type": "text" + }, + { + "bbox": [ + 330, + 630, + 351, + 640 + ], + "score": 0.85, + "content": "1 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 629, + 417, + 642 + ], + "score": 1.0, + "content": "over XLNet and", + "type": "text" + }, + { + "bbox": [ + 417, + 630, + 439, + 640 + ], + "score": 0.86, + "content": "1 . 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 439, + 629, + 506, + 642 + ], + "score": 1.0, + "content": "over RoBERTa),", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 641, + 506, + 652 + ], + "spans": [ + { + "bbox": [ + 106, + 641, + 131, + 652 + ], + "score": 1.0, + "content": "RTE", + "type": "text" + }, + { + "bbox": [ + 132, + 641, + 154, + 651 + ], + "score": 0.85, + "content": "2 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 154, + 641, + 225, + 652 + ], + "score": 1.0, + "content": "over XLNet and", + "type": "text" + }, + { + "bbox": [ + 226, + 641, + 248, + 651 + ], + "score": 0.86, + "content": "1 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 641, + 367, + 652 + ], + "score": 1.0, + "content": "over RoBERTa) and CoLA (", + "type": "text" + }, + { + "bbox": [ + 367, + 641, + 389, + 651 + ], + "score": 0.86, + "content": "1 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 390, + 641, + 460, + 652 + ], + "score": 1.0, + "content": "over XLNet and", + "type": "text" + }, + { + "bbox": [ + 461, + 641, + 483, + 651 + ], + "score": 0.86, + "content": "2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 484, + 641, + 506, + 652 + ], + "score": 1.0, + "content": "over", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 105, + 650, + 506, + 664 + ], + "score": 1.0, + "content": "RoBERTa) are significant. DeBERTa also outperforms other SOTA PLMs, i.e., ELECTRAlarge and", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 663, + 287, + 676 + ], + "spans": [ + { + "bbox": [ + 106, + 663, + 149, + 675 + ], + "score": 0.65, + "content": "\\mathbf { X L N e t } _ { \\mathrm { l a r g e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 663, + 287, + 676 + ], + "score": 1.0, + "content": ", in terms of average GLUE score.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 31, + "bbox_fs": [ + 104, + 531, + 506, + 676 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 679, + 504, + 712 + ], + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 691 + ], + "score": 1.0, + "content": "Among all GLUE tasks, MNLI is most often used as an indicative task to monitor the research", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "spans": [ + { + "bbox": [ + 105, + 690, + 506, + 702 + ], + "score": 1.0, + "content": "progress of PLMs. DeBERTa significantly outperforms all existing PLMs of similar size on MNLI", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 106, + 702, + 241, + 713 + ], + "spans": [ + { + "bbox": [ + 106, + 702, + 241, + 713 + ], + "score": 1.0, + "content": "and creates a new state of the art.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 679, + 506, + 713 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 114, + 81, + 497, + 219 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 81, + 497, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 81, + 497, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 81, + 497, + 219 + ], + "score": 0.984, + "html": "
ModelMNLI-m/mm|SQuAD v1.1 SQuAD v2.0|RACE|Acc F1/EM F1/EMAccReCoRDF1/EM|SWAGNERAcc F1
BERTlarge86.6/-90.9/84.1 81.8/79.072.0186.692.8
ALBERTtarge86.5/-91.8/85.2 84.9/81.875.211-
RoBERTalarge90.2/90.294.6/88.9 89.4/86.583.290.6/90.089.993.4
XLNetlarge90.8/90.895.1/89.7 90.6/87.985.4---
Megatron336M89.7/90.094.2/88.0 88.1/84.883.0111
DeBERTalarge91.1/91.195.5/90.1 90.7/88.086.891.4/91.090.893.8
ALBERTxxlarge90.8/-94.8/89.3 90.2/87.486.51-
Megatron1.3B90.9/91.094.9/89.1 90.2/87.187.3-1-
Megatron3.9B91.4/91.495.5/90.0 91.2/88.589.5111
", + "type": "table", + "image_path": "1d2ecd7dc1b3b86dd304fab22afda258c1bbd0f17e788f90aade6c4d31e4a92b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 81, + 497, + 127.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 127.0, + 497, + 173.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 173.0, + 497, + 219.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 227, + 505, + 250 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 227, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 506, + 240 + ], + "score": 1.0, + "content": "Table 2: Results on MNLI in/out-domain, SQuAD v1.1, SQuAD v2.0, RACE, ReCoRD, SWAG,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 237, + 485, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 485, + 252 + ], + "score": 1.0, + "content": "CoNLL 2003 NER development set. Note that missing results in literature are signified by “-”.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "In addition to GLUE, DeBERTa is evaluated on three categories of NLU benchmarks: (1) Question", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "Answering: SQuAD v1.1 (Rajpurkar et al., 2016), SQuAD v2.0 (Rajpurkar et al., 2018), RACE (Lai", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "score": 1.0, + "content": "et al., 2017), ReCoRD (Zhang et al., 2018) and SWAG (Zellers et al., 2018); (2) Natural Language", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "Inference: MNLI (Williams et al., 2018); and (3) NER: CoNLL-2003. For comparison, we include", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "ALBERTxxlarge (Lan et al., 2019) 4 and Megatron (Shoeybi et al., 2019) with three different model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 272, + 334 + ], + "score": 1.0, + "content": "sizes, denoted as Megatron336M, Megatron", + "type": "text" + }, + { + "bbox": [ + 272, + 322, + 286, + 331 + ], + "score": 0.25, + "content": "\\cdot 1 . 3 \\mathrm { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "and Megatron3.9B, respectively, which are trained using", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "score": 1.0, + "content": "the same dataset as RoBERTa. Note that Megatron336M has a similar model size as other models", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 184, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 184, + 353 + ], + "score": 1.0, + "content": "mentioned above5.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "text", + "bbox": [ + 107, + 358, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "We summarize the results in Table 2. Compared to the previous SOTA PLMs with a similar model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "size (i.e., BERT, RoBERTa, XLNet, ALBERTlarge, and Megatron336M), DeBERTa shows superior", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "performance in all seven tasks. Taking the RACE benchmark as an example, DeBERTa significantly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 391, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 200, + 406 + ], + "score": 1.0, + "content": "outperforms XLNet by", + "type": "text" + }, + { + "bbox": [ + 200, + 392, + 228, + 403 + ], + "score": 0.91, + "content": "+ 1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 391, + 232, + 406 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 232, + 392, + 259, + 403 + ], + "score": 0.84, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 391, + 275, + 406 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 275, + 392, + 302, + 403 + ], + "score": 0.86, + "content": "8 5 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 391, + 388, + 406 + ], + "score": 1.0, + "content": "). Although Megatron", + "type": "text" + }, + { + "bbox": [ + 389, + 393, + 403, + 403 + ], + "score": 0.48, + "content": "1 . 3 \\mathrm { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 391, + 505, + 406 + ], + "score": 1.0, + "content": "is three times larger than", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "DeBERTa, DeBERTa outperforms it in three of the four benchmarks. We further report DeBERTa on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 414, + 262, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 262, + 426 + ], + "score": 1.0, + "content": "text generation tasks in Appendix A.4.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "title", + "bbox": [ + 108, + 443, + 286, + 454 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 288, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 288, + 456 + ], + "score": 1.0, + "content": "5.1.2 PERFORMANCE ON BASE MODELS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "Our setting for base model pre-training is similar to that for large models. The base model structure", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 281, + 487 + ], + "score": 1.0, + "content": "follows that of the BERT base model, i.e.,", + "type": "text" + }, + { + "bbox": [ + 281, + 476, + 393, + 487 + ], + "score": 0.81, + "content": "L = 1 2 , H = 7 6 8 , A = 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 475, + 505, + 487 + ], + "score": 1.0, + "content": ". We use 4 DGX-2 with 64", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 485, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 500 + ], + "score": 1.0, + "content": "V100 GPUs to train the base model. It takes 10 days to finish a single pre-training of 1M training steps", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "with batch size 2048. We train DeBERTa using the same 78G dataset, and compare it to RoBERTa", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 509, + 259, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 259, + 520 + ], + "score": 1.0, + "content": "and XLNet trained on 160G text data.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "We summarize the base model results in Table 3. Across all three tasks, DeBERTa consistently", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "outperforms RoBERTa and XLNet by a larger margin than that in large models. For example, on", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 546, + 507, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 148, + 560 + ], + "score": 1.0, + "content": "MNLI-m,", + "type": "text" + }, + { + "bbox": [ + 149, + 548, + 203, + 559 + ], + "score": 0.4, + "content": "\\mathrm { D e B E R T a _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 546, + 235, + 560 + ], + "score": 1.0, + "content": "obtains", + "type": "text" + }, + { + "bbox": [ + 236, + 548, + 264, + 559 + ], + "score": 0.9, + "content": "+ 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 546, + 268, + 560 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 269, + 548, + 296, + 559 + ], + "score": 0.84, + "content": "8 8 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 546, + 311, + 560 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 312, + 548, + 340, + 559 + ], + "score": 0.84, + "content": "8 7 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 546, + 363, + 560 + ], + "score": 1.0, + "content": ") over", + "type": "text" + }, + { + "bbox": [ + 364, + 548, + 418, + 559 + ], + "score": 0.42, + "content": "\\mathrm { R o B E R T a _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 546, + 439, + 560 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 439, + 548, + 460, + 558 + ], + "score": 0.88, + "content": "+ 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 546, + 464, + 560 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 465, + 548, + 492, + 558 + ], + "score": 0.83, + "content": "8 8 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 546, + 507, + 560 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 556, + 204, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 134, + 569 + ], + "score": 0.82, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 556, + 158, + 572 + ], + "score": 1.0, + "content": ") over", + "type": "text" + }, + { + "bbox": [ + 158, + 559, + 200, + 570 + ], + "score": 0.59, + "content": "\\mathbf { X L N e t } _ { \\mathrm { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 556, + 204, + 572 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5 + }, + { + "type": "table", + "bbox": [ + 126, + 585, + 485, + 642 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 585, + 485, + 642 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 126, + 585, + 485, + 642 + ], + "spans": [ + { + "bbox": [ + 126, + 585, + 485, + 642 + ], + "score": 0.98, + "html": "
ModelMNLI-m/mm (Acc)SQuAD v1.1 (F1/EM)SQuAD v2.0 (F1/EM)
RoBERTabase87.6/-91.5/84.683.7/80.5
XLNetbase86.8/---/80.2
DeBERTabase88.8/88.593.1/87.286.2/83.1
", + "type": "table", + "image_path": "bb6aaa7758904bc09aff2a8befb3cbcb78be3fb6d2c2f8bd68f7a3ccd234a652.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 126, + 585, + 485, + 604.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 126, + 604.0, + 485, + 623.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 126, + 623.0, + 485, + 642.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 122, + 650, + 486, + 662 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 122, + 649, + 488, + 663 + ], + "spans": [ + { + "bbox": [ + 122, + 649, + 291, + 663 + ], + "score": 1.0, + "content": "Table 3: Results on MNLI in/out-domain", + "type": "text" + }, + { + "bbox": [ + 291, + 651, + 322, + 662 + ], + "score": 0.69, + "content": "\\left( \\mathrm { m } / \\mathrm { m m } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 649, + 398, + 663 + ], + "score": 1.0, + "content": "), SQuAD v1.1 and", + "type": "text" + }, + { + "bbox": [ + 398, + 651, + 418, + 661 + ], + "score": 0.27, + "content": "\\mathrm { v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 649, + 488, + 663 + ], + "score": 1.0, + "content": "development set.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + } + ], + "index": 31.0 + } + ], + "page_idx": 6, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 106, + 690, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 688, + 506, + 704 + ], + "spans": [ + { + "bbox": [ + 118, + 688, + 506, + 704 + ], + "score": 1.0, + "content": "4The hidden dimension of ALBERTxxlarge is 4 times of DeBERTa and the computation cost is about 4 times", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 701, + 156, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 701, + 156, + 711 + ], + "score": 1.0, + "content": "of DeBERTa.", + "type": "text" + } + ] + }, + { + "bbox": [ + 119, + 708, + 505, + 725 + ], + "spans": [ + { + "bbox": [ + 119, + 711, + 135, + 721 + ], + "score": 0.49, + "content": "^ 5 \\mathrm { T } 5", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 708, + 505, + 725 + ], + "score": 1.0, + "content": "(Raffel et al., 2020) has more parameters (11B). Raffel et al. (2020) only report the test results of T5", + "type": "text" + } + ] + }, + { + "bbox": [ + 106, + 722, + 270, + 732 + ], + "spans": [ + { + "bbox": [ + 106, + 722, + 270, + 732 + ], + "score": 1.0, + "content": "which are not comparable with other models.", + "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": [ + 114, + 81, + 497, + 219 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 81, + 497, + 219 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 81, + 497, + 219 + ], + "spans": [ + { + "bbox": [ + 114, + 81, + 497, + 219 + ], + "score": 0.984, + "html": "
ModelMNLI-m/mm|SQuAD v1.1 SQuAD v2.0|RACE|Acc F1/EM F1/EMAccReCoRDF1/EM|SWAGNERAcc F1
BERTlarge86.6/-90.9/84.1 81.8/79.072.0186.692.8
ALBERTtarge86.5/-91.8/85.2 84.9/81.875.211-
RoBERTalarge90.2/90.294.6/88.9 89.4/86.583.290.6/90.089.993.4
XLNetlarge90.8/90.895.1/89.7 90.6/87.985.4---
Megatron336M89.7/90.094.2/88.0 88.1/84.883.0111
DeBERTalarge91.1/91.195.5/90.1 90.7/88.086.891.4/91.090.893.8
ALBERTxxlarge90.8/-94.8/89.3 90.2/87.486.51-
Megatron1.3B90.9/91.094.9/89.1 90.2/87.187.3-1-
Megatron3.9B91.4/91.495.5/90.0 91.2/88.589.5111
", + "type": "table", + "image_path": "1d2ecd7dc1b3b86dd304fab22afda258c1bbd0f17e788f90aade6c4d31e4a92b.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 114, + 81, + 497, + 127.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 114, + 127.0, + 497, + 173.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 114, + 173.0, + 497, + 219.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 108, + 227, + 505, + 250 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 227, + 506, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 227, + 506, + 240 + ], + "score": 1.0, + "content": "Table 2: Results on MNLI in/out-domain, SQuAD v1.1, SQuAD v2.0, RACE, ReCoRD, SWAG,", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 237, + 485, + 252 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 485, + 252 + ], + "score": 1.0, + "content": "CoNLL 2003 NER development set. Note that missing results in literature are signified by “-”.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "text", + "bbox": [ + 106, + 265, + 505, + 353 + ], + "lines": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "spans": [ + { + "bbox": [ + 105, + 264, + 506, + 278 + ], + "score": 1.0, + "content": "In addition to GLUE, DeBERTa is evaluated on three categories of NLU benchmarks: (1) Question", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 276, + 506, + 289 + ], + "score": 1.0, + "content": "Answering: SQuAD v1.1 (Rajpurkar et al., 2016), SQuAD v2.0 (Rajpurkar et al., 2018), RACE (Lai", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "spans": [ + { + "bbox": [ + 104, + 286, + 506, + 301 + ], + "score": 1.0, + "content": "et al., 2017), ReCoRD (Zhang et al., 2018) and SWAG (Zellers et al., 2018); (2) Natural Language", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "spans": [ + { + "bbox": [ + 105, + 298, + 505, + 311 + ], + "score": 1.0, + "content": "Inference: MNLI (Williams et al., 2018); and (3) NER: CoNLL-2003. For comparison, we include", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "spans": [ + { + "bbox": [ + 105, + 309, + 506, + 322 + ], + "score": 1.0, + "content": "ALBERTxxlarge (Lan et al., 2019) 4 and Megatron (Shoeybi et al., 2019) with three different model", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 272, + 334 + ], + "score": 1.0, + "content": "sizes, denoted as Megatron336M, Megatron", + "type": "text" + }, + { + "bbox": [ + 272, + 322, + 286, + 331 + ], + "score": 0.25, + "content": "\\cdot 1 . 3 \\mathrm { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 287, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "and Megatron3.9B, respectively, which are trained using", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 506, + 344 + ], + "score": 1.0, + "content": "the same dataset as RoBERTa. Note that Megatron336M has a similar model size as other models", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 342, + 184, + 353 + ], + "spans": [ + { + "bbox": [ + 105, + 342, + 184, + 353 + ], + "score": 1.0, + "content": "mentioned above5.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 104, + 264, + 506, + 353 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 358, + 505, + 425 + ], + "lines": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "spans": [ + { + "bbox": [ + 106, + 359, + 505, + 371 + ], + "score": 1.0, + "content": "We summarize the results in Table 2. Compared to the previous SOTA PLMs with a similar model", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 506, + 384 + ], + "score": 1.0, + "content": "size (i.e., BERT, RoBERTa, XLNet, ALBERTlarge, and Megatron336M), DeBERTa shows superior", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 380, + 505, + 394 + ], + "spans": [ + { + "bbox": [ + 104, + 380, + 505, + 394 + ], + "score": 1.0, + "content": "performance in all seven tasks. Taking the RACE benchmark as an example, DeBERTa significantly", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 391, + 505, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 391, + 200, + 406 + ], + "score": 1.0, + "content": "outperforms XLNet by", + "type": "text" + }, + { + "bbox": [ + 200, + 392, + 228, + 403 + ], + "score": 0.91, + "content": "+ 1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 228, + 391, + 232, + 406 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 232, + 392, + 259, + 403 + ], + "score": 0.84, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 260, + 391, + 275, + 406 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 275, + 392, + 302, + 403 + ], + "score": 0.86, + "content": "8 5 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 391, + 388, + 406 + ], + "score": 1.0, + "content": "). Although Megatron", + "type": "text" + }, + { + "bbox": [ + 389, + 393, + 403, + 403 + ], + "score": 0.48, + "content": "1 . 3 \\mathrm { B }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 391, + 505, + 406 + ], + "score": 1.0, + "content": "is three times larger than", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "spans": [ + { + "bbox": [ + 105, + 403, + 505, + 416 + ], + "score": 1.0, + "content": "DeBERTa, DeBERTa outperforms it in three of the four benchmarks. We further report DeBERTa on", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 414, + 262, + 426 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 262, + 426 + ], + "score": 1.0, + "content": "text generation tasks in Appendix A.4.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 359, + 506, + 426 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 443, + 286, + 454 + ], + "lines": [ + { + "bbox": [ + 105, + 442, + 288, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 288, + 456 + ], + "score": 1.0, + "content": "5.1.2 PERFORMANCE ON BASE MODELS", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 464, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 505, + 477 + ], + "score": 1.0, + "content": "Our setting for base model pre-training is similar to that for large models. The base model structure", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 475, + 505, + 487 + ], + "spans": [ + { + "bbox": [ + 105, + 475, + 281, + 487 + ], + "score": 1.0, + "content": "follows that of the BERT base model, i.e.,", + "type": "text" + }, + { + "bbox": [ + 281, + 476, + 393, + 487 + ], + "score": 0.81, + "content": "L = 1 2 , H = 7 6 8 , A = 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 393, + 475, + 505, + 487 + ], + "score": 1.0, + "content": ". We use 4 DGX-2 with 64", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 485, + 505, + 500 + ], + "spans": [ + { + "bbox": [ + 105, + 485, + 505, + 500 + ], + "score": 1.0, + "content": "V100 GPUs to train the base model. It takes 10 days to finish a single pre-training of 1M training steps", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 498, + 505, + 510 + ], + "score": 1.0, + "content": "with batch size 2048. We train DeBERTa using the same 78G dataset, and compare it to RoBERTa", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 509, + 259, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 259, + 520 + ], + "score": 1.0, + "content": "and XLNet trained on 160G text data.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 465, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 525, + 505, + 570 + ], + "lines": [ + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "spans": [ + { + "bbox": [ + 105, + 525, + 505, + 537 + ], + "score": 1.0, + "content": "We summarize the base model results in Table 3. Across all three tasks, DeBERTa consistently", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "spans": [ + { + "bbox": [ + 106, + 536, + 505, + 548 + ], + "score": 1.0, + "content": "outperforms RoBERTa and XLNet by a larger margin than that in large models. For example, on", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 546, + 507, + 560 + ], + "spans": [ + { + "bbox": [ + 105, + 546, + 148, + 560 + ], + "score": 1.0, + "content": "MNLI-m,", + "type": "text" + }, + { + "bbox": [ + 149, + 548, + 203, + 559 + ], + "score": 0.4, + "content": "\\mathrm { D e B E R T a _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 204, + 546, + 235, + 560 + ], + "score": 1.0, + "content": "obtains", + "type": "text" + }, + { + "bbox": [ + 236, + 548, + 264, + 559 + ], + "score": 0.9, + "content": "+ 1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 264, + 546, + 268, + 560 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 269, + 548, + 296, + 559 + ], + "score": 0.84, + "content": "8 8 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 297, + 546, + 311, + 560 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 312, + 548, + 340, + 559 + ], + "score": 0.84, + "content": "8 7 . 6 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 340, + 546, + 363, + 560 + ], + "score": 1.0, + "content": ") over", + "type": "text" + }, + { + "bbox": [ + 364, + 548, + 418, + 559 + ], + "score": 0.42, + "content": "\\mathrm { R o B E R T a _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 419, + 546, + 439, + 560 + ], + "score": 1.0, + "content": ", and", + "type": "text" + }, + { + "bbox": [ + 439, + 548, + 460, + 558 + ], + "score": 0.88, + "content": "+ 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 460, + 546, + 464, + 560 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 465, + 548, + 492, + 558 + ], + "score": 0.83, + "content": "8 8 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 546, + 507, + 560 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 106, + 556, + 204, + 572 + ], + "spans": [ + { + "bbox": [ + 106, + 559, + 134, + 569 + ], + "score": 0.82, + "content": "8 6 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 135, + 556, + 158, + 572 + ], + "score": 1.0, + "content": ") over", + "type": "text" + }, + { + "bbox": [ + 158, + 559, + 200, + 570 + ], + "score": 0.59, + "content": "\\mathbf { X L N e t } _ { \\mathrm { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 200, + 556, + 204, + 572 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 525, + 507, + 572 + ] + }, + { + "type": "table", + "bbox": [ + 126, + 585, + 485, + 642 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 126, + 585, + 485, + 642 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 126, + 585, + 485, + 642 + ], + "spans": [ + { + "bbox": [ + 126, + 585, + 485, + 642 + ], + "score": 0.98, + "html": "
ModelMNLI-m/mm (Acc)SQuAD v1.1 (F1/EM)SQuAD v2.0 (F1/EM)
RoBERTabase87.6/-91.5/84.683.7/80.5
XLNetbase86.8/---/80.2
DeBERTabase88.8/88.593.1/87.286.2/83.1
", + "type": "table", + "image_path": "bb6aaa7758904bc09aff2a8befb3cbcb78be3fb6d2c2f8bd68f7a3ccd234a652.jpg" + } + ] + } + ], + "index": 30, + "virtual_lines": [ + { + "bbox": [ + 126, + 585, + 485, + 604.0 + ], + "spans": [], + "index": 29 + }, + { + "bbox": [ + 126, + 604.0, + 485, + 623.0 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 126, + 623.0, + 485, + 642.0 + ], + "spans": [], + "index": 31 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 122, + 650, + 486, + 662 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 122, + 649, + 488, + 663 + ], + "spans": [ + { + "bbox": [ + 122, + 649, + 291, + 663 + ], + "score": 1.0, + "content": "Table 3: Results on MNLI in/out-domain", + "type": "text" + }, + { + "bbox": [ + 291, + 651, + 322, + 662 + ], + "score": 0.69, + "content": "\\left( \\mathrm { m } / \\mathrm { m m } \\right)", + "type": "inline_equation" + }, + { + "bbox": [ + 322, + 649, + 398, + 663 + ], + "score": 1.0, + "content": "), SQuAD v1.1 and", + "type": "text" + }, + { + "bbox": [ + 398, + 651, + 418, + 661 + ], + "score": 0.27, + "content": "\\mathrm { v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 418, + 649, + 488, + 663 + ], + "score": 1.0, + "content": "development set.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 32 + } + ], + "index": 31.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 210, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 212, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 212, + 95 + ], + "score": 1.0, + "content": "5.2 MODEL ANALYSIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "In this section, we first present an ablation study to quantify the relative contributions of different", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "components introduced in DeBERTa. Then, we study the convergence property to characterize the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "model training efficiency. We run experiments for analysis using the base model setting: a model is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 237, + 149 + ], + "score": 1.0, + "content": "pre-trained using the Wikipedia", + "type": "text" + }, + { + "bbox": [ + 237, + 137, + 246, + 146 + ], + "score": 0.78, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "Bookcorpus dataset for 1M steps with batch size 256 in 7 days", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "on a DGX-2 machine with 16 V-100 GPUs. Due to space limit, we visualize the different attention", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 326, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 326, + 170 + ], + "score": 1.0, + "content": "patterns of DeBERTa and RoBERTa in Appendix A.7.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 108, + 181, + 216, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 217, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 217, + 194 + ], + "score": 1.0, + "content": "5.2.1 ABLATION STUDY", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 108, + 200, + 504, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "To verify our experimental setting, we pre-train the RoBERTa base model from scratch. The re-pre-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "score": 1.0, + "content": "trained RoBERTa model is denoted as RoBERTa-ReImpbase. To investigate the relative contributions", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 223, + 374, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 374, + 235 + ], + "score": 1.0, + "content": "of different components in DeBERTa, we develop three variations:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 132, + 243, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 132, + 243, + 343, + 254 + ], + "spans": [ + { + "bbox": [ + 132, + 243, + 343, + 254 + ], + "score": 1.0, + "content": "• -EMD is the DeBERTa base model without EMD.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 131, + 257, + 482, + 270 + ], + "spans": [ + { + "bbox": [ + 131, + 257, + 482, + 270 + ], + "score": 1.0, + "content": "• -C2P is the DeBERTa base model without the content-to-position term ((c) in Eq. 4).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 132, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "• -P2C is the DeBERTa base model without the position-to-content term ((b) in Eq. 4). As", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 283, + 476, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 283, + 476, + 296 + ], + "score": 1.0, + "content": "XLNet also uses the relative position bias, this model is close to XLNet plus EMD.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5 + }, + { + "type": "table", + "bbox": [ + 122, + 309, + 489, + 454 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 122, + 309, + 489, + 454 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 309, + 489, + 454 + ], + "spans": [ + { + "bbox": [ + 122, + 309, + 489, + 454 + ], + "score": 0.984, + "html": "
ModelMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EMRACE Acc
BERTbase Devlin et al. (2019) RoBERTabase Liu et al. (2019c)84.3/84.7 84.7/-88.5/81.0 90.6/-76.3/73.7 79.7/-65.0 65.6
XLNetbase Yang et al. (2019) RoBERTa-ReImpbase85.8/85.4 84.9/85.1-/- 91.1/84.881.3/78.5 79.5/76.066.7 66.8
DeBERTabase86.3/86.2 86.1/86.192.1/86.182.5/79.371.7
-EMD -C2P85.9/85.791.8/85.8 91.6/85.881.3/78.0 81.3/78.370.3 69.3
-P2C86.0/85.891.7/85.780.8/77.669.6
-(EMD+C2P)85.8/85.991.5/85.380.3/77.268.1
-(EMD+P2C)85.8/85.891.3/85.180.2/77.168.5
", + "type": "table", + "image_path": "6a63e6083c2b3488ae04801108159c0f0416bdbaa5ad76734580966028276a02.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 122, + 309, + 489, + 357.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 122, + 357.3333333333333, + 489, + 405.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 122, + 405.66666666666663, + 489, + 453.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 198, + 462, + 412, + 474 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 198, + 462, + 413, + 475 + ], + "spans": [ + { + "bbox": [ + 198, + 462, + 413, + 475 + ], + "score": 1.0, + "content": "Table 4: Ablation study of the DeBERTa base model.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + } + ], + "index": 17.0 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 506, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "Table 4 summarizes the results on four benchmark datasets. First, RoBERTa-ReImp performs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "similarly to RoBERTa across all benchmark datasets, verfiying that our setting is reasonable. Second,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 506, + 520 + ], + "score": 1.0, + "content": "we see that removing any one component in DeBERTa results in a sheer performance drop. For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 329, + 531 + ], + "score": 1.0, + "content": "instance, removing EMD (-EMD) results in a loss of", + "type": "text" + }, + { + "bbox": [ + 329, + 519, + 352, + 529 + ], + "score": 0.85, + "content": "1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 519, + 385, + 530 + ], + "score": 0.81, + "content": "7 1 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 519, + 403, + 531 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 403, + 519, + 432, + 529 + ], + "score": 0.84, + "content": "7 0 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 519, + 482, + 531 + ], + "score": 1.0, + "content": ") on RACE,", + "type": "text" + }, + { + "bbox": [ + 482, + 519, + 505, + 529 + ], + "score": 0.86, + "content": "0 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 529, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 107, + 530, + 137, + 541 + ], + "score": 0.83, + "content": "( 9 2 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 529, + 154, + 543 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 154, + 530, + 183, + 541 + ], + "score": 0.83, + "content": "9 1 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 529, + 259, + 543 + ], + "score": 1.0, + "content": ") on SQuAD v1.1,", + "type": "text" + }, + { + "bbox": [ + 259, + 530, + 282, + 541 + ], + "score": 0.88, + "content": "1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 529, + 286, + 543 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 286, + 530, + 314, + 541 + ], + "score": 0.84, + "content": "8 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 529, + 331, + 543 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 331, + 531, + 360, + 541 + ], + "score": 0.84, + "content": "8 1 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 529, + 377, + 543 + ], + "score": 1.0, + "content": ") on", + "type": "text" + }, + { + "bbox": [ + 377, + 531, + 432, + 541 + ], + "score": 0.45, + "content": "\\mathrm { S Q u A D ~ v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 529, + 435, + 543 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 436, + 530, + 459, + 541 + ], + "score": 0.84, + "content": "0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 529, + 464, + 543 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 464, + 530, + 491, + 541 + ], + "score": 0.83, + "content": "8 6 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 529, + 507, + 543 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 137, + 552 + ], + "score": 0.83, + "content": "8 6 . 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 540, + 156, + 554 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 157, + 541, + 180, + 552 + ], + "score": 0.87, + "content": "0 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 540, + 184, + 554 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 185, + 541, + 213, + 552 + ], + "score": 0.85, + "content": "8 6 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 540, + 231, + 554 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 231, + 541, + 259, + 552 + ], + "score": 0.85, + "content": "8 6 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 540, + 306, + 554 + ], + "score": 1.0, + "content": ") on MNLI-", + "type": "text" + }, + { + "bbox": [ + 307, + 542, + 334, + 551 + ], + "score": 0.6, + "content": "\\cdot \\mathrm { m } / \\mathrm { m m }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 540, + 506, + 554 + ], + "score": 1.0, + "content": ", respectively. Similarly, removing either", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "content-to-position or position-to-content leads to inferior performance in all the benchmarks. As", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 563, + 467, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 467, + 576 + ], + "score": 1.0, + "content": "expected, removing two components results in even more substantial loss in performance.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5 + }, + { + "type": "title", + "bbox": [ + 108, + 587, + 302, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 303, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 303, + 600 + ], + "score": 1.0, + "content": "5.3 SCALE UP TO 1.5 BILLION PARAMETERS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 619 + ], + "score": 1.0, + "content": "Larger pre-trained models have shown better generalization results (Raffel et al., 2020; Brown et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "2020; Shoeybi et al., 2019). Thus, we have built a larger version of DeBERTa with 1.5 billion", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 200, + 643 + ], + "score": 1.0, + "content": "parameters, denoted as", + "type": "text" + }, + { + "bbox": [ + 201, + 630, + 259, + 641 + ], + "score": 0.63, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 630, + 505, + 643 + ], + "score": 1.0, + "content": ". The model consists of 48 layers with a hidden size of 1,536", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 256, + 654 + ], + "score": 1.0, + "content": "and 24 attention heads 6. DeBERTa", + "type": "text" + }, + { + "bbox": [ + 257, + 642, + 274, + 653 + ], + "score": 0.46, + "content": "_ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "is trained on a pre-training dataset amounting to 160G,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "similar to that in Liu et al. (2019c), with a new vocabulary of size 128K constructed using the dataset.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30 + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 139, + 681 + ], + "score": 1.0, + "content": "To train", + "type": "text" + }, + { + "bbox": [ + 139, + 669, + 197, + 680 + ], + "score": 0.71, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 669, + 505, + 681 + ], + "score": 1.0, + "content": ", we optimize the model architecture as follows. First, we share the projection", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 271, + 694 + ], + "score": 1.0, + "content": "matrices of relative position embedding", + "type": "text" + }, + { + "bbox": [ + 272, + 680, + 317, + 693 + ], + "score": 0.93, + "content": "W _ { k , r } , W _ { q , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 680, + 340, + 694 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 340, + 680, + 386, + 693 + ], + "score": 0.91, + "content": "W _ { k , c } , W _ { q , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 680, + 506, + 694 + ], + "score": 1.0, + "content": ", respectively, in all attention", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 691, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 703 + ], + "score": 1.0, + "content": "layers to reduce the number of model parameters. Our ablation study in Table 13 on base models", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 701, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 507, + 715 + ], + "score": 1.0, + "content": "shows that the projection matrix sharing reduces the model size while retaining the model performance.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5 + } + ], + "page_idx": 7, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 119, + 721, + 327, + 732 + ], + "lines": [ + { + "bbox": [ + 119, + 719, + 329, + 734 + ], + "spans": [ + { + "bbox": [ + 119, + 719, + 329, + 734 + ], + "score": 1.0, + "content": "6See Table 8 in Appendix for the model hyperparameters.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 752, + 308, + 760 + ], + "lines": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "spans": [ + { + "bbox": [ + 301, + 750, + 310, + 762 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 12, + "width": 9 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 210, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 81, + 212, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 81, + 212, + 95 + ], + "score": 1.0, + "content": "5.2 MODEL ANALYSIS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 102, + 505, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "spans": [ + { + "bbox": [ + 106, + 103, + 505, + 115 + ], + "score": 1.0, + "content": "In this section, we first present an ablation study to quantify the relative contributions of different", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 114, + 505, + 127 + ], + "score": 1.0, + "content": "components introduced in DeBERTa. Then, we study the convergence property to characterize the", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "spans": [ + { + "bbox": [ + 105, + 125, + 505, + 138 + ], + "score": 1.0, + "content": "model training efficiency. We run experiments for analysis using the base model setting: a model is", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 135, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 105, + 135, + 237, + 149 + ], + "score": 1.0, + "content": "pre-trained using the Wikipedia", + "type": "text" + }, + { + "bbox": [ + 237, + 137, + 246, + 146 + ], + "score": 0.78, + "content": "^ +", + "type": "inline_equation" + }, + { + "bbox": [ + 246, + 135, + 505, + 149 + ], + "score": 1.0, + "content": "Bookcorpus dataset for 1M steps with batch size 256 in 7 days", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "spans": [ + { + "bbox": [ + 105, + 147, + 505, + 160 + ], + "score": 1.0, + "content": "on a DGX-2 machine with 16 V-100 GPUs. Due to space limit, we visualize the different attention", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 158, + 326, + 170 + ], + "spans": [ + { + "bbox": [ + 105, + 158, + 326, + 170 + ], + "score": 1.0, + "content": "patterns of DeBERTa and RoBERTa in Appendix A.7.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 103, + 505, + 170 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 181, + 216, + 192 + ], + "lines": [ + { + "bbox": [ + 106, + 181, + 217, + 194 + ], + "spans": [ + { + "bbox": [ + 106, + 181, + 217, + 194 + ], + "score": 1.0, + "content": "5.2.1 ABLATION STUDY", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 108, + 200, + 504, + 234 + ], + "lines": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "spans": [ + { + "bbox": [ + 106, + 200, + 505, + 213 + ], + "score": 1.0, + "content": "To verify our experimental setting, we pre-train the RoBERTa base model from scratch. The re-pre-", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "spans": [ + { + "bbox": [ + 105, + 210, + 505, + 225 + ], + "score": 1.0, + "content": "trained RoBERTa model is denoted as RoBERTa-ReImpbase. To investigate the relative contributions", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 223, + 374, + 235 + ], + "spans": [ + { + "bbox": [ + 106, + 223, + 374, + 235 + ], + "score": 1.0, + "content": "of different components in DeBERTa, we develop three variations:", + "type": "text" + } + ], + "index": 10 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 200, + 505, + 235 + ] + }, + { + "type": "text", + "bbox": [ + 132, + 243, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 132, + 243, + 343, + 254 + ], + "spans": [ + { + "bbox": [ + 132, + 243, + 343, + 254 + ], + "score": 1.0, + "content": "• -EMD is the DeBERTa base model without EMD.", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 131, + 257, + 482, + 270 + ], + "spans": [ + { + "bbox": [ + 131, + 257, + 482, + 270 + ], + "score": 1.0, + "content": "• -C2P is the DeBERTa base model without the content-to-position term ((c) in Eq. 4).", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 132, + 271, + 505, + 285 + ], + "spans": [ + { + "bbox": [ + 132, + 271, + 505, + 285 + ], + "score": 1.0, + "content": "• -P2C is the DeBERTa base model without the position-to-content term ((b) in Eq. 4). As", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 141, + 283, + 476, + 296 + ], + "spans": [ + { + "bbox": [ + 141, + 283, + 476, + 296 + ], + "score": 1.0, + "content": "XLNet also uses the relative position bias, this model is close to XLNet plus EMD.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 12.5, + "bbox_fs": [ + 131, + 243, + 505, + 296 + ] + }, + { + "type": "table", + "bbox": [ + 122, + 309, + 489, + 454 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 122, + 309, + 489, + 454 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 122, + 309, + 489, + 454 + ], + "spans": [ + { + "bbox": [ + 122, + 309, + 489, + 454 + ], + "score": 0.984, + "html": "
ModelMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EMRACE Acc
BERTbase Devlin et al. (2019) RoBERTabase Liu et al. (2019c)84.3/84.7 84.7/-88.5/81.0 90.6/-76.3/73.7 79.7/-65.0 65.6
XLNetbase Yang et al. (2019) RoBERTa-ReImpbase85.8/85.4 84.9/85.1-/- 91.1/84.881.3/78.5 79.5/76.066.7 66.8
DeBERTabase86.3/86.2 86.1/86.192.1/86.182.5/79.371.7
-EMD -C2P85.9/85.791.8/85.8 91.6/85.881.3/78.0 81.3/78.370.3 69.3
-P2C86.0/85.891.7/85.780.8/77.669.6
-(EMD+C2P)85.8/85.991.5/85.380.3/77.268.1
-(EMD+P2C)85.8/85.891.3/85.180.2/77.168.5
", + "type": "table", + "image_path": "6a63e6083c2b3488ae04801108159c0f0416bdbaa5ad76734580966028276a02.jpg" + } + ] + } + ], + "index": 16, + "virtual_lines": [ + { + "bbox": [ + 122, + 309, + 489, + 357.3333333333333 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 122, + 357.3333333333333, + 489, + 405.66666666666663 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 122, + 405.66666666666663, + 489, + 453.99999999999994 + ], + "spans": [], + "index": 17 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 198, + 462, + 412, + 474 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 198, + 462, + 413, + 475 + ], + "spans": [ + { + "bbox": [ + 198, + 462, + 413, + 475 + ], + "score": 1.0, + "content": "Table 4: Ablation study of the DeBERTa base model.", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 18 + } + ], + "index": 17.0 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 506, + 574 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 505, + 498 + ], + "score": 1.0, + "content": "Table 4 summarizes the results on four benchmark datasets. First, RoBERTa-ReImp performs", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "spans": [ + { + "bbox": [ + 106, + 497, + 506, + 509 + ], + "score": 1.0, + "content": "similarly to RoBERTa across all benchmark datasets, verfiying that our setting is reasonable. Second,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 508, + 506, + 520 + ], + "score": 1.0, + "content": "we see that removing any one component in DeBERTa results in a sheer performance drop. For", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 519, + 505, + 531 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 329, + 531 + ], + "score": 1.0, + "content": "instance, removing EMD (-EMD) results in a loss of", + "type": "text" + }, + { + "bbox": [ + 329, + 519, + 352, + 529 + ], + "score": 0.85, + "content": "1 . 4 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 357, + 519, + 385, + 530 + ], + "score": 0.81, + "content": "7 1 . 7 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 385, + 519, + 403, + 531 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 403, + 519, + 432, + 529 + ], + "score": 0.84, + "content": "7 0 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 519, + 482, + 531 + ], + "score": 1.0, + "content": ") on RACE,", + "type": "text" + }, + { + "bbox": [ + 482, + 519, + 505, + 529 + ], + "score": 0.86, + "content": "0 . 3 \\%", + "type": "inline_equation" + } + ], + "index": 22 + }, + { + "bbox": [ + 107, + 529, + 507, + 543 + ], + "spans": [ + { + "bbox": [ + 107, + 530, + 137, + 541 + ], + "score": 0.83, + "content": "( 9 2 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 529, + 154, + 543 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 154, + 530, + 183, + 541 + ], + "score": 0.83, + "content": "9 1 . 8 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 183, + 529, + 259, + 543 + ], + "score": 1.0, + "content": ") on SQuAD v1.1,", + "type": "text" + }, + { + "bbox": [ + 259, + 530, + 282, + 541 + ], + "score": 0.88, + "content": "1 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 282, + 529, + 286, + 543 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 286, + 530, + 314, + 541 + ], + "score": 0.84, + "content": "8 2 . 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 315, + 529, + 331, + 543 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 331, + 531, + 360, + 541 + ], + "score": 0.84, + "content": "8 1 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 360, + 529, + 377, + 543 + ], + "score": 1.0, + "content": ") on", + "type": "text" + }, + { + "bbox": [ + 377, + 531, + 432, + 541 + ], + "score": 0.45, + "content": "\\mathrm { S Q u A D ~ v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 432, + 529, + 435, + 543 + ], + "score": 1.0, + "content": ",", + "type": "text" + }, + { + "bbox": [ + 436, + 530, + 459, + 541 + ], + "score": 0.84, + "content": "0 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 459, + 529, + 464, + 543 + ], + "score": 1.0, + "content": "(", + "type": "text" + }, + { + "bbox": [ + 464, + 530, + 491, + 541 + ], + "score": 0.83, + "content": "8 6 . 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 492, + 529, + 507, + 543 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 540, + 506, + 554 + ], + "spans": [ + { + "bbox": [ + 106, + 541, + 137, + 552 + ], + "score": 0.83, + "content": "8 6 . 1 \\% )", + "type": "inline_equation" + }, + { + "bbox": [ + 137, + 540, + 156, + 554 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 157, + 541, + 180, + 552 + ], + "score": 0.87, + "content": "0 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 540, + 184, + 554 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 185, + 541, + 213, + 552 + ], + "score": 0.85, + "content": "8 6 . 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 213, + 540, + 231, + 554 + ], + "score": 1.0, + "content": "vs.", + "type": "text" + }, + { + "bbox": [ + 231, + 541, + 259, + 552 + ], + "score": 0.85, + "content": "8 6 . 1 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 540, + 306, + 554 + ], + "score": 1.0, + "content": ") on MNLI-", + "type": "text" + }, + { + "bbox": [ + 307, + 542, + 334, + 551 + ], + "score": 0.6, + "content": "\\cdot \\mathrm { m } / \\mathrm { m m }", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 540, + 506, + 554 + ], + "score": 1.0, + "content": ", respectively. Similarly, removing either", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "spans": [ + { + "bbox": [ + 105, + 552, + 506, + 565 + ], + "score": 1.0, + "content": "content-to-position or position-to-content leads to inferior performance in all the benchmarks. As", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 563, + 467, + 576 + ], + "spans": [ + { + "bbox": [ + 105, + 563, + 467, + 576 + ], + "score": 1.0, + "content": "expected, removing two components results in even more substantial loss in performance.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 486, + 507, + 576 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 587, + 302, + 599 + ], + "lines": [ + { + "bbox": [ + 106, + 587, + 303, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 303, + 600 + ], + "score": 1.0, + "content": "5.3 SCALE UP TO 1.5 BILLION PARAMETERS", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 608, + 505, + 663 + ], + "lines": [ + { + "bbox": [ + 106, + 609, + 505, + 619 + ], + "spans": [ + { + "bbox": [ + 106, + 609, + 505, + 619 + ], + "score": 1.0, + "content": "Larger pre-trained models have shown better generalization results (Raffel et al., 2020; Brown et al.,", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "spans": [ + { + "bbox": [ + 106, + 618, + 505, + 630 + ], + "score": 1.0, + "content": "2020; Shoeybi et al., 2019). Thus, we have built a larger version of DeBERTa with 1.5 billion", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 630, + 505, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 200, + 643 + ], + "score": 1.0, + "content": "parameters, denoted as", + "type": "text" + }, + { + "bbox": [ + 201, + 630, + 259, + 641 + ], + "score": 0.63, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 259, + 630, + 505, + 643 + ], + "score": 1.0, + "content": ". The model consists of 48 layers with a hidden size of 1,536", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 640, + 506, + 654 + ], + "spans": [ + { + "bbox": [ + 105, + 640, + 256, + 654 + ], + "score": 1.0, + "content": "and 24 attention heads 6. DeBERTa", + "type": "text" + }, + { + "bbox": [ + 257, + 642, + 274, + 653 + ], + "score": 0.46, + "content": "_ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 274, + 640, + 506, + 654 + ], + "score": 1.0, + "content": "is trained on a pre-training dataset amounting to 160G,", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "spans": [ + { + "bbox": [ + 106, + 651, + 506, + 664 + ], + "score": 1.0, + "content": "similar to that in Liu et al. (2019c), with a new vocabulary of size 128K constructed using the dataset.", + "type": "text" + } + ], + "index": 32 + } + ], + "index": 30, + "bbox_fs": [ + 105, + 609, + 506, + 664 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 669, + 505, + 713 + ], + "lines": [ + { + "bbox": [ + 106, + 669, + 505, + 681 + ], + "spans": [ + { + "bbox": [ + 106, + 669, + 139, + 681 + ], + "score": 1.0, + "content": "To train", + "type": "text" + }, + { + "bbox": [ + 139, + 669, + 197, + 680 + ], + "score": 0.71, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 669, + 505, + 681 + ], + "score": 1.0, + "content": ", we optimize the model architecture as follows. First, we share the projection", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 680, + 506, + 694 + ], + "spans": [ + { + "bbox": [ + 105, + 680, + 271, + 694 + ], + "score": 1.0, + "content": "matrices of relative position embedding", + "type": "text" + }, + { + "bbox": [ + 272, + 680, + 317, + 693 + ], + "score": 0.93, + "content": "W _ { k , r } , W _ { q , r }", + "type": "inline_equation" + }, + { + "bbox": [ + 317, + 680, + 340, + 694 + ], + "score": 1.0, + "content": "with", + "type": "text" + }, + { + "bbox": [ + 340, + 680, + 386, + 693 + ], + "score": 0.91, + "content": "W _ { k , c } , W _ { q , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 386, + 680, + 506, + 694 + ], + "score": 1.0, + "content": ", respectively, in all attention", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 106, + 691, + 505, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 691, + 505, + 703 + ], + "score": 1.0, + "content": "layers to reduce the number of model parameters. Our ablation study in Table 13 on base models", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 701, + 507, + 715 + ], + "spans": [ + { + "bbox": [ + 105, + 701, + 507, + 715 + ], + "score": 1.0, + "content": "shows that the projection matrix sharing reduces the model size while retaining the model performance.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 34.5, + "bbox_fs": [ + 105, + 669, + 507, + 715 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Second, a convolution layer is added aside the first Transformer layer to induce n-gram knowledge of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 507, + 106 + ], + "score": 1.0, + "content": "sub-word encodings and their outputs are summed up before feeding to the next Transformer layer 7.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Table 5 reports the test results of SuperGLUE (Wang et al., 2019a) which is one of the most popular", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "score": 1.0, + "content": "NLU benchmarks. SuperGLUE consists of a wide of NLU tasks, including Question Answering", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "(Clark et al., 2019; Khashabi et al., 2018; Zhang et al., 2018), Natural Language Inference (Dagan", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 156 + ], + "score": 1.0, + "content": "et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009), Word Sense", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "Disambiguation (Pilehvar & Camacho-Collados, 2019), and Reasoning (Levesque et al., 2011;", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "Roemmele et al., 2011). Since its release in 2019, top research teams around the world have been", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 500, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 500, + 189 + ], + "score": 1.0, + "content": "developing large-scale PLMs that have driven striking performance improvement on SuperGLUE.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 192, + 505, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "spans": [ + { + "bbox": [ + 105, + 192, + 505, + 206 + ], + "score": 1.0, + "content": "The significant performance boost due to scaling DeBERTa to a larger model makes the single", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 203, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 507, + 217 + ], + "score": 1.0, + "content": "DeBERTa1.5B surpass the human performance on SuperGLUE for the first time in terms of macro-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "average score (89.9 versus 89.8) as of December 29, 2020, and the ensemble DeBERTa model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 226, + 507, + 240 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 190, + 237 + ], + "score": 0.59, + "content": "( \\mathrm { D e B E R T a } _ { E n s e m b l e } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 226, + 507, + 240 + ], + "score": 1.0, + "content": "sits atop the SuperGLUE benchmark rankings as of January 6, 2021, outper-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "forming the human baseline by a decent margin (90.3 versus 89.8). Compared to T5, which consists", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "of 11 billion parameters, the 1.5-billion-parameter DeBERTa is much more energy efficient to train", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 428, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 428, + 272 + ], + "score": 1.0, + "content": "and maintain, and it is easier to compress and deploy to apps of various settings.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12 + }, + { + "type": "table", + "bbox": [ + 106, + 279, + 505, + 397 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 279, + 505, + 397 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 397 + ], + "score": 0.982, + "html": "
ModelBoolQAccCBF1/Acc|COPA|AccMultiRCF1a/EMReCoRDF1/EMRTEAccWiCAccAccWSC|AverageScore
RoBERTalarge87.1[90.5/95.290.684.4/52.590.6/90.088.269.989.084.6
NEXHA-Plus87.894.4/96.093.684.6/55.190.1/89.689.174.693.286.7
T511B91.293.9/96.894.888.1/63.394.1/93.492.576.993.889.3
T511B+Meena91.395.8/97.697.488.3/63.094.2/93.592.777.995.990.2
Human89.095.8/98.9100.081.8/51.991.7/91.393.680.0100.089.8
DeBERTa1.5B+SiFTDeBERTaEnsemble90.490.494.9/97.295.7/97.696.898.488.2/63.788.2/63.794.5/94.194.5/94.193.293.276.495.995.989.990.3
77.5
", + "type": "table", + "image_path": "4d73de04653c441ab9831ab76d3e27f2b8f4a6818f3d2eb13e49db34f1051d39.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 106, + 279, + 505, + 318.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 318.3333333333333, + 505, + 357.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 357.66666666666663, + 505, + 396.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 405, + 504, + 428 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "Table 5: SuperGLUE test set results scored using the SuperGLUE evaluation server. All the results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 396, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 396, + 429 + ], + "score": 1.0, + "content": "are obtained from https://super.gluebenchmark.com on January 6, 2021.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 18.25 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 201, + 461 + ], + "lines": [ + { + "bbox": [ + 104, + 446, + 203, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 446, + 203, + 464 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "This paper presents a new model architecture DeBERTa (Decoding-enhanced BERT with disentangled", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "score": 1.0, + "content": "attention) that improves the BERT and RoBERTa models using two novel techniques. The first is the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "disentangled attention mechanism, where each word is represented using two vectors that encode", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "its content and position, respectively, and the attention weights among words are computed using", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "disentangled matrices on their contents and relative positions, respectively. The second is an enhanced", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "mask decoder which incorporates absolute positions in the decoding layer to predict the masked", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "tokens in model pre-training. In addition, a new virtual adversarial training method is used for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 550, + 380, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 380, + 562 + ], + "score": 1.0, + "content": "fine-tuning to improve model’s generalization on downstream tasks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "We show through a comprehensive empirical study that these techniques significantly improve the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "efficiency of model pre-training and the performance of downstream tasks. The DeBERTa model", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "with 1.5 billion parameters surpasses the human performance on the SuperGLUE benchmark for the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 278, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 278, + 613 + ], + "score": 1.0, + "content": "first time in terms of macro-average score.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5 + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "DeBERTa surpassing human performance on SuperGLUE marks an important milestone toward", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "score": 1.0, + "content": "general AI. Despite its promising results on SuperGLUE, the model is by no means reaching the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "human-level intelligence of NLU. Humans are extremely good at leveraging the knowledge learned", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "score": 1.0, + "content": "from different tasks to solve a new task with no or little task-specific demonstration. This is referred", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "to as compositional generalization, the ability to generalize to novel compositions (new tasks) of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 505, + 685 + ], + "score": 1.0, + "content": "familiar constituents (subtasks or basic problem-solving skills). Moving forward, it is worth exploring", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "how to make DeBERTa incorporate compositional structures in a more explicit manner, which could", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 693, + 502, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 502, + 707 + ], + "score": 1.0, + "content": "allow combining neural and symbolic computation of natural language similar to what humans do.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5 + } + ], + "page_idx": 8, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 711, + 505, + 731 + ], + "lines": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "spans": [ + { + "bbox": [ + 118, + 709, + 506, + 724 + ], + "score": 1.0, + "content": "7Please refer to Table 12 in Appendix A.6 for the ablation study of different model sizes, and Table 13 in", + "type": "text" + } + ] + }, + { + "bbox": [ + 105, + 721, + 318, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 318, + 733 + ], + "score": 1.0, + "content": "Appendix A.6 for the ablation study of new modifications.", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 302, + 751, + 308, + 759 + ], + "lines": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "spans": [ + { + "bbox": [ + 302, + 751, + 309, + 762 + ], + "score": 1.0, + "content": "9", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Second, a convolution layer is added aside the first Transformer layer to induce n-gram knowledge of", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 105, + 92, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 105, + 92, + 507, + 106 + ], + "score": 1.0, + "content": "sub-word encodings and their outputs are summed up before feeding to the next Transformer layer 7.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 105, + 82, + 507, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 110, + 505, + 187 + ], + "lines": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "spans": [ + { + "bbox": [ + 105, + 110, + 506, + 123 + ], + "score": 1.0, + "content": "Table 5 reports the test results of SuperGLUE (Wang et al., 2019a) which is one of the most popular", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 120, + 505, + 135 + ], + "score": 1.0, + "content": "NLU benchmarks. SuperGLUE consists of a wide of NLU tasks, including Question Answering", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 104, + 131, + 505, + 146 + ], + "spans": [ + { + "bbox": [ + 104, + 131, + 505, + 146 + ], + "score": 1.0, + "content": "(Clark et al., 2019; Khashabi et al., 2018; Zhang et al., 2018), Natural Language Inference (Dagan", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 105, + 144, + 506, + 156 + ], + "spans": [ + { + "bbox": [ + 105, + 144, + 506, + 156 + ], + "score": 1.0, + "content": "et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009), Word Sense", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 506, + 167 + ], + "score": 1.0, + "content": "Disambiguation (Pilehvar & Camacho-Collados, 2019), and Reasoning (Levesque et al., 2011;", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 178 + ], + "score": 1.0, + "content": "Roemmele et al., 2011). Since its release in 2019, top research teams around the world have been", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 106, + 176, + 500, + 189 + ], + "spans": [ + { + "bbox": [ + 106, + 176, + 500, + 189 + ], + "score": 1.0, + "content": "developing large-scale PLMs that have driven striking performance improvement on SuperGLUE.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 5, + "bbox_fs": [ + 104, + 110, + 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": "The significant performance boost due to scaling DeBERTa to a larger model makes the single", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 203, + 507, + 217 + ], + "spans": [ + { + "bbox": [ + 105, + 203, + 507, + 217 + ], + "score": 1.0, + "content": "DeBERTa1.5B surpass the human performance on SuperGLUE for the first time in terms of macro-", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 215, + 506, + 227 + ], + "score": 1.0, + "content": "average score (89.9 versus 89.8) as of December 29, 2020, and the ensemble DeBERTa model", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 107, + 226, + 507, + 240 + ], + "spans": [ + { + "bbox": [ + 107, + 226, + 190, + 237 + ], + "score": 0.59, + "content": "( \\mathrm { D e B E R T a } _ { E n s e m b l e } )", + "type": "inline_equation" + }, + { + "bbox": [ + 190, + 226, + 507, + 240 + ], + "score": 1.0, + "content": "sits atop the SuperGLUE benchmark rankings as of January 6, 2021, outper-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "spans": [ + { + "bbox": [ + 106, + 237, + 505, + 249 + ], + "score": 1.0, + "content": "forming the human baseline by a decent margin (90.3 versus 89.8). Compared to T5, which consists", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "spans": [ + { + "bbox": [ + 106, + 248, + 505, + 261 + ], + "score": 1.0, + "content": "of 11 billion parameters, the 1.5-billion-parameter DeBERTa is much more energy efficient to train", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 258, + 428, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 428, + 272 + ], + "score": 1.0, + "content": "and maintain, and it is easier to compress and deploy to apps of various settings.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 12, + "bbox_fs": [ + 105, + 192, + 507, + 272 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 279, + 505, + 397 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 279, + 505, + 397 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 279, + 505, + 397 + ], + "spans": [ + { + "bbox": [ + 106, + 279, + 505, + 397 + ], + "score": 0.982, + "html": "
ModelBoolQAccCBF1/Acc|COPA|AccMultiRCF1a/EMReCoRDF1/EMRTEAccWiCAccAccWSC|AverageScore
RoBERTalarge87.1[90.5/95.290.684.4/52.590.6/90.088.269.989.084.6
NEXHA-Plus87.894.4/96.093.684.6/55.190.1/89.689.174.693.286.7
T511B91.293.9/96.894.888.1/63.394.1/93.492.576.993.889.3
T511B+Meena91.395.8/97.697.488.3/63.094.2/93.592.777.995.990.2
Human89.095.8/98.9100.081.8/51.991.7/91.393.680.0100.089.8
DeBERTa1.5B+SiFTDeBERTaEnsemble90.490.494.9/97.295.7/97.696.898.488.2/63.788.2/63.794.5/94.194.5/94.193.293.276.495.995.989.990.3
77.5
", + "type": "table", + "image_path": "4d73de04653c441ab9831ab76d3e27f2b8f4a6818f3d2eb13e49db34f1051d39.jpg" + } + ] + } + ], + "index": 17, + "virtual_lines": [ + { + "bbox": [ + 106, + 279, + 505, + 318.3333333333333 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 106, + 318.3333333333333, + 505, + 357.66666666666663 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 106, + 357.66666666666663, + 505, + 396.99999999999994 + ], + "spans": [], + "index": 18 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 405, + 504, + 428 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "spans": [ + { + "bbox": [ + 106, + 405, + 505, + 418 + ], + "score": 1.0, + "content": "Table 5: SuperGLUE test set results scored using the SuperGLUE evaluation server. All the results", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 416, + 396, + 429 + ], + "spans": [ + { + "bbox": [ + 105, + 416, + 396, + 429 + ], + "score": 1.0, + "content": "are obtained from https://super.gluebenchmark.com on January 6, 2021.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + } + ], + "index": 18.25 + }, + { + "type": "title", + "bbox": [ + 108, + 448, + 201, + 461 + ], + "lines": [ + { + "bbox": [ + 104, + 446, + 203, + 464 + ], + "spans": [ + { + "bbox": [ + 104, + 446, + 203, + 464 + ], + "score": 1.0, + "content": "6 CONCLUSIONS", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 107, + 473, + 505, + 561 + ], + "lines": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "spans": [ + { + "bbox": [ + 106, + 473, + 505, + 485 + ], + "score": 1.0, + "content": "This paper presents a new model architecture DeBERTa (Decoding-enhanced BERT with disentangled", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "spans": [ + { + "bbox": [ + 106, + 485, + 505, + 496 + ], + "score": 1.0, + "content": "attention) that improves the BERT and RoBERTa models using two novel techniques. The first is the", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "spans": [ + { + "bbox": [ + 106, + 495, + 505, + 507 + ], + "score": 1.0, + "content": "disentangled attention mechanism, where each word is represented using two vectors that encode", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "spans": [ + { + "bbox": [ + 105, + 505, + 505, + 520 + ], + "score": 1.0, + "content": "its content and position, respectively, and the attention weights among words are computed using", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 517, + 505, + 529 + ], + "score": 1.0, + "content": "disentangled matrices on their contents and relative positions, respectively. The second is an enhanced", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 540 + ], + "score": 1.0, + "content": "mask decoder which incorporates absolute positions in the decoding layer to predict the masked", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 539, + 505, + 551 + ], + "score": 1.0, + "content": "tokens in model pre-training. In addition, a new virtual adversarial training method is used for", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 550, + 380, + 562 + ], + "spans": [ + { + "bbox": [ + 106, + 550, + 380, + 562 + ], + "score": 1.0, + "content": "fine-tuning to improve model’s generalization on downstream tasks.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 473, + 505, + 562 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 567, + 505, + 611 + ], + "lines": [ + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "spans": [ + { + "bbox": [ + 105, + 567, + 505, + 579 + ], + "score": 1.0, + "content": "We show through a comprehensive empirical study that these techniques significantly improve the", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "spans": [ + { + "bbox": [ + 105, + 577, + 505, + 590 + ], + "score": 1.0, + "content": "efficiency of model pre-training and the performance of downstream tasks. The DeBERTa model", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 505, + 602 + ], + "score": 1.0, + "content": "with 1.5 billion parameters surpasses the human performance on the SuperGLUE benchmark for the", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 600, + 278, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 600, + 278, + 613 + ], + "score": 1.0, + "content": "first time in terms of macro-average score.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31.5, + "bbox_fs": [ + 105, + 567, + 505, + 613 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 616, + 505, + 705 + ], + "lines": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "spans": [ + { + "bbox": [ + 106, + 617, + 505, + 629 + ], + "score": 1.0, + "content": "DeBERTa surpassing human performance on SuperGLUE marks an important milestone toward", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "spans": [ + { + "bbox": [ + 105, + 628, + 506, + 640 + ], + "score": 1.0, + "content": "general AI. Despite its promising results on SuperGLUE, the model is by no means reaching the", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "spans": [ + { + "bbox": [ + 106, + 639, + 505, + 651 + ], + "score": 1.0, + "content": "human-level intelligence of NLU. Humans are extremely good at leveraging the knowledge learned", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "spans": [ + { + "bbox": [ + 106, + 650, + 505, + 661 + ], + "score": 1.0, + "content": "from different tasks to solve a new task with no or little task-specific demonstration. This is referred", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 106, + 660, + 506, + 673 + ], + "spans": [ + { + "bbox": [ + 106, + 660, + 506, + 673 + ], + "score": 1.0, + "content": "to as compositional generalization, the ability to generalize to novel compositions (new tasks) of", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 104, + 671, + 505, + 685 + ], + "spans": [ + { + "bbox": [ + 104, + 671, + 505, + 685 + ], + "score": 1.0, + "content": "familiar constituents (subtasks or basic problem-solving skills). Moving forward, it is worth exploring", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 682, + 505, + 695 + ], + "spans": [ + { + "bbox": [ + 105, + 682, + 505, + 695 + ], + "score": 1.0, + "content": "how to make DeBERTa incorporate compositional structures in a more explicit manner, which could", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 693, + 502, + 707 + ], + "spans": [ + { + "bbox": [ + 106, + 693, + 502, + 707 + ], + "score": 1.0, + "content": "allow combining neural and symbolic computation of natural language similar to what humans do.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 37.5, + "bbox_fs": [ + 104, + 617, + 506, + 707 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 237, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 238, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 238, + 96 + ], + "score": 1.0, + "content": "7 ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We thank Jade Huang and Nikos Karampatziakis for proofreading the paper and providing insightful", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "score": 1.0, + "content": "comments. We thank Yoyo Liang, Saksham Singhal, Xia Song, and Saurabh Tiwary for their help", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 499, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 499, + 141 + ], + "score": 1.0, + "content": "with large-scale model training. We also thank the anonymous reviewers for valuable discussions.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2 + }, + { + "type": "title", + "bbox": [ + 107, + 157, + 176, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 176, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 176, + 171 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 186, + 219, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 219, + 198 + ], + "score": 1.0, + "content": "arXiv:1607.06450, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5 + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 506, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "Roy Bar-Haim, Ido Dagan, Bill Dolan, Lisa Ferro, and Danilo Giampiccolo. The second PASCAL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "recognising textual entailment challenge. In Proceedings of the Second PASCAL Challenges", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 228, + 340, + 242 + ], + "spans": [ + { + "bbox": [ + 116, + 228, + 340, + 242 + ], + "score": 1.0, + "content": "Workshop on Recognising Textual Entailment, 01 2006.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8 + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 262 + ], + "score": 1.0, + "content": "Iz Beltagy, Matthew E Peters, and Arman Cohan. Longformer: The long-document transformer.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 259, + 279, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 259, + 279, + 271 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2004.05150, 2020.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 108, + 279, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "Luisa Bentivogli, Ido Dagan, Hoa Trang Dang, Danilo Giampiccolo, and Bernardo Magnini. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 290, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 290, + 506, + 303 + ], + "score": 1.0, + "content": "fifth pascal recognizing textual entailment challenge. In In Proc Text Analysis Conference (TAC’09,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 299, + 143, + 314 + ], + "spans": [ + { + "bbox": [ + 115, + 299, + 143, + 314 + ], + "score": 1.0, + "content": "2009.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 343, + 353, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 353, + 356 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 506, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "Daniel Cer, Mona Diab, Eneko Agirre, Inigo Lopez-Gazpio, and Lucia Specia. Semeval-2017 task", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "1: Semantic textual similarity-multilingual and cross-lingual focused evaluation. arXiv preprint", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 385, + 219, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 219, + 396 + ], + "score": 1.0, + "content": "arXiv:1708.00055, 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19 + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 506, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 419 + ], + "score": 1.0, + "content": "Kezhen Chen, Qiuyuan Huang, Hamid Palangi, Paul Smolensky, Kenneth D Forbus, and Jianfeng", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "Gao. Natural-to formal-language generation using tensor product representations. arXiv preprint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 427, + 219, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 427, + 219, + 439 + ], + "score": 1.0, + "content": "arXiv:1910.02339, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 104, + 446, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "score": 1.0, + "content": "Rewon Child, Scott Gray, Alec Radford, and Ilya Sutskever. Generating long sequences with sparse", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 458, + 335, + 470 + ], + "spans": [ + { + "bbox": [ + 115, + 458, + 335, + 470 + ], + "score": 1.0, + "content": "transformers. arXiv preprint arXiv:1904.10509, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5 + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "Christopher Clark, Kenton Lee, Ming-Wei Chang, Tom Kwiatkowski, Michael Collins, and Kristina", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "Toutanova. BoolQ: Exploring the surprising difficulty of natural yes/no questions. In Proceedings", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 500, + 231, + 512 + ], + "spans": [ + { + "bbox": [ + 116, + 500, + 231, + 512 + ], + "score": 1.0, + "content": "of NAACL-HLT 2019, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 104, + 519, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "Kevin Clark, Minh-Thang Luong, Quoc V. Le, and Christopher D. Manning. ELECTRA: Pre-training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 531, + 397, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 397, + 543 + ], + "score": 1.0, + "content": "text encoders as discriminators rather than generators. In ICLR, 2020.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5 + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 104, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "Ido Dagan, Oren Glickman, and Bernardo Magnini. The pascal recognising textual entailment", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 563, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 506, + 574 + ], + "score": 1.0, + "content": "challenge. In Proceedings of the First International Conference on Machine Learning Chal-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "lenges: Evaluating Predictive Uncertainty Visual Object Classification, and Recognizing Textual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 584, + 317, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 584, + 317, + 596 + ], + "score": 1.0, + "content": "Entailment, MLCW’05, Berlin, Heidelberg, 2006.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5 + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 506, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 617 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Yiming Yang, Jaime G Carbonell, Quoc Le, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. In Proceedings of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 624, + 492, + 639 + ], + "spans": [ + { + "bbox": [ + 114, + 624, + 492, + 639 + ], + "score": 1.0, + "content": "57th Annual Meeting of the Association for Computational Linguistics, pp. 2978–2988, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 505, + 679 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "Marie-Catherine De Marneffe, Mandy Simons, and Judith Tonhauser. The commitmentbank: In-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 656, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 507, + 671 + ], + "score": 1.0, + "content": "vestigating projection in naturally occurring discourse. In proceedings of Sinn und Bedeutung,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 668, + 243, + 680 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 243, + 680 + ], + "score": 1.0, + "content": "volume 23, pp. 107–124, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "the North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 720, + 406, + 733 + ], + "spans": [ + { + "bbox": [ + 114, + 720, + 406, + 733 + ], + "score": 1.0, + "content": "Technologies, Volume 1 (Long and Short Papers), pp. 4171–4186, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5 + } + ], + "page_idx": 9, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 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 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "10", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 237, + 93 + ], + "lines": [ + { + "bbox": [ + 105, + 80, + 238, + 96 + ], + "spans": [ + { + "bbox": [ + 105, + 80, + 238, + 96 + ], + "score": 1.0, + "content": "7 ACKNOWLEDGMENTS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 106, + 505, + 140 + ], + "lines": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "spans": [ + { + "bbox": [ + 105, + 106, + 505, + 119 + ], + "score": 1.0, + "content": "We thank Jade Huang and Nikos Karampatziakis for proofreading the paper and providing insightful", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "spans": [ + { + "bbox": [ + 105, + 117, + 505, + 130 + ], + "score": 1.0, + "content": "comments. We thank Yoyo Liang, Saksham Singhal, Xia Song, and Saurabh Tiwary for their help", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 106, + 129, + 499, + 141 + ], + "spans": [ + { + "bbox": [ + 106, + 129, + 499, + 141 + ], + "score": 1.0, + "content": "with large-scale model training. We also thank the anonymous reviewers for valuable discussions.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 2, + "bbox_fs": [ + 105, + 106, + 505, + 141 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 157, + 176, + 169 + ], + "lines": [ + { + "bbox": [ + 106, + 157, + 176, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 157, + 176, + 171 + ], + "score": 1.0, + "content": "REFERENCES", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 4 + }, + { + "type": "text", + "bbox": [ + 106, + 176, + 504, + 198 + ], + "lines": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "spans": [ + { + "bbox": [ + 105, + 174, + 505, + 189 + ], + "score": 1.0, + "content": "Jimmy Lei Ba, Jamie Ryan Kiros, and Geoffrey E Hinton. Layer normalization. arXiv preprint", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 186, + 219, + 198 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 219, + 198 + ], + "score": 1.0, + "content": "arXiv:1607.06450, 2016.", + "type": "text" + } + ], + "index": 6 + } + ], + "index": 5.5, + "bbox_fs": [ + 105, + 174, + 505, + 198 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 206, + 506, + 240 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 506, + 219 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 506, + 219 + ], + "score": 1.0, + "content": "Roy Bar-Haim, Ido Dagan, Bill Dolan, Lisa Ferro, and Danilo Giampiccolo. The second PASCAL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 218, + 505, + 230 + ], + "spans": [ + { + "bbox": [ + 116, + 218, + 505, + 230 + ], + "score": 1.0, + "content": "recognising textual entailment challenge. In Proceedings of the Second PASCAL Challenges", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 116, + 228, + 340, + 242 + ], + "spans": [ + { + "bbox": [ + 116, + 228, + 340, + 242 + ], + "score": 1.0, + "content": "Workshop on Recognising Textual Entailment, 01 2006.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 8, + "bbox_fs": [ + 105, + 206, + 506, + 242 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 248, + 504, + 271 + ], + "lines": [ + { + "bbox": [ + 105, + 247, + 506, + 262 + ], + "spans": [ + { + "bbox": [ + 105, + 247, + 506, + 262 + ], + "score": 1.0, + "content": "Iz Beltagy, Matthew E Peters, and Arman Cohan. Longformer: The long-document transformer.", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 259, + 279, + 271 + ], + "spans": [ + { + "bbox": [ + 115, + 259, + 279, + 271 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:2004.05150, 2020.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 105, + 247, + 506, + 271 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 279, + 504, + 313 + ], + "lines": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "spans": [ + { + "bbox": [ + 106, + 280, + 505, + 292 + ], + "score": 1.0, + "content": "Luisa Bentivogli, Ido Dagan, Hoa Trang Dang, Danilo Giampiccolo, and Bernardo Magnini. The", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 290, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 115, + 290, + 506, + 303 + ], + "score": 1.0, + "content": "fifth pascal recognizing textual entailment challenge. In In Proc Text Analysis Conference (TAC’09,", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 115, + 299, + 143, + 314 + ], + "spans": [ + { + "bbox": [ + 115, + 299, + 143, + 314 + ], + "score": 1.0, + "content": "2009.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 280, + 506, + 314 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 321, + 504, + 355 + ], + "lines": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "spans": [ + { + "bbox": [ + 105, + 320, + 506, + 334 + ], + "score": 1.0, + "content": "Tom B Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhariwal,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 332, + 506, + 345 + ], + "spans": [ + { + "bbox": [ + 115, + 332, + 506, + 345 + ], + "score": 1.0, + "content": "Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, et al. Language models are", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 115, + 343, + 353, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 353, + 356 + ], + "score": 1.0, + "content": "few-shot learners. arXiv preprint arXiv:2005.14165, 2020.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 320, + 506, + 356 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 363, + 506, + 397 + ], + "lines": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 505, + 376 + ], + "score": 1.0, + "content": "Daniel Cer, Mona Diab, Eneko Agirre, Inigo Lopez-Gazpio, and Lucia Specia. Semeval-2017 task", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 374, + 505, + 387 + ], + "spans": [ + { + "bbox": [ + 115, + 374, + 505, + 387 + ], + "score": 1.0, + "content": "1: Semantic textual similarity-multilingual and cross-lingual focused evaluation. arXiv preprint", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 385, + 219, + 396 + ], + "spans": [ + { + "bbox": [ + 115, + 385, + 219, + 396 + ], + "score": 1.0, + "content": "arXiv:1708.00055, 2017.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19, + "bbox_fs": [ + 106, + 363, + 505, + 396 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 405, + 506, + 439 + ], + "lines": [ + { + "bbox": [ + 105, + 404, + 506, + 419 + ], + "spans": [ + { + "bbox": [ + 105, + 404, + 506, + 419 + ], + "score": 1.0, + "content": "Kezhen Chen, Qiuyuan Huang, Hamid Palangi, Paul Smolensky, Kenneth D Forbus, and Jianfeng", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 116, + 416, + 505, + 429 + ], + "spans": [ + { + "bbox": [ + 116, + 416, + 505, + 429 + ], + "score": 1.0, + "content": "Gao. Natural-to formal-language generation using tensor product representations. arXiv preprint", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 115, + 427, + 219, + 439 + ], + "spans": [ + { + "bbox": [ + 115, + 427, + 219, + 439 + ], + "score": 1.0, + "content": "arXiv:1910.02339, 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 404, + 506, + 439 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 446, + 505, + 470 + ], + "lines": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "spans": [ + { + "bbox": [ + 105, + 446, + 505, + 461 + ], + "score": 1.0, + "content": "Rewon Child, Scott Gray, Alec Radford, and Ilya Sutskever. Generating long sequences with sparse", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 458, + 335, + 470 + ], + "spans": [ + { + "bbox": [ + 115, + 458, + 335, + 470 + ], + "score": 1.0, + "content": "transformers. arXiv preprint arXiv:1904.10509, 2019.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 24.5, + "bbox_fs": [ + 105, + 446, + 505, + 470 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 477, + 505, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 477, + 505, + 491 + ], + "spans": [ + { + "bbox": [ + 106, + 477, + 505, + 491 + ], + "score": 1.0, + "content": "Christopher Clark, Kenton Lee, Ming-Wei Chang, Tom Kwiatkowski, Michael Collins, and Kristina", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 489, + 505, + 502 + ], + "spans": [ + { + "bbox": [ + 115, + 489, + 505, + 502 + ], + "score": 1.0, + "content": "Toutanova. BoolQ: Exploring the surprising difficulty of natural yes/no questions. In Proceedings", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 500, + 231, + 512 + ], + "spans": [ + { + "bbox": [ + 116, + 500, + 231, + 512 + ], + "score": 1.0, + "content": "of NAACL-HLT 2019, 2019.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27, + "bbox_fs": [ + 106, + 477, + 505, + 512 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 519, + 504, + 543 + ], + "lines": [ + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "spans": [ + { + "bbox": [ + 105, + 519, + 506, + 534 + ], + "score": 1.0, + "content": "Kevin Clark, Minh-Thang Luong, Quoc V. Le, and Christopher D. Manning. ELECTRA: Pre-training", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 531, + 397, + 543 + ], + "spans": [ + { + "bbox": [ + 115, + 531, + 397, + 543 + ], + "score": 1.0, + "content": "text encoders as discriminators rather than generators. In ICLR, 2020.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29.5, + "bbox_fs": [ + 105, + 519, + 506, + 543 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 550, + 505, + 596 + ], + "lines": [ + { + "bbox": [ + 104, + 551, + 506, + 564 + ], + "spans": [ + { + "bbox": [ + 104, + 551, + 506, + 564 + ], + "score": 1.0, + "content": "Ido Dagan, Oren Glickman, and Bernardo Magnini. The pascal recognising textual entailment", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 116, + 563, + 506, + 574 + ], + "spans": [ + { + "bbox": [ + 116, + 563, + 506, + 574 + ], + "score": 1.0, + "content": "challenge. In Proceedings of the First International Conference on Machine Learning Chal-", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 573, + 506, + 586 + ], + "spans": [ + { + "bbox": [ + 115, + 573, + 506, + 586 + ], + "score": 1.0, + "content": "lenges: Evaluating Predictive Uncertainty Visual Object Classification, and Recognizing Textual", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 116, + 584, + 317, + 596 + ], + "spans": [ + { + "bbox": [ + 116, + 584, + 317, + 596 + ], + "score": 1.0, + "content": "Entailment, MLCW’05, Berlin, Heidelberg, 2006.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 32.5, + "bbox_fs": [ + 104, + 551, + 506, + 596 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 603, + 506, + 637 + ], + "lines": [ + { + "bbox": [ + 105, + 603, + 506, + 617 + ], + "spans": [ + { + "bbox": [ + 105, + 603, + 506, + 617 + ], + "score": 1.0, + "content": "Zihang Dai, Zhilin Yang, Yiming Yang, Jaime G Carbonell, Quoc Le, and Ruslan Salakhutdinov.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "spans": [ + { + "bbox": [ + 116, + 615, + 505, + 627 + ], + "score": 1.0, + "content": "Transformer-xl: Attentive language models beyond a fixed-length context. In Proceedings of the", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 114, + 624, + 492, + 639 + ], + "spans": [ + { + "bbox": [ + 114, + 624, + 492, + 639 + ], + "score": 1.0, + "content": "57th Annual Meeting of the Association for Computational Linguistics, pp. 2978–2988, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 105, + 603, + 506, + 639 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 645, + 505, + 679 + ], + "lines": [ + { + "bbox": [ + 106, + 645, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 106, + 645, + 506, + 658 + ], + "score": 1.0, + "content": "Marie-Catherine De Marneffe, Mandy Simons, and Judith Tonhauser. The commitmentbank: In-", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 656, + 507, + 671 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 507, + 671 + ], + "score": 1.0, + "content": "vestigating projection in naturally occurring discourse. In proceedings of Sinn und Bedeutung,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 116, + 668, + 243, + 680 + ], + "spans": [ + { + "bbox": [ + 116, + 668, + 243, + 680 + ], + "score": 1.0, + "content": "volume 23, pp. 107–124, 2019.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 106, + 645, + 507, + 680 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 506, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "Jacob Devlin, Ming-Wei Chang, Kenton Lee, and Kristina Toutanova. Bert: Pre-training of deep", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "spans": [ + { + "bbox": [ + 115, + 698, + 506, + 712 + ], + "score": 1.0, + "content": "bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of", + "type": "text" + } + ], + "index": 42 + }, + { + "bbox": [ + 115, + 709, + 506, + 723 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 506, + 723 + ], + "score": 1.0, + "content": "the North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 114, + 720, + 406, + 733 + ], + "spans": [ + { + "bbox": [ + 114, + 720, + 406, + 733 + ], + "score": 1.0, + "content": "Technologies, Volume 1 (Long and Short Papers), pp. 4171–4186, 2019.", + "type": "text" + } + ], + "index": 44 + } + ], + "index": 42.5, + "bbox_fs": [ + 105, + 687, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "William B Dolan and Chris Brockett. Automatically constructing a corpus of sentential paraphrases.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 469, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 469, + 106 + ], + "score": 1.0, + "content": "In Proceedings of the Third International Workshop on Paraphrasing (IWP2005), 2005.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5 + }, + { + "type": "text", + "bbox": [ + 108, + 113, + 505, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 506, + 127 + ], + "score": 1.0, + "content": "Li Dong, Nan Yang, Wenhui Wang, Furu Wei, Xiaodong Liu, Yu Wang, Jianfeng Gao, Ming Zhou,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 505, + 139 + ], + "score": 1.0, + "content": "and Hsiao-Wuen Hon. Unified language model pre-training for natural language understanding", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 506, + 149 + ], + "score": 1.0, + "content": "and generation. In Advances in Neural Information Processing Systems, pp. 13042–13054, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 155, + 505, + 200 + ], + "lines": [ + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "score": 1.0, + "content": "Danilo Giampiccolo, Bernardo Magnini, Ido Dagan, and Bill Dolan. The third PASCAL recognizing", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 116, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "textual entailment challenge. In Proceedings of the ACL-PASCAL Workshop on Textual Entailment", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 178, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 506, + 190 + ], + "score": 1.0, + "content": "and Paraphrasing, pp. 1–9, Prague, June 2007. Association for Computational Linguistics. URL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 189, + 367, + 201 + ], + "spans": [ + { + "bbox": [ + 116, + 189, + 367, + 201 + ], + "score": 1.0, + "content": "https://www.aclweb.org/anthology/W07-1401.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 475, + 220 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 476, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 476, + 223 + ], + "score": 1.0, + "content": "Aaron Gokaslan and Vanya Cohen. Openwebtext corpus. http://Skylion007.github.io, 2019.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Pengcheng He, Xiaodong Liu, Weizhu Chen, and Jianfeng Gao. A hybrid neural network model for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 239, + 387, + 252 + ], + "spans": [ + { + "bbox": [ + 115, + 239, + 387, + 252 + ], + "score": 1.0, + "content": "commonsense reasoning. arXiv preprint arXiv:1907.11983, 2019a.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 105, + 258, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "Pengcheng He, Yi Mao, Kaushik Chakrabarti, and Weizhu Chen. X-sql: reinforce schema representa-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 270, + 357, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 357, + 282 + ], + "score": 1.0, + "content": "tion with context. arXiv preprint arXiv:1908.08113, 2019b.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 108, + 289, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Ian Simon, Curtis Hawthorne, Noam", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "Shazeer, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 312, + 370, + 325 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 370, + 325 + ], + "score": 1.0, + "content": "transformer: Generating music with long-term structure. 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 107, + 331, + 506, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 507, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 507, + 345 + ], + "score": 1.0, + "content": "Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Tuo Zhao. SMART:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "Robust and efficient fine-tuning for pre-trained natural language models through principled regu-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 354, + 434, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 434, + 366 + ], + "score": 1.0, + "content": "larized optimization. In ACL, July 2020. doi: 10.18653/v1/2020.acl-main.197.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18 + }, + { + "type": "text", + "bbox": [ + 107, + 373, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "Mandar Joshi, Danqi Chen, Yinhan Liu, Daniel S Weld, Luke Zettlemoyer, and Omer Levy. Spanbert:", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 117, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 117, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Improving pre-training by representing and predicting spans. Transactions of the Association for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 117, + 396, + 289, + 408 + ], + "spans": [ + { + "bbox": [ + 117, + 396, + 289, + 408 + ], + "score": 1.0, + "content": "Computational Linguistics, 8:64–77, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 430 + ], + "score": 1.0, + "content": "Daniel Khashabi, Snigdha Chaturvedi, Michael Roth, Shyam Upadhyay, and Dan Roth. Looking", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "beyond the surface: A challenge set for reading comprehension over multiple sentences. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "Proceedings of the 2018 Conference of the North American Chapter of the Association for Com-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 448, + 507, + 463 + ], + "spans": [ + { + "bbox": [ + 114, + 448, + 507, + 463 + ], + "score": 1.0, + "content": "putational Linguistics: Human Language Technologies, Volume 1 (Long Papers), pp. 252–262,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 459, + 142, + 473 + ], + "spans": [ + { + "bbox": [ + 115, + 459, + 142, + 473 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 106, + 479, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 491, + 214, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 491, + 214, + 502 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5 + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 522, + 365, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 365, + 534 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5 + }, + { + "type": "text", + "bbox": [ + 106, + 541, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 555 + ], + "score": 1.0, + "content": "Guokun Lai, Qizhe Xie, Hanxiao Liu, Yiming Yang, and Eduard Hovy. Race: Large-scale reading", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 116, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "comprehension dataset from examinations. In Proceedings of the 2017 Conference on Empirical", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 563, + 367, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 563, + 367, + 577 + ], + "score": 1.0, + "content": "Methods in Natural Language Processing, pp. 785–794, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 506, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Soricut.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "Albert: A lite bert for self-supervised learning of language representations. In International", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 606, + 310, + 618 + ], + "spans": [ + { + "bbox": [ + 116, + 606, + 310, + 618 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36 + }, + { + "type": "text", + "bbox": [ + 107, + 625, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "score": 1.0, + "content": "Hector Levesque, Ernest Davis, and Leora Morgenstern. The winograd schema challenge. In", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 635, + 507, + 650 + ], + "spans": [ + { + "bbox": [ + 114, + 635, + 507, + 650 + ], + "score": 1.0, + "content": "Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 646, + 143, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 143, + 660 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39 + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 506, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Hector J Levesque, Ernest Davis, and Leora Morgenstern. The Winograd schema challenge. In AAAI", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "Spring Symposium: Logical Formalizations of Commonsense Reasoning, volume 46, pp. 47, 2011.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5 + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Liyuan Liu, Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Jiawei", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Han. On the variance of the adaptive learning rate and beyond. In International Conference on", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 721, + 253, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 253, + 733 + ], + "score": 1.0, + "content": "Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 10, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 309, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 765 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 105, + 82, + 505, + 105 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 506, + 96 + ], + "score": 1.0, + "content": "William B Dolan and Chris Brockett. Automatically constructing a corpus of sentential paraphrases.", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 469, + 106 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 469, + 106 + ], + "score": 1.0, + "content": "In Proceedings of the Third International Workshop on Paraphrasing (IWP2005), 2005.", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 0.5, + "bbox_fs": [ + 106, + 82, + 506, + 106 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 113, + 505, + 147 + ], + "lines": [ + { + "bbox": [ + 105, + 112, + 506, + 127 + ], + "spans": [ + { + "bbox": [ + 105, + 112, + 506, + 127 + ], + "score": 1.0, + "content": "Li Dong, Nan Yang, Wenhui Wang, Furu Wei, Xiaodong Liu, Yu Wang, Jianfeng Gao, Ming Zhou,", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 115, + 123, + 505, + 139 + ], + "spans": [ + { + "bbox": [ + 115, + 123, + 505, + 139 + ], + "score": 1.0, + "content": "and Hsiao-Wuen Hon. Unified language model pre-training for natural language understanding", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 506, + 149 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 506, + 149 + ], + "score": 1.0, + "content": "and generation. In Advances in Neural Information Processing Systems, pp. 13042–13054, 2019.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3, + "bbox_fs": [ + 105, + 112, + 506, + 149 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 155, + 505, + 200 + ], + "lines": [ + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "spans": [ + { + "bbox": [ + 104, + 153, + 506, + 169 + ], + "score": 1.0, + "content": "Danilo Giampiccolo, Bernardo Magnini, Ido Dagan, and Bill Dolan. The third PASCAL recognizing", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 116, + 167, + 505, + 179 + ], + "spans": [ + { + "bbox": [ + 116, + 167, + 505, + 179 + ], + "score": 1.0, + "content": "textual entailment challenge. In Proceedings of the ACL-PASCAL Workshop on Textual Entailment", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 116, + 178, + 506, + 190 + ], + "spans": [ + { + "bbox": [ + 116, + 178, + 506, + 190 + ], + "score": 1.0, + "content": "and Paraphrasing, pp. 1–9, Prague, June 2007. Association for Computational Linguistics. URL", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 116, + 189, + 367, + 201 + ], + "spans": [ + { + "bbox": [ + 116, + 189, + 367, + 201 + ], + "score": 1.0, + "content": "https://www.aclweb.org/anthology/W07-1401.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 104, + 153, + 506, + 201 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 208, + 475, + 220 + ], + "lines": [ + { + "bbox": [ + 105, + 206, + 476, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 206, + 476, + 223 + ], + "score": 1.0, + "content": "Aaron Gokaslan and Vanya Cohen. Openwebtext corpus. http://Skylion007.github.io, 2019.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 206, + 476, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 227, + 505, + 251 + ], + "lines": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "spans": [ + { + "bbox": [ + 106, + 228, + 505, + 240 + ], + "score": 1.0, + "content": "Pengcheng He, Xiaodong Liu, Weizhu Chen, and Jianfeng Gao. A hybrid neural network model for", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 239, + 387, + 252 + ], + "spans": [ + { + "bbox": [ + 115, + 239, + 387, + 252 + ], + "score": 1.0, + "content": "commonsense reasoning. arXiv preprint arXiv:1907.11983, 2019a.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 228, + 505, + 252 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 258, + 505, + 282 + ], + "lines": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "spans": [ + { + "bbox": [ + 105, + 258, + 506, + 272 + ], + "score": 1.0, + "content": "Pengcheng He, Yi Mao, Kaushik Chakrabarti, and Weizhu Chen. X-sql: reinforce schema representa-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 115, + 270, + 357, + 282 + ], + "spans": [ + { + "bbox": [ + 115, + 270, + 357, + 282 + ], + "score": 1.0, + "content": "tion with context. arXiv preprint arXiv:1908.08113, 2019b.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 258, + 506, + 282 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 289, + 504, + 324 + ], + "lines": [ + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "spans": [ + { + "bbox": [ + 106, + 289, + 506, + 303 + ], + "score": 1.0, + "content": "Cheng-Zhi Anna Huang, Ashish Vaswani, Jakob Uszkoreit, Ian Simon, Curtis Hawthorne, Noam", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 301, + 505, + 314 + ], + "spans": [ + { + "bbox": [ + 115, + 301, + 505, + 314 + ], + "score": 1.0, + "content": "Shazeer, Andrew M Dai, Matthew D Hoffman, Monica Dinculescu, and Douglas Eck. Music", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 312, + 370, + 325 + ], + "spans": [ + { + "bbox": [ + 116, + 312, + 370, + 325 + ], + "score": 1.0, + "content": "transformer: Generating music with long-term structure. 2018.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 106, + 289, + 506, + 325 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 331, + 506, + 366 + ], + "lines": [ + { + "bbox": [ + 105, + 331, + 507, + 345 + ], + "spans": [ + { + "bbox": [ + 105, + 331, + 507, + 345 + ], + "score": 1.0, + "content": "Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Tuo Zhao. SMART:", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 115, + 343, + 506, + 356 + ], + "spans": [ + { + "bbox": [ + 115, + 343, + 506, + 356 + ], + "score": 1.0, + "content": "Robust and efficient fine-tuning for pre-trained natural language models through principled regu-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 354, + 434, + 366 + ], + "spans": [ + { + "bbox": [ + 115, + 354, + 434, + 366 + ], + "score": 1.0, + "content": "larized optimization. In ACL, July 2020. doi: 10.18653/v1/2020.acl-main.197.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 18, + "bbox_fs": [ + 105, + 331, + 507, + 366 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 373, + 505, + 407 + ], + "lines": [ + { + "bbox": [ + 105, + 373, + 506, + 387 + ], + "spans": [ + { + "bbox": [ + 105, + 373, + 506, + 387 + ], + "score": 1.0, + "content": "Mandar Joshi, Danqi Chen, Yinhan Liu, Daniel S Weld, Luke Zettlemoyer, and Omer Levy. Spanbert:", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 117, + 385, + 505, + 398 + ], + "spans": [ + { + "bbox": [ + 117, + 385, + 505, + 398 + ], + "score": 1.0, + "content": "Improving pre-training by representing and predicting spans. Transactions of the Association for", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 117, + 396, + 289, + 408 + ], + "spans": [ + { + "bbox": [ + 117, + 396, + 289, + 408 + ], + "score": 1.0, + "content": "Computational Linguistics, 8:64–77, 2020.", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 373, + 506, + 408 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 415, + 505, + 471 + ], + "lines": [ + { + "bbox": [ + 105, + 414, + 506, + 430 + ], + "spans": [ + { + "bbox": [ + 105, + 414, + 506, + 430 + ], + "score": 1.0, + "content": "Daniel Khashabi, Snigdha Chaturvedi, Michael Roth, Shyam Upadhyay, and Dan Roth. Looking", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 116, + 428, + 505, + 439 + ], + "spans": [ + { + "bbox": [ + 116, + 428, + 505, + 439 + ], + "score": 1.0, + "content": "beyond the surface: A challenge set for reading comprehension over multiple sentences. In", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 437, + 506, + 451 + ], + "spans": [ + { + "bbox": [ + 115, + 437, + 506, + 451 + ], + "score": 1.0, + "content": "Proceedings of the 2018 Conference of the North American Chapter of the Association for Com-", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 114, + 448, + 507, + 463 + ], + "spans": [ + { + "bbox": [ + 114, + 448, + 507, + 463 + ], + "score": 1.0, + "content": "putational Linguistics: Human Language Technologies, Volume 1 (Long Papers), pp. 252–262,", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 459, + 142, + 473 + ], + "spans": [ + { + "bbox": [ + 115, + 459, + 142, + 473 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25, + "bbox_fs": [ + 105, + 414, + 507, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 479, + 504, + 502 + ], + "lines": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "spans": [ + { + "bbox": [ + 105, + 478, + 506, + 493 + ], + "score": 1.0, + "content": "Diederik Kingma and Jimmy Ba. Adam: A method for stochastic optimization. arXiv preprint", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 116, + 491, + 214, + 502 + ], + "spans": [ + { + "bbox": [ + 116, + 491, + 214, + 502 + ], + "score": 1.0, + "content": "arXiv:1412.6980, 2014.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 28.5, + "bbox_fs": [ + 105, + 478, + 506, + 502 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 510, + 504, + 533 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 506, + 523 + ], + "score": 1.0, + "content": "Nikita Kitaev, Lukasz Kaiser, and Anselm Levskaya. Reformer: The efficient transformer. In", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 522, + 365, + 534 + ], + "spans": [ + { + "bbox": [ + 115, + 522, + 365, + 534 + ], + "score": 1.0, + "content": "International Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 31 + } + ], + "index": 30.5, + "bbox_fs": [ + 105, + 510, + 506, + 534 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 541, + 505, + 576 + ], + "lines": [ + { + "bbox": [ + 106, + 540, + 505, + 555 + ], + "spans": [ + { + "bbox": [ + 106, + 540, + 505, + 555 + ], + "score": 1.0, + "content": "Guokun Lai, Qizhe Xie, Hanxiao Liu, Yiming Yang, and Eduard Hovy. Race: Large-scale reading", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 553, + 505, + 565 + ], + "spans": [ + { + "bbox": [ + 116, + 553, + 505, + 565 + ], + "score": 1.0, + "content": "comprehension dataset from examinations. In Proceedings of the 2017 Conference on Empirical", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 115, + 563, + 367, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 563, + 367, + 577 + ], + "score": 1.0, + "content": "Methods in Natural Language Processing, pp. 785–794, 2017.", + "type": "text" + } + ], + "index": 34 + } + ], + "index": 33, + "bbox_fs": [ + 106, + 540, + 505, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 506, + 617 + ], + "lines": [ + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 106, + 584, + 505, + 596 + ], + "score": 1.0, + "content": "Zhenzhong Lan, Mingda Chen, Sebastian Goodman, Kevin Gimpel, Piyush Sharma, and Radu Soricut.", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 116, + 594, + 506, + 607 + ], + "spans": [ + { + "bbox": [ + 116, + 594, + 506, + 607 + ], + "score": 1.0, + "content": "Albert: A lite bert for self-supervised learning of language representations. In International", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 606, + 310, + 618 + ], + "spans": [ + { + "bbox": [ + 116, + 606, + 310, + 618 + ], + "score": 1.0, + "content": "Conference on Learning Representations, 2019.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 36, + "bbox_fs": [ + 106, + 584, + 506, + 618 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 625, + 505, + 659 + ], + "lines": [ + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "spans": [ + { + "bbox": [ + 105, + 624, + 506, + 639 + ], + "score": 1.0, + "content": "Hector Levesque, Ernest Davis, and Leora Morgenstern. The winograd schema challenge. In", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 114, + 635, + 507, + 650 + ], + "spans": [ + { + "bbox": [ + 114, + 635, + 507, + 650 + ], + "score": 1.0, + "content": "Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning,", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 646, + 143, + 660 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 143, + 660 + ], + "score": 1.0, + "content": "2012.", + "type": "text" + } + ], + "index": 40 + } + ], + "index": 39, + "bbox_fs": [ + 105, + 624, + 507, + 660 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 667, + 506, + 690 + ], + "lines": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "spans": [ + { + "bbox": [ + 106, + 667, + 505, + 680 + ], + "score": 1.0, + "content": "Hector J Levesque, Ernest Davis, and Leora Morgenstern. The Winograd schema challenge. In AAAI", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 506, + 691 + ], + "score": 1.0, + "content": "Spring Symposium: Logical Formalizations of Commonsense Reasoning, volume 46, pp. 47, 2011.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41.5, + "bbox_fs": [ + 106, + 667, + 506, + 691 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "spans": [ + { + "bbox": [ + 105, + 698, + 505, + 712 + ], + "score": 1.0, + "content": "Liyuan Liu, Haoming Jiang, Pengcheng He, Weizhu Chen, Xiaodong Liu, Jianfeng Gao, and Jiawei", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 115, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Han. On the variance of the adaptive learning rate and beyond. In International Conference on", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 721, + 253, + 733 + ], + "spans": [ + { + "bbox": [ + 115, + 721, + 253, + 733 + ], + "score": 1.0, + "content": "Learning Representations, 2019a.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 105, + 698, + 505, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-task deep neural networks", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 507, + 106 + ], + "score": 1.0, + "content": "for natural language understanding. In Proceedings of the 57th Annual Meeting of the Associa-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "tion for Computational Linguistics, pp. 4487–4496, Florence, Italy, July 2019b. Association for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 115, + 502, + 128 + ], + "spans": [ + { + "bbox": [ + 116, + 115, + 502, + 128 + ], + "score": 1.0, + "content": "Computational Linguistics. URL https://www.aclweb.org/anthology/P19-1441.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5 + }, + { + "type": "text", + "bbox": [ + 108, + 136, + 504, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "Xiaodong Liu, Hao Cheng, Pengcheng He, Weizhu Chen, Yu Wang, Hoifung Poon, and Jianfeng Gao.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 147, + 497, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 147, + 497, + 159 + ], + "score": 1.0, + "content": "Adversarial training for large neural language models. arXiv preprint arXiv:2004.08994, 2020.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5 + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 506, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 181 + ], + "score": 1.0, + "content": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 177, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 114, + 177, + 506, + 192 + ], + "score": 1.0, + "content": "Lewis, Luke Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 189, + 326, + 202 + ], + "spans": [ + { + "bbox": [ + 115, + 189, + 326, + 202 + ], + "score": 1.0, + "content": "approach. arXiv preprint arXiv:1907.11692, 2019c.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7 + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 448, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 450, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 450, + 223 + ], + "score": 1.0, + "content": "Ilya Loshchilov and Frank Hutter. Fixing weight decay regularization in adam. 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 105, + 230, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 242, + 271, + 253 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 271, + 253 + ], + "score": 1.0, + "content": "models. arXiv, pp. arXiv–1609, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5 + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 506, + 274 + ], + "score": 1.0, + "content": "Shervin Minaee, Nal Kalchbrenner, Erik Cambria, Narjes Nikzad, Meysam Chenaghlu, and Jian-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "feng Gao. Deep learning based text classification: A comprehensive review. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 284, + 219, + 295 + ], + "spans": [ + { + "bbox": [ + 116, + 284, + 219, + 295 + ], + "score": 1.0, + "content": "arXiv:2004.03705, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13 + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 318 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 116, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "regularization method for supervised and semi-supervised learning. IEEE transactions on pattern", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 327, + 356, + 339 + ], + "spans": [ + { + "bbox": [ + 116, + 327, + 356, + 339 + ], + "score": 1.0, + "content": "analysis and machine intelligence, 41(8):1979–1993, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 506, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "Mohammad Taher Pilehvar and Jose Camacho-Collados. Wic: the word-in-context dataset for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "evaluating context-sensitive meaning representations. In Proceedings of the 2019 Conference of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 369, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "the North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 380, + 406, + 393 + ], + "spans": [ + { + "bbox": [ + 114, + 380, + 406, + 393 + ], + "score": 1.0, + "content": "Technologies, Volume 1 (Long and Short Papers), pp. 1267–1273, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 105, + 400, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 415 + ], + "score": 1.0, + "content": "Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 411, + 398, + 424 + ], + "spans": [ + { + "bbox": [ + 116, + 411, + 398, + 424 + ], + "score": 1.0, + "content": "models are unsupervised multitask learners. OpenAI Blog, 1(8), 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5 + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 506, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 431, + 507, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 507, + 445 + ], + "score": 1.0, + "content": "Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 116, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 454, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 454, + 507, + 466 + ], + "score": 1.0, + "content": "text-to-text transformer. Journal of Machine Learning Research, 21(140):1–67, 2020. URL", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 466, + 349, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 349, + 478 + ], + "score": 1.0, + "content": "http://jmlr.org/papers/v21/20-074.html.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5 + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 424, + 499 + ], + "score": 1.0, + "content": "Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. SQuAD:", + "type": "text" + }, + { + "bbox": [ + 425, + 486, + 464, + 497 + ], + "score": 0.7, + "content": "^ { 1 0 0 , 0 0 0 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "questions", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "for machine comprehension of text. In Proceedings of the 2016 Conference on Empirical Methods", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 508, + 320, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 508, + 320, + 520 + ], + "score": 1.0, + "content": "in Natural Language Processing, November 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29 + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "Pranav Rajpurkar, Robin Jia, and Percy Liang. Know what you don’t know: Unanswerable questions", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "for squad. In Proceedings of the 56th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 550, + 349, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 349, + 564 + ], + "score": 1.0, + "content": "Linguistics (Volume 2: Short Papers), pp. 784–789, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32 + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 571, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 506, + 583 + ], + "score": 1.0, + "content": "Melissa Roemmele, Cosmin Adrian Bejan, and Andrew S. Gordon. Choice of plausible alternatives:", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 582, + 504, + 594 + ], + "spans": [ + { + "bbox": [ + 116, + 582, + 504, + 594 + ], + "score": 1.0, + "content": "An evaluation of commonsense causal reasoning. In 2011 AAAI Spring Symposium Series, 2011.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5 + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "score": 1.0, + "content": "Imanol Schlag, Paul Smolensky, Roland Fernandez, Nebojsa Jojic, Jürgen Schmidhuber, and Jianfeng", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 116, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "Gao. Enhancing the transformer with explicit relational encoding for math problem solving. arXiv", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 625, + 254, + 636 + ], + "spans": [ + { + "bbox": [ + 115, + 625, + 254, + 636 + ], + "score": 1.0, + "content": "preprint arXiv:1910.06611, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 506, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "In Proceedings of the 2018 Conference of the North American Chapter of the Association for", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 666, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 115, + 666, + 507, + 680 + ], + "score": 1.0, + "content": "Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), pp. 464–468,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 678, + 142, + 689 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 142, + 689 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5 + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 507, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 507, + 711 + ], + "score": 1.0, + "content": "Tao Shen, Yi Mao, Pengcheng He, Guodong Long, Adam Trischler, and Weizhu Chen. Ex-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "ploiting structured knowledge in text via graph-guided representation learning. arXiv preprint", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 720, + 219, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 219, + 732 + ], + "score": 1.0, + "content": "arXiv:2004.14224, 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44 + } + ], + "page_idx": 11, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 107, + 82, + 505, + 127 + ], + "lines": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 105, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "Xiaodong Liu, Pengcheng He, Weizhu Chen, and Jianfeng Gao. Multi-task deep neural networks", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 115, + 93, + 507, + 106 + ], + "spans": [ + { + "bbox": [ + 115, + 93, + 507, + 106 + ], + "score": 1.0, + "content": "for natural language understanding. In Proceedings of the 57th Annual Meeting of the Associa-", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "spans": [ + { + "bbox": [ + 115, + 104, + 506, + 117 + ], + "score": 1.0, + "content": "tion for Computational Linguistics, pp. 4487–4496, Florence, Italy, July 2019b. Association for", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 116, + 115, + 502, + 128 + ], + "spans": [ + { + "bbox": [ + 116, + 115, + 502, + 128 + ], + "score": 1.0, + "content": "Computational Linguistics. URL https://www.aclweb.org/anthology/P19-1441.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 1.5, + "bbox_fs": [ + 105, + 82, + 507, + 128 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 136, + 504, + 159 + ], + "lines": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "spans": [ + { + "bbox": [ + 106, + 136, + 505, + 149 + ], + "score": 1.0, + "content": "Xiaodong Liu, Hao Cheng, Pengcheng He, Weizhu Chen, Yu Wang, Hoifung Poon, and Jianfeng Gao.", + "type": "text" + } + ], + "index": 4 + }, + { + "bbox": [ + 115, + 147, + 497, + 159 + ], + "spans": [ + { + "bbox": [ + 115, + 147, + 497, + 159 + ], + "score": 1.0, + "content": "Adversarial training for large neural language models. arXiv preprint arXiv:2004.08994, 2020.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 4.5, + "bbox_fs": [ + 106, + 136, + 505, + 159 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 167, + 506, + 201 + ], + "lines": [ + { + "bbox": [ + 105, + 166, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 505, + 181 + ], + "score": 1.0, + "content": "Yinhan Liu, Myle Ott, Naman Goyal, Jingfei Du, Mandar Joshi, Danqi Chen, Omer Levy, Mike", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 177, + 506, + 192 + ], + "spans": [ + { + "bbox": [ + 114, + 177, + 506, + 192 + ], + "score": 1.0, + "content": "Lewis, Luke Zettlemoyer, and Veselin Stoyanov. Roberta: A robustly optimized bert pretraining", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 189, + 326, + 202 + ], + "spans": [ + { + "bbox": [ + 115, + 189, + 326, + 202 + ], + "score": 1.0, + "content": "approach. arXiv preprint arXiv:1907.11692, 2019c.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7, + "bbox_fs": [ + 105, + 166, + 506, + 202 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 210, + 448, + 222 + ], + "lines": [ + { + "bbox": [ + 105, + 209, + 450, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 450, + 223 + ], + "score": 1.0, + "content": "Ilya Loshchilov and Frank Hutter. Fixing weight decay regularization in adam. 2018.", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 209, + 450, + 223 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 230, + 504, + 253 + ], + "lines": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "spans": [ + { + "bbox": [ + 106, + 230, + 505, + 243 + ], + "score": 1.0, + "content": "Stephen Merity, Caiming Xiong, James Bradbury, and Richard Socher. Pointer sentinel mixture", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 242, + 271, + 253 + ], + "spans": [ + { + "bbox": [ + 115, + 242, + 271, + 253 + ], + "score": 1.0, + "content": "models. arXiv, pp. arXiv–1609, 2016.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10.5, + "bbox_fs": [ + 106, + 230, + 505, + 253 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 262, + 505, + 295 + ], + "lines": [ + { + "bbox": [ + 106, + 262, + 506, + 274 + ], + "spans": [ + { + "bbox": [ + 106, + 262, + 506, + 274 + ], + "score": 1.0, + "content": "Shervin Minaee, Nal Kalchbrenner, Erik Cambria, Narjes Nikzad, Meysam Chenaghlu, and Jian-", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "spans": [ + { + "bbox": [ + 116, + 273, + 505, + 286 + ], + "score": 1.0, + "content": "feng Gao. Deep learning based text classification: A comprehensive review. arXiv preprint", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 116, + 284, + 219, + 295 + ], + "spans": [ + { + "bbox": [ + 116, + 284, + 219, + 295 + ], + "score": 1.0, + "content": "arXiv:2004.03705, 2020.", + "type": "text" + } + ], + "index": 14 + } + ], + "index": 13, + "bbox_fs": [ + 106, + 262, + 506, + 295 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 304, + 505, + 338 + ], + "lines": [ + { + "bbox": [ + 105, + 303, + 505, + 318 + ], + "spans": [ + { + "bbox": [ + 105, + 303, + 505, + 318 + ], + "score": 1.0, + "content": "Takeru Miyato, Shin-ichi Maeda, Masanori Koyama, and Shin Ishii. Virtual adversarial training: a", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 116, + 316, + 505, + 328 + ], + "spans": [ + { + "bbox": [ + 116, + 316, + 505, + 328 + ], + "score": 1.0, + "content": "regularization method for supervised and semi-supervised learning. IEEE transactions on pattern", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 116, + 327, + 356, + 339 + ], + "spans": [ + { + "bbox": [ + 116, + 327, + 356, + 339 + ], + "score": 1.0, + "content": "analysis and machine intelligence, 41(8):1979–1993, 2018.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 16, + "bbox_fs": [ + 105, + 303, + 505, + 339 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 347, + 506, + 392 + ], + "lines": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "spans": [ + { + "bbox": [ + 106, + 347, + 506, + 359 + ], + "score": 1.0, + "content": "Mohammad Taher Pilehvar and Jose Camacho-Collados. Wic: the word-in-context dataset for", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 358, + 506, + 371 + ], + "spans": [ + { + "bbox": [ + 115, + 358, + 506, + 371 + ], + "score": 1.0, + "content": "evaluating context-sensitive meaning representations. In Proceedings of the 2019 Conference of", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 369, + 505, + 383 + ], + "spans": [ + { + "bbox": [ + 115, + 369, + 505, + 383 + ], + "score": 1.0, + "content": "the North American Chapter of the Association for Computational Linguistics: Human Language", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 114, + 380, + 406, + 393 + ], + "spans": [ + { + "bbox": [ + 114, + 380, + 406, + 393 + ], + "score": 1.0, + "content": "Technologies, Volume 1 (Long and Short Papers), pp. 1267–1273, 2019.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19.5, + "bbox_fs": [ + 106, + 347, + 506, + 393 + ] + }, + { + "type": "text", + "bbox": [ + 105, + 400, + 504, + 424 + ], + "lines": [ + { + "bbox": [ + 105, + 399, + 505, + 415 + ], + "spans": [ + { + "bbox": [ + 105, + 399, + 505, + 415 + ], + "score": 1.0, + "content": "Alec Radford, Jeffrey Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 411, + 398, + 424 + ], + "spans": [ + { + "bbox": [ + 116, + 411, + 398, + 424 + ], + "score": 1.0, + "content": "models are unsupervised multitask learners. OpenAI Blog, 1(8), 2019.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 399, + 505, + 424 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 432, + 506, + 477 + ], + "lines": [ + { + "bbox": [ + 105, + 431, + 507, + 445 + ], + "spans": [ + { + "bbox": [ + 105, + 431, + 507, + 445 + ], + "score": 1.0, + "content": "Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena,", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 116, + 444, + 506, + 456 + ], + "spans": [ + { + "bbox": [ + 116, + 444, + 506, + 456 + ], + "score": 1.0, + "content": "Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 115, + 454, + 507, + 466 + ], + "spans": [ + { + "bbox": [ + 115, + 454, + 507, + 466 + ], + "score": 1.0, + "content": "text-to-text transformer. Journal of Machine Learning Research, 21(140):1–67, 2020. URL", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 115, + 466, + 349, + 478 + ], + "spans": [ + { + "bbox": [ + 115, + 466, + 349, + 478 + ], + "score": 1.0, + "content": "http://jmlr.org/papers/v21/20-074.html.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 25.5, + "bbox_fs": [ + 105, + 431, + 507, + 478 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 486, + 505, + 520 + ], + "lines": [ + { + "bbox": [ + 105, + 486, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 105, + 486, + 424, + 499 + ], + "score": 1.0, + "content": "Pranav Rajpurkar, Jian Zhang, Konstantin Lopyrev, and Percy Liang. SQuAD:", + "type": "text" + }, + { + "bbox": [ + 425, + 486, + 464, + 497 + ], + "score": 0.7, + "content": "^ { 1 0 0 , 0 0 0 + }", + "type": "inline_equation" + }, + { + "bbox": [ + 464, + 486, + 505, + 499 + ], + "score": 1.0, + "content": "questions", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 115, + 496, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 115, + 496, + 505, + 510 + ], + "score": 1.0, + "content": "for machine comprehension of text. In Proceedings of the 2016 Conference on Empirical Methods", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 508, + 320, + 520 + ], + "spans": [ + { + "bbox": [ + 115, + 508, + 320, + 520 + ], + "score": 1.0, + "content": "in Natural Language Processing, November 2016.", + "type": "text" + } + ], + "index": 30 + } + ], + "index": 29, + "bbox_fs": [ + 105, + 486, + 505, + 520 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 528, + 505, + 563 + ], + "lines": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 505, + 542 + ], + "score": 1.0, + "content": "Pranav Rajpurkar, Robin Jia, and Percy Liang. Know what you don’t know: Unanswerable questions", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 539, + 506, + 552 + ], + "spans": [ + { + "bbox": [ + 115, + 539, + 506, + 552 + ], + "score": 1.0, + "content": "for squad. In Proceedings of the 56th Annual Meeting of the Association for Computational", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 115, + 550, + 349, + 564 + ], + "spans": [ + { + "bbox": [ + 115, + 550, + 349, + 564 + ], + "score": 1.0, + "content": "Linguistics (Volume 2: Short Papers), pp. 784–789, 2018.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 528, + 506, + 564 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 570, + 505, + 594 + ], + "lines": [ + { + "bbox": [ + 106, + 571, + 506, + 583 + ], + "spans": [ + { + "bbox": [ + 106, + 571, + 506, + 583 + ], + "score": 1.0, + "content": "Melissa Roemmele, Cosmin Adrian Bejan, and Andrew S. Gordon. Choice of plausible alternatives:", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 116, + 582, + 504, + 594 + ], + "spans": [ + { + "bbox": [ + 116, + 582, + 504, + 594 + ], + "score": 1.0, + "content": "An evaluation of commonsense causal reasoning. In 2011 AAAI Spring Symposium Series, 2011.", + "type": "text" + } + ], + "index": 35 + } + ], + "index": 34.5, + "bbox_fs": [ + 106, + 571, + 506, + 594 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 602, + 505, + 636 + ], + "lines": [ + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 616 + ], + "score": 1.0, + "content": "Imanol Schlag, Paul Smolensky, Roland Fernandez, Nebojsa Jojic, Jürgen Schmidhuber, and Jianfeng", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 116, + 614, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 116, + 614, + 505, + 626 + ], + "score": 1.0, + "content": "Gao. Enhancing the transformer with explicit relational encoding for math problem solving. arXiv", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 115, + 625, + 254, + 636 + ], + "spans": [ + { + "bbox": [ + 115, + 625, + 254, + 636 + ], + "score": 1.0, + "content": "preprint arXiv:1910.06611, 2019.", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 37, + "bbox_fs": [ + 105, + 601, + 505, + 636 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 645, + 506, + 689 + ], + "lines": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 644, + 506, + 658 + ], + "score": 1.0, + "content": "Peter Shaw, Jakob Uszkoreit, and Ashish Vaswani. Self-attention with relative position representations.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 115, + 656, + 506, + 668 + ], + "spans": [ + { + "bbox": [ + 115, + 656, + 506, + 668 + ], + "score": 1.0, + "content": "In Proceedings of the 2018 Conference of the North American Chapter of the Association for", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 666, + 507, + 680 + ], + "spans": [ + { + "bbox": [ + 115, + 666, + 507, + 680 + ], + "score": 1.0, + "content": "Computational Linguistics: Human Language Technologies, Volume 2 (Short Papers), pp. 464–468,", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 678, + 142, + 689 + ], + "spans": [ + { + "bbox": [ + 115, + 678, + 142, + 689 + ], + "score": 1.0, + "content": "2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 40.5, + "bbox_fs": [ + 105, + 644, + 507, + 689 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 699, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 106, + 698, + 507, + 711 + ], + "spans": [ + { + "bbox": [ + 106, + 698, + 507, + 711 + ], + "score": 1.0, + "content": "Tao Shen, Yi Mao, Pengcheng He, Guodong Long, Adam Trischler, and Weizhu Chen. Ex-", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 116, + 710, + 505, + 722 + ], + "score": 1.0, + "content": "ploiting structured knowledge in text via graph-guided representation learning. arXiv preprint", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 720, + 219, + 732 + ], + "spans": [ + { + "bbox": [ + 115, + 720, + 219, + 732 + ], + "score": 1.0, + "content": "arXiv:2004.14224, 2020.", + "type": "text" + } + ], + "index": 45 + } + ], + "index": 44, + "bbox_fs": [ + 106, + 698, + 507, + 732 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "Catanzaro. Megatron-lm: Training multi-billion parameter language models using gpu model", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 329, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 329, + 117 + ], + "score": 1.0, + "content": "parallelism. arXiv preprint arXiv:1909.08053, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Paul Smolensky. Tensor product variable binding and the representation of symbolic structures in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 397, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 397, + 146 + ], + "score": 1.0, + "content": "connectionist systems. Artificial intelligence, 46(1-2):159–216, 1990.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 506, + 197 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 470, + 166 + ], + "score": 1.0, + "content": "Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher D Manning, Andrew", + "type": "text" + }, + { + "bbox": [ + 471, + 154, + 485, + 165 + ], + "score": 0.61, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 153, + 505, + 166 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 506, + 176 + ], + "score": 1.0, + "content": "Christopher Potts. Recursive deep models for semantic compositionality over a sentiment treebank.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 174, + 507, + 189 + ], + "spans": [ + { + "bbox": [ + 114, + 174, + 507, + 189 + ], + "score": 1.0, + "content": "In Proceedings of the 2013 conference on empirical methods in natural language processing, pp.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 190, + 197 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 190, + 197 + ], + "score": 1.0, + "content": "1631–1642, 2013.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5 + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 506, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration. arXiv", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 227, + 254, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 254, + 239 + ], + "score": 1.0, + "content": "preprint arXiv:1904.09223, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10 + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 259 + ], + "score": 1.0, + "content": "Trieu H Trinh and Quoc V Le. A simple method for commonsense reasoning. arXiv preprint", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 257, + 219, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 257, + 219, + 267 + ], + "score": 1.0, + "content": "arXiv:1806.02847, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5 + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 298, + 287, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 287, + 309 + ], + "score": 1.0, + "content": "processing systems, pp. 5998–6008, 2017.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15 + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "score": 1.0, + "content": "Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael, Felix Hill, Omer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 326, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 114, + 326, + 506, + 342 + ], + "score": 1.0, + "content": "Levy, and Samuel Bowman. Superglue: A stickier benchmark for general-purpose language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "understanding systems. In Advances in neural information processing systems, pp. 3266–3280,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 349, + 147, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 147, + 362 + ], + "score": 1.0, + "content": "2019a.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5 + }, + { + "type": "text", + "bbox": [ + 108, + 367, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 381 + ], + "score": 1.0, + "content": "Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Glue:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "score": 1.0, + "content": "A multi-task benchmark and analysis platform for natural language understanding. In 7th Interna-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 390, + 389, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 390, + 389, + 403 + ], + "score": 1.0, + "content": "tional Conference on Learning Representations, ICLR 2019, 2019b.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 504, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 422 + ], + "score": 1.0, + "content": "Wei Wang, Bin Bi, Ming Yan, Chen Wu, Zuyi Bao, Liwei Peng, and Luo Si. Structbert: Incor-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "porating language structures into pre-training for deep language understanding. arXiv preprint", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 431, + 223, + 443 + ], + "spans": [ + { + "bbox": [ + 116, + 431, + 223, + 443 + ], + "score": 1.0, + "content": "arXiv:1908.04577, 2019c.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25 + }, + { + "type": "text", + "bbox": [ + 104, + 449, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 507, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 507, + 464 + ], + "score": 1.0, + "content": "Alex Warstadt, Amanpreet Singh, and Samuel R Bowman. Neural network acceptability judgments.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 461, + 278, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 278, + 473 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.12471, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5 + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 506, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Adina Williams, Nikita Nangia, and Samuel Bowman. A broad-coverage challenge corpus for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "sentence understanding through inference. In Proceedings of the 2018 Conference of the North", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 502, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 502, + 506, + 514 + ], + "score": 1.0, + "content": "American Chapter of the Association for Computational Linguistics: Human Language Technolo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 513, + 507, + 526 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 507, + 526 + ], + "score": 1.0, + "content": "gies, Volume 1 (Long Papers), pp. 1112–1122. Association for Computational Linguistics, 2018.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 523, + 359, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 359, + 537 + ], + "score": 1.0, + "content": "URL http://aclweb.org/anthology/N18-1101.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31 + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 553, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 553, + 506, + 567 + ], + "score": 1.0, + "content": "Xlnet: Generalized autoregressive pretraining for language understanding. In Advances in neural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 564, + 337, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 337, + 577 + ], + "score": 1.0, + "content": "information processing systems, pp. 5754–5764, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35 + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 506, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "Rowan Zellers, Yonatan Bisk, Roy Schwartz, and Yejin Choi. Swag: A large-scale adversarial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "dataset for grounded commonsense inference. In Proceedings of the 2018 Conference on Empirical", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 606, + 362, + 618 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 362, + 618 + ], + "score": 1.0, + "content": "Methods in Natural Language Processing, pp. 93–104, 2018.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 624, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 507, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 507, + 638 + ], + "score": 1.0, + "content": "Sheng Zhang, Xiaodong Liu, Jingjing Liu, Jianfeng Gao, Kevin Duh, and Benjamin Van Durme.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 115, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "ReCoRD: Bridging the gap between human and machine commonsense reading comprehension.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 646, + 253, + 658 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 253, + 658 + ], + "score": 1.0, + "content": "arXiv preprint 1810.12885, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41 + }, + { + "type": "text", + "bbox": [ + 108, + 665, + 505, + 709 + ], + "lines": [ + { + "bbox": [ + 107, + 665, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 107, + 665, + 505, + 677 + ], + "score": 1.0, + "content": "Yukun Zhu, Ryan Kiros, Rich Zemel, Ruslan Salakhutdinov, Raquel Urtasun, Antonio Torralba, and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "Sanja Fidler. Aligning books and movies: Towards story-like visual explanations by watching", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "movies and reading books. In Proceedings of the IEEE international conference on computer", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 699, + 215, + 710 + ], + "spans": [ + { + "bbox": [ + 116, + 699, + 215, + 710 + ], + "score": 1.0, + "content": "vision, pp. 19–27, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5 + } + ], + "page_idx": 12, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 109, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 96 + ], + "score": 1.0, + "content": "Mohammad Shoeybi, Mostofa Patwary, Raul Puri, Patrick LeGresley, Jared Casper, and Bryan", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 116, + 93, + 505, + 107 + ], + "spans": [ + { + "bbox": [ + 116, + 93, + 505, + 107 + ], + "score": 1.0, + "content": "Catanzaro. Megatron-lm: Training multi-billion parameter language models using gpu model", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 116, + 105, + 329, + 117 + ], + "spans": [ + { + "bbox": [ + 116, + 105, + 329, + 117 + ], + "score": 1.0, + "content": "parallelism. arXiv preprint arXiv:1909.08053, 2019.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 123, + 505, + 146 + ], + "lines": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "spans": [ + { + "bbox": [ + 105, + 123, + 505, + 136 + ], + "score": 1.0, + "content": "Paul Smolensky. Tensor product variable binding and the representation of symbolic structures in", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 115, + 135, + 397, + 146 + ], + "spans": [ + { + "bbox": [ + 115, + 135, + 397, + 146 + ], + "score": 1.0, + "content": "connectionist systems. Artificial intelligence, 46(1-2):159–216, 1990.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 123, + 505, + 146 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 153, + 506, + 197 + ], + "lines": [ + { + "bbox": [ + 105, + 153, + 505, + 166 + ], + "spans": [ + { + "bbox": [ + 105, + 153, + 470, + 166 + ], + "score": 1.0, + "content": "Richard Socher, Alex Perelygin, Jean Wu, Jason Chuang, Christopher D Manning, Andrew", + "type": "text" + }, + { + "bbox": [ + 471, + 154, + 485, + 165 + ], + "score": 0.61, + "content": "\\mathrm { N g }", + "type": "inline_equation" + }, + { + "bbox": [ + 485, + 153, + 505, + 166 + ], + "score": 1.0, + "content": ", and", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 115, + 164, + 506, + 176 + ], + "spans": [ + { + "bbox": [ + 115, + 164, + 506, + 176 + ], + "score": 1.0, + "content": "Christopher Potts. Recursive deep models for semantic compositionality over a sentiment treebank.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 114, + 174, + 507, + 189 + ], + "spans": [ + { + "bbox": [ + 114, + 174, + 507, + 189 + ], + "score": 1.0, + "content": "In Proceedings of the 2013 conference on empirical methods in natural language processing, pp.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 115, + 186, + 190, + 197 + ], + "spans": [ + { + "bbox": [ + 115, + 186, + 190, + 197 + ], + "score": 1.0, + "content": "1631–1642, 2013.", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 6.5, + "bbox_fs": [ + 105, + 153, + 507, + 197 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 204, + 506, + 239 + ], + "lines": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "spans": [ + { + "bbox": [ + 106, + 204, + 505, + 218 + ], + "score": 1.0, + "content": "Yu Sun, Shuohuan Wang, Yukun Li, Shikun Feng, Xuyi Chen, Han Zhang, Xin Tian, Danxiang Zhu,", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "spans": [ + { + "bbox": [ + 115, + 216, + 505, + 228 + ], + "score": 1.0, + "content": "Hao Tian, and Hua Wu. Ernie: Enhanced representation through knowledge integration. arXiv", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 115, + 227, + 254, + 239 + ], + "spans": [ + { + "bbox": [ + 115, + 227, + 254, + 239 + ], + "score": 1.0, + "content": "preprint arXiv:1904.09223, 2019.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 10, + "bbox_fs": [ + 106, + 204, + 505, + 239 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 245, + 504, + 268 + ], + "lines": [ + { + "bbox": [ + 105, + 245, + 505, + 259 + ], + "spans": [ + { + "bbox": [ + 105, + 245, + 505, + 259 + ], + "score": 1.0, + "content": "Trieu H Trinh and Quoc V Le. A simple method for commonsense reasoning. arXiv preprint", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 116, + 257, + 219, + 267 + ], + "spans": [ + { + "bbox": [ + 116, + 257, + 219, + 267 + ], + "score": 1.0, + "content": "arXiv:1806.02847, 2018.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 12.5, + "bbox_fs": [ + 105, + 245, + 505, + 267 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 275, + 505, + 309 + ], + "lines": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "spans": [ + { + "bbox": [ + 105, + 275, + 505, + 289 + ], + "score": 1.0, + "content": "Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N Gomez, Łukasz", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 115, + 286, + 505, + 299 + ], + "spans": [ + { + "bbox": [ + 115, + 286, + 505, + 299 + ], + "score": 1.0, + "content": "Kaiser, and Illia Polosukhin. Attention is all you need. In Advances in neural information", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 115, + 298, + 287, + 309 + ], + "spans": [ + { + "bbox": [ + 115, + 298, + 287, + 309 + ], + "score": 1.0, + "content": "processing systems, pp. 5998–6008, 2017.", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 15, + "bbox_fs": [ + 105, + 275, + 505, + 309 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 316, + 506, + 361 + ], + "lines": [ + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "spans": [ + { + "bbox": [ + 106, + 317, + 506, + 329 + ], + "score": 1.0, + "content": "Alex Wang, Yada Pruksachatkun, Nikita Nangia, Amanpreet Singh, Julian Michael, Felix Hill, Omer", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 114, + 326, + 506, + 342 + ], + "spans": [ + { + "bbox": [ + 114, + 326, + 506, + 342 + ], + "score": 1.0, + "content": "Levy, and Samuel Bowman. Superglue: A stickier benchmark for general-purpose language", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 115, + 338, + 506, + 351 + ], + "spans": [ + { + "bbox": [ + 115, + 338, + 506, + 351 + ], + "score": 1.0, + "content": "understanding systems. In Advances in neural information processing systems, pp. 3266–3280,", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 115, + 349, + 147, + 362 + ], + "spans": [ + { + "bbox": [ + 115, + 349, + 147, + 362 + ], + "score": 1.0, + "content": "2019a.", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 18.5, + "bbox_fs": [ + 106, + 317, + 506, + 362 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 367, + 505, + 402 + ], + "lines": [ + { + "bbox": [ + 106, + 367, + 506, + 381 + ], + "spans": [ + { + "bbox": [ + 106, + 367, + 506, + 381 + ], + "score": 1.0, + "content": "Alex Wang, Amanpreet Singh, Julian Michael, Felix Hill, Omer Levy, and Samuel Bowman. Glue:", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "spans": [ + { + "bbox": [ + 115, + 379, + 506, + 392 + ], + "score": 1.0, + "content": "A multi-task benchmark and analysis platform for natural language understanding. In 7th Interna-", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 116, + 390, + 389, + 403 + ], + "spans": [ + { + "bbox": [ + 116, + 390, + 389, + 403 + ], + "score": 1.0, + "content": "tional Conference on Learning Representations, ICLR 2019, 2019b.", + "type": "text" + } + ], + "index": 23 + } + ], + "index": 22, + "bbox_fs": [ + 106, + 367, + 506, + 403 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 408, + 504, + 442 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 422 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 422 + ], + "score": 1.0, + "content": "Wei Wang, Bin Bi, Ming Yan, Chen Wu, Zuyi Bao, Liwei Peng, and Luo Si. Structbert: Incor-", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "spans": [ + { + "bbox": [ + 115, + 420, + 505, + 433 + ], + "score": 1.0, + "content": "porating language structures into pre-training for deep language understanding. arXiv preprint", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 116, + 431, + 223, + 443 + ], + "spans": [ + { + "bbox": [ + 116, + 431, + 223, + 443 + ], + "score": 1.0, + "content": "arXiv:1908.04577, 2019c.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 25, + "bbox_fs": [ + 106, + 408, + 506, + 443 + ] + }, + { + "type": "text", + "bbox": [ + 104, + 449, + 505, + 473 + ], + "lines": [ + { + "bbox": [ + 105, + 448, + 507, + 464 + ], + "spans": [ + { + "bbox": [ + 105, + 448, + 507, + 464 + ], + "score": 1.0, + "content": "Alex Warstadt, Amanpreet Singh, and Samuel R Bowman. Neural network acceptability judgments.", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 116, + 461, + 278, + 473 + ], + "spans": [ + { + "bbox": [ + 116, + 461, + 278, + 473 + ], + "score": 1.0, + "content": "arXiv preprint arXiv:1805.12471, 2018.", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 27.5, + "bbox_fs": [ + 105, + 448, + 507, + 473 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 479, + 506, + 536 + ], + "lines": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "spans": [ + { + "bbox": [ + 106, + 480, + 505, + 492 + ], + "score": 1.0, + "content": "Adina Williams, Nikita Nangia, and Samuel Bowman. A broad-coverage challenge corpus for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "spans": [ + { + "bbox": [ + 115, + 491, + 505, + 504 + ], + "score": 1.0, + "content": "sentence understanding through inference. In Proceedings of the 2018 Conference of the North", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 115, + 502, + 506, + 514 + ], + "spans": [ + { + "bbox": [ + 115, + 502, + 506, + 514 + ], + "score": 1.0, + "content": "American Chapter of the Association for Computational Linguistics: Human Language Technolo-", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 115, + 513, + 507, + 526 + ], + "spans": [ + { + "bbox": [ + 115, + 513, + 507, + 526 + ], + "score": 1.0, + "content": "gies, Volume 1 (Long Papers), pp. 1112–1122. Association for Computational Linguistics, 2018.", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 116, + 523, + 359, + 537 + ], + "spans": [ + { + "bbox": [ + 116, + 523, + 359, + 537 + ], + "score": 1.0, + "content": "URL http://aclweb.org/anthology/N18-1101.", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 31, + "bbox_fs": [ + 106, + 480, + 507, + 537 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 542, + 506, + 577 + ], + "lines": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "Zhilin Yang, Zihang Dai, Yiming Yang, Jaime Carbonell, Russ R Salakhutdinov, and Quoc V Le.", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 115, + 553, + 506, + 567 + ], + "spans": [ + { + "bbox": [ + 115, + 553, + 506, + 567 + ], + "score": 1.0, + "content": "Xlnet: Generalized autoregressive pretraining for language understanding. In Advances in neural", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 115, + 564, + 337, + 577 + ], + "spans": [ + { + "bbox": [ + 115, + 564, + 337, + 577 + ], + "score": 1.0, + "content": "information processing systems, pp. 5754–5764, 2019.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 35, + "bbox_fs": [ + 105, + 542, + 506, + 577 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 583, + 506, + 618 + ], + "lines": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "spans": [ + { + "bbox": [ + 105, + 583, + 505, + 596 + ], + "score": 1.0, + "content": "Rowan Zellers, Yonatan Bisk, Roy Schwartz, and Yejin Choi. Swag: A large-scale adversarial", + "type": "text" + } + ], + "index": 37 + }, + { + "bbox": [ + 116, + 595, + 505, + 608 + ], + "spans": [ + { + "bbox": [ + 116, + 595, + 505, + 608 + ], + "score": 1.0, + "content": "dataset for grounded commonsense inference. In Proceedings of the 2018 Conference on Empirical", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 115, + 606, + 362, + 618 + ], + "spans": [ + { + "bbox": [ + 115, + 606, + 362, + 618 + ], + "score": 1.0, + "content": "Methods in Natural Language Processing, pp. 93–104, 2018.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38, + "bbox_fs": [ + 105, + 583, + 505, + 618 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 624, + 505, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 623, + 507, + 638 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 507, + 638 + ], + "score": 1.0, + "content": "Sheng Zhang, Xiaodong Liu, Jingjing Liu, Jianfeng Gao, Kevin Duh, and Benjamin Van Durme.", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 115, + 635, + 506, + 648 + ], + "spans": [ + { + "bbox": [ + 115, + 635, + 506, + 648 + ], + "score": 1.0, + "content": "ReCoRD: Bridging the gap between human and machine commonsense reading comprehension.", + "type": "text" + } + ], + "index": 41 + }, + { + "bbox": [ + 115, + 646, + 253, + 658 + ], + "spans": [ + { + "bbox": [ + 115, + 646, + 253, + 658 + ], + "score": 1.0, + "content": "arXiv preprint 1810.12885, 2018.", + "type": "text" + } + ], + "index": 42 + } + ], + "index": 41, + "bbox_fs": [ + 105, + 623, + 507, + 658 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 665, + 505, + 709 + ], + "lines": [ + { + "bbox": [ + 107, + 665, + 505, + 677 + ], + "spans": [ + { + "bbox": [ + 107, + 665, + 505, + 677 + ], + "score": 1.0, + "content": "Yukun Zhu, Ryan Kiros, Rich Zemel, Ruslan Salakhutdinov, Raquel Urtasun, Antonio Torralba, and", + "type": "text" + } + ], + "index": 43 + }, + { + "bbox": [ + 115, + 675, + 505, + 690 + ], + "spans": [ + { + "bbox": [ + 115, + 675, + 505, + 690 + ], + "score": 1.0, + "content": "Sanja Fidler. Aligning books and movies: Towards story-like visual explanations by watching", + "type": "text" + } + ], + "index": 44 + }, + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 115, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "movies and reading books. In Proceedings of the IEEE international conference on computer", + "type": "text" + } + ], + "index": 45 + }, + { + "bbox": [ + 116, + 699, + 215, + 710 + ], + "spans": [ + { + "bbox": [ + 116, + 699, + 215, + 710 + ], + "score": 1.0, + "content": "vision, pp. 19–27, 2015.", + "type": "text" + } + ], + "index": 46 + } + ], + "index": 44.5, + "bbox_fs": [ + 107, + 665, + 505, + 710 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 183, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 106, + 138, + 505, + 462 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 109, + 173, + 120 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 108, + 174, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 174, + 122 + ], + "score": 1.0, + "content": "A.1 DATASET", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 106, + 138, + 505, + 462 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 138, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 462 + ], + "score": 0.978, + "html": "
CorpusTask#Train #Dev#Test #Label Metrics
General Language Understanding Evaluation (GLUE)
CoLAAcceptability8.5k1k1k2Matthews corr
SSTSentiment67k8721.8k2Accuracy
MNLINLI393k20k20k3Accuracy
RTENLI2.5k2763k2Accuracy
WNLINLI634711462Accuracy
QQPParaphrase364k40k391k2Accuracy/F1
MRPCParaphrase3.7k4081.7k2Accuracy/F1
QNLIQA/NLI108k5.7k5.7k2Accuracy
STS-BSimilarity7k1.5k1.4k1Pearson/Spearman corr
SuperGLUE
WSCCoreference554k1041462Accuracy
BoolQQA9,4273,2703,2452Accuracy
COPAQA400k1005002Accuracy
CBNLI250572503Accuracy/F1
RTENLI2.5k2763k2Accuracy
WiCWSD2.5k2763k2Accuracy
ReCoRDMRC101k10k10k-Exact Match (EM)/F1
MultiRCMultiple choice5,1009531,800Exact Match (EM)/F1
Question Answering
SQuAD v1.1MRC87.6k10.5k9.5kExact Match (EM)/F1
SQuAD v2.0MRC130.3k11.9k8.9k-ExactMatch (EM)/F1
RACEMRC87,8664,8874,9344Accuracy
SWAGMultiple choice73.5k20k20k4Accuracy
Token Classification
CoNLL 2003NER14,9873,4663,6848F1
", + "type": "table", + "image_path": "49dd89986597a438a7965c1e4de95f9b6a6c0d1c23192ad3b8b90aceb716076d.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 106, + 138, + 505, + 246.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 246.0, + 505, + 354.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 354.0, + 505, + 462.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 168, + 475, + 441, + 487 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 474, + 441, + 488 + ], + "spans": [ + { + "bbox": [ + 169, + 474, + 441, + 488 + ], + "score": 1.0, + "content": "Table 6: Summary information of the NLP application benchmarks.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 506, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "‚ GLUE. The General Language Understanding Evaluation (GLUE) benchmark is a collection of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 516, + 507, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 507, + 529 + ], + "score": 1.0, + "content": "nine natural language understanding (NLU) tasks. As shown in Table 6, it includes question answer-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "ing (Rajpurkar et al., 2016), linguistic acceptability (Warstadt et al., 2018), sentiment analysis (Socher", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "et al., 2013), text similarity (Cer et al., 2017), paraphrase detection (Dolan & Brockett, 2005), and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "natural language inference (NLI) (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al.,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "2007; Bentivogli et al., 2009; Levesque et al., 2012; Williams et al., 2018). The diversity of the tasks", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 571, + 477, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 477, + 583 + ], + "score": 1.0, + "content": "makes GLUE very suitable for evaluating the generalization and robustness of NLU models.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "‚ SuperGLUE. SuperGLUE is an extension of the GLUE benchmark, but more difficult, which is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 598, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 506, + 613 + ], + "score": 1.0, + "content": "a collection of eight NLU tasks. It covers a various of tasks including question answering (Zhang", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "score": 1.0, + "content": "et al., 2018; Clark et al., 2019; Khashabi et al., 2018), natural language inference (Dagan et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009; De Marneffe et al.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "2019), coreference resolution (Levesque et al., 2012) and word sense disambiguation (Pilehvar &", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 642, + 216, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 216, + 655 + ], + "score": 1.0, + "content": "Camacho-Collados, 2019).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5 + }, + { + "type": "text", + "bbox": [ + 106, + 660, + 502, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "‚ RACE is a large-scale machine reading comprehension dataset, collected from English examinations", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 671, + 470, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 470, + 683 + ], + "score": 1.0, + "content": "in China, which are designed for middle school and high school students (Lai et al., 2017).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5 + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "‚ SQuAD v1.1/v2.0 is the Stanford Question Answering Dataset (SQuAD) v1.1 and v2.0 (Rajpurkar", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "et al., 2016; 2018) are popular machine reading comprehension benchmarks. Their passages come", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "from approximately 500 Wikipedia articles and the questions and answers are obtained by crowd-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 721, + 493, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 199, + 734 + ], + "score": 1.0, + "content": "sourcing. The SQuAD", + "type": "text" + }, + { + "bbox": [ + 199, + 721, + 218, + 731 + ], + "score": 0.58, + "content": "\\mathrm { v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 721, + 493, + 734 + ], + "score": 1.0, + "content": "dataset includes unanswerable questions about the same paragraphs.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5 + } + ], + "page_idx": 13, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 752, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 81, + 183, + 93 + ], + "lines": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "spans": [ + { + "bbox": [ + 106, + 79, + 184, + 96 + ], + "score": 1.0, + "content": "A APPENDIX", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "table", + "bbox": [ + 106, + 138, + 505, + 462 + ], + "blocks": [ + { + "type": "table_caption", + "bbox": [ + 107, + 109, + 173, + 120 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 108, + 174, + 122 + ], + "spans": [ + { + "bbox": [ + 106, + 108, + 174, + 122 + ], + "score": 1.0, + "content": "A.1 DATASET", + "type": "text" + } + ], + "index": 1 + } + ], + "index": 1 + }, + { + "type": "table_body", + "bbox": [ + 106, + 138, + 505, + 462 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 138, + 505, + 462 + ], + "spans": [ + { + "bbox": [ + 106, + 138, + 505, + 462 + ], + "score": 0.978, + "html": "
CorpusTask#Train #Dev#Test #Label Metrics
General Language Understanding Evaluation (GLUE)
CoLAAcceptability8.5k1k1k2Matthews corr
SSTSentiment67k8721.8k2Accuracy
MNLINLI393k20k20k3Accuracy
RTENLI2.5k2763k2Accuracy
WNLINLI634711462Accuracy
QQPParaphrase364k40k391k2Accuracy/F1
MRPCParaphrase3.7k4081.7k2Accuracy/F1
QNLIQA/NLI108k5.7k5.7k2Accuracy
STS-BSimilarity7k1.5k1.4k1Pearson/Spearman corr
SuperGLUE
WSCCoreference554k1041462Accuracy
BoolQQA9,4273,2703,2452Accuracy
COPAQA400k1005002Accuracy
CBNLI250572503Accuracy/F1
RTENLI2.5k2763k2Accuracy
WiCWSD2.5k2763k2Accuracy
ReCoRDMRC101k10k10k-Exact Match (EM)/F1
MultiRCMultiple choice5,1009531,800Exact Match (EM)/F1
Question Answering
SQuAD v1.1MRC87.6k10.5k9.5kExact Match (EM)/F1
SQuAD v2.0MRC130.3k11.9k8.9k-ExactMatch (EM)/F1
RACEMRC87,8664,8874,9344Accuracy
SWAGMultiple choice73.5k20k20k4Accuracy
Token Classification
CoNLL 2003NER14,9873,4663,6848F1
", + "type": "table", + "image_path": "49dd89986597a438a7965c1e4de95f9b6a6c0d1c23192ad3b8b90aceb716076d.jpg" + } + ] + } + ], + "index": 3, + "virtual_lines": [ + { + "bbox": [ + 106, + 138, + 505, + 246.0 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 106, + 246.0, + 505, + 354.0 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 106, + 354.0, + 505, + 462.0 + ], + "spans": [], + "index": 4 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 168, + 475, + 441, + 487 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 169, + 474, + 441, + 488 + ], + "spans": [ + { + "bbox": [ + 169, + 474, + 441, + 488 + ], + "score": 1.0, + "content": "Table 6: Summary information of the NLP application benchmarks.", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + } + ], + "index": 3 + }, + { + "type": "text", + "bbox": [ + 106, + 505, + 506, + 582 + ], + "lines": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "spans": [ + { + "bbox": [ + 106, + 505, + 506, + 518 + ], + "score": 1.0, + "content": "‚ GLUE. The General Language Understanding Evaluation (GLUE) benchmark is a collection of", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 516, + 507, + 529 + ], + "spans": [ + { + "bbox": [ + 105, + 516, + 507, + 529 + ], + "score": 1.0, + "content": "nine natural language understanding (NLU) tasks. As shown in Table 6, it includes question answer-", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "spans": [ + { + "bbox": [ + 105, + 528, + 506, + 540 + ], + "score": 1.0, + "content": "ing (Rajpurkar et al., 2016), linguistic acceptability (Warstadt et al., 2018), sentiment analysis (Socher", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "spans": [ + { + "bbox": [ + 105, + 538, + 506, + 551 + ], + "score": 1.0, + "content": "et al., 2013), text similarity (Cer et al., 2017), paraphrase detection (Dolan & Brockett, 2005), and", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "spans": [ + { + "bbox": [ + 105, + 549, + 506, + 562 + ], + "score": 1.0, + "content": "natural language inference (NLI) (Dagan et al., 2006; Bar-Haim et al., 2006; Giampiccolo et al.,", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "spans": [ + { + "bbox": [ + 106, + 560, + 506, + 573 + ], + "score": 1.0, + "content": "2007; Bentivogli et al., 2009; Levesque et al., 2012; Williams et al., 2018). The diversity of the tasks", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 571, + 477, + 583 + ], + "spans": [ + { + "bbox": [ + 105, + 571, + 477, + 583 + ], + "score": 1.0, + "content": "makes GLUE very suitable for evaluating the generalization and robustness of NLU models.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 9, + "bbox_fs": [ + 105, + 505, + 507, + 583 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 587, + 505, + 654 + ], + "lines": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 105, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "‚ SuperGLUE. SuperGLUE is an extension of the GLUE benchmark, but more difficult, which is", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 104, + 598, + 506, + 613 + ], + "spans": [ + { + "bbox": [ + 104, + 598, + 506, + 613 + ], + "score": 1.0, + "content": "a collection of eight NLU tasks. It covers a various of tasks including question answering (Zhang", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 507, + 623 + ], + "score": 1.0, + "content": "et al., 2018; Clark et al., 2019; Khashabi et al., 2018), natural language inference (Dagan et al.,", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 621, + 506, + 633 + ], + "score": 1.0, + "content": "2006; Bar-Haim et al., 2006; Giampiccolo et al., 2007; Bentivogli et al., 2009; De Marneffe et al.,", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "spans": [ + { + "bbox": [ + 105, + 631, + 506, + 645 + ], + "score": 1.0, + "content": "2019), coreference resolution (Levesque et al., 2012) and word sense disambiguation (Pilehvar &", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 642, + 216, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 642, + 216, + 655 + ], + "score": 1.0, + "content": "Camacho-Collados, 2019).", + "type": "text" + } + ], + "index": 18 + } + ], + "index": 15.5, + "bbox_fs": [ + 104, + 587, + 507, + 655 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 660, + 502, + 682 + ], + "lines": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "spans": [ + { + "bbox": [ + 106, + 659, + 505, + 672 + ], + "score": 1.0, + "content": "‚ RACE is a large-scale machine reading comprehension dataset, collected from English examinations", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 671, + 470, + 683 + ], + "spans": [ + { + "bbox": [ + 105, + 671, + 470, + 683 + ], + "score": 1.0, + "content": "in China, which are designed for middle school and high school students (Lai et al., 2017).", + "type": "text" + } + ], + "index": 20 + } + ], + "index": 19.5, + "bbox_fs": [ + 105, + 659, + 505, + 683 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 687, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "spans": [ + { + "bbox": [ + 105, + 687, + 505, + 700 + ], + "score": 1.0, + "content": "‚ SQuAD v1.1/v2.0 is the Stanford Question Answering Dataset (SQuAD) v1.1 and v2.0 (Rajpurkar", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 505, + 711 + ], + "score": 1.0, + "content": "et al., 2016; 2018) are popular machine reading comprehension benchmarks. Their passages come", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 507, + 723 + ], + "score": 1.0, + "content": "from approximately 500 Wikipedia articles and the questions and answers are obtained by crowd-", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 721, + 493, + 734 + ], + "spans": [ + { + "bbox": [ + 105, + 721, + 199, + 734 + ], + "score": 1.0, + "content": "sourcing. The SQuAD", + "type": "text" + }, + { + "bbox": [ + 199, + 721, + 218, + 731 + ], + "score": 0.58, + "content": "\\mathrm { v } 2 . 0", + "type": "inline_equation" + }, + { + "bbox": [ + 218, + 721, + 493, + 734 + ], + "score": 1.0, + "content": "dataset includes unanswerable questions about the same paragraphs.", + "type": "text" + } + ], + "index": 24 + } + ], + "index": 22.5, + "bbox_fs": [ + 105, + 687, + 507, + 734 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "‚ SWAG is a large-scale adversarial dataset for the task of grounded commonsense inference, which", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "unifies natural language inference and physically grounded reasoning (Zellers et al., 2018). SWAG", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 386, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 151, + 117 + ], + "score": 1.0, + "content": "consists of", + "type": "text" + }, + { + "bbox": [ + 152, + 105, + 173, + 115 + ], + "score": 0.46, + "content": "1 1 3 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 105, + 386, + 117 + ], + "score": 1.0, + "content": "multiple choice questions about grounded situations.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1 + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 504, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 505, + 135 + ], + "score": 1.0, + "content": "‚ CoNLL 2003 is an English dataset consisting of text from a wide variety of sources. It has 4 types", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 174, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 174, + 145 + ], + "score": 1.0, + "content": "of named entity.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + }, + { + "type": "title", + "bbox": [ + 108, + 158, + 239, + 170 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 240, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 240, + 171 + ], + "score": 1.0, + "content": "A.2 PRE-TRAINING DATASET", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 179, + 506, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 192 + ], + "score": 1.0, + "content": "For DeBERTa pre-training, we use Wikipedia (English Wikipedia dump8; 12GB), BookCorpus (Zhu", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 190, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 506, + 204 + ], + "score": 1.0, + "content": "et al., 2015) 9 (6GB), OPENWEBTEXT (public Reddit content (Gokaslan & Cohen, 2019); 38GB)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 507, + 215 + ], + "score": 1.0, + "content": "and STORIES10 (a subset of CommonCrawl (Trinh & Le, 2018); 31GB). The total data size after", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 456, + 227 + ], + "score": 1.0, + "content": "data deduplication(Shoeybi et al., 2019) is about 78GB. For pre-training, we also sample", + "type": "text" + }, + { + "bbox": [ + 456, + 213, + 471, + 223 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 211, + 506, + 227 + ], + "score": 1.0, + "content": "training", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "data as the validation set to monitor the training process. Table 7 compares datasets used in different", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 186, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 186, + 246 + ], + "score": 1.0, + "content": "pre-trained models.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5 + }, + { + "type": "table", + "bbox": [ + 106, + 257, + 509, + 344 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 257, + 509, + 344 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 509, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 509, + 344 + ], + "score": 0.962, + "html": "
ModelWiki+Book16GBOpenWebText38GBStories31GBCC-News76GBGiga516GBClueWeb19GBCommon Crawl110GB
BERT
XLNet(24号
RoBERTa
DeBERTaDeBERTa1.5B√√广
", + "type": "table", + "image_path": "82d65ddb5bef045b250a155352d885f78422f0b70c2040a4e92b41c803606f34.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 106, + 257, + 509, + 286.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 286.0, + 509, + 315.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 315.0, + 509, + 344.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 214, + 352, + 396, + 364 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 213, + 350, + 397, + 366 + ], + "spans": [ + { + "bbox": [ + 213, + 350, + 397, + 366 + ], + "score": 1.0, + "content": "Table 7: Comparison of the pre-training data.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + } + ], + "index": 14.0 + }, + { + "type": "title", + "bbox": [ + 108, + 386, + 251, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 252, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 252, + 399 + ], + "score": 1.0, + "content": "A.3 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 506, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "Following RoBERTa (Liu et al., 2019c), we adopt dynamic data batching. We also include span", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "masking (Joshi et al., 2020) as an additional masking strategy with the span size up to three. We list", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "the detailed hyperparameters of pre-training in Table 8. For pre-training, we use Adam (Kingma &", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "score": 1.0, + "content": "Ba, 2014) as the optimizer with weight decay (Loshchilov & Hutter, 2018). For fine-tuning, even", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "though we can get better and robust results with RAdam(Liu et al., 2019a) on some tasks, e.g. CoLA,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "RTE and RACE, we use Adam(Kingma & Ba, 2014) as the optimizer for a fair comparison. For", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "fine-tuning, we train each task with a hyper-parameter search procedure, each run takes about 1-2", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "hours on a DGX-2 node. All the hyper-parameters are presented in Table 9. The model selection is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 365, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 365, + 509 + ], + "score": 1.0, + "content": "based on the performance on the task-specific development sets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21 + }, + { + "type": "text", + "bbox": [ + 108, + 511, + 503, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "score": 1.0, + "content": "Our code is implemented based on Huggingface Transformers11, FairSeq12 and Megatron (Shoeybi", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 522, + 165, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 165, + 535 + ], + "score": 1.0, + "content": "et al., 2019)13.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5 + }, + { + "type": "title", + "bbox": [ + 108, + 547, + 259, + 559 + ], + "lines": [ + { + "bbox": [ + 107, + 548, + 260, + 560 + ], + "spans": [ + { + "bbox": [ + 107, + 548, + 260, + 560 + ], + "score": 1.0, + "content": "A.3.1 PRE-TRAINING EFFICIENCY", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 506, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "To investigate the efficiency of model pre-training, we plot the performance of the fine-tuned model", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "score": 1.0, + "content": "on downstream tasks as a function of the number of pre-training steps. As shown in Figure 1, for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 589, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 212, + 603 + ], + "score": 1.0, + "content": "RoBERTa-ReImpbase and", + "type": "text" + }, + { + "bbox": [ + 212, + 590, + 269, + 601 + ], + "score": 0.75, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 589, + 506, + 603 + ], + "score": 1.0, + "content": ", we dump a checkpoint every 150K pre-training steps, and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "then fine-tune the checkpoint on two representative downstream tasks, MNLI and SQuAD v2.0, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "then report the accuracy and F1 score, respectively. As a reference, we also report the final model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 236, + 636 + ], + "score": 1.0, + "content": "performance of both the original", + "type": "text" + }, + { + "bbox": [ + 236, + 623, + 292, + 634 + ], + "score": 0.56, + "content": "\\mathrm { R o B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 622, + 383, + 636 + ], + "score": 1.0, + "content": "(Liu et al., 2019c) and", + "type": "text" + }, + { + "bbox": [ + 384, + 623, + 428, + 634 + ], + "score": 0.6, + "content": "\\mathtt { X L N e t } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "(Yang et al., 2019).", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 191, + 647 + ], + "score": 1.0, + "content": "The results show that", + "type": "text" + }, + { + "bbox": [ + 191, + 634, + 248, + 645 + ], + "score": 0.74, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 633, + 506, + 647 + ], + "score": 1.0, + "content": "consistently outperforms RoBERTa-ReImpbase during the course", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 645, + 170, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 170, + 658 + ], + "score": 1.0, + "content": "of pre-training.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5 + } + ], + "page_idx": 14, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 116, + 666, + 401, + 732 + ], + "lines": [ + { + "bbox": [ + 118, + 665, + 258, + 680 + ], + "spans": [ + { + "bbox": [ + 118, + 665, + 258, + 680 + ], + "score": 1.0, + "content": "8https://dumps.wikimedia.org/enwiki/", + "type": "text" + } + ] + }, + { + "bbox": [ + 117, + 676, + 313, + 691 + ], + "spans": [ + { + "bbox": [ + 117, + 676, + 313, + 691 + ], + "score": 1.0, + "content": "9https://github.com/butsugiri/homemade_bookcorpus", + "type": "text" + } + ] + }, + { + "bbox": [ + 114, + 685, + 402, + 703 + ], + "spans": [ + { + "bbox": [ + 114, + 685, + 402, + 703 + ], + "score": 1.0, + "content": "10https://github.com/tensorflow/models/tree/master/research/lm_commonsense", + "type": "text" + } + ] + }, + { + "bbox": [ + 114, + 696, + 286, + 713 + ], + "spans": [ + { + "bbox": [ + 114, + 696, + 286, + 713 + ], + "score": 1.0, + "content": "11https://github.com/huggingface/transformers", + "type": "text" + } + ] + }, + { + "bbox": [ + 115, + 707, + 248, + 725 + ], + "spans": [ + { + "bbox": [ + 115, + 707, + 248, + 725 + ], + "score": 1.0, + "content": "12https://github.com/pytorch/fairseq", + "type": "text" + } + ] + }, + { + "bbox": [ + 115, + 718, + 279, + 735 + ], + "spans": [ + { + "bbox": [ + 115, + 718, + 279, + 735 + ], + "score": 1.0, + "content": "13https://github.com/NVIDIA/Megatron-LM", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 25, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "text", + "bbox": [ + 106, + 82, + 504, + 116 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 505, + 95 + ], + "score": 1.0, + "content": "‚ SWAG is a large-scale adversarial dataset for the task of grounded commonsense inference, which", + "type": "text" + } + ], + "index": 0 + }, + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "spans": [ + { + "bbox": [ + 106, + 93, + 505, + 106 + ], + "score": 1.0, + "content": "unifies natural language inference and physically grounded reasoning (Zellers et al., 2018). SWAG", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 105, + 386, + 117 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 151, + 117 + ], + "score": 1.0, + "content": "consists of", + "type": "text" + }, + { + "bbox": [ + 152, + 105, + 173, + 115 + ], + "score": 0.46, + "content": "1 1 3 \\mathrm { k }", + "type": "inline_equation" + }, + { + "bbox": [ + 173, + 105, + 386, + 117 + ], + "score": 1.0, + "content": "multiple choice questions about grounded situations.", + "type": "text" + } + ], + "index": 2 + } + ], + "index": 1, + "bbox_fs": [ + 106, + 82, + 505, + 117 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 121, + 504, + 144 + ], + "lines": [ + { + "bbox": [ + 105, + 119, + 505, + 135 + ], + "spans": [ + { + "bbox": [ + 105, + 119, + 505, + 135 + ], + "score": 1.0, + "content": "‚ CoNLL 2003 is an English dataset consisting of text from a wide variety of sources. It has 4 types", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 131, + 174, + 145 + ], + "spans": [ + { + "bbox": [ + 105, + 131, + 174, + 145 + ], + "score": 1.0, + "content": "of named entity.", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5, + "bbox_fs": [ + 105, + 119, + 505, + 145 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 158, + 239, + 170 + ], + "lines": [ + { + "bbox": [ + 106, + 158, + 240, + 171 + ], + "spans": [ + { + "bbox": [ + 106, + 158, + 240, + 171 + ], + "score": 1.0, + "content": "A.2 PRE-TRAINING DATASET", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 106, + 179, + 506, + 246 + ], + "lines": [ + { + "bbox": [ + 105, + 179, + 505, + 192 + ], + "spans": [ + { + "bbox": [ + 105, + 179, + 505, + 192 + ], + "score": 1.0, + "content": "For DeBERTa pre-training, we use Wikipedia (English Wikipedia dump8; 12GB), BookCorpus (Zhu", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 190, + 506, + 204 + ], + "spans": [ + { + "bbox": [ + 105, + 190, + 506, + 204 + ], + "score": 1.0, + "content": "et al., 2015) 9 (6GB), OPENWEBTEXT (public Reddit content (Gokaslan & Cohen, 2019); 38GB)", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 200, + 507, + 215 + ], + "spans": [ + { + "bbox": [ + 105, + 200, + 507, + 215 + ], + "score": 1.0, + "content": "and STORIES10 (a subset of CommonCrawl (Trinh & Le, 2018); 31GB). The total data size after", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 211, + 506, + 227 + ], + "spans": [ + { + "bbox": [ + 105, + 211, + 456, + 227 + ], + "score": 1.0, + "content": "data deduplication(Shoeybi et al., 2019) is about 78GB. For pre-training, we also sample", + "type": "text" + }, + { + "bbox": [ + 456, + 213, + 471, + 223 + ], + "score": 0.87, + "content": "5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 211, + 506, + 227 + ], + "score": 1.0, + "content": "training", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 223, + 505, + 236 + ], + "spans": [ + { + "bbox": [ + 105, + 223, + 505, + 236 + ], + "score": 1.0, + "content": "data as the validation set to monitor the training process. Table 7 compares datasets used in different", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 236, + 186, + 246 + ], + "spans": [ + { + "bbox": [ + 105, + 236, + 186, + 246 + ], + "score": 1.0, + "content": "pre-trained models.", + "type": "text" + } + ], + "index": 11 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 179, + 507, + 246 + ] + }, + { + "type": "table", + "bbox": [ + 106, + 257, + 509, + 344 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 106, + 257, + 509, + 344 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 257, + 509, + 344 + ], + "spans": [ + { + "bbox": [ + 106, + 257, + 509, + 344 + ], + "score": 0.962, + "html": "
ModelWiki+Book16GBOpenWebText38GBStories31GBCC-News76GBGiga516GBClueWeb19GBCommon Crawl110GB
BERT
XLNet(24号
RoBERTa
DeBERTaDeBERTa1.5B√√广
", + "type": "table", + "image_path": "82d65ddb5bef045b250a155352d885f78422f0b70c2040a4e92b41c803606f34.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 106, + 257, + 509, + 286.0 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 106, + 286.0, + 509, + 315.0 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 106, + 315.0, + 509, + 344.0 + ], + "spans": [], + "index": 14 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 214, + 352, + 396, + 364 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 213, + 350, + 397, + 366 + ], + "spans": [ + { + "bbox": [ + 213, + 350, + 397, + 366 + ], + "score": 1.0, + "content": "Table 7: Comparison of the pre-training data.", + "type": "text" + } + ], + "index": 15 + } + ], + "index": 15 + } + ], + "index": 14.0 + }, + { + "type": "title", + "bbox": [ + 108, + 386, + 251, + 398 + ], + "lines": [ + { + "bbox": [ + 106, + 385, + 252, + 399 + ], + "spans": [ + { + "bbox": [ + 106, + 385, + 252, + 399 + ], + "score": 1.0, + "content": "A.3 IMPLEMENTATION DETAILS", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + }, + { + "type": "text", + "bbox": [ + 106, + 407, + 506, + 507 + ], + "lines": [ + { + "bbox": [ + 106, + 408, + 506, + 421 + ], + "spans": [ + { + "bbox": [ + 106, + 408, + 506, + 421 + ], + "score": 1.0, + "content": "Following RoBERTa (Liu et al., 2019c), we adopt dynamic data batching. We also include span", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "spans": [ + { + "bbox": [ + 106, + 419, + 506, + 432 + ], + "score": 1.0, + "content": "masking (Joshi et al., 2020) as an additional masking strategy with the span size up to three. We list", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "spans": [ + { + "bbox": [ + 106, + 429, + 506, + 443 + ], + "score": 1.0, + "content": "the detailed hyperparameters of pre-training in Table 8. For pre-training, we use Adam (Kingma &", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "spans": [ + { + "bbox": [ + 105, + 440, + 506, + 454 + ], + "score": 1.0, + "content": "Ba, 2014) as the optimizer with weight decay (Loshchilov & Hutter, 2018). For fine-tuning, even", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 451, + 506, + 464 + ], + "spans": [ + { + "bbox": [ + 106, + 451, + 506, + 464 + ], + "score": 1.0, + "content": "though we can get better and robust results with RAdam(Liu et al., 2019a) on some tasks, e.g. CoLA,", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "spans": [ + { + "bbox": [ + 105, + 462, + 506, + 475 + ], + "score": 1.0, + "content": "RTE and RACE, we use Adam(Kingma & Ba, 2014) as the optimizer for a fair comparison. For", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "spans": [ + { + "bbox": [ + 105, + 473, + 506, + 486 + ], + "score": 1.0, + "content": "fine-tuning, we train each task with a hyper-parameter search procedure, each run takes about 1-2", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "spans": [ + { + "bbox": [ + 105, + 484, + 506, + 498 + ], + "score": 1.0, + "content": "hours on a DGX-2 node. All the hyper-parameters are presented in Table 9. The model selection is", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 495, + 365, + 509 + ], + "spans": [ + { + "bbox": [ + 105, + 495, + 365, + 509 + ], + "score": 1.0, + "content": "based on the performance on the task-specific development sets.", + "type": "text" + } + ], + "index": 25 + } + ], + "index": 21, + "bbox_fs": [ + 105, + 408, + 506, + 509 + ] + }, + { + "type": "text", + "bbox": [ + 108, + 511, + 503, + 534 + ], + "lines": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "spans": [ + { + "bbox": [ + 105, + 510, + 505, + 525 + ], + "score": 1.0, + "content": "Our code is implemented based on Huggingface Transformers11, FairSeq12 and Megatron (Shoeybi", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 522, + 165, + 535 + ], + "spans": [ + { + "bbox": [ + 105, + 522, + 165, + 535 + ], + "score": 1.0, + "content": "et al., 2019)13.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 26.5, + "bbox_fs": [ + 105, + 510, + 505, + 535 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 547, + 259, + 559 + ], + "lines": [ + { + "bbox": [ + 107, + 548, + 260, + 560 + ], + "spans": [ + { + "bbox": [ + 107, + 548, + 260, + 560 + ], + "score": 1.0, + "content": "A.3.1 PRE-TRAINING EFFICIENCY", + "type": "text" + } + ], + "index": 28 + } + ], + "index": 28 + }, + { + "type": "text", + "bbox": [ + 106, + 568, + 506, + 657 + ], + "lines": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "spans": [ + { + "bbox": [ + 105, + 568, + 505, + 580 + ], + "score": 1.0, + "content": "To investigate the efficiency of model pre-training, we plot the performance of the fine-tuned model", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "spans": [ + { + "bbox": [ + 106, + 579, + 506, + 591 + ], + "score": 1.0, + "content": "on downstream tasks as a function of the number of pre-training steps. As shown in Figure 1, for", + "type": "text" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 589, + 506, + 603 + ], + "spans": [ + { + "bbox": [ + 105, + 589, + 212, + 603 + ], + "score": 1.0, + "content": "RoBERTa-ReImpbase and", + "type": "text" + }, + { + "bbox": [ + 212, + 590, + 269, + 601 + ], + "score": 0.75, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 269, + 589, + 506, + 603 + ], + "score": 1.0, + "content": ", we dump a checkpoint every 150K pre-training steps, and", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "spans": [ + { + "bbox": [ + 105, + 601, + 505, + 613 + ], + "score": 1.0, + "content": "then fine-tune the checkpoint on two representative downstream tasks, MNLI and SQuAD v2.0, and", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 106, + 612, + 505, + 624 + ], + "score": 1.0, + "content": "then report the accuracy and F1 score, respectively. As a reference, we also report the final model", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 622, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 622, + 236, + 636 + ], + "score": 1.0, + "content": "performance of both the original", + "type": "text" + }, + { + "bbox": [ + 236, + 623, + 292, + 634 + ], + "score": 0.56, + "content": "\\mathrm { R o B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 293, + 622, + 383, + 636 + ], + "score": 1.0, + "content": "(Liu et al., 2019c) and", + "type": "text" + }, + { + "bbox": [ + 384, + 623, + 428, + 634 + ], + "score": 0.6, + "content": "\\mathtt { X L N e t } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 428, + 622, + 506, + 636 + ], + "score": 1.0, + "content": "(Yang et al., 2019).", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 633, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 633, + 191, + 647 + ], + "score": 1.0, + "content": "The results show that", + "type": "text" + }, + { + "bbox": [ + 191, + 634, + 248, + 645 + ], + "score": 0.74, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 248, + 633, + 506, + 647 + ], + "score": 1.0, + "content": "consistently outperforms RoBERTa-ReImpbase during the course", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 645, + 170, + 658 + ], + "spans": [ + { + "bbox": [ + 105, + 645, + 170, + 658 + ], + "score": 1.0, + "content": "of pre-training.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32.5, + "bbox_fs": [ + 105, + 568, + 506, + 658 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 110, + 80, + 500, + 302 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 80, + 500, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 80, + 500, + 302 + ], + "spans": [ + { + "bbox": [ + 110, + 80, + 500, + 302 + ], + "score": 0.978, + "html": "
Hyper-parameter|DeBERTa1.5BDeBERTalargeDeBERTabaseDeBERTabase-ablation
Number of Layers48241212
Hidden size15361024768768
FNN inner hidden size6144409630723072
Attention Heads24161212
Attention Head size64646464
Dropout0.10.10.10.1
Warmup Steps10k10k10k10k
Learning Rates1.5e-42e-42e-41e-4
Batch Size2k2k2k256
Weight Decay0.010.010.010.01
Max Steps1M1M1M1M
Learning Rate DecayLinearLinearLinearLinear
Adam ∈1e-61e-61e-61e-6
Adam β10.90.90.90.9
Adam β20.9990.9990.9990.999
Gradient Clipping1.01.01.0
Number ofDGX-2 nodes1661.0
Training Time30 days20 days4 10 days1 7 days
", + "type": "table", + "image_path": "bb786f1d889e31a5a9d67f5e7ffae840a8e2dbe9a15dc43ed1e37b3109530052.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 80, + 500, + 154.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 154.0, + 500, + 228.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 228.0, + 500, + 302.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 197, + 310, + 413, + 322 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 308, + 415, + 324 + ], + "spans": [ + { + "bbox": [ + 195, + 308, + 415, + 324 + ], + "score": 1.0, + "content": "Table 8: Hyper-parameters for pre-training DeBERTa.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 107, + 340, + 506, + 484 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 340, + 506, + 484 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 340, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 107, + 340, + 506, + 484 + ], + "score": 0.977, + "html": "
Hyper-parameterDeBERTa1.5BDeBERTalargeDeBERTabase
Dropout of task layer Warmup Steps Learning Rates Batch Size Weight Decay Maximun Training Epochs Learning Rate Decay Adam ∈ Adam β1{0,0.15,0.3} {50,100,500,1000] {1e-6,3e-6, 5e-6} {16,32,64} 0.01 10 Linear 1e-6 0.9{0,0.1,0.15} {50,100,500,1000} {5e-6,8e-6, 9e-6, 1e-5} {16,32,48,64} 0.01 10 Linear 1e-6{0,0.1,0.15} {50,100,500,1000] {1.5e-5,2e-5, 3e-5,4e-5} {16,32,48,64} 10 Linear
", + "type": "table", + "image_path": "2d79d791848d405350189071ede4f1911d4f2a40ecc12fc5494caa9f1897d748.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 340, + 506, + 388.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 388.0, + 506, + 436.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 436.0, + 506, + 484.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 146, + 492, + 463, + 504 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 146, + 491, + 464, + 506 + ], + "spans": [ + { + "bbox": [ + 146, + 491, + 464, + 506 + ], + "score": 1.0, + "content": "Table 9: Hyper-parameters for fine-tuning DeBERTa on down-streaming tasks.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 111, + 533, + 502, + 671 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 533, + 502, + 671 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 533, + 502, + 671 + ], + "spans": [ + { + "bbox": [ + 111, + 533, + 502, + 671 + ], + "score": 0.96, + "type": "image", + "image_path": "652fd2471aba260e4c3ad959ea124f7fa7de8dae5e26aa624be3a8a5b2263b86.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 533, + 502, + 579.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 579.0, + 502, + 625.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 625.0, + 502, + 671.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 679, + 506, + 702 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Figure 1: Pre-training performance curve between DeBERTa and its counterparts on the MNLI and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 690, + 230, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 230, + 703 + ], + "score": 1.0, + "content": "SQuAD v2.0 development set.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "index": 10.25 + } + ], + "page_idx": 15, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "16", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 110, + 80, + 500, + 302 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 110, + 80, + 500, + 302 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 110, + 80, + 500, + 302 + ], + "spans": [ + { + "bbox": [ + 110, + 80, + 500, + 302 + ], + "score": 0.978, + "html": "
Hyper-parameter|DeBERTa1.5BDeBERTalargeDeBERTabaseDeBERTabase-ablation
Number of Layers48241212
Hidden size15361024768768
FNN inner hidden size6144409630723072
Attention Heads24161212
Attention Head size64646464
Dropout0.10.10.10.1
Warmup Steps10k10k10k10k
Learning Rates1.5e-42e-42e-41e-4
Batch Size2k2k2k256
Weight Decay0.010.010.010.01
Max Steps1M1M1M1M
Learning Rate DecayLinearLinearLinearLinear
Adam ∈1e-61e-61e-61e-6
Adam β10.90.90.90.9
Adam β20.9990.9990.9990.999
Gradient Clipping1.01.01.0
Number ofDGX-2 nodes1661.0
Training Time30 days20 days4 10 days1 7 days
", + "type": "table", + "image_path": "bb786f1d889e31a5a9d67f5e7ffae840a8e2dbe9a15dc43ed1e37b3109530052.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 110, + 80, + 500, + 154.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 110, + 154.0, + 500, + 228.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 110, + 228.0, + 500, + 302.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 197, + 310, + 413, + 322 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 195, + 308, + 415, + 324 + ], + "spans": [ + { + "bbox": [ + 195, + 308, + 415, + 324 + ], + "score": 1.0, + "content": "Table 8: Hyper-parameters for pre-training DeBERTa.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 107, + 340, + 506, + 484 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 340, + 506, + 484 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 340, + 506, + 484 + ], + "spans": [ + { + "bbox": [ + 107, + 340, + 506, + 484 + ], + "score": 0.977, + "html": "
Hyper-parameterDeBERTa1.5BDeBERTalargeDeBERTabase
Dropout of task layer Warmup Steps Learning Rates Batch Size Weight Decay Maximun Training Epochs Learning Rate Decay Adam ∈ Adam β1{0,0.15,0.3} {50,100,500,1000] {1e-6,3e-6, 5e-6} {16,32,64} 0.01 10 Linear 1e-6 0.9{0,0.1,0.15} {50,100,500,1000} {5e-6,8e-6, 9e-6, 1e-5} {16,32,48,64} 0.01 10 Linear 1e-6{0,0.1,0.15} {50,100,500,1000] {1.5e-5,2e-5, 3e-5,4e-5} {16,32,48,64} 10 Linear
", + "type": "table", + "image_path": "2d79d791848d405350189071ede4f1911d4f2a40ecc12fc5494caa9f1897d748.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 340, + 506, + 388.0 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 388.0, + 506, + 436.0 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 436.0, + 506, + 484.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 146, + 492, + 463, + 504 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 146, + 491, + 464, + 506 + ], + "spans": [ + { + "bbox": [ + 146, + 491, + 464, + 506 + ], + "score": 1.0, + "content": "Table 9: Hyper-parameters for fine-tuning DeBERTa on down-streaming tasks.", + "type": "text" + } + ], + "index": 7 + } + ], + "index": 7 + } + ], + "index": 6.0 + }, + { + "type": "image", + "bbox": [ + 111, + 533, + 502, + 671 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 111, + 533, + 502, + 671 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 111, + 533, + 502, + 671 + ], + "spans": [ + { + "bbox": [ + 111, + 533, + 502, + 671 + ], + "score": 0.96, + "type": "image", + "image_path": "652fd2471aba260e4c3ad959ea124f7fa7de8dae5e26aa624be3a8a5b2263b86.jpg" + } + ] + } + ], + "index": 9, + "virtual_lines": [ + { + "bbox": [ + 111, + 533, + 502, + 579.0 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 111, + 579.0, + 502, + 625.0 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 111, + 625.0, + 502, + 671.0 + ], + "spans": [], + "index": 10 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 105, + 679, + 506, + 702 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "spans": [ + { + "bbox": [ + 106, + 679, + 505, + 692 + ], + "score": 1.0, + "content": "Figure 1: Pre-training performance curve between DeBERTa and its counterparts on the MNLI and", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 106, + 690, + 230, + 703 + ], + "spans": [ + { + "bbox": [ + 106, + 690, + 230, + 703 + ], + "score": 1.0, + "content": "SQuAD v2.0 development set.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 11.5 + } + ], + "index": 10.25 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 304, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 306, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 306, + 95 + ], + "score": 1.0, + "content": "A.4 MAIN RESULTS ON GENERATION TASKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "In addition to NLU tasks, DeBERTa can also be extended to handle NLG tasks. To allow DeBERTa", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 506, + 128 + ], + "score": 1.0, + "content": "operating like an auto-regressive model for text generation, we use a triangular matrix for self-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 395, + 139 + ], + "score": 1.0, + "content": "attention and set the upper triangular part of the self-attention mask to", + "type": "text" + }, + { + "bbox": [ + 396, + 128, + 413, + 138 + ], + "score": 0.83, + "content": "- \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 127, + 506, + 139 + ], + "score": 1.0, + "content": ", following Dong et al.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 138, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 138, + 150 + ], + "score": 1.0, + "content": "(2019).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5 + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 506, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 507, + 168 + ], + "score": 1.0, + "content": "We evaluate DeBERTa on the task of auto-regressive language model (ARLM) using Wikitext-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 166, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 506, + 178 + ], + "score": 1.0, + "content": "103 (Merity et al., 2016). To do so, we train a new version of DeBERTa, denoted as DeBERTa-MT.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "It is jointly pre-trained using the MLM and ARLM tasks as in UniLM (Dong et al., 2019). The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 187, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 289, + 201 + ], + "score": 1.0, + "content": "pre-training hyper-parameters follows that of", + "type": "text" + }, + { + "bbox": [ + 289, + 188, + 346, + 199 + ], + "score": 0.75, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 187, + 505, + 201 + ], + "score": 1.0, + "content": "except that we use fewer training steps", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "(200k). For comparison, we use RoBERTa as baseline, and include GPT-2 and Transformer-XL as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "score": 1.0, + "content": "additional references. DeBERTa-AP is a variant of DeBERTa where absolute position embeddings", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "are incorporated in the input layer as RoBERTa. For a fair comparison, all these models are base", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 263, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 263, + 245 + ], + "score": 1.0, + "content": "models pre-trained in a similar setting.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5 + }, + { + "type": "table", + "bbox": [ + 123, + 258, + 487, + 304 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 123, + 258, + 487, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 258, + 487, + 304 + ], + "spans": [ + { + "bbox": [ + 123, + 258, + 487, + 304 + ], + "score": 0.977, + "html": "
Model |RoBERTa|DeBERTa-AP|DeBERTa|DeBERTa-MT|GPT-2|Transformer-XL
Dev PPL21.620.720.519.5123.1
Test PPL21.620.019.919.537.5024
", + "type": "table", + "image_path": "6031fdb09fda409092948313be8fe1ad4b53433dd305e85cf4c60ef53cdcc419.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 123, + 258, + 487, + 273.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 123, + 273.3333333333333, + 487, + 288.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 123, + 288.66666666666663, + 487, + 303.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 140, + 312, + 469, + 325 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 312, + 471, + 326 + ], + "spans": [ + { + "bbox": [ + 140, + 312, + 471, + 326 + ], + "score": 1.0, + "content": "Table 10: Language model results in perplexity (lower is better) on Wikitext-103 .", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 15.0 + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 348, + 353 + ], + "score": 1.0, + "content": "Table 10 summarizes the results on Wikitext-103. We see that", + "type": "text" + }, + { + "bbox": [ + 348, + 342, + 402, + 352 + ], + "score": 0.84, + "content": "\\mathrm { D e B E R T a _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "obtains lower perplexities", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "on both dev and test data, and joint training using MLM and ARLM reduces perplexity further.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 363, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 506, + 375 + ], + "score": 1.0, + "content": "That DeBERTa-AP is inferior to DeBERTa indicates that it is more effective to incorporate absolute", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 373, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 506, + 388 + ], + "score": 1.0, + "content": "position embeddings of words in the decoding layer as the EMD in DeBERTa than in the input layer", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 385, + 162, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 162, + 396 + ], + "score": 1.0, + "content": "as RoBERTa.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19 + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 284, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 286, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 286, + 428 + ], + "score": 1.0, + "content": "A.5 HANDLING LONG SEQUENCE INPUT", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 506, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 432, + 451 + ], + "score": 1.0, + "content": "With relative position bias, we choose to truncate the maximum relative distance to", + "type": "text" + }, + { + "bbox": [ + 433, + 438, + 439, + 448 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 437, + 507, + 451 + ], + "score": 1.0, + "content": "as in equation 3.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 347, + 462 + ], + "score": 1.0, + "content": "Thus in each layer, each token can attend directly to at most", + "type": "text" + }, + { + "bbox": [ + 347, + 449, + 383, + 461 + ], + "score": 0.93, + "content": "2 ( k - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "tokens and itself. By stacking", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 393, + 473 + ], + "score": 1.0, + "content": "Transformer layers, each token in the l´th layer can attend to at most", + "type": "text" + }, + { + "bbox": [ + 393, + 460, + 432, + 472 + ], + "score": 0.92, + "content": "( 2 k - 1 ) l", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "tokens implicitly.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 470, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 137, + 485 + ], + "score": 1.0, + "content": "Taking", + "type": "text" + }, + { + "bbox": [ + 137, + 471, + 198, + 483 + ], + "score": 0.75, + "content": "\\mathrm { D e B E R T a } _ { l a r g e }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 470, + 290, + 485 + ], + "score": 1.0, + "content": "as an example, where", + "type": "text" + }, + { + "bbox": [ + 290, + 471, + 361, + 482 + ], + "score": 0.88, + "content": "k = 5 1 2 , L = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 470, + 506, + 485 + ], + "score": 1.0, + "content": ", in theory, the maximum sequence", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "length that can be handled is 24,528. This is a byproduct benefit of our design choice and we find it", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "beneficial for the RACE task. A comparison of long sequence effect on the RACE task is shown in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 504, + 146, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 146, + 515 + ], + "score": 1.0, + "content": "Table 11.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26 + }, + { + "type": "table", + "bbox": [ + 219, + 528, + 392, + 574 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 219, + 528, + 392, + 574 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 219, + 528, + 392, + 574 + ], + "spans": [ + { + "bbox": [ + 219, + 528, + 392, + 574 + ], + "score": 0.97, + "html": "
Sequence length |Middle|High| AMiddleHigh|Accuracy
51276888.885.086.3
88.786.386.8
", + "type": "table", + "image_path": "fd0fe1cffbdf5810d6b7f6baeffa94fe153d07735f16e597b0fc012fc5fd59e7.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 219, + 528, + 392, + 543.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 219, + 543.3333333333334, + 392, + 558.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 219, + 558.6666666666667, + 392, + 574.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 135, + 582, + 472, + 594 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 581, + 474, + 595 + ], + "spans": [ + { + "bbox": [ + 136, + 581, + 474, + 595 + ], + "score": 1.0, + "content": "Table 11: The effect of handling long sequence input for RACE task with DeBERTa", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + } + ], + "index": 32.0 + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 506, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "Long sequence handling is an active research area. There have been a lot of studies where the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "Transformer architecture is extended for long sequence handling(Beltagy et al., 2020; Kitaev et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "2019; Child et al., 2019; Dai et al., 2019). One of our future research directions is to extend DeBERTa", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 646, + 264, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 264, + 659 + ], + "score": 1.0, + "content": "to deal with extremely long sequences.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5 + }, + { + "type": "title", + "bbox": [ + 107, + 676, + 402, + 687 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 402, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 402, + 688 + ], + "score": 1.0, + "content": "A.6 PERFORMANCE IMPROVEMENTS OF DIFFERENT MODEL SCALES", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "In this subsection, we study the effect of different model sizes applied to large models on GLUE.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Table 12 summarizes the results, showing that larger models can obtain a better result and SiFT also", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 292, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 292, + 733 + ], + "score": 1.0, + "content": "improves the model performance consistently.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40 + } + ], + "page_idx": 16, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 13 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "title", + "bbox": [ + 108, + 82, + 304, + 94 + ], + "lines": [ + { + "bbox": [ + 106, + 82, + 306, + 95 + ], + "spans": [ + { + "bbox": [ + 106, + 82, + 306, + 95 + ], + "score": 1.0, + "content": "A.4 MAIN RESULTS ON GENERATION TASKS", + "type": "text" + } + ], + "index": 0 + } + ], + "index": 0 + }, + { + "type": "text", + "bbox": [ + 107, + 105, + 506, + 149 + ], + "lines": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "spans": [ + { + "bbox": [ + 106, + 105, + 505, + 116 + ], + "score": 1.0, + "content": "In addition to NLU tasks, DeBERTa can also be extended to handle NLG tasks. To allow DeBERTa", + "type": "text" + } + ], + "index": 1 + }, + { + "bbox": [ + 106, + 116, + 506, + 128 + ], + "spans": [ + { + "bbox": [ + 106, + 116, + 506, + 128 + ], + "score": 1.0, + "content": "operating like an auto-regressive model for text generation, we use a triangular matrix for self-", + "type": "text" + } + ], + "index": 2 + }, + { + "bbox": [ + 105, + 127, + 506, + 139 + ], + "spans": [ + { + "bbox": [ + 105, + 127, + 395, + 139 + ], + "score": 1.0, + "content": "attention and set the upper triangular part of the self-attention mask to", + "type": "text" + }, + { + "bbox": [ + 396, + 128, + 413, + 138 + ], + "score": 0.83, + "content": "- \\infty", + "type": "inline_equation" + }, + { + "bbox": [ + 413, + 127, + 506, + 139 + ], + "score": 1.0, + "content": ", following Dong et al.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 105, + 137, + 138, + 150 + ], + "spans": [ + { + "bbox": [ + 105, + 137, + 138, + 150 + ], + "score": 1.0, + "content": "(2019).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 2.5, + "bbox_fs": [ + 105, + 105, + 506, + 150 + ] + }, + { + "type": "text", + "bbox": [ + 106, + 154, + 506, + 243 + ], + "lines": [ + { + "bbox": [ + 105, + 154, + 507, + 168 + ], + "spans": [ + { + "bbox": [ + 105, + 154, + 507, + 168 + ], + "score": 1.0, + "content": "We evaluate DeBERTa on the task of auto-regressive language model (ARLM) using Wikitext-", + "type": "text" + } + ], + "index": 5 + }, + { + "bbox": [ + 105, + 166, + 506, + 178 + ], + "spans": [ + { + "bbox": [ + 105, + 166, + 506, + 178 + ], + "score": 1.0, + "content": "103 (Merity et al., 2016). To do so, we train a new version of DeBERTa, denoted as DeBERTa-MT.", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "spans": [ + { + "bbox": [ + 105, + 177, + 505, + 190 + ], + "score": 1.0, + "content": "It is jointly pre-trained using the MLM and ARLM tasks as in UniLM (Dong et al., 2019). The", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 187, + 505, + 201 + ], + "spans": [ + { + "bbox": [ + 105, + 187, + 289, + 201 + ], + "score": 1.0, + "content": "pre-training hyper-parameters follows that of", + "type": "text" + }, + { + "bbox": [ + 289, + 188, + 346, + 199 + ], + "score": 0.75, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 347, + 187, + 505, + 201 + ], + "score": 1.0, + "content": "except that we use fewer training steps", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "spans": [ + { + "bbox": [ + 106, + 199, + 505, + 211 + ], + "score": 1.0, + "content": "(200k). For comparison, we use RoBERTa as baseline, and include GPT-2 and Transformer-XL as", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "spans": [ + { + "bbox": [ + 105, + 209, + 506, + 223 + ], + "score": 1.0, + "content": "additional references. DeBERTa-AP is a variant of DeBERTa where absolute position embeddings", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "spans": [ + { + "bbox": [ + 106, + 221, + 505, + 234 + ], + "score": 1.0, + "content": "are incorporated in the input layer as RoBERTa. For a fair comparison, all these models are base", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 231, + 263, + 245 + ], + "spans": [ + { + "bbox": [ + 105, + 231, + 263, + 245 + ], + "score": 1.0, + "content": "models pre-trained in a similar setting.", + "type": "text" + } + ], + "index": 12 + } + ], + "index": 8.5, + "bbox_fs": [ + 105, + 154, + 507, + 245 + ] + }, + { + "type": "table", + "bbox": [ + 123, + 258, + 487, + 304 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 123, + 258, + 487, + 304 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 123, + 258, + 487, + 304 + ], + "spans": [ + { + "bbox": [ + 123, + 258, + 487, + 304 + ], + "score": 0.977, + "html": "
Model |RoBERTa|DeBERTa-AP|DeBERTa|DeBERTa-MT|GPT-2|Transformer-XL
Dev PPL21.620.720.519.5123.1
Test PPL21.620.019.919.537.5024
", + "type": "table", + "image_path": "6031fdb09fda409092948313be8fe1ad4b53433dd305e85cf4c60ef53cdcc419.jpg" + } + ] + } + ], + "index": 14, + "virtual_lines": [ + { + "bbox": [ + 123, + 258, + 487, + 273.3333333333333 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 123, + 273.3333333333333, + 487, + 288.66666666666663 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 123, + 288.66666666666663, + 487, + 303.99999999999994 + ], + "spans": [], + "index": 15 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 140, + 312, + 469, + 325 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 140, + 312, + 471, + 326 + ], + "spans": [ + { + "bbox": [ + 140, + 312, + 471, + 326 + ], + "score": 1.0, + "content": "Table 10: Language model results in perplexity (lower is better) on Wikitext-103 .", + "type": "text" + } + ], + "index": 16 + } + ], + "index": 16 + } + ], + "index": 15.0 + }, + { + "type": "text", + "bbox": [ + 106, + 341, + 505, + 396 + ], + "lines": [ + { + "bbox": [ + 106, + 342, + 505, + 353 + ], + "spans": [ + { + "bbox": [ + 106, + 342, + 348, + 353 + ], + "score": 1.0, + "content": "Table 10 summarizes the results on Wikitext-103. We see that", + "type": "text" + }, + { + "bbox": [ + 348, + 342, + 402, + 352 + ], + "score": 0.84, + "content": "\\mathrm { D e B E R T a _ { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 402, + 342, + 505, + 353 + ], + "score": 1.0, + "content": "obtains lower perplexities", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "spans": [ + { + "bbox": [ + 106, + 352, + 506, + 364 + ], + "score": 1.0, + "content": "on both dev and test data, and joint training using MLM and ARLM reduces perplexity further.", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 106, + 363, + 506, + 375 + ], + "spans": [ + { + "bbox": [ + 106, + 363, + 506, + 375 + ], + "score": 1.0, + "content": "That DeBERTa-AP is inferior to DeBERTa indicates that it is more effective to incorporate absolute", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 104, + 373, + 506, + 388 + ], + "spans": [ + { + "bbox": [ + 104, + 373, + 506, + 388 + ], + "score": 1.0, + "content": "position embeddings of words in the decoding layer as the EMD in DeBERTa than in the input layer", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 105, + 385, + 162, + 396 + ], + "spans": [ + { + "bbox": [ + 105, + 385, + 162, + 396 + ], + "score": 1.0, + "content": "as RoBERTa.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 19, + "bbox_fs": [ + 104, + 342, + 506, + 396 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 415, + 284, + 427 + ], + "lines": [ + { + "bbox": [ + 106, + 415, + 286, + 428 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 286, + 428 + ], + "score": 1.0, + "content": "A.5 HANDLING LONG SEQUENCE INPUT", + "type": "text" + } + ], + "index": 22 + } + ], + "index": 22 + }, + { + "type": "text", + "bbox": [ + 106, + 437, + 506, + 515 + ], + "lines": [ + { + "bbox": [ + 105, + 437, + 507, + 451 + ], + "spans": [ + { + "bbox": [ + 105, + 437, + 432, + 451 + ], + "score": 1.0, + "content": "With relative position bias, we choose to truncate the maximum relative distance to", + "type": "text" + }, + { + "bbox": [ + 433, + 438, + 439, + 448 + ], + "score": 0.81, + "content": "k", + "type": "inline_equation" + }, + { + "bbox": [ + 440, + 437, + 507, + 451 + ], + "score": 1.0, + "content": "as in equation 3.", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 104, + 448, + 506, + 462 + ], + "spans": [ + { + "bbox": [ + 104, + 448, + 347, + 462 + ], + "score": 1.0, + "content": "Thus in each layer, each token can attend directly to at most", + "type": "text" + }, + { + "bbox": [ + 347, + 449, + 383, + 461 + ], + "score": 0.93, + "content": "2 ( k - 1 )", + "type": "inline_equation" + }, + { + "bbox": [ + 383, + 448, + 506, + 462 + ], + "score": 1.0, + "content": "tokens and itself. By stacking", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 105, + 459, + 506, + 473 + ], + "spans": [ + { + "bbox": [ + 105, + 459, + 393, + 473 + ], + "score": 1.0, + "content": "Transformer layers, each token in the l´th layer can attend to at most", + "type": "text" + }, + { + "bbox": [ + 393, + 460, + 432, + 472 + ], + "score": 0.92, + "content": "( 2 k - 1 ) l", + "type": "inline_equation" + }, + { + "bbox": [ + 433, + 459, + 506, + 473 + ], + "score": 1.0, + "content": "tokens implicitly.", + "type": "text" + } + ], + "index": 25 + }, + { + "bbox": [ + 104, + 470, + 506, + 485 + ], + "spans": [ + { + "bbox": [ + 104, + 470, + 137, + 485 + ], + "score": 1.0, + "content": "Taking", + "type": "text" + }, + { + "bbox": [ + 137, + 471, + 198, + 483 + ], + "score": 0.75, + "content": "\\mathrm { D e B E R T a } _ { l a r g e }", + "type": "inline_equation" + }, + { + "bbox": [ + 198, + 470, + 290, + 485 + ], + "score": 1.0, + "content": "as an example, where", + "type": "text" + }, + { + "bbox": [ + 290, + 471, + 361, + 482 + ], + "score": 0.88, + "content": "k = 5 1 2 , L = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 361, + 470, + 506, + 485 + ], + "score": 1.0, + "content": ", in theory, the maximum sequence", + "type": "text" + } + ], + "index": 26 + }, + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "spans": [ + { + "bbox": [ + 105, + 481, + 506, + 494 + ], + "score": 1.0, + "content": "length that can be handled is 24,528. This is a byproduct benefit of our design choice and we find it", + "type": "text" + } + ], + "index": 27 + }, + { + "bbox": [ + 104, + 492, + 506, + 506 + ], + "spans": [ + { + "bbox": [ + 104, + 492, + 506, + 506 + ], + "score": 1.0, + "content": "beneficial for the RACE task. A comparison of long sequence effect on the RACE task is shown in", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 105, + 504, + 146, + 515 + ], + "spans": [ + { + "bbox": [ + 105, + 504, + 146, + 515 + ], + "score": 1.0, + "content": "Table 11.", + "type": "text" + } + ], + "index": 29 + } + ], + "index": 26, + "bbox_fs": [ + 104, + 437, + 507, + 515 + ] + }, + { + "type": "table", + "bbox": [ + 219, + 528, + 392, + 574 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 219, + 528, + 392, + 574 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 219, + 528, + 392, + 574 + ], + "spans": [ + { + "bbox": [ + 219, + 528, + 392, + 574 + ], + "score": 0.97, + "html": "
Sequence length |Middle|High| AMiddleHigh|Accuracy
51276888.885.086.3
88.786.386.8
", + "type": "table", + "image_path": "fd0fe1cffbdf5810d6b7f6baeffa94fe153d07735f16e597b0fc012fc5fd59e7.jpg" + } + ] + } + ], + "index": 31, + "virtual_lines": [ + { + "bbox": [ + 219, + 528, + 392, + 543.3333333333334 + ], + "spans": [], + "index": 30 + }, + { + "bbox": [ + 219, + 543.3333333333334, + 392, + 558.6666666666667 + ], + "spans": [], + "index": 31 + }, + { + "bbox": [ + 219, + 558.6666666666667, + 392, + 574.0000000000001 + ], + "spans": [], + "index": 32 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 135, + 582, + 472, + 594 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 136, + 581, + 474, + 595 + ], + "spans": [ + { + "bbox": [ + 136, + 581, + 474, + 595 + ], + "score": 1.0, + "content": "Table 11: The effect of handling long sequence input for RACE task with DeBERTa", + "type": "text" + } + ], + "index": 33 + } + ], + "index": 33 + } + ], + "index": 32.0 + }, + { + "type": "text", + "bbox": [ + 106, + 612, + 506, + 658 + ], + "lines": [ + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "spans": [ + { + "bbox": [ + 105, + 613, + 505, + 624 + ], + "score": 1.0, + "content": "Long sequence handling is an active research area. There have been a lot of studies where the", + "type": "text" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "spans": [ + { + "bbox": [ + 105, + 623, + 506, + 636 + ], + "score": 1.0, + "content": "Transformer architecture is extended for long sequence handling(Beltagy et al., 2020; Kitaev et al.,", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "spans": [ + { + "bbox": [ + 105, + 634, + 506, + 647 + ], + "score": 1.0, + "content": "2019; Child et al., 2019; Dai et al., 2019). One of our future research directions is to extend DeBERTa", + "type": "text" + } + ], + "index": 36 + }, + { + "bbox": [ + 105, + 646, + 264, + 659 + ], + "spans": [ + { + "bbox": [ + 105, + 646, + 264, + 659 + ], + "score": 1.0, + "content": "to deal with extremely long sequences.", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 35.5, + "bbox_fs": [ + 105, + 613, + 506, + 659 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 676, + 402, + 687 + ], + "lines": [ + { + "bbox": [ + 106, + 676, + 402, + 688 + ], + "spans": [ + { + "bbox": [ + 106, + 676, + 402, + 688 + ], + "score": 1.0, + "content": "A.6 PERFORMANCE IMPROVEMENTS OF DIFFERENT MODEL SCALES", + "type": "text" + } + ], + "index": 38 + } + ], + "index": 38 + }, + { + "type": "text", + "bbox": [ + 108, + 698, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "spans": [ + { + "bbox": [ + 105, + 699, + 506, + 711 + ], + "score": 1.0, + "content": "In this subsection, we study the effect of different model sizes applied to large models on GLUE.", + "type": "text" + } + ], + "index": 39 + }, + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "Table 12 summarizes the results, showing that larger models can obtain a better result and SiFT also", + "type": "text" + } + ], + "index": 40 + }, + { + "bbox": [ + 106, + 720, + 292, + 733 + ], + "spans": [ + { + "bbox": [ + 106, + 720, + 292, + 733 + ], + "score": 1.0, + "content": "improves the model performance consistently.", + "type": "text" + } + ], + "index": 41 + } + ], + "index": 40, + "bbox_fs": [ + 105, + 699, + 506, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 81, + 506, + 159 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 81, + 506, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 506, + 159 + ], + "score": 0.98, + "html": "
ModelCoLA| Mcc|QQP AccMNLI-m/mml AccSST-2| AccSTS-B CorrQNLI AccRTE AccMRPC| AccAvg.
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
DeBERTa900M71.192.391.7/91.697.592.095.893.593.190.86
DeBERTa1.5B72.092.791.7/91.997.292.996.093.992.091.17
DeBERTa1.5B+SiFT73.593.092.0/92.197.593.296.596.593.291.93
", + "type": "table", + "image_path": "c843123153d1308665dbbd02a17f298ad9c068ccca227b57a9e71c6b8b2dab44.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 506, + 107.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 107.0, + 506, + 133.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 133.0, + 506, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 167, + 504, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "score": 1.0, + "content": "Table 12: Comparison results of DeBERTa models with different sizes on the GLUE development set.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 131, + 190, + 480, + 276 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 131, + 190, + 480, + 276 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 131, + 190, + 480, + 276 + ], + "spans": [ + { + "bbox": [ + 131, + 190, + 480, + 276 + ], + "score": 0.98, + "html": "
ModelParametersMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EM
RoBERTa-ReImpbase120M84.9/85.191.1/84.879.5/76.0
DeBERTabase134M86.3/86.292.1/86.182.5/79.3
+ ShareProjection120M86.3/86.392.2/86.282.3/79.5
+ Conv122M86.3/86.592.5/86.482.5/79.7
+ 128k Vocab190M86.7/86.993.1/86.883.0/80.1
", + "type": "table", + "image_path": "c779afcba8f6c44b25d6735a945f329c3402a8aae15b049f855c33918933d296.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 131, + 190, + 480, + 218.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 131, + 218.66666666666666, + 480, + 247.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 131, + 247.33333333333331, + 480, + 276.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 284, + 506, + 307 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 336, + 296 + ], + "score": 1.0, + "content": "Table 13: Ablation study of the additional modifications in", + "type": "text" + }, + { + "bbox": [ + 336, + 284, + 393, + 295 + ], + "score": 0.79, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 283, + 411, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 411, + 284, + 472, + 296 + ], + "score": 0.4, + "content": "\\mathrm { D e B E R T a _ { 9 0 0 M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 292, + 412, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 377, + 310 + ], + "score": 1.0, + "content": "Note that we progressively add each component on the top of DeBE", + "type": "text" + }, + { + "bbox": [ + 377, + 296, + 407, + 307 + ], + "score": 0.58, + "content": "\\mathrm { R T a } _ { \\mathrm { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 292, + 412, + 310 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 225, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 226, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 226, + 341 + ], + "score": 1.0, + "content": "A.7 MODEL COMPLEXITY", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "With the disentangled attention mechanism, we introduce three additional sets of parameters", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 357, + 504, + 374 + ], + "spans": [ + { + "bbox": [ + 107, + 360, + 192, + 372 + ], + "score": 0.91, + "content": "W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 357, + 210, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 359, + 258, + 370 + ], + "score": 0.92, + "content": "P \\in R ^ { 2 k \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 357, + 428, + 374 + ], + "score": 1.0, + "content": ". The total increase in model parameters is", + "type": "text" + }, + { + "bbox": [ + 428, + 360, + 504, + 371 + ], + "score": 0.92, + "content": "2 L \\times d ^ { \\bar { 2 } } + 2 k \\times d", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 187, + 383 + ], + "score": 1.0, + "content": "For the large model", + "type": "text" + }, + { + "bbox": [ + 187, + 371, + 303, + 382 + ], + "score": 0.83, + "content": "( d = 1 0 2 4 , L = 2 4 , k = 5 1 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 370, + 394, + 383 + ], + "score": 1.0, + "content": "q, this amounts to about", + "type": "text" + }, + { + "bbox": [ + 394, + 371, + 416, + 381 + ], + "score": 0.75, + "content": "4 9 M", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "additional parameters,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 163, + 394 + ], + "score": 1.0, + "content": "an increase of", + "type": "text" + }, + { + "bbox": [ + 163, + 382, + 182, + 393 + ], + "score": 0.9, + "content": "1 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 381, + 262, + 394 + ], + "score": 1.0, + "content": ". For the base model", + "type": "text" + }, + { + "bbox": [ + 262, + 382, + 374, + 393 + ], + "score": 0.85, + "content": "( d = 7 6 8 , L = 1 2 , k = 5 1 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 381, + 440, + 394 + ], + "score": 1.0, + "content": ", this amounts to", + "type": "text" + }, + { + "bbox": [ + 441, + 382, + 462, + 393 + ], + "score": 0.78, + "content": "1 4 M", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "additional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 217, + 406 + ], + "score": 1.0, + "content": "parameters, an increase of", + "type": "text" + }, + { + "bbox": [ + 217, + 393, + 236, + 403 + ], + "score": 0.9, + "content": "1 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 392, + 506, + 406 + ], + "score": 1.0, + "content": ". However, by sharing the projection matrix between content and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 402, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 402, + 207, + 419 + ], + "score": 1.0, + "content": "position embedding, i.e.", + "type": "text" + }, + { + "bbox": [ + 207, + 404, + 332, + 416 + ], + "score": 0.82, + "content": "W _ { q , r } = W _ { q , c } , W _ { k , r } = W _ { k , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 402, + 507, + 419 + ], + "score": 1.0, + "content": ", the number of parameters of DeBERTa is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "the same as RoBERTa. Our experiment on base model shows that the results are almost the same, as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 426, + 156, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 156, + 436 + ], + "score": 1.0, + "content": "in Table 13.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5 + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 279, + 455 + ], + "score": 1.0, + "content": "The additional computational complexity is", + "type": "text" + }, + { + "bbox": [ + 279, + 442, + 315, + 454 + ], + "score": 0.93, + "content": "O ( N k d )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "due to the calculation of the additional position-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "to-content and content-to-position attention scores. Compared with BERT or RoBERTa, this increases", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 463, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 210, + 479 + ], + "score": 1.0, + "content": "the computational cost by", + "type": "text" + }, + { + "bbox": [ + 210, + 464, + 230, + 475 + ], + "score": 0.88, + "content": "3 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 463, + 507, + 479 + ], + "score": 1.0, + "content": ". Compared with XLNet which also uses relative position embedding,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 287, + 488 + ], + "score": 1.0, + "content": "the increase of computational cost is about", + "type": "text" + }, + { + "bbox": [ + 287, + 475, + 307, + 486 + ], + "score": 0.88, + "content": "1 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 475, + 505, + 488 + ], + "score": 1.0, + "content": ". A further optimization by fusing the attention", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 388, + 499 + ], + "score": 1.0, + "content": "computation kernel can significantly reduce this additional cost. For", + "type": "text" + }, + { + "bbox": [ + 389, + 487, + 416, + 497 + ], + "score": 0.76, + "content": "E M D", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 487, + 505, + 499 + ], + "score": 1.0, + "content": ", since the decoder in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "pre-training only reconstructs the masked tokens, it does not introduce additional computational cost", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 287, + 520 + ], + "score": 1.0, + "content": "for unmasked tokens. In the situation where", + "type": "text" + }, + { + "bbox": [ + 287, + 508, + 307, + 519 + ], + "score": 0.91, + "content": "1 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 509, + 506, + 520 + ], + "score": 1.0, + "content": "tokens are masked and we use only two decoder", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 218, + 532 + ], + "score": 1.0, + "content": "layers, the additional cost is", + "type": "text" + }, + { + "bbox": [ + 218, + 519, + 264, + 531 + ], + "score": 0.92, + "content": "0 . 1 5 \\times 2 / L", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 519, + 489, + 532 + ], + "score": 1.0, + "content": "which results in an additional computational cost of only", + "type": "text" + }, + { + "bbox": [ + 489, + 519, + 505, + 531 + ], + "score": 0.85, + "content": "3 \\%", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 530, + 375, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 169, + 543 + ], + "score": 1.0, + "content": "for base model(", + "type": "text" + }, + { + "bbox": [ + 169, + 531, + 201, + 541 + ], + "score": 0.85, + "content": "L = 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 530, + 222, + 543 + ], + "score": 1.0, + "content": ") and", + "type": "text" + }, + { + "bbox": [ + 222, + 531, + 236, + 541 + ], + "score": 0.86, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 530, + 302, + 543 + ], + "score": 1.0, + "content": "for large model(", + "type": "text" + }, + { + "bbox": [ + 302, + 531, + 334, + 541 + ], + "score": 0.85, + "content": "L = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 530, + 375, + 543 + ], + "score": 1.0, + "content": ") in EMD.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22 + }, + { + "type": "title", + "bbox": [ + 107, + 555, + 369, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 370, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 370, + 568 + ], + "score": 1.0, + "content": "A.8 ADDITIONAL DETAILS OF ENHANCED MASK DECODER", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 433, + 588 + ], + "score": 1.0, + "content": "The structure of EMD is shown in Figure 2b. There are two inputs for EMD, (i.e.,", + "type": "text" + }, + { + "bbox": [ + 433, + 576, + 456, + 587 + ], + "score": 0.81, + "content": "I , H )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 576, + 460, + 588 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 461, + 576, + 471, + 586 + ], + "score": 0.67, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 345, + 600 + ], + "score": 1.0, + "content": "the hidden states from the previous Transformer layer, and", + "type": "text" + }, + { + "bbox": [ + 345, + 588, + 352, + 597 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "can be any necessary information for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 598, + 504, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 169, + 611 + ], + "score": 1.0, + "content": "decoding, e.g.,", + "type": "text" + }, + { + "bbox": [ + 169, + 599, + 179, + 608 + ], + "score": 0.75, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 598, + 453, + 611 + ], + "score": 1.0, + "content": ", absolute position embedding or output from previous EMD layer.", + "type": "text" + }, + { + "bbox": [ + 454, + 600, + 462, + 608 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 598, + 496, + 611 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + }, + { + "bbox": [ + 497, + 600, + 504, + 608 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 416, + 622 + ], + "score": 1.0, + "content": "stacked layers of EMD where the output of each EMD layer will be the input", + "type": "text" + }, + { + "bbox": [ + 417, + 610, + 423, + 619 + ], + "score": 0.7, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "for next EMD layer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 453, + 633 + ], + "score": 1.0, + "content": "and the output of last EMD layer will be fed to the language model head directly. The", + "type": "text" + }, + { + "bbox": [ + 453, + 622, + 461, + 630 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "layers can", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 630, + 504, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 397, + 643 + ], + "score": 1.0, + "content": "share the same weight. In our experiment we share the same weight for", + "type": "text" + }, + { + "bbox": [ + 397, + 631, + 423, + 641 + ], + "score": 0.89, + "content": "n = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 630, + 504, + 643 + ], + "score": 1.0, + "content": "layers to reduce the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 641, + 504, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 351, + 655 + ], + "score": 1.0, + "content": "number of parameters and use absolute position embedding as", + "type": "text" + }, + { + "bbox": [ + 351, + 642, + 358, + 652 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 641, + 474, + 655 + ], + "score": 1.0, + "content": "of the first EMD layer. When", + "type": "text" + }, + { + "bbox": [ + 475, + 642, + 504, + 652 + ], + "score": 0.89, + "content": "I = H", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 123, + 666 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 653, + 148, + 663 + ], + "score": 0.89, + "content": "n = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 652, + 505, + 666 + ], + "score": 1.0, + "content": ", EMD is the same as the BERT decoder layer. However, EMD is more general and flexible", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 663, + 354, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 354, + 678 + ], + "score": 1.0, + "content": "as it can take various types of input information for decoding.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32 + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 230, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 231, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 231, + 702 + ], + "score": 1.0, + "content": "A.9 ATTENTION PATTERNS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "To visualize how DeBERTa operates differently from RoBERTa, we present in Figure 3 the attention", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "score": 1.0, + "content": "patterns (taken in the last self-attention layers) of RoBERTa, DeBERTa and three DeBERTa variants.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5 + } + ], + "page_idx": 17, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 763 + ], + "score": 1.0, + "content": "18", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "table", + "bbox": [ + 107, + 81, + 506, + 159 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 107, + 81, + 506, + 159 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 107, + 81, + 506, + 159 + ], + "spans": [ + { + "bbox": [ + 107, + 81, + 506, + 159 + ], + "score": 0.98, + "html": "
ModelCoLA| Mcc|QQP AccMNLI-m/mml AccSST-2| AccSTS-B CorrQNLI AccRTE AccMRPC| AccAvg.
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
DeBERTa900M71.192.391.7/91.697.592.095.893.593.190.86
DeBERTa1.5B72.092.791.7/91.997.292.996.093.992.091.17
DeBERTa1.5B+SiFT73.593.092.0/92.197.593.296.596.593.291.93
", + "type": "table", + "image_path": "c843123153d1308665dbbd02a17f298ad9c068ccca227b57a9e71c6b8b2dab44.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 107, + 81, + 506, + 107.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 107, + 107.0, + 506, + 133.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 107, + 133.0, + 506, + 159.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 107, + 167, + 504, + 179 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "spans": [ + { + "bbox": [ + 105, + 165, + 505, + 181 + ], + "score": 1.0, + "content": "Table 12: Comparison results of DeBERTa models with different sizes on the GLUE development set.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "table", + "bbox": [ + 131, + 190, + 480, + 276 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 131, + 190, + 480, + 276 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 131, + 190, + 480, + 276 + ], + "spans": [ + { + "bbox": [ + 131, + 190, + 480, + 276 + ], + "score": 0.98, + "html": "
ModelParametersMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EM
RoBERTa-ReImpbase120M84.9/85.191.1/84.879.5/76.0
DeBERTabase134M86.3/86.292.1/86.182.5/79.3
+ ShareProjection120M86.3/86.392.2/86.282.3/79.5
+ Conv122M86.3/86.592.5/86.482.5/79.7
+ 128k Vocab190M86.7/86.993.1/86.883.0/80.1
", + "type": "table", + "image_path": "c779afcba8f6c44b25d6735a945f329c3402a8aae15b049f855c33918933d296.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 131, + 190, + 480, + 218.66666666666666 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 131, + 218.66666666666666, + 480, + 247.33333333333331 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 131, + 247.33333333333331, + 480, + 276.0 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "table_footnote", + "bbox": [ + 106, + 284, + 506, + 307 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 106, + 283, + 506, + 296 + ], + "spans": [ + { + "bbox": [ + 106, + 283, + 336, + 296 + ], + "score": 1.0, + "content": "Table 13: Ablation study of the additional modifications in", + "type": "text" + }, + { + "bbox": [ + 336, + 284, + 393, + 295 + ], + "score": 0.79, + "content": "\\mathrm { D e B E R T a } _ { 1 . 5 B }", + "type": "inline_equation" + }, + { + "bbox": [ + 394, + 283, + 411, + 296 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 411, + 284, + 472, + 296 + ], + "score": 0.4, + "content": "\\mathrm { D e B E R T a _ { 9 0 0 M } }", + "type": "inline_equation" + }, + { + "bbox": [ + 472, + 283, + 506, + 296 + ], + "score": 1.0, + "content": "models.", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 292, + 412, + 310 + ], + "spans": [ + { + "bbox": [ + 105, + 292, + 377, + 310 + ], + "score": 1.0, + "content": "Note that we progressively add each component on the top of DeBE", + "type": "text" + }, + { + "bbox": [ + 377, + 296, + 407, + 307 + ], + "score": 0.58, + "content": "\\mathrm { R T a } _ { \\mathrm { b a s e } }", + "type": "inline_equation" + }, + { + "bbox": [ + 407, + 292, + 412, + 310 + ], + "score": 1.0, + "content": ".", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "title", + "bbox": [ + 108, + 328, + 225, + 339 + ], + "lines": [ + { + "bbox": [ + 106, + 327, + 226, + 341 + ], + "spans": [ + { + "bbox": [ + 106, + 327, + 226, + 341 + ], + "score": 1.0, + "content": "A.7 MODEL COMPLEXITY", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 9 + }, + { + "type": "text", + "bbox": [ + 107, + 349, + 505, + 437 + ], + "lines": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "spans": [ + { + "bbox": [ + 106, + 349, + 505, + 361 + ], + "score": 1.0, + "content": "With the disentangled attention mechanism, we introduce three additional sets of parameters", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 107, + 357, + 504, + 374 + ], + "spans": [ + { + "bbox": [ + 107, + 360, + 192, + 372 + ], + "score": 0.91, + "content": "W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 192, + 357, + 210, + 374 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 210, + 359, + 258, + 370 + ], + "score": 0.92, + "content": "P \\in R ^ { 2 k \\times d }", + "type": "inline_equation" + }, + { + "bbox": [ + 258, + 357, + 428, + 374 + ], + "score": 1.0, + "content": ". The total increase in model parameters is", + "type": "text" + }, + { + "bbox": [ + 428, + 360, + 504, + 371 + ], + "score": 0.92, + "content": "2 L \\times d ^ { \\bar { 2 } } + 2 k \\times d", + "type": "inline_equation" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 370, + 506, + 383 + ], + "spans": [ + { + "bbox": [ + 105, + 370, + 187, + 383 + ], + "score": 1.0, + "content": "For the large model", + "type": "text" + }, + { + "bbox": [ + 187, + 371, + 303, + 382 + ], + "score": 0.83, + "content": "( d = 1 0 2 4 , L = 2 4 , k = 5 1 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 303, + 370, + 394, + 383 + ], + "score": 1.0, + "content": "q, this amounts to about", + "type": "text" + }, + { + "bbox": [ + 394, + 371, + 416, + 381 + ], + "score": 0.75, + "content": "4 9 M", + "type": "inline_equation" + }, + { + "bbox": [ + 416, + 370, + 506, + 383 + ], + "score": 1.0, + "content": "additional parameters,", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 105, + 381, + 506, + 394 + ], + "spans": [ + { + "bbox": [ + 105, + 381, + 163, + 394 + ], + "score": 1.0, + "content": "an increase of", + "type": "text" + }, + { + "bbox": [ + 163, + 382, + 182, + 393 + ], + "score": 0.9, + "content": "1 3 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 182, + 381, + 262, + 394 + ], + "score": 1.0, + "content": ". For the base model", + "type": "text" + }, + { + "bbox": [ + 262, + 382, + 374, + 393 + ], + "score": 0.85, + "content": "( d = 7 6 8 , L = 1 2 , k = 5 1 2 )", + "type": "inline_equation" + }, + { + "bbox": [ + 374, + 381, + 440, + 394 + ], + "score": 1.0, + "content": ", this amounts to", + "type": "text" + }, + { + "bbox": [ + 441, + 382, + 462, + 393 + ], + "score": 0.78, + "content": "1 4 M", + "type": "inline_equation" + }, + { + "bbox": [ + 463, + 381, + 506, + 394 + ], + "score": 1.0, + "content": "additional", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 392, + 506, + 406 + ], + "spans": [ + { + "bbox": [ + 105, + 392, + 217, + 406 + ], + "score": 1.0, + "content": "parameters, an increase of", + "type": "text" + }, + { + "bbox": [ + 217, + 393, + 236, + 403 + ], + "score": 0.9, + "content": "1 2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 236, + 392, + 506, + 406 + ], + "score": 1.0, + "content": ". However, by sharing the projection matrix between content and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 104, + 402, + 507, + 419 + ], + "spans": [ + { + "bbox": [ + 104, + 402, + 207, + 419 + ], + "score": 1.0, + "content": "position embedding, i.e.", + "type": "text" + }, + { + "bbox": [ + 207, + 404, + 332, + 416 + ], + "score": 0.82, + "content": "W _ { q , r } = W _ { q , c } , W _ { k , r } = W _ { k , c }", + "type": "inline_equation" + }, + { + "bbox": [ + 332, + 402, + 507, + 419 + ], + "score": 1.0, + "content": ", the number of parameters of DeBERTa is", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "spans": [ + { + "bbox": [ + 106, + 415, + 506, + 427 + ], + "score": 1.0, + "content": "the same as RoBERTa. Our experiment on base model shows that the results are almost the same, as", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 426, + 156, + 436 + ], + "spans": [ + { + "bbox": [ + 106, + 426, + 156, + 436 + ], + "score": 1.0, + "content": "in Table 13.", + "type": "text" + } + ], + "index": 17 + } + ], + "index": 13.5, + "bbox_fs": [ + 104, + 349, + 507, + 436 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 442, + 505, + 541 + ], + "lines": [ + { + "bbox": [ + 106, + 442, + 506, + 455 + ], + "spans": [ + { + "bbox": [ + 106, + 443, + 279, + 455 + ], + "score": 1.0, + "content": "The additional computational complexity is", + "type": "text" + }, + { + "bbox": [ + 279, + 442, + 315, + 454 + ], + "score": 0.93, + "content": "O ( N k d )", + "type": "inline_equation" + }, + { + "bbox": [ + 316, + 443, + 506, + 455 + ], + "score": 1.0, + "content": "due to the calculation of the additional position-", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 506, + 467 + ], + "score": 1.0, + "content": "to-content and content-to-position attention scores. Compared with BERT or RoBERTa, this increases", + "type": "text" + } + ], + "index": 19 + }, + { + "bbox": [ + 105, + 463, + 507, + 479 + ], + "spans": [ + { + "bbox": [ + 105, + 463, + 210, + 479 + ], + "score": 1.0, + "content": "the computational cost by", + "type": "text" + }, + { + "bbox": [ + 210, + 464, + 230, + 475 + ], + "score": 0.88, + "content": "3 0 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 230, + 463, + 507, + 479 + ], + "score": 1.0, + "content": ". Compared with XLNet which also uses relative position embedding,", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 475, + 505, + 488 + ], + "spans": [ + { + "bbox": [ + 106, + 475, + 287, + 488 + ], + "score": 1.0, + "content": "the increase of computational cost is about", + "type": "text" + }, + { + "bbox": [ + 287, + 475, + 307, + 486 + ], + "score": 0.88, + "content": "1 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 475, + 505, + 488 + ], + "score": 1.0, + "content": ". A further optimization by fusing the attention", + "type": "text" + } + ], + "index": 21 + }, + { + "bbox": [ + 106, + 487, + 505, + 499 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 388, + 499 + ], + "score": 1.0, + "content": "computation kernel can significantly reduce this additional cost. For", + "type": "text" + }, + { + "bbox": [ + 389, + 487, + 416, + 497 + ], + "score": 0.76, + "content": "E M D", + "type": "inline_equation" + }, + { + "bbox": [ + 417, + 487, + 505, + 499 + ], + "score": 1.0, + "content": ", since the decoder in", + "type": "text" + } + ], + "index": 22 + }, + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "spans": [ + { + "bbox": [ + 105, + 497, + 506, + 510 + ], + "score": 1.0, + "content": "pre-training only reconstructs the masked tokens, it does not introduce additional computational cost", + "type": "text" + } + ], + "index": 23 + }, + { + "bbox": [ + 106, + 508, + 506, + 520 + ], + "spans": [ + { + "bbox": [ + 106, + 509, + 287, + 520 + ], + "score": 1.0, + "content": "for unmasked tokens. In the situation where", + "type": "text" + }, + { + "bbox": [ + 287, + 508, + 307, + 519 + ], + "score": 0.91, + "content": "1 5 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 307, + 509, + 506, + 520 + ], + "score": 1.0, + "content": "tokens are masked and we use only two decoder", + "type": "text" + } + ], + "index": 24 + }, + { + "bbox": [ + 106, + 519, + 505, + 532 + ], + "spans": [ + { + "bbox": [ + 106, + 519, + 218, + 532 + ], + "score": 1.0, + "content": "layers, the additional cost is", + "type": "text" + }, + { + "bbox": [ + 218, + 519, + 264, + 531 + ], + "score": 0.92, + "content": "0 . 1 5 \\times 2 / L", + "type": "inline_equation" + }, + { + "bbox": [ + 265, + 519, + 489, + 532 + ], + "score": 1.0, + "content": "which results in an additional computational cost of only", + "type": "text" + }, + { + "bbox": [ + 489, + 519, + 505, + 531 + ], + "score": 0.85, + "content": "3 \\%", + "type": "inline_equation" + } + ], + "index": 25 + }, + { + "bbox": [ + 105, + 530, + 375, + 543 + ], + "spans": [ + { + "bbox": [ + 105, + 530, + 169, + 543 + ], + "score": 1.0, + "content": "for base model(", + "type": "text" + }, + { + "bbox": [ + 169, + 531, + 201, + 541 + ], + "score": 0.85, + "content": "L = 1 2", + "type": "inline_equation" + }, + { + "bbox": [ + 201, + 530, + 222, + 543 + ], + "score": 1.0, + "content": ") and", + "type": "text" + }, + { + "bbox": [ + 222, + 531, + 236, + 541 + ], + "score": 0.86, + "content": "2 \\%", + "type": "inline_equation" + }, + { + "bbox": [ + 237, + 530, + 302, + 543 + ], + "score": 1.0, + "content": "for large model(", + "type": "text" + }, + { + "bbox": [ + 302, + 531, + 334, + 541 + ], + "score": 0.85, + "content": "L = 2 4", + "type": "inline_equation" + }, + { + "bbox": [ + 334, + 530, + 375, + 543 + ], + "score": 1.0, + "content": ") in EMD.", + "type": "text" + } + ], + "index": 26 + } + ], + "index": 22, + "bbox_fs": [ + 105, + 442, + 507, + 543 + ] + }, + { + "type": "title", + "bbox": [ + 107, + 555, + 369, + 567 + ], + "lines": [ + { + "bbox": [ + 106, + 555, + 370, + 568 + ], + "spans": [ + { + "bbox": [ + 106, + 555, + 370, + 568 + ], + "score": 1.0, + "content": "A.8 ADDITIONAL DETAILS OF ENHANCED MASK DECODER", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + }, + { + "type": "text", + "bbox": [ + 107, + 576, + 505, + 675 + ], + "lines": [ + { + "bbox": [ + 106, + 576, + 505, + 588 + ], + "spans": [ + { + "bbox": [ + 106, + 576, + 433, + 588 + ], + "score": 1.0, + "content": "The structure of EMD is shown in Figure 2b. There are two inputs for EMD, (i.e.,", + "type": "text" + }, + { + "bbox": [ + 433, + 576, + 456, + 587 + ], + "score": 0.81, + "content": "I , H )", + "type": "inline_equation" + }, + { + "bbox": [ + 456, + 576, + 460, + 588 + ], + "score": 1.0, + "content": ".", + "type": "text" + }, + { + "bbox": [ + 461, + 576, + 471, + 586 + ], + "score": 0.67, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 471, + 576, + 505, + 588 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + } + ], + "index": 28 + }, + { + "bbox": [ + 106, + 587, + 505, + 600 + ], + "spans": [ + { + "bbox": [ + 106, + 587, + 345, + 600 + ], + "score": 1.0, + "content": "the hidden states from the previous Transformer layer, and", + "type": "text" + }, + { + "bbox": [ + 345, + 588, + 352, + 597 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 352, + 587, + 505, + 600 + ], + "score": 1.0, + "content": "can be any necessary information for", + "type": "text" + } + ], + "index": 29 + }, + { + "bbox": [ + 105, + 598, + 504, + 611 + ], + "spans": [ + { + "bbox": [ + 105, + 598, + 169, + 611 + ], + "score": 1.0, + "content": "decoding, e.g.,", + "type": "text" + }, + { + "bbox": [ + 169, + 599, + 179, + 608 + ], + "score": 0.75, + "content": "H", + "type": "inline_equation" + }, + { + "bbox": [ + 180, + 598, + 453, + 611 + ], + "score": 1.0, + "content": ", absolute position embedding or output from previous EMD layer.", + "type": "text" + }, + { + "bbox": [ + 454, + 600, + 462, + 608 + ], + "score": 0.64, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 462, + 598, + 496, + 611 + ], + "score": 1.0, + "content": "denotes", + "type": "text" + }, + { + "bbox": [ + 497, + 600, + 504, + 608 + ], + "score": 0.68, + "content": "n", + "type": "inline_equation" + } + ], + "index": 30 + }, + { + "bbox": [ + 105, + 609, + 506, + 622 + ], + "spans": [ + { + "bbox": [ + 105, + 609, + 416, + 622 + ], + "score": 1.0, + "content": "stacked layers of EMD where the output of each EMD layer will be the input", + "type": "text" + }, + { + "bbox": [ + 417, + 610, + 423, + 619 + ], + "score": 0.7, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 424, + 609, + 506, + 622 + ], + "score": 1.0, + "content": "for next EMD layer", + "type": "text" + } + ], + "index": 31 + }, + { + "bbox": [ + 105, + 619, + 506, + 633 + ], + "spans": [ + { + "bbox": [ + 105, + 619, + 453, + 633 + ], + "score": 1.0, + "content": "and the output of last EMD layer will be fed to the language model head directly. The", + "type": "text" + }, + { + "bbox": [ + 453, + 622, + 461, + 630 + ], + "score": 0.75, + "content": "n", + "type": "inline_equation" + }, + { + "bbox": [ + 461, + 619, + 506, + 633 + ], + "score": 1.0, + "content": "layers can", + "type": "text" + } + ], + "index": 32 + }, + { + "bbox": [ + 105, + 630, + 504, + 643 + ], + "spans": [ + { + "bbox": [ + 105, + 630, + 397, + 643 + ], + "score": 1.0, + "content": "share the same weight. In our experiment we share the same weight for", + "type": "text" + }, + { + "bbox": [ + 397, + 631, + 423, + 641 + ], + "score": 0.89, + "content": "n = 2", + "type": "inline_equation" + }, + { + "bbox": [ + 423, + 630, + 504, + 643 + ], + "score": 1.0, + "content": "layers to reduce the", + "type": "text" + } + ], + "index": 33 + }, + { + "bbox": [ + 105, + 641, + 504, + 655 + ], + "spans": [ + { + "bbox": [ + 105, + 641, + 351, + 655 + ], + "score": 1.0, + "content": "number of parameters and use absolute position embedding as", + "type": "text" + }, + { + "bbox": [ + 351, + 642, + 358, + 652 + ], + "score": 0.61, + "content": "I", + "type": "inline_equation" + }, + { + "bbox": [ + 358, + 641, + 474, + 655 + ], + "score": 1.0, + "content": "of the first EMD layer. When", + "type": "text" + }, + { + "bbox": [ + 475, + 642, + 504, + 652 + ], + "score": 0.89, + "content": "I = H", + "type": "inline_equation" + } + ], + "index": 34 + }, + { + "bbox": [ + 105, + 652, + 505, + 666 + ], + "spans": [ + { + "bbox": [ + 105, + 652, + 123, + 666 + ], + "score": 1.0, + "content": "and", + "type": "text" + }, + { + "bbox": [ + 123, + 653, + 148, + 663 + ], + "score": 0.89, + "content": "n = 1", + "type": "inline_equation" + }, + { + "bbox": [ + 149, + 652, + 505, + 666 + ], + "score": 1.0, + "content": ", EMD is the same as the BERT decoder layer. However, EMD is more general and flexible", + "type": "text" + } + ], + "index": 35 + }, + { + "bbox": [ + 105, + 663, + 354, + 678 + ], + "spans": [ + { + "bbox": [ + 105, + 663, + 354, + 678 + ], + "score": 1.0, + "content": "as it can take various types of input information for decoding.", + "type": "text" + } + ], + "index": 36 + } + ], + "index": 32, + "bbox_fs": [ + 105, + 576, + 506, + 678 + ] + }, + { + "type": "title", + "bbox": [ + 108, + 689, + 230, + 700 + ], + "lines": [ + { + "bbox": [ + 106, + 688, + 231, + 702 + ], + "spans": [ + { + "bbox": [ + 106, + 688, + 231, + 702 + ], + "score": 1.0, + "content": "A.9 ATTENTION PATTERNS", + "type": "text" + } + ], + "index": 37 + } + ], + "index": 37 + }, + { + "type": "text", + "bbox": [ + 107, + 709, + 505, + 732 + ], + "lines": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "spans": [ + { + "bbox": [ + 105, + 709, + 505, + 722 + ], + "score": 1.0, + "content": "To visualize how DeBERTa operates differently from RoBERTa, we present in Figure 3 the attention", + "type": "text" + } + ], + "index": 38 + }, + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "spans": [ + { + "bbox": [ + 105, + 720, + 507, + 733 + ], + "score": 1.0, + "content": "patterns (taken in the last self-attention layers) of RoBERTa, DeBERTa and three DeBERTa variants.", + "type": "text" + } + ], + "index": 39 + } + ], + "index": 38.5, + "bbox_fs": [ + 105, + 709, + 507, + 733 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 87, + 505, + 317 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 87, + 505, + 317 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 87, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 108, + 87, + 505, + 317 + ], + "score": 0.974, + "type": "image", + "image_path": "e717fa563f752c2273db2b0c80b1badbd8f6ac907edf9ffd947fbda30948455a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 87, + 505, + 163.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 163.66666666666669, + 505, + 240.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 240.33333333333337, + 505, + 317.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 216, + 326, + 395, + 338 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 215, + 324, + 396, + 340 + ], + "spans": [ + { + "bbox": [ + 215, + 324, + 396, + 340 + ], + "score": 1.0, + "content": "Figure 2: Comparison of the decoding layer.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 107, + 348, + 506, + 434 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 348, + 506, + 434 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 348, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 506, + 434 + ], + "score": 0.957, + "type": "image", + "image_path": "8ae0415bd238e46819832892f3f63332c3206c7e1eda47022b508832813f8d77.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 348, + 506, + 376.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 376.6666666666667, + 506, + 405.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 405.33333333333337, + 506, + 434.00000000000006 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 443, + 504, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "Figure 3: Comparison of attention patterns of the last layer among DeBERTa, RoBERTa and DeBERTa", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 453, + 375, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 375, + 468 + ], + "score": 1.0, + "content": "variants (i.e., DeBERTa without EMD, C2P and P2C respectively).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 106, + 487, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "We observe two differences. First, RoBERTa has a clear diagonal line effect for a token attending to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 499, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 510 + ], + "score": 1.0, + "content": "itself. But this effect is not very visible in DeBERTa. This can be attributed to the use of EMD, in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "which the absolute position embedding is added to the hidden state of content as the query vector,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "score": 1.0, + "content": "as verified by the attention pattern of DeBERTa-EMD where the diagonal line effect is more visible", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "than that of the original DeBERTa. Second, we observe vertical strips in the attention patterns of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "RoBERTa, which are mainly caused by high-frequent functional words or tokens (e.g., “a”, “the”, and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "punctuation). For DeBERTa, the strip only appears in the first column, which represents the [CLS]", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "token. We conjecture that a dominant emphasis on [CLS] is desirable since the feature vector of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "score": 1.0, + "content": "[CLS] is often used as a contextual representation of the entire input sequence in downstream tasks.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "We also observe that the vertical strip effect is quite obvious in the patterns of the three DeBERTa", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 597, + 143, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 143, + 608 + ], + "score": 1.0, + "content": "variants.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14 + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 504, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 505, + 626 + ], + "score": 1.0, + "content": "We present three additional examples to illustrate the different attention patterns of DeBERTa and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 625, + 226, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 226, + 636 + ], + "score": 1.0, + "content": "RoBERTa in Figures 4 and 5.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5 + } + ], + "page_idx": 18, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 108, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 299, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "19", + "type": "text" + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 108, + 87, + 505, + 317 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 108, + 87, + 505, + 317 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 108, + 87, + 505, + 317 + ], + "spans": [ + { + "bbox": [ + 108, + 87, + 505, + 317 + ], + "score": 0.974, + "type": "image", + "image_path": "e717fa563f752c2273db2b0c80b1badbd8f6ac907edf9ffd947fbda30948455a.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 108, + 87, + 505, + 163.66666666666669 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 108, + 163.66666666666669, + 505, + 240.33333333333337 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 108, + 240.33333333333337, + 505, + 317.00000000000006 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 216, + 326, + 395, + 338 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 215, + 324, + 396, + 340 + ], + "spans": [ + { + "bbox": [ + 215, + 324, + 396, + 340 + ], + "score": 1.0, + "content": "Figure 2: Comparison of the decoding layer.", + "type": "text" + } + ], + "index": 3 + } + ], + "index": 3 + } + ], + "index": 2.0 + }, + { + "type": "image", + "bbox": [ + 107, + 348, + 506, + 434 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 107, + 348, + 506, + 434 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 107, + 348, + 506, + 434 + ], + "spans": [ + { + "bbox": [ + 107, + 348, + 506, + 434 + ], + "score": 0.957, + "type": "image", + "image_path": "8ae0415bd238e46819832892f3f63332c3206c7e1eda47022b508832813f8d77.jpg" + } + ] + } + ], + "index": 5, + "virtual_lines": [ + { + "bbox": [ + 107, + 348, + 506, + 376.6666666666667 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 107, + 376.6666666666667, + 506, + 405.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 107, + 405.33333333333337, + 506, + 434.00000000000006 + ], + "spans": [], + "index": 6 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 443, + 504, + 466 + ], + "group_id": 1, + "lines": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "spans": [ + { + "bbox": [ + 105, + 442, + 505, + 456 + ], + "score": 1.0, + "content": "Figure 3: Comparison of attention patterns of the last layer among DeBERTa, RoBERTa and DeBERTa", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 453, + 375, + 468 + ], + "spans": [ + { + "bbox": [ + 105, + 453, + 375, + 468 + ], + "score": 1.0, + "content": "variants (i.e., DeBERTa without EMD, C2P and P2C respectively).", + "type": "text" + } + ], + "index": 8 + } + ], + "index": 7.5 + } + ], + "index": 6.25 + }, + { + "type": "text", + "bbox": [ + 106, + 487, + 506, + 608 + ], + "lines": [ + { + "bbox": [ + 106, + 487, + 506, + 500 + ], + "spans": [ + { + "bbox": [ + 106, + 487, + 506, + 500 + ], + "score": 1.0, + "content": "We observe two differences. First, RoBERTa has a clear diagonal line effect for a token attending to", + "type": "text" + } + ], + "index": 9 + }, + { + "bbox": [ + 106, + 499, + 505, + 510 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 505, + 510 + ], + "score": 1.0, + "content": "itself. But this effect is not very visible in DeBERTa. This can be attributed to the use of EMD, in", + "type": "text" + } + ], + "index": 10 + }, + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "spans": [ + { + "bbox": [ + 105, + 509, + 506, + 522 + ], + "score": 1.0, + "content": "which the absolute position embedding is added to the hidden state of content as the query vector,", + "type": "text" + } + ], + "index": 11 + }, + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 506, + 532 + ], + "score": 1.0, + "content": "as verified by the attention pattern of DeBERTa-EMD where the diagonal line effect is more visible", + "type": "text" + } + ], + "index": 12 + }, + { + "bbox": [ + 106, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 106, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "than that of the original DeBERTa. Second, we observe vertical strips in the attention patterns of", + "type": "text" + } + ], + "index": 13 + }, + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "spans": [ + { + "bbox": [ + 105, + 542, + 506, + 556 + ], + "score": 1.0, + "content": "RoBERTa, which are mainly caused by high-frequent functional words or tokens (e.g., “a”, “the”, and", + "type": "text" + } + ], + "index": 14 + }, + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "spans": [ + { + "bbox": [ + 105, + 554, + 505, + 566 + ], + "score": 1.0, + "content": "punctuation). For DeBERTa, the strip only appears in the first column, which represents the [CLS]", + "type": "text" + } + ], + "index": 15 + }, + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "spans": [ + { + "bbox": [ + 105, + 564, + 506, + 577 + ], + "score": 1.0, + "content": "token. We conjecture that a dominant emphasis on [CLS] is desirable since the feature vector of", + "type": "text" + } + ], + "index": 16 + }, + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "spans": [ + { + "bbox": [ + 106, + 575, + 506, + 587 + ], + "score": 1.0, + "content": "[CLS] is often used as a contextual representation of the entire input sequence in downstream tasks.", + "type": "text" + } + ], + "index": 17 + }, + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "spans": [ + { + "bbox": [ + 105, + 586, + 506, + 599 + ], + "score": 1.0, + "content": "We also observe that the vertical strip effect is quite obvious in the patterns of the three DeBERTa", + "type": "text" + } + ], + "index": 18 + }, + { + "bbox": [ + 105, + 597, + 143, + 608 + ], + "spans": [ + { + "bbox": [ + 105, + 597, + 143, + 608 + ], + "score": 1.0, + "content": "variants.", + "type": "text" + } + ], + "index": 19 + } + ], + "index": 14, + "bbox_fs": [ + 105, + 487, + 506, + 608 + ] + }, + { + "type": "text", + "bbox": [ + 107, + 614, + 504, + 637 + ], + "lines": [ + { + "bbox": [ + 106, + 613, + 505, + 626 + ], + "spans": [ + { + "bbox": [ + 106, + 613, + 505, + 626 + ], + "score": 1.0, + "content": "We present three additional examples to illustrate the different attention patterns of DeBERTa and", + "type": "text" + } + ], + "index": 20 + }, + { + "bbox": [ + 106, + 625, + 226, + 636 + ], + "spans": [ + { + "bbox": [ + 106, + 625, + 226, + 636 + ], + "score": 1.0, + "content": "RoBERTa in Figures 4 and 5.", + "type": "text" + } + ], + "index": 21 + } + ], + "index": 20.5, + "bbox_fs": [ + 106, + 613, + 505, + 636 + ] + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 176, + 200, + 437, + 584 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 176, + 200, + 437, + 584 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 200, + 437, + 584 + ], + "spans": [ + { + "bbox": [ + 176, + 200, + 437, + 584 + ], + "score": 0.973, + "type": "image", + "image_path": "4ded61fc2789380f8e48a344e2832f08e141cde3be4b1e729272294ee12539bd.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 176, + 200, + 437, + 214.22222222222223 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 176, + 214.22222222222223, + 437, + 228.44444444444446 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 176, + 228.44444444444446, + 437, + 242.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 176, + 242.66666666666669, + 437, + 256.8888888888889 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 176, + 256.8888888888889, + 437, + 271.11111111111114 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 176, + 271.11111111111114, + 437, + 285.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 176, + 285.33333333333337, + 437, + 299.5555555555556 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 176, + 299.5555555555556, + 437, + 313.7777777777778 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 176, + 313.7777777777778, + 437, + 328.00000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 176, + 328.00000000000006, + 437, + 342.2222222222223 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 176, + 342.2222222222223, + 437, + 356.4444444444445 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 176, + 356.4444444444445, + 437, + 370.66666666666674 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 370.66666666666674, + 437, + 384.88888888888897 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 176, + 384.88888888888897, + 437, + 399.1111111111112 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 176, + 399.1111111111112, + 437, + 413.3333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 176, + 413.3333333333334, + 437, + 427.55555555555566 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 176, + 427.55555555555566, + 437, + 441.7777777777779 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 176, + 441.7777777777779, + 437, + 456.0000000000001 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 176, + 456.0000000000001, + 437, + 470.22222222222234 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 176, + 470.22222222222234, + 437, + 484.44444444444457 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 176, + 484.44444444444457, + 437, + 498.6666666666668 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 176, + 498.6666666666668, + 437, + 512.888888888889 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 176, + 512.888888888889, + 437, + 527.1111111111112 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 176, + 527.1111111111112, + 437, + 541.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 176, + 541.3333333333334, + 437, + 555.5555555555555 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 176, + 555.5555555555555, + 437, + 569.7777777777777 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 176, + 569.7777777777777, + 437, + 583.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 114, + 592, + 494, + 605 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 591, + 496, + 605 + ], + "spans": [ + { + "bbox": [ + 114, + 591, + 496, + 605 + ], + "score": 1.0, + "content": "Figure 4: Comparison on attention patterns of the last layer between DeBERTa and RoBERTa.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + } + ], + "index": 20.0 + } + ], + "page_idx": 19, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 311, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 749, + 313, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 15, + "width": 15 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 176, + 200, + 437, + 584 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 176, + 200, + 437, + 584 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 176, + 200, + 437, + 584 + ], + "spans": [ + { + "bbox": [ + 176, + 200, + 437, + 584 + ], + "score": 0.973, + "type": "image", + "image_path": "4ded61fc2789380f8e48a344e2832f08e141cde3be4b1e729272294ee12539bd.jpg" + } + ] + } + ], + "index": 13, + "virtual_lines": [ + { + "bbox": [ + 176, + 200, + 437, + 214.22222222222223 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 176, + 214.22222222222223, + 437, + 228.44444444444446 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 176, + 228.44444444444446, + 437, + 242.66666666666669 + ], + "spans": [], + "index": 2 + }, + { + "bbox": [ + 176, + 242.66666666666669, + 437, + 256.8888888888889 + ], + "spans": [], + "index": 3 + }, + { + "bbox": [ + 176, + 256.8888888888889, + 437, + 271.11111111111114 + ], + "spans": [], + "index": 4 + }, + { + "bbox": [ + 176, + 271.11111111111114, + 437, + 285.33333333333337 + ], + "spans": [], + "index": 5 + }, + { + "bbox": [ + 176, + 285.33333333333337, + 437, + 299.5555555555556 + ], + "spans": [], + "index": 6 + }, + { + "bbox": [ + 176, + 299.5555555555556, + 437, + 313.7777777777778 + ], + "spans": [], + "index": 7 + }, + { + "bbox": [ + 176, + 313.7777777777778, + 437, + 328.00000000000006 + ], + "spans": [], + "index": 8 + }, + { + "bbox": [ + 176, + 328.00000000000006, + 437, + 342.2222222222223 + ], + "spans": [], + "index": 9 + }, + { + "bbox": [ + 176, + 342.2222222222223, + 437, + 356.4444444444445 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 176, + 356.4444444444445, + 437, + 370.66666666666674 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 176, + 370.66666666666674, + 437, + 384.88888888888897 + ], + "spans": [], + "index": 12 + }, + { + "bbox": [ + 176, + 384.88888888888897, + 437, + 399.1111111111112 + ], + "spans": [], + "index": 13 + }, + { + "bbox": [ + 176, + 399.1111111111112, + 437, + 413.3333333333334 + ], + "spans": [], + "index": 14 + }, + { + "bbox": [ + 176, + 413.3333333333334, + 437, + 427.55555555555566 + ], + "spans": [], + "index": 15 + }, + { + "bbox": [ + 176, + 427.55555555555566, + 437, + 441.7777777777779 + ], + "spans": [], + "index": 16 + }, + { + "bbox": [ + 176, + 441.7777777777779, + 437, + 456.0000000000001 + ], + "spans": [], + "index": 17 + }, + { + "bbox": [ + 176, + 456.0000000000001, + 437, + 470.22222222222234 + ], + "spans": [], + "index": 18 + }, + { + "bbox": [ + 176, + 470.22222222222234, + 437, + 484.44444444444457 + ], + "spans": [], + "index": 19 + }, + { + "bbox": [ + 176, + 484.44444444444457, + 437, + 498.6666666666668 + ], + "spans": [], + "index": 20 + }, + { + "bbox": [ + 176, + 498.6666666666668, + 437, + 512.888888888889 + ], + "spans": [], + "index": 21 + }, + { + "bbox": [ + 176, + 512.888888888889, + 437, + 527.1111111111112 + ], + "spans": [], + "index": 22 + }, + { + "bbox": [ + 176, + 527.1111111111112, + 437, + 541.3333333333334 + ], + "spans": [], + "index": 23 + }, + { + "bbox": [ + 176, + 541.3333333333334, + 437, + 555.5555555555555 + ], + "spans": [], + "index": 24 + }, + { + "bbox": [ + 176, + 555.5555555555555, + 437, + 569.7777777777777 + ], + "spans": [], + "index": 25 + }, + { + "bbox": [ + 176, + 569.7777777777777, + 437, + 583.9999999999999 + ], + "spans": [], + "index": 26 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 114, + 592, + 494, + 605 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 591, + 496, + 605 + ], + "spans": [ + { + "bbox": [ + 114, + 591, + 496, + 605 + ], + "score": 1.0, + "content": "Figure 4: Comparison on attention patterns of the last layer between DeBERTa and RoBERTa.", + "type": "text" + } + ], + "index": 27 + } + ], + "index": 27 + } + ], + "index": 20.0 + } + ] + }, + { + "preproc_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 74, + 503, + 446 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 74, + 503, + 446 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 74, + 503, + 446 + ], + "spans": [ + { + "bbox": [ + 109, + 74, + 503, + 446 + ], + "score": 0.975, + "type": "image", + "image_path": "797e974d1df596acf89f11dd99e90820f599208dca3b930e0dc2054ac2ea74aa.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 74, + 503, + 198.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 198.0, + 503, + 322.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 322.0, + 503, + 446.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 455, + 506, + 478 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "Figure 5: Comparison on attention patterns of last layer between DeBERTa and its variants (i.e.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 465, + 321, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 321, + 478 + ], + "score": 1.0, + "content": "DeBERTa without EMD, C2P and P2C respectively).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 500, + 344, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 344, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 344, + 513 + ], + "score": 1.0, + "content": "A.10 ACCOUNT FOR THE VARIANCE IN FINE-TUNING", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Accounting for the variance of different runs of fine-tuning, in our experiments, we always follow", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "Liu et al. (2019c) to report the results on downstream tasks by averaging over five runs with different", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 543, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 504, + 555 + ], + "score": 1.0, + "content": "random initialization seeds, and perform significance test when comparing results. As the examples", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 553, + 474, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 183, + 567 + ], + "score": 1.0, + "content": "shown in Table 14,", + "type": "text" + }, + { + "bbox": [ + 183, + 554, + 241, + 565 + ], + "score": 0.47, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 553, + 345, + 567 + ], + "score": 1.0, + "content": "significantly outperforms", + "type": "text" + }, + { + "bbox": [ + 346, + 554, + 403, + 565 + ], + "score": 0.67, + "content": "\\mathrm { R o B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 553, + 407, + 567 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 408, + 555, + 414, + 565 + ], + "score": 0.72, + "content": "\\dot { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 553, + 439, + 567 + ], + "score": 1.0, + "content": "-value", + "type": "text" + }, + { + "bbox": [ + 439, + 554, + 467, + 565 + ], + "score": 0.74, + "content": "< 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 553, + 474, + 567 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5 + }, + { + "type": "table", + "bbox": [ + 114, + 576, + 498, + 617 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 576, + 498, + 617 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 576, + 498, + 617 + ], + "spans": [ + { + "bbox": [ + 114, + 576, + 498, + 617 + ], + "score": 0.966, + "html": "
Model MNLI-matched (Min/Max/Avg)SQuAD v1.1 (Min/Max/Avg)p-value
RoBERTabase84.7/85.0/84.990.8/91.3/91.10.02
DeBERTabase86.1/86.5/86.391.8/92.2/92.10.01
", + "type": "table", + "image_path": "7eb07f93a7a34246d91924c9c9593cc42c94ae69031c65b08e9ebabf5b5a4aa3.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 114, + 576, + 498, + 589.6666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 114, + 589.6666666666666, + 498, + 603.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 114, + 603.3333333333333, + 498, + 616.9999999999999 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 126, + 624, + 482, + 637 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 624, + 483, + 638 + ], + "spans": [ + { + "bbox": [ + 127, + 624, + 483, + 638 + ], + "score": 1.0, + "content": "Table 14: Comparison of DeBERTa and RoBERTa on MNLI-matched and SQuAD v1.1.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + } + ], + "page_idx": 20, + "page_size": [ + 612, + 792 + ], + "discarded_blocks": [ + { + "type": "discarded", + "bbox": [ + 107, + 27, + 292, + 37 + ], + "lines": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "spans": [ + { + "bbox": [ + 106, + 26, + 293, + 38 + ], + "score": 1.0, + "content": "Published as a conference paper at ICLR 2021", + "type": "text" + } + ] + } + ] + }, + { + "type": "discarded", + "bbox": [ + 300, + 751, + 310, + 760 + ], + "lines": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "spans": [ + { + "bbox": [ + 298, + 750, + 312, + 764 + ], + "score": 1.0, + "content": "", + "type": "text", + "height": 14, + "width": 14 + } + ] + } + ] + } + ], + "para_blocks": [ + { + "type": "image", + "bbox": [ + 109, + 74, + 503, + 446 + ], + "blocks": [ + { + "type": "image_body", + "bbox": [ + 109, + 74, + 503, + 446 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 109, + 74, + 503, + 446 + ], + "spans": [ + { + "bbox": [ + 109, + 74, + 503, + 446 + ], + "score": 0.975, + "type": "image", + "image_path": "797e974d1df596acf89f11dd99e90820f599208dca3b930e0dc2054ac2ea74aa.jpg" + } + ] + } + ], + "index": 1, + "virtual_lines": [ + { + "bbox": [ + 109, + 74, + 503, + 198.0 + ], + "spans": [], + "index": 0 + }, + { + "bbox": [ + 109, + 198.0, + 503, + 322.0 + ], + "spans": [], + "index": 1 + }, + { + "bbox": [ + 109, + 322.0, + 503, + 446.0 + ], + "spans": [], + "index": 2 + } + ] + }, + { + "type": "image_caption", + "bbox": [ + 107, + 455, + 506, + 478 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 106, + 455, + 506, + 468 + ], + "spans": [ + { + "bbox": [ + 106, + 455, + 506, + 468 + ], + "score": 1.0, + "content": "Figure 5: Comparison on attention patterns of last layer between DeBERTa and its variants (i.e.", + "type": "text" + } + ], + "index": 3 + }, + { + "bbox": [ + 106, + 465, + 321, + 478 + ], + "spans": [ + { + "bbox": [ + 106, + 465, + 321, + 478 + ], + "score": 1.0, + "content": "DeBERTa without EMD, C2P and P2C respectively).", + "type": "text" + } + ], + "index": 4 + } + ], + "index": 3.5 + } + ], + "index": 2.25 + }, + { + "type": "title", + "bbox": [ + 107, + 500, + 344, + 511 + ], + "lines": [ + { + "bbox": [ + 106, + 499, + 344, + 513 + ], + "spans": [ + { + "bbox": [ + 106, + 499, + 344, + 513 + ], + "score": 1.0, + "content": "A.10 ACCOUNT FOR THE VARIANCE IN FINE-TUNING", + "type": "text" + } + ], + "index": 5 + } + ], + "index": 5 + }, + { + "type": "text", + "bbox": [ + 107, + 520, + 505, + 565 + ], + "lines": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "spans": [ + { + "bbox": [ + 105, + 520, + 505, + 533 + ], + "score": 1.0, + "content": "Accounting for the variance of different runs of fine-tuning, in our experiments, we always follow", + "type": "text" + } + ], + "index": 6 + }, + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "spans": [ + { + "bbox": [ + 105, + 532, + 506, + 544 + ], + "score": 1.0, + "content": "Liu et al. (2019c) to report the results on downstream tasks by averaging over five runs with different", + "type": "text" + } + ], + "index": 7 + }, + { + "bbox": [ + 105, + 543, + 504, + 555 + ], + "spans": [ + { + "bbox": [ + 105, + 543, + 504, + 555 + ], + "score": 1.0, + "content": "random initialization seeds, and perform significance test when comparing results. As the examples", + "type": "text" + } + ], + "index": 8 + }, + { + "bbox": [ + 105, + 553, + 474, + 567 + ], + "spans": [ + { + "bbox": [ + 105, + 553, + 183, + 567 + ], + "score": 1.0, + "content": "shown in Table 14,", + "type": "text" + }, + { + "bbox": [ + 183, + 554, + 241, + 565 + ], + "score": 0.47, + "content": "\\mathrm { D e B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 242, + 553, + 345, + 567 + ], + "score": 1.0, + "content": "significantly outperforms", + "type": "text" + }, + { + "bbox": [ + 346, + 554, + 403, + 565 + ], + "score": 0.67, + "content": "\\mathrm { R o B E R T a } _ { b a s e }", + "type": "inline_equation" + }, + { + "bbox": [ + 403, + 553, + 407, + 567 + ], + "score": 0.0, + "content": "", + "type": "text" + }, + { + "bbox": [ + 408, + 555, + 414, + 565 + ], + "score": 0.72, + "content": "\\dot { p }", + "type": "inline_equation" + }, + { + "bbox": [ + 414, + 553, + 439, + 567 + ], + "score": 1.0, + "content": "-value", + "type": "text" + }, + { + "bbox": [ + 439, + 554, + 467, + 565 + ], + "score": 0.74, + "content": "< 0 . 0 5", + "type": "inline_equation" + }, + { + "bbox": [ + 467, + 553, + 474, + 567 + ], + "score": 1.0, + "content": ").", + "type": "text" + } + ], + "index": 9 + } + ], + "index": 7.5, + "bbox_fs": [ + 105, + 520, + 506, + 567 + ] + }, + { + "type": "table", + "bbox": [ + 114, + 576, + 498, + 617 + ], + "blocks": [ + { + "type": "table_body", + "bbox": [ + 114, + 576, + 498, + 617 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 114, + 576, + 498, + 617 + ], + "spans": [ + { + "bbox": [ + 114, + 576, + 498, + 617 + ], + "score": 0.966, + "html": "
Model MNLI-matched (Min/Max/Avg)SQuAD v1.1 (Min/Max/Avg)p-value
RoBERTabase84.7/85.0/84.990.8/91.3/91.10.02
DeBERTabase86.1/86.5/86.391.8/92.2/92.10.01
", + "type": "table", + "image_path": "7eb07f93a7a34246d91924c9c9593cc42c94ae69031c65b08e9ebabf5b5a4aa3.jpg" + } + ] + } + ], + "index": 11, + "virtual_lines": [ + { + "bbox": [ + 114, + 576, + 498, + 589.6666666666666 + ], + "spans": [], + "index": 10 + }, + { + "bbox": [ + 114, + 589.6666666666666, + 498, + 603.3333333333333 + ], + "spans": [], + "index": 11 + }, + { + "bbox": [ + 114, + 603.3333333333333, + 498, + 616.9999999999999 + ], + "spans": [], + "index": 12 + } + ] + }, + { + "type": "table_caption", + "bbox": [ + 126, + 624, + 482, + 637 + ], + "group_id": 0, + "lines": [ + { + "bbox": [ + 127, + 624, + 483, + 638 + ], + "spans": [ + { + "bbox": [ + 127, + 624, + 483, + 638 + ], + "score": 1.0, + "content": "Table 14: Comparison of DeBERTa and RoBERTa on MNLI-matched and SQuAD v1.1.", + "type": "text" + } + ], + "index": 13 + } + ], + "index": 13 + } + ], + "index": 12.0 + } + ] + } + ], + "_backend": "pipeline", + "_version_name": "2.2.2" +} \ No newline at end of file diff --git a/parse/train/XPZIaotutsD/XPZIaotutsD_model.json b/parse/train/XPZIaotutsD/XPZIaotutsD_model.json new file mode 100644 index 0000000000000000000000000000000000000000..2ece209be89acce5ca485717b39b1ba8c9abc08a --- /dev/null +++ b/parse/train/XPZIaotutsD/XPZIaotutsD_model.json @@ -0,0 +1,26452 @@ +[ + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 397, + 630, + 1304, + 630, + 1304, + 1417, + 397, + 1417 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1570, + 1405, + 1570, + 1405, + 1936, + 298, + 1936 + ], + "score": 0.98 + }, + { + "category_id": 0, + "poly": [ + 299, + 218, + 1403, + 218, + 1403, + 323, + 299, + 323 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 298, + 1978, + 1402, + 1978, + 1402, + 2035, + 298, + 2035 + ], + "score": 0.942 + }, + { + "category_id": 0, + "poly": [ + 302, + 1495, + 573, + 1495, + 573, + 1530, + 302, + 1530 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 773, + 550, + 926, + 550, + 926, + 584, + 773, + 584 + ], + "score": 0.879 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.877 + }, + { + "category_id": 1, + "poly": [ + 312, + 373, + 1051, + 373, + 1051, + 469, + 312, + 469 + ], + "score": 0.866 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 856, + 2088, + 856, + 2112, + 841, + 2112 + ], + "score": 0.747 + }, + { + "category_id": 13, + "poly": [ + 1096, + 1115, + 1175, + 1115, + 1175, + 1145, + 1096, + 1145 + ], + "score": 0.92, + "latex": "+ 2 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 550, + 1115, + 629, + 1115, + 629, + 1144, + 550, + 1144 + ], + "score": 0.88, + "latex": "+ 0 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 645, + 1146, + 723, + 1146, + 723, + 1175, + 645, + 1175 + ], + "score": 0.88, + "latex": "+ 3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 853, + 1146, + 930, + 1146, + 930, + 1175, + 853, + 1175 + ], + "score": 0.84, + "latex": "8 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 396, + 1145, + 478, + 1145, + 478, + 1176, + 396, + 1176 + ], + "score": 0.83, + "latex": "9 0 . 7 \\% )" + }, + { + "category_id": 13, + "poly": [ + 735, + 1146, + 810, + 1146, + 810, + 1175, + 735, + 1175 + ], + "score": 0.83, + "latex": "8 3 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 768, + 1115, + 849, + 1115, + 849, + 1144, + 768, + 1144 + ], + "score": 0.83, + "latex": "9 1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 641, + 1115, + 719, + 1115, + 719, + 1144, + 641, + 1144 + ], + "score": 0.83, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1188, + 1115, + 1266, + 1115, + 1266, + 1144, + 1188, + 1144 + ], + "score": 0.82, + "latex": "8 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 447, + 374, + 496, + 374, + 496, + 406, + 447, + 406 + ], + "score": 0.79, + "latex": "\\mathbf { H e } ^ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 627, + 374, + 685, + 374, + 685, + 406, + 627, + 406 + ], + "score": 0.69, + "latex": "\\mathbf { L i u ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1208, + 2009, + 1225, + 2009, + 1225, + 2029, + 1208, + 2029 + ], + "score": 0.51, + "latex": "=" + }, + { + "category_id": 13, + "poly": [ + 804, + 374, + 869, + 374, + 869, + 407, + 804, + 407 + ], + "score": 0.36, + "latex": "\\mathbf { G a o ^ { 2 } }" + }, + { + "category_id": 13, + "poly": [ + 1002, + 1115, + 1056, + 1115, + 1056, + 1145, + 1002, + 1145 + ], + "score": 0.29, + "latex": "\\mathrm { v } 2 . 0" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 219.0, + 1410.0, + 219.0, + 1410.0, + 273.0, + 294.0, + 273.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 278.0, + 806.0, + 278.0, + 806.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1973.0, + 1406.0, + 1973.0, + 1406.0, + 2010.0, + 332.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2004.0, + 1207.0, + 2004.0, + 1207.0, + 2035.0, + 296.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1226.0, + 2004.0, + 1333.0, + 2004.0, + 1333.0, + 2035.0, + 1226.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1492.0, + 579.0, + 1492.0, + 579.0, + 1539.0, + 294.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 549.0, + 932.0, + 549.0, + 932.0, + 587.0, + 769.0, + 587.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 840.0, + 2088.0, + 857.0, + 2088.0, + 857.0, + 2116.0, + 840.0, + 2116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 627.0, + 1305.0, + 627.0, + 1305.0, + 663.0, + 392.0, + 663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 658.0, + 1308.0, + 658.0, + 1308.0, + 694.0, + 393.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 690.0, + 1307.0, + 690.0, + 1307.0, + 722.0, + 392.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 716.0, + 1305.0, + 716.0, + 1305.0, + 754.0, + 393.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 750.0, + 1305.0, + 750.0, + 1305.0, + 781.0, + 393.0, + 781.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 780.0, + 1307.0, + 780.0, + 1307.0, + 815.0, + 394.0, + 815.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 811.0, + 1308.0, + 811.0, + 1308.0, + 844.0, + 394.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 841.0, + 1307.0, + 841.0, + 1307.0, + 874.0, + 394.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 870.0, + 1307.0, + 870.0, + 1307.0, + 905.0, + 393.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 900.0, + 1308.0, + 900.0, + 1308.0, + 938.0, + 394.0, + 938.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 931.0, + 1308.0, + 931.0, + 1308.0, + 966.0, + 392.0, + 966.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 961.0, + 1306.0, + 961.0, + 1306.0, + 1000.0, + 393.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 994.0, + 1304.0, + 994.0, + 1304.0, + 1027.0, + 395.0, + 1027.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1022.0, + 1306.0, + 1022.0, + 1306.0, + 1059.0, + 393.0, + 1059.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1051.0, + 1308.0, + 1051.0, + 1308.0, + 1091.0, + 392.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1083.0, + 1305.0, + 1083.0, + 1305.0, + 1118.0, + 393.0, + 1118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1113.0, + 549.0, + 1113.0, + 549.0, + 1150.0, + 392.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 630.0, + 1113.0, + 640.0, + 1113.0, + 640.0, + 1150.0, + 630.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 720.0, + 1113.0, + 767.0, + 1113.0, + 767.0, + 1150.0, + 720.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 850.0, + 1113.0, + 1001.0, + 1113.0, + 1001.0, + 1150.0, + 850.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1057.0, + 1113.0, + 1095.0, + 1113.0, + 1095.0, + 1150.0, + 1057.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1113.0, + 1187.0, + 1113.0, + 1187.0, + 1150.0, + 1176.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1267.0, + 1113.0, + 1309.0, + 1113.0, + 1309.0, + 1150.0, + 1267.0, + 1150.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 479.0, + 1145.0, + 644.0, + 1145.0, + 644.0, + 1178.0, + 479.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 724.0, + 1145.0, + 734.0, + 1145.0, + 734.0, + 1178.0, + 724.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 811.0, + 1145.0, + 852.0, + 1145.0, + 852.0, + 1178.0, + 811.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 931.0, + 1145.0, + 1305.0, + 1145.0, + 1305.0, + 1178.0, + 931.0, + 1178.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1176.0, + 1309.0, + 1176.0, + 1309.0, + 1210.0, + 392.0, + 1210.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1207.0, + 1307.0, + 1207.0, + 1307.0, + 1238.0, + 392.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1236.0, + 1309.0, + 1236.0, + 1309.0, + 1272.0, + 393.0, + 1272.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 393.0, + 1265.0, + 1307.0, + 1265.0, + 1307.0, + 1301.0, + 393.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1297.0, + 1308.0, + 1297.0, + 1308.0, + 1331.0, + 394.0, + 1331.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 1327.0, + 1306.0, + 1327.0, + 1306.0, + 1363.0, + 392.0, + 1363.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 395.0, + 1359.0, + 1307.0, + 1359.0, + 1307.0, + 1389.0, + 395.0, + 1389.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 394.0, + 1389.0, + 1020.0, + 1389.0, + 1020.0, + 1422.0, + 394.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1565.0, + 1405.0, + 1565.0, + 1405.0, + 1609.0, + 292.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1603.0, + 1402.0, + 1603.0, + 1402.0, + 1633.0, + 296.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1632.0, + 1406.0, + 1632.0, + 1406.0, + 1667.0, + 293.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1661.0, + 1407.0, + 1661.0, + 1407.0, + 1700.0, + 291.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1694.0, + 1407.0, + 1694.0, + 1407.0, + 1728.0, + 295.0, + 1728.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1721.0, + 1407.0, + 1721.0, + 1407.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1754.0, + 1406.0, + 1754.0, + 1406.0, + 1788.0, + 293.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1781.0, + 1410.0, + 1781.0, + 1410.0, + 1820.0, + 292.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1812.0, + 1407.0, + 1812.0, + 1407.0, + 1849.0, + 293.0, + 1849.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1842.0, + 1405.0, + 1842.0, + 1405.0, + 1882.0, + 293.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1874.0, + 1406.0, + 1874.0, + 1406.0, + 1912.0, + 293.0, + 1912.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1906.0, + 853.0, + 1906.0, + 853.0, + 1940.0, + 295.0, + 1940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 374.0, + 446.0, + 374.0, + 446.0, + 410.0, + 309.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 374.0, + 626.0, + 374.0, + 626.0, + 410.0, + 497.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 374.0, + 803.0, + 374.0, + 803.0, + 410.0, + 686.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 870.0, + 374.0, + 1055.0, + 374.0, + 1055.0, + 410.0, + 870.0, + 410.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 405.0, + 656.0, + 405.0, + 656.0, + 443.0, + 312.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 709.0, + 403.0, + 960.0, + 403.0, + 960.0, + 444.0, + 709.0, + 444.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 438.0, + 1002.0, + 438.0, + 1002.0, + 473.0, + 316.0, + 473.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 0, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 652, + 1405, + 652, + 1405, + 1049, + 298, + 1049 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 298, + 1143, + 1405, + 1143, + 1405, + 1509, + 298, + 1509 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 1697, + 1405, + 1697, + 1405, + 2034, + 298, + 2034 + ], + "score": 0.982 + }, + { + "category_id": 1, + "poly": [ + 298, + 364, + 1403, + 364, + 1403, + 609, + 298, + 609 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1401, + 229, + 1401, + 323, + 298, + 323 + ], + "score": 0.96 + }, + { + "category_id": 1, + "poly": [ + 301, + 1065, + 1395, + 1065, + 1395, + 1128, + 301, + 1128 + ], + "score": 0.946 + }, + { + "category_id": 0, + "poly": [ + 300, + 1562, + 556, + 1562, + 556, + 1598, + 300, + 1598 + ], + "score": 0.906 + }, + { + "category_id": 0, + "poly": [ + 300, + 1636, + 549, + 1636, + 549, + 1668, + 300, + 1668 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 841, + 2089, + 858, + 2089, + 858, + 2112, + 841, + 2112 + ], + "score": 0.7 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.155 + }, + { + "category_id": 13, + "poly": [ + 486, + 1265, + 648, + 1265, + 648, + 1296, + 486, + 1296 + ], + "score": 0.9, + "latex": "+ 2 . 3 \\% ( 8 8 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1387, + 1269, + 1387, + 1269, + 1418, + 1126, + 1418 + ], + "score": 0.89, + "latex": "0 . 6 \\% ( 8 9 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1066, + 1235, + 1143, + 1235, + 1143, + 1264, + 1066, + 1264 + ], + "score": 0.89, + "latex": "+ 0 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 954, + 1265, + 1033, + 1265, + 1033, + 1294, + 954, + 1294 + ], + "score": 0.88, + "latex": "+ 3 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 1313, + 1387, + 1389, + 1387, + 1389, + 1417, + 1313, + 1417 + ], + "score": 0.85, + "latex": "8 9 . 9 \\%" + }, + { + "category_id": 13, + "poly": [ + 692, + 1265, + 773, + 1265, + 773, + 1295, + 692, + 1295 + ], + "score": 0.84, + "latex": "9 0 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 1156, + 1235, + 1231, + 1235, + 1231, + 1264, + 1156, + 1264 + ], + "score": 0.84, + "latex": "9 0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1168, + 1266, + 1248, + 1266, + 1248, + 1295, + 1168, + 1295 + ], + "score": 0.83, + "latex": "8 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1046, + 1266, + 1123, + 1266, + 1123, + 1294, + 1046, + 1294 + ], + "score": 0.82, + "latex": "8 3 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1275, + 1235, + 1353, + 1235, + 1353, + 1264, + 1275, + 1264 + ], + "score": 0.81, + "latex": "9 1 . 1 \\%" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1558.0, + 562.0, + 1558.0, + 562.0, + 1607.0, + 291.0, + 1607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1635.0, + 553.0, + 1635.0, + 553.0, + 1672.0, + 295.0, + 1672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2086.0, + 862.0, + 2086.0, + 862.0, + 2121.0, + 839.0, + 2121.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": [ + 293.0, + 650.0, + 1405.0, + 650.0, + 1405.0, + 690.0, + 293.0, + 690.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 682.0, + 1407.0, + 682.0, + 1407.0, + 720.0, + 293.0, + 720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 712.0, + 1405.0, + 712.0, + 1405.0, + 751.0, + 292.0, + 751.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 742.0, + 1405.0, + 742.0, + 1405.0, + 779.0, + 293.0, + 779.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 777.0, + 1406.0, + 777.0, + 1406.0, + 809.0, + 296.0, + 809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 803.0, + 1405.0, + 803.0, + 1405.0, + 840.0, + 293.0, + 840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 834.0, + 1406.0, + 834.0, + 1406.0, + 871.0, + 293.0, + 871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 865.0, + 1405.0, + 865.0, + 1405.0, + 902.0, + 292.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 896.0, + 1407.0, + 896.0, + 1407.0, + 932.0, + 295.0, + 932.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 927.0, + 1406.0, + 927.0, + 1406.0, + 963.0, + 295.0, + 963.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 958.0, + 1405.0, + 958.0, + 1405.0, + 994.0, + 295.0, + 994.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 988.0, + 1405.0, + 988.0, + 1405.0, + 1024.0, + 295.0, + 1024.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1019.0, + 1186.0, + 1019.0, + 1186.0, + 1055.0, + 296.0, + 1055.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1143.0, + 1405.0, + 1143.0, + 1405.0, + 1180.0, + 295.0, + 1180.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1173.0, + 1406.0, + 1173.0, + 1406.0, + 1211.0, + 293.0, + 1211.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1203.0, + 1406.0, + 1203.0, + 1406.0, + 1240.0, + 293.0, + 1240.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1234.0, + 1065.0, + 1234.0, + 1065.0, + 1271.0, + 293.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1144.0, + 1234.0, + 1155.0, + 1234.0, + 1155.0, + 1271.0, + 1144.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1232.0, + 1234.0, + 1274.0, + 1234.0, + 1274.0, + 1271.0, + 1232.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1354.0, + 1234.0, + 1406.0, + 1234.0, + 1406.0, + 1271.0, + 1354.0, + 1271.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1264.0, + 485.0, + 1264.0, + 485.0, + 1298.0, + 295.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 1264.0, + 691.0, + 1264.0, + 691.0, + 1298.0, + 649.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 774.0, + 1264.0, + 953.0, + 1264.0, + 953.0, + 1298.0, + 774.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1034.0, + 1264.0, + 1045.0, + 1264.0, + 1045.0, + 1298.0, + 1034.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1124.0, + 1264.0, + 1167.0, + 1264.0, + 1167.0, + 1298.0, + 1124.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1249.0, + 1264.0, + 1405.0, + 1264.0, + 1405.0, + 1298.0, + 1249.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1296.0, + 1407.0, + 1296.0, + 1407.0, + 1330.0, + 295.0, + 1330.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1325.0, + 1406.0, + 1325.0, + 1406.0, + 1361.0, + 292.0, + 1361.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1355.0, + 1406.0, + 1355.0, + 1406.0, + 1393.0, + 293.0, + 1393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1384.0, + 1125.0, + 1384.0, + 1125.0, + 1422.0, + 293.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1270.0, + 1384.0, + 1312.0, + 1384.0, + 1312.0, + 1422.0, + 1270.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1390.0, + 1384.0, + 1408.0, + 1384.0, + 1408.0, + 1422.0, + 1390.0, + 1422.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1417.0, + 1405.0, + 1417.0, + 1405.0, + 1451.0, + 293.0, + 1451.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1447.0, + 1407.0, + 1447.0, + 1407.0, + 1485.0, + 293.0, + 1485.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1479.0, + 673.0, + 1479.0, + 673.0, + 1513.0, + 296.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1698.0, + 1407.0, + 1698.0, + 1407.0, + 1733.0, + 293.0, + 1733.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1726.0, + 1406.0, + 1726.0, + 1406.0, + 1764.0, + 293.0, + 1764.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1759.0, + 1403.0, + 1759.0, + 1403.0, + 1792.0, + 293.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1787.0, + 1406.0, + 1787.0, + 1406.0, + 1828.0, + 292.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1821.0, + 1407.0, + 1821.0, + 1407.0, + 1856.0, + 293.0, + 1856.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1849.0, + 1407.0, + 1849.0, + 1407.0, + 1884.0, + 295.0, + 1884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1878.0, + 1406.0, + 1878.0, + 1406.0, + 1919.0, + 291.0, + 1919.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1911.0, + 1403.0, + 1911.0, + 1403.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1971.0, + 1406.0, + 1971.0, + 1406.0, + 2010.0, + 295.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2003.0, + 1405.0, + 2003.0, + 1405.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 363.0, + 1405.0, + 363.0, + 1405.0, + 401.0, + 295.0, + 401.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 395.0, + 1407.0, + 395.0, + 1407.0, + 431.0, + 291.0, + 431.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 428.0, + 1403.0, + 428.0, + 1403.0, + 461.0, + 294.0, + 461.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 458.0, + 1405.0, + 458.0, + 1405.0, + 491.0, + 294.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 487.0, + 1408.0, + 487.0, + 1408.0, + 522.0, + 293.0, + 522.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 515.0, + 1407.0, + 515.0, + 1407.0, + 556.0, + 292.0, + 556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 546.0, + 1405.0, + 546.0, + 1405.0, + 585.0, + 293.0, + 585.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 578.0, + 735.0, + 578.0, + 735.0, + 614.0, + 295.0, + 614.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 227.0, + 1406.0, + 227.0, + 1406.0, + 268.0, + 292.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 259.0, + 1406.0, + 259.0, + 1406.0, + 299.0, + 293.0, + 299.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 291.0, + 1314.0, + 291.0, + 1314.0, + 326.0, + 294.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1061.0, + 1402.0, + 1061.0, + 1402.0, + 1103.0, + 293.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1094.0, + 1109.0, + 1094.0, + 1109.0, + 1132.0, + 295.0, + 1132.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 1, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 1209, + 1406, + 1209, + 1406, + 1459, + 296, + 1459 + ], + "score": 0.984 + }, + { + "category_id": 1, + "poly": [ + 296, + 382, + 1405, + 382, + 1405, + 548, + 296, + 548 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 298, + 626, + 1403, + 626, + 1403, + 720, + 298, + 720 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 302, + 1105, + 1396, + 1105, + 1396, + 1196, + 302, + 1196 + ], + "score": 0.963 + }, + { + "category_id": 1, + "poly": [ + 299, + 916, + 1403, + 916, + 1403, + 1010, + 299, + 1010 + ], + "score": 0.961 + }, + { + "category_id": 8, + "poly": [ + 553, + 1538, + 1143, + 1538, + 1143, + 1648, + 553, + 1648 + ], + "score": 0.96 + }, + { + "category_id": 8, + "poly": [ + 577, + 1014, + 1121, + 1014, + 1121, + 1099, + 577, + 1099 + ], + "score": 0.959 + }, + { + "category_id": 1, + "poly": [ + 298, + 1656, + 1400, + 1656, + 1400, + 1752, + 298, + 1752 + ], + "score": 0.958 + }, + { + "category_id": 8, + "poly": [ + 582, + 1834, + 1098, + 1834, + 1098, + 1930, + 582, + 1930 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 294, + 229, + 1403, + 229, + 1403, + 294, + 294, + 294 + ], + "score": 0.951 + }, + { + "category_id": 8, + "poly": [ + 567, + 554, + 1131, + 554, + 1131, + 621, + 567, + 621 + ], + "score": 0.949 + }, + { + "category_id": 1, + "poly": [ + 294, + 1764, + 1400, + 1764, + 1400, + 1827, + 294, + 1827 + ], + "score": 0.946 + }, + { + "category_id": 1, + "poly": [ + 300, + 1471, + 1401, + 1471, + 1401, + 1532, + 300, + 1532 + ], + "score": 0.945 + }, + { + "category_id": 2, + "poly": [ + 297, + 1948, + 1404, + 1948, + 1404, + 2034, + 297, + 2034 + ], + "score": 0.941 + }, + { + "category_id": 0, + "poly": [ + 300, + 761, + 808, + 761, + 808, + 797, + 300, + 797 + ], + "score": 0.928 + }, + { + "category_id": 2, + "poly": [ + 299, + 74, + 813, + 74, + 813, + 105, + 299, + 105 + ], + "score": 0.915 + }, + { + "category_id": 0, + "poly": [ + 300, + 327, + 713, + 327, + 713, + 360, + 300, + 360 + ], + "score": 0.914 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1043, + 1400, + 1043, + 1400, + 1072, + 1366, + 1072 + ], + "score": 0.897 + }, + { + "category_id": 9, + "poly": [ + 1366, + 573, + 1400, + 573, + 1400, + 604, + 1366, + 604 + ], + "score": 0.897 + }, + { + "category_id": 1, + "poly": [ + 297, + 827, + 1398, + 827, + 1398, + 891, + 297, + 891 + ], + "score": 0.895 + }, + { + "category_id": 9, + "poly": [ + 1366, + 1868, + 1400, + 1868, + 1400, + 1898, + 1366, + 1898 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.698 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 859, + 2088, + 859, + 2112, + 841, + 2112 + ], + "score": 0.374 + }, + { + "category_id": 13, + "poly": [ + 933, + 1656, + 1084, + 1656, + 1084, + 1689, + 933, + 1689 + ], + "score": 0.95, + "latex": "H _ { o } \\in R ^ { N \\times d }" + }, + { + "category_id": 13, + "poly": [ + 791, + 1765, + 968, + 1765, + 968, + 1800, + 791, + 1800 + ], + "score": 0.93, + "latex": "\\delta ( i , j ) \\in [ 0 , 2 k )" + }, + { + "category_id": 13, + "poly": [ + 1068, + 446, + 1187, + 446, + 1187, + 480, + 1068, + 480 + ], + "score": 0.93, + "latex": "X \\mathrm { ~ = ~ } \\{ x _ { i } \\}" + }, + { + "category_id": 14, + "poly": [ + 583, + 1831, + 1102, + 1831, + 1102, + 1930, + 583, + 1930 + ], + "score": 0.93, + "latex": "\\delta ( i , j ) = \\left\\{ \\begin{array} { r l l } { { 0 } } & { { \\mathrm { f o r } } } & { { i - j \\leqslant - k } } \\\\ { { 2 k - 1 } } & { { \\mathrm { f o r } } } & { { i - j \\geqslant k } } \\\\ { { i - j + k } } & { { \\mathrm { o t h e r s . } } } & { { } } \\end{array} \\right." + }, + { + "category_id": 13, + "poly": [ + 820, + 1687, + 954, + 1687, + 954, + 1718, + 820, + 1718 + ], + "score": 0.92, + "latex": "\\pmb { A } \\in R ^ { N \\times N }" + }, + { + "category_id": 13, + "poly": [ + 1243, + 917, + 1316, + 917, + 1316, + 953, + 1243, + 953 + ], + "score": 0.92, + "latex": "\\{ P _ { i \\mid j } \\}" + }, + { + "category_id": 13, + "poly": [ + 1126, + 917, + 1190, + 917, + 1190, + 951, + 1126, + 951 + ], + "score": 0.92, + "latex": "\\left\\{ H _ { i } \\right\\}" + }, + { + "category_id": 14, + "poly": [ + 565, + 552, + 1132, + 552, + 1132, + 624, + 565, + 624 + ], + "score": 0.91, + "latex": "\\operatorname* { m a x } _ { \\theta } \\log p _ { \\theta } ( X | \\tilde { X } ) = \\operatorname* { m a x } _ { \\theta } \\sum _ { i \\in \\mathcal { C } } \\log p _ { \\theta } \\big ( \\tilde { x } _ { i } = x _ { i } | \\tilde { X } \\big )" + }, + { + "category_id": 13, + "poly": [ + 374, + 1656, + 513, + 1656, + 513, + 1687, + 374, + 1687 + ], + "score": 0.91, + "latex": "{ \\cal H } \\in { \\cal R } ^ { N \\times d }" + }, + { + "category_id": 14, + "poly": [ + 575, + 1012, + 1121, + 1012, + 1121, + 1104, + 575, + 1104 + ], + "score": 0.9, + "latex": "\\begin{array} { r l } & { A _ { i , j } = \\{ H _ { i } , P _ { i | j } \\} \\times \\{ H _ { j } , P _ { j | i } \\} ^ { \\intercal } } \\\\ & { \\qquad = H _ { i } H _ { j } ^ { \\intercal } + H _ { i } P _ { j | i } ^ { \\intercal } + P _ { i | j } H _ { j } ^ { \\intercal } + P _ { i | j } P _ { j | i } ^ { \\intercal } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 470, + 482, + 524, + 482, + 524, + 512, + 470, + 512 + ], + "score": 0.87, + "latex": "15 \\%" + }, + { + "category_id": 13, + "poly": [ + 1023, + 512, + 1052, + 512, + 1052, + 544, + 1023, + 544 + ], + "score": 0.86, + "latex": "\\tilde { X }" + }, + { + "category_id": 13, + "poly": [ + 296, + 658, + 350, + 658, + 350, + 687, + 296, + 687 + ], + "score": 0.86, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 824, + 658, + 878, + 658, + 878, + 687, + 824, + 687 + ], + "score": 0.85, + "latex": "10 \\%" + }, + { + "category_id": 13, + "poly": [ + 812, + 980, + 829, + 980, + 829, + 1011, + 812, + 1011 + ], + "score": 0.84, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 1187, + 1691, + 1216, + 1691, + 1216, + 1717, + 1187, + 1717 + ], + "score": 0.84, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 384, + 1768, + 403, + 1768, + 403, + 1794, + 384, + 1794 + ], + "score": 0.83, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 297, + 477, + 328, + 477, + 328, + 511, + 297, + 511 + ], + "score": 0.82, + "latex": "\\tilde { X }" + }, + { + "category_id": 13, + "poly": [ + 365, + 1799, + 381, + 1799, + 381, + 1829, + 365, + 1829 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 14, + "poly": [ + 553, + 1535, + 1146, + 1535, + 1146, + 1649, + 553, + 1649 + ], + "score": 0.81, + "latex": "\\begin{array} { c } { { Q = H W _ { q } , K = H W _ { k } , V = H W _ { v } , A = \\frac { Q K ^ { \\intercal } } { \\sqrt { d } } } } \\\\ { { H _ { o } = \\mathrm { s o f t m a x } ( A ) V } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 523, + 1722, + 541, + 1722, + 541, + 1747, + 523, + 1747 + ], + "score": 0.81, + "latex": "d" + }, + { + "category_id": 13, + "poly": [ + 1030, + 950, + 1047, + 950, + 1047, + 980, + 1030, + 980 + ], + "score": 0.8, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 827, + 518, + 846, + 518, + 846, + 544, + 827, + 544 + ], + "score": 0.8, + "latex": "\\tilde { x }" + }, + { + "category_id": 13, + "poly": [ + 749, + 981, + 761, + 981, + 761, + 1006, + 749, + 1006 + ], + "score": 0.79, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 370, + 628, + 389, + 628, + 389, + 654, + 370, + 654 + ], + "score": 0.79, + "latex": "\\mathcal { C }" + }, + { + "category_id": 13, + "poly": [ + 428, + 517, + 458, + 517, + 458, + 544, + 428, + 544 + ], + "score": 0.78, + "latex": "\\boldsymbol { X }" + }, + { + "category_id": 13, + "poly": [ + 1356, + 484, + 1372, + 484, + 1372, + 510, + 1356, + 510 + ], + "score": 0.78, + "latex": "\\theta" + }, + { + "category_id": 13, + "poly": [ + 1360, + 1770, + 1372, + 1770, + 1372, + 1793, + 1360, + 1793 + ], + "score": 0.77, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 557, + 921, + 570, + 921, + 570, + 945, + 557, + 945 + ], + "score": 0.75, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 298, + 1686, + 552, + 1686, + 552, + 1723, + 298, + 1723 + ], + "score": 0.67, + "latex": "W _ { q } , W _ { k } , W _ { v } \\in R ^ { d \\times \\hat { d } }" + }, + { + "category_id": 13, + "poly": [ + 298, + 1689, + 344, + 1689, + 344, + 1723, + 298, + 1723 + ], + "score": 0.6, + "latex": "W _ { q }" + }, + { + "category_id": 14, + "poly": [ + 689, + 1612, + 935, + 1612, + 935, + 1649, + 689, + 1649 + ], + "score": 0.51, + "latex": "H _ { o } = \\operatorname { s o f t m a x } ( A ) V" + }, + { + "category_id": 13, + "poly": [ + 353, + 1690, + 401, + 1690, + 401, + 1721, + 353, + 1721 + ], + "score": 0.3, + "latex": "W _ { k }" + }, + { + "category_id": 15, + "poly": [ + 328.0, + 1943.0, + 1405.0, + 1943.0, + 1405.0, + 1984.0, + 328.0, + 1984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1977.0, + 1405.0, + 1977.0, + 1405.0, + 2008.0, + 294.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2005.0, + 591.0, + 2005.0, + 591.0, + 2037.0, + 295.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 757.0, + 812.0, + 757.0, + 812.0, + 802.0, + 291.0, + 802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 326.0, + 717.0, + 326.0, + 717.0, + 362.0, + 295.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1209.0, + 1406.0, + 1209.0, + 1406.0, + 1248.0, + 293.0, + 1248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1242.0, + 1406.0, + 1242.0, + 1406.0, + 1279.0, + 293.0, + 1279.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1276.0, + 1407.0, + 1276.0, + 1407.0, + 1306.0, + 295.0, + 1306.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1305.0, + 1406.0, + 1305.0, + 1406.0, + 1338.0, + 293.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1332.0, + 1409.0, + 1332.0, + 1409.0, + 1370.0, + 291.0, + 1370.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1363.0, + 1409.0, + 1363.0, + 1409.0, + 1400.0, + 294.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1394.0, + 1406.0, + 1394.0, + 1406.0, + 1430.0, + 294.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1424.0, + 1170.0, + 1424.0, + 1170.0, + 1460.0, + 294.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 383.0, + 1406.0, + 383.0, + 1406.0, + 421.0, + 291.0, + 421.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 413.0, + 1405.0, + 413.0, + 1405.0, + 452.0, + 293.0, + 452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 444.0, + 1067.0, + 444.0, + 1067.0, + 483.0, + 291.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1188.0, + 444.0, + 1406.0, + 444.0, + 1406.0, + 483.0, + 1188.0, + 483.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 479.0, + 469.0, + 479.0, + 469.0, + 516.0, + 329.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 525.0, + 479.0, + 1355.0, + 479.0, + 1355.0, + 516.0, + 525.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 479.0, + 1405.0, + 479.0, + 1405.0, + 516.0, + 1373.0, + 516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 516.0, + 427.0, + 516.0, + 427.0, + 549.0, + 293.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 459.0, + 516.0, + 826.0, + 516.0, + 826.0, + 549.0, + 459.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 847.0, + 516.0, + 1022.0, + 516.0, + 1022.0, + 549.0, + 847.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1053.0, + 516.0, + 1067.0, + 516.0, + 1067.0, + 549.0, + 1053.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 621.0, + 369.0, + 621.0, + 369.0, + 665.0, + 292.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 390.0, + 621.0, + 1404.0, + 621.0, + 1404.0, + 665.0, + 390.0, + 665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 351.0, + 656.0, + 823.0, + 656.0, + 823.0, + 691.0, + 351.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 879.0, + 656.0, + 1404.0, + 656.0, + 1404.0, + 691.0, + 879.0, + 691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 688.0, + 724.0, + 688.0, + 724.0, + 722.0, + 294.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1103.0, + 1402.0, + 1103.0, + 1402.0, + 1139.0, + 297.0, + 1139.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1135.0, + 1401.0, + 1135.0, + 1401.0, + 1168.0, + 298.0, + 1168.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1165.0, + 819.0, + 1165.0, + 819.0, + 1197.0, + 294.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 916.0, + 556.0, + 916.0, + 556.0, + 953.0, + 294.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 571.0, + 916.0, + 1125.0, + 916.0, + 1125.0, + 953.0, + 571.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1191.0, + 916.0, + 1242.0, + 916.0, + 1242.0, + 953.0, + 1191.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 916.0, + 1405.0, + 916.0, + 1405.0, + 953.0, + 1317.0, + 953.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 946.0, + 1029.0, + 946.0, + 1029.0, + 982.0, + 292.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1048.0, + 946.0, + 1407.0, + 946.0, + 1407.0, + 982.0, + 1048.0, + 982.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 976.0, + 748.0, + 976.0, + 748.0, + 1014.0, + 294.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 762.0, + 976.0, + 811.0, + 976.0, + 811.0, + 1014.0, + 762.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 976.0, + 1330.0, + 976.0, + 1330.0, + 1014.0, + 830.0, + 1014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1648.0, + 373.0, + 1648.0, + 373.0, + 1697.0, + 291.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 514.0, + 1648.0, + 932.0, + 1648.0, + 932.0, + 1697.0, + 514.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1085.0, + 1648.0, + 1407.0, + 1648.0, + 1407.0, + 1697.0, + 1085.0, + 1697.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1678.0, + 297.0, + 1678.0, + 297.0, + 1727.0, + 291.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 553.0, + 1678.0, + 819.0, + 1678.0, + 819.0, + 1727.0, + 553.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 955.0, + 1678.0, + 1186.0, + 1678.0, + 1186.0, + 1727.0, + 955.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1678.0, + 1409.0, + 1678.0, + 1409.0, + 1727.0, + 1217.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1719.0, + 522.0, + 1719.0, + 522.0, + 1753.0, + 294.0, + 1753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 542.0, + 1719.0, + 897.0, + 1719.0, + 897.0, + 1753.0, + 542.0, + 1753.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": [ + 296.0, + 261.0, + 643.0, + 261.0, + 643.0, + 298.0, + 296.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1765.0, + 383.0, + 1765.0, + 383.0, + 1801.0, + 296.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 404.0, + 1765.0, + 790.0, + 1765.0, + 790.0, + 1801.0, + 404.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 969.0, + 1765.0, + 1359.0, + 1765.0, + 1359.0, + 1801.0, + 969.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1373.0, + 1765.0, + 1405.0, + 1765.0, + 1405.0, + 1801.0, + 1373.0, + 1801.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1797.0, + 364.0, + 1797.0, + 364.0, + 1829.0, + 297.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1797.0, + 617.0, + 1797.0, + 617.0, + 1829.0, + 382.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1468.0, + 1407.0, + 1468.0, + 1407.0, + 1509.0, + 293.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1499.0, + 614.0, + 1499.0, + 614.0, + 1537.0, + 295.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 827.0, + 1399.0, + 827.0, + 1399.0, + 863.0, + 295.0, + 863.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 360.0, + 858.0, + 521.0, + 858.0, + 521.0, + 894.0, + 360.0, + 894.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 2, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 296, + 687, + 1405, + 687, + 1405, + 924, + 296, + 924 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 228, + 1406, + 228, + 1406, + 415, + 297, + 415 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1405, + 1941, + 1405, + 2036, + 299, + 2036 + ], + "score": 0.974 + }, + { + "category_id": 8, + "poly": [ + 407, + 460, + 1285, + 460, + 1285, + 678, + 407, + 678 + ], + "score": 0.956 + }, + { + "category_id": 1, + "poly": [ + 299, + 943, + 1396, + 943, + 1396, + 1017, + 299, + 1017 + ], + "score": 0.948 + }, + { + "category_id": 1, + "poly": [ + 299, + 1089, + 1406, + 1089, + 1406, + 1832, + 299, + 1832 + ], + "score": 0.91 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 300, + 1888, + 734, + 1888, + 734, + 1919, + 300, + 1919 + ], + "score": 0.898 + }, + { + "category_id": 9, + "poly": [ + 1365, + 556, + 1401, + 556, + 1401, + 586, + 1365, + 586 + ], + "score": 0.852 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 857, + 2088, + 857, + 2111, + 840, + 2111 + ], + "score": 0.787 + }, + { + "category_id": 0, + "poly": [ + 299, + 1050, + 708, + 1050, + 708, + 1082, + 299, + 1082 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 299, + 1050, + 708, + 1050, + 708, + 1082, + 299, + 1082 + ], + "score": 0.159 + }, + { + "category_id": 8, + "poly": [ + 587, + 604, + 868, + 604, + 868, + 678, + 587, + 678 + ], + "score": 0.137 + }, + { + "category_id": 13, + "poly": [ + 1107, + 723, + 1179, + 723, + 1179, + 756, + 1107, + 756 + ], + "score": 0.93, + "latex": "\\delta ( i , j )" + }, + { + "category_id": 13, + "poly": [ + 987, + 2002, + 1166, + 2002, + 1166, + 2036, + 987, + 2036 + ], + "score": 0.93, + "latex": "\\delta ( i , j ) \\in [ 0 , 2 k )" + }, + { + "category_id": 13, + "poly": [ + 1083, + 1940, + 1181, + 1940, + 1181, + 1975, + 1083, + 1975 + ], + "score": 0.93, + "latex": "O ( N ^ { 2 } d )" + }, + { + "category_id": 13, + "poly": [ + 298, + 889, + 436, + 889, + 436, + 929, + 298, + 929 + ], + "score": 0.93, + "latex": "K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } { } ^ { \\intercal }" + }, + { + "category_id": 13, + "poly": [ + 1154, + 352, + 1396, + 352, + 1396, + 387, + 1154, + 387 + ], + "score": 0.93, + "latex": "W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 870, + 797, + 941, + 797, + 941, + 830, + 870, + 830 + ], + "score": 0.92, + "latex": "\\delta ( i , j )" + }, + { + "category_id": 13, + "poly": [ + 770, + 289, + 909, + 289, + 909, + 320, + 770, + 320 + ], + "score": 0.92, + "latex": "P \\in { \\cal R } ^ { 2 k \\times d }" + }, + { + "category_id": 13, + "poly": [ + 394, + 796, + 465, + 796, + 465, + 831, + 394, + 831 + ], + "score": 0.92, + "latex": "\\delta ( j , i )" + }, + { + "category_id": 13, + "poly": [ + 670, + 798, + 739, + 798, + 739, + 831, + 670, + 831 + ], + "score": 0.92, + "latex": "\\delta ( j , i )" + }, + { + "category_id": 13, + "poly": [ + 877, + 760, + 948, + 760, + 948, + 794, + 877, + 794 + ], + "score": 0.92, + "latex": "\\delta ( j , i )" + }, + { + "category_id": 13, + "poly": [ + 732, + 945, + 783, + 945, + 783, + 989, + 732, + 989 + ], + "score": 0.92, + "latex": "\\frac { 1 } { \\sqrt { 3 d } }" + }, + { + "category_id": 14, + "poly": [ + 407, + 458, + 1291, + 458, + 1291, + 679, + 407, + 679 + ], + "score": 0.92, + "latex": "\\begin{array} { l } { { Q _ { c } = H W _ { q , c } , K _ { c } = H W _ { k , c } , V _ { c } = H W _ { v , c } , Q _ { r } = P W _ { q , r } , K _ { r } = P W _ { k , r } } } \\\\ { { \\tilde { A } _ { i , j } = \\underbrace { Q _ { i } ^ { c } K _ { j } ^ { c \\top } } _ { \\mathrm { ( a ) c o n t e n t - t o - c o n t e n t } } + \\underbrace { Q _ { i } ^ { c } K _ { \\delta ( i , j ) } ^ { r } } _ { \\mathrm { ( b ) c o n t e n t - t o - p o s i i t i o n } } + \\underbrace { K _ { j } ^ { c } Q _ { \\delta ( j , i ) } ^ { r } } _ { \\mathrm { ( c ) p o s i i t i o n - t o r t e n t } } } } \\\\ { { \\tilde { H } _ { o } = \\mathrm { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c } } } \\end{array}" + }, + { + "category_id": 13, + "poly": [ + 820, + 858, + 890, + 858, + 890, + 892, + 820, + 892 + ], + "score": 0.92, + "latex": "\\delta ( j , i )" + }, + { + "category_id": 13, + "poly": [ + 298, + 688, + 347, + 688, + 347, + 725, + 298, + 725 + ], + "score": 0.91, + "latex": "\\tilde { A } _ { i , j }" + }, + { + "category_id": 13, + "poly": [ + 1066, + 761, + 1107, + 761, + 1107, + 793, + 1066, + 793 + ], + "score": 0.89, + "latex": "Q _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1299, + 723, + 1342, + 723, + 1342, + 753, + 1299, + 753 + ], + "score": 0.89, + "latex": "K _ { r }" + }, + { + "category_id": 13, + "poly": [ + 943, + 723, + 1031, + 723, + 1031, + 762, + 943, + 762 + ], + "score": 0.89, + "latex": "K _ { \\delta ( i , j ) } ^ { r }" + }, + { + "category_id": 13, + "poly": [ + 385, + 1247, + 674, + 1247, + 674, + 1284, + 385, + 1284 + ], + "score": 0.88, + "latex": "\\tilde { A } _ { c p } [ i , : ] = Q _ { c } [ i , : ] { \\cal K } _ { r } ^ { \\intercal }" + }, + { + "category_id": 13, + "poly": [ + 377, + 262, + 471, + 262, + 471, + 293, + 377, + 293 + ], + "score": 0.88, + "latex": "Q _ { c } , K _ { c }" + }, + { + "category_id": 13, + "poly": [ + 474, + 1124, + 540, + 1124, + 540, + 1157, + 474, + 1157 + ], + "score": 0.88, + "latex": "W _ { k , c }" + }, + { + "category_id": 13, + "poly": [ + 708, + 1155, + 872, + 1155, + 872, + 1189, + 708, + 1189 + ], + "score": 0.88, + "latex": "V _ { c } = H W _ { v , c }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1187, + 532, + 1187, + 532, + 1218, + 346, + 1218 + ], + "score": 0.87, + "latex": "A _ { c c } = Q _ { c } K _ { c } ^ { \\intercal }" + }, + { + "category_id": 13, + "poly": [ + 346, + 1155, + 516, + 1155, + 516, + 1186, + 346, + 1186 + ], + "score": 0.87, + "latex": "K _ { c } = H W _ { k , c }" + }, + { + "category_id": 13, + "poly": [ + 298, + 292, + 614, + 292, + 614, + 325, + 298, + 325 + ], + "score": 0.86, + "latex": "W _ { q , c } , W _ { k , c } , W _ { v , c } \\in R ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 1261, + 322, + 1302, + 322, + 1302, + 353, + 1261, + 353 + ], + "score": 0.86, + "latex": "Q _ { r }" + }, + { + "category_id": 13, + "poly": [ + 883, + 1155, + 1051, + 1155, + 1051, + 1188, + 883, + 1188 + ], + "score": 0.85, + "latex": "K _ { r } = P W _ { k , r }" + }, + { + "category_id": 13, + "poly": [ + 386, + 1311, + 571, + 1311, + 571, + 1341, + 386, + 1341 + ], + "score": 0.85, + "latex": "i = 0 , . . . , N - 1" + }, + { + "category_id": 13, + "poly": [ + 1357, + 322, + 1399, + 322, + 1399, + 352, + 1357, + 352 + ], + "score": 0.85, + "latex": "K _ { r }" + }, + { + "category_id": 13, + "poly": [ + 745, + 687, + 771, + 687, + 771, + 720, + 745, + 720 + ], + "score": 0.84, + "latex": "\\tilde { A }" + }, + { + "category_id": 13, + "poly": [ + 387, + 1562, + 575, + 1562, + 575, + 1592, + 387, + 1592 + ], + "score": 0.84, + "latex": "j = 0 , . . . , N - 1" + }, + { + "category_id": 13, + "poly": [ + 1157, + 830, + 1175, + 830, + 1175, + 860, + 1157, + 860 + ], + "score": 0.84, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 533, + 262, + 568, + 262, + 568, + 291, + 533, + 291 + ], + "score": 0.84, + "latex": "V _ { c }" + }, + { + "category_id": 13, + "poly": [ + 1000, + 1124, + 1066, + 1124, + 1066, + 1157, + 1000, + 1157 + ], + "score": 0.83, + "latex": "W _ { k , r }" + }, + { + "category_id": 13, + "poly": [ + 828, + 943, + 855, + 943, + 855, + 977, + 828, + 977 + ], + "score": 0.82, + "latex": "\\tilde { A }" + }, + { + "category_id": 13, + "poly": [ + 750, + 725, + 766, + 725, + 766, + 755, + 750, + 755 + ], + "score": 0.82, + "latex": "j" + }, + { + "category_id": 13, + "poly": [ + 628, + 1124, + 694, + 1124, + 694, + 1157, + 628, + 1157 + ], + "score": 0.81, + "latex": "W _ { v , c }" + }, + { + "category_id": 13, + "poly": [ + 664, + 1944, + 692, + 1944, + 692, + 1970, + 664, + 1970 + ], + "score": 0.8, + "latex": "N" + }, + { + "category_id": 13, + "poly": [ + 386, + 1218, + 571, + 1218, + 571, + 1246, + 386, + 1246 + ], + "score": 0.8, + "latex": "i = 0 , . . . , N - 1" + }, + { + "category_id": 13, + "poly": [ + 329, + 725, + 369, + 725, + 369, + 757, + 329, + 757 + ], + "score": 0.8, + "latex": "Q _ { i } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 1063, + 1156, + 1229, + 1156, + 1229, + 1189, + 1063, + 1189 + ], + "score": 0.79, + "latex": "Q _ { r } \\overset { = } { = } P W _ { q , r }" + }, + { + "category_id": 13, + "poly": [ + 386, + 1467, + 575, + 1467, + 575, + 1497, + 386, + 1497 + ], + "score": 0.79, + "latex": "j = 0 , . . . , N - 1" + }, + { + "category_id": 13, + "poly": [ + 894, + 1095, + 921, + 1095, + 921, + 1122, + 894, + 1122 + ], + "score": 0.79, + "latex": "_ { P }" + }, + { + "category_id": 13, + "poly": [ + 385, + 1498, + 680, + 1498, + 680, + 1535, + 385, + 1535 + ], + "score": 0.79, + "latex": "\\tilde { A } _ { p c } [ : , j ] = K _ { c } [ j , : ] Q _ { r } ^ { \\intercal }" + }, + { + "category_id": 13, + "poly": [ + 1079, + 1124, + 1144, + 1124, + 1144, + 1158, + 1079, + 1158 + ], + "score": 0.78, + "latex": "W _ { q , r }" + }, + { + "category_id": 13, + "poly": [ + 633, + 761, + 705, + 761, + 705, + 794, + 633, + 794 + ], + "score": 0.78, + "latex": "\\delta ( i , j )" + }, + { + "category_id": 13, + "poly": [ + 530, + 1157, + 698, + 1157, + 698, + 1189, + 530, + 1189 + ], + "score": 0.77, + "latex": "Q _ { c } = H W _ { q , c }" + }, + { + "category_id": 13, + "poly": [ + 886, + 723, + 928, + 723, + 928, + 755, + 886, + 755 + ], + "score": 0.75, + "latex": "K _ { c }" + }, + { + "category_id": 13, + "poly": [ + 631, + 723, + 676, + 723, + 676, + 760, + 631, + 760 + ], + "score": 0.75, + "latex": "K _ { j } ^ { c }" + }, + { + "category_id": 13, + "poly": [ + 533, + 1094, + 565, + 1094, + 565, + 1122, + 533, + 1122 + ], + "score": 0.73, + "latex": "\\pmb { H }" + }, + { + "category_id": 13, + "poly": [ + 444, + 725, + 457, + 725, + 457, + 750, + 444, + 750 + ], + "score": 0.72, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 427, + 1342, + 617, + 1342, + 617, + 1372, + 427, + 1372 + ], + "score": 0.72, + "latex": "j = 0 , . . . , N - 1" + }, + { + "category_id": 13, + "poly": [ + 344, + 1750, + 631, + 1750, + 631, + 1798, + 344, + 1798 + ], + "score": 0.72, + "latex": "H _ { o } = \\operatorname { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c }" + }, + { + "category_id": 13, + "poly": [ + 491, + 861, + 503, + 861, + 503, + 886, + 491, + 886 + ], + "score": 0.71, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 1286, + 695, + 1299, + 695, + 1299, + 720, + 1286, + 720 + ], + "score": 0.7, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 719, + 760, + 804, + 760, + 804, + 800, + 719, + 800 + ], + "score": 0.7, + "latex": "Q _ { \\delta ( j , i ) } ^ { r }" + }, + { + "category_id": 13, + "poly": [ + 427, + 1593, + 614, + 1593, + 614, + 1623, + 427, + 1623 + ], + "score": 0.69, + "latex": "i = 0 , . . . , N - 1" + }, + { + "category_id": 13, + "poly": [ + 297, + 830, + 310, + 830, + 310, + 856, + 297, + 856 + ], + "score": 0.68, + "latex": "i" + }, + { + "category_id": 13, + "poly": [ + 576, + 723, + 615, + 723, + 615, + 756, + 576, + 756 + ], + "score": 0.67, + "latex": "Q _ { c }" + }, + { + "category_id": 13, + "poly": [ + 427, + 1620, + 777, + 1620, + 777, + 1660, + 427, + 1660 + ], + "score": 0.65, + "latex": "A _ { p c } [ i , j ] = \\tilde { A } _ { p c } [ \\delta [ j , i ] , j ]" + }, + { + "category_id": 13, + "poly": [ + 551, + 1124, + 616, + 1124, + 616, + 1157, + 551, + 1157 + ], + "score": 0.63, + "latex": "W _ { q , c }" + }, + { + "category_id": 13, + "poly": [ + 427, + 1371, + 777, + 1371, + 777, + 1409, + 427, + 1409 + ], + "score": 0.59, + "latex": "A _ { c p } [ i , j ] = \\tilde { A } _ { c p } [ i , \\delta [ i , j ] ]" + }, + { + "category_id": 13, + "poly": [ + 345, + 1713, + 692, + 1713, + 692, + 1749, + 345, + 1749 + ], + "score": 0.58, + "latex": "\\tilde { A } = A _ { c c } + A _ { c p } + A _ { p c }" + }, + { + "category_id": 13, + "poly": [ + 1198, + 1095, + 1216, + 1095, + 1216, + 1121, + 1198, + 1121 + ], + "score": 0.57, + "latex": "\\delta" + }, + { + "category_id": 14, + "poly": [ + 427, + 1370, + 777, + 1370, + 777, + 1409, + 427, + 1409 + ], + "score": 0.55, + "latex": "\\boxed { A _ { c p } [ i , j ] = \\tilde { A } _ { c p } [ i , \\delta [ i , j ] ] }" + }, + { + "category_id": 13, + "poly": [ + 298, + 726, + 313, + 726, + 313, + 755, + 298, + 755 + ], + "score": 0.47, + "latex": "j" + }, + { + "category_id": 14, + "poly": [ + 585, + 598, + 872, + 598, + 872, + 679, + 585, + 679 + ], + "score": 0.39, + "latex": "H _ { o } = \\mathrm { s o f t m a x } ( \\frac { \\tilde { A } } { \\sqrt { 3 d } } ) V _ { c }" + }, + { + "category_id": 14, + "poly": [ + 427, + 1621, + 777, + 1621, + 777, + 1661, + 427, + 1661 + ], + "score": 0.37, + "latex": "A _ { p c } [ i , j ] = \\tilde { A } _ { p c } [ \\delta [ j , i ] , j ]" + }, + { + "category_id": 13, + "poly": [ + 298, + 292, + 362, + 292, + 362, + 326, + 298, + 326 + ], + "score": 0.36, + "latex": "W _ { q , c }" + }, + { + "category_id": 13, + "poly": [ + 576, + 723, + 676, + 723, + 676, + 761, + 576, + 761 + ], + "score": 0.29, + "latex": "Q _ { c } . \\ K _ { j } ^ { c }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1886.0, + 738.0, + 1886.0, + 738.0, + 1923.0, + 294.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2086.0, + 861.0, + 2086.0, + 861.0, + 2118.0, + 838.0, + 2118.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 712.0, + 1043.0, + 712.0, + 1090.0, + 294.0, + 1090.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 348.0, + 686.0, + 744.0, + 686.0, + 744.0, + 730.0, + 348.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 772.0, + 686.0, + 1285.0, + 686.0, + 1285.0, + 730.0, + 772.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1300.0, + 686.0, + 1406.0, + 686.0, + 1406.0, + 730.0, + 1300.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 289.0, + 716.0, + 297.0, + 716.0, + 297.0, + 770.0, + 289.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 314.0, + 716.0, + 328.0, + 716.0, + 328.0, + 770.0, + 314.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 370.0, + 716.0, + 443.0, + 716.0, + 443.0, + 770.0, + 370.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 458.0, + 716.0, + 575.0, + 716.0, + 575.0, + 770.0, + 458.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 677.0, + 716.0, + 749.0, + 716.0, + 749.0, + 770.0, + 677.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 767.0, + 716.0, + 885.0, + 716.0, + 885.0, + 770.0, + 767.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 716.0, + 942.0, + 716.0, + 942.0, + 770.0, + 929.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 716.0, + 1106.0, + 716.0, + 1106.0, + 770.0, + 1032.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1180.0, + 716.0, + 1298.0, + 716.0, + 1298.0, + 770.0, + 1180.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1343.0, + 716.0, + 1410.0, + 716.0, + 1410.0, + 770.0, + 1343.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 755.0, + 632.0, + 755.0, + 632.0, + 805.0, + 291.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 706.0, + 755.0, + 718.0, + 755.0, + 718.0, + 805.0, + 706.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 805.0, + 755.0, + 876.0, + 755.0, + 876.0, + 805.0, + 805.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 755.0, + 1065.0, + 755.0, + 1065.0, + 805.0, + 949.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1108.0, + 755.0, + 1408.0, + 755.0, + 1408.0, + 805.0, + 1108.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 792.0, + 393.0, + 792.0, + 393.0, + 834.0, + 293.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 466.0, + 792.0, + 669.0, + 792.0, + 669.0, + 834.0, + 466.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 740.0, + 792.0, + 869.0, + 792.0, + 869.0, + 834.0, + 740.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 942.0, + 792.0, + 1406.0, + 792.0, + 1406.0, + 834.0, + 942.0, + 834.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 827.0, + 296.0, + 827.0, + 296.0, + 862.0, + 293.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 827.0, + 1156.0, + 827.0, + 1156.0, + 862.0, + 311.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 827.0, + 1405.0, + 827.0, + 1405.0, + 862.0, + 1176.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 858.0, + 490.0, + 858.0, + 490.0, + 895.0, + 294.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 504.0, + 858.0, + 819.0, + 858.0, + 819.0, + 895.0, + 504.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 858.0, + 1406.0, + 858.0, + 1406.0, + 895.0, + 891.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 878.0, + 297.0, + 878.0, + 297.0, + 940.0, + 288.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 437.0, + 878.0, + 1115.0, + 878.0, + 1115.0, + 940.0, + 437.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 227.0, + 1409.0, + 227.0, + 1409.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 257.0, + 376.0, + 257.0, + 376.0, + 300.0, + 292.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 472.0, + 257.0, + 532.0, + 257.0, + 532.0, + 300.0, + 472.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 569.0, + 257.0, + 1407.0, + 257.0, + 1407.0, + 300.0, + 569.0, + 300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 283.0, + 297.0, + 283.0, + 297.0, + 332.0, + 292.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 283.0, + 769.0, + 283.0, + 769.0, + 332.0, + 615.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 283.0, + 1409.0, + 283.0, + 1409.0, + 332.0, + 910.0, + 332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 320.0, + 1260.0, + 320.0, + 1260.0, + 356.0, + 295.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1303.0, + 320.0, + 1356.0, + 320.0, + 1356.0, + 356.0, + 1303.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 287.0, + 347.0, + 1153.0, + 347.0, + 1153.0, + 391.0, + 287.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1397.0, + 347.0, + 1409.0, + 347.0, + 1409.0, + 391.0, + 1397.0, + 391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 379.0, + 443.0, + 379.0, + 443.0, + 420.0, + 291.0, + 420.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1940.0, + 663.0, + 1940.0, + 663.0, + 1978.0, + 293.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1940.0, + 1082.0, + 1940.0, + 1082.0, + 1978.0, + 693.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1182.0, + 1940.0, + 1410.0, + 1940.0, + 1410.0, + 1978.0, + 1182.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1970.0, + 1410.0, + 1970.0, + 1410.0, + 2009.0, + 293.0, + 2009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 2001.0, + 986.0, + 2001.0, + 986.0, + 2040.0, + 293.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 2001.0, + 1405.0, + 2001.0, + 1405.0, + 2040.0, + 1167.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 286.0, + 932.0, + 731.0, + 932.0, + 731.0, + 1000.0, + 286.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 784.0, + 932.0, + 827.0, + 932.0, + 827.0, + 1000.0, + 784.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 856.0, + 932.0, + 1411.0, + 932.0, + 1411.0, + 1000.0, + 856.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 981.0, + 1011.0, + 981.0, + 1011.0, + 1018.0, + 294.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1088.0, + 532.0, + 1088.0, + 532.0, + 1129.0, + 294.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 566.0, + 1088.0, + 893.0, + 1088.0, + 893.0, + 1129.0, + 566.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 922.0, + 1088.0, + 1197.0, + 1088.0, + 1197.0, + 1129.0, + 922.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1217.0, + 1088.0, + 1407.0, + 1088.0, + 1407.0, + 1129.0, + 1217.0, + 1129.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 335.0, + 1110.0, + 473.0, + 1110.0, + 473.0, + 1170.0, + 335.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 541.0, + 1110.0, + 550.0, + 1110.0, + 550.0, + 1170.0, + 541.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 617.0, + 1110.0, + 627.0, + 1110.0, + 627.0, + 1170.0, + 617.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 695.0, + 1110.0, + 999.0, + 1110.0, + 999.0, + 1170.0, + 695.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1067.0, + 1110.0, + 1078.0, + 1110.0, + 1078.0, + 1170.0, + 1067.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1145.0, + 1110.0, + 1163.0, + 1110.0, + 1163.0, + 1170.0, + 1145.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1144.0, + 345.0, + 1144.0, + 345.0, + 1197.0, + 303.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 517.0, + 1144.0, + 529.0, + 1144.0, + 529.0, + 1197.0, + 517.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 699.0, + 1144.0, + 707.0, + 1144.0, + 707.0, + 1197.0, + 699.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 873.0, + 1144.0, + 882.0, + 1144.0, + 882.0, + 1197.0, + 873.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1052.0, + 1144.0, + 1062.0, + 1144.0, + 1062.0, + 1197.0, + 1052.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1230.0, + 1144.0, + 1234.0, + 1144.0, + 1234.0, + 1197.0, + 1230.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1178.0, + 345.0, + 1178.0, + 345.0, + 1225.0, + 306.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 533.0, + 1178.0, + 537.0, + 1178.0, + 537.0, + 1225.0, + 533.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1213.0, + 385.0, + 1213.0, + 385.0, + 1250.0, + 306.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1213.0, + 611.0, + 1213.0, + 611.0, + 1250.0, + 572.0, + 1250.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1248.0, + 341.0, + 1248.0, + 341.0, + 1280.0, + 307.0, + 1280.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1246.0, + 384.0, + 1246.0, + 384.0, + 1286.0, + 375.0, + 1286.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 303.0, + 1275.0, + 441.0, + 1275.0, + 441.0, + 1315.0, + 303.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1307.0, + 385.0, + 1307.0, + 385.0, + 1344.0, + 304.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 572.0, + 1307.0, + 611.0, + 1307.0, + 611.0, + 1344.0, + 572.0, + 1344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1339.0, + 341.0, + 1339.0, + 341.0, + 1375.0, + 306.0, + 1375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1339.0, + 426.0, + 1339.0, + 426.0, + 1374.0, + 381.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 618.0, + 1339.0, + 656.0, + 1339.0, + 656.0, + 1374.0, + 618.0, + 1374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 307.0, + 1374.0, + 340.0, + 1374.0, + 340.0, + 1407.0, + 307.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 304.0, + 1404.0, + 341.0, + 1404.0, + 341.0, + 1439.0, + 304.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1402.0, + 482.0, + 1402.0, + 482.0, + 1439.0, + 381.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1434.0, + 438.0, + 1434.0, + 438.0, + 1468.0, + 299.0, + 1468.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 299.0, + 1468.0, + 338.0, + 1468.0, + 338.0, + 1497.0, + 299.0, + 1497.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1464.0, + 385.0, + 1464.0, + 385.0, + 1501.0, + 340.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1464.0, + 615.0, + 1464.0, + 615.0, + 1501.0, + 576.0, + 1501.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1499.0, + 340.0, + 1499.0, + 340.0, + 1533.0, + 296.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 380.0, + 1497.0, + 384.0, + 1497.0, + 384.0, + 1537.0, + 380.0, + 1537.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1529.0, + 438.0, + 1529.0, + 438.0, + 1563.0, + 296.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1560.0, + 386.0, + 1560.0, + 386.0, + 1596.0, + 296.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 576.0, + 1560.0, + 616.0, + 1560.0, + 616.0, + 1596.0, + 576.0, + 1596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1591.0, + 340.0, + 1591.0, + 340.0, + 1625.0, + 296.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 381.0, + 1590.0, + 426.0, + 1590.0, + 426.0, + 1625.0, + 381.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 615.0, + 1590.0, + 653.0, + 1590.0, + 653.0, + 1625.0, + 615.0, + 1625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1625.0, + 340.0, + 1625.0, + 340.0, + 1659.0, + 294.0, + 1659.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 778.0, + 1622.0, + 782.0, + 1622.0, + 782.0, + 1662.0, + 778.0, + 1662.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1655.0, + 341.0, + 1655.0, + 341.0, + 1689.0, + 294.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1652.0, + 479.0, + 1652.0, + 479.0, + 1689.0, + 382.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1684.0, + 439.0, + 1684.0, + 439.0, + 1720.0, + 293.0, + 1720.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1707.0, + 344.0, + 1707.0, + 344.0, + 1758.0, + 292.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 693.0, + 1707.0, + 696.0, + 1707.0, + 696.0, + 1758.0, + 693.0, + 1758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 1745.0, + 343.0, + 1745.0, + 343.0, + 1809.0, + 288.0, + 1809.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1788.0, + 458.0, + 1788.0, + 458.0, + 1831.0, + 293.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.25, + 1249.5, + 390.25, + 1249.5, + 390.25, + 1274.5, + 345.25, + 1274.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1043.0, + 712.0, + 1043.0, + 712.0, + 1090.0, + 294.0, + 1090.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 3, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 308, + 1404, + 308, + 1404, + 655, + 298, + 655 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 1179, + 1404, + 1179, + 1404, + 1514, + 298, + 1514 + ], + "score": 0.983 + }, + { + "category_id": 1, + "poly": [ + 298, + 949, + 1405, + 949, + 1405, + 1163, + 298, + 1163 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 298, + 779, + 1403, + 779, + 1403, + 933, + 298, + 933 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1742, + 1403, + 1742, + 1403, + 1896, + 298, + 1896 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1402, + 1911, + 1402, + 2034, + 299, + 2034 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 296, + 1665, + 1404, + 1665, + 1404, + 1727, + 296, + 1727 + ], + "score": 0.952 + }, + { + "category_id": 1, + "poly": [ + 296, + 227, + 1400, + 227, + 1400, + 292, + 296, + 292 + ], + "score": 0.951 + }, + { + "category_id": 0, + "poly": [ + 300, + 1581, + 822, + 1581, + 822, + 1617, + 300, + 1617 + ], + "score": 0.904 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 841, + 2088, + 858, + 2088, + 858, + 2112, + 841, + 2112 + ], + "score": 0.706 + }, + { + "category_id": 0, + "poly": [ + 301, + 713, + 1259, + 713, + 1259, + 745, + 301, + 745 + ], + "score": 0.628 + }, + { + "category_id": 1, + "poly": [ + 301, + 713, + 1259, + 713, + 1259, + 745, + 301, + 745 + ], + "score": 0.261 + }, + { + "category_id": 13, + "poly": [ + 638, + 368, + 823, + 368, + 823, + 402, + 638, + 402 + ], + "score": 0.93, + "latex": "\\delta [ i , j ] = \\delta ( \\overset { . } { i } , j )" + }, + { + "category_id": 13, + "poly": [ + 1176, + 459, + 1303, + 459, + 1303, + 499, + 1176, + 499 + ], + "score": 0.93, + "latex": "\\tilde { A } _ { p c } [ : , j ]" + }, + { + "category_id": 13, + "poly": [ + 918, + 227, + 1065, + 227, + 1065, + 261, + 918, + 261 + ], + "score": 0.93, + "latex": "K _ { r } \\in R ^ { 2 k \\times d }" + }, + { + "category_id": 13, + "poly": [ + 720, + 495, + 795, + 495, + 795, + 535, + 720, + 535 + ], + "score": 0.93, + "latex": "\\tilde { A } _ { p c }" + }, + { + "category_id": 13, + "poly": [ + 1140, + 397, + 1289, + 397, + 1289, + 431, + 1140, + 431 + ], + "score": 0.93, + "latex": "{ K } _ { r } ^ { \\tau } \\in { R } ^ { d \\times 2 k }" + }, + { + "category_id": 13, + "poly": [ + 1144, + 592, + 1220, + 592, + 1220, + 626, + 1144, + 626 + ], + "score": 0.93, + "latex": "O ( k d )" + }, + { + "category_id": 13, + "poly": [ + 1014, + 399, + 1102, + 399, + 1102, + 433, + 1014, + 433 + ], + "score": 0.92, + "latex": "Q _ { c } [ i , : ]" + }, + { + "category_id": 13, + "poly": [ + 1163, + 501, + 1255, + 501, + 1255, + 535, + 1163, + 535 + ], + "score": 0.92, + "latex": "K _ { c } [ j , : ]" + }, + { + "category_id": 13, + "poly": [ + 1286, + 231, + 1329, + 231, + 1329, + 261, + 1286, + 261 + ], + "score": 0.88, + "latex": "K _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1357, + 593, + 1400, + 593, + 1400, + 624, + 1357, + 624 + ], + "score": 0.87, + "latex": "K _ { r }" + }, + { + "category_id": 13, + "poly": [ + 1294, + 502, + 1334, + 502, + 1334, + 534, + 1294, + 534 + ], + "score": 0.87, + "latex": "Q _ { r } ^ { \\intercal }" + }, + { + "category_id": 13, + "poly": [ + 344, + 623, + 385, + 623, + 385, + 655, + 344, + 655 + ], + "score": 0.85, + "latex": "Q _ { r }" + }, + { + "category_id": 13, + "poly": [ + 931, + 310, + 950, + 310, + 950, + 336, + 931, + 336 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 1382, + 532, + 1401, + 532, + 1401, + 559, + 1382, + 559 + ], + "score": 0.74, + "latex": "\\pmb { \\delta }" + }, + { + "category_id": 13, + "poly": [ + 1175, + 432, + 1194, + 432, + 1194, + 457, + 1175, + 457 + ], + "score": 0.73, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 1053, + 340, + 1071, + 340, + 1071, + 367, + 1053, + 367 + ], + "score": 0.69, + "latex": "\\delta" + }, + { + "category_id": 13, + "poly": [ + 346, + 532, + 438, + 532, + 438, + 561, + 346, + 561 + ], + "score": 0.62, + "latex": "1 1 - 1 3" + }, + { + "category_id": 13, + "poly": [ + 296, + 430, + 362, + 430, + 362, + 460, + 296, + 460 + ], + "score": 0.49, + "latex": "3 - 5" + }, + { + "category_id": 13, + "poly": [ + 556, + 562, + 648, + 562, + 648, + 591, + 556, + 591 + ], + "score": 0.44, + "latex": "1 4 - 1 8" + }, + { + "category_id": 13, + "poly": [ + 347, + 464, + 427, + 464, + 427, + 495, + 347, + 495 + ], + "score": 0.34, + "latex": "6 - 1 0" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1578.0, + 828.0, + 1578.0, + 828.0, + 1623.0, + 291.0, + 1623.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2085.0, + 861.0, + 2085.0, + 861.0, + 2120.0, + 839.0, + 2120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 711.0, + 1266.0, + 711.0, + 1266.0, + 750.0, + 293.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 308.0, + 930.0, + 308.0, + 930.0, + 339.0, + 296.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 951.0, + 308.0, + 1402.0, + 308.0, + 1402.0, + 339.0, + 951.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 337.0, + 1052.0, + 337.0, + 1052.0, + 374.0, + 293.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1072.0, + 337.0, + 1406.0, + 337.0, + 1406.0, + 374.0, + 1072.0, + 374.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 366.0, + 637.0, + 366.0, + 637.0, + 405.0, + 292.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 824.0, + 366.0, + 1406.0, + 366.0, + 1406.0, + 405.0, + 824.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 395.0, + 1013.0, + 395.0, + 1013.0, + 436.0, + 291.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1103.0, + 395.0, + 1139.0, + 395.0, + 1139.0, + 436.0, + 1103.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1290.0, + 395.0, + 1406.0, + 395.0, + 1406.0, + 436.0, + 1290.0, + 436.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 427.0, + 295.0, + 427.0, + 295.0, + 465.0, + 291.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 363.0, + 427.0, + 1174.0, + 427.0, + 1174.0, + 465.0, + 363.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1195.0, + 427.0, + 1405.0, + 427.0, + 1405.0, + 465.0, + 1195.0, + 465.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 462.0, + 346.0, + 462.0, + 346.0, + 502.0, + 292.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 428.0, + 462.0, + 1175.0, + 462.0, + 1175.0, + 502.0, + 428.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1304.0, + 462.0, + 1406.0, + 462.0, + 1406.0, + 502.0, + 1304.0, + 502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 499.0, + 719.0, + 499.0, + 719.0, + 539.0, + 293.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 796.0, + 499.0, + 1162.0, + 499.0, + 1162.0, + 539.0, + 796.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1256.0, + 499.0, + 1293.0, + 499.0, + 1293.0, + 539.0, + 1256.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1335.0, + 499.0, + 1405.0, + 499.0, + 1405.0, + 539.0, + 1335.0, + 539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 531.0, + 345.0, + 531.0, + 345.0, + 567.0, + 294.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 439.0, + 531.0, + 1381.0, + 531.0, + 1381.0, + 567.0, + 439.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 531.0, + 1405.0, + 531.0, + 1405.0, + 567.0, + 1402.0, + 567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 563.0, + 555.0, + 563.0, + 555.0, + 595.0, + 296.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 649.0, + 563.0, + 1402.0, + 563.0, + 1402.0, + 595.0, + 649.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 591.0, + 1143.0, + 591.0, + 1143.0, + 629.0, + 291.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 591.0, + 1356.0, + 591.0, + 1356.0, + 629.0, + 1221.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 591.0, + 1404.0, + 591.0, + 1404.0, + 629.0, + 1401.0, + 629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 620.0, + 343.0, + 620.0, + 343.0, + 658.0, + 292.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 386.0, + 620.0, + 406.0, + 620.0, + 406.0, + 658.0, + 386.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1180.0, + 1405.0, + 1180.0, + 1405.0, + 1214.0, + 294.0, + 1214.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1208.0, + 1404.0, + 1208.0, + 1404.0, + 1245.0, + 293.0, + 1245.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1239.0, + 1405.0, + 1239.0, + 1405.0, + 1274.0, + 293.0, + 1274.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1270.0, + 1407.0, + 1270.0, + 1407.0, + 1307.0, + 292.0, + 1307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1300.0, + 1405.0, + 1300.0, + 1405.0, + 1338.0, + 293.0, + 1338.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1332.0, + 1406.0, + 1332.0, + 1406.0, + 1366.0, + 294.0, + 1366.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1359.0, + 1406.0, + 1359.0, + 1406.0, + 1398.0, + 292.0, + 1398.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1392.0, + 1405.0, + 1392.0, + 1405.0, + 1427.0, + 294.0, + 1427.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1421.0, + 1406.0, + 1421.0, + 1406.0, + 1457.0, + 293.0, + 1457.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1452.0, + 1404.0, + 1452.0, + 1404.0, + 1489.0, + 292.0, + 1489.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1485.0, + 366.0, + 1485.0, + 366.0, + 1515.0, + 294.0, + 1515.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 947.0, + 1410.0, + 947.0, + 1410.0, + 984.0, + 293.0, + 984.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 979.0, + 1407.0, + 979.0, + 1407.0, + 1017.0, + 293.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1012.0, + 1403.0, + 1012.0, + 1403.0, + 1043.0, + 295.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1043.0, + 1405.0, + 1043.0, + 1405.0, + 1073.0, + 295.0, + 1073.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1072.0, + 1403.0, + 1072.0, + 1403.0, + 1103.0, + 296.0, + 1103.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1100.0, + 1405.0, + 1100.0, + 1405.0, + 1137.0, + 293.0, + 1137.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1131.0, + 764.0, + 1131.0, + 764.0, + 1169.0, + 293.0, + 1169.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 781.0, + 1405.0, + 781.0, + 1405.0, + 814.0, + 296.0, + 814.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 811.0, + 1404.0, + 811.0, + 1404.0, + 845.0, + 294.0, + 845.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 840.0, + 1405.0, + 840.0, + 1405.0, + 876.0, + 294.0, + 876.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 872.0, + 1404.0, + 872.0, + 1404.0, + 905.0, + 296.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 904.0, + 758.0, + 904.0, + 758.0, + 937.0, + 293.0, + 937.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1741.0, + 1405.0, + 1741.0, + 1405.0, + 1778.0, + 296.0, + 1778.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1774.0, + 1403.0, + 1774.0, + 1403.0, + 1807.0, + 296.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1802.0, + 1405.0, + 1802.0, + 1405.0, + 1840.0, + 292.0, + 1840.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1834.0, + 1405.0, + 1834.0, + 1405.0, + 1871.0, + 293.0, + 1871.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 405.0, + 1864.0, + 405.0, + 1902.0, + 293.0, + 1902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1406.0, + 1909.0, + 1406.0, + 1946.0, + 293.0, + 1946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1406.0, + 1942.0, + 1406.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, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2000.0, + 673.0, + 2000.0, + 673.0, + 2040.0, + 294.0, + 2040.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1662.0, + 1407.0, + 1662.0, + 1407.0, + 1702.0, + 294.0, + 1702.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1693.0, + 1350.0, + 1693.0, + 1350.0, + 1734.0, + 291.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 290.0, + 220.0, + 917.0, + 220.0, + 917.0, + 270.0, + 290.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 220.0, + 1285.0, + 220.0, + 1285.0, + 270.0, + 1066.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1330.0, + 220.0, + 1407.0, + 220.0, + 1407.0, + 270.0, + 1330.0, + 270.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 261.0, + 734.0, + 261.0, + 734.0, + 293.0, + 296.0, + 293.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 711.0, + 1266.0, + 711.0, + 1266.0, + 750.0, + 293.0, + 750.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 4, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 324, + 863, + 1373, + 863, + 1373, + 1116, + 324, + 1116 + ], + "score": 0.982, + "html": "
ModelCoLAMcc|QQPAccMNLI-m/mmAccSST-2|AccSTS-BCorrQNLI|AccRTEAccMRPCAccAvg.
BERTlarge60.691.386.6/-93.290.092.370.488.084.05
RoBERTalarge68.092.290.2/90.296.492.493.986.690.988.82
XLNetlarge69.092.390.8/90.897.092.594.985.990.889.15
ELECTRAlarge69.192.490.9/-96.992.695.088.090.889.46
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1474, + 1405, + 1474, + 1405, + 1872, + 298, + 1872 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 229, + 1405, + 229, + 1405, + 475, + 297, + 475 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1198, + 1405, + 1198, + 1405, + 1382, + 297, + 1382 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 300, + 1888, + 1401, + 1888, + 1401, + 1980, + 300, + 1980 + ], + "score": 0.964 + }, + { + "category_id": 1, + "poly": [ + 300, + 1397, + 1399, + 1397, + 1399, + 1460, + 300, + 1460 + ], + "score": 0.935 + }, + { + "category_id": 1, + "poly": [ + 298, + 594, + 971, + 594, + 971, + 627, + 298, + 627 + ], + "score": 0.924 + }, + { + "category_id": 2, + "poly": [ + 333, + 2005, + 714, + 2005, + 714, + 2033, + 333, + 2033 + ], + "score": 0.91 + }, + { + "category_id": 1, + "poly": [ + 301, + 726, + 1226, + 726, + 1226, + 760, + 301, + 760 + ], + "score": 0.91 + }, + { + "category_id": 0, + "poly": [ + 300, + 523, + 540, + 523, + 540, + 558, + 300, + 558 + ], + "score": 0.891 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 813, + 76, + 813, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 667, + 743, + 667, + 743, + 699, + 300, + 699 + ], + "score": 0.885 + }, + { + "category_id": 6, + "poly": [ + 516, + 1138, + 1174, + 1138, + 1174, + 1170, + 516, + 1170 + ], + "score": 0.826 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.774 + }, + { + "category_id": 6, + "poly": [ + 298, + 796, + 815, + 796, + 815, + 829, + 298, + 829 + ], + "score": 0.543 + }, + { + "category_id": 0, + "poly": [ + 298, + 796, + 815, + 796, + 815, + 829, + 298, + 829 + ], + "score": 0.267 + }, + { + "category_id": 13, + "poly": [ + 1161, + 1750, + 1220, + 1750, + 1220, + 1779, + 1161, + 1779 + ], + "score": 0.86, + "latex": "1 . 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 1022, + 1781, + 1083, + 1781, + 1083, + 1810, + 1022, + 1810 + ], + "score": 0.86, + "latex": "1 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1781, + 1344, + 1781, + 1344, + 1809, + 1281, + 1809 + ], + "score": 0.86, + "latex": "2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 628, + 1781, + 690, + 1781, + 690, + 1810, + 628, + 1810 + ], + "score": 0.86, + "latex": "1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 918, + 1750, + 977, + 1750, + 977, + 1779, + 918, + 1779 + ], + "score": 0.85, + "latex": "1 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 367, + 1781, + 429, + 1781, + 429, + 1810, + 367, + 1810 + ], + "score": 0.85, + "latex": "2 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 296, + 1842, + 415, + 1842, + 415, + 1876, + 296, + 1876 + ], + "score": 0.65, + "latex": "\\mathbf { X L N e t } _ { \\mathrm { l a r g e } }" + }, + { + "category_id": 13, + "poly": [ + 518, + 414, + 682, + 414, + 682, + 444, + 518, + 444 + ], + "score": 0.63, + "latex": "\\mathrm { D e B E R T a } _ { 1 . 5 B }" + }, + { + "category_id": 13, + "poly": [ + 634, + 416, + 683, + 416, + 683, + 444, + 634, + 444 + ], + "score": 0.48, + "latex": "_ { 1 . 5 B }" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1999.0, + 718.0, + 1999.0, + 718.0, + 2039.0, + 331.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 523.0, + 544.0, + 523.0, + 544.0, + 563.0, + 293.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 72.0, + 816.0, + 72.0, + 816.0, + 110.0, + 294.0, + 110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 663.0, + 746.0, + 663.0, + 746.0, + 705.0, + 293.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 513.0, + 1135.0, + 1180.0, + 1135.0, + 1180.0, + 1176.0, + 513.0, + 1176.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": [ + 294.0, + 795.0, + 819.0, + 795.0, + 819.0, + 832.0, + 294.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 795.0, + 819.0, + 795.0, + 819.0, + 832.0, + 294.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1475.0, + 1405.0, + 1475.0, + 1405.0, + 1511.0, + 296.0, + 1511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1507.0, + 1403.0, + 1507.0, + 1403.0, + 1539.0, + 296.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1537.0, + 1405.0, + 1537.0, + 1405.0, + 1569.0, + 295.0, + 1569.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1565.0, + 1407.0, + 1565.0, + 1407.0, + 1603.0, + 293.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1599.0, + 1403.0, + 1599.0, + 1403.0, + 1631.0, + 296.0, + 1631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1628.0, + 1405.0, + 1628.0, + 1405.0, + 1663.0, + 293.0, + 1663.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1657.0, + 1405.0, + 1657.0, + 1405.0, + 1695.0, + 292.0, + 1695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1687.0, + 1406.0, + 1687.0, + 1406.0, + 1724.0, + 293.0, + 1724.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1718.0, + 1407.0, + 1718.0, + 1407.0, + 1756.0, + 291.0, + 1756.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1748.0, + 917.0, + 1748.0, + 917.0, + 1785.0, + 295.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 978.0, + 1748.0, + 1160.0, + 1748.0, + 1160.0, + 1785.0, + 978.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1221.0, + 1748.0, + 1407.0, + 1748.0, + 1407.0, + 1785.0, + 1221.0, + 1785.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1781.0, + 366.0, + 1781.0, + 366.0, + 1813.0, + 295.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 430.0, + 1781.0, + 627.0, + 1781.0, + 627.0, + 1813.0, + 430.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 691.0, + 1781.0, + 1021.0, + 1781.0, + 1021.0, + 1813.0, + 691.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.0, + 1781.0, + 1280.0, + 1781.0, + 1280.0, + 1813.0, + 1084.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1345.0, + 1781.0, + 1406.0, + 1781.0, + 1406.0, + 1813.0, + 1345.0, + 1813.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1808.0, + 1406.0, + 1808.0, + 1406.0, + 1847.0, + 292.0, + 1847.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 416.0, + 1842.0, + 799.0, + 1842.0, + 799.0, + 1878.0, + 416.0, + 1878.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 231.0, + 1403.0, + 231.0, + 1403.0, + 264.0, + 296.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 261.0, + 1408.0, + 261.0, + 1408.0, + 298.0, + 294.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 292.0, + 1405.0, + 292.0, + 1405.0, + 326.0, + 295.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 322.0, + 1405.0, + 322.0, + 1405.0, + 356.0, + 295.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 352.0, + 1405.0, + 352.0, + 1405.0, + 387.0, + 294.0, + 387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 380.0, + 1406.0, + 380.0, + 1406.0, + 419.0, + 292.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 414.0, + 517.0, + 414.0, + 517.0, + 448.0, + 296.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 684.0, + 414.0, + 1407.0, + 414.0, + 1407.0, + 448.0, + 684.0, + 448.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 445.0, + 909.0, + 445.0, + 909.0, + 476.0, + 294.0, + 476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1197.0, + 1405.0, + 1197.0, + 1405.0, + 1235.0, + 294.0, + 1235.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1229.0, + 1405.0, + 1229.0, + 1405.0, + 1265.0, + 295.0, + 1265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1260.0, + 1405.0, + 1260.0, + 1405.0, + 1295.0, + 294.0, + 1295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1290.0, + 1405.0, + 1290.0, + 1405.0, + 1326.0, + 294.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1317.0, + 1408.0, + 1317.0, + 1408.0, + 1357.0, + 292.0, + 1357.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1351.0, + 1138.0, + 1351.0, + 1138.0, + 1386.0, + 294.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1888.0, + 1405.0, + 1888.0, + 1405.0, + 1922.0, + 296.0, + 1922.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1918.0, + 1406.0, + 1918.0, + 1406.0, + 1952.0, + 292.0, + 1952.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1951.0, + 670.0, + 1951.0, + 670.0, + 1981.0, + 296.0, + 1981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1397.0, + 1404.0, + 1397.0, + 1404.0, + 1432.0, + 296.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1427.0, + 1403.0, + 1427.0, + 1403.0, + 1464.0, + 295.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 594.0, + 973.0, + 594.0, + 973.0, + 630.0, + 295.0, + 630.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 725.0, + 1230.0, + 725.0, + 1230.0, + 764.0, + 294.0, + 764.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 5, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 318, + 225, + 1381, + 225, + 1381, + 609, + 318, + 609 + ], + "score": 0.984, + "html": "
ModelMNLI-m/mm|SQuAD v1.1 SQuAD v2.0|RACE|Acc F1/EM F1/EMAccReCoRDF1/EM|SWAGNERAcc F1
BERTlarge86.6/-90.9/84.1 81.8/79.072.0186.692.8
ALBERTtarge86.5/-91.8/85.2 84.9/81.875.211-
RoBERTalarge90.2/90.294.6/88.9 89.4/86.583.290.6/90.089.993.4
XLNetlarge90.8/90.895.1/89.7 90.6/87.985.4---
Megatron336M89.7/90.094.2/88.0 88.1/84.883.0111
DeBERTalarge91.1/91.195.5/90.1 90.7/88.086.891.4/91.090.893.8
ALBERTxxlarge90.8/-94.8/89.3 90.2/87.486.51-
Megatron1.3B90.9/91.094.9/89.1 90.2/87.187.3-1-
Megatron3.9B91.4/91.495.5/90.0 91.2/88.589.5111
" + }, + { + "category_id": 5, + "poly": [ + 351, + 1627, + 1349, + 1627, + 1349, + 1786, + 351, + 1786 + ], + "score": 0.98, + "html": "
ModelMNLI-m/mm (Acc)SQuAD v1.1 (F1/EM)SQuAD v2.0 (F1/EM)
RoBERTabase87.6/-91.5/84.683.7/80.5
XLNetbase86.8/---/80.2
DeBERTabase88.8/88.593.1/87.286.2/83.1
" + }, + { + "category_id": 1, + "poly": [ + 297, + 737, + 1405, + 737, + 1405, + 983, + 297, + 983 + ], + "score": 0.979 + }, + { + "category_id": 1, + "poly": [ + 298, + 997, + 1404, + 997, + 1404, + 1182, + 298, + 1182 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1291, + 1404, + 1291, + 1404, + 1445, + 298, + 1445 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 298, + 1460, + 1405, + 1460, + 1405, + 1585, + 298, + 1585 + ], + "score": 0.951 + }, + { + "category_id": 0, + "poly": [ + 301, + 1231, + 795, + 1231, + 795, + 1263, + 301, + 1263 + ], + "score": 0.9 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.897 + }, + { + "category_id": 2, + "poly": [ + 296, + 1918, + 1405, + 1918, + 1405, + 2034, + 296, + 2034 + ], + "score": 0.853 + }, + { + "category_id": 2, + "poly": [ + 841, + 2087, + 858, + 2087, + 858, + 2111, + 841, + 2111 + ], + "score": 0.774 + }, + { + "category_id": 6, + "poly": [ + 301, + 633, + 1403, + 633, + 1403, + 696, + 301, + 696 + ], + "score": 0.672 + }, + { + "category_id": 6, + "poly": [ + 341, + 1808, + 1351, + 1808, + 1351, + 1841, + 341, + 1841 + ], + "score": 0.637 + }, + { + "category_id": 7, + "poly": [ + 341, + 1808, + 1351, + 1808, + 1351, + 1841, + 341, + 1841 + ], + "score": 0.206 + }, + { + "category_id": 1, + "poly": [ + 301, + 633, + 1403, + 633, + 1403, + 696, + 301, + 696 + ], + "score": 0.169 + }, + { + "category_id": 13, + "poly": [ + 557, + 1090, + 634, + 1090, + 634, + 1120, + 557, + 1120 + ], + "score": 0.91, + "latex": "+ 1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 656, + 1523, + 735, + 1523, + 735, + 1553, + 656, + 1553 + ], + "score": 0.9, + "latex": "+ 1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1221, + 1523, + 1278, + 1523, + 1278, + 1552, + 1221, + 1552 + ], + "score": 0.88, + "latex": "+ 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 765, + 1090, + 841, + 1090, + 841, + 1120, + 765, + 1120 + ], + "score": 0.86, + "latex": "8 5 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 867, + 1523, + 945, + 1523, + 945, + 1553, + 867, + 1553 + ], + "score": 0.84, + "latex": "8 7 . 6 \\%" + }, + { + "category_id": 13, + "poly": [ + 647, + 1090, + 722, + 1090, + 722, + 1120, + 647, + 1120 + ], + "score": 0.84, + "latex": "8 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 748, + 1523, + 824, + 1523, + 824, + 1553, + 748, + 1553 + ], + "score": 0.84, + "latex": "8 8 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 1292, + 1523, + 1367, + 1523, + 1367, + 1552, + 1292, + 1552 + ], + "score": 0.83, + "latex": "8 8 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 1553, + 374, + 1553, + 374, + 1583, + 297, + 1583 + ], + "score": 0.82, + "latex": "8 6 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 783, + 1323, + 1093, + 1323, + 1093, + 1354, + 783, + 1354 + ], + "score": 0.81, + "latex": "L = 1 2 , H = 7 6 8 , A = 1 2" + }, + { + "category_id": 13, + "poly": [ + 811, + 1810, + 895, + 1810, + 895, + 1839, + 811, + 1839 + ], + "score": 0.69, + "latex": "\\left( \\mathrm { m } / \\mathrm { m m } \\right)" + }, + { + "category_id": 13, + "poly": [ + 440, + 1554, + 556, + 1554, + 556, + 1584, + 440, + 1584 + ], + "score": 0.59, + "latex": "\\mathbf { X L N e t } _ { \\mathrm { b a s e } }" + }, + { + "category_id": 13, + "poly": [ + 1001, + 1323, + 1092, + 1323, + 1092, + 1352, + 1001, + 1352 + ], + "score": 0.55, + "latex": "A = 1 2" + }, + { + "category_id": 13, + "poly": [ + 331, + 1975, + 375, + 1975, + 375, + 2005, + 331, + 2005 + ], + "score": 0.49, + "latex": "^ 5 \\mathrm { T } 5" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1094, + 1121, + 1094, + 1121, + 1122, + 1081, + 1122 + ], + "score": 0.48, + "latex": "1 . 3 \\mathrm { B }" + }, + { + "category_id": 13, + "poly": [ + 1012, + 1523, + 1163, + 1523, + 1163, + 1554, + 1012, + 1554 + ], + "score": 0.42, + "latex": "\\mathrm { R o B E R T a _ { b a s e } }" + }, + { + "category_id": 13, + "poly": [ + 414, + 1523, + 566, + 1523, + 566, + 1553, + 414, + 1553 + ], + "score": 0.4, + "latex": "\\mathrm { D e B E R T a _ { b a s e } }" + }, + { + "category_id": 13, + "poly": [ + 1108, + 1809, + 1162, + 1809, + 1162, + 1838, + 1108, + 1838 + ], + "score": 0.27, + "latex": "\\mathrm { v } 2 . 0" + }, + { + "category_id": 13, + "poly": [ + 1126, + 1526, + 1163, + 1526, + 1163, + 1553, + 1126, + 1553 + ], + "score": 0.26, + "latex": "\\mathtt { b a s e }" + }, + { + "category_id": 13, + "poly": [ + 757, + 896, + 797, + 896, + 797, + 922, + 757, + 922 + ], + "score": 0.25, + "latex": "\\cdot 1 . 3 \\mathrm { B }" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1229.0, + 800.0, + 1229.0, + 800.0, + 1267.0, + 294.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1913.0, + 1406.0, + 1913.0, + 1406.0, + 1956.0, + 329.0, + 1956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1948.0, + 436.0, + 1948.0, + 436.0, + 1977.0, + 296.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1968.0, + 330.0, + 1968.0, + 330.0, + 2015.0, + 325.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 376.0, + 1968.0, + 1405.0, + 1968.0, + 1405.0, + 2015.0, + 376.0, + 2015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 2006.0, + 752.0, + 2006.0, + 752.0, + 2035.0, + 296.0, + 2035.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": [ + 296.0, + 631.0, + 1407.0, + 631.0, + 1407.0, + 668.0, + 296.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 661.0, + 1349.0, + 661.0, + 1349.0, + 700.0, + 295.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1805.0, + 810.0, + 1805.0, + 810.0, + 1844.0, + 340.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1805.0, + 1107.0, + 1805.0, + 1107.0, + 1844.0, + 896.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1805.0, + 1357.0, + 1805.0, + 1357.0, + 1844.0, + 1163.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 340.0, + 1805.0, + 810.0, + 1805.0, + 810.0, + 1844.0, + 340.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 896.0, + 1805.0, + 1107.0, + 1805.0, + 1107.0, + 1844.0, + 896.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1163.0, + 1805.0, + 1357.0, + 1805.0, + 1357.0, + 1844.0, + 1163.0, + 1844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 735.0, + 1406.0, + 735.0, + 1406.0, + 774.0, + 292.0, + 774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 767.0, + 1406.0, + 767.0, + 1406.0, + 805.0, + 292.0, + 805.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 795.0, + 1406.0, + 795.0, + 1406.0, + 837.0, + 291.0, + 837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 830.0, + 1405.0, + 830.0, + 1405.0, + 864.0, + 294.0, + 864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 859.0, + 1406.0, + 859.0, + 1406.0, + 895.0, + 292.0, + 895.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 889.0, + 756.0, + 889.0, + 756.0, + 928.0, + 292.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 798.0, + 889.0, + 1406.0, + 889.0, + 1406.0, + 928.0, + 798.0, + 928.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 920.0, + 1406.0, + 920.0, + 1406.0, + 957.0, + 294.0, + 957.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 952.0, + 513.0, + 952.0, + 513.0, + 981.0, + 293.0, + 981.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 999.0, + 1404.0, + 999.0, + 1404.0, + 1031.0, + 296.0, + 1031.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1028.0, + 1406.0, + 1028.0, + 1406.0, + 1068.0, + 293.0, + 1068.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1058.0, + 1405.0, + 1058.0, + 1405.0, + 1096.0, + 291.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1088.0, + 556.0, + 1088.0, + 556.0, + 1128.0, + 293.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 635.0, + 1088.0, + 646.0, + 1088.0, + 646.0, + 1128.0, + 635.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 723.0, + 1088.0, + 764.0, + 1088.0, + 764.0, + 1128.0, + 723.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 842.0, + 1088.0, + 1080.0, + 1088.0, + 1080.0, + 1128.0, + 842.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1122.0, + 1088.0, + 1405.0, + 1088.0, + 1405.0, + 1128.0, + 1122.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1120.0, + 1404.0, + 1120.0, + 1404.0, + 1156.0, + 294.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1151.0, + 730.0, + 1151.0, + 730.0, + 1184.0, + 293.0, + 1184.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1293.0, + 1405.0, + 1293.0, + 1405.0, + 1326.0, + 296.0, + 1326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1320.0, + 782.0, + 1320.0, + 782.0, + 1355.0, + 293.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1094.0, + 1320.0, + 1404.0, + 1320.0, + 1404.0, + 1355.0, + 1094.0, + 1355.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1349.0, + 1405.0, + 1349.0, + 1405.0, + 1391.0, + 292.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1384.0, + 1405.0, + 1384.0, + 1405.0, + 1417.0, + 296.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1414.0, + 722.0, + 1414.0, + 722.0, + 1447.0, + 294.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1459.0, + 1403.0, + 1459.0, + 1403.0, + 1494.0, + 293.0, + 1494.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1491.0, + 1403.0, + 1491.0, + 1403.0, + 1524.0, + 295.0, + 1524.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1519.0, + 413.0, + 1519.0, + 413.0, + 1556.0, + 292.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 567.0, + 1519.0, + 655.0, + 1519.0, + 655.0, + 1556.0, + 567.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 736.0, + 1519.0, + 747.0, + 1519.0, + 747.0, + 1556.0, + 736.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 825.0, + 1519.0, + 866.0, + 1519.0, + 866.0, + 1556.0, + 825.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 946.0, + 1519.0, + 1011.0, + 1519.0, + 1011.0, + 1556.0, + 946.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1164.0, + 1519.0, + 1220.0, + 1519.0, + 1220.0, + 1556.0, + 1164.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1279.0, + 1519.0, + 1291.0, + 1519.0, + 1291.0, + 1556.0, + 1279.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1368.0, + 1519.0, + 1410.0, + 1519.0, + 1410.0, + 1556.0, + 1368.0, + 1556.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1547.0, + 296.0, + 1547.0, + 296.0, + 1591.0, + 293.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 375.0, + 1547.0, + 439.0, + 1547.0, + 439.0, + 1591.0, + 375.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 557.0, + 1547.0, + 569.0, + 1547.0, + 569.0, + 1591.0, + 557.0, + 1591.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 631.0, + 1407.0, + 631.0, + 1407.0, + 668.0, + 296.0, + 668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 661.0, + 1349.0, + 661.0, + 1349.0, + 700.0, + 295.0, + 700.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 6, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 341, + 860, + 1359, + 860, + 1359, + 1262, + 341, + 1262 + ], + "score": 0.984, + "html": "
ModelMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EMRACE Acc
BERTbase Devlin et al. (2019) RoBERTabase Liu et al. (2019c)84.3/84.7 84.7/-88.5/81.0 90.6/-76.3/73.7 79.7/-65.0 65.6
XLNetbase Yang et al. (2019) RoBERTa-ReImpbase85.8/85.4 84.9/85.1-/- 91.1/84.881.3/78.5 79.5/76.066.7 66.8
DeBERTabase86.3/86.2 86.1/86.192.1/86.182.5/79.371.7
-EMD -C2P85.9/85.791.8/85.8 91.6/85.881.3/78.0 81.3/78.370.3 69.3
-P2C86.0/85.891.7/85.780.8/77.669.6
-(EMD+C2P)85.8/85.991.5/85.380.3/77.268.1
-(EMD+P2C)85.8/85.891.3/85.180.2/77.168.5
" + }, + { + "category_id": 1, + "poly": [ + 298, + 286, + 1404, + 286, + 1404, + 471, + 298, + 471 + ], + "score": 0.977 + }, + { + "category_id": 1, + "poly": [ + 297, + 1350, + 1406, + 1350, + 1406, + 1596, + 297, + 1596 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 1690, + 1405, + 1690, + 1405, + 1844, + 298, + 1844 + ], + "score": 0.972 + }, + { + "category_id": 1, + "poly": [ + 299, + 1859, + 1404, + 1859, + 1404, + 1982, + 299, + 1982 + ], + "score": 0.966 + }, + { + "category_id": 1, + "poly": [ + 301, + 557, + 1400, + 557, + 1400, + 651, + 301, + 651 + ], + "score": 0.962 + }, + { + "category_id": 2, + "poly": [ + 331, + 2005, + 909, + 2005, + 909, + 2034, + 331, + 2034 + ], + "score": 0.918 + }, + { + "category_id": 1, + "poly": [ + 367, + 675, + 1404, + 675, + 1404, + 822, + 367, + 822 + ], + "score": 0.916 + }, + { + "category_id": 0, + "poly": [ + 300, + 505, + 601, + 505, + 601, + 536, + 300, + 536 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 104, + 300, + 104 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 300, + 1633, + 840, + 1633, + 840, + 1664, + 300, + 1664 + ], + "score": 0.874 + }, + { + "category_id": 6, + "poly": [ + 552, + 1285, + 1146, + 1285, + 1146, + 1317, + 552, + 1317 + ], + "score": 0.865 + }, + { + "category_id": 0, + "poly": [ + 300, + 230, + 586, + 230, + 586, + 261, + 300, + 261 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 840, + 2089, + 858, + 2089, + 858, + 2112, + 840, + 2112 + ], + "score": 0.805 + }, + { + "category_id": 13, + "poly": [ + 756, + 1891, + 882, + 1891, + 882, + 1925, + 756, + 1925 + ], + "score": 0.93, + "latex": "W _ { k , r } , W _ { q , r }" + }, + { + "category_id": 13, + "poly": [ + 947, + 1891, + 1073, + 1891, + 1073, + 1925, + 947, + 1925 + ], + "score": 0.91, + "latex": "W _ { k , c } , W _ { q , c }" + }, + { + "category_id": 13, + "poly": [ + 721, + 1473, + 784, + 1473, + 784, + 1503, + 721, + 1503 + ], + "score": 0.88, + "latex": "1 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 437, + 1505, + 501, + 1505, + 501, + 1534, + 437, + 1534 + ], + "score": 0.87, + "latex": "0 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1340, + 1443, + 1403, + 1443, + 1403, + 1472, + 1340, + 1472 + ], + "score": 0.86, + "latex": "0 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 514, + 1504, + 592, + 1504, + 592, + 1534, + 514, + 1534 + ], + "score": 0.85, + "latex": "8 6 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 916, + 1443, + 978, + 1443, + 978, + 1472, + 916, + 1472 + ], + "score": 0.85, + "latex": "1 . 4 \\%" + }, + { + "category_id": 13, + "poly": [ + 643, + 1504, + 721, + 1504, + 721, + 1534, + 643, + 1534 + ], + "score": 0.85, + "latex": "8 6 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 1121, + 1443, + 1200, + 1443, + 1200, + 1472, + 1121, + 1472 + ], + "score": 0.84, + "latex": "7 0 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 796, + 1474, + 874, + 1474, + 874, + 1503, + 796, + 1503 + ], + "score": 0.84, + "latex": "8 2 . 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 1212, + 1474, + 1276, + 1474, + 1276, + 1504, + 1212, + 1504 + ], + "score": 0.84, + "latex": "0 . 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 922, + 1475, + 1000, + 1475, + 1000, + 1504, + 922, + 1504 + ], + "score": 0.84, + "latex": "8 1 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 1290, + 1474, + 1366, + 1474, + 1366, + 1504, + 1290, + 1504 + ], + "score": 0.83, + "latex": "8 6 . 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 299, + 1473, + 382, + 1473, + 382, + 1503, + 299, + 1503 + ], + "score": 0.83, + "latex": "( 9 2 . 1 \\%" + }, + { + "category_id": 13, + "poly": [ + 430, + 1474, + 510, + 1474, + 510, + 1503, + 430, + 1503 + ], + "score": 0.83, + "latex": "9 1 . 8 \\%" + }, + { + "category_id": 13, + "poly": [ + 297, + 1504, + 381, + 1504, + 381, + 1535, + 297, + 1535 + ], + "score": 0.83, + "latex": "8 6 . 1 \\% )" + }, + { + "category_id": 13, + "poly": [ + 992, + 1443, + 1070, + 1443, + 1070, + 1473, + 992, + 1473 + ], + "score": 0.81, + "latex": "7 1 . 7 \\%" + }, + { + "category_id": 13, + "poly": [ + 661, + 381, + 685, + 381, + 685, + 407, + 661, + 407 + ], + "score": 0.78, + "latex": "^ +" + }, + { + "category_id": 13, + "poly": [ + 388, + 1861, + 549, + 1861, + 549, + 1891, + 388, + 1891 + ], + "score": 0.71, + "latex": "\\mathrm { D e B E R T a } _ { 1 . 5 B }" + }, + { + "category_id": 13, + "poly": [ + 559, + 1752, + 721, + 1752, + 721, + 1783, + 559, + 1783 + ], + "score": 0.63, + "latex": "\\mathrm { D e B E R T a } _ { 1 . 5 B }" + }, + { + "category_id": 13, + "poly": [ + 853, + 1506, + 929, + 1506, + 929, + 1533, + 853, + 1533 + ], + "score": 0.6, + "latex": "\\cdot \\mathrm { m } / \\mathrm { m m }" + }, + { + "category_id": 13, + "poly": [ + 714, + 1786, + 762, + 1786, + 762, + 1814, + 714, + 1814 + ], + "score": 0.46, + "latex": "_ { 1 . 5 B }" + }, + { + "category_id": 13, + "poly": [ + 1049, + 1475, + 1201, + 1475, + 1201, + 1504, + 1049, + 1504 + ], + "score": 0.45, + "latex": "\\mathrm { S Q u A D ~ v } 2 . 0" + }, + { + "category_id": 13, + "poly": [ + 344, + 944, + 461, + 944, + 461, + 975, + 344, + 975 + ], + "score": 0.39, + "latex": "\\mathbf { B E R T } _ { b a s e }" + }, + { + "category_id": 15, + "poly": [ + 331.0, + 1998.0, + 914.0, + 1998.0, + 914.0, + 2041.0, + 331.0, + 2041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 504.0, + 605.0, + 504.0, + 605.0, + 540.0, + 295.0, + 540.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 815.0, + 72.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1632.0, + 843.0, + 1632.0, + 843.0, + 1668.0, + 295.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 551.0, + 1285.0, + 1148.0, + 1285.0, + 1148.0, + 1320.0, + 551.0, + 1320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 225.0, + 590.0, + 225.0, + 590.0, + 266.0, + 292.0, + 266.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 838.0, + 2085.0, + 862.0, + 2085.0, + 862.0, + 2117.0, + 838.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 288.0, + 1404.0, + 288.0, + 1404.0, + 320.0, + 296.0, + 320.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 317.0, + 1405.0, + 317.0, + 1405.0, + 353.0, + 294.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 348.0, + 1405.0, + 348.0, + 1405.0, + 384.0, + 294.0, + 384.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 376.0, + 660.0, + 376.0, + 660.0, + 415.0, + 292.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 686.0, + 376.0, + 1405.0, + 376.0, + 1405.0, + 415.0, + 686.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 409.0, + 1405.0, + 409.0, + 1405.0, + 445.0, + 294.0, + 445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 440.0, + 906.0, + 440.0, + 906.0, + 473.0, + 293.0, + 473.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1352.0, + 1404.0, + 1352.0, + 1404.0, + 1385.0, + 294.0, + 1385.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1382.0, + 1406.0, + 1382.0, + 1406.0, + 1415.0, + 295.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1413.0, + 1406.0, + 1413.0, + 1406.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1443.0, + 915.0, + 1443.0, + 915.0, + 1477.0, + 295.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1443.0, + 991.0, + 1443.0, + 991.0, + 1477.0, + 979.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1071.0, + 1443.0, + 1120.0, + 1443.0, + 1120.0, + 1477.0, + 1071.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1201.0, + 1443.0, + 1339.0, + 1443.0, + 1339.0, + 1477.0, + 1201.0, + 1477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1471.0, + 298.0, + 1471.0, + 298.0, + 1509.0, + 292.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 1471.0, + 429.0, + 1471.0, + 429.0, + 1509.0, + 383.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 511.0, + 1471.0, + 720.0, + 1471.0, + 720.0, + 1509.0, + 511.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 785.0, + 1471.0, + 795.0, + 1471.0, + 795.0, + 1509.0, + 785.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 875.0, + 1471.0, + 921.0, + 1471.0, + 921.0, + 1509.0, + 875.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 1471.0, + 1048.0, + 1471.0, + 1048.0, + 1509.0, + 1001.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1202.0, + 1471.0, + 1211.0, + 1471.0, + 1211.0, + 1509.0, + 1202.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1277.0, + 1471.0, + 1289.0, + 1471.0, + 1289.0, + 1509.0, + 1277.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1367.0, + 1471.0, + 1409.0, + 1471.0, + 1409.0, + 1509.0, + 1367.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1501.0, + 296.0, + 1501.0, + 296.0, + 1539.0, + 292.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 382.0, + 1501.0, + 436.0, + 1501.0, + 436.0, + 1539.0, + 382.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 502.0, + 1501.0, + 513.0, + 1501.0, + 513.0, + 1539.0, + 502.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 1501.0, + 642.0, + 1501.0, + 642.0, + 1539.0, + 593.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1501.0, + 852.0, + 1501.0, + 852.0, + 1539.0, + 722.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1501.0, + 1407.0, + 1501.0, + 1407.0, + 1539.0, + 930.0, + 1539.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1534.0, + 1407.0, + 1534.0, + 1407.0, + 1570.0, + 292.0, + 1570.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1564.0, + 1299.0, + 1564.0, + 1299.0, + 1602.0, + 292.0, + 1602.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1692.0, + 1405.0, + 1692.0, + 1405.0, + 1721.0, + 296.0, + 1721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1719.0, + 1403.0, + 1719.0, + 1403.0, + 1752.0, + 296.0, + 1752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1750.0, + 558.0, + 1750.0, + 558.0, + 1787.0, + 293.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 722.0, + 1750.0, + 1405.0, + 1750.0, + 1405.0, + 1787.0, + 722.0, + 1787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1778.0, + 713.0, + 1778.0, + 713.0, + 1819.0, + 293.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 763.0, + 1778.0, + 1408.0, + 1778.0, + 1408.0, + 1819.0, + 763.0, + 1819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1811.0, + 1408.0, + 1811.0, + 1408.0, + 1846.0, + 295.0, + 1846.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1860.0, + 387.0, + 1860.0, + 387.0, + 1893.0, + 295.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 550.0, + 1860.0, + 1404.0, + 1860.0, + 1404.0, + 1893.0, + 550.0, + 1893.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1889.0, + 755.0, + 1889.0, + 755.0, + 1929.0, + 293.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 883.0, + 1889.0, + 946.0, + 1889.0, + 946.0, + 1929.0, + 883.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1074.0, + 1889.0, + 1406.0, + 1889.0, + 1406.0, + 1929.0, + 1074.0, + 1929.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1922.0, + 1404.0, + 1922.0, + 1404.0, + 1954.0, + 295.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1948.0, + 1409.0, + 1948.0, + 1409.0, + 1987.0, + 293.0, + 1987.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 557.0, + 1405.0, + 557.0, + 1405.0, + 594.0, + 295.0, + 594.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 586.0, + 1405.0, + 586.0, + 1405.0, + 625.0, + 292.0, + 625.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 620.0, + 1040.0, + 620.0, + 1040.0, + 654.0, + 296.0, + 654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 675.0, + 955.0, + 675.0, + 955.0, + 707.0, + 367.0, + 707.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 366.0, + 714.0, + 1340.0, + 714.0, + 1340.0, + 752.0, + 366.0, + 752.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 367.0, + 755.0, + 1405.0, + 755.0, + 1405.0, + 794.0, + 367.0, + 794.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 392.0, + 788.0, + 1324.0, + 788.0, + 1324.0, + 824.0, + 392.0, + 824.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 7, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 297, + 777, + 1404, + 777, + 1404, + 1105, + 297, + 1105 + ], + "score": 0.982, + "html": "
ModelBoolQAccCBF1/Acc|COPA|AccMultiRCF1a/EMReCoRDF1/EMRTEAccWiCAccAccWSC|AverageScore
RoBERTalarge87.1[90.5/95.290.684.4/52.590.6/90.088.269.989.084.6
NEXHA-Plus87.894.4/96.093.684.6/55.190.1/89.689.174.693.286.7
T511B91.293.9/96.894.888.1/63.394.1/93.492.576.993.889.3
T511B+Meena91.395.8/97.697.488.3/63.094.2/93.592.777.995.990.2
Human89.095.8/98.9100.081.8/51.991.7/91.393.680.0100.089.8
DeBERTa1.5B+SiFTDeBERTaEnsemble90.490.494.9/97.295.7/97.696.898.488.2/63.788.2/63.794.5/94.194.5/94.193.293.276.495.995.989.990.3
77.5
" + }, + { + "category_id": 1, + "poly": [ + 298, + 307, + 1404, + 307, + 1404, + 522, + 298, + 522 + ], + "score": 0.98 + }, + { + "category_id": 1, + "poly": [ + 298, + 1314, + 1404, + 1314, + 1404, + 1560, + 298, + 1560 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 297, + 1713, + 1404, + 1713, + 1404, + 1959, + 297, + 1959 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 298, + 1575, + 1403, + 1575, + 1403, + 1698, + 298, + 1698 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 536, + 1405, + 536, + 1405, + 753, + 297, + 753 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 298, + 229, + 1403, + 229, + 1403, + 293, + 298, + 293 + ], + "score": 0.943 + }, + { + "category_id": 2, + "poly": [ + 300, + 1977, + 1404, + 1977, + 1404, + 2033, + 300, + 2033 + ], + "score": 0.923 + }, + { + "category_id": 0, + "poly": [ + 300, + 1247, + 561, + 1247, + 561, + 1283, + 300, + 1283 + ], + "score": 0.898 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.896 + }, + { + "category_id": 2, + "poly": [ + 840, + 2088, + 858, + 2088, + 858, + 2111, + 840, + 2111 + ], + "score": 0.805 + }, + { + "category_id": 6, + "poly": [ + 298, + 1127, + 1400, + 1127, + 1400, + 1191, + 298, + 1191 + ], + "score": 0.731 + }, + { + "category_id": 1, + "poly": [ + 298, + 1127, + 1400, + 1127, + 1400, + 1191, + 298, + 1191 + ], + "score": 0.094 + }, + { + "category_id": 13, + "poly": [ + 298, + 630, + 529, + 630, + 529, + 661, + 298, + 661 + ], + "score": 0.59, + "latex": "( \\mathrm { D e B E R T a } _ { E n s e m b l e } )" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1971.0, + 1408.0, + 1971.0, + 1408.0, + 2012.0, + 329.0, + 2012.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2004.0, + 885.0, + 2004.0, + 885.0, + 2037.0, + 294.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1240.0, + 566.0, + 1240.0, + 566.0, + 1291.0, + 291.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 839.0, + 2087.0, + 860.0, + 2087.0, + 860.0, + 2117.0, + 839.0, + 2117.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1126.0, + 1404.0, + 1126.0, + 1404.0, + 1162.0, + 296.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1156.0, + 1101.0, + 1156.0, + 1101.0, + 1194.0, + 292.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 306.0, + 1406.0, + 306.0, + 1406.0, + 344.0, + 293.0, + 344.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 334.0, + 1404.0, + 334.0, + 1404.0, + 375.0, + 292.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 365.0, + 1405.0, + 365.0, + 1405.0, + 406.0, + 291.0, + 406.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 400.0, + 1406.0, + 400.0, + 1406.0, + 434.0, + 293.0, + 434.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 428.0, + 1408.0, + 428.0, + 1408.0, + 464.0, + 293.0, + 464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 461.0, + 1405.0, + 461.0, + 1405.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 491.0, + 1389.0, + 491.0, + 1389.0, + 525.0, + 296.0, + 525.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1316.0, + 1405.0, + 1316.0, + 1405.0, + 1349.0, + 296.0, + 1349.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1348.0, + 1404.0, + 1348.0, + 1404.0, + 1378.0, + 296.0, + 1378.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1376.0, + 1404.0, + 1376.0, + 1404.0, + 1411.0, + 295.0, + 1411.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1405.0, + 1405.0, + 1405.0, + 1405.0, + 1445.0, + 292.0, + 1445.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1438.0, + 1405.0, + 1438.0, + 1405.0, + 1472.0, + 294.0, + 1472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1468.0, + 1404.0, + 1468.0, + 1404.0, + 1502.0, + 294.0, + 1502.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1499.0, + 1405.0, + 1499.0, + 1405.0, + 1533.0, + 294.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1530.0, + 1056.0, + 1530.0, + 1056.0, + 1563.0, + 296.0, + 1563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1715.0, + 1405.0, + 1715.0, + 1405.0, + 1748.0, + 295.0, + 1748.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1745.0, + 1406.0, + 1745.0, + 1406.0, + 1780.0, + 292.0, + 1780.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1776.0, + 1405.0, + 1776.0, + 1405.0, + 1810.0, + 295.0, + 1810.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1807.0, + 1405.0, + 1807.0, + 1405.0, + 1837.0, + 296.0, + 1837.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1836.0, + 1406.0, + 1836.0, + 1406.0, + 1870.0, + 295.0, + 1870.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1864.0, + 1405.0, + 1864.0, + 1405.0, + 1903.0, + 291.0, + 1903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1896.0, + 1405.0, + 1896.0, + 1405.0, + 1933.0, + 292.0, + 1933.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1927.0, + 1396.0, + 1927.0, + 1396.0, + 1965.0, + 295.0, + 1965.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1576.0, + 1403.0, + 1576.0, + 1403.0, + 1609.0, + 294.0, + 1609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1605.0, + 1405.0, + 1605.0, + 1405.0, + 1640.0, + 293.0, + 1640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1637.0, + 1405.0, + 1637.0, + 1405.0, + 1673.0, + 293.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1667.0, + 774.0, + 1667.0, + 774.0, + 1703.0, + 293.0, + 1703.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": [ + 292.0, + 565.0, + 1410.0, + 565.0, + 1410.0, + 605.0, + 292.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 599.0, + 1406.0, + 599.0, + 1406.0, + 631.0, + 294.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 628.0, + 297.0, + 628.0, + 297.0, + 667.0, + 294.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 530.0, + 628.0, + 1410.0, + 628.0, + 1410.0, + 667.0, + 530.0, + 667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 659.0, + 1405.0, + 659.0, + 1405.0, + 694.0, + 295.0, + 694.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 690.0, + 1405.0, + 690.0, + 1405.0, + 725.0, + 295.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 719.0, + 1191.0, + 719.0, + 1191.0, + 757.0, + 294.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 297.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 258.0, + 1410.0, + 258.0, + 1410.0, + 296.0, + 293.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1126.0, + 1404.0, + 1126.0, + 1404.0, + 1162.0, + 296.0, + 1162.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1156.0, + 1101.0, + 1156.0, + 1101.0, + 1194.0, + 292.0, + 1194.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 8, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 296, + 1404, + 296, + 1404, + 390, + 299, + 390 + ], + "score": 0.96 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 814, + 75, + 814, + 105, + 300, + 105 + ], + "score": 0.881 + }, + { + "category_id": 0, + "poly": [ + 300, + 226, + 661, + 226, + 661, + 261, + 300, + 261 + ], + "score": 0.848 + }, + { + "category_id": 1, + "poly": [ + 295, + 489, + 1402, + 489, + 1402, + 552, + 295, + 552 + ], + "score": 0.841 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.812 + }, + { + "category_id": 0, + "poly": [ + 299, + 438, + 489, + 438, + 489, + 472, + 299, + 472 + ], + "score": 0.786 + }, + { + "category_id": 1, + "poly": [ + 291, + 1241, + 1403, + 1241, + 1403, + 1307, + 291, + 1307 + ], + "score": 0.774 + }, + { + "category_id": 1, + "poly": [ + 297, + 1009, + 1406, + 1009, + 1406, + 1103, + 297, + 1103 + ], + "score": 0.772 + }, + { + "category_id": 1, + "poly": [ + 291, + 1444, + 1402, + 1444, + 1402, + 1509, + 291, + 1509 + ], + "score": 0.768 + }, + { + "category_id": 1, + "poly": [ + 298, + 1125, + 1406, + 1125, + 1406, + 1220, + 298, + 1220 + ], + "score": 0.758 + }, + { + "category_id": 1, + "poly": [ + 300, + 776, + 1402, + 776, + 1402, + 870, + 300, + 870 + ], + "score": 0.749 + }, + { + "category_id": 1, + "poly": [ + 298, + 690, + 1402, + 690, + 1402, + 754, + 298, + 754 + ], + "score": 0.745 + }, + { + "category_id": 1, + "poly": [ + 299, + 892, + 1402, + 892, + 1402, + 988, + 299, + 988 + ], + "score": 0.736 + }, + { + "category_id": 1, + "poly": [ + 299, + 1327, + 1403, + 1327, + 1403, + 1422, + 299, + 1422 + ], + "score": 0.735 + }, + { + "category_id": 1, + "poly": [ + 296, + 1530, + 1405, + 1530, + 1405, + 1656, + 296, + 1656 + ], + "score": 0.691 + }, + { + "category_id": 1, + "poly": [ + 297, + 1676, + 1406, + 1676, + 1406, + 1772, + 297, + 1772 + ], + "score": 0.678 + }, + { + "category_id": 1, + "poly": [ + 295, + 1793, + 1405, + 1793, + 1405, + 1888, + 295, + 1888 + ], + "score": 0.647 + }, + { + "category_id": 1, + "poly": [ + 298, + 1910, + 1406, + 1910, + 1406, + 2035, + 298, + 2035 + ], + "score": 0.632 + }, + { + "category_id": 1, + "poly": [ + 297, + 573, + 1406, + 573, + 1406, + 668, + 297, + 668 + ], + "score": 0.607 + }, + { + "category_id": 1, + "poly": [ + 299, + 438, + 489, + 438, + 489, + 472, + 299, + 472 + ], + "score": 0.095 + }, + { + "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": [ + 293.0, + 224.0, + 663.0, + 224.0, + 663.0, + 267.0, + 293.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 438.0, + 491.0, + 438.0, + 491.0, + 475.0, + 296.0, + 475.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 296.0, + 1405.0, + 296.0, + 1405.0, + 333.0, + 294.0, + 333.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 325.0, + 1403.0, + 325.0, + 1403.0, + 362.0, + 294.0, + 362.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 359.0, + 1387.0, + 359.0, + 1387.0, + 393.0, + 295.0, + 393.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 486.0, + 1405.0, + 486.0, + 1405.0, + 527.0, + 293.0, + 527.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 519.0, + 611.0, + 519.0, + 611.0, + 552.0, + 322.0, + 552.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1240.0, + 1404.0, + 1240.0, + 1404.0, + 1281.0, + 294.0, + 1281.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1274.0, + 933.0, + 1274.0, + 933.0, + 1308.0, + 322.0, + 1308.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1011.0, + 1404.0, + 1011.0, + 1404.0, + 1045.0, + 295.0, + 1045.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1040.0, + 1404.0, + 1040.0, + 1404.0, + 1075.0, + 321.0, + 1075.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1072.0, + 611.0, + 1072.0, + 611.0, + 1101.0, + 322.0, + 1101.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1442.0, + 1407.0, + 1442.0, + 1407.0, + 1484.0, + 293.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1475.0, + 1104.0, + 1475.0, + 1104.0, + 1510.0, + 322.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1123.0, + 1406.0, + 1123.0, + 1406.0, + 1164.0, + 293.0, + 1164.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1157.0, + 1404.0, + 1157.0, + 1404.0, + 1193.0, + 324.0, + 1193.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1187.0, + 610.0, + 1187.0, + 610.0, + 1221.0, + 322.0, + 1221.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 778.0, + 1404.0, + 778.0, + 1404.0, + 812.0, + 295.0, + 812.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 807.0, + 1407.0, + 807.0, + 1407.0, + 844.0, + 321.0, + 844.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 833.0, + 398.0, + 833.0, + 398.0, + 874.0, + 320.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 687.0, + 1408.0, + 687.0, + 1408.0, + 730.0, + 292.0, + 730.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 722.0, + 775.0, + 722.0, + 775.0, + 755.0, + 322.0, + 755.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 891.0, + 1407.0, + 891.0, + 1407.0, + 930.0, + 293.0, + 930.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 923.0, + 1406.0, + 923.0, + 1406.0, + 961.0, + 322.0, + 961.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 953.0, + 983.0, + 953.0, + 983.0, + 991.0, + 322.0, + 991.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1327.0, + 1404.0, + 1327.0, + 1404.0, + 1365.0, + 295.0, + 1365.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1360.0, + 1404.0, + 1360.0, + 1404.0, + 1396.0, + 321.0, + 1396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1390.0, + 642.0, + 1390.0, + 642.0, + 1424.0, + 323.0, + 1424.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1531.0, + 1406.0, + 1531.0, + 1406.0, + 1568.0, + 291.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1564.0, + 1407.0, + 1564.0, + 1407.0, + 1597.0, + 323.0, + 1597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1593.0, + 1406.0, + 1593.0, + 1406.0, + 1629.0, + 322.0, + 1629.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1624.0, + 883.0, + 1624.0, + 883.0, + 1657.0, + 323.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1676.0, + 1408.0, + 1676.0, + 1408.0, + 1714.0, + 294.0, + 1714.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1709.0, + 1404.0, + 1709.0, + 1404.0, + 1744.0, + 324.0, + 1744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1736.0, + 1367.0, + 1736.0, + 1367.0, + 1775.0, + 319.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1794.0, + 1407.0, + 1794.0, + 1407.0, + 1828.0, + 295.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1823.0, + 1410.0, + 1823.0, + 1410.0, + 1864.0, + 321.0, + 1864.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1856.0, + 676.0, + 1856.0, + 676.0, + 1890.0, + 324.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1909.0, + 1404.0, + 1909.0, + 1404.0, + 1947.0, + 293.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1941.0, + 1408.0, + 1941.0, + 1408.0, + 1978.0, + 321.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1970.0, + 1406.0, + 1970.0, + 1406.0, + 2010.0, + 320.0, + 2010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 2002.0, + 1128.0, + 2002.0, + 1128.0, + 2037.0, + 318.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 574.0, + 1406.0, + 574.0, + 1406.0, + 611.0, + 294.0, + 611.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 607.0, + 1404.0, + 607.0, + 1404.0, + 641.0, + 323.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 635.0, + 945.0, + 635.0, + 945.0, + 673.0, + 323.0, + 673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 438.0, + 491.0, + 438.0, + 491.0, + 475.0, + 296.0, + 475.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 9, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.889 + }, + { + "category_id": 1, + "poly": [ + 297, + 1155, + 1405, + 1155, + 1405, + 1310, + 297, + 1310 + ], + "score": 0.885 + }, + { + "category_id": 1, + "poly": [ + 297, + 1622, + 1406, + 1622, + 1406, + 1716, + 297, + 1716 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 298, + 1738, + 1405, + 1738, + 1405, + 1831, + 298, + 1831 + ], + "score": 0.873 + }, + { + "category_id": 1, + "poly": [ + 297, + 1504, + 1405, + 1504, + 1405, + 1600, + 297, + 1600 + ], + "score": 0.854 + }, + { + "category_id": 1, + "poly": [ + 295, + 1333, + 1402, + 1333, + 1402, + 1396, + 295, + 1396 + ], + "score": 0.845 + }, + { + "category_id": 1, + "poly": [ + 296, + 1419, + 1402, + 1419, + 1402, + 1483, + 296, + 1483 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 299, + 1941, + 1403, + 1941, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.841 + }, + { + "category_id": 1, + "poly": [ + 301, + 805, + 1402, + 805, + 1402, + 901, + 301, + 901 + ], + "score": 0.838 + }, + { + "category_id": 1, + "poly": [ + 293, + 1853, + 1406, + 1853, + 1406, + 1919, + 293, + 1919 + ], + "score": 0.828 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 861, + 2088, + 861, + 2113, + 835, + 2113 + ], + "score": 0.825 + }, + { + "category_id": 1, + "poly": [ + 298, + 922, + 1406, + 922, + 1406, + 1017, + 298, + 1017 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 298, + 1038, + 1405, + 1038, + 1405, + 1133, + 298, + 1133 + ], + "score": 0.823 + }, + { + "category_id": 1, + "poly": [ + 292, + 229, + 1403, + 229, + 1403, + 294, + 292, + 294 + ], + "score": 0.811 + }, + { + "category_id": 1, + "poly": [ + 298, + 633, + 1405, + 633, + 1405, + 699, + 298, + 699 + ], + "score": 0.805 + }, + { + "category_id": 1, + "poly": [ + 297, + 578, + 1321, + 578, + 1321, + 613, + 297, + 613 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 292, + 719, + 1403, + 719, + 1403, + 785, + 292, + 785 + ], + "score": 0.796 + }, + { + "category_id": 1, + "poly": [ + 301, + 314, + 1403, + 314, + 1403, + 410, + 301, + 410 + ], + "score": 0.76 + }, + { + "category_id": 1, + "poly": [ + 297, + 431, + 1405, + 431, + 1405, + 557, + 297, + 557 + ], + "score": 0.668 + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2125.0, + 831.0, + 2125.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1151.0, + 1406.0, + 1151.0, + 1406.0, + 1197.0, + 292.0, + 1197.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1189.0, + 1405.0, + 1189.0, + 1405.0, + 1222.0, + 324.0, + 1222.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1215.0, + 1408.0, + 1215.0, + 1408.0, + 1254.0, + 320.0, + 1254.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1246.0, + 1410.0, + 1246.0, + 1410.0, + 1287.0, + 319.0, + 1287.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1275.0, + 397.0, + 1275.0, + 397.0, + 1314.0, + 320.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1623.0, + 1404.0, + 1623.0, + 1404.0, + 1657.0, + 296.0, + 1657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1652.0, + 1406.0, + 1652.0, + 1406.0, + 1688.0, + 323.0, + 1688.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1684.0, + 862.0, + 1684.0, + 862.0, + 1718.0, + 324.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1736.0, + 1406.0, + 1736.0, + 1406.0, + 1775.0, + 292.0, + 1775.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1765.0, + 1410.0, + 1765.0, + 1410.0, + 1807.0, + 319.0, + 1807.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1795.0, + 398.0, + 1795.0, + 398.0, + 1836.0, + 320.0, + 1836.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1502.0, + 1405.0, + 1502.0, + 1405.0, + 1543.0, + 295.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1537.0, + 1405.0, + 1537.0, + 1405.0, + 1572.0, + 323.0, + 1572.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1565.0, + 1022.0, + 1565.0, + 1022.0, + 1603.0, + 320.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1329.0, + 1406.0, + 1329.0, + 1406.0, + 1371.0, + 293.0, + 1371.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1365.0, + 596.0, + 1365.0, + 596.0, + 1395.0, + 323.0, + 1395.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1418.0, + 1406.0, + 1418.0, + 1406.0, + 1455.0, + 294.0, + 1455.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1450.0, + 1015.0, + 1450.0, + 1015.0, + 1484.0, + 321.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1940.0, + 1404.0, + 1940.0, + 1404.0, + 1978.0, + 294.0, + 1978.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1971.0, + 1403.0, + 1971.0, + 1403.0, + 2008.0, + 321.0, + 2008.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 2003.0, + 703.0, + 2003.0, + 703.0, + 2037.0, + 322.0, + 2037.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 805.0, + 1406.0, + 805.0, + 1406.0, + 843.0, + 296.0, + 843.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 837.0, + 1404.0, + 837.0, + 1404.0, + 874.0, + 322.0, + 874.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 869.0, + 1029.0, + 869.0, + 1029.0, + 903.0, + 324.0, + 903.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1854.0, + 1405.0, + 1854.0, + 1405.0, + 1890.0, + 295.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1885.0, + 1408.0, + 1885.0, + 1408.0, + 1921.0, + 320.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 922.0, + 1409.0, + 922.0, + 1409.0, + 959.0, + 293.0, + 959.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 955.0, + 1408.0, + 955.0, + 1408.0, + 989.0, + 322.0, + 989.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 984.0, + 1206.0, + 984.0, + 1206.0, + 1018.0, + 322.0, + 1018.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1037.0, + 1408.0, + 1037.0, + 1408.0, + 1076.0, + 293.0, + 1076.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1072.0, + 1403.0, + 1072.0, + 1403.0, + 1106.0, + 325.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 325.0, + 1101.0, + 805.0, + 1101.0, + 805.0, + 1135.0, + 325.0, + 1135.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 1408.0, + 228.0, + 1408.0, + 267.0, + 295.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 260.0, + 1304.0, + 260.0, + 1304.0, + 296.0, + 324.0, + 296.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 636.0, + 1405.0, + 636.0, + 1405.0, + 669.0, + 296.0, + 669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 666.0, + 1075.0, + 666.0, + 1075.0, + 700.0, + 322.0, + 700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 574.0, + 1324.0, + 574.0, + 1324.0, + 620.0, + 292.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 718.0, + 1406.0, + 718.0, + 1406.0, + 757.0, + 294.0, + 757.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 751.0, + 993.0, + 751.0, + 993.0, + 786.0, + 321.0, + 786.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 313.0, + 1408.0, + 313.0, + 1408.0, + 353.0, + 292.0, + 353.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 342.0, + 1405.0, + 342.0, + 1405.0, + 388.0, + 320.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 377.0, + 1407.0, + 377.0, + 1407.0, + 415.0, + 322.0, + 415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 427.0, + 1407.0, + 427.0, + 1407.0, + 472.0, + 291.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 465.0, + 1405.0, + 465.0, + 1405.0, + 498.0, + 323.0, + 498.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 495.0, + 1407.0, + 495.0, + 1407.0, + 528.0, + 324.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 526.0, + 1022.0, + 526.0, + 1022.0, + 559.0, + 323.0, + 559.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 10, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 299, + 229, + 1405, + 229, + 1405, + 353, + 299, + 353 + ], + "score": 0.933 + }, + { + "category_id": 1, + "poly": [ + 300, + 1942, + 1405, + 1942, + 1405, + 2034, + 300, + 2034 + ], + "score": 0.901 + }, + { + "category_id": 1, + "poly": [ + 299, + 964, + 1406, + 964, + 1406, + 1090, + 299, + 1090 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 299, + 729, + 1403, + 729, + 1403, + 822, + 299, + 822 + ], + "score": 0.896 + }, + { + "category_id": 1, + "poly": [ + 299, + 847, + 1405, + 847, + 1405, + 941, + 299, + 941 + ], + "score": 0.892 + }, + { + "category_id": 1, + "poly": [ + 298, + 1792, + 1406, + 1792, + 1406, + 1915, + 298, + 1915 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 301, + 378, + 1400, + 378, + 1400, + 442, + 301, + 442 + ], + "score": 0.883 + }, + { + "category_id": 1, + "poly": [ + 293, + 641, + 1401, + 641, + 1401, + 705, + 293, + 705 + ], + "score": 0.881 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.877 + }, + { + "category_id": 1, + "poly": [ + 297, + 1350, + 1405, + 1350, + 1405, + 1445, + 297, + 1445 + ], + "score": 0.875 + }, + { + "category_id": 1, + "poly": [ + 298, + 1673, + 1405, + 1673, + 1405, + 1768, + 298, + 1768 + ], + "score": 0.867 + }, + { + "category_id": 1, + "poly": [ + 299, + 464, + 1406, + 464, + 1406, + 559, + 299, + 559 + ], + "score": 0.865 + }, + { + "category_id": 1, + "poly": [ + 298, + 1200, + 1406, + 1200, + 1406, + 1326, + 298, + 1326 + ], + "score": 0.861 + }, + { + "category_id": 1, + "poly": [ + 298, + 1467, + 1403, + 1467, + 1403, + 1564, + 298, + 1564 + ], + "score": 0.855 + }, + { + "category_id": 1, + "poly": [ + 299, + 584, + 1246, + 584, + 1246, + 618, + 299, + 618 + ], + "score": 0.852 + }, + { + "category_id": 1, + "poly": [ + 296, + 1585, + 1404, + 1585, + 1404, + 1650, + 296, + 1650 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2113, + 836, + 2113 + ], + "score": 0.826 + }, + { + "category_id": 1, + "poly": [ + 292, + 1112, + 1402, + 1112, + 1402, + 1178, + 292, + 1178 + ], + "score": 0.817 + }, + { + "category_id": 13, + "poly": [ + 1181, + 1352, + 1290, + 1352, + 1290, + 1382, + 1181, + 1382 + ], + "score": 0.7, + "latex": "^ { 1 0 0 , 0 0 0 + }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 229.0, + 1405.0, + 229.0, + 1405.0, + 265.0, + 294.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 259.0, + 1409.0, + 259.0, + 1409.0, + 297.0, + 321.0, + 297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 290.0, + 1406.0, + 290.0, + 1406.0, + 327.0, + 321.0, + 327.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 320.0, + 1396.0, + 320.0, + 1396.0, + 358.0, + 323.0, + 358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1940.0, + 1409.0, + 1940.0, + 1409.0, + 1977.0, + 295.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1974.0, + 1404.0, + 1974.0, + 1404.0, + 2007.0, + 323.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 2001.0, + 610.0, + 2001.0, + 610.0, + 2035.0, + 321.0, + 2035.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 966.0, + 1406.0, + 966.0, + 1406.0, + 999.0, + 296.0, + 999.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 996.0, + 1407.0, + 996.0, + 1407.0, + 1032.0, + 322.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1026.0, + 1404.0, + 1026.0, + 1404.0, + 1064.0, + 321.0, + 1064.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 1056.0, + 1128.0, + 1056.0, + 1128.0, + 1092.0, + 319.0, + 1092.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 730.0, + 1407.0, + 730.0, + 1407.0, + 763.0, + 297.0, + 763.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 761.0, + 1404.0, + 761.0, + 1404.0, + 795.0, + 323.0, + 795.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 790.0, + 609.0, + 790.0, + 609.0, + 821.0, + 323.0, + 821.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 844.0, + 1405.0, + 844.0, + 1405.0, + 884.0, + 293.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 879.0, + 1405.0, + 879.0, + 1405.0, + 913.0, + 323.0, + 913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 910.0, + 990.0, + 910.0, + 990.0, + 944.0, + 324.0, + 944.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1791.0, + 1408.0, + 1791.0, + 1408.0, + 1828.0, + 293.0, + 1828.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1824.0, + 1406.0, + 1824.0, + 1406.0, + 1857.0, + 321.0, + 1857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1852.0, + 1409.0, + 1852.0, + 1409.0, + 1891.0, + 320.0, + 1891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1884.0, + 396.0, + 1884.0, + 396.0, + 1916.0, + 321.0, + 1916.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 378.0, + 1404.0, + 378.0, + 1404.0, + 414.0, + 297.0, + 414.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 409.0, + 1383.0, + 409.0, + 1383.0, + 443.0, + 322.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 641.0, + 1404.0, + 641.0, + 1404.0, + 677.0, + 296.0, + 677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 674.0, + 753.0, + 674.0, + 753.0, + 704.0, + 322.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1350.0, + 1180.0, + 1350.0, + 1180.0, + 1388.0, + 294.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1291.0, + 1350.0, + 1405.0, + 1350.0, + 1405.0, + 1388.0, + 1291.0, + 1388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1380.0, + 1405.0, + 1380.0, + 1405.0, + 1417.0, + 320.0, + 1417.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1412.0, + 890.0, + 1412.0, + 890.0, + 1446.0, + 322.0, + 1446.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1671.0, + 1405.0, + 1671.0, + 1405.0, + 1712.0, + 293.0, + 1712.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1706.0, + 1405.0, + 1706.0, + 1405.0, + 1740.0, + 323.0, + 1740.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1738.0, + 707.0, + 1738.0, + 707.0, + 1769.0, + 320.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 463.0, + 1404.0, + 463.0, + 1404.0, + 503.0, + 294.0, + 503.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 493.0, + 1406.0, + 493.0, + 1406.0, + 536.0, + 319.0, + 536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 527.0, + 906.0, + 527.0, + 906.0, + 563.0, + 322.0, + 563.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1198.0, + 1409.0, + 1198.0, + 1409.0, + 1238.0, + 293.0, + 1238.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1234.0, + 1406.0, + 1234.0, + 1406.0, + 1267.0, + 324.0, + 1267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1262.0, + 1409.0, + 1262.0, + 1409.0, + 1297.0, + 320.0, + 1297.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1295.0, + 972.0, + 1295.0, + 972.0, + 1328.0, + 322.0, + 1328.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1467.0, + 1404.0, + 1467.0, + 1404.0, + 1506.0, + 293.0, + 1506.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1498.0, + 1407.0, + 1498.0, + 1407.0, + 1536.0, + 322.0, + 1536.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1529.0, + 970.0, + 1529.0, + 970.0, + 1567.0, + 322.0, + 1567.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 582.0, + 1252.0, + 582.0, + 1252.0, + 621.0, + 294.0, + 621.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1588.0, + 1406.0, + 1588.0, + 1406.0, + 1620.0, + 295.0, + 1620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1619.0, + 1402.0, + 1619.0, + 1402.0, + 1651.0, + 324.0, + 1651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1109.0, + 1405.0, + 1109.0, + 1405.0, + 1154.0, + 294.0, + 1154.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1144.0, + 1108.0, + 1144.0, + 1108.0, + 1180.0, + 323.0, + 1180.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 11, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 1, + "poly": [ + 295, + 683, + 1402, + 683, + 1402, + 747, + 295, + 747 + ], + "score": 0.85 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.837 + }, + { + "category_id": 1, + "poly": [ + 291, + 1249, + 1404, + 1249, + 1404, + 1314, + 291, + 1314 + ], + "score": 0.806 + }, + { + "category_id": 1, + "poly": [ + 299, + 569, + 1406, + 569, + 1406, + 664, + 299, + 664 + ], + "score": 0.802 + }, + { + "category_id": 1, + "poly": [ + 298, + 765, + 1405, + 765, + 1405, + 860, + 298, + 860 + ], + "score": 0.793 + }, + { + "category_id": 1, + "poly": [ + 300, + 1848, + 1405, + 1848, + 1405, + 1972, + 300, + 1972 + ], + "score": 0.779 + }, + { + "category_id": 1, + "poly": [ + 295, + 1136, + 1402, + 1136, + 1402, + 1230, + 295, + 1230 + ], + "score": 0.778 + }, + { + "category_id": 1, + "poly": [ + 297, + 1621, + 1406, + 1621, + 1406, + 1717, + 297, + 1717 + ], + "score": 0.77 + }, + { + "category_id": 1, + "poly": [ + 295, + 343, + 1403, + 343, + 1403, + 407, + 295, + 407 + ], + "score": 0.762 + }, + { + "category_id": 1, + "poly": [ + 301, + 1735, + 1404, + 1735, + 1404, + 1828, + 301, + 1828 + ], + "score": 0.746 + }, + { + "category_id": 1, + "poly": [ + 298, + 1508, + 1406, + 1508, + 1406, + 1603, + 298, + 1603 + ], + "score": 0.744 + }, + { + "category_id": 1, + "poly": [ + 296, + 878, + 1406, + 878, + 1406, + 1004, + 296, + 1004 + ], + "score": 0.741 + }, + { + "category_id": 1, + "poly": [ + 298, + 426, + 1408, + 426, + 1408, + 549, + 298, + 549 + ], + "score": 0.74 + }, + { + "category_id": 1, + "poly": [ + 303, + 229, + 1400, + 229, + 1400, + 324, + 303, + 324 + ], + "score": 0.735 + }, + { + "category_id": 1, + "poly": [ + 300, + 1022, + 1403, + 1022, + 1403, + 1118, + 300, + 1118 + ], + "score": 0.734 + }, + { + "category_id": 1, + "poly": [ + 298, + 1332, + 1408, + 1332, + 1408, + 1490, + 298, + 1490 + ], + "score": 0.716 + }, + { + "category_id": 13, + "poly": [ + 1309, + 428, + 1348, + 428, + 1348, + 459, + 1309, + 459 + ], + "score": 0.61, + "latex": "\\mathrm { N g }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2084.0, + 868.0, + 2084.0, + 868.0, + 2123.0, + 831.0, + 2123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 682.0, + 1405.0, + 682.0, + 1405.0, + 721.0, + 294.0, + 721.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 714.0, + 611.0, + 714.0, + 611.0, + 744.0, + 323.0, + 744.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1245.0, + 1409.0, + 1245.0, + 1409.0, + 1289.0, + 293.0, + 1289.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1283.0, + 774.0, + 1283.0, + 774.0, + 1315.0, + 323.0, + 1315.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 569.0, + 1404.0, + 569.0, + 1404.0, + 607.0, + 296.0, + 607.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 601.0, + 1403.0, + 601.0, + 1403.0, + 636.0, + 322.0, + 636.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 632.0, + 706.0, + 632.0, + 706.0, + 664.0, + 321.0, + 664.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 764.0, + 1405.0, + 764.0, + 1405.0, + 803.0, + 292.0, + 803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 797.0, + 1403.0, + 797.0, + 1403.0, + 832.0, + 322.0, + 832.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 830.0, + 798.0, + 830.0, + 798.0, + 861.0, + 320.0, + 861.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1849.0, + 1405.0, + 1849.0, + 1405.0, + 1882.0, + 298.0, + 1882.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1876.0, + 1405.0, + 1876.0, + 1405.0, + 1917.0, + 320.0, + 1917.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1909.0, + 1405.0, + 1909.0, + 1405.0, + 1947.0, + 322.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1942.0, + 599.0, + 1942.0, + 599.0, + 1973.0, + 323.0, + 1973.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1136.0, + 1407.0, + 1136.0, + 1407.0, + 1173.0, + 295.0, + 1173.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1168.0, + 1405.0, + 1168.0, + 1405.0, + 1205.0, + 320.0, + 1205.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1199.0, + 622.0, + 1199.0, + 622.0, + 1233.0, + 323.0, + 1233.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1620.0, + 1404.0, + 1620.0, + 1404.0, + 1658.0, + 294.0, + 1658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1654.0, + 1404.0, + 1654.0, + 1404.0, + 1689.0, + 324.0, + 1689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1684.0, + 1008.0, + 1684.0, + 1008.0, + 1718.0, + 321.0, + 1718.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 342.0, + 1404.0, + 342.0, + 1404.0, + 380.0, + 294.0, + 380.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 375.0, + 1103.0, + 375.0, + 1103.0, + 407.0, + 322.0, + 407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1732.0, + 1409.0, + 1732.0, + 1409.0, + 1774.0, + 292.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1766.0, + 1406.0, + 1766.0, + 1406.0, + 1802.0, + 321.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1796.0, + 705.0, + 1796.0, + 705.0, + 1830.0, + 322.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1506.0, + 1407.0, + 1506.0, + 1407.0, + 1546.0, + 293.0, + 1546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1538.0, + 1407.0, + 1538.0, + 1407.0, + 1576.0, + 322.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 1568.0, + 938.0, + 1568.0, + 938.0, + 1605.0, + 322.0, + 1605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 881.0, + 1406.0, + 881.0, + 1406.0, + 914.0, + 296.0, + 914.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 907.0, + 1407.0, + 907.0, + 1407.0, + 950.0, + 318.0, + 950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 941.0, + 1408.0, + 941.0, + 1408.0, + 977.0, + 322.0, + 977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 970.0, + 409.0, + 970.0, + 409.0, + 1006.0, + 320.0, + 1006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 425.0, + 1308.0, + 425.0, + 1308.0, + 462.0, + 293.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1349.0, + 425.0, + 1405.0, + 425.0, + 1405.0, + 462.0, + 1349.0, + 462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 456.0, + 1408.0, + 456.0, + 1408.0, + 491.0, + 322.0, + 491.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 319.0, + 485.0, + 1409.0, + 485.0, + 1409.0, + 526.0, + 319.0, + 526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 519.0, + 529.0, + 519.0, + 529.0, + 549.0, + 322.0, + 549.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 228.0, + 1404.0, + 228.0, + 1404.0, + 267.0, + 297.0, + 267.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 298.0, + 323.0, + 298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 292.0, + 915.0, + 292.0, + 915.0, + 325.0, + 323.0, + 325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1022.0, + 1408.0, + 1022.0, + 1408.0, + 1060.0, + 295.0, + 1060.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1054.0, + 1407.0, + 1054.0, + 1407.0, + 1091.0, + 320.0, + 1091.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 323.0, + 1086.0, + 1082.0, + 1086.0, + 1082.0, + 1120.0, + 323.0, + 1120.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1334.0, + 1405.0, + 1334.0, + 1405.0, + 1368.0, + 297.0, + 1368.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1365.0, + 1405.0, + 1365.0, + 1405.0, + 1400.0, + 320.0, + 1400.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1396.0, + 1406.0, + 1396.0, + 1406.0, + 1430.0, + 321.0, + 1430.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1426.0, + 1409.0, + 1426.0, + 1409.0, + 1462.0, + 320.0, + 1462.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1455.0, + 999.0, + 1455.0, + 999.0, + 1492.0, + 324.0, + 1492.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 12, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 296, + 386, + 1404, + 386, + 1404, + 1284, + 296, + 1284 + ], + "score": 0.978, + "html": "
CorpusTask#Train #Dev#Test #Label Metrics
General Language Understanding Evaluation (GLUE)
CoLAAcceptability8.5k1k1k2Matthews corr
SSTSentiment67k8721.8k2Accuracy
MNLINLI393k20k20k3Accuracy
RTENLI2.5k2763k2Accuracy
WNLINLI634711462Accuracy
QQPParaphrase364k40k391k2Accuracy/F1
MRPCParaphrase3.7k4081.7k2Accuracy/F1
QNLIQA/NLI108k5.7k5.7k2Accuracy
STS-BSimilarity7k1.5k1.4k1Pearson/Spearman corr
SuperGLUE
WSCCoreference554k1041462Accuracy
BoolQQA9,4273,2703,2452Accuracy
COPAQA400k1005002Accuracy
CBNLI250572503Accuracy/F1
RTENLI2.5k2763k2Accuracy
WiCWSD2.5k2763k2Accuracy
ReCoRDMRC101k10k10k-Exact Match (EM)/F1
MultiRCMultiple choice5,1009531,800Exact Match (EM)/F1
Question Answering
SQuAD v1.1MRC87.6k10.5k9.5kExact Match (EM)/F1
SQuAD v2.0MRC130.3k11.9k8.9k-ExactMatch (EM)/F1
RACEMRC87,8664,8874,9344Accuracy
SWAGMultiple choice73.5k20k20k4Accuracy
Token Classification
CoNLL 2003NER14,9873,4663,6848F1
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1633, + 1405, + 1633, + 1405, + 1818, + 297, + 1818 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 299, + 1911, + 1404, + 1911, + 1404, + 2034, + 299, + 2034 + ], + "score": 0.968 + }, + { + "category_id": 1, + "poly": [ + 297, + 1403, + 1406, + 1403, + 1406, + 1619, + 297, + 1619 + ], + "score": 0.967 + }, + { + "category_id": 1, + "poly": [ + 297, + 1834, + 1397, + 1834, + 1397, + 1896, + 297, + 1896 + ], + "score": 0.937 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.896 + }, + { + "category_id": 0, + "poly": [ + 300, + 227, + 509, + 227, + 509, + 261, + 300, + 261 + ], + "score": 0.883 + }, + { + "category_id": 2, + "poly": [ + 836, + 2089, + 863, + 2089, + 863, + 2112, + 836, + 2112 + ], + "score": 0.847 + }, + { + "category_id": 6, + "poly": [ + 469, + 1320, + 1226, + 1320, + 1226, + 1354, + 469, + 1354 + ], + "score": 0.811 + }, + { + "category_id": 6, + "poly": [ + 299, + 304, + 483, + 304, + 483, + 336, + 299, + 336 + ], + "score": 0.447 + }, + { + "category_id": 0, + "poly": [ + 299, + 304, + 483, + 304, + 483, + 336, + 299, + 336 + ], + "score": 0.39 + }, + { + "category_id": 6, + "poly": [ + 763, + 1048, + 996, + 1048, + 996, + 1075, + 763, + 1075 + ], + "score": 0.116 + }, + { + "category_id": 13, + "poly": [ + 554, + 2003, + 607, + 2003, + 607, + 2033, + 554, + 2033 + ], + "score": 0.58, + "latex": "\\mathrm { v } 2 . 0" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 222.0, + 513.0, + 222.0, + 513.0, + 268.0, + 295.0, + 268.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 470.0, + 1318.0, + 1227.0, + 1318.0, + 1227.0, + 1358.0, + 470.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 302.0, + 486.0, + 302.0, + 486.0, + 339.0, + 295.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 302.0, + 486.0, + 302.0, + 486.0, + 339.0, + 295.0, + 339.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 759.0, + 1042.0, + 1000.0, + 1042.0, + 1000.0, + 1085.0, + 759.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1633.0, + 1405.0, + 1633.0, + 1405.0, + 1668.0, + 294.0, + 1668.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1662.0, + 1406.0, + 1662.0, + 1406.0, + 1704.0, + 291.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1692.0, + 1410.0, + 1692.0, + 1410.0, + 1732.0, + 292.0, + 1732.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1725.0, + 1407.0, + 1725.0, + 1407.0, + 1761.0, + 294.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1753.0, + 1407.0, + 1753.0, + 1407.0, + 1792.0, + 294.0, + 1792.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1784.0, + 602.0, + 1784.0, + 602.0, + 1822.0, + 294.0, + 1822.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1911.0, + 1404.0, + 1911.0, + 1404.0, + 1947.0, + 294.0, + 1947.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1942.0, + 1405.0, + 1942.0, + 1405.0, + 1977.0, + 293.0, + 1977.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1971.0, + 1411.0, + 1971.0, + 1411.0, + 2011.0, + 293.0, + 2011.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 2003.0, + 553.0, + 2003.0, + 553.0, + 2039.0, + 294.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 608.0, + 2003.0, + 1370.0, + 2003.0, + 1370.0, + 2039.0, + 608.0, + 2039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1405.0, + 1406.0, + 1405.0, + 1406.0, + 1439.0, + 295.0, + 1439.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1436.0, + 1409.0, + 1436.0, + 1409.0, + 1470.0, + 294.0, + 1470.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1467.0, + 1407.0, + 1467.0, + 1407.0, + 1500.0, + 294.0, + 1500.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1495.0, + 1407.0, + 1495.0, + 1407.0, + 1533.0, + 292.0, + 1533.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1527.0, + 1408.0, + 1527.0, + 1408.0, + 1562.0, + 294.0, + 1562.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1558.0, + 1406.0, + 1558.0, + 1406.0, + 1592.0, + 295.0, + 1592.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1588.0, + 1326.0, + 1588.0, + 1326.0, + 1622.0, + 294.0, + 1622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1833.0, + 1403.0, + 1833.0, + 1403.0, + 1869.0, + 296.0, + 1869.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1864.0, + 1306.0, + 1864.0, + 1306.0, + 1898.0, + 293.0, + 1898.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 13, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1133, + 1406, + 1133, + 1406, + 1409, + 297, + 1409 + ], + "score": 0.981 + }, + { + "category_id": 1, + "poly": [ + 297, + 1578, + 1407, + 1578, + 1407, + 1825, + 297, + 1825 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 297, + 498, + 1407, + 498, + 1407, + 685, + 297, + 685 + ], + "score": 0.972 + }, + { + "category_id": 5, + "poly": [ + 297, + 716, + 1416, + 716, + 1416, + 956, + 297, + 956 + ], + "score": 0.962, + "html": "
ModelWiki+Book16GBOpenWebText38GBStories31GBCC-News76GBGiga516GBClueWeb19GBCommon Crawl110GB
BERT
XLNet(24号
RoBERTa
DeBERTaDeBERTa1.5B√√广
" + }, + { + "category_id": 1, + "poly": [ + 295, + 229, + 1402, + 229, + 1402, + 323, + 295, + 323 + ], + "score": 0.956 + }, + { + "category_id": 2, + "poly": [ + 323, + 1852, + 1115, + 1852, + 1115, + 2035, + 323, + 2035 + ], + "score": 0.955 + }, + { + "category_id": 1, + "poly": [ + 295, + 337, + 1401, + 337, + 1401, + 401, + 295, + 401 + ], + "score": 0.942 + }, + { + "category_id": 1, + "poly": [ + 302, + 1422, + 1398, + 1422, + 1398, + 1486, + 302, + 1486 + ], + "score": 0.938 + }, + { + "category_id": 0, + "poly": [ + 301, + 1522, + 720, + 1522, + 720, + 1555, + 301, + 1555 + ], + "score": 0.908 + }, + { + "category_id": 0, + "poly": [ + 301, + 1074, + 698, + 1074, + 698, + 1106, + 301, + 1106 + ], + "score": 0.902 + }, + { + "category_id": 0, + "poly": [ + 300, + 441, + 666, + 441, + 666, + 474, + 300, + 474 + ], + "score": 0.901 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 812, + 75, + 812, + 104, + 300, + 104 + ], + "score": 0.894 + }, + { + "category_id": 2, + "poly": [ + 835, + 2088, + 863, + 2088, + 863, + 2112, + 835, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 6, + "poly": [ + 597, + 979, + 1100, + 979, + 1100, + 1012, + 597, + 1012 + ], + "score": 0.844 + }, + { + "category_id": 13, + "poly": [ + 1268, + 593, + 1309, + 593, + 1309, + 621, + 1268, + 621 + ], + "score": 0.87, + "latex": "5 \\%" + }, + { + "category_id": 13, + "poly": [ + 590, + 1641, + 748, + 1641, + 748, + 1672, + 590, + 1672 + ], + "score": 0.75, + "latex": "\\mathrm { D e B E R T a } _ { b a s e }" + }, + { + "category_id": 13, + "poly": [ + 532, + 1763, + 689, + 1763, + 689, + 1794, + 532, + 1794 + ], + "score": 0.74, + "latex": "\\mathrm { D e B E R T a } _ { b a s e }" + }, + { + "category_id": 13, + "poly": [ + 1067, + 1732, + 1189, + 1732, + 1189, + 1763, + 1067, + 1763 + ], + "score": 0.6, + "latex": "\\mathtt { X L N e t } _ { b a s e }" + }, + { + "category_id": 13, + "poly": [ + 657, + 1732, + 813, + 1732, + 813, + 1762, + 657, + 1762 + ], + "score": 0.56, + "latex": "\\mathrm { R o B E R T a } _ { b a s e }" + }, + { + "category_id": 13, + "poly": [ + 769, + 1734, + 814, + 1734, + 814, + 1762, + 769, + 1762 + ], + "score": 0.47, + "latex": "b a s e" + }, + { + "category_id": 13, + "poly": [ + 423, + 292, + 482, + 292, + 482, + 321, + 423, + 321 + ], + "score": 0.46, + "latex": "1 1 3 \\mathrm { k }" + }, + { + "category_id": 15, + "poly": [ + 329.0, + 1849.0, + 718.0, + 1849.0, + 718.0, + 1890.0, + 329.0, + 1890.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 327.0, + 1879.0, + 872.0, + 1879.0, + 872.0, + 1921.0, + 327.0, + 1921.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1905.0, + 1118.0, + 1905.0, + 1118.0, + 1954.0, + 318.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1936.0, + 795.0, + 1936.0, + 795.0, + 1983.0, + 318.0, + 1983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1966.0, + 690.0, + 1966.0, + 690.0, + 2014.0, + 320.0, + 2014.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 320.0, + 1996.0, + 777.0, + 1996.0, + 777.0, + 2043.0, + 320.0, + 2043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 298.0, + 1524.0, + 724.0, + 1524.0, + 724.0, + 1557.0, + 298.0, + 1557.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1072.0, + 701.0, + 1072.0, + 701.0, + 1111.0, + 295.0, + 1111.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 439.0, + 669.0, + 439.0, + 669.0, + 477.0, + 295.0, + 477.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 72.0, + 816.0, + 72.0, + 816.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 593.0, + 974.0, + 1103.0, + 974.0, + 1103.0, + 1017.0, + 593.0, + 1017.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1134.0, + 1406.0, + 1134.0, + 1406.0, + 1170.0, + 295.0, + 1170.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1164.0, + 1406.0, + 1164.0, + 1406.0, + 1201.0, + 295.0, + 1201.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1194.0, + 1407.0, + 1194.0, + 1407.0, + 1231.0, + 295.0, + 1231.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1223.0, + 1408.0, + 1223.0, + 1408.0, + 1263.0, + 294.0, + 1263.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1254.0, + 1407.0, + 1254.0, + 1407.0, + 1291.0, + 295.0, + 1291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1285.0, + 1406.0, + 1285.0, + 1406.0, + 1322.0, + 294.0, + 1322.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1315.0, + 1406.0, + 1315.0, + 1406.0, + 1352.0, + 294.0, + 1352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1345.0, + 1408.0, + 1345.0, + 1408.0, + 1386.0, + 292.0, + 1386.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1375.0, + 1014.0, + 1375.0, + 1014.0, + 1415.0, + 294.0, + 1415.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1579.0, + 1405.0, + 1579.0, + 1405.0, + 1612.0, + 292.0, + 1612.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1610.0, + 1407.0, + 1610.0, + 1407.0, + 1644.0, + 295.0, + 1644.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1638.0, + 589.0, + 1638.0, + 589.0, + 1677.0, + 292.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 749.0, + 1638.0, + 1407.0, + 1638.0, + 1407.0, + 1677.0, + 749.0, + 1677.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1670.0, + 1405.0, + 1670.0, + 1405.0, + 1704.0, + 294.0, + 1704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1700.0, + 1404.0, + 1700.0, + 1404.0, + 1734.0, + 295.0, + 1734.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1730.0, + 656.0, + 1730.0, + 656.0, + 1768.0, + 294.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 815.0, + 1730.0, + 1066.0, + 1730.0, + 1066.0, + 1768.0, + 815.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1190.0, + 1730.0, + 1408.0, + 1730.0, + 1408.0, + 1768.0, + 1190.0, + 1768.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1759.0, + 531.0, + 1759.0, + 531.0, + 1799.0, + 292.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 690.0, + 1759.0, + 1407.0, + 1759.0, + 1407.0, + 1799.0, + 690.0, + 1799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1792.0, + 473.0, + 1792.0, + 473.0, + 1829.0, + 294.0, + 1829.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 499.0, + 1404.0, + 499.0, + 1404.0, + 535.0, + 294.0, + 535.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 529.0, + 1407.0, + 529.0, + 1407.0, + 568.0, + 294.0, + 568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 556.0, + 1409.0, + 556.0, + 1409.0, + 599.0, + 292.0, + 599.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 588.0, + 1267.0, + 588.0, + 1267.0, + 631.0, + 292.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1310.0, + 588.0, + 1407.0, + 588.0, + 1407.0, + 631.0, + 1310.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 620.0, + 1405.0, + 620.0, + 1405.0, + 658.0, + 294.0, + 658.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 656.0, + 518.0, + 656.0, + 518.0, + 685.0, + 293.0, + 685.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 230.0, + 1404.0, + 230.0, + 1404.0, + 264.0, + 297.0, + 264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 261.0, + 1405.0, + 261.0, + 1405.0, + 295.0, + 297.0, + 295.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 292.0, + 422.0, + 292.0, + 422.0, + 326.0, + 297.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 483.0, + 292.0, + 1074.0, + 292.0, + 1074.0, + 326.0, + 483.0, + 326.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 333.0, + 1405.0, + 333.0, + 1405.0, + 375.0, + 292.0, + 375.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 365.0, + 485.0, + 365.0, + 485.0, + 405.0, + 293.0, + 405.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1417.0, + 1403.0, + 1417.0, + 1403.0, + 1460.0, + 294.0, + 1460.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1450.0, + 461.0, + 1450.0, + 461.0, + 1488.0, + 292.0, + 1488.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 14, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 5, + "poly": [ + 307, + 224, + 1391, + 224, + 1391, + 839, + 307, + 839 + ], + "score": 0.978, + "html": "
Hyper-parameter|DeBERTa1.5BDeBERTalargeDeBERTabaseDeBERTabase-ablation
Number of Layers48241212
Hidden size15361024768768
FNN inner hidden size6144409630723072
Attention Heads24161212
Attention Head size64646464
Dropout0.10.10.10.1
Warmup Steps10k10k10k10k
Learning Rates1.5e-42e-42e-41e-4
Batch Size2k2k2k256
Weight Decay0.010.010.010.01
Max Steps1M1M1M1M
Learning Rate DecayLinearLinearLinearLinear
Adam ∈1e-61e-61e-61e-6
Adam β10.90.90.90.9
Adam β20.9990.9990.9990.999
Gradient Clipping1.01.01.0
Number ofDGX-2 nodes1661.0
Training Time30 days20 days4 10 days1 7 days
" + }, + { + "category_id": 5, + "poly": [ + 299, + 945, + 1406, + 945, + 1406, + 1345, + 299, + 1345 + ], + "score": 0.977, + "html": "
Hyper-parameterDeBERTa1.5BDeBERTalargeDeBERTabase
Dropout of task layer Warmup Steps Learning Rates Batch Size Weight Decay Maximun Training Epochs Learning Rate Decay Adam ∈ Adam β1{0,0.15,0.3} {50,100,500,1000] {1e-6,3e-6, 5e-6} {16,32,64} 0.01 10 Linear 1e-6 0.9{0,0.1,0.15} {50,100,500,1000} {5e-6,8e-6, 9e-6, 1e-5} {16,32,48,64} 0.01 10 Linear 1e-6{0,0.1,0.15} {50,100,500,1000] {1.5e-5,2e-5, 3e-5,4e-5} {16,32,48,64} 10 Linear
" + }, + { + "category_id": 3, + "poly": [ + 311, + 1482, + 1395, + 1482, + 1395, + 1865, + 311, + 1865 + ], + "score": 0.96 + }, + { + "category_id": 4, + "poly": [ + 293, + 1887, + 1406, + 1887, + 1406, + 1952, + 293, + 1952 + ], + "score": 0.927 + }, + { + "category_id": 2, + "poly": [ + 301, + 76, + 812, + 76, + 812, + 104, + 301, + 104 + ], + "score": 0.899 + }, + { + "category_id": 6, + "poly": [ + 548, + 862, + 1148, + 862, + 1148, + 896, + 548, + 896 + ], + "score": 0.859 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2113, + 836, + 2113 + ], + "score": 0.857 + }, + { + "category_id": 6, + "poly": [ + 408, + 1367, + 1287, + 1367, + 1287, + 1402, + 408, + 1402 + ], + "score": 0.597 + }, + { + "category_id": 13, + "poly": [ + 391, + 676, + 422, + 676, + 422, + 705, + 391, + 705 + ], + "score": 0.62, + "latex": "\\beta _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 380, + 1245, + 411, + 1245, + 411, + 1274, + 380, + 1274 + ], + "score": 0.35, + "latex": "\\beta _ { 1 }" + }, + { + "category_id": 13, + "poly": [ + 391, + 707, + 423, + 707, + 423, + 736, + 391, + 736 + ], + "score": 0.35, + "latex": "\\beta _ { 2 }" + }, + { + "category_id": 13, + "poly": [ + 380, + 1275, + 412, + 1275, + 412, + 1305, + 380, + 1305 + ], + "score": 0.28, + "latex": "\\beta _ { 2 }" + }, + { + "category_id": 15, + "poly": [ + 337.0, + 1521.0, + 373.0, + 1521.0, + 373.0, + 1551.0, + 337.0, + 1551.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 1525.0, + 779.0, + 1525.0, + 779.0, + 1534.0, + 769.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 891.0, + 1502.0, + 926.0, + 1502.0, + 926.0, + 1534.0, + 891.0, + 1534.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1255.0, + 1518.0, + 1272.0, + 1518.0, + 1272.0, + 1544.0, + 1255.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1317.0, + 1515.0, + 1327.0, + 1515.0, + 1327.0, + 1526.0, + 1317.0, + 1526.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 675.0, + 1536.0, + 726.0, + 1536.0, + 726.0, + 1553.0, + 675.0, + 1553.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 864.0, + 1536.0, + 900.0, + 1536.0, + 900.0, + 1727.0, + 864.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1544.0, + 347.0, + 1544.0, + 347.0, + 1726.0, + 308.0, + 1726.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 892.0, + 1559.0, + 927.0, + 1559.0, + 927.0, + 1588.0, + 892.0, + 1588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 979.0, + 1580.0, + 990.0, + 1580.0, + 990.0, + 1589.0, + 979.0, + 1589.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 339.0, + 1609.0, + 373.0, + 1609.0, + 373.0, + 1637.0, + 339.0, + 1637.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 602.0, + 1629.0, + 820.0, + 1629.0, + 820.0, + 1673.0, + 602.0, + 1673.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1616.0, + 927.0, + 1616.0, + 927.0, + 1646.0, + 894.0, + 1646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1146.0, + 1625.0, + 1368.0, + 1625.0, + 1368.0, + 1669.0, + 1146.0, + 1669.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 894.0, + 1672.0, + 927.0, + 1672.0, + 927.0, + 1701.0, + 894.0, + 1701.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 336.0, + 1692.0, + 373.0, + 1692.0, + 373.0, + 1725.0, + 336.0, + 1725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 601.0, + 1693.0, + 746.0, + 1693.0, + 746.0, + 1736.0, + 601.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 548.0, + 1726.0, + 713.0, + 1726.0, + 713.0, + 1765.0, + 548.0, + 1765.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 890.0, + 1726.0, + 929.0, + 1726.0, + 929.0, + 1760.0, + 890.0, + 1760.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1093.0, + 1723.0, + 1259.0, + 1723.0, + 1259.0, + 1762.0, + 1093.0, + 1762.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 356.0, + 1772.0, + 849.0, + 1772.0, + 849.0, + 1803.0, + 356.0, + 1803.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 1770.0, + 1398.0, + 1770.0, + 1398.0, + 1802.0, + 897.0, + 1802.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 446.0, + 1795.0, + 757.0, + 1795.0, + 757.0, + 1830.0, + 446.0, + 1830.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 995.0, + 1793.0, + 1309.0, + 1793.0, + 1309.0, + 1827.0, + 995.0, + 1827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 400.0, + 1831.0, + 753.0, + 1831.0, + 753.0, + 1866.0, + 400.0, + 1866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1829.0, + 1339.0, + 1829.0, + 1339.0, + 1865.0, + 920.0, + 1865.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 604.0, + 1666.0, + 746.0, + 1666.0, + 746.0, + 1700.0, + 604.0, + 1700.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1150.0, + 1663.5, + 1292.0, + 1663.5, + 1292.0, + 1696.5, + 1150.0, + 1696.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 1694.5, + 1292.0, + 1694.5, + 1292.0, + 1727.0, + 1149.0, + 1727.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1887.0, + 1404.0, + 1887.0, + 1404.0, + 1923.0, + 295.0, + 1923.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1918.0, + 641.0, + 1918.0, + 641.0, + 1954.0, + 296.0, + 1954.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 296.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 543.0, + 858.0, + 1153.0, + 858.0, + 1153.0, + 902.0, + 543.0, + 902.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 408.0, + 1366.0, + 1289.0, + 1366.0, + 1289.0, + 1406.0, + 408.0, + 1406.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 15, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 429, + 1406, + 429, + 1406, + 677, + 297, + 677 + ], + "score": 0.977 + }, + { + "category_id": 5, + "poly": [ + 344, + 718, + 1355, + 718, + 1355, + 846, + 344, + 846 + ], + "score": 0.977, + "html": "
Model |RoBERTa|DeBERTa-AP|DeBERTa|DeBERTa-MT|GPT-2|Transformer-XL
Dev PPL21.620.720.519.5123.1
Test PPL21.620.019.919.537.5024
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1702, + 1406, + 1702, + 1406, + 1828, + 297, + 1828 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 298, + 292, + 1406, + 292, + 1406, + 416, + 298, + 416 + ], + "score": 0.976 + }, + { + "category_id": 1, + "poly": [ + 297, + 948, + 1405, + 948, + 1405, + 1102, + 297, + 1102 + ], + "score": 0.975 + }, + { + "category_id": 1, + "poly": [ + 300, + 1941, + 1404, + 1941, + 1404, + 2034, + 300, + 2034 + ], + "score": 0.974 + }, + { + "category_id": 5, + "poly": [ + 609, + 1468, + 1090, + 1468, + 1090, + 1596, + 609, + 1596 + ], + "score": 0.97, + "html": "
Sequence length |Middle|High| AMiddleHigh|Accuracy
51276888.885.086.3
88.786.386.8
" + }, + { + "category_id": 1, + "poly": [ + 297, + 1216, + 1406, + 1216, + 1406, + 1431, + 297, + 1431 + ], + "score": 0.968 + }, + { + "category_id": 0, + "poly": [ + 302, + 1155, + 789, + 1155, + 789, + 1187, + 302, + 1187 + ], + "score": 0.901 + }, + { + "category_id": 0, + "poly": [ + 301, + 229, + 847, + 229, + 847, + 262, + 301, + 262 + ], + "score": 0.895 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.887 + }, + { + "category_id": 0, + "poly": [ + 299, + 1880, + 1117, + 1880, + 1117, + 1911, + 299, + 1911 + ], + "score": 0.864 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.84 + }, + { + "category_id": 6, + "poly": [ + 391, + 869, + 1304, + 869, + 1304, + 903, + 391, + 903 + ], + "score": 0.807 + }, + { + "category_id": 6, + "poly": [ + 377, + 1618, + 1313, + 1618, + 1313, + 1651, + 377, + 1651 + ], + "score": 0.75 + }, + { + "category_id": 0, + "poly": [ + 315, + 1881, + 1107, + 1881, + 1107, + 1911, + 315, + 1911 + ], + "score": 0.125 + }, + { + "category_id": 1, + "poly": [ + 377, + 1618, + 1313, + 1618, + 1313, + 1651, + 377, + 1651 + ], + "score": 0.116 + }, + { + "category_id": 13, + "poly": [ + 965, + 1248, + 1065, + 1248, + 1065, + 1281, + 965, + 1281 + ], + "score": 0.93, + "latex": "2 ( k - 1 )" + }, + { + "category_id": 13, + "poly": [ + 1093, + 1278, + 1202, + 1278, + 1202, + 1312, + 1093, + 1312 + ], + "score": 0.92, + "latex": "( 2 k - 1 ) l" + }, + { + "category_id": 13, + "poly": [ + 808, + 1309, + 1004, + 1309, + 1004, + 1341, + 808, + 1341 + ], + "score": 0.88, + "latex": "k = 5 1 2 , L = 2 4" + }, + { + "category_id": 13, + "poly": [ + 969, + 950, + 1117, + 950, + 1117, + 980, + 969, + 980 + ], + "score": 0.84, + "latex": "\\mathrm { D e B E R T a _ { b a s e } }" + }, + { + "category_id": 13, + "poly": [ + 1100, + 358, + 1148, + 358, + 1148, + 384, + 1100, + 384 + ], + "score": 0.83, + "latex": "- \\infty" + }, + { + "category_id": 13, + "poly": [ + 1203, + 1219, + 1222, + 1219, + 1222, + 1245, + 1203, + 1245 + ], + "score": 0.81, + "latex": "k" + }, + { + "category_id": 13, + "poly": [ + 382, + 1310, + 551, + 1310, + 551, + 1343, + 382, + 1343 + ], + "score": 0.75, + "latex": "\\mathrm { D e B E R T a } _ { l a r g e }" + }, + { + "category_id": 13, + "poly": [ + 805, + 524, + 963, + 524, + 963, + 555, + 805, + 555 + ], + "score": 0.75, + "latex": "\\mathrm { D e B E R T a } _ { b a s e }" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1153.0, + 795.0, + 1153.0, + 795.0, + 1191.0, + 296.0, + 1191.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 228.0, + 852.0, + 228.0, + 852.0, + 265.0, + 295.0, + 265.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1879.0, + 1119.0, + 1879.0, + 1119.0, + 1913.0, + 297.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 832.0, + 2085.0, + 867.0, + 2085.0, + 867.0, + 2124.0, + 832.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 391.0, + 867.0, + 1309.0, + 867.0, + 1309.0, + 906.0, + 391.0, + 906.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1616.0, + 1319.0, + 1616.0, + 1319.0, + 1654.0, + 378.0, + 1654.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 309.0, + 1879.0, + 1114.0, + 1879.0, + 1114.0, + 1913.0, + 309.0, + 1913.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 429.0, + 1409.0, + 429.0, + 1409.0, + 467.0, + 292.0, + 467.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 462.0, + 1408.0, + 462.0, + 1408.0, + 496.0, + 294.0, + 496.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 494.0, + 1404.0, + 494.0, + 1404.0, + 528.0, + 294.0, + 528.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 522.0, + 804.0, + 522.0, + 804.0, + 559.0, + 292.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 964.0, + 522.0, + 1404.0, + 522.0, + 1404.0, + 559.0, + 964.0, + 559.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 554.0, + 1404.0, + 554.0, + 1404.0, + 588.0, + 295.0, + 588.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 581.0, + 1406.0, + 581.0, + 1406.0, + 622.0, + 292.0, + 622.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 616.0, + 1404.0, + 616.0, + 1404.0, + 650.0, + 295.0, + 650.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 644.0, + 731.0, + 644.0, + 731.0, + 681.0, + 294.0, + 681.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1703.0, + 1404.0, + 1703.0, + 1404.0, + 1736.0, + 294.0, + 1736.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1733.0, + 1408.0, + 1733.0, + 1408.0, + 1769.0, + 294.0, + 1769.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1763.0, + 1406.0, + 1763.0, + 1406.0, + 1798.0, + 294.0, + 1798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1796.0, + 734.0, + 1796.0, + 734.0, + 1831.0, + 294.0, + 1831.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 294.0, + 1403.0, + 294.0, + 1403.0, + 324.0, + 296.0, + 324.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 324.0, + 1408.0, + 324.0, + 1408.0, + 356.0, + 295.0, + 356.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 355.0, + 1099.0, + 355.0, + 1099.0, + 388.0, + 293.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1149.0, + 355.0, + 1408.0, + 355.0, + 1408.0, + 388.0, + 1149.0, + 388.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 383.0, + 385.0, + 383.0, + 385.0, + 419.0, + 292.0, + 419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 950.0, + 968.0, + 950.0, + 968.0, + 983.0, + 296.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1118.0, + 950.0, + 1405.0, + 950.0, + 1405.0, + 983.0, + 1118.0, + 983.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 980.0, + 1407.0, + 980.0, + 1407.0, + 1013.0, + 295.0, + 1013.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1009.0, + 1406.0, + 1009.0, + 1406.0, + 1044.0, + 295.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1038.0, + 1407.0, + 1038.0, + 1407.0, + 1078.0, + 291.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1070.0, + 452.0, + 1070.0, + 452.0, + 1102.0, + 292.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1942.0, + 1406.0, + 1942.0, + 1406.0, + 1975.0, + 294.0, + 1975.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1971.0, + 1404.0, + 1971.0, + 1404.0, + 2006.0, + 294.0, + 2006.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 2002.0, + 813.0, + 2002.0, + 813.0, + 2038.0, + 295.0, + 2038.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1214.0, + 1202.0, + 1214.0, + 1202.0, + 1253.0, + 292.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1223.0, + 1214.0, + 1409.0, + 1214.0, + 1409.0, + 1253.0, + 1223.0, + 1253.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1245.0, + 964.0, + 1245.0, + 964.0, + 1285.0, + 291.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1066.0, + 1245.0, + 1407.0, + 1245.0, + 1407.0, + 1285.0, + 1066.0, + 1285.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1277.0, + 1092.0, + 1277.0, + 1092.0, + 1314.0, + 292.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1203.0, + 1277.0, + 1408.0, + 1277.0, + 1408.0, + 1314.0, + 1203.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1306.0, + 381.0, + 1306.0, + 381.0, + 1348.0, + 291.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 1306.0, + 807.0, + 1306.0, + 807.0, + 1348.0, + 552.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1005.0, + 1306.0, + 1408.0, + 1306.0, + 1408.0, + 1348.0, + 1005.0, + 1348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1337.0, + 1407.0, + 1337.0, + 1407.0, + 1373.0, + 294.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1367.0, + 1407.0, + 1367.0, + 1407.0, + 1407.0, + 291.0, + 1407.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1400.0, + 407.0, + 1400.0, + 407.0, + 1432.0, + 294.0, + 1432.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 378.0, + 1616.0, + 1319.0, + 1616.0, + 1319.0, + 1654.0, + 378.0, + 1654.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 16, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 298, + 1600, + 1404, + 1600, + 1404, + 1877, + 298, + 1877 + ], + "score": 0.982 + }, + { + "category_id": 5, + "poly": [ + 366, + 529, + 1334, + 529, + 1334, + 768, + 366, + 768 + ], + "score": 0.98, + "html": "
ModelParametersMNLI-m/mm AccSQuAD v1.1 F1/EMSQuAD v2.0 F1/EM
RoBERTa-ReImpbase120M84.9/85.191.1/84.879.5/76.0
DeBERTabase134M86.3/86.292.1/86.182.5/79.3
+ ShareProjection120M86.3/86.392.2/86.282.3/79.5
+ Conv122M86.3/86.592.5/86.482.5/79.7
+ 128k Vocab190M86.7/86.993.1/86.883.0/80.1
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1229, + 1405, + 1229, + 1405, + 1505, + 298, + 1505 + ], + "score": 0.98 + }, + { + "category_id": 5, + "poly": [ + 298, + 225, + 1408, + 225, + 1408, + 442, + 298, + 442 + ], + "score": 0.98, + "html": "
ModelCoLA| Mcc|QQP AccMNLI-m/mml AccSST-2| AccSTS-B CorrQNLI AccRTE AccMRPC| AccAvg.
DeBERTalarge70.592.391.1/91.196.892.895.388.391.990.00
DeBERTa900M71.192.391.7/91.697.592.095.893.593.190.86
DeBERTa1.5B72.092.791.7/91.997.292.996.093.992.091.17
DeBERTa1.5B+SiFT73.593.092.0/92.197.593.296.596.593.291.93
" + }, + { + "category_id": 1, + "poly": [ + 298, + 970, + 1405, + 970, + 1405, + 1214, + 298, + 1214 + ], + "score": 0.978 + }, + { + "category_id": 1, + "poly": [ + 299, + 1972, + 1403, + 1972, + 1403, + 2034, + 299, + 2034 + ], + "score": 0.947 + }, + { + "category_id": 2, + "poly": [ + 300, + 75, + 813, + 75, + 813, + 105, + 300, + 105 + ], + "score": 0.898 + }, + { + "category_id": 0, + "poly": [ + 301, + 913, + 625, + 913, + 625, + 944, + 301, + 944 + ], + "score": 0.892 + }, + { + "category_id": 0, + "poly": [ + 300, + 1915, + 641, + 1915, + 641, + 1946, + 300, + 1946 + ], + "score": 0.891 + }, + { + "category_id": 0, + "poly": [ + 298, + 1544, + 1025, + 1544, + 1025, + 1575, + 298, + 1575 + ], + "score": 0.868 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 863, + 2088, + 863, + 2112, + 836, + 2112 + ], + "score": 0.845 + }, + { + "category_id": 6, + "poly": [ + 299, + 466, + 1400, + 466, + 1400, + 499, + 299, + 499 + ], + "score": 0.831 + }, + { + "category_id": 7, + "poly": [ + 295, + 790, + 1407, + 790, + 1407, + 853, + 295, + 853 + ], + "score": 0.564 + }, + { + "category_id": 6, + "poly": [ + 295, + 790, + 1407, + 790, + 1407, + 853, + 295, + 853 + ], + "score": 0.412 + }, + { + "category_id": 13, + "poly": [ + 776, + 1230, + 877, + 1230, + 877, + 1263, + 776, + 1263 + ], + "score": 0.93, + "latex": "O ( N k d )" + }, + { + "category_id": 13, + "poly": [ + 607, + 1444, + 736, + 1444, + 736, + 1477, + 607, + 1477 + ], + "score": 0.92, + "latex": "0 . 1 5 \\times 2 / L" + }, + { + "category_id": 13, + "poly": [ + 585, + 999, + 717, + 999, + 717, + 1030, + 585, + 1030 + ], + "score": 0.92, + "latex": "P \\in R ^ { 2 k \\times d }" + }, + { + "category_id": 13, + "poly": [ + 1191, + 1000, + 1400, + 1000, + 1400, + 1031, + 1191, + 1031 + ], + "score": 0.92, + "latex": "2 L \\times d ^ { \\bar { 2 } } + 2 k \\times d" + }, + { + "category_id": 13, + "poly": [ + 799, + 1413, + 853, + 1413, + 853, + 1443, + 799, + 1443 + ], + "score": 0.91, + "latex": "1 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 298, + 1000, + 534, + 1000, + 534, + 1035, + 298, + 1035 + ], + "score": 0.91, + "latex": "W _ { q , r } , W _ { k , r } \\in R ^ { d \\times d }" + }, + { + "category_id": 13, + "poly": [ + 454, + 1062, + 507, + 1062, + 507, + 1092, + 454, + 1092 + ], + "score": 0.9, + "latex": "1 3 \\%" + }, + { + "category_id": 13, + "poly": [ + 604, + 1092, + 657, + 1092, + 657, + 1121, + 604, + 1121 + ], + "score": 0.9, + "latex": "1 2 \\%" + }, + { + "category_id": 13, + "poly": [ + 1320, + 1785, + 1401, + 1785, + 1401, + 1813, + 1320, + 1813 + ], + "score": 0.89, + "latex": "I = H" + }, + { + "category_id": 13, + "poly": [ + 1104, + 1755, + 1175, + 1755, + 1175, + 1782, + 1104, + 1782 + ], + "score": 0.89, + "latex": "n = 2" + }, + { + "category_id": 13, + "poly": [ + 343, + 1816, + 413, + 1816, + 413, + 1843, + 343, + 1843 + ], + "score": 0.89, + "latex": "n = 1" + }, + { + "category_id": 13, + "poly": [ + 586, + 1291, + 640, + 1291, + 640, + 1322, + 586, + 1322 + ], + "score": 0.88, + "latex": "3 0 \\%" + }, + { + "category_id": 13, + "poly": [ + 799, + 1322, + 853, + 1322, + 853, + 1352, + 799, + 1352 + ], + "score": 0.88, + "latex": "1 5 \\%" + }, + { + "category_id": 13, + "poly": [ + 618, + 1475, + 658, + 1475, + 658, + 1504, + 618, + 1504 + ], + "score": 0.86, + "latex": "2 \\%" + }, + { + "category_id": 13, + "poly": [ + 471, + 1475, + 560, + 1475, + 560, + 1504, + 471, + 1504 + ], + "score": 0.85, + "latex": "L = 1 2" + }, + { + "category_id": 13, + "poly": [ + 730, + 1063, + 1039, + 1063, + 1039, + 1094, + 730, + 1094 + ], + "score": 0.85, + "latex": "( d = 7 6 8 , L = 1 2 , k = 5 1 2 )" + }, + { + "category_id": 13, + "poly": [ + 1361, + 1443, + 1403, + 1443, + 1403, + 1475, + 1361, + 1475 + ], + "score": 0.85, + "latex": "3 \\%" + }, + { + "category_id": 13, + "poly": [ + 841, + 1475, + 929, + 1475, + 929, + 1504, + 841, + 1504 + ], + "score": 0.85, + "latex": "L = 2 4" + }, + { + "category_id": 13, + "poly": [ + 522, + 1032, + 842, + 1032, + 842, + 1063, + 522, + 1063 + ], + "score": 0.83, + "latex": "( d = 1 0 2 4 , L = 2 4 , k = 5 1 2 )" + }, + { + "category_id": 13, + "poly": [ + 577, + 1123, + 923, + 1123, + 923, + 1158, + 577, + 1158 + ], + "score": 0.82, + "latex": "W _ { q , r } = W _ { q , c } , W _ { k , r } = W _ { k , c }" + }, + { + "category_id": 13, + "poly": [ + 1204, + 1602, + 1268, + 1602, + 1268, + 1633, + 1204, + 1633 + ], + "score": 0.81, + "latex": "I , H )" + }, + { + "category_id": 13, + "poly": [ + 936, + 791, + 1094, + 791, + 1094, + 821, + 936, + 821 + ], + "score": 0.79, + "latex": "\\mathrm { D e B E R T a } _ { 1 . 5 B }" + }, + { + "category_id": 13, + "poly": [ + 1225, + 1063, + 1286, + 1063, + 1286, + 1092, + 1225, + 1092 + ], + "score": 0.78, + "latex": "1 4 M" + }, + { + "category_id": 13, + "poly": [ + 1081, + 1353, + 1158, + 1353, + 1158, + 1381, + 1081, + 1381 + ], + "score": 0.76, + "latex": "E M D" + }, + { + "category_id": 13, + "poly": [ + 471, + 1664, + 499, + 1664, + 499, + 1691, + 471, + 1691 + ], + "score": 0.75, + "latex": "H" + }, + { + "category_id": 13, + "poly": [ + 1096, + 1032, + 1157, + 1032, + 1157, + 1060, + 1096, + 1060 + ], + "score": 0.75, + "latex": "4 9 M" + }, + { + "category_id": 13, + "poly": [ + 1261, + 1728, + 1282, + 1728, + 1282, + 1751, + 1261, + 1751 + ], + "score": 0.75, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1159, + 1695, + 1177, + 1695, + 1177, + 1721, + 1159, + 1721 + ], + "score": 0.7, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 1381, + 1668, + 1401, + 1668, + 1401, + 1690, + 1381, + 1690 + ], + "score": 0.68, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 1281, + 1602, + 1310, + 1602, + 1310, + 1630, + 1281, + 1630 + ], + "score": 0.67, + "latex": "H" + }, + { + "category_id": 13, + "poly": [ + 1262, + 1668, + 1284, + 1668, + 1284, + 1691, + 1262, + 1691 + ], + "score": 0.64, + "latex": "n" + }, + { + "category_id": 13, + "poly": [ + 961, + 1634, + 979, + 1634, + 979, + 1660, + 961, + 1660 + ], + "score": 0.61, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 976, + 1786, + 995, + 1786, + 995, + 1812, + 976, + 1812 + ], + "score": 0.61, + "latex": "I" + }, + { + "category_id": 13, + "poly": [ + 1049, + 823, + 1131, + 823, + 1131, + 853, + 1049, + 853 + ], + "score": 0.58, + "latex": "\\mathrm { R T a } _ { \\mathrm { b a s e } }" + }, + { + "category_id": 13, + "poly": [ + 1144, + 791, + 1312, + 791, + 1312, + 823, + 1144, + 823 + ], + "score": 0.4, + "latex": "\\mathrm { D e B E R T a _ { 9 0 0 M } }" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 910.0, + 630.0, + 910.0, + 630.0, + 948.0, + 295.0, + 948.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1912.0, + 644.0, + 1912.0, + 644.0, + 1950.0, + 295.0, + 1950.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1543.0, + 1029.0, + 1543.0, + 1029.0, + 1579.0, + 296.0, + 1579.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2122.0, + 831.0, + 2122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 460.0, + 1405.0, + 460.0, + 1405.0, + 505.0, + 293.0, + 505.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 788.0, + 935.0, + 788.0, + 935.0, + 824.0, + 296.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 788.0, + 1143.0, + 788.0, + 1143.0, + 824.0, + 1095.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 788.0, + 1408.0, + 788.0, + 1408.0, + 824.0, + 1313.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 812.0, + 1048.0, + 812.0, + 1048.0, + 862.0, + 292.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 812.0, + 1145.0, + 812.0, + 1145.0, + 862.0, + 1132.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 788.0, + 935.0, + 788.0, + 935.0, + 824.0, + 296.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1095.0, + 788.0, + 1143.0, + 788.0, + 1143.0, + 824.0, + 1095.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1313.0, + 788.0, + 1408.0, + 788.0, + 1408.0, + 824.0, + 1313.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 812.0, + 1048.0, + 812.0, + 1048.0, + 862.0, + 292.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1132.0, + 812.0, + 1145.0, + 812.0, + 1145.0, + 862.0, + 1132.0, + 862.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1600.0, + 1203.0, + 1600.0, + 1203.0, + 1635.0, + 295.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1269.0, + 1600.0, + 1280.0, + 1600.0, + 1280.0, + 1635.0, + 1269.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1311.0, + 1600.0, + 1405.0, + 1600.0, + 1405.0, + 1635.0, + 1311.0, + 1635.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1631.0, + 960.0, + 1631.0, + 960.0, + 1667.0, + 295.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 980.0, + 1631.0, + 1405.0, + 1631.0, + 1405.0, + 1667.0, + 980.0, + 1667.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1663.0, + 470.0, + 1663.0, + 470.0, + 1699.0, + 294.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 500.0, + 1663.0, + 1261.0, + 1663.0, + 1261.0, + 1699.0, + 500.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1285.0, + 1663.0, + 1380.0, + 1663.0, + 1380.0, + 1699.0, + 1285.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1402.0, + 1663.0, + 1408.0, + 1663.0, + 1408.0, + 1699.0, + 1402.0, + 1699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1693.0, + 1158.0, + 1693.0, + 1158.0, + 1729.0, + 294.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1178.0, + 1693.0, + 1406.0, + 1693.0, + 1406.0, + 1729.0, + 1178.0, + 1729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1721.0, + 1260.0, + 1721.0, + 1260.0, + 1761.0, + 292.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1283.0, + 1721.0, + 1406.0, + 1721.0, + 1406.0, + 1761.0, + 1283.0, + 1761.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1752.0, + 1103.0, + 1752.0, + 1103.0, + 1788.0, + 294.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 1752.0, + 1402.0, + 1752.0, + 1402.0, + 1788.0, + 1176.0, + 1788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1783.0, + 975.0, + 1783.0, + 975.0, + 1820.0, + 293.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1783.0, + 1319.0, + 1783.0, + 1319.0, + 1820.0, + 996.0, + 1820.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1813.0, + 342.0, + 1813.0, + 342.0, + 1850.0, + 294.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 414.0, + 1813.0, + 1405.0, + 1813.0, + 1405.0, + 1850.0, + 414.0, + 1850.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1842.0, + 985.0, + 1842.0, + 985.0, + 1885.0, + 292.0, + 1885.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1231.0, + 775.0, + 1231.0, + 775.0, + 1264.0, + 297.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 878.0, + 1231.0, + 1406.0, + 1231.0, + 1406.0, + 1264.0, + 878.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1260.0, + 1406.0, + 1260.0, + 1406.0, + 1298.0, + 292.0, + 1298.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1287.0, + 585.0, + 1287.0, + 585.0, + 1332.0, + 292.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 641.0, + 1287.0, + 1410.0, + 1287.0, + 1410.0, + 1332.0, + 641.0, + 1332.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1321.0, + 798.0, + 1321.0, + 798.0, + 1358.0, + 295.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1321.0, + 1405.0, + 1321.0, + 1405.0, + 1358.0, + 854.0, + 1358.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1354.0, + 1080.0, + 1354.0, + 1080.0, + 1387.0, + 296.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1159.0, + 1354.0, + 1405.0, + 1354.0, + 1405.0, + 1387.0, + 1159.0, + 1387.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1383.0, + 1406.0, + 1383.0, + 1406.0, + 1419.0, + 292.0, + 1419.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1414.0, + 798.0, + 1414.0, + 798.0, + 1447.0, + 295.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 854.0, + 1414.0, + 1406.0, + 1414.0, + 1406.0, + 1447.0, + 854.0, + 1447.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1443.0, + 606.0, + 1443.0, + 606.0, + 1479.0, + 295.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 737.0, + 1443.0, + 1360.0, + 1443.0, + 1360.0, + 1479.0, + 737.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1473.0, + 470.0, + 1473.0, + 470.0, + 1509.0, + 293.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 561.0, + 1473.0, + 617.0, + 1473.0, + 617.0, + 1509.0, + 561.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 659.0, + 1473.0, + 840.0, + 1473.0, + 840.0, + 1509.0, + 659.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 930.0, + 1473.0, + 1043.0, + 1473.0, + 1043.0, + 1509.0, + 930.0, + 1509.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 970.0, + 1405.0, + 970.0, + 1405.0, + 1004.0, + 295.0, + 1004.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 288.0, + 992.0, + 297.0, + 992.0, + 297.0, + 1039.0, + 288.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 535.0, + 992.0, + 584.0, + 992.0, + 584.0, + 1039.0, + 535.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 718.0, + 992.0, + 1190.0, + 992.0, + 1190.0, + 1039.0, + 718.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1401.0, + 992.0, + 1416.0, + 992.0, + 1416.0, + 1039.0, + 1401.0, + 1039.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1030.0, + 521.0, + 1030.0, + 521.0, + 1066.0, + 293.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 843.0, + 1030.0, + 1095.0, + 1030.0, + 1095.0, + 1066.0, + 843.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 1030.0, + 1408.0, + 1030.0, + 1408.0, + 1066.0, + 1158.0, + 1066.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1061.0, + 453.0, + 1061.0, + 453.0, + 1096.0, + 292.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 508.0, + 1061.0, + 729.0, + 1061.0, + 729.0, + 1096.0, + 508.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1061.0, + 1224.0, + 1061.0, + 1224.0, + 1096.0, + 1040.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1287.0, + 1061.0, + 1407.0, + 1061.0, + 1407.0, + 1096.0, + 1287.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1091.0, + 603.0, + 1091.0, + 603.0, + 1128.0, + 292.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 658.0, + 1091.0, + 1406.0, + 1091.0, + 1406.0, + 1128.0, + 658.0, + 1128.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 291.0, + 1119.0, + 576.0, + 1119.0, + 576.0, + 1165.0, + 291.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 924.0, + 1119.0, + 1410.0, + 1119.0, + 1410.0, + 1165.0, + 924.0, + 1165.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1154.0, + 1406.0, + 1154.0, + 1406.0, + 1188.0, + 295.0, + 1188.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1185.0, + 434.0, + 1185.0, + 434.0, + 1213.0, + 296.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1970.0, + 1405.0, + 1970.0, + 1405.0, + 2007.0, + 294.0, + 2007.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 2000.0, + 1410.0, + 2000.0, + 1410.0, + 2038.0, + 292.0, + 2038.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 17, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 1, + "poly": [ + 297, + 1354, + 1406, + 1354, + 1406, + 1691, + 297, + 1691 + ], + "score": 0.983 + }, + { + "category_id": 3, + "poly": [ + 300, + 244, + 1404, + 244, + 1404, + 883, + 300, + 883 + ], + "score": 0.974 + }, + { + "category_id": 3, + "poly": [ + 298, + 967, + 1406, + 967, + 1406, + 1208, + 298, + 1208 + ], + "score": 0.957 + }, + { + "category_id": 1, + "poly": [ + 298, + 1706, + 1401, + 1706, + 1401, + 1770, + 298, + 1770 + ], + "score": 0.948 + }, + { + "category_id": 4, + "poly": [ + 601, + 906, + 1098, + 906, + 1098, + 940, + 601, + 940 + ], + "score": 0.92 + }, + { + "category_id": 2, + "poly": [ + 300, + 76, + 812, + 76, + 812, + 104, + 300, + 104 + ], + "score": 0.889 + }, + { + "category_id": 4, + "poly": [ + 298, + 1232, + 1400, + 1232, + 1400, + 1296, + 298, + 1296 + ], + "score": 0.865 + }, + { + "category_id": 2, + "poly": [ + 836, + 2088, + 864, + 2088, + 864, + 2112, + 836, + 2112 + ], + "score": 0.85 + }, + { + "category_id": 4, + "poly": [ + 298, + 1232, + 1400, + 1232, + 1400, + 1296, + 298, + 1296 + ], + "score": 0.209 + }, + { + "category_id": 15, + "poly": [ + 375.0, + 270.0, + 625.0, + 270.0, + 625.0, + 307.0, + 375.0, + 307.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 989.0, + 265.0, + 1237.0, + 265.0, + 1237.0, + 302.0, + 989.0, + 302.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 397.0, + 520.0, + 604.0, + 520.0, + 604.0, + 565.0, + 397.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1009.0, + 520.0, + 1220.0, + 520.0, + 1220.0, + 565.0, + 1009.0, + 565.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 345.0, + 602.0, + 375.0, + 602.0, + 375.0, + 634.0, + 345.0, + 634.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 457.0, + 603.0, + 483.0, + 603.0, + 483.0, + 631.0, + 457.0, + 631.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 626.0, + 605.0, + 648.0, + 605.0, + 648.0, + 628.0, + 626.0, + 628.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1073.0, + 625.0, + 1093.0, + 625.0, + 1093.0, + 646.0, + 1073.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1238.0, + 624.0, + 1261.0, + 624.0, + 1261.0, + 646.0, + 1238.0, + 646.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1339.0, + 640.0, + 1357.0, + 640.0, + 1357.0, + 666.0, + 1339.0, + 666.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 552.0, + 791.0, + 579.0, + 791.0, + 579.0, + 819.0, + 552.0, + 819.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1168.0, + 800.0, + 1189.0, + 800.0, + 1189.0, + 824.0, + 1168.0, + 824.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 368.0, + 846.0, + 631.0, + 846.0, + 631.0, + 887.0, + 368.0, + 887.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 926.0, + 847.0, + 1222.0, + 847.0, + 1222.0, + 884.0, + 926.0, + 884.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1328.75, + 549.5, + 1363.75, + 549.5, + 1363.75, + 570.5, + 1328.75, + 570.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1324.75, + 580.0, + 1403.75, + 580.0, + 1403.75, + 624.5, + 1324.75, + 624.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 383.0, + 972.0, + 469.0, + 972.0, + 469.0, + 998.0, + 383.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 586.0, + 967.0, + 674.0, + 967.0, + 674.0, + 1001.0, + 586.0, + 1001.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 769.0, + 973.0, + 902.0, + 973.0, + 902.0, + 998.0, + 769.0, + 998.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 975.0, + 973.0, + 1105.0, + 973.0, + 1105.0, + 997.0, + 975.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1179.0, + 970.0, + 1309.0, + 970.0, + 1309.0, + 1000.0, + 1179.0, + 1000.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1000.0, + 320.0, + 1000.0, + 320.0, + 1009.0, + 306.0, + 1009.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1365.0, + 985.0, + 1399.0, + 985.0, + 1399.0, + 1010.0, + 1365.0, + 1010.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 306.0, + 1021.0, + 321.0, + 1021.0, + 321.0, + 1032.0, + 306.0, + 1032.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1020.0, + 1402.0, + 1020.0, + 1402.0, + 1048.0, + 1362.0, + 1048.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1064.0, + 322.0, + 1064.0, + 322.0, + 1080.0, + 305.0, + 1080.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 1057.0, + 1402.0, + 1057.0, + 1402.0, + 1085.0, + 1362.0, + 1085.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 305.0, + 1087.0, + 324.0, + 1087.0, + 324.0, + 1102.0, + 305.0, + 1102.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1363.0, + 1095.0, + 1401.0, + 1095.0, + 1401.0, + 1119.0, + 1363.0, + 1119.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 308.0, + 1114.0, + 321.0, + 1114.0, + 321.0, + 1123.0, + 308.0, + 1123.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1364.0, + 1133.0, + 1399.0, + 1133.0, + 1399.0, + 1157.0, + 1364.0, + 1157.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 324.0, + 1177.0, + 1339.0, + 1177.0, + 1339.0, + 1209.0, + 324.0, + 1209.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 598.0, + 901.0, + 1100.0, + 901.0, + 1100.0, + 946.0, + 598.0, + 946.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1260.0, + 1042.0, + 1260.0, + 1042.0, + 1301.0, + 293.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 831.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 831.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1228.0, + 1405.0, + 1228.0, + 1405.0, + 1269.0, + 294.0, + 1269.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1260.0, + 1042.0, + 1260.0, + 1042.0, + 1301.0, + 293.0, + 1301.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1355.0, + 1406.0, + 1355.0, + 1406.0, + 1390.0, + 295.0, + 1390.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1387.0, + 1404.0, + 1387.0, + 1404.0, + 1418.0, + 295.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1416.0, + 1408.0, + 1416.0, + 1408.0, + 1452.0, + 294.0, + 1452.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1447.0, + 1406.0, + 1447.0, + 1406.0, + 1479.0, + 292.0, + 1479.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1478.0, + 1406.0, + 1478.0, + 1406.0, + 1513.0, + 295.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1506.0, + 1407.0, + 1506.0, + 1407.0, + 1545.0, + 292.0, + 1545.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1539.0, + 1403.0, + 1539.0, + 1403.0, + 1573.0, + 294.0, + 1573.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1568.0, + 1406.0, + 1568.0, + 1406.0, + 1603.0, + 294.0, + 1603.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 297.0, + 1598.0, + 1407.0, + 1598.0, + 1407.0, + 1633.0, + 297.0, + 1633.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1628.0, + 1406.0, + 1628.0, + 1406.0, + 1665.0, + 294.0, + 1665.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1659.0, + 398.0, + 1659.0, + 398.0, + 1691.0, + 292.0, + 1691.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1705.0, + 1405.0, + 1705.0, + 1405.0, + 1741.0, + 296.0, + 1741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1737.0, + 629.0, + 1737.0, + 629.0, + 1769.0, + 296.0, + 1769.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 18, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 489, + 557, + 1216, + 557, + 1216, + 1624, + 489, + 1624 + ], + "score": 0.973 + }, + { + "category_id": 4, + "poly": [ + 318, + 1646, + 1374, + 1646, + 1374, + 1681, + 318, + 1681 + ], + "score": 0.914 + }, + { + "category_id": 2, + "poly": [ + 299, + 75, + 813, + 75, + 813, + 105, + 299, + 105 + ], + "score": 0.893 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 866, + 2088, + 866, + 2113, + 834, + 2113 + ], + "score": 0.852 + }, + { + "category_id": 15, + "poly": [ + 630.0, + 573.0, + 712.0, + 573.0, + 712.0, + 597.0, + 630.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 948.0, + 573.0, + 1030.0, + 573.0, + 1030.0, + 597.0, + 948.0, + 597.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 498.0, + 598.0, + 510.0, + 598.0, + 510.0, + 609.0, + 498.0, + 609.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 585.0, + 1207.0, + 585.0, + 1207.0, + 608.0, + 1176.0, + 608.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 626.0, + 515.0, + 626.0, + 515.0, + 641.0, + 497.0, + 641.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 632.0, + 1208.0, + 632.0, + 1208.0, + 655.0, + 1172.0, + 655.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 655.0, + 512.0, + 655.0, + 512.0, + 670.0, + 497.0, + 670.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 684.0, + 514.0, + 684.0, + 514.0, + 699.0, + 497.0, + 699.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 677.0, + 1209.0, + 677.0, + 1209.0, + 704.0, + 1171.0, + 704.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 714.0, + 514.0, + 714.0, + 514.0, + 729.0, + 497.0, + 729.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 727.0, + 1208.0, + 727.0, + 1208.0, + 750.0, + 1172.0, + 750.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 745.0, + 514.0, + 745.0, + 514.0, + 770.0, + 496.0, + 770.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 774.0, + 515.0, + 774.0, + 515.0, + 799.0, + 496.0, + 799.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 774.0, + 1207.0, + 774.0, + 1207.0, + 798.0, + 1172.0, + 798.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 801.0, + 515.0, + 801.0, + 515.0, + 827.0, + 496.0, + 827.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 521.0, + 834.0, + 828.0, + 834.0, + 828.0, + 867.0, + 521.0, + 867.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1041.0, + 835.0, + 1144.0, + 835.0, + 1144.0, + 866.0, + 1041.0, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 829.0, + 870.0, + 871.0, + 870.0, + 871.0, + 905.0, + 829.0, + 905.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 490.0, + 940.0, + 529.0, + 940.0, + 529.0, + 1096.0, + 490.0, + 1096.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 633.0, + 931.0, + 717.0, + 931.0, + 717.0, + 956.0, + 633.0, + 956.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 949.0, + 927.0, + 1034.0, + 927.0, + 1034.0, + 958.0, + 949.0, + 958.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1176.0, + 943.0, + 1209.0, + 943.0, + 1209.0, + 967.0, + 1176.0, + 967.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 988.0, + 1212.0, + 988.0, + 1212.0, + 1015.0, + 1171.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 950.0, + 1038.0, + 962.0, + 1038.0, + 962.0, + 1049.0, + 950.0, + 1049.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1038.0, + 1209.0, + 1038.0, + 1209.0, + 1061.0, + 1174.0, + 1061.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1081.0, + 523.0, + 1081.0, + 523.0, + 1105.0, + 494.0, + 1105.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1083.0, + 1211.0, + 1083.0, + 1211.0, + 1110.0, + 1172.0, + 1110.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1097.0, + 523.0, + 1097.0, + 523.0, + 1122.0, + 496.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 491.0, + 1110.0, + 528.0, + 1110.0, + 528.0, + 1194.0, + 491.0, + 1194.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1040.0, + 1110.0, + 1046.0, + 1110.0, + 1046.0, + 1116.0, + 1040.0, + 1116.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1131.0, + 1211.0, + 1131.0, + 1211.0, + 1156.0, + 1171.0, + 1156.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 518.0, + 1193.0, + 827.0, + 1193.0, + 827.0, + 1225.0, + 518.0, + 1225.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 833.0, + 1190.0, + 1147.0, + 1190.0, + 1147.0, + 1227.0, + 833.0, + 1227.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 1227.0, + 872.0, + 1227.0, + 872.0, + 1264.0, + 828.0, + 1264.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 640.0, + 1289.0, + 721.0, + 1289.0, + 721.0, + 1313.0, + 640.0, + 1313.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 953.0, + 1290.0, + 1032.0, + 1290.0, + 1032.0, + 1314.0, + 953.0, + 1314.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 496.0, + 1297.0, + 539.0, + 1297.0, + 539.0, + 1476.0, + 496.0, + 1476.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1174.0, + 1303.0, + 1207.0, + 1303.0, + 1207.0, + 1325.0, + 1174.0, + 1325.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1171.0, + 1346.0, + 1208.0, + 1346.0, + 1208.0, + 1373.0, + 1171.0, + 1373.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 934.0, + 1381.0, + 946.0, + 1381.0, + 946.0, + 1391.0, + 934.0, + 1391.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 945.0, + 1388.0, + 963.0, + 1388.0, + 963.0, + 1402.0, + 945.0, + 1402.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1394.0, + 1207.0, + 1394.0, + 1207.0, + 1418.0, + 1172.0, + 1418.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1441.0, + 1207.0, + 1441.0, + 1207.0, + 1464.0, + 1172.0, + 1464.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1458.0, + 531.0, + 1458.0, + 531.0, + 1484.0, + 494.0, + 1484.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1032.0, + 1458.0, + 1042.0, + 1458.0, + 1042.0, + 1466.0, + 1032.0, + 1466.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1473.0, + 531.0, + 1473.0, + 531.0, + 1516.0, + 493.0, + 1516.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1172.0, + 1487.0, + 1207.0, + 1487.0, + 1207.0, + 1510.0, + 1172.0, + 1510.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 493.0, + 1505.0, + 531.0, + 1505.0, + 531.0, + 1532.0, + 493.0, + 1532.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 494.0, + 1522.0, + 530.0, + 1522.0, + 530.0, + 1544.0, + 494.0, + 1544.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 516.0, + 1538.0, + 1149.0, + 1538.0, + 1149.0, + 1595.0, + 516.0, + 1595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1590.0, + 872.0, + 1590.0, + 872.0, + 1627.0, + 827.0, + 1627.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.25, + 823.5, + 1055.25, + 823.5, + 1055.25, + 866.0, + 828.25, + 866.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 893.0, + 1557.0, + 910.0, + 1557.0, + 910.0, + 1566.0, + 893.0, + 1566.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 907.0, + 1556.0, + 930.0, + 1556.0, + 930.0, + 1566.5, + 907.0, + 1566.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 920.0, + 1553.5, + 947.0, + 1553.5, + 947.0, + 1568.0, + 920.0, + 1568.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 1644.0, + 1379.0, + 1644.0, + 1379.0, + 1683.0, + 317.0, + 1683.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 828.0, + 2083.0, + 872.0, + 2083.0, + 872.0, + 2123.0, + 828.0, + 2123.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 19, + "width": 1700, + "height": 2200 + } + }, + { + "layout_dets": [ + { + "category_id": 3, + "poly": [ + 305, + 206, + 1398, + 206, + 1398, + 1241, + 305, + 1241 + ], + "score": 0.975 + }, + { + "category_id": 5, + "poly": [ + 317, + 1600, + 1384, + 1600, + 1384, + 1715, + 317, + 1715 + ], + "score": 0.966, + "html": "
Model MNLI-matched (Min/Max/Avg)SQuAD v1.1 (Min/Max/Avg)p-value
RoBERTabase84.7/85.0/84.990.8/91.3/91.10.02
DeBERTabase86.1/86.5/86.391.8/92.2/92.10.01
" + }, + { + "category_id": 1, + "poly": [ + 298, + 1446, + 1404, + 1446, + 1404, + 1572, + 298, + 1572 + ], + "score": 0.963 + }, + { + "category_id": 4, + "poly": [ + 298, + 1264, + 1406, + 1264, + 1406, + 1328, + 298, + 1328 + ], + "score": 0.943 + }, + { + "category_id": 6, + "poly": [ + 352, + 1736, + 1339, + 1736, + 1339, + 1770, + 352, + 1770 + ], + "score": 0.905 + }, + { + "category_id": 2, + "poly": [ + 299, + 76, + 812, + 76, + 812, + 104, + 299, + 104 + ], + "score": 0.885 + }, + { + "category_id": 0, + "poly": [ + 298, + 1389, + 956, + 1389, + 956, + 1422, + 298, + 1422 + ], + "score": 0.814 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.619 + }, + { + "category_id": 2, + "poly": [ + 834, + 2088, + 863, + 2088, + 863, + 2113, + 834, + 2113 + ], + "score": 0.231 + }, + { + "category_id": 1, + "poly": [ + 298, + 1389, + 956, + 1389, + 956, + 1422, + 298, + 1422 + ], + "score": 0.104 + }, + { + "category_id": 13, + "poly": [ + 1221, + 1541, + 1298, + 1541, + 1298, + 1570, + 1221, + 1570 + ], + "score": 0.74, + "latex": "< 0 . 0 5" + }, + { + "category_id": 13, + "poly": [ + 1134, + 1544, + 1151, + 1544, + 1151, + 1572, + 1134, + 1572 + ], + "score": 0.72, + "latex": "\\dot { p }" + }, + { + "category_id": 13, + "poly": [ + 962, + 1540, + 1120, + 1540, + 1120, + 1571, + 962, + 1571 + ], + "score": 0.67, + "latex": "\\mathrm { R o B E R T a } _ { b a s e }" + }, + { + "category_id": 13, + "poly": [ + 511, + 1540, + 672, + 1540, + 672, + 1571, + 511, + 1571 + ], + "score": 0.47, + "latex": "\\mathrm { D e B E R T a } _ { b a s e }" + }, + { + "category_id": 13, + "poly": [ + 1278, + 1617, + 1295, + 1617, + 1295, + 1641, + 1278, + 1641 + ], + "score": 0.41, + "latex": "p" + }, + { + "category_id": 13, + "poly": [ + 626, + 1542, + 672, + 1542, + 672, + 1571, + 626, + 1571 + ], + "score": 0.29, + "latex": ". b a s e" + }, + { + "category_id": 15, + "poly": [ + 418.0, + 227.0, + 490.0, + 227.0, + 490.0, + 248.0, + 418.0, + 248.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 650.0, + 226.0, + 765.0, + 226.0, + 765.0, + 249.0, + 650.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 226.0, + 1016.0, + 226.0, + 1016.0, + 249.0, + 905.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 226.0, + 1268.0, + 226.0, + 1268.0, + 249.0, + 1158.0, + 249.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 250.0, + 328.0, + 250.0, + 328.0, + 260.0, + 317.0, + 260.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1362.0, + 239.0, + 1390.0, + 239.0, + 1390.0, + 258.0, + 1362.0, + 258.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 276.0, + 332.0, + 276.0, + 332.0, + 291.0, + 316.0, + 291.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 282.0, + 1392.0, + 282.0, + 1392.0, + 305.0, + 1357.0, + 305.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 306.0, + 327.0, + 306.0, + 327.0, + 317.0, + 317.0, + 317.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 333.0, + 332.0, + 333.0, + 332.0, + 348.0, + 315.0, + 348.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 328.0, + 1392.0, + 328.0, + 1392.0, + 352.0, + 1356.0, + 352.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 315.0, + 361.0, + 331.0, + 361.0, + 331.0, + 377.0, + 315.0, + 377.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 374.0, + 1392.0, + 374.0, + 1392.0, + 396.0, + 1357.0, + 396.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 316.0, + 392.0, + 331.0, + 392.0, + 331.0, + 413.0, + 316.0, + 413.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 420.0, + 332.0, + 420.0, + 332.0, + 443.0, + 313.0, + 443.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 420.0, + 1391.0, + 420.0, + 1391.0, + 442.0, + 1356.0, + 442.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 447.0, + 332.0, + 447.0, + 332.0, + 472.0, + 313.0, + 472.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 469.0, + 1088.0, + 469.0, + 1088.0, + 513.0, + 332.0, + 513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 509.0, + 873.0, + 509.0, + 873.0, + 546.0, + 827.0, + 546.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 420.0, + 571.0, + 496.0, + 571.0, + 496.0, + 595.0, + 420.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 654.0, + 572.0, + 768.0, + 572.0, + 768.0, + 595.0, + 654.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 905.0, + 569.0, + 1018.0, + 569.0, + 1018.0, + 596.0, + 905.0, + 596.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1156.0, + 571.0, + 1266.0, + 571.0, + 1266.0, + 595.0, + 1156.0, + 595.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 588.0, + 337.0, + 588.0, + 337.0, + 605.0, + 322.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 583.0, + 1390.0, + 583.0, + 1390.0, + 605.0, + 1355.0, + 605.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 322.0, + 602.0, + 338.0, + 602.0, + 338.0, + 620.0, + 322.0, + 620.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 616.0, + 338.0, + 616.0, + 338.0, + 640.0, + 312.0, + 640.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 633.0, + 340.0, + 633.0, + 340.0, + 656.0, + 312.0, + 656.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 886.0, + 633.0, + 896.0, + 633.0, + 896.0, + 643.0, + 886.0, + 643.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 628.0, + 1390.0, + 628.0, + 1390.0, + 651.0, + 1355.0, + 651.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 649.0, + 341.0, + 649.0, + 341.0, + 672.0, + 312.0, + 672.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 897.0, + 645.0, + 909.0, + 645.0, + 909.0, + 657.0, + 897.0, + 657.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1147.0, + 644.0, + 1157.0, + 644.0, + 1157.0, + 653.0, + 1147.0, + 653.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 666.0, + 340.0, + 666.0, + 340.0, + 689.0, + 312.0, + 689.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 927.0, + 673.0, + 938.0, + 673.0, + 938.0, + 686.0, + 927.0, + 686.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 673.0, + 1390.0, + 673.0, + 1390.0, + 695.0, + 1355.0, + 695.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 682.0, + 340.0, + 682.0, + 340.0, + 705.0, + 312.0, + 705.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 699.0, + 341.0, + 699.0, + 341.0, + 722.0, + 312.0, + 722.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 715.0, + 340.0, + 715.0, + 340.0, + 738.0, + 312.0, + 738.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 719.0, + 1390.0, + 719.0, + 1390.0, + 741.0, + 1355.0, + 741.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 313.0, + 733.0, + 338.0, + 733.0, + 338.0, + 753.0, + 313.0, + 753.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 497.0, + 744.0, + 509.0, + 744.0, + 509.0, + 754.0, + 497.0, + 754.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 748.0, + 340.0, + 748.0, + 340.0, + 788.0, + 312.0, + 788.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1018.0, + 761.0, + 1028.0, + 761.0, + 1028.0, + 772.0, + 1018.0, + 772.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1355.0, + 765.0, + 1390.0, + 765.0, + 1390.0, + 787.0, + 1355.0, + 787.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 779.0, + 342.0, + 779.0, + 342.0, + 823.0, + 311.0, + 823.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 326.0, + 817.0, + 1336.0, + 817.0, + 1336.0, + 857.0, + 326.0, + 857.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 854.0, + 873.0, + 854.0, + 873.0, + 891.0, + 827.0, + 891.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 429.0, + 917.0, + 504.0, + 917.0, + 504.0, + 941.0, + 429.0, + 941.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 660.0, + 917.0, + 773.0, + 917.0, + 773.0, + 940.0, + 660.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 910.0, + 917.0, + 1021.0, + 917.0, + 1021.0, + 940.0, + 910.0, + 940.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1158.0, + 917.0, + 1269.0, + 917.0, + 1269.0, + 939.0, + 1158.0, + 939.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 317.0, + 933.0, + 351.0, + 933.0, + 351.0, + 1033.0, + 317.0, + 1033.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 928.0, + 1393.0, + 928.0, + 1393.0, + 997.0, + 1356.0, + 997.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 916.0, + 1005.0, + 929.0, + 1005.0, + 929.0, + 1015.0, + 916.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1167.0, + 1005.0, + 1177.0, + 1005.0, + 1177.0, + 1015.0, + 1167.0, + 1015.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 321.0, + 1019.0, + 347.0, + 1019.0, + 347.0, + 1044.0, + 321.0, + 1044.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 929.0, + 1015.0, + 940.0, + 1015.0, + 940.0, + 1026.0, + 929.0, + 1026.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1018.0, + 1392.0, + 1018.0, + 1392.0, + 1041.0, + 1357.0, + 1041.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 318.0, + 1032.0, + 349.0, + 1032.0, + 349.0, + 1078.0, + 318.0, + 1078.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1196.0, + 1032.0, + 1206.0, + 1032.0, + 1206.0, + 1043.0, + 1196.0, + 1043.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1066.0, + 348.0, + 1066.0, + 348.0, + 1106.0, + 312.0, + 1106.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 996.0, + 1078.0, + 1011.0, + 1078.0, + 1011.0, + 1094.0, + 996.0, + 1094.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1245.0, + 1082.0, + 1258.0, + 1082.0, + 1258.0, + 1093.0, + 1245.0, + 1093.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1357.0, + 1064.0, + 1392.0, + 1064.0, + 1392.0, + 1087.0, + 1357.0, + 1087.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 312.0, + 1099.0, + 348.0, + 1099.0, + 348.0, + 1121.0, + 312.0, + 1121.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1017.0, + 1099.0, + 1032.0, + 1099.0, + 1032.0, + 1114.0, + 1017.0, + 1114.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1114.0, + 348.0, + 1114.0, + 348.0, + 1136.0, + 311.0, + 1136.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1027.0, + 1111.0, + 1039.0, + 1111.0, + 1039.0, + 1122.0, + 1027.0, + 1122.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1356.0, + 1109.0, + 1391.0, + 1109.0, + 1391.0, + 1132.0, + 1356.0, + 1132.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 310.0, + 1127.0, + 349.0, + 1127.0, + 349.0, + 1153.0, + 310.0, + 1153.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 311.0, + 1143.0, + 347.0, + 1143.0, + 347.0, + 1166.0, + 311.0, + 1166.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 332.0, + 1160.0, + 1337.0, + 1160.0, + 1337.0, + 1213.0, + 332.0, + 1213.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 827.0, + 1207.0, + 873.0, + 1207.0, + 873.0, + 1243.0, + 827.0, + 1243.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1084.75, + 471.5, + 1338.75, + 471.5, + 1338.75, + 511.0, + 1084.75, + 511.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 968.0, + 712.0, + 981.0, + 712.0, + 981.0, + 725.0, + 968.0, + 725.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 738.0, + 733.0, + 749.0, + 733.0, + 749.0, + 742.0, + 738.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 990.0, + 733.0, + 999.0, + 733.0, + 999.0, + 742.0, + 990.0, + 742.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1001.0, + 743.0, + 1015.0, + 743.0, + 1015.0, + 758.0, + 1001.0, + 758.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 546.0, + 1177.0, + 569.0, + 1177.0, + 569.0, + 1189.0, + 546.0, + 1189.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 549.75, + 1188.5, + 567.75, + 1188.5, + 567.75, + 1197.5, + 549.75, + 1197.5 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 296.0, + 1264.0, + 1408.0, + 1264.0, + 1408.0, + 1300.0, + 296.0, + 1300.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1293.0, + 894.0, + 1293.0, + 894.0, + 1329.0, + 295.0, + 1329.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 354.0, + 1734.0, + 1343.0, + 1734.0, + 1343.0, + 1774.0, + 354.0, + 1774.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 73.0, + 815.0, + 73.0, + 815.0, + 108.0, + 295.0, + 108.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1388.0, + 957.0, + 1388.0, + 957.0, + 1425.0, + 295.0, + 1425.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 830.0, + 2085.0, + 868.0, + 2085.0, + 868.0, + 2124.0, + 830.0, + 2124.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 293.0, + 1447.0, + 1404.0, + 1447.0, + 1404.0, + 1482.0, + 293.0, + 1482.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1480.0, + 1406.0, + 1480.0, + 1406.0, + 1513.0, + 294.0, + 1513.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 294.0, + 1510.0, + 1402.0, + 1510.0, + 1402.0, + 1543.0, + 294.0, + 1543.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 292.0, + 1537.0, + 510.0, + 1537.0, + 510.0, + 1576.0, + 292.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 673.0, + 1537.0, + 961.0, + 1537.0, + 961.0, + 1576.0, + 673.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1121.0, + 1537.0, + 1133.0, + 1537.0, + 1133.0, + 1576.0, + 1121.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1152.0, + 1537.0, + 1220.0, + 1537.0, + 1220.0, + 1576.0, + 1152.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 1299.0, + 1537.0, + 1317.0, + 1537.0, + 1317.0, + 1576.0, + 1299.0, + 1576.0 + ], + "score": 1.0, + "text": "" + }, + { + "category_id": 15, + "poly": [ + 295.0, + 1388.0, + 957.0, + 1388.0, + 957.0, + 1425.0, + 295.0, + 1425.0 + ], + "score": 1.0, + "text": "" + } + ], + "page_info": { + "page_no": 20, + "width": 1700, + "height": 2200 + } + } +] \ No newline at end of file diff --git a/vlm/dev/0YXmOFLb1wQ/0.png b/vlm/dev/0YXmOFLb1wQ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..c92b7d681ffc1ddf0db381a82bad0e2e3ef4d182 --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9568465a0ad5362658be3c8e5ef3a2f0407e917a0a358a94f52abb4c4020c47 +size 507244 diff --git a/vlm/dev/0YXmOFLb1wQ/1.png b/vlm/dev/0YXmOFLb1wQ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..f6aa471ccc124ca83bd5f0eea3ab695fef5b3d0f --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d5f58489cfd40fa93688687eff70a848960eaaf0890415aadb5ba375347e84c +size 540129 diff --git a/vlm/dev/0YXmOFLb1wQ/10.png b/vlm/dev/0YXmOFLb1wQ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4fd62f3fa3dae13e7a943cff0958bc66b87231f0 --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b3119c30ccf3ca50b9dd1097b5178cfab196f14488474c6abec9a1d1e5fdc67d +size 552194 diff --git a/vlm/dev/0YXmOFLb1wQ/11.png b/vlm/dev/0YXmOFLb1wQ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..74149ee672fd332cd423a3068ca6d183e4895eda --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77f37581ac3a4d556cea2a70a514b5fee7cceda5deeb78785f5becdac8d4bcde +size 138646 diff --git a/vlm/dev/0YXmOFLb1wQ/12.png b/vlm/dev/0YXmOFLb1wQ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8005f8780409df36a3ddfbfa19af37e497aeb51b --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff7c8da639608cbcbd0e306325eb58228d510646a76799e56e1594bde68f8ce1 +size 429832 diff --git a/vlm/dev/0YXmOFLb1wQ/13.png b/vlm/dev/0YXmOFLb1wQ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..c13ba0c0c359ba640e50297a43d7c83226ceb036 --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb24259fa1cc5a1e5abe4b2c0718a680712e51fa1e1d5cb22f9d9a7470eb8e3 +size 358193 diff --git a/vlm/dev/0YXmOFLb1wQ/14.png b/vlm/dev/0YXmOFLb1wQ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..efee0c569df075241b4005c82433965b353a00d6 --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f77acbaba7507729c227c2404814d1cad0ebe8af501a18a2be44101e1f22ac89 +size 267310 diff --git a/vlm/dev/0YXmOFLb1wQ/15.png b/vlm/dev/0YXmOFLb1wQ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d64a7f4e11edf8d90a2ec508509261256298ef2e --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a12c685053760aa68d3e42dd6926bc2050504655843c44e82f5a0178913b1de2 +size 342635 diff --git a/vlm/dev/0YXmOFLb1wQ/2.png b/vlm/dev/0YXmOFLb1wQ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1b977d577fdad0d2a753bfe1f334300379ebf49e --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2d57e20586c23c3410ed05077dbb26ab05dbf136d15ef35a7d1064a19d34b40 +size 512812 diff --git a/vlm/dev/0YXmOFLb1wQ/3.png b/vlm/dev/0YXmOFLb1wQ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e45edff67ba9d8099f2cfa95cc63f366291b8e6e --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83f86d4b7f60de1d5926965ce64870ffb38abd70cd30fdadd9011d57758e9deb +size 557540 diff --git a/vlm/dev/0YXmOFLb1wQ/4.png b/vlm/dev/0YXmOFLb1wQ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..094ea92875fe0ee6db1a31a9d671d14c6682156f --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc55e0c12fa2247ef67d6027e089bff16b5e4f5d12713054923c0319cffeaab6 +size 526938 diff --git a/vlm/dev/0YXmOFLb1wQ/5.png b/vlm/dev/0YXmOFLb1wQ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b50e30521f785da4a94133d259a2ab15390138ae --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9f74ea394bf6fb81b8dd2f8807f29fa26b228c9fa3918baf5039ac2b14a1d792 +size 507909 diff --git a/vlm/dev/0YXmOFLb1wQ/6.png b/vlm/dev/0YXmOFLb1wQ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e02ca947208395cc570edcbf71036a51952f7c33 --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ab9fc537295ef8904e45e43d2d74c0af32a493ab6a7978aca16e635380d5e30c +size 489256 diff --git a/vlm/dev/0YXmOFLb1wQ/7.png b/vlm/dev/0YXmOFLb1wQ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ce819664d56b2bc6d51f25abfe397e2c7bec8d6a --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7230021de17173d9603f8e2a8400709305e7fd92211dee6694ea20df1153c0fb +size 537916 diff --git a/vlm/dev/0YXmOFLb1wQ/8.png b/vlm/dev/0YXmOFLb1wQ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..25025a75d4ca193e9f2e54d4f9244beee17aa1d3 --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431c1b8cb17206f105b349c63f188e887eff9fc223ad1f3924695f026e2f5919 +size 583781 diff --git a/vlm/dev/0YXmOFLb1wQ/9.png b/vlm/dev/0YXmOFLb1wQ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..db450d600d890a33a10adb36a6d52dc0183c2dba --- /dev/null +++ b/vlm/dev/0YXmOFLb1wQ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:46ad072f8dcaed06c34f441b1b42dd9445e59e8c9594b429470e52a9f6252ac0 +size 527240 diff --git a/vlm/dev/3SLW-YIw7tX/0.png b/vlm/dev/3SLW-YIw7tX/0.png new file mode 100644 index 0000000000000000000000000000000000000000..27cbb4069e480a83096a4d2de3a766983d877815 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce9d7c7847a19b94f911e07f5cbf246e191cf5f0e7d30069137bc9b40a2fedb3 +size 442897 diff --git a/vlm/dev/3SLW-YIw7tX/1.png b/vlm/dev/3SLW-YIw7tX/1.png new file mode 100644 index 0000000000000000000000000000000000000000..423b7dd365e370b786c326f8697e76f7ef637179 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d829701f6839fcbdd22c2920e79ea1265d653dcedc237dc0b9d185460634c92d +size 629880 diff --git a/vlm/dev/3SLW-YIw7tX/10.png b/vlm/dev/3SLW-YIw7tX/10.png new file mode 100644 index 0000000000000000000000000000000000000000..a17f43883b7bf4dd53e4272707b340dd9092adc8 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:524fa77fe710015b86840f478db75890f6e06b4ac0944ea1d9be056f299e4186 +size 626448 diff --git a/vlm/dev/3SLW-YIw7tX/11.png b/vlm/dev/3SLW-YIw7tX/11.png new file mode 100644 index 0000000000000000000000000000000000000000..d4c38c7af7e5a47a2cadc26dba26d6a81f63e0e0 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca4a9e46ffa21a5b7c91c40a8ec3eb97cdc69f6b2810ffae9da53a6f0da68c04 +size 631874 diff --git a/vlm/dev/3SLW-YIw7tX/12.png b/vlm/dev/3SLW-YIw7tX/12.png new file mode 100644 index 0000000000000000000000000000000000000000..d44dee1c4c7d588540624b396b7a19179fb24dd6 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f02cace1b117f5fb94ab24a19d76d328213e3705033a993202307af3829398a5 +size 625953 diff --git a/vlm/dev/3SLW-YIw7tX/13.png b/vlm/dev/3SLW-YIw7tX/13.png new file mode 100644 index 0000000000000000000000000000000000000000..d435f6a044685f9ec85d3f808a904316172513cf --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d21212b5f54acfb793e6565c4b8d18ebc221ee959f221a8f2e416d60a48350a +size 448757 diff --git a/vlm/dev/3SLW-YIw7tX/14.png b/vlm/dev/3SLW-YIw7tX/14.png new file mode 100644 index 0000000000000000000000000000000000000000..2fd758aacfd934123914cb3bfe33dff918c65402 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e2b40da12d4194c8ce567f6019c2a7d2c78271c2b7e2f88a72fabcd710854b2c +size 332435 diff --git a/vlm/dev/3SLW-YIw7tX/2.png b/vlm/dev/3SLW-YIw7tX/2.png new file mode 100644 index 0000000000000000000000000000000000000000..1513c1da7d8405cce20f876a0b191ffded00b2c0 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3feec395c15a469a89306b53e41357ad63424cc188daa6b2f48d3bc4c0019a7 +size 557562 diff --git a/vlm/dev/3SLW-YIw7tX/3.png b/vlm/dev/3SLW-YIw7tX/3.png new file mode 100644 index 0000000000000000000000000000000000000000..5951ec28709dd6b6d4205b45c7bdab2c72d2a180 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba227c935e0dcc40fbb4a1db909002ad8db2146119478419b013fe5b3db7f727 +size 501640 diff --git a/vlm/dev/3SLW-YIw7tX/4.png b/vlm/dev/3SLW-YIw7tX/4.png new file mode 100644 index 0000000000000000000000000000000000000000..50a073e514a899093f41fa34201eaa4d9b59d2fd --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4baeb06c54c6b93faf374124a18e1d32db15ee55602f25b10e9a698f46b11c18 +size 589823 diff --git a/vlm/dev/3SLW-YIw7tX/5.png b/vlm/dev/3SLW-YIw7tX/5.png new file mode 100644 index 0000000000000000000000000000000000000000..3d51d0f50879d1cc70ccdb8a3c98f24597b1712c --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa4a0557bcd47fcbd5cdbdb6c29cc3a17dbe8f97e614cf747f349c4519b0244b +size 600347 diff --git a/vlm/dev/3SLW-YIw7tX/6.png b/vlm/dev/3SLW-YIw7tX/6.png new file mode 100644 index 0000000000000000000000000000000000000000..3dbfc4b0b71c8d5de929f9eb36d48a2593fad05f --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd0587cffd4ca02b8565c9e2950cd5678a6513cc27837af591f159bbac8ce5ce +size 568940 diff --git a/vlm/dev/3SLW-YIw7tX/7.png b/vlm/dev/3SLW-YIw7tX/7.png new file mode 100644 index 0000000000000000000000000000000000000000..629f2e1cfcee04f3b731bac50c5994e41b4d1825 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:412ecca771a46988a915e70dab1c658f2fe3dfda199fcc97833faa2cce049c58 +size 670988 diff --git a/vlm/dev/3SLW-YIw7tX/8.png b/vlm/dev/3SLW-YIw7tX/8.png new file mode 100644 index 0000000000000000000000000000000000000000..b4a02ea4c8f25361dc17f1b1e08960b2d1a3cba2 --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1336ccc4a61379b033971927be866175a4027ed756f3974b155039d7db3a4737 +size 558114 diff --git a/vlm/dev/3SLW-YIw7tX/9.png b/vlm/dev/3SLW-YIw7tX/9.png new file mode 100644 index 0000000000000000000000000000000000000000..401bbd1e10e20c7dc79e35bd0ca29030f861285a --- /dev/null +++ b/vlm/dev/3SLW-YIw7tX/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dadfb17bb006bdf8e81f0942f152c9d2cece92709b438c0f67f9548fece42d08 +size 567354 diff --git a/vlm/dev/4WgqjmYacAf/0.png b/vlm/dev/4WgqjmYacAf/0.png new file mode 100644 index 0000000000000000000000000000000000000000..179069946ae792a5ec725a4610f9416273d580c0 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:be0a5609a36c5bf3cf037fdd40695ef2840721f6553daac8ea2e0953923a43a1 +size 486356 diff --git a/vlm/dev/4WgqjmYacAf/1.png b/vlm/dev/4WgqjmYacAf/1.png new file mode 100644 index 0000000000000000000000000000000000000000..2c8a39c26312d303e4c33071bd0b67640b0426c8 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7fb75c641538a725b48e8aa6580c0870fc8ef19c1598ba1192bf757efcaaf1dc +size 639339 diff --git a/vlm/dev/4WgqjmYacAf/10.png b/vlm/dev/4WgqjmYacAf/10.png new file mode 100644 index 0000000000000000000000000000000000000000..b6a150de0945257a1a6f8e6367cdda2ec3c816a7 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d19a807c96cd42eaff0f23aafd4a518d14f9306a70dcc909ff87294b8ca8099 +size 603642 diff --git a/vlm/dev/4WgqjmYacAf/11.png b/vlm/dev/4WgqjmYacAf/11.png new file mode 100644 index 0000000000000000000000000000000000000000..0cb87218031e2f6d02374c25dd883b737e68d427 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c56799ae6f79796c20475999908482bc3fb795b32dc32d54b94760bb59b38662 +size 588399 diff --git a/vlm/dev/4WgqjmYacAf/12.png b/vlm/dev/4WgqjmYacAf/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5874ae64edb7bc0f47084ea31bac5d9ef61c9e6d --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67e3588224d62238ceee49b28929bcd1c599f6d2e8b22f124033d1f5c74366a7 +size 229804 diff --git a/vlm/dev/4WgqjmYacAf/2.png b/vlm/dev/4WgqjmYacAf/2.png new file mode 100644 index 0000000000000000000000000000000000000000..872370e2f070923f5f84da7905c00a44f9e64dd0 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ee529587422b823d7f49d195f23061819de7326eaafeaffac11dfea392d89f3 +size 625312 diff --git a/vlm/dev/4WgqjmYacAf/3.png b/vlm/dev/4WgqjmYacAf/3.png new file mode 100644 index 0000000000000000000000000000000000000000..3df38ef46eae935c835adc120f34fcb6133b8bb8 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cb78092c5fccfcd9e65c864affaa4ebd0e488a3244c7c8f9c2a59a2a465964ef +size 478567 diff --git a/vlm/dev/4WgqjmYacAf/4.png b/vlm/dev/4WgqjmYacAf/4.png new file mode 100644 index 0000000000000000000000000000000000000000..4e0136223a5014e5ae6e468ed1e4cbc07de679ff --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f4e358cc558e834f3f03f8e386004947ba47071a5ea2b88f51f36e816178b11f +size 434940 diff --git a/vlm/dev/4WgqjmYacAf/5.png b/vlm/dev/4WgqjmYacAf/5.png new file mode 100644 index 0000000000000000000000000000000000000000..a0834e346ca60f3551a7daf2aee5b82c37138956 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee0c8771eff90c66f343a94c2620a504af8301652e78d4d86acc37bfc96a3bb5 +size 589301 diff --git a/vlm/dev/4WgqjmYacAf/6.png b/vlm/dev/4WgqjmYacAf/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c7e02ee4bd8f3580d83c0fa0310e5430f30049cf --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:804c0a10b80f26e8e8e20bc4fb92babc35de8362c6e909ef69738e070acfb721 +size 507906 diff --git a/vlm/dev/4WgqjmYacAf/7.png b/vlm/dev/4WgqjmYacAf/7.png new file mode 100644 index 0000000000000000000000000000000000000000..c4e6f1e7a6db2109cf00a9284d4da2e074253ce8 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6adefa4e96fea9d177d6c874d788a1715e22c5b80c198914943e64e5f6ce4bd +size 714789 diff --git a/vlm/dev/4WgqjmYacAf/8.png b/vlm/dev/4WgqjmYacAf/8.png new file mode 100644 index 0000000000000000000000000000000000000000..ccef53687c4c8e0b825c842516853941d08f3c7f --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ffa113dc5bb8202d5ae083d59f4431536e1841487b96cfe6806a42a631df096 +size 751372 diff --git a/vlm/dev/4WgqjmYacAf/9.png b/vlm/dev/4WgqjmYacAf/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5601e162a836679cff7ed435348e74f7e618b8b0 --- /dev/null +++ b/vlm/dev/4WgqjmYacAf/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:812f3a8c57fc3e17cc02b08c171a30776e7fe8f610f02b4f518cc7c34b71674f +size 625216 diff --git a/vlm/dev/5xEgrl_5FAJ/0.png b/vlm/dev/5xEgrl_5FAJ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..3712946cfc7afdd5a9330109ccb6f98cde342452 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:618aa4edf11ed8b5d9213781e623112185ce9b2fae75d7866e1141db478f8479 +size 600373 diff --git a/vlm/dev/5xEgrl_5FAJ/1.png b/vlm/dev/5xEgrl_5FAJ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..76d6a87369af3af6cd69929a9654491164715d2d --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:af3c4aec59d14764c7954cb2d3d41a139034f3fac928812c5896fe120d8cd1c3 +size 606360 diff --git a/vlm/dev/5xEgrl_5FAJ/10.png b/vlm/dev/5xEgrl_5FAJ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..1f1e2bf9278466bd17c27d2765d37bd6448eb06d --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d881bafe92ccc60597d513c13c67cdad03a9a334352a637d8c568947ce3adb +size 499376 diff --git a/vlm/dev/5xEgrl_5FAJ/11.png b/vlm/dev/5xEgrl_5FAJ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..9a84a8766f41a65ed1af8b27db8b1ae2277534da --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3063770b0bc09342b5340d6c64a628e0c4c311f075d7aef0a7950f1cff975bf1 +size 378274 diff --git a/vlm/dev/5xEgrl_5FAJ/12.png b/vlm/dev/5xEgrl_5FAJ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..e48077045ea164a986c2aaa7067f1b7f01cf76dc --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ada2bf7770e6ad8c4bf8b4cacd08b23b1fa5e92a758d5e0efd54cc1e4236398 +size 300666 diff --git a/vlm/dev/5xEgrl_5FAJ/13.png b/vlm/dev/5xEgrl_5FAJ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..4b2cc1a0c2feaef8cfb8eb0b805fbef18cb2e6b2 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba4a5a875145bc079d567e3abe1a4c26f1c753a52312cc90c6a478a7276b9d02 +size 253086 diff --git a/vlm/dev/5xEgrl_5FAJ/14.png b/vlm/dev/5xEgrl_5FAJ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c0157006be30b95089920a06d120034031cfe57f --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a956aa758e6e2d640b534bf56b46e49ff765d8e4f78d1f70056e1aeaa982aadf +size 339406 diff --git a/vlm/dev/5xEgrl_5FAJ/15.png b/vlm/dev/5xEgrl_5FAJ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..559c2c664d110113c979bd946d6219a685df1d6b --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7cb4688a3130bdecab8a13e3b32e3556b8f38f2c19a33479a343f56f7919c215 +size 304893 diff --git a/vlm/dev/5xEgrl_5FAJ/16.png b/vlm/dev/5xEgrl_5FAJ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e354357ed0c7d6cc12cf0874b285d32e3e2e4b8e --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4bd981bd86dbb4e4d9cce70090ccf633058ce47d65f79ccf1994d9af7706565a +size 371006 diff --git a/vlm/dev/5xEgrl_5FAJ/17.png b/vlm/dev/5xEgrl_5FAJ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..d96355f56e78b637fc1f4bf9849c349c6842e0b4 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92dd2144d3b3d20b12a041389a1b45097b781a3e7fc3d91746413405626940df +size 393533 diff --git a/vlm/dev/5xEgrl_5FAJ/18.png b/vlm/dev/5xEgrl_5FAJ/18.png new file mode 100644 index 0000000000000000000000000000000000000000..954ccac23adbd096e45c2be79c6936c43e50611d --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1c1d07e199b07935b7d50c7e6b075e217510fc505f0285adcbea29e3bbdfe0bc +size 463312 diff --git a/vlm/dev/5xEgrl_5FAJ/19.png b/vlm/dev/5xEgrl_5FAJ/19.png new file mode 100644 index 0000000000000000000000000000000000000000..9f1dc7b3810a8d152a91d388145051ba314b8efc --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0df12d79b72224bbc266970bcbb34d7e73c59fbc07a9235dca62de0006ab31b5 +size 515149 diff --git a/vlm/dev/5xEgrl_5FAJ/2.png b/vlm/dev/5xEgrl_5FAJ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4bebf1d0ad99315ecafe00a02063bf0b1f5db311 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1fea7c6cf06f3bed7ba78ed0ca5fee080df6f59fd909eb75501a7719e21d6e5e +size 516521 diff --git a/vlm/dev/5xEgrl_5FAJ/20.png b/vlm/dev/5xEgrl_5FAJ/20.png new file mode 100644 index 0000000000000000000000000000000000000000..b40128bcb847c481691f730130a5b122613e9c2a --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:58b9cb92060dfcd397f6469704eafeacce9daf8ef7af13a7dcb32bab290259a6 +size 438309 diff --git a/vlm/dev/5xEgrl_5FAJ/21.png b/vlm/dev/5xEgrl_5FAJ/21.png new file mode 100644 index 0000000000000000000000000000000000000000..e79fa91f85483557d7418ce9ac1828a9f55a97e6 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79f76235e2315690d8b0ab8a7f573edcb2c89799a042783f11a59c480a825be1 +size 529752 diff --git a/vlm/dev/5xEgrl_5FAJ/22.png b/vlm/dev/5xEgrl_5FAJ/22.png new file mode 100644 index 0000000000000000000000000000000000000000..90fb8d42fa347da67c2f0ce9b3e7ef25776f629f --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6785953818966e7bf7c6236e2391ff7298c2df99f9ab64b07a0268daa6bad124 +size 221507 diff --git a/vlm/dev/5xEgrl_5FAJ/23.png b/vlm/dev/5xEgrl_5FAJ/23.png new file mode 100644 index 0000000000000000000000000000000000000000..44a41ef238375e713de19be7a1428a6a134c16b3 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:439c37931122fde6e652db469d265c0ab553ea96e0e7ab42c1e36ca135894f7e +size 2196081 diff --git a/vlm/dev/5xEgrl_5FAJ/3.png b/vlm/dev/5xEgrl_5FAJ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e2318bed64958e6492dd51bf1e07a4c1b20c9b9e --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b6f5a284b02406fb541c356c7706c4d07168db5aeb101b8b2ddc7095d90782f +size 540140 diff --git a/vlm/dev/5xEgrl_5FAJ/4.png b/vlm/dev/5xEgrl_5FAJ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..a565ba81b301747e966b42f6667a0e623112fb8f --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:193f8b9be013e3229304760f47673c38fec87db89a4f23e2e2466cfd805a3655 +size 707921 diff --git a/vlm/dev/5xEgrl_5FAJ/5.png b/vlm/dev/5xEgrl_5FAJ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..56f11c128123f5eafa2a5a247364e7204e33cfcc --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd2e8b74df3bc46124da36dbae3deca3111a2ec95e97848fa706cb6ea0792af5 +size 552829 diff --git a/vlm/dev/5xEgrl_5FAJ/6.png b/vlm/dev/5xEgrl_5FAJ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ca3d9e01de95d320d69ab2c8aee67e2fedb7be08 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1840a9fdca23a33d50c8dc789748b638dd9604b80c816041412bdbc5b75100df +size 663573 diff --git a/vlm/dev/5xEgrl_5FAJ/7.png b/vlm/dev/5xEgrl_5FAJ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3a3c448a0f154d435686874973192c4992024deb --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37d7b573d36d35255da4d0f7f700c95f187fa8595efae014c3a75b1ca7c6f546 +size 647110 diff --git a/vlm/dev/5xEgrl_5FAJ/8.png b/vlm/dev/5xEgrl_5FAJ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..8b92b0cf6b49dc9ea7e741e8a0c8fe16d6df7208 --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf9e082e44b122f71d019fe5b7509a4db3db54d9b4a0b783843fe8110967c4f4 +size 691166 diff --git a/vlm/dev/5xEgrl_5FAJ/9.png b/vlm/dev/5xEgrl_5FAJ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..310e015986ea1db554cc365dc3a8247b916c1efa --- /dev/null +++ b/vlm/dev/5xEgrl_5FAJ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:13e1beb69b4a9ad28407362714d6fc42e1dc3818947a12ad04760f592a74fc19 +size 516628 diff --git a/vlm/dev/6res1KC1Z3Z/0.png b/vlm/dev/6res1KC1Z3Z/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a4454009e04c633843d9c5b731c275bf8026c259 --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:861bdf7717988013c02c64139cf65ea47b643145c3f5db9dd3a1aa4edb753cd8 +size 432894 diff --git a/vlm/dev/6res1KC1Z3Z/1.png b/vlm/dev/6res1KC1Z3Z/1.png new file mode 100644 index 0000000000000000000000000000000000000000..0e6b8f0743a20919d3c555caca9d8a2d0d41efea --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5eb66188eecb61056d7f1d33a41ec66064f15cec2e1dbf3aea3916f15dfd205 +size 654808 diff --git a/vlm/dev/6res1KC1Z3Z/10.png b/vlm/dev/6res1KC1Z3Z/10.png new file mode 100644 index 0000000000000000000000000000000000000000..5af28c9e386def7d3d18b0bc9238fe615435f217 --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79323d5a582f2edea891df55a1d6fa5cd1708fddedfbac03867b578cd67bf496 +size 487515 diff --git a/vlm/dev/6res1KC1Z3Z/2.png b/vlm/dev/6res1KC1Z3Z/2.png new file mode 100644 index 0000000000000000000000000000000000000000..14fb44f55def7f2a71879662d4d3a4ebe4420d84 --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33bebec9514d9d066d1259edadaf9261eeb2021ad6f4fa2a48e0e69c70dd6735 +size 441100 diff --git a/vlm/dev/6res1KC1Z3Z/3.png b/vlm/dev/6res1KC1Z3Z/3.png new file mode 100644 index 0000000000000000000000000000000000000000..28e42150abc5b6aef76b12d7078a76eea2901eb5 --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6214829ac086798ddf38509fdba3ae8e2d0472fa02a2c12dc87008df3ec3d27 +size 564522 diff --git a/vlm/dev/6res1KC1Z3Z/4.png b/vlm/dev/6res1KC1Z3Z/4.png new file mode 100644 index 0000000000000000000000000000000000000000..87cc90ae6bbf7693f1bdc0621aea077bf2a80a11 --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:347c3e6e8c0675b133880ef678cee620e019d51603d519b5374f53a5e2b8fd60 +size 519859 diff --git a/vlm/dev/6res1KC1Z3Z/5.png b/vlm/dev/6res1KC1Z3Z/5.png new file mode 100644 index 0000000000000000000000000000000000000000..348655b0775da917d4f06d5285d732fd651ed7af --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93327260d810487d5d24cc88d1c31bd21cf3fc597858281739b24a2aa8713a09 +size 603139 diff --git a/vlm/dev/6res1KC1Z3Z/6.png b/vlm/dev/6res1KC1Z3Z/6.png new file mode 100644 index 0000000000000000000000000000000000000000..f07135530ea5dfa68cef139d0bef41669c34dcb6 --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d1c3faeada32c4f72ee446162f656e9b59310deff8261875be8e51654321c20 +size 594062 diff --git a/vlm/dev/6res1KC1Z3Z/7.png b/vlm/dev/6res1KC1Z3Z/7.png new file mode 100644 index 0000000000000000000000000000000000000000..b9bc3b2559c157c565fe1a8bb15c3d058cc5ad9e --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c8816ee957b85bedab957e674198405c887d6670e459ad14f4ae5087b993242d +size 671684 diff --git a/vlm/dev/6res1KC1Z3Z/8.png b/vlm/dev/6res1KC1Z3Z/8.png new file mode 100644 index 0000000000000000000000000000000000000000..37e42b1994070f0f217df06dffb752913cc257da --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:16fbf6101e18445db5e924f179a4dbc00e5138da5ca15e94bb11613b73e0b61d +size 512666 diff --git a/vlm/dev/6res1KC1Z3Z/9.png b/vlm/dev/6res1KC1Z3Z/9.png new file mode 100644 index 0000000000000000000000000000000000000000..eb8121b2d0fb6aeb2d913fbe3bf2a1082baed127 --- /dev/null +++ b/vlm/dev/6res1KC1Z3Z/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:938a00f1506aae861d6424c375b2198a469b946952bb45be6b5b9e08617581d5 +size 551269 diff --git a/vlm/dev/COZDy0WYGg/12.png b/vlm/dev/COZDy0WYGg/12.png new file mode 100644 index 0000000000000000000000000000000000000000..8e5c98acab7db299adf55544c84760ca01975866 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a08527a8570047b2894a88d4a7890a02f6e59146633127dc7f6c5749d7c93f84 +size 574007 diff --git a/vlm/dev/COZDy0WYGg/13.png b/vlm/dev/COZDy0WYGg/13.png new file mode 100644 index 0000000000000000000000000000000000000000..a2b32f1026fcab99c76d80075c95436d5d0ee55e --- /dev/null +++ b/vlm/dev/COZDy0WYGg/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7d2ad5c8003bc01fcc292fd842743853300eb4b4f44da70f5e5f6715eb107f6c +size 649442 diff --git a/vlm/dev/COZDy0WYGg/16.png b/vlm/dev/COZDy0WYGg/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1ae09285080fc84f2f38531aaf0eaab4031438c1 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a07445e6863a3021841a0adb10f81e3856024d029cd39f34cfff3549d3bda1b +size 478254 diff --git a/vlm/dev/COZDy0WYGg/18.png b/vlm/dev/COZDy0WYGg/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b6c67f771f0ce370f5838275a5369fdc6a5943fc --- /dev/null +++ b/vlm/dev/COZDy0WYGg/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01069e7165435c4f8c1467c2fd6261f78c8b7bade8f192b2568807dd6e641635 +size 470484 diff --git a/vlm/dev/COZDy0WYGg/19.png b/vlm/dev/COZDy0WYGg/19.png new file mode 100644 index 0000000000000000000000000000000000000000..dea7dee7c601f29e4e0dc2981e0a3348b740b2a1 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b308e14488e29ea0e6872da36c65db408b472b14b205eb8fc26c0fe25c72326 +size 540628 diff --git a/vlm/dev/COZDy0WYGg/20.png b/vlm/dev/COZDy0WYGg/20.png new file mode 100644 index 0000000000000000000000000000000000000000..18545c3b0e5c7cdc67bacd9e512dbcff4f432233 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae482d94cb6006db5746521de4a49f14904669862f054abe40f734d3a175e50 +size 470927 diff --git a/vlm/dev/COZDy0WYGg/22.png b/vlm/dev/COZDy0WYGg/22.png new file mode 100644 index 0000000000000000000000000000000000000000..97f1fdddb2e435958d96f924685278aeeb19f434 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f693c93f2459cd32ed6c040383e013c3e2851f2674083e5eb5190b962df59a13 +size 704821 diff --git a/vlm/dev/COZDy0WYGg/4.png b/vlm/dev/COZDy0WYGg/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cb6d44dc9de8091a2370953ffa9a915ba5128be4 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ea1cfa2d087d80228728358c93148f6cf289457f1d86d3ef8984e1fd172d11a7 +size 615346 diff --git a/vlm/dev/COZDy0WYGg/7.png b/vlm/dev/COZDy0WYGg/7.png new file mode 100644 index 0000000000000000000000000000000000000000..3a96d557fda2487d86984aa4508f1afd2ad30ee0 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5fb4fdbbb0d1c4ac43335dfaea9093c0ea35ad3e6a2d49314b46cf9b56ed12a +size 629614 diff --git a/vlm/dev/COZDy0WYGg/8.png b/vlm/dev/COZDy0WYGg/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f22e339e53c5c3ba2caa2a512b83bce6f9f79302 --- /dev/null +++ b/vlm/dev/COZDy0WYGg/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a4d3b8351efe844dcdb3ee230a0f705058d268f16abca6bfb2e1bd395c837862 +size 611665 diff --git a/vlm/dev/FQOC5u-1egI/0.png b/vlm/dev/FQOC5u-1egI/0.png new file mode 100644 index 0000000000000000000000000000000000000000..27258cc1f8da7efa85e54e239859eb7ca1d4872c --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ced13f25186abad28070b2585f02c2cb82e122c4d1f4e8253abbd1a0d2e41392 +size 499667 diff --git a/vlm/dev/FQOC5u-1egI/1.png b/vlm/dev/FQOC5u-1egI/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dce834adc2347eec8d93c58d1a9dfeea1435d88f --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7b09dc04701f91e2e81f3324729adc9311a3b1544dc39f74a0a7690db81ee33d +size 662471 diff --git a/vlm/dev/FQOC5u-1egI/10.png b/vlm/dev/FQOC5u-1egI/10.png new file mode 100644 index 0000000000000000000000000000000000000000..50da513ec7fdf04ebfae988040080648fbc11c8c --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48006dd6f45b7c566a2ac6e09e060048ac3ac000599900f89632f9a74dae045b +size 565019 diff --git a/vlm/dev/FQOC5u-1egI/11.png b/vlm/dev/FQOC5u-1egI/11.png new file mode 100644 index 0000000000000000000000000000000000000000..80895115e68043e2ebc564cbd3709c462437624a --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:99e2944dc0c0a7e2e626c15adb34d256f7fcea8bcdf15178f7c3ad5dd7681bba +size 540088 diff --git a/vlm/dev/FQOC5u-1egI/12.png b/vlm/dev/FQOC5u-1egI/12.png new file mode 100644 index 0000000000000000000000000000000000000000..fed952d3654ea0c09672d70aceb453ceb54b1487 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0747d03cfa2abfad1d946d84d0e1562a5601db360d7777493a545b54120042a1 +size 283131 diff --git a/vlm/dev/FQOC5u-1egI/13.png b/vlm/dev/FQOC5u-1egI/13.png new file mode 100644 index 0000000000000000000000000000000000000000..0589293083cc3b9e0f7242c12edebcc4b4b4a8da --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c5ae612e78c809c6663147a5f3139b6f62fdc5c68389cbb9e356b4fe8802c515 +size 574097 diff --git a/vlm/dev/FQOC5u-1egI/14.png b/vlm/dev/FQOC5u-1egI/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3ce70d569b44fbe92047f727e66c4aadfcc778e2 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e01aff3fa81594cacc5af94d918793737bc110966664aa1f160b63e48d0f99b +size 501673 diff --git a/vlm/dev/FQOC5u-1egI/15.png b/vlm/dev/FQOC5u-1egI/15.png new file mode 100644 index 0000000000000000000000000000000000000000..81d99445960a1573adf1eefdf1bff46c54af5941 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3ca617d99c3ef118b58c599453f9bd0891a95fbe122b2cfcb59fbc182e2f2bd +size 315225 diff --git a/vlm/dev/FQOC5u-1egI/16.png b/vlm/dev/FQOC5u-1egI/16.png new file mode 100644 index 0000000000000000000000000000000000000000..8bd5a0a8aa0defaf98a382597550ff32956088f4 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33abff986ba24a2ddeaa7dba47b04052276bc6667d0ddcc9350092c7076db327 +size 442313 diff --git a/vlm/dev/FQOC5u-1egI/17.png b/vlm/dev/FQOC5u-1egI/17.png new file mode 100644 index 0000000000000000000000000000000000000000..5f925a7b4fd46df6ceec6733982ff9a897aa7b9c --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:478faf198334c8f6f7f12982e68aae83f2e92c72c41fa6de104f640bd4029af6 +size 357532 diff --git a/vlm/dev/FQOC5u-1egI/18.png b/vlm/dev/FQOC5u-1egI/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4f53fec69d2f830cd85f14d3695536adc4452cdf --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f095a6ce93b4bbb21fccf6938b03e164d7891c9d314756b5909d003c8293c942 +size 371699 diff --git a/vlm/dev/FQOC5u-1egI/19.png b/vlm/dev/FQOC5u-1egI/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1f0788e4c6fcd518eeb1041251f70813b2dd1e6d --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3af8b704e07150320c10dae11e14f72c931f74c20a3fcaf178aee3b80d1a51d1 +size 429912 diff --git a/vlm/dev/FQOC5u-1egI/2.png b/vlm/dev/FQOC5u-1egI/2.png new file mode 100644 index 0000000000000000000000000000000000000000..24cf39e9b3b0347876f7705d37646edada466b7a --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:647257da54f76267f2952311007106e099020dfcb43f728ad5b1303c39fcd77e +size 582604 diff --git a/vlm/dev/FQOC5u-1egI/20.png b/vlm/dev/FQOC5u-1egI/20.png new file mode 100644 index 0000000000000000000000000000000000000000..baac571e6df095e01249bc5ecc1deff84938942b --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11a46febc60bff299e1f0433b418ec9dcaf4573f547deba49cdadd95ff9fa40e +size 536050 diff --git a/vlm/dev/FQOC5u-1egI/21.png b/vlm/dev/FQOC5u-1egI/21.png new file mode 100644 index 0000000000000000000000000000000000000000..2daf02f78e8cf0f4c714939881bff920fb904829 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d133dafdf0e7b1e19d64657bbc282b774637940ae599b6b094fc4d9eddf4c7aa +size 438874 diff --git a/vlm/dev/FQOC5u-1egI/22.png b/vlm/dev/FQOC5u-1egI/22.png new file mode 100644 index 0000000000000000000000000000000000000000..7a65ffe0fb75c4be4322ffd7ef279c39edcf5387 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a360189fd6e47eec33ab50d3c1aaec1bc857931849bff831b4df31c70156c605 +size 439469 diff --git a/vlm/dev/FQOC5u-1egI/23.png b/vlm/dev/FQOC5u-1egI/23.png new file mode 100644 index 0000000000000000000000000000000000000000..c4c423e4c738e17a93e8d91b9f9558b1cc5047dd --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6178f04e79f444dd06e4ce09f52808084f800fe3ac256a15315590e36f39e621 +size 1012833 diff --git a/vlm/dev/FQOC5u-1egI/24.png b/vlm/dev/FQOC5u-1egI/24.png new file mode 100644 index 0000000000000000000000000000000000000000..7e542dc20ecda9e3f6c7d2a74126e27ec8c94ed1 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10f8b78d5a1fd739d886d0bd009fa5cfab563a42011c412a9abac53e051f93d1 +size 395567 diff --git a/vlm/dev/FQOC5u-1egI/25.png b/vlm/dev/FQOC5u-1egI/25.png new file mode 100644 index 0000000000000000000000000000000000000000..cc487a37ccf4959b4758e11880ac88df75569310 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7508a767a3b74ab1bf5530d057c313f631e51034bd94a4ea6957204c2aefc7de +size 143078 diff --git a/vlm/dev/FQOC5u-1egI/26.png b/vlm/dev/FQOC5u-1egI/26.png new file mode 100644 index 0000000000000000000000000000000000000000..cf23a1c460bd9be0885e5d12c7ca98ed370196e5 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7447f20a99f21382681a3b75709327ae281abae68e81aa11de5572d4f3e08397 +size 104073 diff --git a/vlm/dev/FQOC5u-1egI/27.png b/vlm/dev/FQOC5u-1egI/27.png new file mode 100644 index 0000000000000000000000000000000000000000..99fad6932ea8fb80393e790342d1d409f85c875d --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c36e055a089a955cf8b8adbd0bc345351ceaf8021a5b2a6cb3a9c0364e660f7 +size 129677 diff --git a/vlm/dev/FQOC5u-1egI/28.png b/vlm/dev/FQOC5u-1egI/28.png new file mode 100644 index 0000000000000000000000000000000000000000..84eece3d428697bf2edb4fd7a6f01fded91f661b --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19e026f956bdcd88fa86cb2e7919baa69999f61f7c6258b763bcf79900643c64 +size 107375 diff --git a/vlm/dev/FQOC5u-1egI/29.png b/vlm/dev/FQOC5u-1egI/29.png new file mode 100644 index 0000000000000000000000000000000000000000..862cac55baf4e1e1dc628b29cd14f1eef060c2c8 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ab598d142b286f011c3f59a5080977af1000c23ae5738e514387848f7765853 +size 130240 diff --git a/vlm/dev/FQOC5u-1egI/3.png b/vlm/dev/FQOC5u-1egI/3.png new file mode 100644 index 0000000000000000000000000000000000000000..be70519762f6d304215c5f8319a91909b6757ba1 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:144fcc5d71888ef53a648bb271664022f0723d5cc708b6f1c204599a3f790565 +size 600456 diff --git a/vlm/dev/FQOC5u-1egI/4.png b/vlm/dev/FQOC5u-1egI/4.png new file mode 100644 index 0000000000000000000000000000000000000000..97475fd2712bac7df32c8b6ce4861459e7678424 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:07fdae92fc8d04fc7bf3b416fd3c12e63c25d3e747b86bb15b68b59233ae1277 +size 588028 diff --git a/vlm/dev/FQOC5u-1egI/5.png b/vlm/dev/FQOC5u-1egI/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e90f23faf458eb33b84d6f03962c560c24171184 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c82b71ae372d9a46f6f8ee9ed95a42e8ef3c8bdc75184b9261be6e5b4ec7190e +size 560405 diff --git a/vlm/dev/FQOC5u-1egI/6.png b/vlm/dev/FQOC5u-1egI/6.png new file mode 100644 index 0000000000000000000000000000000000000000..e9ea37dfed9a5f8a6d2be595ef85f69bc8906a20 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01e019934abe0809e8259de4e7a5b618ab5ec0e19d53a368bc6382814f07b0b1 +size 602375 diff --git a/vlm/dev/FQOC5u-1egI/7.png b/vlm/dev/FQOC5u-1egI/7.png new file mode 100644 index 0000000000000000000000000000000000000000..ff1827db1986bfb8c0cb3586d7b023cf0621ec82 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e49c91f40050f975a9e9e8d706a4080a684acb4cc6873b1ce604f5c659b5f987 +size 624708 diff --git a/vlm/dev/FQOC5u-1egI/8.png b/vlm/dev/FQOC5u-1egI/8.png new file mode 100644 index 0000000000000000000000000000000000000000..75bbd6af7a7ca013b5cffc5636b141636725febd --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1dcfea906802c3422c98740c7b94b430c25d80d3217010aaa388f52c0b0ed18b +size 620797 diff --git a/vlm/dev/FQOC5u-1egI/9.png b/vlm/dev/FQOC5u-1egI/9.png new file mode 100644 index 0000000000000000000000000000000000000000..6642aaad9d18d006ccdefa922958fc5982af7652 --- /dev/null +++ b/vlm/dev/FQOC5u-1egI/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e53d865fd77dec2f831ea1d4a8ee31802a782b7bef89fe1a450275129cb0e9f +size 493702 diff --git a/vlm/dev/K5qR1F14qPE/0.png b/vlm/dev/K5qR1F14qPE/0.png new file mode 100644 index 0000000000000000000000000000000000000000..a60fc1a0c78f88e530ea2cc3086ef73e8f49fdc0 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b5c03ffb121a1022f278d0a61e7ac34c35c3c70b186bf109541294a778ad79a7 +size 503093 diff --git a/vlm/dev/K5qR1F14qPE/1.png b/vlm/dev/K5qR1F14qPE/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ddb3a096a4cf9025207a95e6586a456bc3e32350 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:779b29bf9d6377fe7875f982fe73305ede90450636f914216af2003830e183bc +size 922430 diff --git a/vlm/dev/K5qR1F14qPE/10.png b/vlm/dev/K5qR1F14qPE/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4491799670fe3627f0252bb471969d47ef5a2ab9 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c986bfc813ab718887d5ee3e288d9c920fe6b83f939514d58ddf455655395222 +size 550671 diff --git a/vlm/dev/K5qR1F14qPE/11.png b/vlm/dev/K5qR1F14qPE/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a0085afba0d2babd6a5ad96c741407dc6d973632 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ba401ff2d139b63f458d0cefe83a892ff0222fa2923b372467a58b1be2aa0264 +size 570678 diff --git a/vlm/dev/K5qR1F14qPE/12.png b/vlm/dev/K5qR1F14qPE/12.png new file mode 100644 index 0000000000000000000000000000000000000000..aac4824305f9c9f47779b377bc22f58aa9adf37a --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4e7114a8a62d7ee51807b8d006f4091b43df3195bce11d7794b3096150de0d7d +size 559616 diff --git a/vlm/dev/K5qR1F14qPE/13.png b/vlm/dev/K5qR1F14qPE/13.png new file mode 100644 index 0000000000000000000000000000000000000000..597799cbd37b0caae1d84ce000d208484041635a --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9d6b81d54202702b7e2a23c219c3625aa8bc85af7809c917bb0c3bf5542ff7e2 +size 571010 diff --git a/vlm/dev/K5qR1F14qPE/14.png b/vlm/dev/K5qR1F14qPE/14.png new file mode 100644 index 0000000000000000000000000000000000000000..6868829521e68841a92a6e3ba70e0b201a8e8a41 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc8007740a16a44c066342d7212e87a5e918603ba19ce369ed5de144a9ada7e2 +size 317146 diff --git a/vlm/dev/K5qR1F14qPE/15.png b/vlm/dev/K5qR1F14qPE/15.png new file mode 100644 index 0000000000000000000000000000000000000000..b6318f8622905a71c759b6d8da8760829c22bf39 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0dad935c1d5e3ce9b0d5fcf14a6ae23552787c3f0dfb8da622ef72bb761abf +size 471456 diff --git a/vlm/dev/K5qR1F14qPE/16.png b/vlm/dev/K5qR1F14qPE/16.png new file mode 100644 index 0000000000000000000000000000000000000000..e39064eed8766dccb0fddcd9d8d50b119ba97c42 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ceea236bc3b025823480c951baa03519095bcd3220dd9a82df0e3914bc4894ef +size 230345 diff --git a/vlm/dev/K5qR1F14qPE/17.png b/vlm/dev/K5qR1F14qPE/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e766431acca298726e635f8386fcb4157532fe20 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c91bd59f8088c307266fb531a4aa72e16e2681ad957c6d7650d6246b16c0148 +size 177359 diff --git a/vlm/dev/K5qR1F14qPE/18.png b/vlm/dev/K5qR1F14qPE/18.png new file mode 100644 index 0000000000000000000000000000000000000000..7e2dfdcbb3c9615dbd2fbb6aa7216af342c99fc6 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43d6737b25ca36514adaa6dd507be9c604c2bb1294bd7c14781e8def84a41b11 +size 588484 diff --git a/vlm/dev/K5qR1F14qPE/19.png b/vlm/dev/K5qR1F14qPE/19.png new file mode 100644 index 0000000000000000000000000000000000000000..de1715db1e9121cd6637359f80eabf5ab11a3c77 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b69708be71bc13f3c28d1de277257ebca4c1b00440f4ce8d6cbf7768db88898 +size 2267439 diff --git a/vlm/dev/K5qR1F14qPE/2.png b/vlm/dev/K5qR1F14qPE/2.png new file mode 100644 index 0000000000000000000000000000000000000000..89db8ecdf920c4bae9d4b8c8ba8e1a3230a870c7 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:28cbf2e125807d8b15e9890112043b541d178613bb63cc8f4873b63417164440 +size 574102 diff --git a/vlm/dev/K5qR1F14qPE/3.png b/vlm/dev/K5qR1F14qPE/3.png new file mode 100644 index 0000000000000000000000000000000000000000..dbebf56defcd2a7e156667d12341b39d52169fdd --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:623cee01b0f3fefd0c84f50768dd625c470439679d205e5cc431934a31a466ea +size 656419 diff --git a/vlm/dev/K5qR1F14qPE/4.png b/vlm/dev/K5qR1F14qPE/4.png new file mode 100644 index 0000000000000000000000000000000000000000..797448785679f7c019520ea84d437897e9a3591d --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bb1dc04b4fb54be2f8d414c09773925bb2cc8f6f89d753927196990a6e254591 +size 472213 diff --git a/vlm/dev/K5qR1F14qPE/5.png b/vlm/dev/K5qR1F14qPE/5.png new file mode 100644 index 0000000000000000000000000000000000000000..159c12876b62c46e0f55ff775c42a92ff73c04a0 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a4661e57265d41c5073bbc085fee2d9619fa57f92b20cca0df03992ed658ae5 +size 406199 diff --git a/vlm/dev/K5qR1F14qPE/6.png b/vlm/dev/K5qR1F14qPE/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0f1da866143bfee150e02945cd5a5a58a19c8ffb --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c0a278febad9b3d5de509feda464045eec61a5e0d29191a8a1fab004726099f3 +size 564944 diff --git a/vlm/dev/K5qR1F14qPE/7.png b/vlm/dev/K5qR1F14qPE/7.png new file mode 100644 index 0000000000000000000000000000000000000000..bb988328ac0623f1c6c820b68ddea1f938cb4607 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b2ac142c6ed9645bd41cc56d8d61784514ff192e13c65fbcab16222c124b9d5c +size 477787 diff --git a/vlm/dev/K5qR1F14qPE/8.png b/vlm/dev/K5qR1F14qPE/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7ffbfdc71d62d8ca144f53fde9e4aa6b437767b2 --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c949b2c42e26597244ae41da4ef0d62609cfb264502de463468db6ae0a87ca0e +size 1273258 diff --git a/vlm/dev/K5qR1F14qPE/9.png b/vlm/dev/K5qR1F14qPE/9.png new file mode 100644 index 0000000000000000000000000000000000000000..0a35ad25317fa557458b06b8b9933cb2ab4eafab --- /dev/null +++ b/vlm/dev/K5qR1F14qPE/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42506098581e4d5000560f1ce3ab59f5b9d27f6a47dae35413ada3ff3eeabac7 +size 556716 diff --git a/vlm/dev/PKdNRKjwL4/0.png b/vlm/dev/PKdNRKjwL4/0.png new file mode 100644 index 0000000000000000000000000000000000000000..38a0ac31d2d9496d453864ab7fc762823db2c37e --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a8f681020c76534a95f496e5ea5e645d90f0b53dcd98a40436b17890ec9b52bb +size 561810 diff --git a/vlm/dev/PKdNRKjwL4/1.png b/vlm/dev/PKdNRKjwL4/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a355959415892664a44a60f011128610017872a1 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:492246053896422dd85272a68ec9347b8117775a212b024bfc84e6149d77b870 +size 610718 diff --git a/vlm/dev/PKdNRKjwL4/10.png b/vlm/dev/PKdNRKjwL4/10.png new file mode 100644 index 0000000000000000000000000000000000000000..4d96bdc4b4edb29f6bf7b64b4a32a431d3cab859 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f2bb4ba88a621763f91cfdc96efd4324b0dc5c073db5ceaa958014fbcbd7970 +size 525574 diff --git a/vlm/dev/PKdNRKjwL4/11.png b/vlm/dev/PKdNRKjwL4/11.png new file mode 100644 index 0000000000000000000000000000000000000000..e2e9f080c7281cdaac6733d538af4ef715adea5c --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd3bff09f8a6325692df3705171f97ba82a267eefae88d27cd7fd532fd0a8468 +size 581321 diff --git a/vlm/dev/PKdNRKjwL4/12.png b/vlm/dev/PKdNRKjwL4/12.png new file mode 100644 index 0000000000000000000000000000000000000000..bc05c041282327c2edcd8141cac32a4222306685 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b2ad7f69650a902b408ffeeb1ee19d3b027214a8d674548ff2b54c2a2e8627d +size 259525 diff --git a/vlm/dev/PKdNRKjwL4/13.png b/vlm/dev/PKdNRKjwL4/13.png new file mode 100644 index 0000000000000000000000000000000000000000..b21fb52ef64bbde65bf7fe855dcb7c2d053f48bc --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:44294ea34c1486e356839de467f45fcad3c1417c2612acf05093351fa7a0fa9b +size 260568 diff --git a/vlm/dev/PKdNRKjwL4/14.png b/vlm/dev/PKdNRKjwL4/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c74b68790e4ccdad008ed62af0041c3da37565d0 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7c7e0bb3ea8ac5d734de37ec28705826cac3dd72356a682b6da9ccb03e117950 +size 215470 diff --git a/vlm/dev/PKdNRKjwL4/15.png b/vlm/dev/PKdNRKjwL4/15.png new file mode 100644 index 0000000000000000000000000000000000000000..287e36fdfe2407f8e411dae9256139738c977052 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e99e056102770de41375f356ad076c43fafbee1e867aa96d7c118022adeeab +size 528852 diff --git a/vlm/dev/PKdNRKjwL4/16.png b/vlm/dev/PKdNRKjwL4/16.png new file mode 100644 index 0000000000000000000000000000000000000000..781d7e06698244dc6b6c00087dcf67ed5ed94474 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79a54b02daae0d14d9c545a1293810731b9b3292f7450e4573fea2f432710a12 +size 146099 diff --git a/vlm/dev/PKdNRKjwL4/17.png b/vlm/dev/PKdNRKjwL4/17.png new file mode 100644 index 0000000000000000000000000000000000000000..228a0b59b3df6c2238663cc0f6f500f0f3c322ee --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:741884e8bcd960f72f1685de055f683ecd55947cf1401fd0af6a74481918a537 +size 182589 diff --git a/vlm/dev/PKdNRKjwL4/18.png b/vlm/dev/PKdNRKjwL4/18.png new file mode 100644 index 0000000000000000000000000000000000000000..0bc078f27dc854104d5991e90f42b88253b4caa3 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:963f06859c71be8a463ef71b8ed779560c79959e0f69f2e27482e79e2d39979a +size 371890 diff --git a/vlm/dev/PKdNRKjwL4/19.png b/vlm/dev/PKdNRKjwL4/19.png new file mode 100644 index 0000000000000000000000000000000000000000..292d60b4cc742c85e5011fa332e2b30a2c3bb37b --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:574acc12a0ea5215847c32a0acb2f87e9b220df933a42899c4b6466bf10018ce +size 355326 diff --git a/vlm/dev/PKdNRKjwL4/2.png b/vlm/dev/PKdNRKjwL4/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c6361c8f1b9a528db5064e3e55f102f3fe932184 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029453e78f9bcf7c7e2a81af933fabd337ff34e51887ee971bd567c79635e5c0 +size 604635 diff --git a/vlm/dev/PKdNRKjwL4/20.png b/vlm/dev/PKdNRKjwL4/20.png new file mode 100644 index 0000000000000000000000000000000000000000..f048827c75439a23af8f07d26c1dfcb67affc47e --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e914f39b99dcb25f4cb038c2da434a261f62e56c1b9154b623fa3229de9a2482 +size 237095 diff --git a/vlm/dev/PKdNRKjwL4/21.png b/vlm/dev/PKdNRKjwL4/21.png new file mode 100644 index 0000000000000000000000000000000000000000..90180fbe4b40560d84a4b77711b6cd66ca134791 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f0fe1d7c4b6dc2844b64d75e64e21356fba7e709677b00fc3aad75d24b197818 +size 333248 diff --git a/vlm/dev/PKdNRKjwL4/22.png b/vlm/dev/PKdNRKjwL4/22.png new file mode 100644 index 0000000000000000000000000000000000000000..1c8bb41770a6d8b01b4f154768f12fd36d622efe --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d27c66b1edb49d663c6cb6859b70c3b1a3f2a82bb929e1d90cf5ef8b10e44779 +size 249072 diff --git a/vlm/dev/PKdNRKjwL4/23.png b/vlm/dev/PKdNRKjwL4/23.png new file mode 100644 index 0000000000000000000000000000000000000000..a6551e60bf34daa3cc4bca8cc6bc90e216f9dd34 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e86e38831f1927ed1b6153f0e078fefb51258205022cde5eda5b206b4112af3c +size 95583 diff --git a/vlm/dev/PKdNRKjwL4/24.png b/vlm/dev/PKdNRKjwL4/24.png new file mode 100644 index 0000000000000000000000000000000000000000..fadb4127f2f851ba48ec02d9efa8d20d8b9bea11 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7264caaea71ac5c971d08d50cd2d697f0a3ad5e5cd64817f90ff56fa0b1d34ac +size 420088 diff --git a/vlm/dev/PKdNRKjwL4/3.png b/vlm/dev/PKdNRKjwL4/3.png new file mode 100644 index 0000000000000000000000000000000000000000..485255643f2fe60a3dcb8bc185192b78bf02f3cf --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a54482c03522fffa00819c569252b6d9b193752d4ba1028d5a295ceb2afe7005 +size 644003 diff --git a/vlm/dev/PKdNRKjwL4/4.png b/vlm/dev/PKdNRKjwL4/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cf9d957b1e783e03e57663fa2326e1bae69ac404 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a66ff256c4165d27b9e5d5a35dc67ee1f08c599bd3ffda7afa64fdfbb411e278 +size 659471 diff --git a/vlm/dev/PKdNRKjwL4/5.png b/vlm/dev/PKdNRKjwL4/5.png new file mode 100644 index 0000000000000000000000000000000000000000..7897946dd575dbcb7349a76307b117b9a78f442e --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:271dd16cd47af9e62dcfc20be773dd5e18776d90f4094d6008b1deaac5cd18e0 +size 636331 diff --git a/vlm/dev/PKdNRKjwL4/6.png b/vlm/dev/PKdNRKjwL4/6.png new file mode 100644 index 0000000000000000000000000000000000000000..656649bfbfe89b65d1ef2bed8aee2a11ca47a4ee --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59cada2931ec77436d23b545226f3c4fa72d148a58feba82aeff450c2f7be6f3 +size 603066 diff --git a/vlm/dev/PKdNRKjwL4/7.png b/vlm/dev/PKdNRKjwL4/7.png new file mode 100644 index 0000000000000000000000000000000000000000..89ead1392ac5b60ffd59712ca51295a1d8beca8c --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d02e54123bdf8208bd382f9b3c6848b88615420e568cbfcf08140bcd2e3cc43b +size 645534 diff --git a/vlm/dev/PKdNRKjwL4/8.png b/vlm/dev/PKdNRKjwL4/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a774afe9d002ccd764ea404a28870fe1094d8e --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0e4857cb6d9ddb26a17f03006b55535f95be2858d20962c08ebfe195d59afeaa +size 598969 diff --git a/vlm/dev/PKdNRKjwL4/9.png b/vlm/dev/PKdNRKjwL4/9.png new file mode 100644 index 0000000000000000000000000000000000000000..7af59ba3e644e1ed74f7e21f5a75728fd68e4c61 --- /dev/null +++ b/vlm/dev/PKdNRKjwL4/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c39882b2d8fa94991e7cdac7400c92e9d293ec4a8df7fe3829f962c083504c83 +size 544774 diff --git a/vlm/dev/QUyasQGv1Nl/0.png b/vlm/dev/QUyasQGv1Nl/0.png new file mode 100644 index 0000000000000000000000000000000000000000..95ecf543852fbc71a9722ae29d9ec826c20a39f7 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aeec76f328615d5b890743098c37c45bbae09021983582caf39ebda6da2e4349 +size 448141 diff --git a/vlm/dev/QUyasQGv1Nl/1.png b/vlm/dev/QUyasQGv1Nl/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ca76e0af0e3610dae6d9e5f1f5d11de1519af599 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e35bdcb16e5b4f348975040029cb555e127175f8c385b83ba169c47c0f5c349b +size 830286 diff --git a/vlm/dev/QUyasQGv1Nl/10.png b/vlm/dev/QUyasQGv1Nl/10.png new file mode 100644 index 0000000000000000000000000000000000000000..6e7f3517fa137580b129e15f03a95b2edfd80166 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6e7a8eb1204f940439d688dbc38fa5dedb1ce40fcbaed4dfd2b6529f47e4fcde +size 559799 diff --git a/vlm/dev/QUyasQGv1Nl/11.png b/vlm/dev/QUyasQGv1Nl/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8ab961ba374d869eb06c15d801bbfc68e8264bfb --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67af33d8dbab99f4fcfde6f3a803ca19b1eec35b664771ca50e4ccdc1c0848e6 +size 311547 diff --git a/vlm/dev/QUyasQGv1Nl/12.png b/vlm/dev/QUyasQGv1Nl/12.png new file mode 100644 index 0000000000000000000000000000000000000000..b4d3fc6159c880b218aaa6dbcbb2f4b88bc987e4 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4f4ac9f4e0f6ce6f07c466860e85563eb2a7fcc75179e33a10c0d2a0633cd2d3 +size 339993 diff --git a/vlm/dev/QUyasQGv1Nl/2.png b/vlm/dev/QUyasQGv1Nl/2.png new file mode 100644 index 0000000000000000000000000000000000000000..91ce064983ccff8fcb8137fad11d2316a952ea4d --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a41e4f0183d417467b9fb1727bfe13bf30741ba93f3d6c0649be2f157530a921 +size 561579 diff --git a/vlm/dev/QUyasQGv1Nl/3.png b/vlm/dev/QUyasQGv1Nl/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9850a25362d16e1ec83c618baf856bb38a8bf8c9 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:875ae31fb04edac0f72f323e59c00ef31abb8ed6cf2a3fd15f5ca7824b3e5a99 +size 644330 diff --git a/vlm/dev/QUyasQGv1Nl/4.png b/vlm/dev/QUyasQGv1Nl/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b6ea28770881d90748fdba4d402120bb90ac62ee --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74a75f691ebd0dd29aa15be14bcd54280f264fd0866ac4496503efb1a890d125 +size 534399 diff --git a/vlm/dev/QUyasQGv1Nl/5.png b/vlm/dev/QUyasQGv1Nl/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8d9b837fd8110f07c13e615c06415a411c5dd7d4 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a7115fa10552a58f91498c4c821dd037778aef79ae06cdc942f0bad2e1499603 +size 574048 diff --git a/vlm/dev/QUyasQGv1Nl/6.png b/vlm/dev/QUyasQGv1Nl/6.png new file mode 100644 index 0000000000000000000000000000000000000000..eaeb23c83929b2d7bacdcb01a6d983e3b425d2a1 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c42d6211e3dc1f61f26b61cbeaaca0d06430ed9dce9ae0f4a0a0c72eefe76a9c +size 1316841 diff --git a/vlm/dev/QUyasQGv1Nl/7.png b/vlm/dev/QUyasQGv1Nl/7.png new file mode 100644 index 0000000000000000000000000000000000000000..e326cd0e7f73339fa0009e0f5e339101a30696c6 --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ca30d0251dd2cc596dd2839eb2c4a720caab7e0982dc1dd1839122c7f492198 +size 891778 diff --git a/vlm/dev/QUyasQGv1Nl/8.png b/vlm/dev/QUyasQGv1Nl/8.png new file mode 100644 index 0000000000000000000000000000000000000000..64a4e1f62d223376eaa3a6e3634d4273a734d87a --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88c013902548ef54b60e693d14ed002f8b180d053b740482e60fb171c4e3ecd0 +size 655333 diff --git a/vlm/dev/QUyasQGv1Nl/9.png b/vlm/dev/QUyasQGv1Nl/9.png new file mode 100644 index 0000000000000000000000000000000000000000..2d9754558d015597810f7f5ee1ac5d517965d19d --- /dev/null +++ b/vlm/dev/QUyasQGv1Nl/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2bb198bb53b9d3a13d51e4ebb326a6b86f93a7a727d3a7f420f9f16658ae3a83 +size 548865 diff --git a/vlm/dev/QwejPcX96r/0.png b/vlm/dev/QwejPcX96r/0.png new file mode 100644 index 0000000000000000000000000000000000000000..369d8234747bd60c04108c8a898bf7dee5f1227f --- /dev/null +++ b/vlm/dev/QwejPcX96r/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49a6771c7c7b1d12ec531f715bfab28d08cb6362be01158bafd4334ae420ae76 +size 684291 diff --git a/vlm/dev/QwejPcX96r/1.png b/vlm/dev/QwejPcX96r/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a00b54d7787573b0a304779e3082732b75f8d5f0 --- /dev/null +++ b/vlm/dev/QwejPcX96r/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:398183d5d38913a8486f7c870dfe0c627e372eaba7df3abaa8873b6687929774 +size 797764 diff --git a/vlm/dev/QwejPcX96r/10.png b/vlm/dev/QwejPcX96r/10.png new file mode 100644 index 0000000000000000000000000000000000000000..bcfe19d8a0a17f549ca6a3d9c2d29167195162dc --- /dev/null +++ b/vlm/dev/QwejPcX96r/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:725a08f43c4751b109e4263c715c64c2228b34e4ae833ef4c7618e9d3c61aa8e +size 901810 diff --git a/vlm/dev/QwejPcX96r/11.png b/vlm/dev/QwejPcX96r/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8ccdee914471bb4094c0198efa1f2be1db1e84f1 --- /dev/null +++ b/vlm/dev/QwejPcX96r/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:05ada05c0a9e10e66e836430d4da5c0066b589fd70e8e24a7ad0d3a073089585 +size 868993 diff --git a/vlm/dev/QwejPcX96r/12.png b/vlm/dev/QwejPcX96r/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9e92dcdcd43e211397b3803a9926745ecf7b1aac --- /dev/null +++ b/vlm/dev/QwejPcX96r/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a11f78640c975e6d01397d6d2f899e26bc0f771803fb017e3452d91e31abef37 +size 907017 diff --git a/vlm/dev/QwejPcX96r/13.png b/vlm/dev/QwejPcX96r/13.png new file mode 100644 index 0000000000000000000000000000000000000000..294387c09e9c128431345ce9f514797009a2b530 --- /dev/null +++ b/vlm/dev/QwejPcX96r/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4ed1ec48b2f2951b7e29c09feceaaa0f1423bb59d790cedccf746d232780ca4 +size 592828 diff --git a/vlm/dev/QwejPcX96r/14.png b/vlm/dev/QwejPcX96r/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8d1286d29286a8ac8ddd9c221f598e0b32144fc9 --- /dev/null +++ b/vlm/dev/QwejPcX96r/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6750100c199e95ba7b8e8fc6fafb843cceb9dc0e774a5cf71fe434448e5bd1d +size 822733 diff --git a/vlm/dev/QwejPcX96r/15.png b/vlm/dev/QwejPcX96r/15.png new file mode 100644 index 0000000000000000000000000000000000000000..6803f56dd7dbe2232f5de520fa72973e547e08b6 --- /dev/null +++ b/vlm/dev/QwejPcX96r/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6871b5aedb84708fed09030119bb838aaa7b709a9a51b971b748c918bdfcd5fa +size 637253 diff --git a/vlm/dev/QwejPcX96r/16.png b/vlm/dev/QwejPcX96r/16.png new file mode 100644 index 0000000000000000000000000000000000000000..a7ab0e7ebdac00ecddce0f5231899da311f2a6ab --- /dev/null +++ b/vlm/dev/QwejPcX96r/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:754ffe2abe9d22e8a3ad952b49cdb2743b457f7eb113e7d221080424d509f193 +size 367244 diff --git a/vlm/dev/QwejPcX96r/17.png b/vlm/dev/QwejPcX96r/17.png new file mode 100644 index 0000000000000000000000000000000000000000..dec805413c68d1d7d403a1fbebbba04e83cec8ed --- /dev/null +++ b/vlm/dev/QwejPcX96r/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bc2bbe1ca629a3eb71eff575cc474cc0dd8c274090d49d545d597593f7a47baf +size 480946 diff --git a/vlm/dev/QwejPcX96r/18.png b/vlm/dev/QwejPcX96r/18.png new file mode 100644 index 0000000000000000000000000000000000000000..4a5ffa8ce540e047c6bf480cc0f877acdab2dc4d --- /dev/null +++ b/vlm/dev/QwejPcX96r/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c9b0e989d170c3c8ffa3d3a003a17e5f1879c5a7d89709fb350e2f035c58d2f8 +size 664547 diff --git a/vlm/dev/QwejPcX96r/19.png b/vlm/dev/QwejPcX96r/19.png new file mode 100644 index 0000000000000000000000000000000000000000..be07e9151cf631943f6769bd062bea76a11c1bd9 --- /dev/null +++ b/vlm/dev/QwejPcX96r/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d1b9757b8ba48ce7af5be75f18c3777b4f3cb09cdfad3946971c8a3a85c2f2a4 +size 692230 diff --git a/vlm/dev/QwejPcX96r/2.png b/vlm/dev/QwejPcX96r/2.png new file mode 100644 index 0000000000000000000000000000000000000000..7e3b86579e6e1a9e0d7d55b788249b8b00add36e --- /dev/null +++ b/vlm/dev/QwejPcX96r/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e8c00edbc41112fa4991ead44a0c34cf75f3dbf159debe8a3014a35f1cb3e44 +size 788654 diff --git a/vlm/dev/QwejPcX96r/20.png b/vlm/dev/QwejPcX96r/20.png new file mode 100644 index 0000000000000000000000000000000000000000..bef2b40c5e10589c0193f521628d7e36bf656dfe --- /dev/null +++ b/vlm/dev/QwejPcX96r/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8815c3bc11810870c90834b36f5c8dabce62412b1d3e5e2caad0167ee98d7a9 +size 578991 diff --git a/vlm/dev/QwejPcX96r/21.png b/vlm/dev/QwejPcX96r/21.png new file mode 100644 index 0000000000000000000000000000000000000000..c9c7930eb49c029c720579f81a643cdf9ac44c1a --- /dev/null +++ b/vlm/dev/QwejPcX96r/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e472fa48a32d8c8f78016bfea6faeaf231e8dd53a9ea9732f5bf021c43eaf1f8 +size 702495 diff --git a/vlm/dev/QwejPcX96r/22.png b/vlm/dev/QwejPcX96r/22.png new file mode 100644 index 0000000000000000000000000000000000000000..8776ea753d9bafaa83fb1cceddb69b9ae477f7d3 --- /dev/null +++ b/vlm/dev/QwejPcX96r/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b0ed030f9673a7775f23bdcd96c952e7dc0d4180bc1490f4d7665390ab5f0889 +size 500087 diff --git a/vlm/dev/QwejPcX96r/23.png b/vlm/dev/QwejPcX96r/23.png new file mode 100644 index 0000000000000000000000000000000000000000..3d96e62c927d1327d4ad42b13e10e2905a0602bc --- /dev/null +++ b/vlm/dev/QwejPcX96r/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:454c59efefa2b344aab6de8e698d56bc85edbdc86c0a7967d4bd06888fa8d6a0 +size 746488 diff --git a/vlm/dev/QwejPcX96r/24.png b/vlm/dev/QwejPcX96r/24.png new file mode 100644 index 0000000000000000000000000000000000000000..8393e66130d37f9cc4a56b311cb57fa7c8e88b53 --- /dev/null +++ b/vlm/dev/QwejPcX96r/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a89b1205917846e36a2b897072002484ae1bea2edb002dd0e5da7e2adfd71e58 +size 790975 diff --git a/vlm/dev/QwejPcX96r/25.png b/vlm/dev/QwejPcX96r/25.png new file mode 100644 index 0000000000000000000000000000000000000000..75fb74a9b18a54eea01bf692c8c31437948d5eca --- /dev/null +++ b/vlm/dev/QwejPcX96r/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:73743fa4b16387e69cc5b57799ad008ba81ae110a9a5f7a28e9bdb1efaf51236 +size 523867 diff --git a/vlm/dev/QwejPcX96r/26.png b/vlm/dev/QwejPcX96r/26.png new file mode 100644 index 0000000000000000000000000000000000000000..8107d063cdce9ff0dd427b427725af7fdfa41e1b --- /dev/null +++ b/vlm/dev/QwejPcX96r/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9fa665ae7ba9a217ed1c327b03ad2bcb4fd4351cfb125016412ff314752269f +size 749915 diff --git a/vlm/dev/QwejPcX96r/27.png b/vlm/dev/QwejPcX96r/27.png new file mode 100644 index 0000000000000000000000000000000000000000..c66013b14ada202db7002eec1aafea6f9745f37f --- /dev/null +++ b/vlm/dev/QwejPcX96r/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca13cdf96ef165b5461cca7c6b4cfe0905f2a6a229a0b9a242fce2eaec089cb0 +size 702300 diff --git a/vlm/dev/QwejPcX96r/28.png b/vlm/dev/QwejPcX96r/28.png new file mode 100644 index 0000000000000000000000000000000000000000..442bc156fa35ef05e6021c35541c8902e2d0c28e --- /dev/null +++ b/vlm/dev/QwejPcX96r/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:298940c054404cbc751de73c49ba33b56cb404aa434b821caf2bf9b40f10c122 +size 48548 diff --git a/vlm/dev/QwejPcX96r/29.png b/vlm/dev/QwejPcX96r/29.png new file mode 100644 index 0000000000000000000000000000000000000000..4675d03f54befbfb4c202af684514d6fa1b3d9f8 --- /dev/null +++ b/vlm/dev/QwejPcX96r/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:431ed5a5e6eef23c9a2eb155ffa65eb805a59c33d2b7e1dbe29d58058ce30f82 +size 433328 diff --git a/vlm/dev/QwejPcX96r/3.png b/vlm/dev/QwejPcX96r/3.png new file mode 100644 index 0000000000000000000000000000000000000000..f90dec8b56be563213755701b33036fedeb2cf86 --- /dev/null +++ b/vlm/dev/QwejPcX96r/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:012c17e9c6f92788f67cbe94df2cba0f702a80d39153d11185f06bf0b93bff9d +size 790031 diff --git a/vlm/dev/QwejPcX96r/30.png b/vlm/dev/QwejPcX96r/30.png new file mode 100644 index 0000000000000000000000000000000000000000..94d419c8d2fb05cdecdc402aef236fe6eea280e7 --- /dev/null +++ b/vlm/dev/QwejPcX96r/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9ec47e2d523da983ff4268a032a00fed9ee273276bda760f57ff56adb22ea92e +size 228276 diff --git a/vlm/dev/QwejPcX96r/31.png b/vlm/dev/QwejPcX96r/31.png new file mode 100644 index 0000000000000000000000000000000000000000..be278c442d5b46107ef4239b60ca74c938629b4f --- /dev/null +++ b/vlm/dev/QwejPcX96r/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c2d6a02b56c4b1ce9b8fe5942e19d5bb48f98ce6f6020b7fa03d227eef1971f4 +size 263786 diff --git a/vlm/dev/QwejPcX96r/32.png b/vlm/dev/QwejPcX96r/32.png new file mode 100644 index 0000000000000000000000000000000000000000..85c132a1537f8c6a7e05e93b90f73ceed0e37397 --- /dev/null +++ b/vlm/dev/QwejPcX96r/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64c8087f8a01549c5d1ad8140ebc58d9c440d53795c99dbf41b207da294ed298 +size 222308 diff --git a/vlm/dev/QwejPcX96r/4.png b/vlm/dev/QwejPcX96r/4.png new file mode 100644 index 0000000000000000000000000000000000000000..cd88bcac547fcb6d32c6b22963471e91b2eff119 --- /dev/null +++ b/vlm/dev/QwejPcX96r/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:288e513df2f017eeabb411f76750ddae25255b957549b90e67f7f529b6ca5001 +size 756081 diff --git a/vlm/dev/QwejPcX96r/5.png b/vlm/dev/QwejPcX96r/5.png new file mode 100644 index 0000000000000000000000000000000000000000..89b0f230549b13816f1f65fb601825d34e8565d9 --- /dev/null +++ b/vlm/dev/QwejPcX96r/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a218b4377186d4d19af9c0e357d74239fd9aaec555e227fc2340d43615824cae +size 744886 diff --git a/vlm/dev/QwejPcX96r/6.png b/vlm/dev/QwejPcX96r/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0f5424f0e908a88060b2434fd7f6b43999572517 --- /dev/null +++ b/vlm/dev/QwejPcX96r/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a0503427b23da3d0f9d2d64534712daa67ade0f606f4feeb6b33a9086aaab8fa +size 764126 diff --git a/vlm/dev/QwejPcX96r/7.png b/vlm/dev/QwejPcX96r/7.png new file mode 100644 index 0000000000000000000000000000000000000000..23ac346f1c2c71ee0066e50cbad9b6aebbd8b47f --- /dev/null +++ b/vlm/dev/QwejPcX96r/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:75564949a118796c7c4d79695b3c13fe64ecefdd7ca87c9f5937620a645c3fbe +size 656474 diff --git a/vlm/dev/QwejPcX96r/8.png b/vlm/dev/QwejPcX96r/8.png new file mode 100644 index 0000000000000000000000000000000000000000..e34b684bc372745c500e4bdcc9afc45e53ba1887 --- /dev/null +++ b/vlm/dev/QwejPcX96r/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4b7d73ab52a35d18da6745b8275b5bcb9180256a61f44971137ba9c9e9e86f1 +size 744090 diff --git a/vlm/dev/QwejPcX96r/9.png b/vlm/dev/QwejPcX96r/9.png new file mode 100644 index 0000000000000000000000000000000000000000..1ac95d5b813c161832fb0f83201630371dfb7511 --- /dev/null +++ b/vlm/dev/QwejPcX96r/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8dfcc292f3d598329e6769730e2ae19a0cbe03b2b8b183fee247f025ea4c48b2 +size 784882 diff --git a/vlm/dev/S7Evzt9uit3/0.png b/vlm/dev/S7Evzt9uit3/0.png new file mode 100644 index 0000000000000000000000000000000000000000..409edb9d52426c474e8e101f395d74ea20bb265c --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a1391da162ce2d70b9100a7a2693a5143b205b4b1f4e0ebdf27252bdfb805a86 +size 431483 diff --git a/vlm/dev/S7Evzt9uit3/1.png b/vlm/dev/S7Evzt9uit3/1.png new file mode 100644 index 0000000000000000000000000000000000000000..8cea669e19080b32b1eb415258c0c45e82f38718 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08113bd2482ce895c1f2d6725547ab3815abcc39f733dbd0c245c820e58fe435 +size 825261 diff --git a/vlm/dev/S7Evzt9uit3/10.png b/vlm/dev/S7Evzt9uit3/10.png new file mode 100644 index 0000000000000000000000000000000000000000..043d68d758d2a5d79ce563fa31c242862658fd5b --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4041d52651305095c32d12c4357d0501b0587c729fa68e416262688ac9469757 +size 474005 diff --git a/vlm/dev/S7Evzt9uit3/11.png b/vlm/dev/S7Evzt9uit3/11.png new file mode 100644 index 0000000000000000000000000000000000000000..69836034da9771ad64d6a5ba587b5403bc0d680d --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:83397ef77c223925b6cc34a49030c88eb9fa98255824824333ae79f5de862d2e +size 501426 diff --git a/vlm/dev/S7Evzt9uit3/12.png b/vlm/dev/S7Evzt9uit3/12.png new file mode 100644 index 0000000000000000000000000000000000000000..27b1d991286e90d453a82d4cd6c4801afd60fed8 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e1605b1be3bf52d7ba0a9e8fafb6151cb1fe18af4e4649396ce17a7135038bf +size 274089 diff --git a/vlm/dev/S7Evzt9uit3/13.png b/vlm/dev/S7Evzt9uit3/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6b0a58fb6b9ad5c5736cd586660887b725f2045a --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ed19e5d4c897be7533e184406efde32b4f872a453425898d2a37b0c4450561e +size 315783 diff --git a/vlm/dev/S7Evzt9uit3/2.png b/vlm/dev/S7Evzt9uit3/2.png new file mode 100644 index 0000000000000000000000000000000000000000..ee7ef9a71fde95c35c5c9a6590039146bc4f2fe0 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:414fdcb72e7612f43b9f73c9586646a897ae0809d6310590f8214903a8744cfe +size 931077 diff --git a/vlm/dev/S7Evzt9uit3/3.png b/vlm/dev/S7Evzt9uit3/3.png new file mode 100644 index 0000000000000000000000000000000000000000..a7240aab75c1addbc0701b13e11bdb2a06d07470 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbd0862334e79b90c4b9338892b4b80bf30f4a23fdc1209637992c804e4f6b5 +size 568561 diff --git a/vlm/dev/S7Evzt9uit3/4.png b/vlm/dev/S7Evzt9uit3/4.png new file mode 100644 index 0000000000000000000000000000000000000000..642c5581c9732d78cf6fa4ef57c5c85dd0466886 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bb59aad56b1a11d4b1c1f1b90a93fe5ffb3522bc2a424da40251531a3e3a327 +size 527875 diff --git a/vlm/dev/S7Evzt9uit3/5.png b/vlm/dev/S7Evzt9uit3/5.png new file mode 100644 index 0000000000000000000000000000000000000000..b64dec86fc9e26db37111cf9a9a558a9e1108744 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09bbbc1008f6cb7f0e5c92295c06f102f1a503dd1f6f9d1aec00c3590b93be25 +size 817457 diff --git a/vlm/dev/S7Evzt9uit3/6.png b/vlm/dev/S7Evzt9uit3/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7484facb39173e3cdcd44b1049b2034b4d66f419 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b94ceb433f19235049042b31f8f344e121affc54b5871e3279e07dce6a23a2de +size 543426 diff --git a/vlm/dev/S7Evzt9uit3/7.png b/vlm/dev/S7Evzt9uit3/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a4243ddb6a79258a0c0cecc13d3109f364eac7d9 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dad870a3dc87a121c183d172bc99574c2945dc42806fe73c15fc4613c45833cb +size 584370 diff --git a/vlm/dev/S7Evzt9uit3/8.png b/vlm/dev/S7Evzt9uit3/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7f5e16329628613ee93f0381b5df966d3f1fc739 --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edc97aa57446f255872857149cfcdbd920fdcab02f1c3f54ef7fe53931c744ca +size 581761 diff --git a/vlm/dev/S7Evzt9uit3/9.png b/vlm/dev/S7Evzt9uit3/9.png new file mode 100644 index 0000000000000000000000000000000000000000..61df1ba2fc74ecf8e74f7f771e826c4d5f4de9be --- /dev/null +++ b/vlm/dev/S7Evzt9uit3/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19ab26d1a96eacbac69c95d91151e7fe042049d2f8cf9bde0608b0041535f5c7 +size 387506 diff --git a/vlm/dev/SJ1kSyO2jwu/10.png b/vlm/dev/SJ1kSyO2jwu/10.png new file mode 100644 index 0000000000000000000000000000000000000000..caba9b41fa49fd7aee3e93e620f93e57017fd3f4 --- /dev/null +++ b/vlm/dev/SJ1kSyO2jwu/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4aa806045acd6f0ec3ebef1c316f78945331d92d67ee24ab0eab7f5120242cf0 +size 551533 diff --git a/vlm/dev/SJ1kSyO2jwu/3.png b/vlm/dev/SJ1kSyO2jwu/3.png new file mode 100644 index 0000000000000000000000000000000000000000..e46d0e37c5178f5e4861092e7b55bf2992a79196 --- /dev/null +++ b/vlm/dev/SJ1kSyO2jwu/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5363ec171edf27d072881bdaa7051921800ba74fa2703c815890a12cae332f7 +size 464763 diff --git a/vlm/dev/SJ1kSyO2jwu/6.png b/vlm/dev/SJ1kSyO2jwu/6.png new file mode 100644 index 0000000000000000000000000000000000000000..ccff4aee04b0f75034ec612918b56e1c2d8e9473 --- /dev/null +++ b/vlm/dev/SJ1kSyO2jwu/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d867f6e6a7b5bef63e736775f751d73fd74ef3079061a0fedf46265f05944655 +size 456790 diff --git a/vlm/dev/Uczck6TlSZ/0.png b/vlm/dev/Uczck6TlSZ/0.png new file mode 100644 index 0000000000000000000000000000000000000000..cde6e5e334d2591eba9f3a883d6ae6aa17c08f1d --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f69f9f9069aef235761ad9f6d80aa5b793a7e94af501520d42a2748519ab3966 +size 455628 diff --git a/vlm/dev/Uczck6TlSZ/1.png b/vlm/dev/Uczck6TlSZ/1.png new file mode 100644 index 0000000000000000000000000000000000000000..36f483895217aa96380e0981da579f93d2edf727 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8c7b587116df1956b959398eeee2360d2b9544540883119b35afb3dcdcc73a9b +size 564028 diff --git a/vlm/dev/Uczck6TlSZ/10.png b/vlm/dev/Uczck6TlSZ/10.png new file mode 100644 index 0000000000000000000000000000000000000000..919a8cd84d314bbbb381d1617290c593ec6c5efd --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0973985774af67fe47c999ac8e33226280557bc9f16351ef34f9cb3af8cce8e7 +size 549342 diff --git a/vlm/dev/Uczck6TlSZ/11.png b/vlm/dev/Uczck6TlSZ/11.png new file mode 100644 index 0000000000000000000000000000000000000000..571cc6ebcac3be52517e97481bd68aa57a8a718b --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:39d114a43c27d23a51bcf230fe0ec6c35e1b10c0302be9015e7f3e4e8e8e2284 +size 508576 diff --git a/vlm/dev/Uczck6TlSZ/12.png b/vlm/dev/Uczck6TlSZ/12.png new file mode 100644 index 0000000000000000000000000000000000000000..630167b30b4615e7d4a04faf937f4b61ec6666b6 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecec9f7289d06e081e9e074cdbcefaa5b7ade63947e4dc02744ea9b586a3906b +size 531839 diff --git a/vlm/dev/Uczck6TlSZ/13.png b/vlm/dev/Uczck6TlSZ/13.png new file mode 100644 index 0000000000000000000000000000000000000000..cca30e4c10e987ccfb5ff9f734471f6c1fe5a61d --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8f79b96d2524fb26fc5ad5e0f16f40c3de7b5207dda7f12798a6e9bdbffcc51 +size 320297 diff --git a/vlm/dev/Uczck6TlSZ/14.png b/vlm/dev/Uczck6TlSZ/14.png new file mode 100644 index 0000000000000000000000000000000000000000..d042480478dd8aef07c57811f2deb80990fb25ca --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b4c5d76b44c18eb2435f862a176aa1d47d9e78d47984369b61de05df97801abe +size 565982 diff --git a/vlm/dev/Uczck6TlSZ/15.png b/vlm/dev/Uczck6TlSZ/15.png new file mode 100644 index 0000000000000000000000000000000000000000..29a33f4bcba238bb6b48a02d23c49720345c1c45 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d03d8f47e7c5ffbdc3aaa0663965d2932bc12eecb7a037d2cfb0690299bf235e +size 552865 diff --git a/vlm/dev/Uczck6TlSZ/16.png b/vlm/dev/Uczck6TlSZ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..79bbda89e85637b9146997dae95acb936b59c2f9 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1f58542da3af783edde2154e3eeeaa7b4a1b02f5436a336bebf94615fa485bac +size 450045 diff --git a/vlm/dev/Uczck6TlSZ/17.png b/vlm/dev/Uczck6TlSZ/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ec38aec30c78fec2b629e108de998100e93759c3 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5ffc7fb83ebb3b126cd359403355ef2eb37191a93fe8817b5e40661674aea186 +size 1177308 diff --git a/vlm/dev/Uczck6TlSZ/18.png b/vlm/dev/Uczck6TlSZ/18.png new file mode 100644 index 0000000000000000000000000000000000000000..e7b694591c3a51efc67a77c0025bd46abde5679e --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:878d778d8c3c987cf98bca92bc62ce83993959e096d525f9563767e460d360f7 +size 497105 diff --git a/vlm/dev/Uczck6TlSZ/19.png b/vlm/dev/Uczck6TlSZ/19.png new file mode 100644 index 0000000000000000000000000000000000000000..143dbce3312fb4f500419e2a260263dc11e99dd1 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1ad0b3c59a70796cf414592afd0239905ccfc97665ad83ff6ba9ceebc5b284dc +size 353361 diff --git a/vlm/dev/Uczck6TlSZ/2.png b/vlm/dev/Uczck6TlSZ/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4ba35d054133583253d352ff5fef3d827841131d --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:622718c2132f6c849d09882791e018bd1d32e5d883abe79d0c6ef8a583763216 +size 560470 diff --git a/vlm/dev/Uczck6TlSZ/3.png b/vlm/dev/Uczck6TlSZ/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4ddef117cc9f632882b8e85272757aaa78496c10 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7648acd9a74e5eec7a83afd7f6f5e7bb55437d75a20b55e385b0a37ff3b71b79 +size 593669 diff --git a/vlm/dev/Uczck6TlSZ/4.png b/vlm/dev/Uczck6TlSZ/4.png new file mode 100644 index 0000000000000000000000000000000000000000..bbc6a6c031324283ed66bb33e33bb18e25c6dcc9 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:466863e667b75f2c0807b0fd0683c4cb5ac604511b062da5e898b3ad700a65eb +size 555098 diff --git a/vlm/dev/Uczck6TlSZ/5.png b/vlm/dev/Uczck6TlSZ/5.png new file mode 100644 index 0000000000000000000000000000000000000000..8acba1cd14bd699cca6a3080845ad60e8dc555e3 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:edacf9418186c8389b8cc605fa20f726014ad5affe3098edb8134bd8ba7cafea +size 564120 diff --git a/vlm/dev/Uczck6TlSZ/6.png b/vlm/dev/Uczck6TlSZ/6.png new file mode 100644 index 0000000000000000000000000000000000000000..0fd76434960a6bc3ecf9e49466aa8d4015f7f6ab --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d4368f672c82a9755057fd7d015101ce38fe4e3a006d92a95f3e066dbdb9be06 +size 1185708 diff --git a/vlm/dev/Uczck6TlSZ/7.png b/vlm/dev/Uczck6TlSZ/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f9a21ae64403f0fa65589f02392719c9692d86ea --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2077794ceee2d3adb094218eed4d4d744299f1b303ee668f2742540c56fb0c6b +size 573301 diff --git a/vlm/dev/Uczck6TlSZ/8.png b/vlm/dev/Uczck6TlSZ/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c6888402f38911e8bd0f92530132643fc9133de7 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a84f04c3bf5780b5c5fb9a3dfeb13c34f0b6ea1b3915ef53ca3eb2bd13ab73a5 +size 481134 diff --git a/vlm/dev/Uczck6TlSZ/9.png b/vlm/dev/Uczck6TlSZ/9.png new file mode 100644 index 0000000000000000000000000000000000000000..f28a1bb5e634db1281f1578a75f9d19edbbeb534 --- /dev/null +++ b/vlm/dev/Uczck6TlSZ/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:997d329d9328e3c3ca97a2001b469c35f8af782711c317b33ddcc12e99aa7a65 +size 544291 diff --git a/vlm/dev/YevsQ05DEN7/10.png b/vlm/dev/YevsQ05DEN7/10.png new file mode 100644 index 0000000000000000000000000000000000000000..91f7cfd5139690550ce3db1b5f1425773ed6ed7e --- /dev/null +++ b/vlm/dev/YevsQ05DEN7/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01ff340dad9e90ca7873baedf0751ec64d9ded47c960a5a914906600bbdf68af +size 421222 diff --git a/vlm/dev/YevsQ05DEN7/3.png b/vlm/dev/YevsQ05DEN7/3.png new file mode 100644 index 0000000000000000000000000000000000000000..03c56cf26257adc8949309a88ee53eb9b5c9a21d --- /dev/null +++ b/vlm/dev/YevsQ05DEN7/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6f208a9fa532b23a1966de608fd79f819f1fa8fed491f8283f2449cf4c85c7b7 +size 458529 diff --git a/vlm/dev/YevsQ05DEN7/6.png b/vlm/dev/YevsQ05DEN7/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7a2b501ea883cff32f24036737a5f063aff49f2c --- /dev/null +++ b/vlm/dev/YevsQ05DEN7/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:794370af14ac485327c71e65178cc5411e575cb66717af5bf682ff27261d03f2 +size 439850 diff --git a/vlm/dev/YevsQ05DEN7/9.png b/vlm/dev/YevsQ05DEN7/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e8b5478d6bf9f5b6ddde3dcf31569995017c941e --- /dev/null +++ b/vlm/dev/YevsQ05DEN7/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5cbe23f5f17bf84c7c7c3de5b43b5d9d5639f8cfcda22e8f066927ed66fa08d1 +size 514130 diff --git a/vlm/dev/aLLuYpn83y/0.png b/vlm/dev/aLLuYpn83y/0.png new file mode 100644 index 0000000000000000000000000000000000000000..8bcfc0fb05715f033b50dfe45548c77f534dd2e4 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30cd87429e483dbfb31cd0d14642f9baf57c5fe974bb7d72ef8be6dae1601c98 +size 520667 diff --git a/vlm/dev/aLLuYpn83y/1.png b/vlm/dev/aLLuYpn83y/1.png new file mode 100644 index 0000000000000000000000000000000000000000..76d6c10a3fae78e35e5cd753295099ae88109e16 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3327f3d76bfc16cbd6a40cef3a0c132fbba7c423bd8e2d844f3c0c07a84861be +size 602316 diff --git a/vlm/dev/aLLuYpn83y/10.png b/vlm/dev/aLLuYpn83y/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9e57541e439580e9bbbefa11921e3adb4e605406 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:969ba55611e8905406144244dd3f84c6ae693f46b60dadf37bee410cf8b06a50 +size 515651 diff --git a/vlm/dev/aLLuYpn83y/11.png b/vlm/dev/aLLuYpn83y/11.png new file mode 100644 index 0000000000000000000000000000000000000000..8c778f9e256236bfff63079d6135040bc34fad8f --- /dev/null +++ b/vlm/dev/aLLuYpn83y/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d547f9d28ca211b487e67bcceaab0e962ac9bccdc7593a3e4ac745191e2c0ed9 +size 548691 diff --git a/vlm/dev/aLLuYpn83y/12.png b/vlm/dev/aLLuYpn83y/12.png new file mode 100644 index 0000000000000000000000000000000000000000..37964a3c0f2aa540eb16bea2ecab46032e4d7972 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ff182bf5698716d483236fab7debf49647fe12247521e54731eb2093703cc332 +size 511129 diff --git a/vlm/dev/aLLuYpn83y/13.png b/vlm/dev/aLLuYpn83y/13.png new file mode 100644 index 0000000000000000000000000000000000000000..53c9020bfbe0409cf27a2666cd876d2f9583564c --- /dev/null +++ b/vlm/dev/aLLuYpn83y/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccd828e90d3ea4d599b3c74f91769435056f90c13d0c1ab034d14e1610108cd8 +size 102900 diff --git a/vlm/dev/aLLuYpn83y/14.png b/vlm/dev/aLLuYpn83y/14.png new file mode 100644 index 0000000000000000000000000000000000000000..eb343ca524f4e8c27ad57d3d458860b651423f22 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59a2473f2c46648fe13052d1ba49061aff0f34e5c1f22984a4138944779b6efb +size 139099 diff --git a/vlm/dev/aLLuYpn83y/15.png b/vlm/dev/aLLuYpn83y/15.png new file mode 100644 index 0000000000000000000000000000000000000000..3c6f194400df49e6aec9b9f51ccc4b3ced2830e1 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:872c16b525f4178e43ac08f40e5f7ac04c0e384795af92c70744a814d5fc5afe +size 403385 diff --git a/vlm/dev/aLLuYpn83y/16.png b/vlm/dev/aLLuYpn83y/16.png new file mode 100644 index 0000000000000000000000000000000000000000..908c70ee12fce1a76b4ef55ea3cac51fec01d89b --- /dev/null +++ b/vlm/dev/aLLuYpn83y/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72645394a98b6d0bb18560573b67164cbf6115d208c773a8e37411878f372fbc +size 476024 diff --git a/vlm/dev/aLLuYpn83y/17.png b/vlm/dev/aLLuYpn83y/17.png new file mode 100644 index 0000000000000000000000000000000000000000..43b73b058bb420a8a5c5b0ec4dc4b97fe69224df --- /dev/null +++ b/vlm/dev/aLLuYpn83y/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3057c1e32edf89e8a0f449f04a94357ac42bdaf2091e77c2c0b6f3d9b2a84219 +size 489839 diff --git a/vlm/dev/aLLuYpn83y/18.png b/vlm/dev/aLLuYpn83y/18.png new file mode 100644 index 0000000000000000000000000000000000000000..3bbd670869ad344c38ba95c6d6022949293f2ce9 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a86c458fd6fab5b39a7308f37a3a6e85e760404bc31af07e777b7b258e10e7f +size 485333 diff --git a/vlm/dev/aLLuYpn83y/19.png b/vlm/dev/aLLuYpn83y/19.png new file mode 100644 index 0000000000000000000000000000000000000000..aac6c4fd8df11ac2bb8cf9dc7523312fbfd67519 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddd863f4f45c44e299883135c24227e61e26c0f930275bfa10cde7cdeeb27a81 +size 491009 diff --git a/vlm/dev/aLLuYpn83y/2.png b/vlm/dev/aLLuYpn83y/2.png new file mode 100644 index 0000000000000000000000000000000000000000..3f1346473d89eeb6d40abe93451977d9ebaa8797 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02c969db21dce8d5dd631f7436c9322918fcac16f2e2bfed21f5681d76d5ea97 +size 505296 diff --git a/vlm/dev/aLLuYpn83y/20.png b/vlm/dev/aLLuYpn83y/20.png new file mode 100644 index 0000000000000000000000000000000000000000..683066c67d3ea1740dcda78ff7962ebb4cfb03d5 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fb6c59ddc64e259b35a9bcd526c32c883d7d6bd55e8430be7c32fb418e37275 +size 464887 diff --git a/vlm/dev/aLLuYpn83y/21.png b/vlm/dev/aLLuYpn83y/21.png new file mode 100644 index 0000000000000000000000000000000000000000..284a7b0acc1c1032734b8bf081403b76d9cd4406 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:776b5fe7bbf5ad4101f9dd6a36aa31a98dd02eda81721752faa02537384f494d +size 467493 diff --git a/vlm/dev/aLLuYpn83y/22.png b/vlm/dev/aLLuYpn83y/22.png new file mode 100644 index 0000000000000000000000000000000000000000..86630776808b4da7fb181bfb2e32a1a4aff72cff --- /dev/null +++ b/vlm/dev/aLLuYpn83y/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3e7ce0e7292440889ee9b61ff1c512984781bdd983eba3383188507e4cfe0fa3 +size 527122 diff --git a/vlm/dev/aLLuYpn83y/23.png b/vlm/dev/aLLuYpn83y/23.png new file mode 100644 index 0000000000000000000000000000000000000000..976b0f3010f32f0b9e2b03125d10f15d72e4673a --- /dev/null +++ b/vlm/dev/aLLuYpn83y/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc4980820ea439a999ded34282c07aba561067237cad95eda1a4d4ab5641e8ee +size 484519 diff --git a/vlm/dev/aLLuYpn83y/24.png b/vlm/dev/aLLuYpn83y/24.png new file mode 100644 index 0000000000000000000000000000000000000000..f4470b91076b1e3fb9626190cfeaff2229533da7 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:23455bc68aa98f4af95131cb8e9a8d6bd23e0f0176791c112426e1870afb3fc6 +size 513375 diff --git a/vlm/dev/aLLuYpn83y/25.png b/vlm/dev/aLLuYpn83y/25.png new file mode 100644 index 0000000000000000000000000000000000000000..ce1b7137517d191d8ad7c12becd56d62815e35a9 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c29b172fdd5cdaa4e8450623449581c9bffac4b54a578099913338903fd11724 +size 496079 diff --git a/vlm/dev/aLLuYpn83y/26.png b/vlm/dev/aLLuYpn83y/26.png new file mode 100644 index 0000000000000000000000000000000000000000..3228c20b1a9fc74969353df03a16b7e8a58045a6 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd67ded9c7cdf2d602412d8ac994354c995760e34b4233498442353043208dfd +size 453719 diff --git a/vlm/dev/aLLuYpn83y/27.png b/vlm/dev/aLLuYpn83y/27.png new file mode 100644 index 0000000000000000000000000000000000000000..bb67e70c001038a277e1613c31a219d225611b4c --- /dev/null +++ b/vlm/dev/aLLuYpn83y/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dca8e910c559d071069c4358a81432d44f114e96546f0c6ed37b11f01106a68 +size 442631 diff --git a/vlm/dev/aLLuYpn83y/28.png b/vlm/dev/aLLuYpn83y/28.png new file mode 100644 index 0000000000000000000000000000000000000000..c1481b2d7880a5253f770e4c927d71538339c323 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6f36e7a915381990094caa77aa381b7fbde5f0db74af9f6af21e3a9c7703969 +size 396155 diff --git a/vlm/dev/aLLuYpn83y/29.png b/vlm/dev/aLLuYpn83y/29.png new file mode 100644 index 0000000000000000000000000000000000000000..b9418c53c86762a11c6372536acf1b800d0483c1 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f9cc6b34e642dd3d79fd8efd21a5c056a470e0ae1f7f691d6cd7150b4cfdc371 +size 440348 diff --git a/vlm/dev/aLLuYpn83y/3.png b/vlm/dev/aLLuYpn83y/3.png new file mode 100644 index 0000000000000000000000000000000000000000..9f63d10e17c88a1a8847a8654f02e40bb5f06d95 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:daa840278cb0f61c79a27a56ec24d9696ef2bd36ecccd4e87f455ec535ee70d1 +size 558300 diff --git a/vlm/dev/aLLuYpn83y/30.png b/vlm/dev/aLLuYpn83y/30.png new file mode 100644 index 0000000000000000000000000000000000000000..75029fee57cc25af807e05f94d36b27af43308f6 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f3301b1f113d88b180256630680e89b9de6a9b38aef9792400e636917eb872ea +size 446685 diff --git a/vlm/dev/aLLuYpn83y/31.png b/vlm/dev/aLLuYpn83y/31.png new file mode 100644 index 0000000000000000000000000000000000000000..54a9432a57119970bd598ac26796114e72a078cc --- /dev/null +++ b/vlm/dev/aLLuYpn83y/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19018026c44947f8f2293ef49a61517ec767d70179d54a18d5df3b14b7287620 +size 479733 diff --git a/vlm/dev/aLLuYpn83y/32.png b/vlm/dev/aLLuYpn83y/32.png new file mode 100644 index 0000000000000000000000000000000000000000..cc98a365de83adcc93cc77513607719b4bafe67d --- /dev/null +++ b/vlm/dev/aLLuYpn83y/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4b1d91f880eec60e0714c1c2d4785881c77be44a1efc416b98256d2123bcc906 +size 466333 diff --git a/vlm/dev/aLLuYpn83y/33.png b/vlm/dev/aLLuYpn83y/33.png new file mode 100644 index 0000000000000000000000000000000000000000..983a89179e0632b15fb17a79c87c2f9848e71cde --- /dev/null +++ b/vlm/dev/aLLuYpn83y/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2fc01d78f1a231a11f6bac5db750663bec18b7fb9bbc8e431f7e21911c7c7d0c +size 460197 diff --git a/vlm/dev/aLLuYpn83y/34.png b/vlm/dev/aLLuYpn83y/34.png new file mode 100644 index 0000000000000000000000000000000000000000..9ceb49c1b8ca7705e911663c2ed0269e7353a9bb --- /dev/null +++ b/vlm/dev/aLLuYpn83y/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cfb5f09d0f6a02ba6dca4af6ea6bbc7b985c0b3dd00c4bf9a3520c4ef3cd32a9 +size 416770 diff --git a/vlm/dev/aLLuYpn83y/35.png b/vlm/dev/aLLuYpn83y/35.png new file mode 100644 index 0000000000000000000000000000000000000000..f0a89f80f43ccd6e6d8093da41e40740ce9dcbf6 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a95ec8c1a04a8d1b4aabb5ecc092b63cc2b942ecaf37b9bebc6a523f8e82229a +size 362760 diff --git a/vlm/dev/aLLuYpn83y/36.png b/vlm/dev/aLLuYpn83y/36.png new file mode 100644 index 0000000000000000000000000000000000000000..da51dd66c85682d3242329b81e819e3f58bf40e4 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/36.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eae1e844b7e68c4e79848663d2897a25bab1b7c3b2bffbb62d5dcf8a012fbc24 +size 440230 diff --git a/vlm/dev/aLLuYpn83y/37.png b/vlm/dev/aLLuYpn83y/37.png new file mode 100644 index 0000000000000000000000000000000000000000..d1f295fafd09b4ac56511e221507f5c845c2f383 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/37.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b93d866ce7c4344d008d40c3d6bfa803ce1b7b27f8c023dea7e31eb1be076091 +size 424542 diff --git a/vlm/dev/aLLuYpn83y/38.png b/vlm/dev/aLLuYpn83y/38.png new file mode 100644 index 0000000000000000000000000000000000000000..ad5e4748eae51fa62d08cb6ef60fc4cdc5887da6 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/38.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:94c5e20e8c39d7b9c2b5f6c8ee726267a7acdbc140295bd389c3974eedb1ded4 +size 441475 diff --git a/vlm/dev/aLLuYpn83y/39.png b/vlm/dev/aLLuYpn83y/39.png new file mode 100644 index 0000000000000000000000000000000000000000..aaefecc4d2349f41bd2de014e742b4c595af6035 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/39.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f28cb74664b039826bfb746764d4bc5f4cb74124222d05dc624f798e988a8a4e +size 511063 diff --git a/vlm/dev/aLLuYpn83y/4.png b/vlm/dev/aLLuYpn83y/4.png new file mode 100644 index 0000000000000000000000000000000000000000..73bcd1abada64f61fd39543aa730f9a158ae5315 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:93b6b1180b0def611cb4badcb585a362be4dd89fb01f5412aa0328903e38795e +size 422689 diff --git a/vlm/dev/aLLuYpn83y/40.png b/vlm/dev/aLLuYpn83y/40.png new file mode 100644 index 0000000000000000000000000000000000000000..09ca0bce1e00710cb51bdde52e5e80f86f4edf6f --- /dev/null +++ b/vlm/dev/aLLuYpn83y/40.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c1259d0f0c63f25547c56c1836e9b2b85f27820c5dd1ad8d793014d7cc05866 +size 464021 diff --git a/vlm/dev/aLLuYpn83y/41.png b/vlm/dev/aLLuYpn83y/41.png new file mode 100644 index 0000000000000000000000000000000000000000..208482ba5e450cbbbdaa8f8e5a91580f64cf004b --- /dev/null +++ b/vlm/dev/aLLuYpn83y/41.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed29b417928af44295a108b77b7aa624ebbafdeb7d23c547797127d6f94c1acf +size 472914 diff --git a/vlm/dev/aLLuYpn83y/42.png b/vlm/dev/aLLuYpn83y/42.png new file mode 100644 index 0000000000000000000000000000000000000000..f9f7774e6b6904936c6bb4ffc8d821769aeb2d94 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/42.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d95cf33826202e742e6002192cd9d4d4d44c60ced19f9ce064f736fa98def310 +size 456691 diff --git a/vlm/dev/aLLuYpn83y/43.png b/vlm/dev/aLLuYpn83y/43.png new file mode 100644 index 0000000000000000000000000000000000000000..73efa01a4c3368c8eae4bcaea86ec2e96e579926 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/43.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6c33fe26033df783c1b0dff45b49612ce544dc21e48a74b5d048ddb59ab860ef +size 485079 diff --git a/vlm/dev/aLLuYpn83y/44.png b/vlm/dev/aLLuYpn83y/44.png new file mode 100644 index 0000000000000000000000000000000000000000..002c658541676b8a06c89a5ea6013977015531cf --- /dev/null +++ b/vlm/dev/aLLuYpn83y/44.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0140df1bcbad3fe593eb8d83ad486c5919fdd44050ab779904c1575dfc4484 +size 488096 diff --git a/vlm/dev/aLLuYpn83y/45.png b/vlm/dev/aLLuYpn83y/45.png new file mode 100644 index 0000000000000000000000000000000000000000..5ec43d4e928117c2bede68b20463787a8b48ae2b --- /dev/null +++ b/vlm/dev/aLLuYpn83y/45.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2a99de8139464353b670fa806ecae862ba19d84b9b46be4af77d83ace484dde1 +size 435157 diff --git a/vlm/dev/aLLuYpn83y/46.png b/vlm/dev/aLLuYpn83y/46.png new file mode 100644 index 0000000000000000000000000000000000000000..d3e332bb61ec919e5e6560d02919bbb02456a001 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/46.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2f79ff71e33a6e73bfa1a9f2117d887d26d98de62f606c21bf1f50f6b271228 +size 375705 diff --git a/vlm/dev/aLLuYpn83y/47.png b/vlm/dev/aLLuYpn83y/47.png new file mode 100644 index 0000000000000000000000000000000000000000..e33938a2bd20be892a4955d0e39ad8657047661f --- /dev/null +++ b/vlm/dev/aLLuYpn83y/47.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffc516306a66466aeb0a749e6880d1aadf2c9ce3ebe37ecfac0f434023e23f98 +size 435540 diff --git a/vlm/dev/aLLuYpn83y/48.png b/vlm/dev/aLLuYpn83y/48.png new file mode 100644 index 0000000000000000000000000000000000000000..212264d4a5a7c66085a2d032b66dcb3e2baacd39 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/48.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:463d17bc4c3afec3c647d8298082a3c41daf35c2c449427d714c50c3aa9f8fd0 +size 461231 diff --git a/vlm/dev/aLLuYpn83y/49.png b/vlm/dev/aLLuYpn83y/49.png new file mode 100644 index 0000000000000000000000000000000000000000..7560b2741cd543dd9097674803296be0ea7b5dd2 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/49.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34b6178dcd975bef11c037dcd156ae291895eb140109faf82857cd1da0c4fa97 +size 486367 diff --git a/vlm/dev/aLLuYpn83y/5.png b/vlm/dev/aLLuYpn83y/5.png new file mode 100644 index 0000000000000000000000000000000000000000..f728afdf5018ea0d3b9434123ada33cccb25341b --- /dev/null +++ b/vlm/dev/aLLuYpn83y/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ffd20945edee8576ba4a2bbb042d17a3b7b3885059035ccefeb02cf504753dab +size 575917 diff --git a/vlm/dev/aLLuYpn83y/50.png b/vlm/dev/aLLuYpn83y/50.png new file mode 100644 index 0000000000000000000000000000000000000000..3bb7f6a1b7373270f61b5f25f994872f159fe2c8 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/50.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5bd10b2c50bd805330ad2c8e3ee25ddf678841f292bba39a591731ce1f3f1653 +size 485556 diff --git a/vlm/dev/aLLuYpn83y/51.png b/vlm/dev/aLLuYpn83y/51.png new file mode 100644 index 0000000000000000000000000000000000000000..e92e027c917e5ac3adf79d5d6c31670b0ae04ff4 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/51.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e67805ef4e2cf52d49534f2653fdd8192aa04da8ac77b7a7b8d0709d34397126 +size 502392 diff --git a/vlm/dev/aLLuYpn83y/52.png b/vlm/dev/aLLuYpn83y/52.png new file mode 100644 index 0000000000000000000000000000000000000000..b916da6e33cff6fcf45a238c00ba488aa22ed9b1 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/52.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24270614bef7cf445e521cff29bfa6aa285577c102e1cb3fdd25567aa4435097 +size 461746 diff --git a/vlm/dev/aLLuYpn83y/53.png b/vlm/dev/aLLuYpn83y/53.png new file mode 100644 index 0000000000000000000000000000000000000000..587bb3087b4f6d7983986237e549b8cb67ed2c87 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/53.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccedfeb02604054a0f4b401a7b3a88db2c62885c9f6f69d42065d9226312bfa1 +size 456419 diff --git a/vlm/dev/aLLuYpn83y/54.png b/vlm/dev/aLLuYpn83y/54.png new file mode 100644 index 0000000000000000000000000000000000000000..9d0a77e8cc8c9d267a4f4722a1b1660b572a3903 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/54.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:222268c9cc6d8629f25b5c2ca97b4ef45074c744f86c9cac1d4192f7bc397bf0 +size 433918 diff --git a/vlm/dev/aLLuYpn83y/55.png b/vlm/dev/aLLuYpn83y/55.png new file mode 100644 index 0000000000000000000000000000000000000000..1b96da4b5c0233288b6b9c5ba5b9d6a2b1374c3e --- /dev/null +++ b/vlm/dev/aLLuYpn83y/55.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a441207dff149484f0f6301d3738d08a2632b35fdd39b34011cb8de4e2b1814 +size 492505 diff --git a/vlm/dev/aLLuYpn83y/56.png b/vlm/dev/aLLuYpn83y/56.png new file mode 100644 index 0000000000000000000000000000000000000000..dfeb340b5338e4d8f5736d85a68c80f5756a8725 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/56.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:98e00e9f38ce9849cbf70037d35a30ff7c2e412d7532e67f5e190104c6c2dd9e +size 467421 diff --git a/vlm/dev/aLLuYpn83y/57.png b/vlm/dev/aLLuYpn83y/57.png new file mode 100644 index 0000000000000000000000000000000000000000..786750820cca8e93f3a8b7684ce775a167aebfea --- /dev/null +++ b/vlm/dev/aLLuYpn83y/57.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d0b67de7ed96a349940c711dd8495ec38042dbdf8ce75004f6c9b8ffb2388c8 +size 413107 diff --git a/vlm/dev/aLLuYpn83y/58.png b/vlm/dev/aLLuYpn83y/58.png new file mode 100644 index 0000000000000000000000000000000000000000..c3dbe9d06f62be056865c31dd9c802ad17097223 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/58.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4d34396f858719d733c38a5af81507e1f6c4f263f017181a59fc1a6b80751703 +size 444796 diff --git a/vlm/dev/aLLuYpn83y/59.png b/vlm/dev/aLLuYpn83y/59.png new file mode 100644 index 0000000000000000000000000000000000000000..3cf319ce3e45f4a12d084aaf4f21297e2be27b1e --- /dev/null +++ b/vlm/dev/aLLuYpn83y/59.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:06521d8360503fb72db91889f618896f59a076fc676235f8843cafb3d35baf86 +size 453487 diff --git a/vlm/dev/aLLuYpn83y/6.png b/vlm/dev/aLLuYpn83y/6.png new file mode 100644 index 0000000000000000000000000000000000000000..a8f020ec0ab50fd2e6b48d0d699d3afac25f85dd --- /dev/null +++ b/vlm/dev/aLLuYpn83y/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:981e8d31ee4682184ed63095b1d0ef581618c42c286131744cd1a4c016d1aba1 +size 541280 diff --git a/vlm/dev/aLLuYpn83y/60.png b/vlm/dev/aLLuYpn83y/60.png new file mode 100644 index 0000000000000000000000000000000000000000..aaae59155885e2f0f5fb634198bab58bd2e398ef --- /dev/null +++ b/vlm/dev/aLLuYpn83y/60.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:789e5461018cb9180f337ff13c4a4a911340f0f640d8f9758a0c60009742d6c2 +size 449626 diff --git a/vlm/dev/aLLuYpn83y/61.png b/vlm/dev/aLLuYpn83y/61.png new file mode 100644 index 0000000000000000000000000000000000000000..8e4225414f0a411905057947e0a03d31cc9da1d5 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/61.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:11623054688287cefb8a85ee08e335b58b170b0ce339853e424abc6b877f8637 +size 463024 diff --git a/vlm/dev/aLLuYpn83y/62.png b/vlm/dev/aLLuYpn83y/62.png new file mode 100644 index 0000000000000000000000000000000000000000..651f1d2b88ac7e6d581969e6b50d5a30d64b78fc --- /dev/null +++ b/vlm/dev/aLLuYpn83y/62.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8aa99f445aee7e8854d4ac1fc217e27aa7cc64bdf335daec1d83fc9742be80fe +size 407766 diff --git a/vlm/dev/aLLuYpn83y/63.png b/vlm/dev/aLLuYpn83y/63.png new file mode 100644 index 0000000000000000000000000000000000000000..d9207700d1c297f893f370832aa5a2fedadec7ca --- /dev/null +++ b/vlm/dev/aLLuYpn83y/63.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8b35182dfc541958c16deff16730172fa6c0918c29e8df936390a60188aa0c2 +size 475782 diff --git a/vlm/dev/aLLuYpn83y/64.png b/vlm/dev/aLLuYpn83y/64.png new file mode 100644 index 0000000000000000000000000000000000000000..9ae1b9f3d75ca373ec0814dd110fcc17acb49ebc --- /dev/null +++ b/vlm/dev/aLLuYpn83y/64.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c973d631dc2e9145b31b873502d927273e80daf8a2cda0be1f2e86e713d403e6 +size 429127 diff --git a/vlm/dev/aLLuYpn83y/65.png b/vlm/dev/aLLuYpn83y/65.png new file mode 100644 index 0000000000000000000000000000000000000000..bd962037e51309c979732da4c20951a4d9113519 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/65.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ddb47f96bbc5ee01232f36d75b5119351738a468ea1af190cb9331bff8c67b9c +size 429522 diff --git a/vlm/dev/aLLuYpn83y/66.png b/vlm/dev/aLLuYpn83y/66.png new file mode 100644 index 0000000000000000000000000000000000000000..8bdcf9ba184addcebcbf1e964d017edbb6642e7c --- /dev/null +++ b/vlm/dev/aLLuYpn83y/66.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5fb507fa78b285fef999106ee96af2514a92c9d4ceab6b07b6ce75ef484de597 +size 465141 diff --git a/vlm/dev/aLLuYpn83y/67.png b/vlm/dev/aLLuYpn83y/67.png new file mode 100644 index 0000000000000000000000000000000000000000..1c8db559ca2058f2473c4f2d741a059173bc4899 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/67.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:65b15b0cd11675014af01c540d4fd05c3c10c86dd40c1ef0fd15e5506dd5f553 +size 493108 diff --git a/vlm/dev/aLLuYpn83y/68.png b/vlm/dev/aLLuYpn83y/68.png new file mode 100644 index 0000000000000000000000000000000000000000..a5a7aef9c104127932a0ade26e39a0dd32d9e77d --- /dev/null +++ b/vlm/dev/aLLuYpn83y/68.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61b4bea07a0de2955c7daa0e4aceb78c856f5d8dd0a51718784cef055285a798 +size 481084 diff --git a/vlm/dev/aLLuYpn83y/69.png b/vlm/dev/aLLuYpn83y/69.png new file mode 100644 index 0000000000000000000000000000000000000000..967d09bf114e8d17004de80132c21db1b413d0a2 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/69.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c96e9f4a198e98f1cebf3bb2ba2c31bbd50e7a63e7f02f23fdd96d94c14cf55b +size 481257 diff --git a/vlm/dev/aLLuYpn83y/7.png b/vlm/dev/aLLuYpn83y/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9d64a28517a696a721d11991f7025bac5894e024 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b6ba1dc58dff4230e541b851b92788a66d5e1e71e86819f5243710df6f2e1a6a +size 413910 diff --git a/vlm/dev/aLLuYpn83y/70.png b/vlm/dev/aLLuYpn83y/70.png new file mode 100644 index 0000000000000000000000000000000000000000..561779984acd98e977c066a117743723838f69c8 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/70.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f5aa457cdf3f3e4b9fc9affe6fe535364b7ad516d932a4a30b73d16b679f5aac +size 440707 diff --git a/vlm/dev/aLLuYpn83y/71.png b/vlm/dev/aLLuYpn83y/71.png new file mode 100644 index 0000000000000000000000000000000000000000..e5468b727974b1d863111752709ae3e3f1e637af --- /dev/null +++ b/vlm/dev/aLLuYpn83y/71.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6da6517fb5db0198875bedf83995a3516117fd90126e50891d2e40cf58cb5950 +size 442248 diff --git a/vlm/dev/aLLuYpn83y/72.png b/vlm/dev/aLLuYpn83y/72.png new file mode 100644 index 0000000000000000000000000000000000000000..fb662eccf614f82868eceb53e51cd8add97f7768 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/72.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:66f8bd96afc20a7256e96e2baf3a2f650440d39a12aa10b926c56e70cdf8e732 +size 436802 diff --git a/vlm/dev/aLLuYpn83y/73.png b/vlm/dev/aLLuYpn83y/73.png new file mode 100644 index 0000000000000000000000000000000000000000..ceac3ac543a8eb9f3cdc1d0dce6634ca7e526370 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/73.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41bdca4531d75620035018186959ab3b122665015e71afd8a78e1cf4746ea298 +size 412105 diff --git a/vlm/dev/aLLuYpn83y/74.png b/vlm/dev/aLLuYpn83y/74.png new file mode 100644 index 0000000000000000000000000000000000000000..45ac9ebc785e95f186d9eb1924e4567149f19cd7 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/74.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:43fd885560cdc71a733629ebeee7ad57beed451dfe38e3668a76e09ee1325f68 +size 469864 diff --git a/vlm/dev/aLLuYpn83y/75.png b/vlm/dev/aLLuYpn83y/75.png new file mode 100644 index 0000000000000000000000000000000000000000..02703ca5f6ac957286d03d4138841914b504becd --- /dev/null +++ b/vlm/dev/aLLuYpn83y/75.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f68a8e7b24f61ee3598ad13c0e08fea8b44dbb836849f7fd925ec475604cb686 +size 430008 diff --git a/vlm/dev/aLLuYpn83y/76.png b/vlm/dev/aLLuYpn83y/76.png new file mode 100644 index 0000000000000000000000000000000000000000..1cc207e080d682c8597b589ba656f48a26582943 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/76.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:01af31e890ed38c96a3fa1ffc38095f3bc6f9e159443a79da17c45fa5506e65b +size 185666 diff --git a/vlm/dev/aLLuYpn83y/77.png b/vlm/dev/aLLuYpn83y/77.png new file mode 100644 index 0000000000000000000000000000000000000000..82736d5cfab03da9382922989e9494ed70b83d45 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/77.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a69692c770f44c003d83d11dbd3a54dcb99f0e8cbffee2100bce3e574e5c87a8 +size 475021 diff --git a/vlm/dev/aLLuYpn83y/78.png b/vlm/dev/aLLuYpn83y/78.png new file mode 100644 index 0000000000000000000000000000000000000000..85e5aa9b9040c3d0a9e3b12f8b9ee7568e3763a0 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/78.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f7408bbaf8178f92b5d93a5d79e07eb9cfdc10176e043f3b96a9d82dd06b6ba3 +size 300480 diff --git a/vlm/dev/aLLuYpn83y/79.png b/vlm/dev/aLLuYpn83y/79.png new file mode 100644 index 0000000000000000000000000000000000000000..9bdfe74cf024f540f361b3ec3c46e5995b5a264d --- /dev/null +++ b/vlm/dev/aLLuYpn83y/79.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1a574e943579a86e6a1321b15c15ebc3880ffddf8f449d9b5cba1d8fd8e4e9af +size 211481 diff --git a/vlm/dev/aLLuYpn83y/8.png b/vlm/dev/aLLuYpn83y/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0f7e9ac22e0a1a51ed7157335214012ba5adb131 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:753c641d985ecf9231550f4022d152ab6247fcc458735f761d4401cba546f9db +size 504115 diff --git a/vlm/dev/aLLuYpn83y/9.png b/vlm/dev/aLLuYpn83y/9.png new file mode 100644 index 0000000000000000000000000000000000000000..210766b8a6ac5070b4c762a85f56af315b82fa34 --- /dev/null +++ b/vlm/dev/aLLuYpn83y/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c5dfa652f39dde203b38e2e1be6852bd3abb1135b9b020a92cd53110d8a273c +size 479087 diff --git a/vlm/dev/cp5PvcI6w8_/0.png b/vlm/dev/cp5PvcI6w8_/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1385b4d138e9481a678ae99c64f877147ce5b760 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ccc75991f79ea949849a0d6acff11d0d09827ee9d2449efcac932c98dee93c8e +size 518587 diff --git a/vlm/dev/cp5PvcI6w8_/1.png b/vlm/dev/cp5PvcI6w8_/1.png new file mode 100644 index 0000000000000000000000000000000000000000..dd5078a7eaa6841c3515a7f1446fa295941219f0 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe5357e7570a9bec9fedc0f9b7a59fa46f2594c55ace4516e66c7031dacd76d4 +size 602733 diff --git a/vlm/dev/cp5PvcI6w8_/10.png b/vlm/dev/cp5PvcI6w8_/10.png new file mode 100644 index 0000000000000000000000000000000000000000..fa9343038fa0a3b513b0b281d21d4f02d15cd33f --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cbeb9646755591b2c0da6c91b5ec3063c484ed9b5a3edb5a9035d51c9a002a6 +size 530327 diff --git a/vlm/dev/cp5PvcI6w8_/11.png b/vlm/dev/cp5PvcI6w8_/11.png new file mode 100644 index 0000000000000000000000000000000000000000..47de803877f766fb0be4272f43fb86c43bae9b83 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de8304deb78a486e899ade81e4e835949af641c85f1e29ae958e1953f98d73be +size 573202 diff --git a/vlm/dev/cp5PvcI6w8_/12.png b/vlm/dev/cp5PvcI6w8_/12.png new file mode 100644 index 0000000000000000000000000000000000000000..66679a668f513df6900b0e5110fc306dba634e5c --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c173a9ffc3562b7df15303fef0d9114be9fa197afb792e346544c9f246b83fbc +size 564755 diff --git a/vlm/dev/cp5PvcI6w8_/13.png b/vlm/dev/cp5PvcI6w8_/13.png new file mode 100644 index 0000000000000000000000000000000000000000..45adcb53a78ac5a2cfe249c1d15086646ee2bb33 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:785024925f45b24ed8737cb06b14fdaa7c25f8b42dc8b8541dfea381dceef885 +size 237098 diff --git a/vlm/dev/cp5PvcI6w8_/14.png b/vlm/dev/cp5PvcI6w8_/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8f3d31a07fce0609007a584f2126e051d130b972 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d5c7f561860733e9925b69f734fa90667445a5af8e7dc7f20058b3ae5f2c2ed2 +size 413971 diff --git a/vlm/dev/cp5PvcI6w8_/15.png b/vlm/dev/cp5PvcI6w8_/15.png new file mode 100644 index 0000000000000000000000000000000000000000..ea2a4a1d414004f4407bb4d454d7ab575dffc704 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fe8964cb3606b335f636ef627ed84efd0a6152fbc01c547f5f42a1ef9056b5c3 +size 558906 diff --git a/vlm/dev/cp5PvcI6w8_/16.png b/vlm/dev/cp5PvcI6w8_/16.png new file mode 100644 index 0000000000000000000000000000000000000000..74888f04eefb7ef0129e63e8ba09b2b413948682 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:09d52d952b2d2f562cdd3938dfc3315d5152e4efffb873626e712ee65382e1a8 +size 563674 diff --git a/vlm/dev/cp5PvcI6w8_/17.png b/vlm/dev/cp5PvcI6w8_/17.png new file mode 100644 index 0000000000000000000000000000000000000000..8453d318de07aa6c5f555eefc5e9aa5a34d790e9 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:03290af1fdf3afd1c78ef29377cbdbb79f7cee8ae396e38b8280409d28773ec9 +size 492642 diff --git a/vlm/dev/cp5PvcI6w8_/18.png b/vlm/dev/cp5PvcI6w8_/18.png new file mode 100644 index 0000000000000000000000000000000000000000..94559596c9af7957a27abb5b43cba8d1061437a4 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fa4083ffba335460e8902a9b1adcc3c6598e0f957222f30d720a386692de3e09 +size 494082 diff --git a/vlm/dev/cp5PvcI6w8_/19.png b/vlm/dev/cp5PvcI6w8_/19.png new file mode 100644 index 0000000000000000000000000000000000000000..b7d98914ea52563887b64718d65396a9b15a47f7 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dfffbcc15ad8e73a4fc83aaa1a32c39b7e6e3421d9462359a1dd59c2c4112d0c +size 368849 diff --git a/vlm/dev/cp5PvcI6w8_/2.png b/vlm/dev/cp5PvcI6w8_/2.png new file mode 100644 index 0000000000000000000000000000000000000000..785e046d030940c719718c09d224d9b0076b02a1 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:458ae36e4e18bb03a5aefce85074ddd290bfa96b0f557e113a618021d362d715 +size 568931 diff --git a/vlm/dev/cp5PvcI6w8_/20.png b/vlm/dev/cp5PvcI6w8_/20.png new file mode 100644 index 0000000000000000000000000000000000000000..d4cdcd45ee7cd006ab232ee44ea5d80bbdf18de7 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:afb67b2533e9a301dd4878bafb1e63d4353dfab95ec3f1e6371291e440d7b63d +size 421021 diff --git a/vlm/dev/cp5PvcI6w8_/21.png b/vlm/dev/cp5PvcI6w8_/21.png new file mode 100644 index 0000000000000000000000000000000000000000..7ec4f89e913ac0be7e01a802bda0dc925993ca74 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ca54e67419399795811a4cf23aa1030507610f8669f058d7a3372480dcb5c762 +size 353251 diff --git a/vlm/dev/cp5PvcI6w8_/22.png b/vlm/dev/cp5PvcI6w8_/22.png new file mode 100644 index 0000000000000000000000000000000000000000..175dc0249d4fb2d797e9f54568cb6c884ec13fb5 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f5d48d23c9bd0804d859dc006a9b906ac1862171ef1994296fe20f9d343acf9 +size 303117 diff --git a/vlm/dev/cp5PvcI6w8_/23.png b/vlm/dev/cp5PvcI6w8_/23.png new file mode 100644 index 0000000000000000000000000000000000000000..ac706d2182c42e54e1e9f92df86a95470d3eca21 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7a370ac3c3452f0036999e99b7ae588aa32a9612d04c1e230c6f471e49422bed +size 606434 diff --git a/vlm/dev/cp5PvcI6w8_/24.png b/vlm/dev/cp5PvcI6w8_/24.png new file mode 100644 index 0000000000000000000000000000000000000000..b824edb687239b760fd1390efbedb56c36adfe9b --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ecb3e97dda5db758987c31222a4be3ecd28f040bef4aad706b43c44623171c28 +size 587188 diff --git a/vlm/dev/cp5PvcI6w8_/25.png b/vlm/dev/cp5PvcI6w8_/25.png new file mode 100644 index 0000000000000000000000000000000000000000..72e715d7dd63d7b3546fffc76cf10a0aae6eeef5 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e60f79d7baef29bd8e5b6b057241372b6b1a48772855cf4666558d4a84d1cbb1 +size 588094 diff --git a/vlm/dev/cp5PvcI6w8_/26.png b/vlm/dev/cp5PvcI6w8_/26.png new file mode 100644 index 0000000000000000000000000000000000000000..5cf4aadc520124a76525417e46fd49ead1c8b9c8 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a611d3135f9e1c9eec5a47070b88a9c716cd7448f725ca04ad93418a8a0c694c +size 431812 diff --git a/vlm/dev/cp5PvcI6w8_/27.png b/vlm/dev/cp5PvcI6w8_/27.png new file mode 100644 index 0000000000000000000000000000000000000000..579a1897c6e29ff4a2b9f735b6e3ba0d0462bdd5 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8e5fae25616ff8ee1085794d98e2cf7902fbb773a749d2e88ab52d3aa89539d +size 481366 diff --git a/vlm/dev/cp5PvcI6w8_/28.png b/vlm/dev/cp5PvcI6w8_/28.png new file mode 100644 index 0000000000000000000000000000000000000000..5d24c7e92348544a31fcac529c2a2eac4dc9c0dc --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:543f0cddafef24224ecb1c43aa45855e21e6a3c754c41128b111b31090909589 +size 380001 diff --git a/vlm/dev/cp5PvcI6w8_/29.png b/vlm/dev/cp5PvcI6w8_/29.png new file mode 100644 index 0000000000000000000000000000000000000000..9347b0a8003fd17f7721eef1ac2f2a9e84235af1 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0d752729b653552cb25cda67c16607744a6aa5279bf19cc19ff322f7b05760ab +size 515274 diff --git a/vlm/dev/cp5PvcI6w8_/3.png b/vlm/dev/cp5PvcI6w8_/3.png new file mode 100644 index 0000000000000000000000000000000000000000..4b923433ba7cea4a9c131872505a5db08cc166f3 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:242e90e266d8240916a7da2cf0b393adfa03b58afd7ff059f395ecc21017dfd1 +size 539761 diff --git a/vlm/dev/cp5PvcI6w8_/30.png b/vlm/dev/cp5PvcI6w8_/30.png new file mode 100644 index 0000000000000000000000000000000000000000..22653047e1f381ba17ecb16cc5bf10cbd1bed319 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e0c13d56e247bed3c34203bdfa7225cd701bf441a22beb0e019f248e15df64f1 +size 236892 diff --git a/vlm/dev/cp5PvcI6w8_/31.png b/vlm/dev/cp5PvcI6w8_/31.png new file mode 100644 index 0000000000000000000000000000000000000000..3ce8dff11d1439f334c9ab7ac0eaef3258958ee1 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:882dcac445c23b0699f6a4e63444520c18e2f1a1fa2fea5b099e010de08722dd +size 367356 diff --git a/vlm/dev/cp5PvcI6w8_/32.png b/vlm/dev/cp5PvcI6w8_/32.png new file mode 100644 index 0000000000000000000000000000000000000000..e318caa7a67aa34e4ffe7bc62b0e5bb459909e57 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef32c0adfe8e49011b6fb70a29d8329f60d9bef8ccf9f627d40e29de478d8fd2 +size 173870 diff --git a/vlm/dev/cp5PvcI6w8_/33.png b/vlm/dev/cp5PvcI6w8_/33.png new file mode 100644 index 0000000000000000000000000000000000000000..5ad85c0195f104e7f9606958cc00f308b5df34b1 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/33.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec0f2515afcb05078d84f5e0a665d69b50a98a6ca7cd68428f3a2e4e4f42f000 +size 384076 diff --git a/vlm/dev/cp5PvcI6w8_/34.png b/vlm/dev/cp5PvcI6w8_/34.png new file mode 100644 index 0000000000000000000000000000000000000000..8b11683ec1a913ea9c8c7b14493611a88e231608 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/34.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:de42539d7f4b78fa4e6e079c8409a562846cc8016cc1c3d9e643b1d68652238d +size 348580 diff --git a/vlm/dev/cp5PvcI6w8_/35.png b/vlm/dev/cp5PvcI6w8_/35.png new file mode 100644 index 0000000000000000000000000000000000000000..1484113c997db8dfb3587946b70623a8c4bddb35 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/35.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5873c461fbaca00b793716d4900bc9b5c018b17966dbad2410e1e3919c6593a1 +size 126323 diff --git a/vlm/dev/cp5PvcI6w8_/4.png b/vlm/dev/cp5PvcI6w8_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..80fe1f50d43cf979d60238603420653aada083da --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a5687f6aa6735d98289f9b44357f2bd4b1ea56ada24686208dfcd131b824f554 +size 670392 diff --git a/vlm/dev/cp5PvcI6w8_/5.png b/vlm/dev/cp5PvcI6w8_/5.png new file mode 100644 index 0000000000000000000000000000000000000000..322418c90ed0f5e3ad71017fdbf53335a2b0a0a4 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8267416a198cd4816f05cf445574224325980f2e264ccfecd5c344cccf9e1784 +size 559375 diff --git a/vlm/dev/cp5PvcI6w8_/6.png b/vlm/dev/cp5PvcI6w8_/6.png new file mode 100644 index 0000000000000000000000000000000000000000..c6edef1276359ddc7864b0df1458edbd6d1c3a8b --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d51f21210f55cb357d59fad1d0741a25acaf7b6ae01d5903fd4cd48ffd5b7151 +size 621734 diff --git a/vlm/dev/cp5PvcI6w8_/7.png b/vlm/dev/cp5PvcI6w8_/7.png new file mode 100644 index 0000000000000000000000000000000000000000..708f0b98cc424d9586348ac88c6f353633ea6e9f --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce3ff6217b10b9ce4eecb47dead51b08704c39f2850fdfaa987d12bd34171dd3 +size 628725 diff --git a/vlm/dev/cp5PvcI6w8_/8.png b/vlm/dev/cp5PvcI6w8_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..7c3cf82861dc1a8a4ec33d480d8c37a05fa40dd9 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dd144b74bbe8b912da7700e00a6267f7c85ee36b256f2748d89707e54f78b44e +size 646946 diff --git a/vlm/dev/cp5PvcI6w8_/9.png b/vlm/dev/cp5PvcI6w8_/9.png new file mode 100644 index 0000000000000000000000000000000000000000..4b595bef2b9506bd1dc9c303eb32ab884ed4f7b0 --- /dev/null +++ b/vlm/dev/cp5PvcI6w8_/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:707c83ba1dc9bea42074d4d26c9dcac8b6331703018e7051c08db65839eed558 +size 542334 diff --git a/vlm/dev/flNZJ2eOet/0.png b/vlm/dev/flNZJ2eOet/0.png new file mode 100644 index 0000000000000000000000000000000000000000..fd530e028b2392b61172234011cd926d8432ceea --- /dev/null +++ b/vlm/dev/flNZJ2eOet/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:650f9c6cd1b49380d08012befb1b55d29a5019bc2198fb487a153651482394e3 +size 413568 diff --git a/vlm/dev/flNZJ2eOet/1.png b/vlm/dev/flNZJ2eOet/1.png new file mode 100644 index 0000000000000000000000000000000000000000..6d3cc00c254933d50ce6e8b5b4b9331883ab1548 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d06e7bb563b1b8cf0e1a27167296f3f7be1cc13f052075e072ad3282233eb40 +size 513918 diff --git a/vlm/dev/flNZJ2eOet/10.png b/vlm/dev/flNZJ2eOet/10.png new file mode 100644 index 0000000000000000000000000000000000000000..89f89d7b26f2ec44c9452b0b8714490ec0bcbb4a --- /dev/null +++ b/vlm/dev/flNZJ2eOet/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cc56ad5e88bb0a876340d728e290da0e97373bcbb306e852aeb93f5d39b5d9fb +size 564418 diff --git a/vlm/dev/flNZJ2eOet/11.png b/vlm/dev/flNZJ2eOet/11.png new file mode 100644 index 0000000000000000000000000000000000000000..3ccff9c4854b8a444417f4e016e02ad2d2025f6d --- /dev/null +++ b/vlm/dev/flNZJ2eOet/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fd0a573ebcdbf3777bc17228dd81a53ec74bd9a6ef197a9d1e74d3cfacbe5194 +size 554851 diff --git a/vlm/dev/flNZJ2eOet/12.png b/vlm/dev/flNZJ2eOet/12.png new file mode 100644 index 0000000000000000000000000000000000000000..5fd4f22179094d69c045d6770f1aacb956320ff9 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a14f218a601ef203af72b93394f51a0c8ecd0192cf7845b5c70dfc474e3e535 +size 541487 diff --git a/vlm/dev/flNZJ2eOet/13.png b/vlm/dev/flNZJ2eOet/13.png new file mode 100644 index 0000000000000000000000000000000000000000..8c482d129a1500d3f169a74836b0e72b9f147e30 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2b9f9e47c6f8b6f07e879aedde50035530ab99775191701a8d7c841a5bc3e552 +size 577478 diff --git a/vlm/dev/flNZJ2eOet/14.png b/vlm/dev/flNZJ2eOet/14.png new file mode 100644 index 0000000000000000000000000000000000000000..20c465a585bdbe2619567f966aa0e0b6fbbef724 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a31309801225f6e1006901e779894548edf617f30f32d82c1970a1fe6f593f8f +size 220153 diff --git a/vlm/dev/flNZJ2eOet/15.png b/vlm/dev/flNZJ2eOet/15.png new file mode 100644 index 0000000000000000000000000000000000000000..573671b00cac739ce35c1614b16308767035fbee --- /dev/null +++ b/vlm/dev/flNZJ2eOet/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9deb8ab2b87b5fda37e4cb0a6c8c3403b0a6ba05d3f689b0b37905b1cbd941f3 +size 333976 diff --git a/vlm/dev/flNZJ2eOet/2.png b/vlm/dev/flNZJ2eOet/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6749322926061df5260c2bb3783c0be1eae1c8b3 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25a9fb2d718216f27640099dab228cdca51b41ca90a2bae0469addf3accbbaa2 +size 598275 diff --git a/vlm/dev/flNZJ2eOet/3.png b/vlm/dev/flNZJ2eOet/3.png new file mode 100644 index 0000000000000000000000000000000000000000..26752f74c2b2acac087184d26377f26bd306c767 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:561fe3d1e2d5887e9c69733fa8a013f71ad372467cc8885a2adc1dbfcb0f2003 +size 522447 diff --git a/vlm/dev/flNZJ2eOet/4.png b/vlm/dev/flNZJ2eOet/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b669f83d9b073196b23cd92d8e3ff3d6645dead4 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fda987a5e74553b0f08ca0a52a6392f1d8e4512ed6e323f52c344c3b28331ea7 +size 554228 diff --git a/vlm/dev/flNZJ2eOet/5.png b/vlm/dev/flNZJ2eOet/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e37229bacb32c815ba2d54cc64b7347eb16613f1 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41ec8e70d24fe89874f5258ab2e640a275e48cba59d063fd5ef7c8934c4bbae1 +size 597403 diff --git a/vlm/dev/flNZJ2eOet/6.png b/vlm/dev/flNZJ2eOet/6.png new file mode 100644 index 0000000000000000000000000000000000000000..22baeafd415a21be4d22d9c6b5d7622d1bb82b10 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3dc82c9037b95b809536263b9ffde5e29c06098a0676457771901bafb2ff05b7 +size 644925 diff --git a/vlm/dev/flNZJ2eOet/7.png b/vlm/dev/flNZJ2eOet/7.png new file mode 100644 index 0000000000000000000000000000000000000000..9359e619f8edd6846d779a1cd9807a9a7ca46385 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0bddd18ee4c8fd065090cb3c66c7249de370d1e4de75b1aad8723fb1363a1fba +size 590202 diff --git a/vlm/dev/flNZJ2eOet/8.png b/vlm/dev/flNZJ2eOet/8.png new file mode 100644 index 0000000000000000000000000000000000000000..bd5a6e4aedf93a8b53822f84761846129588fb16 --- /dev/null +++ b/vlm/dev/flNZJ2eOet/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30f6fe714f28635f85dfb273931e0010292e6b60f8f96d1d584461307c1cefde +size 625832 diff --git a/vlm/dev/flNZJ2eOet/9.png b/vlm/dev/flNZJ2eOet/9.png new file mode 100644 index 0000000000000000000000000000000000000000..cd7e6ee1a157d8bed11da896215674aef6a1be5a --- /dev/null +++ b/vlm/dev/flNZJ2eOet/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f05759dd19c1ad094a85223abcf581a40cb50b46e871a8fc8c79ad3d089822b3 +size 554260 diff --git a/vlm/dev/gfwON7rAm4/0.png b/vlm/dev/gfwON7rAm4/0.png new file mode 100644 index 0000000000000000000000000000000000000000..1a0c1a26457f88e25a043be36fd671e8722c3952 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:873512453ba926b74659bae15c34d58f3ad5e08fb6a9aad1253e584d14fcdd24 +size 503403 diff --git a/vlm/dev/gfwON7rAm4/1.png b/vlm/dev/gfwON7rAm4/1.png new file mode 100644 index 0000000000000000000000000000000000000000..7d7a74154da834828580dc0f7c3810783d4e4578 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d615ee9e1fb8237124810bffec450b4802d79541d45e17f974f0b7b64464b539 +size 684708 diff --git a/vlm/dev/gfwON7rAm4/10.png b/vlm/dev/gfwON7rAm4/10.png new file mode 100644 index 0000000000000000000000000000000000000000..9f67a4ed3366a53bde2a8310fe531c04e9297f43 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce378c54548aff9f9605673039b46c3eaec18fae06cf3bea18522c3ecc6c352d +size 561951 diff --git a/vlm/dev/gfwON7rAm4/11.png b/vlm/dev/gfwON7rAm4/11.png new file mode 100644 index 0000000000000000000000000000000000000000..52fafc6cb99de25a94795095f61d62a70b415439 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9da1ee2162034bd761cb4ff0770eaa40fb600762f35a3680ff11a519661adf8 +size 576410 diff --git a/vlm/dev/gfwON7rAm4/12.png b/vlm/dev/gfwON7rAm4/12.png new file mode 100644 index 0000000000000000000000000000000000000000..615826663cfd9170e3f5ab6c36c338729eb0e4dd --- /dev/null +++ b/vlm/dev/gfwON7rAm4/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:95929e8640ad3779c453cd11c343b76ab534eabb850ee5ef9a9ccb5f17f96d1e +size 432462 diff --git a/vlm/dev/gfwON7rAm4/13.png b/vlm/dev/gfwON7rAm4/13.png new file mode 100644 index 0000000000000000000000000000000000000000..aec37d35b5a15af8bef805ac146adce228722423 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9e1432cdc20c134310e559f53ddc9a04183911e3c82024082b6378f8051db70a +size 480514 diff --git a/vlm/dev/gfwON7rAm4/14.png b/vlm/dev/gfwON7rAm4/14.png new file mode 100644 index 0000000000000000000000000000000000000000..8ab50f4d19c0c8be989155f5b5576616d9a10dc5 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:77463a7b53891599a9f9c81a4e832ed6f8cc2dd2246803cd03ff0a19438a450d +size 425821 diff --git a/vlm/dev/gfwON7rAm4/15.png b/vlm/dev/gfwON7rAm4/15.png new file mode 100644 index 0000000000000000000000000000000000000000..d8d56d01fb34f14039791b6da7680d9d1f80ad40 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ee50fa3dea46b3117c5765b5c68c4f77416a30f70dcd763305ae04e5137984fc +size 412617 diff --git a/vlm/dev/gfwON7rAm4/16.png b/vlm/dev/gfwON7rAm4/16.png new file mode 100644 index 0000000000000000000000000000000000000000..d25cfe389e6332544dbebb44d87ea92324f4991d --- /dev/null +++ b/vlm/dev/gfwON7rAm4/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e667e06958bc9079bbb118a2a408dde00ee4e7484ed64108f34210354a704cbe +size 389409 diff --git a/vlm/dev/gfwON7rAm4/17.png b/vlm/dev/gfwON7rAm4/17.png new file mode 100644 index 0000000000000000000000000000000000000000..0f787ea5acd0bc77be282f8ccd502ea96fad8061 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:59d9e68976549b029a0a6bfd9c2f57d563aacf6c98457159e372ca2eebe246b5 +size 455427 diff --git a/vlm/dev/gfwON7rAm4/18.png b/vlm/dev/gfwON7rAm4/18.png new file mode 100644 index 0000000000000000000000000000000000000000..775d9d2986281a94273d883b7d79afe3f939b1b7 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e1b103a02cb25be4ff83cb4f040ce576f5daddb63070be9db5a2aefde87a2fe8 +size 468267 diff --git a/vlm/dev/gfwON7rAm4/19.png b/vlm/dev/gfwON7rAm4/19.png new file mode 100644 index 0000000000000000000000000000000000000000..9740e4f4d583a628ac0d7e38663bc1b9d43dc064 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0ee053772a19a68ca284d3a84eb3ba260fd875f8dd92f97b9884d02036b4fb +size 434233 diff --git a/vlm/dev/gfwON7rAm4/2.png b/vlm/dev/gfwON7rAm4/2.png new file mode 100644 index 0000000000000000000000000000000000000000..604e98a1bc46c87b378a80b5a77551f1975f41b2 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce333f03af9b1c2c25758be5665571158655a4489a9a71cc877d8ae795cc0d02 +size 655172 diff --git a/vlm/dev/gfwON7rAm4/20.png b/vlm/dev/gfwON7rAm4/20.png new file mode 100644 index 0000000000000000000000000000000000000000..e1b989fd20964d60b2b3f34fae64ebad5b167580 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d8866abb1240a808f53d669ca473aa98f20be2a346c38d3b07337584cea31718 +size 392342 diff --git a/vlm/dev/gfwON7rAm4/21.png b/vlm/dev/gfwON7rAm4/21.png new file mode 100644 index 0000000000000000000000000000000000000000..db6942c055671a0e4e7f2ceaf9e3b4965c0b463c --- /dev/null +++ b/vlm/dev/gfwON7rAm4/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:029c984413e227932c0b1ce69d9f0128a77f7be079c86331c3da7f4db041b134 +size 451353 diff --git a/vlm/dev/gfwON7rAm4/22.png b/vlm/dev/gfwON7rAm4/22.png new file mode 100644 index 0000000000000000000000000000000000000000..10460d55d904899311948a8e5eec17d9406d61e2 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fd4e4035245ba334038a07e25c31212eab3774b4fcaa945e05f87a3c5add492 +size 348547 diff --git a/vlm/dev/gfwON7rAm4/23.png b/vlm/dev/gfwON7rAm4/23.png new file mode 100644 index 0000000000000000000000000000000000000000..8ee36e4bdf4a3932e931d7ee1dbe214af9f61465 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2e75ff50e38cf238e8d8fec917cfa09b90807c0398fc1fd03a9abe2ba704ca2e +size 403949 diff --git a/vlm/dev/gfwON7rAm4/24.png b/vlm/dev/gfwON7rAm4/24.png new file mode 100644 index 0000000000000000000000000000000000000000..bcc0f0f16280cc93f4f955a033087c1e866a9a8a --- /dev/null +++ b/vlm/dev/gfwON7rAm4/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf82e906c672afbe51c55a1476b8bb3aa59f805aa5d48f0810b7e2913c0e44fb +size 413482 diff --git a/vlm/dev/gfwON7rAm4/25.png b/vlm/dev/gfwON7rAm4/25.png new file mode 100644 index 0000000000000000000000000000000000000000..a6e074260013729cb538a96d64148fe8da85d1d5 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8318c6e3098057e3f1ba7cc9f95dd8db745595bc3837de991cdc0f0131761e3c +size 409862 diff --git a/vlm/dev/gfwON7rAm4/26.png b/vlm/dev/gfwON7rAm4/26.png new file mode 100644 index 0000000000000000000000000000000000000000..f6e00a6cd16c1a41e045a11b2212eb6cf80b3245 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dbd403954ca2ad976c26bf22d3819d496672d08b004ee83333a4d4d698949cd2 +size 459540 diff --git a/vlm/dev/gfwON7rAm4/27.png b/vlm/dev/gfwON7rAm4/27.png new file mode 100644 index 0000000000000000000000000000000000000000..56d92644b56ad03d52c6c3c6e098f50bdcc3c3fc --- /dev/null +++ b/vlm/dev/gfwON7rAm4/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ce8b8f744e8621d472a128e34acc1e39345343d9753bcd35bebe6f5c2a715aba +size 507274 diff --git a/vlm/dev/gfwON7rAm4/28.png b/vlm/dev/gfwON7rAm4/28.png new file mode 100644 index 0000000000000000000000000000000000000000..dfdf2822b8e7ca82b9624af6ff7cc77d34b8e917 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f34ad70a24ab4281a290874eb9c4cd4b5d4ad70d5ece44f7a5dc480dd065eeca +size 392084 diff --git a/vlm/dev/gfwON7rAm4/3.png b/vlm/dev/gfwON7rAm4/3.png new file mode 100644 index 0000000000000000000000000000000000000000..db7c4da2c97eb46eae5075280c4fc8394cdcdfb9 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:badefb4403fbe32247743fe0f51f49ca504c9643c6592513c16d538147ee9e28 +size 600270 diff --git a/vlm/dev/gfwON7rAm4/4.png b/vlm/dev/gfwON7rAm4/4.png new file mode 100644 index 0000000000000000000000000000000000000000..9ba319a2128f395ebc268b290f7545f0b2e2a31b --- /dev/null +++ b/vlm/dev/gfwON7rAm4/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2be46ab8a86ea06366f8c41ea27be49a9cf1678a9a81f4c9f8f21310eed8f358 +size 593566 diff --git a/vlm/dev/gfwON7rAm4/5.png b/vlm/dev/gfwON7rAm4/5.png new file mode 100644 index 0000000000000000000000000000000000000000..249f154cd358f94e081198ab5a96671449b288c4 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1b1e556418196890a564ce74661d7373716b0588add6c9730533d5b4d82ccbb0 +size 542230 diff --git a/vlm/dev/gfwON7rAm4/6.png b/vlm/dev/gfwON7rAm4/6.png new file mode 100644 index 0000000000000000000000000000000000000000..7d2b9ff26e9347b3551cf073ece78a2baf3ee15c --- /dev/null +++ b/vlm/dev/gfwON7rAm4/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fdefea5d6da447be5767f631f6333236242ec59872154709f5af61bdad5b3128 +size 608059 diff --git a/vlm/dev/gfwON7rAm4/7.png b/vlm/dev/gfwON7rAm4/7.png new file mode 100644 index 0000000000000000000000000000000000000000..20c69cc4af619acecfad77a07aaea1d6cbe06050 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:358de070b4d311cb0db22e0363aac8953dcf93da69d813d248d1646c23266965 +size 611762 diff --git a/vlm/dev/gfwON7rAm4/8.png b/vlm/dev/gfwON7rAm4/8.png new file mode 100644 index 0000000000000000000000000000000000000000..f1ca4876635b29c4ffc1ad58854460eb23d71bbd --- /dev/null +++ b/vlm/dev/gfwON7rAm4/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d945d0b12e39d6929c97a6b827381bff291a65379abe02a0ae5c23b75e11ba94 +size 596985 diff --git a/vlm/dev/gfwON7rAm4/9.png b/vlm/dev/gfwON7rAm4/9.png new file mode 100644 index 0000000000000000000000000000000000000000..34cc8b3760448c21a583c0128dc813bd073c4ed6 --- /dev/null +++ b/vlm/dev/gfwON7rAm4/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62868bd23743d7c31bde630e72928a75aa12cb731cb0e32e43c8c6e5ddf82e80 +size 544728 diff --git a/vlm/dev/iaYcJKpY2B_/0.png b/vlm/dev/iaYcJKpY2B_/0.png new file mode 100644 index 0000000000000000000000000000000000000000..61414c97b22968e9c0873575c0ef182d750ce091 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:137579765267b2e76d9cc8772938f580c9c196563a82c7ef92b5001310bfc3dd +size 510207 diff --git a/vlm/dev/iaYcJKpY2B_/1.png b/vlm/dev/iaYcJKpY2B_/1.png new file mode 100644 index 0000000000000000000000000000000000000000..54b5d961e0ed93931f5af2c292fa7ead22079b9c --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7eb67447ce612e84de3d991b3efa1ab6955b1f14dd66b5c0fd8d50e63645f5ef +size 593693 diff --git a/vlm/dev/iaYcJKpY2B_/10.png b/vlm/dev/iaYcJKpY2B_/10.png new file mode 100644 index 0000000000000000000000000000000000000000..aa49b24039462c546e98697395981691c54e3566 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:62dc62a53160522e37cb14fe0b7455b6b09f360dbe85acd00a27c8f6405c9cd3 +size 582661 diff --git a/vlm/dev/iaYcJKpY2B_/11.png b/vlm/dev/iaYcJKpY2B_/11.png new file mode 100644 index 0000000000000000000000000000000000000000..ecad5db0c97052de76b6c419f1ce4e9f6ad1c529 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1af9d3101fc7e927e21cced5d953087772085818b9ab926f334b9e6364eceb64 +size 581342 diff --git a/vlm/dev/iaYcJKpY2B_/12.png b/vlm/dev/iaYcJKpY2B_/12.png new file mode 100644 index 0000000000000000000000000000000000000000..447c07120aa57984d8c19e999dd5c57a349dc1cd --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1c3ee4d45760855ec98be911d877e4abb9b15931573b94631fc5ba168d8ea6 +size 289290 diff --git a/vlm/dev/iaYcJKpY2B_/13.png b/vlm/dev/iaYcJKpY2B_/13.png new file mode 100644 index 0000000000000000000000000000000000000000..66018c4feb93d43797f826cbd8fe35f414dadd69 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cf42b4bb28467e2765b805ad244065879c2838a8e6fbc295e2600f6b1a73182d +size 494884 diff --git a/vlm/dev/iaYcJKpY2B_/14.png b/vlm/dev/iaYcJKpY2B_/14.png new file mode 100644 index 0000000000000000000000000000000000000000..dbcb1e9019a47291f69c6eabf0e664f37ca5069e --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e8ea1bd03e063ec8a18a8b7207d29bd7b0db30579eba7f79d5d571eb09b2d05c +size 491098 diff --git a/vlm/dev/iaYcJKpY2B_/15.png b/vlm/dev/iaYcJKpY2B_/15.png new file mode 100644 index 0000000000000000000000000000000000000000..e428fd07ec5485acf3485ad1c170f8f9b923ed9d --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d232c367000064c67218c34d950b9fada6783e4ceabb2793e0d1cc891ab2c7d1 +size 343313 diff --git a/vlm/dev/iaYcJKpY2B_/16.png b/vlm/dev/iaYcJKpY2B_/16.png new file mode 100644 index 0000000000000000000000000000000000000000..c16a9a6cdaebd9c319fe26cce693dbe167a62a8e --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d6f3fe98897ab534d85b73e66d71947b75384642e40712cc4e55c856886d82d9 +size 498830 diff --git a/vlm/dev/iaYcJKpY2B_/17.png b/vlm/dev/iaYcJKpY2B_/17.png new file mode 100644 index 0000000000000000000000000000000000000000..709d91fdcc160b6641efe596759beafba90af54b --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:48de47bb68341aa584405783156523ee5eefaf1a081e0164b6a05488f99a48b0 +size 528069 diff --git a/vlm/dev/iaYcJKpY2B_/18.png b/vlm/dev/iaYcJKpY2B_/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b0880ac00372628f69976291c05e53ac754e52cd --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:40618ca0b049a360a29f3b4ba893278da4f99ef77c573269850910a2e7adfc91 +size 353707 diff --git a/vlm/dev/iaYcJKpY2B_/19.png b/vlm/dev/iaYcJKpY2B_/19.png new file mode 100644 index 0000000000000000000000000000000000000000..76dc3f427d15a9d037a37bf1151cadefbf6c03e7 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd9157ae2d875644b3089dcb384030dbeef989cb320b8a56cc7658067ec86420 +size 318149 diff --git a/vlm/dev/iaYcJKpY2B_/2.png b/vlm/dev/iaYcJKpY2B_/2.png new file mode 100644 index 0000000000000000000000000000000000000000..c1399ffe2cdfbd6673ed2447034505750082aec4 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:10353ef8d1c06288ab639d2b78ba1141750737b7f50b548cca9c4baab4910461 +size 579117 diff --git a/vlm/dev/iaYcJKpY2B_/20.png b/vlm/dev/iaYcJKpY2B_/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ab9edfc31b0396df145a8a3bfab674129a50d01c --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e377efe609e585ed109a66703533b638d748a142a662bb7fe8f8d8e469346541 +size 204464 diff --git a/vlm/dev/iaYcJKpY2B_/21.png b/vlm/dev/iaYcJKpY2B_/21.png new file mode 100644 index 0000000000000000000000000000000000000000..9a213ce877051ba26d8c344eb31b6892f2b56e37 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9ba4b162b8f049d5090ac8af167972c788be42de181e66025be121e02aa8d41 +size 237404 diff --git a/vlm/dev/iaYcJKpY2B_/22.png b/vlm/dev/iaYcJKpY2B_/22.png new file mode 100644 index 0000000000000000000000000000000000000000..0f79410706609b39263f421f7f5b05af64026a65 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4c0b22f8347dec9025bc7e8f6cd0a7ee6b76ea16d6d7bd28fd44dc9afa08ff9b +size 248849 diff --git a/vlm/dev/iaYcJKpY2B_/23.png b/vlm/dev/iaYcJKpY2B_/23.png new file mode 100644 index 0000000000000000000000000000000000000000..42aac417db43e3805a41812f6bf2613d93aae87d --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a96c564268d3dd6aa30d9253470bc3415696d3f0bb89e33b7cea5d3bb84dee6 +size 119105 diff --git a/vlm/dev/iaYcJKpY2B_/24.png b/vlm/dev/iaYcJKpY2B_/24.png new file mode 100644 index 0000000000000000000000000000000000000000..4d2ac9b47d22a86e6f055134db63d022401b6c60 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8610eed1a4669d245e2763115faadd290ecf74b72b4fbc62fcdbb0025a1e1009 +size 154350 diff --git a/vlm/dev/iaYcJKpY2B_/3.png b/vlm/dev/iaYcJKpY2B_/3.png new file mode 100644 index 0000000000000000000000000000000000000000..43327a1b723e9af9ef3e8d4a3c6f5a8e4022b6b3 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:114ce66df86b1bd5f1c06ef965bb3d484a268b1cbc726bb39f2d674125185532 +size 486433 diff --git a/vlm/dev/iaYcJKpY2B_/4.png b/vlm/dev/iaYcJKpY2B_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..55f48dd24e8754b04784e066b3c7e258520dc7f4 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b866af23bfad47786a9e21b8b88bddec001ae3832de920a83d7cbb681830a4ba +size 553220 diff --git a/vlm/dev/iaYcJKpY2B_/5.png b/vlm/dev/iaYcJKpY2B_/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e436980e5ee17661e87df7dd9e922f7ff8d8aaee --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cd41515ced50664b09050744f04c1bed745459b15af6cc67b52202e718150e6 +size 501506 diff --git a/vlm/dev/iaYcJKpY2B_/6.png b/vlm/dev/iaYcJKpY2B_/6.png new file mode 100644 index 0000000000000000000000000000000000000000..94602607103f30cc20e5cf3d545966c6f543ab07 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c48c1ce58e0e98251dc3457f9c9e1e1253af88f4e3a9e5b71283c5616637c1a2 +size 474200 diff --git a/vlm/dev/iaYcJKpY2B_/7.png b/vlm/dev/iaYcJKpY2B_/7.png new file mode 100644 index 0000000000000000000000000000000000000000..7495c70cd89660825ba5bfebaf9b05da50d662f6 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:432e74fa380a794fe5e38b9bf53da48716385409aa041b0912cc001b0f02e1ba +size 532537 diff --git a/vlm/dev/iaYcJKpY2B_/8.png b/vlm/dev/iaYcJKpY2B_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..45d437e04ca99c525b811149a7e281e4fd794642 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:491f6463d754ba57d51bd4f97d9f77fa772e1885baccf68d01f5443903c98b9e +size 607674 diff --git a/vlm/dev/iaYcJKpY2B_/9.png b/vlm/dev/iaYcJKpY2B_/9.png new file mode 100644 index 0000000000000000000000000000000000000000..c8cc9ba2c7484794fe87eb45a375b05744efb1f3 --- /dev/null +++ b/vlm/dev/iaYcJKpY2B_/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ed59bb0d9a44d2ac8a51f607791502c61b9cbbd12328f50c48a1d57a8d1bfdc9 +size 595441 diff --git a/vlm/dev/jdJo1HIVinI/0.png b/vlm/dev/jdJo1HIVinI/0.png new file mode 100644 index 0000000000000000000000000000000000000000..6a806917a81b871351cee8ff9358154c05ff8fe3 --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f6186e2f2d4a007403d6e225a6b95f9d4c54ab4a1c040d8fe33b45ac593db3fb +size 434294 diff --git a/vlm/dev/jdJo1HIVinI/1.png b/vlm/dev/jdJo1HIVinI/1.png new file mode 100644 index 0000000000000000000000000000000000000000..5b18ab93f54ffbbea6d476320ea4863984f47355 --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0fe4eb209b68b9ef8e12ed36c03c5422e6a24ad98a1133505927c279c2c6ca15 +size 456051 diff --git a/vlm/dev/jdJo1HIVinI/10.png b/vlm/dev/jdJo1HIVinI/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dedbbe2754aa0e1a479f27e19b9f7ec127136488 --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:79ff6d1009a83d9f7414364b1c270baaa2f08814914d41434e6a0dd533002c02 +size 582601 diff --git a/vlm/dev/jdJo1HIVinI/11.png b/vlm/dev/jdJo1HIVinI/11.png new file mode 100644 index 0000000000000000000000000000000000000000..961d98e57f9839456a0f943afd3b6e3a47c92616 --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:17b4a42d971ca9d1765e50bc32b83c18dbb84c7de6e3dd09ea42a5f07e25f938 +size 284531 diff --git a/vlm/dev/jdJo1HIVinI/2.png b/vlm/dev/jdJo1HIVinI/2.png new file mode 100644 index 0000000000000000000000000000000000000000..0efc57982ef036abd6a1f3ad97c91abe307309be --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb5adb9e53f9a5d7075d992fa02409c2a9aadb4c508d4994ece471020052f7f8 +size 564792 diff --git a/vlm/dev/jdJo1HIVinI/3.png b/vlm/dev/jdJo1HIVinI/3.png new file mode 100644 index 0000000000000000000000000000000000000000..fd9873bc83135de1dbf038ffc686ffa51f26d4da --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:eb994950d053fb762c40b4b86f4ab38941df2f76bc56aea9d913b55aa9117626 +size 449281 diff --git a/vlm/dev/jdJo1HIVinI/4.png b/vlm/dev/jdJo1HIVinI/4.png new file mode 100644 index 0000000000000000000000000000000000000000..3e2dc0623bf738d5741476a29f4173779027484e --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:319b27970eaca0e43b9f05f0886fd3ae1462dc269a6d457f388d79a816881643 +size 505122 diff --git a/vlm/dev/jdJo1HIVinI/5.png b/vlm/dev/jdJo1HIVinI/5.png new file mode 100644 index 0000000000000000000000000000000000000000..e0a6c64a1ddf503d98c3bc34259b0d865787e63d --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c6d19cb83a8765ec69ee70448d9164555256f1034beadd8d290fcbeb877260a1 +size 575814 diff --git a/vlm/dev/jdJo1HIVinI/6.png b/vlm/dev/jdJo1HIVinI/6.png new file mode 100644 index 0000000000000000000000000000000000000000..d68c42a3506532b2db015681a4c9c53d2bd7753d --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d7f46e7deeae651d680f128b34e417da2b2cc871e9107ba2daaccb89901836 +size 495101 diff --git a/vlm/dev/jdJo1HIVinI/7.png b/vlm/dev/jdJo1HIVinI/7.png new file mode 100644 index 0000000000000000000000000000000000000000..93ba8aa6f1ac938697492b69b7379777b4767404 --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8b8423a71f0781fa104d0a4f09fd2fba37f3b6bdd90d666d1b8cb0d154e78681 +size 489371 diff --git a/vlm/dev/jdJo1HIVinI/8.png b/vlm/dev/jdJo1HIVinI/8.png new file mode 100644 index 0000000000000000000000000000000000000000..2ea10c81ab79f4e53e856557a4b84adcfacc487b --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ef06efafc0db890525ddf2192f383076066585bed16c20c68b93d0e9555fb11b +size 439574 diff --git a/vlm/dev/jdJo1HIVinI/9.png b/vlm/dev/jdJo1HIVinI/9.png new file mode 100644 index 0000000000000000000000000000000000000000..820bde217ef71743c105de6626a634c76b84c554 --- /dev/null +++ b/vlm/dev/jdJo1HIVinI/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f76db8161aa8ff7b8e4f541fe5ef0d43263f19f5c4c1a33fcee5a130d8428792 +size 572668 diff --git a/vlm/dev/kKF8_K-mBbS/0.png b/vlm/dev/kKF8_K-mBbS/0.png new file mode 100644 index 0000000000000000000000000000000000000000..bcaa351eb351f501d956af70cf7223f49fce5970 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7dbc355a2a5bda3fbf8c16be89a66e9cc142c06c3f0c2eeeb94e96a6d04e03bc +size 513460 diff --git a/vlm/dev/kKF8_K-mBbS/1.png b/vlm/dev/kKF8_K-mBbS/1.png new file mode 100644 index 0000000000000000000000000000000000000000..a8056ce67d4b79389b717d4f20e4c3c85afc68d4 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3991a63f8856869d855dbb1d4bd41c6d124f78ba2ad7ca19ad7de6838c12840a +size 627960 diff --git a/vlm/dev/kKF8_K-mBbS/10.png b/vlm/dev/kKF8_K-mBbS/10.png new file mode 100644 index 0000000000000000000000000000000000000000..14e3258566f67b8fcc8253cc47d7f4eb96e508db --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08c1deaae4bacdfd89e29deefb135ec97762cd189ac18a8643cad05bc66682ee +size 537300 diff --git a/vlm/dev/kKF8_K-mBbS/11.png b/vlm/dev/kKF8_K-mBbS/11.png new file mode 100644 index 0000000000000000000000000000000000000000..1084ef94e8240080d518b1899366bdbb22cde0b3 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:662676e684041a3a0edff30de6e3917e2464161c94ccf8d4d19a9123824e8fb9 +size 521906 diff --git a/vlm/dev/kKF8_K-mBbS/12.png b/vlm/dev/kKF8_K-mBbS/12.png new file mode 100644 index 0000000000000000000000000000000000000000..83f377769dd9f5f21827886bb1560d617c61c2e4 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:87c1bdcd7966fc47aebd0c04e0146977e9034ce967dfe2e6b9cdd4c3fb333fd2 +size 390914 diff --git a/vlm/dev/kKF8_K-mBbS/13.png b/vlm/dev/kKF8_K-mBbS/13.png new file mode 100644 index 0000000000000000000000000000000000000000..99006dbe9f6cc0f53b19b457aeec1a31c8b8d40d --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a512da577f873e3c763915b4ac6d688be13f8b71a0f1654078c07b5b4978a54c +size 556661 diff --git a/vlm/dev/kKF8_K-mBbS/14.png b/vlm/dev/kKF8_K-mBbS/14.png new file mode 100644 index 0000000000000000000000000000000000000000..415606d0cf1cdf2a9e944c5b0a74b7d7e2bf99fb --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:521e5f6f9be4978b46ee150346cf9a27bdc6eb65868158aeba6eb5fa60698c7b +size 471538 diff --git a/vlm/dev/kKF8_K-mBbS/15.png b/vlm/dev/kKF8_K-mBbS/15.png new file mode 100644 index 0000000000000000000000000000000000000000..adf27c63fe5ddd0ce2a71fed78f05875690d06bf --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:313de4df8e7f452065b8910b3b63d301175a5906e3c0ed35a6ba80e3b4f4a2b9 +size 454513 diff --git a/vlm/dev/kKF8_K-mBbS/16.png b/vlm/dev/kKF8_K-mBbS/16.png new file mode 100644 index 0000000000000000000000000000000000000000..72f11dc5e8789b2a578b8724d6ea946c78d8bf63 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2658980814cb64ec4581b8b4b1aa155f2ef74b57dffb95e6a4f691663d10796d +size 516044 diff --git a/vlm/dev/kKF8_K-mBbS/17.png b/vlm/dev/kKF8_K-mBbS/17.png new file mode 100644 index 0000000000000000000000000000000000000000..5c6c8b134959c5d80cc3d63880d8b700353beb95 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:96f11790863a178503e165dfaa2bd4ab449787622817c6d81b876ef59255e2e3 +size 515581 diff --git a/vlm/dev/kKF8_K-mBbS/18.png b/vlm/dev/kKF8_K-mBbS/18.png new file mode 100644 index 0000000000000000000000000000000000000000..2aeb7da3b3691d15b269424bfa8e2f6df7c53ad1 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b8bb1ee8aa98dd1dc896f48b44b61ce592b3303af4e5b7b0fea5d892edf0e82e +size 564242 diff --git a/vlm/dev/kKF8_K-mBbS/19.png b/vlm/dev/kKF8_K-mBbS/19.png new file mode 100644 index 0000000000000000000000000000000000000000..9b3b18737a4c06e586a819719c29877ac51c2d2f --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8122a1b49b7673ecd9b6bf5627991228d7314fc1d7ec0000b3561cd72bbeb607 +size 583368 diff --git a/vlm/dev/kKF8_K-mBbS/2.png b/vlm/dev/kKF8_K-mBbS/2.png new file mode 100644 index 0000000000000000000000000000000000000000..4d3aadc32a2efba9b121715683af5ef02e4dcdde --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:72cc04794bf136b93f62918db3e76742b03a5cec955bea3eecd00b4540ed21d2 +size 619491 diff --git a/vlm/dev/kKF8_K-mBbS/20.png b/vlm/dev/kKF8_K-mBbS/20.png new file mode 100644 index 0000000000000000000000000000000000000000..262cb85d8900a29fbf707fa5d1b8eec29c2d925b --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ff8ee0bcec0adf749f20f9ea30a7254fa6330960fd6117cf17aa27846d3097e +size 447552 diff --git a/vlm/dev/kKF8_K-mBbS/21.png b/vlm/dev/kKF8_K-mBbS/21.png new file mode 100644 index 0000000000000000000000000000000000000000..f03841a88fc7be9ea31f70fd829a1e392517b369 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9afcd30acc59bad1344e135687189c5ddaa77e97ba493024570a938f9bb87885 +size 600828 diff --git a/vlm/dev/kKF8_K-mBbS/22.png b/vlm/dev/kKF8_K-mBbS/22.png new file mode 100644 index 0000000000000000000000000000000000000000..4703e29f43e5184f938f72c50a96b5b443009928 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:197c2ec99233e333760401d51bb82af8679c1fd396b3dbf09ff30d2b11eb38fe +size 571134 diff --git a/vlm/dev/kKF8_K-mBbS/23.png b/vlm/dev/kKF8_K-mBbS/23.png new file mode 100644 index 0000000000000000000000000000000000000000..57e0e3ff1deed6945b93d119ba708a7a3daf278d --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:828831b09217387410f68c6d9546c18cd8d44ed23f80e66eacfef96946ac100f +size 481002 diff --git a/vlm/dev/kKF8_K-mBbS/24.png b/vlm/dev/kKF8_K-mBbS/24.png new file mode 100644 index 0000000000000000000000000000000000000000..eb0e2678095889c665de3ba8adf584a1a1f48cdf --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a6fad2947ba48cd33b1dfc8a7531c36290275e9f5660ba5b1552516c7126ced1 +size 682324 diff --git a/vlm/dev/kKF8_K-mBbS/25.png b/vlm/dev/kKF8_K-mBbS/25.png new file mode 100644 index 0000000000000000000000000000000000000000..8ce4de9bb29abb7db71e647d9f024d05375ef6eb --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb786a4cd52de7aec6aa32df65502b5cb3631c798a0591ce29ed210835b817ac +size 496403 diff --git a/vlm/dev/kKF8_K-mBbS/26.png b/vlm/dev/kKF8_K-mBbS/26.png new file mode 100644 index 0000000000000000000000000000000000000000..735e3b93a9c1f8a9df54ff20cbf16137b3821a9a --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:69d7b645a489d3a65f19bc29b68949493e8069fdfbfc7b39072671d64e221ac3 +size 363677 diff --git a/vlm/dev/kKF8_K-mBbS/27.png b/vlm/dev/kKF8_K-mBbS/27.png new file mode 100644 index 0000000000000000000000000000000000000000..780b91f5aa7a7c04a35f6b3c9c81c3181c3d1cd2 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9fdb50b0800107fe8082ea71cc41c53974a1061c6704d1ca326e5ce9356d3acc +size 381598 diff --git a/vlm/dev/kKF8_K-mBbS/28.png b/vlm/dev/kKF8_K-mBbS/28.png new file mode 100644 index 0000000000000000000000000000000000000000..6cdf2bd43f9cee4b4235f75fc441b9dd17b8ddaf --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a3477db87d723aa04a9f65239ed81f04e59b3e76c1dbd1da2239eecf7bbf10ac +size 435875 diff --git a/vlm/dev/kKF8_K-mBbS/29.png b/vlm/dev/kKF8_K-mBbS/29.png new file mode 100644 index 0000000000000000000000000000000000000000..0a91b9639f4944e93ca4eda2ac7684dfaf7389cb --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/29.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c66197afd9f915c62e2854899daeb5abf7186316fce2044a919274f4ef2d9866 +size 250749 diff --git a/vlm/dev/kKF8_K-mBbS/3.png b/vlm/dev/kKF8_K-mBbS/3.png new file mode 100644 index 0000000000000000000000000000000000000000..39e8951691322a1b4a34508316fda38ed0618ee7 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d5ee776cadf77ec03aba046f8ba559c4988747271aeb2529710a3804ec0e602 +size 677462 diff --git a/vlm/dev/kKF8_K-mBbS/30.png b/vlm/dev/kKF8_K-mBbS/30.png new file mode 100644 index 0000000000000000000000000000000000000000..368e88a3ba4991cfaabc5345b534cda3f15a35fd --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/30.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08759f4ebe5c61b679612189206371fbb0ce7045c36c8f63b54a85d031c39ee0 +size 1079320 diff --git a/vlm/dev/kKF8_K-mBbS/31.png b/vlm/dev/kKF8_K-mBbS/31.png new file mode 100644 index 0000000000000000000000000000000000000000..b3c7ad4e04c9c504ad981df817008de725ee2a9d --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/31.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a85aac0220fa9ca44c639e785c415f69d4eac89512b19ecfa1cd17c02d4c872c +size 936285 diff --git a/vlm/dev/kKF8_K-mBbS/32.png b/vlm/dev/kKF8_K-mBbS/32.png new file mode 100644 index 0000000000000000000000000000000000000000..b02eb936b3c33d24fc0349e4183decb907d4a15c --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/32.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b7d88a24ee771f9938d7fbc173f72ae6908c3ff46687b705d1c55c93f4d18b36 +size 863619 diff --git a/vlm/dev/kKF8_K-mBbS/4.png b/vlm/dev/kKF8_K-mBbS/4.png new file mode 100644 index 0000000000000000000000000000000000000000..87ce7868e30f7084e556f27509345feeb498a925 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cae46350852a6cf7b3b1c424b19ff802399236748692d9e520159caf0ac1f6a1 +size 548736 diff --git a/vlm/dev/kKF8_K-mBbS/5.png b/vlm/dev/kKF8_K-mBbS/5.png new file mode 100644 index 0000000000000000000000000000000000000000..ee276fa7228b9562b88bc98c90ab2873586415a4 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:34788c173d998a20fcb9ef6eafe1527987765b39a4efe2852a00f047538ff01f +size 581326 diff --git a/vlm/dev/kKF8_K-mBbS/6.png b/vlm/dev/kKF8_K-mBbS/6.png new file mode 100644 index 0000000000000000000000000000000000000000..4851c50029b68686ca0d325fabf1072638ef272f --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:61f3eb0328e70c6cce6cf8ef559a17a36a36185fa6b59e026b16723a72b34583 +size 591284 diff --git a/vlm/dev/kKF8_K-mBbS/7.png b/vlm/dev/kKF8_K-mBbS/7.png new file mode 100644 index 0000000000000000000000000000000000000000..a6a51e4cfe8c0018f36ac00d8531875a9c994eb4 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f550f155b240462a875aafdd7ae371c148e72abc17dfe469f54678124d80c367 +size 584041 diff --git a/vlm/dev/kKF8_K-mBbS/8.png b/vlm/dev/kKF8_K-mBbS/8.png new file mode 100644 index 0000000000000000000000000000000000000000..021acd433261dda2463ddf603196b6e233e707bf --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1668612e2c4e2fb429cfc9ea1ef91ac728346df73e4b23bea1c99124c3c44211 +size 579412 diff --git a/vlm/dev/kKF8_K-mBbS/9.png b/vlm/dev/kKF8_K-mBbS/9.png new file mode 100644 index 0000000000000000000000000000000000000000..e93cbd80496f1c996f1d0793bd48fe7ed5d36645 --- /dev/null +++ b/vlm/dev/kKF8_K-mBbS/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bda7002f332d15391bc5874b3e33c37eeebdd6cfc0eea8c12c4404b089647e74 +size 517874 diff --git a/vlm/dev/kXXPLBEBVGH/0.png b/vlm/dev/kXXPLBEBVGH/0.png new file mode 100644 index 0000000000000000000000000000000000000000..de4744d9227c84d20867619e7690f7f782b195ae --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b20cf5c5db66a7447fd628122b43770b29686706506e88cddb549521f2b29cc +size 447187 diff --git a/vlm/dev/kXXPLBEBVGH/1.png b/vlm/dev/kXXPLBEBVGH/1.png new file mode 100644 index 0000000000000000000000000000000000000000..61431b76a610040145083e68b14cb3cf96bce01b --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1213ff2bf502ef378884ff73dfcdca658c1355e5a0a6d92a8a31c86d786cad1d +size 602543 diff --git a/vlm/dev/kXXPLBEBVGH/10.png b/vlm/dev/kXXPLBEBVGH/10.png new file mode 100644 index 0000000000000000000000000000000000000000..603c26a243ffdf57148a93faab0687e4688d5b2c --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:984d43bdfa83ce491c00b50801b71df0fd9f0a555172c8e27a620f9be49c6221 +size 572461 diff --git a/vlm/dev/kXXPLBEBVGH/11.png b/vlm/dev/kXXPLBEBVGH/11.png new file mode 100644 index 0000000000000000000000000000000000000000..f9c399ace4edaf2b0d81b6c7278a586ad261a18f --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e9cf78d32d14a1af94a6c0d0ac36f0abcc6ca10bc27b27dcf5be3e5e16952a99 +size 583148 diff --git a/vlm/dev/kXXPLBEBVGH/12.png b/vlm/dev/kXXPLBEBVGH/12.png new file mode 100644 index 0000000000000000000000000000000000000000..9a44433db410d98cfb12a8f98a855155fc30f86f --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:30c8b1ed7583f81d5ecccd0e40b476d8eebbdf60079432c8d2e4c9d7600e2d2a +size 585113 diff --git a/vlm/dev/kXXPLBEBVGH/13.png b/vlm/dev/kXXPLBEBVGH/13.png new file mode 100644 index 0000000000000000000000000000000000000000..5202863c7047227d3feef1265fb3e18d4fc3366c --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e4b50497ee701ed95bccfec47473dca1e83d621cb2c3a3acee5ca84ff9e4038f +size 581285 diff --git a/vlm/dev/kXXPLBEBVGH/14.png b/vlm/dev/kXXPLBEBVGH/14.png new file mode 100644 index 0000000000000000000000000000000000000000..c650b0d0b954eb4fd6a47384c341625f813bb82c --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:056e5532f5f6154cbbb30c10f2556d027189bdea44bbf2aac3df0ba3b77e9c63 +size 168400 diff --git a/vlm/dev/kXXPLBEBVGH/15.png b/vlm/dev/kXXPLBEBVGH/15.png new file mode 100644 index 0000000000000000000000000000000000000000..c232d00a34611f9e94711adb0a78a96427e5be19 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:08ed170e4cce78e922a4bb7caa0466bbdc09f14adc4c6ae60029f1a0b97ce291 +size 371775 diff --git a/vlm/dev/kXXPLBEBVGH/16.png b/vlm/dev/kXXPLBEBVGH/16.png new file mode 100644 index 0000000000000000000000000000000000000000..3fe76d427a4e699a1fbf640fc89c0c04628d4682 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ae9d689e5912124494878b530e1b652dd1a05da4806c7074d156f9560533fc8c +size 447462 diff --git a/vlm/dev/kXXPLBEBVGH/17.png b/vlm/dev/kXXPLBEBVGH/17.png new file mode 100644 index 0000000000000000000000000000000000000000..e34fda7681ccc1a0b9295be4afc81ee21f1a291a --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:22552236765d3c7f19065f813930eb8a41af099b05da94d6a009be86226453e2 +size 475833 diff --git a/vlm/dev/kXXPLBEBVGH/18.png b/vlm/dev/kXXPLBEBVGH/18.png new file mode 100644 index 0000000000000000000000000000000000000000..b1dbbe4825bb191ebec64af7b1772e71d1746c06 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/18.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:998d33f29ce2112c6853007019eeb46ce2c3383efb49840dc23038b58a7ddf12 +size 404956 diff --git a/vlm/dev/kXXPLBEBVGH/19.png b/vlm/dev/kXXPLBEBVGH/19.png new file mode 100644 index 0000000000000000000000000000000000000000..1f28b94c0d096f554b0931342dc791d32e9d86e4 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:003e6e0aba8f5d5ca2d9829a0beb858e0ca01d0a4eb45b262804232bb09edd8c +size 475661 diff --git a/vlm/dev/kXXPLBEBVGH/2.png b/vlm/dev/kXXPLBEBVGH/2.png new file mode 100644 index 0000000000000000000000000000000000000000..70727f70804ca089927075f1f6a60856867cadb3 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d306d74b775555bf6418f21f47058ff0ebb3bc4d2f870647e935125648fe34a9 +size 543338 diff --git a/vlm/dev/kXXPLBEBVGH/20.png b/vlm/dev/kXXPLBEBVGH/20.png new file mode 100644 index 0000000000000000000000000000000000000000..ab2a4f2ed8c1940e7b13b3a2978cc03c58498ae7 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/20.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:aa17f8d33449194c76ba88f5ffacf41aed6606e7b0b4bb2909aff25f92a5daae +size 401520 diff --git a/vlm/dev/kXXPLBEBVGH/21.png b/vlm/dev/kXXPLBEBVGH/21.png new file mode 100644 index 0000000000000000000000000000000000000000..ad405d4834724e48f48ad013372de4df605e2c29 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/21.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42d71a222a5176b7ccbfb9292cbd7c1a5fd1bad46a18634162791a6d3dcc57bb +size 411947 diff --git a/vlm/dev/kXXPLBEBVGH/22.png b/vlm/dev/kXXPLBEBVGH/22.png new file mode 100644 index 0000000000000000000000000000000000000000..684cbdd3941c5ff9ec09379ea6b8342557e6077b --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/22.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89f133aa00eb9715b3b4c46e2fea06dcfc210265a2f1ff9d476549dbcc2fdd41 +size 308794 diff --git a/vlm/dev/kXXPLBEBVGH/23.png b/vlm/dev/kXXPLBEBVGH/23.png new file mode 100644 index 0000000000000000000000000000000000000000..4ad0cdca134c1e01e56fb8d0c7f999b5bef4e825 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/23.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f8b0abf8485e2273a8c1783333c194e70ee2c4bf9045867391bb11074c848bd3 +size 449792 diff --git a/vlm/dev/kXXPLBEBVGH/24.png b/vlm/dev/kXXPLBEBVGH/24.png new file mode 100644 index 0000000000000000000000000000000000000000..1f59adb4f8606b5eb84ab8343fefd4ef5dd0f35d --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/24.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a430fe75a39f02cc89b3dd868339aff1896a85349b50c826b1e505b9173c9f29 +size 498837 diff --git a/vlm/dev/kXXPLBEBVGH/25.png b/vlm/dev/kXXPLBEBVGH/25.png new file mode 100644 index 0000000000000000000000000000000000000000..9b72db13239ebd8bf77e6405518883ff5d23028c --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/25.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bd759255e6476b84b582f2d74d8d5f2646e2d362a5512edcc1fddcdaa8700e73 +size 536023 diff --git a/vlm/dev/kXXPLBEBVGH/26.png b/vlm/dev/kXXPLBEBVGH/26.png new file mode 100644 index 0000000000000000000000000000000000000000..08bf139815c32fa11c80ae1151a11a6a9a1fed61 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/26.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67de5062be2a423972fe54b878123495259e895e53bc7ee1d217c6e2205bed6e +size 320254 diff --git a/vlm/dev/kXXPLBEBVGH/27.png b/vlm/dev/kXXPLBEBVGH/27.png new file mode 100644 index 0000000000000000000000000000000000000000..5fbe31e289fd81d2d14722c9f4ba936d888cee82 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/27.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:82e3a1121b155579c0a046a77a829fabb2ddf1c1a3e43f327f41eba30a15bb7f +size 574942 diff --git a/vlm/dev/kXXPLBEBVGH/28.png b/vlm/dev/kXXPLBEBVGH/28.png new file mode 100644 index 0000000000000000000000000000000000000000..b6d77f05b8b52ccaf14b2879894ae7bfc8cfdb69 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/28.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3a5c500cca4ae0a2926fa6db3aae43437ed3525ce6ddcc97e6c309957d105539 +size 54751 diff --git a/vlm/dev/kXXPLBEBVGH/3.png b/vlm/dev/kXXPLBEBVGH/3.png new file mode 100644 index 0000000000000000000000000000000000000000..971a8058e3b4a7ae44c07c510c5f24e89cbdde44 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0a80ef148c87ac72887b89b11dff5726f16d43c5d35a18ded07241793012046d +size 474646 diff --git a/vlm/dev/kXXPLBEBVGH/4.png b/vlm/dev/kXXPLBEBVGH/4.png new file mode 100644 index 0000000000000000000000000000000000000000..b62ad7e63a09296b0604b2841d8ac9676b12198b --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cafc32b6deeb5ea30870549a227a17d69806213979d59d109a8d29d6e4904736 +size 507698 diff --git a/vlm/dev/kXXPLBEBVGH/5.png b/vlm/dev/kXXPLBEBVGH/5.png new file mode 100644 index 0000000000000000000000000000000000000000..171e7a33205e4eea82125a10312433ba506660f3 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c3adc8c3bfcaa9a790a58b9bd6be4cf308f199413520fa23df6c095c7f48d3a2 +size 632393 diff --git a/vlm/dev/kXXPLBEBVGH/6.png b/vlm/dev/kXXPLBEBVGH/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5f7a9fdefaa6e6a16e10f05f29ef3f07e8dc9595 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:905fec8858c91c6ee6b671b6d4c21e9d1d47445fc25ad38e0bf9212c4ece8b57 +size 644455 diff --git a/vlm/dev/kXXPLBEBVGH/7.png b/vlm/dev/kXXPLBEBVGH/7.png new file mode 100644 index 0000000000000000000000000000000000000000..f5c1af065ba3f62a85706498833798bdf222da56 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ad5789454ba52f62a7ff0823572f105ae8345e99612d205992ca1dac4e025f68 +size 554194 diff --git a/vlm/dev/kXXPLBEBVGH/8.png b/vlm/dev/kXXPLBEBVGH/8.png new file mode 100644 index 0000000000000000000000000000000000000000..75e3e5b0d4fbce1803afa86a666d62012d2a2b35 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df4c7c6c22dfd370c032b40f290874cde02c0b29e6d01e706fec0eda8bc29aea +size 626787 diff --git a/vlm/dev/kXXPLBEBVGH/9.png b/vlm/dev/kXXPLBEBVGH/9.png new file mode 100644 index 0000000000000000000000000000000000000000..73820572f90b67c4286161434f6e28a9161f1676 --- /dev/null +++ b/vlm/dev/kXXPLBEBVGH/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb67ce1942540f495d4b838b13d1aac3a0e4316a40f426cbe5efbe07ec732db4 +size 518164 diff --git a/vlm/dev/lMMaNf6oxKM/0.png b/vlm/dev/lMMaNf6oxKM/0.png new file mode 100644 index 0000000000000000000000000000000000000000..648683c10bf2165ac74fa5882aefc354ff89a6a8 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d75885bfdb9731a46ffbfa5fe94ab22b3d8cf06af414314723a13d265dcd5f43 +size 419724 diff --git a/vlm/dev/lMMaNf6oxKM/1.png b/vlm/dev/lMMaNf6oxKM/1.png new file mode 100644 index 0000000000000000000000000000000000000000..e1eb8e29e8f766c56ef04a85b737b7932bb7b5a4 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:49f91fc6661ff1350866f8c3454e4512c1f070f909bff1df1300442b5c17159d +size 648485 diff --git a/vlm/dev/lMMaNf6oxKM/10.png b/vlm/dev/lMMaNf6oxKM/10.png new file mode 100644 index 0000000000000000000000000000000000000000..dc727011078e41117cebea6ef13d1463401977d2 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:830f1dfdbf5f88f2cf19cfe5d26ff80528ef6eb36c9ff646439c254a99708a4e +size 586269 diff --git a/vlm/dev/lMMaNf6oxKM/11.png b/vlm/dev/lMMaNf6oxKM/11.png new file mode 100644 index 0000000000000000000000000000000000000000..a3f562c46012f3bc1c7e07ac0d308d908fac5084 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:78dcca3ed848629e4a2e5b8b00c039f0584153a384bf40eb548408a98339b97e +size 628816 diff --git a/vlm/dev/lMMaNf6oxKM/12.png b/vlm/dev/lMMaNf6oxKM/12.png new file mode 100644 index 0000000000000000000000000000000000000000..66a329f66a6d1821c7d8b6a5e5e29b9b96ede489 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:db1819d101bc88afaa35f8c40e95df498e8ad8635aad1121f28fbbb9fa1f18f8 +size 584934 diff --git a/vlm/dev/lMMaNf6oxKM/13.png b/vlm/dev/lMMaNf6oxKM/13.png new file mode 100644 index 0000000000000000000000000000000000000000..6d857aa19cd52d9a7af460bc3fbe8b5bea86a5e4 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:97b0138e175cadba0223b04f865487b50de3c871aa54a01474bdd22eb5e3b516 +size 323301 diff --git a/vlm/dev/lMMaNf6oxKM/14.png b/vlm/dev/lMMaNf6oxKM/14.png new file mode 100644 index 0000000000000000000000000000000000000000..0a98f77a91f104cbaf257956894d4d104e786957 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b0909823d67bb647b9a2ca21c8661367fa7b4355d406fb84d57481573afb2de +size 449219 diff --git a/vlm/dev/lMMaNf6oxKM/2.png b/vlm/dev/lMMaNf6oxKM/2.png new file mode 100644 index 0000000000000000000000000000000000000000..fe75b1bdb947d512fa0aa6d865743edf2d675ceb --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8d78cdfe1441516c8bde2edea11fe4ceb4a943c22d018ceb2281077827b118da +size 620965 diff --git a/vlm/dev/lMMaNf6oxKM/3.png b/vlm/dev/lMMaNf6oxKM/3.png new file mode 100644 index 0000000000000000000000000000000000000000..55d94815ceacecc44de1f519f1fd2bf50da644eb --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:52cd6ac75401b667d5d19668ad8b7da627ba8e0a0bd54afa10373d8f1a7bd6a1 +size 689135 diff --git a/vlm/dev/lMMaNf6oxKM/4.png b/vlm/dev/lMMaNf6oxKM/4.png new file mode 100644 index 0000000000000000000000000000000000000000..d1a7875cdf43ddf2b211d404feeb6676bc03bfe8 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:74df5008674e80c2c00fbcf2b089a029a5fe60ec6293e7d316fcd9063dcdd969 +size 618935 diff --git a/vlm/dev/lMMaNf6oxKM/5.png b/vlm/dev/lMMaNf6oxKM/5.png new file mode 100644 index 0000000000000000000000000000000000000000..bb4c12cb1f2b1e09255877e06721b9be6f189c54 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3b542827eef5b6dbfc070fbd22f66ba79775516e9216e46fb8614b2028196753 +size 598022 diff --git a/vlm/dev/lMMaNf6oxKM/6.png b/vlm/dev/lMMaNf6oxKM/6.png new file mode 100644 index 0000000000000000000000000000000000000000..16252d0b708518032d5ceb951f47d12527db40ff --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:60f20328fcb763510b97f3978cfc92a16c6ad016bd6efca9b0977284a298ede7 +size 578880 diff --git a/vlm/dev/lMMaNf6oxKM/7.png b/vlm/dev/lMMaNf6oxKM/7.png new file mode 100644 index 0000000000000000000000000000000000000000..98bc43dad2afd7b0e8ea95b608609828292042b7 --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:862b20f355c052adccb681a9ab473ff3a4beb51f985bce0bafaacb9bfea8e028 +size 603622 diff --git a/vlm/dev/lMMaNf6oxKM/8.png b/vlm/dev/lMMaNf6oxKM/8.png new file mode 100644 index 0000000000000000000000000000000000000000..4099a369f1c378064a9960010f9044e0c4e929fa --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4490c3dead95bdd9eaf32423307f3425540607485b3aff89fc4c7de63abbf1f9 +size 565527 diff --git a/vlm/dev/lMMaNf6oxKM/9.png b/vlm/dev/lMMaNf6oxKM/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5e8bfd3e3c02d59d7dbceb0966ff41408426326b --- /dev/null +++ b/vlm/dev/lMMaNf6oxKM/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4692c3a734411365888fb02f21b7d832a81307cd34e500ef29a4be9084c457e1 +size 600195 diff --git a/vlm/dev/ne6zeqLFCZ/16.png b/vlm/dev/ne6zeqLFCZ/16.png new file mode 100644 index 0000000000000000000000000000000000000000..1d5aeccadcb2631377efb6416b08bebaea7d9228 --- /dev/null +++ b/vlm/dev/ne6zeqLFCZ/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0949b6a759fdfe2f35c4b3aba2c89afc86ee7485ee9acee77eddcf4aeb6a6adc +size 589844 diff --git a/vlm/dev/ne6zeqLFCZ/19.png b/vlm/dev/ne6zeqLFCZ/19.png new file mode 100644 index 0000000000000000000000000000000000000000..93ed6e3ccc4a8f86653260a8f6892981680ccfeb --- /dev/null +++ b/vlm/dev/ne6zeqLFCZ/19.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:404cb1ec9b378a7ac7d4ee359e78869c609e944c0fb332451aa6eaac80273b05 +size 517669 diff --git a/vlm/dev/pF8btdPVTL_/0.png b/vlm/dev/pF8btdPVTL_/0.png new file mode 100644 index 0000000000000000000000000000000000000000..f9fc3e7b6397b58233ad9765b7b4ebce24039d2f --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2d609aacc81307649cfdbe1f15ea5718afb23a61612d66c6a0143e3b2694897e +size 399082 diff --git a/vlm/dev/pF8btdPVTL_/1.png b/vlm/dev/pF8btdPVTL_/1.png new file mode 100644 index 0000000000000000000000000000000000000000..ac490a9db5b952cff9e586db9d799d2d38d83d4e --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92eebec66e69aeec9f3cdad09c63d4d2914513db5505edd3ed49196004b834f6 +size 617268 diff --git a/vlm/dev/pF8btdPVTL_/10.png b/vlm/dev/pF8btdPVTL_/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e8f1b1ceb078b3a7a17037243d8efa9f349b36dc --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:91643a627a7137e945c1f72126887c768ec03ee9559f329899737364aa8e7a90 +size 552556 diff --git a/vlm/dev/pF8btdPVTL_/11.png b/vlm/dev/pF8btdPVTL_/11.png new file mode 100644 index 0000000000000000000000000000000000000000..fd1551201fe58614bda7e29cfae53f4ba095f2e7 --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:609ad292fc0e60a93d67b1d8520a0345dfa5e235f25f76c5dbacb960e81ff2b9 +size 555853 diff --git a/vlm/dev/pF8btdPVTL_/12.png b/vlm/dev/pF8btdPVTL_/12.png new file mode 100644 index 0000000000000000000000000000000000000000..cbbb4fa73666460a079153667d80d27e2c99f668 --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:348e4ecbe025105cc3468fc14c62a37032869f8c61a5101ca3d3b077c44a0201 +size 512928 diff --git a/vlm/dev/pF8btdPVTL_/13.png b/vlm/dev/pF8btdPVTL_/13.png new file mode 100644 index 0000000000000000000000000000000000000000..040e2b0c59f945d6d0b1740b0d7cca2cd411fa8e --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:70471f7db9850e04e3a1c1154d0c489a8c2cb8f609f3e2f0e38c52653af2d954 +size 143084 diff --git a/vlm/dev/pF8btdPVTL_/2.png b/vlm/dev/pF8btdPVTL_/2.png new file mode 100644 index 0000000000000000000000000000000000000000..6c1d4dd4a46486b60a27c8649c2f8290fc963788 --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6a1ba089f35559bde188d816df461623a226c4d2066e5c89753268aa7e7491b4 +size 550925 diff --git a/vlm/dev/pF8btdPVTL_/3.png b/vlm/dev/pF8btdPVTL_/3.png new file mode 100644 index 0000000000000000000000000000000000000000..bb492140cd29bb122af4e6808c7ee418f6cb8cbf --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2161ba8d699e16386e665487359ad1b55fdf738fea1ff24d82dbc6e6ef54dcc2 +size 531621 diff --git a/vlm/dev/pF8btdPVTL_/4.png b/vlm/dev/pF8btdPVTL_/4.png new file mode 100644 index 0000000000000000000000000000000000000000..5099da7f657dd9435b8bcb83e2de12cf8266ce54 --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5f07665f134abe4efaae0cd5efc2c390e677c6edf38ab98854d9ec58703d61a9 +size 506374 diff --git a/vlm/dev/pF8btdPVTL_/5.png b/vlm/dev/pF8btdPVTL_/5.png new file mode 100644 index 0000000000000000000000000000000000000000..428f47dfb4d6d00f43190c709f40a8c76d03397c --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:37f69994253d615106da7803aa52901d5e08218abe5432836bd3a8b2b6826a6b +size 623626 diff --git a/vlm/dev/pF8btdPVTL_/6.png b/vlm/dev/pF8btdPVTL_/6.png new file mode 100644 index 0000000000000000000000000000000000000000..371491196d11ae9186cd19fcc5a551fd080cbce0 --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3100f1bc7e6c1fffc21fdd62a47b8fe91b78040ed60bd79f8e21cb7e85d913b5 +size 540945 diff --git a/vlm/dev/pF8btdPVTL_/7.png b/vlm/dev/pF8btdPVTL_/7.png new file mode 100644 index 0000000000000000000000000000000000000000..37f4b57d2a90ff27404e553a816ddd4a1fc26f64 --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:21cadb01c696cec875bb64690af872e4ea5a878d5b2cf4afd76284ebed49161a +size 549924 diff --git a/vlm/dev/pF8btdPVTL_/8.png b/vlm/dev/pF8btdPVTL_/8.png new file mode 100644 index 0000000000000000000000000000000000000000..0031bba51f80f1b6f1fce54980f198fc5a708f9b --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:53ae45f0bcf525f64a28e866fdbb3a48a54e923915e29672b01531b2f1dd22e8 +size 418766 diff --git a/vlm/dev/pF8btdPVTL_/9.png b/vlm/dev/pF8btdPVTL_/9.png new file mode 100644 index 0000000000000000000000000000000000000000..86522bc5dd3f05b405860427bcc2ab56bb4dbc06 --- /dev/null +++ b/vlm/dev/pF8btdPVTL_/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:ec975678cfda29337fd62b63134189a50c7a0a1d36eb5e1eacbf5eb37414dcda +size 493235 diff --git a/vlm/dev/vGQiU5sqUe3/0.png b/vlm/dev/vGQiU5sqUe3/0.png new file mode 100644 index 0000000000000000000000000000000000000000..2cd4f9640790045cbbf16c1a3172651d7a7837c0 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/0.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:df7be6cddf133c3584408961bd46aae3823bc43fbf018de2bb2b8d0c21ea7190 +size 438934 diff --git a/vlm/dev/vGQiU5sqUe3/1.png b/vlm/dev/vGQiU5sqUe3/1.png new file mode 100644 index 0000000000000000000000000000000000000000..b42ddd6f267d1d46f126696e506ee1ea2e0071f2 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/1.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:33cde190c1ff6c20a2df9f83b336bef45d7623f0b71488469c1672a1cb003ded +size 647911 diff --git a/vlm/dev/vGQiU5sqUe3/10.png b/vlm/dev/vGQiU5sqUe3/10.png new file mode 100644 index 0000000000000000000000000000000000000000..e8ef7f8aa22ba58eb4109bc674c4690079d09704 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/10.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dc31b09a0ec556ef13807e91543e4005bae9a4087efeb7c9faef33f31831a3ed +size 541779 diff --git a/vlm/dev/vGQiU5sqUe3/11.png b/vlm/dev/vGQiU5sqUe3/11.png new file mode 100644 index 0000000000000000000000000000000000000000..28f98c1b116ba6675a4401833a304f0f4b651ba2 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/11.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:526873791ad0b0f08cc0991e8c41bc3d00917413f550080db63c25ecb176eefe +size 548519 diff --git a/vlm/dev/vGQiU5sqUe3/12.png b/vlm/dev/vGQiU5sqUe3/12.png new file mode 100644 index 0000000000000000000000000000000000000000..33e9571600493ddeed6e80e12408b02a450d65ff --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/12.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:42a9a51b4a3d9c5addfa76474864a621697984e40237455d567aa8095b425fce +size 541069 diff --git a/vlm/dev/vGQiU5sqUe3/13.png b/vlm/dev/vGQiU5sqUe3/13.png new file mode 100644 index 0000000000000000000000000000000000000000..50b7400289fa276e629fdaafd7425e4dc98e50db --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/13.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6b5f21fe1a4e07109459d5e4595d1fc7c4348648b01a9122db8fe13f615b5e7b +size 560048 diff --git a/vlm/dev/vGQiU5sqUe3/14.png b/vlm/dev/vGQiU5sqUe3/14.png new file mode 100644 index 0000000000000000000000000000000000000000..3631a1a01df390885c3d914800a3847d394a2723 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/14.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:935e5db6ee192b57680833c1a78511a015e233210883ca5f1a247124798e538d +size 577480 diff --git a/vlm/dev/vGQiU5sqUe3/15.png b/vlm/dev/vGQiU5sqUe3/15.png new file mode 100644 index 0000000000000000000000000000000000000000..cb6c8bd4527f1190b7f65c401e69fa63239e6749 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/15.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fc53599c25fa7f8772e66dd909b2be0cc463166804b67666d93c126ddebb5b9e +size 550172 diff --git a/vlm/dev/vGQiU5sqUe3/16.png b/vlm/dev/vGQiU5sqUe3/16.png new file mode 100644 index 0000000000000000000000000000000000000000..9c3f54c7a48b5d672739ed5f85f0cabec709543f --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/16.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2f5171841049082725cd9fe437d685c89ceff89b8f475084080078a85baf9c6d +size 346569 diff --git a/vlm/dev/vGQiU5sqUe3/17.png b/vlm/dev/vGQiU5sqUe3/17.png new file mode 100644 index 0000000000000000000000000000000000000000..ff2314ec1ce7c0bb70f187cb5767ee7e4f2754c8 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/17.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:4ede4d62a4faabf62a0cb96b1d72029cba3d1d3f26f55c37412789b5d7700b17 +size 401972 diff --git a/vlm/dev/vGQiU5sqUe3/2.png b/vlm/dev/vGQiU5sqUe3/2.png new file mode 100644 index 0000000000000000000000000000000000000000..e3eb1db9117f7c4f6193d5696e1ad91d3df41c35 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/2.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c521d87aa56341a9a644c388a761483d17db61ef008503da9908beabcf0572fa +size 570632 diff --git a/vlm/dev/vGQiU5sqUe3/3.png b/vlm/dev/vGQiU5sqUe3/3.png new file mode 100644 index 0000000000000000000000000000000000000000..6679652c716a0c9548af2d1ea413b08221f70d95 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/3.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:88b2c5aae6cdffc3960fa7660580d653dd309579dea21fccab311314e0b6fa24 +size 547859 diff --git a/vlm/dev/vGQiU5sqUe3/4.png b/vlm/dev/vGQiU5sqUe3/4.png new file mode 100644 index 0000000000000000000000000000000000000000..45406d5c98acc66843a81106c9e399d3c2db99de --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/4.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:155de71e225350e717545a81cdd7672ef8b787b6992421bee5435cf7eb6f90ad +size 520295 diff --git a/vlm/dev/vGQiU5sqUe3/5.png b/vlm/dev/vGQiU5sqUe3/5.png new file mode 100644 index 0000000000000000000000000000000000000000..2be727ab73ff0cbb067768109afaf8fcf9b103cc --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/5.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1cc24072e358cb8e6f4b1d6af3b6aa2650ccf3a84e20ab06e975dbb20df6c063 +size 564503 diff --git a/vlm/dev/vGQiU5sqUe3/6.png b/vlm/dev/vGQiU5sqUe3/6.png new file mode 100644 index 0000000000000000000000000000000000000000..5738671b70c73922b69fad52e77bdc1926463ab6 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/6.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2eb97f566accf63e47f5a747d6baaea4841aca9d7eba1112ddca93d921053a93 +size 651346 diff --git a/vlm/dev/vGQiU5sqUe3/7.png b/vlm/dev/vGQiU5sqUe3/7.png new file mode 100644 index 0000000000000000000000000000000000000000..cc3828cb5fce7f96ca0cfbdc897f2429025e9d85 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/7.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:6d41b171a3399ecda0546f234d51d376295dee5eca5aeea316a461e85fd5a649 +size 635784 diff --git a/vlm/dev/vGQiU5sqUe3/8.png b/vlm/dev/vGQiU5sqUe3/8.png new file mode 100644 index 0000000000000000000000000000000000000000..c1e3c6f58ce2494e6db9f19c852cdbd509d0349c --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/8.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7f5d5ced254cc7dc11c2c2ac64b84b0023664546b9a076b561288e4211f1a6b1 +size 621832 diff --git a/vlm/dev/vGQiU5sqUe3/9.png b/vlm/dev/vGQiU5sqUe3/9.png new file mode 100644 index 0000000000000000000000000000000000000000..5c1e93479a5b5252fbe6eb0fc81be4905c81b351 --- /dev/null +++ b/vlm/dev/vGQiU5sqUe3/9.png @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:152962282b5b4781252cb77d95e75e0911e2558aad46195f8dce9ee08c959096 +size 587010